Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / Worksheet Class / Worksheet Constructor / Worksheet Constructor(Int32,Int32,Int32,Int32)
The row count.
The column count.
The row header column count.
The column header row count.


In This Topic
    Worksheet Constructor(Int32,Int32,Int32,Int32)
    In This Topic
    Creates a new sheet with the specified row count, column count, row header column count, and column header row count.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal rowCount As Integer, _
       ByVal columnCount As Integer, _
       ByVal rowHeaderColumnCount As Integer, _
       ByVal columnHeaderRowCount As Integer _
    )
    'Usage
     
    Dim rowCount As Integer
    Dim columnCount As Integer
    Dim rowHeaderColumnCount As Integer
    Dim columnHeaderRowCount As Integer
     
    Dim instance As New Worksheet(rowCount, columnCount, rowHeaderColumnCount, columnHeaderRowCount)
    public Worksheet( 
       int rowCount,
       int columnCount,
       int rowHeaderColumnCount,
       int columnHeaderRowCount
    )

    Parameters

    rowCount
    The row count.
    columnCount
    The column count.
    rowHeaderColumnCount
    The row header column count.
    columnHeaderRowCount
    The column header row count.
    See Also