Spread Windows Forms 10.0 Product Documentation
RowCount Property (ISheetDataModel)
Example 


Gets or sets the number of rows.
Syntax
'Declaration
 
Property RowCount As Integer
'Usage
 
Dim instance As ISheetDataModel
Dim value As Integer
 
instance.RowCount = value
 
value = instance.RowCount
int RowCount {get; set;}

Property Value

Integer number of rows
Example
This example sets the number of columns and rows in the sheet.
FarPoint.Win.Spread.Model.ISheetDataModel isd;
isd = (FarPoint.Win.Spread.Model.ISheetDataModel)fpSpread1.ActiveSheet.Models.Data;
isd.ColumnCount = 4;
isd.RowCount = 5;
Dim isd As FarPoint.Win.Spread.Model.ISheetDataModel
isd = FpSpread1.ActiveSheet.Models.Data
isd.ColumnCount = 4
isd.RowCount = 5
Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

ISheetDataModel Interface
ISheetDataModel Members

 

 


Copyright © GrapeCity, inc. All rights reserved.