RowCount Property (UnboundSheet)
In This Topic
Gets or sets the number of rows in the sheet.
Syntax
'Declaration
<System.ComponentModel.DefaultValueAttribute(200)>
Public Property RowCount As System.Integer
'Usage
Dim instance As UnboundSheet
Dim value As System.Integer
instance.RowCount = value
value = instance.RowCount
[System.ComponentModel.DefaultValue(200)]
public System.int RowCount {get; set;}
public read-write property RowCount: System.Integer;
System.ComponentModel.DefaultValueAttribute(200)
public function get,set RowCount : System.int
[System.ComponentModel.DefaultValue(200)]
public: __property System.int get_RowCount();
public: __property void set_RowCount(
System.int value
);
[System.ComponentModel.DefaultValue(200)]
public:
property System.int RowCount {
System.int get();
void set ( System.int value);
}
See Also