The column count. The default maximum column count is 256.
Initialize a new
ExcelWorksheet which
RowCount is specified by and
ColumnCount is specified by
columnCount.
Syntax
'Declaration
Public Function New( _
ByVal As System.String, _
Optional ByVal As System.Integer, _
Optional ByVal columnCount As System.Integer _
)
'Usage
Dim name As System.String
Dim rowCount As System.Integer
Dim columnCount As System.Integer
Dim instance As New ExcelWorksheet(name, rowCount, columnCount)
public ExcelWorksheet(
System.string ,
System.int ,
System.int columnCount
)
Parameters
- name
- The name.
- rowCount
- The row count. The default maximum row count is 65536.
- columnCount
- The column count. The default maximum column count is 256.
Exceptions
Exception | Description |
System.ArgumentOutOfRangeException | The is less than Zero or The columnCount is less that Zero. |
See Also