Spread Windows Forms 6.0 Product Documentation
RowCount Property
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SheetView Class : RowCount Property


Glossary Item Box

Gets or sets the number of rows on this sheet.

Syntax

Visual Basic (Declaration) 
Public Property RowCount As Integer
Visual Basic (Usage)Copy Code
Dim instance As SheetView
Dim value As Integer
 
instance.RowCount = value
 
value = instance.RowCount
C# 
public int RowCount {get; set;}

Property Value

Integer number of rows in the data area of the sheet

Remarks

The maximum number of rows allowed in a sheet is 2,147,483,647 (or over 2 billion). This is the number of rows in the data area of the sheet. For the number of rows in the column header, refer to the ColumnHeader RowCount.

Example

This example illustrates the use of this member by returning the number of columns and rows in the spreadsheet.
C#Copy Code
int c, r;
c = fpSpread1.ActiveSheet.ColumnCount;
r = fpSpread1.ActiveSheet.RowCount;
listBox1.Items.Add(c.ToString() + " - " + r.ToString());
Visual BasicCopy Code
Dim c, r As Integer
c = FpSpread1.ActiveSheet.ColumnCount
r = FpSpread1.ActiveSheet.RowCount
ListBox1.Items.Add(c.ToString() & " - " & r.ToString())

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

© 2002-2012 ComponentOne, a division of GrapeCity. All Rights Reserved.