Gets or sets the number of rows in the model.
Syntax
Visual Basic (Declaration) | |
---|
Public Overrides Property RowCount As Integer |
C# | |
---|
public override int RowCount {get; set;} |
Property Value
Integer number of rows
Example
This example sets the number of columns and rows for the data model.
C# | Copy Code |
---|
FarPoint.Win.Spread.Model.DefaultSheetDataModel dm = new FarPoint.Win.Spread.Model.DefaultSheetDataModel();
dm.ColumnCount = 5;
dm.RowCount = 5;
fpSpread1.ActiveSheet.Models.Data = dm;
|
Visual Basic | Copy Code |
---|
Dim dm As New FarPoint.Win.Spread.Model.DefaultSheetDataModel
dm.ColumnCount = 5
dm.RowCount = 5
FpSpread1.ActiveSheet.Models.Data = dm |
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