Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / ITable Interface / Resize Method / Resize(Int32,Int32,Int32) Method
An integer value indicates the new worksheet left column index.
An integer value indicates the new worksheet right column index.
An integer value indicates the new table row count. Default value is -1 that indicates the row count remained.


In This Topic
    Resize(Int32,Int32,Int32) Method
    In This Topic
    Resizes the boundary of this table over a new range. No cells are inserted or moved.
    Syntax
    'Declaration
     
    
    Overloads Function Resize( _
       ByVal column As Integer, _
       ByVal column2 As Integer, _
       Optional ByVal rowCount As Integer _
    ) As Boolean
    'Usage
     
    
    Dim instance As ITable
    Dim column As Integer
    Dim column2 As Integer
    Dim rowCount As Integer
    Dim value As Boolean
     
    value = instance.Resize(column, column2, rowCount)

    Parameters

    column
    An integer value indicates the new worksheet left column index.
    column2
    An integer value indicates the new worksheet right column index.
    rowCount
    An integer value indicates the new table row count. Default value is -1 that indicates the row count remained.

    Return Value

    true if the table is resized successful, false otherwise.
    See Also