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 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8
 
            
            
See Also