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