Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / Worksheet Class / ResizeTable Method / ResizeTable(String,Int32,Int32) Method
The table name to resize.
The new table row count.
The new table column count.


In This Topic
    ResizeTable(String,Int32,Int32) Method
    In This Topic
    Changes the table size.
    Syntax
    'Declaration
     
    Public Overloads Sub ResizeTable( _
       ByVal tableName As String, _
       ByVal rowCount As Integer, _
       ByVal ColumnCount As Integer _
    ) 
    'Usage
     
    Dim instance As Worksheet
    Dim tableName As String
    Dim rowCount As Integer
    Dim ColumnCount As Integer
     
    instance.ResizeTable(tableName, rowCount, ColumnCount)
    public void ResizeTable( 
       string tableName,
       int rowCount,
       int ColumnCount
    )

    Parameters

    tableName
    The table name to resize.
    rowCount
    The new table row count.
    ColumnCount
    The new table column count.
    See Also