Gets or sets the number of rows.
Syntax
Visual Basic (Declaration) | |
---|
Property RowCount As Integer |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As ISheetDataModel
Dim value As Integer
instance.RowCount = value
value = instance.RowCount |
C# | |
---|
int RowCount {get; set;} |
Property Value
Integer number of rows
Example
This example sets the number of columns and rows in the sheet.
C# | Copy Code |
---|
FarPoint.Win.Spread.Model.ISheetDataModel isd;
isd = (FarPoint.Win.Spread.Model.ISheetDataModel)fpSpread1.ActiveSheet.Models.Data;
isd.ColumnCount = 4;
isd.RowCount = 5; |
Visual Basic | Copy Code |
---|
Dim isd As FarPoint.Win.Spread.Model.ISheetDataModel
isd = FpSpread1.ActiveSheet.Models.Data
isd.ColumnCount = 4
isd.RowCount = 5 |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also