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