Spread WPF 17
GrapeCity.Excel Namespace / ExcelWorksheet Class / ExcelWorksheet Constructor / ExcelWorksheet Constructor(String,Int32,Int32)
The name.
The row count. The default maximum row count is 65536.
The column count. The default maximum column count is 256.


In This Topic
    ExcelWorksheet Constructor(String,Int32,Int32)
    In This Topic
    Initialize a new ExcelWorksheet which RowCount is specified by rowCount and ColumnCount is specified by columnCount.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal name As String, _
       Optional ByVal rowCount As Integer, _
       Optional ByVal columnCount As Integer _
    )
    'Usage
     
    Dim name As String
    Dim rowCount As Integer
    Dim columnCount As Integer
     
    Dim instance As New ExcelWorksheet(name, rowCount, columnCount)
    public ExcelWorksheet( 
       string name,
       int rowCount,
       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
    ExceptionDescription
    The rowCount is less than Zero or The columnCount is less that Zero.
    See Also