Spread Windows Forms 12.0 Product Documentation
RowCount Property (CellRange)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > CellRange Class : RowCount Property
Gets the number of rows in the range.
Syntax
'Declaration
 
Public Property RowCount As Integer
'Usage
 
Dim instance As CellRange
Dim value As Integer
 
instance.RowCount = value
 
value = instance.RowCount
public int RowCount {get; set;}

Property Value

Integer number of rows
Example
This example creates a range of cells and uses the range to set up a span of cells.
FarPoint.Win.Spread.Model.CellRange cr = new FarPoint.Win.Spread.Model.CellRange(0, 0, 3, 3);
fpSpread1.ActiveSheet.Models.Span.Add(cr.Row, cr.Column, cr.RowCount, cr.ColumnCount);
Dim cr As New FarPoint.Win.Spread.Model.CellRange(0, 0, 3, 3)
FpSpread1.ActiveSheet.Models.Span.Add(cr.Row, cr.Column, cr.RowCount, cr.ColumnCount)
See Also

Reference

CellRange Class
CellRange Members