Xceed Workbooks for .NET v3.0 Documentation
Xceed.Workbooks.NET Assembly / Xceed.Workbooks.NET Namespace / Table Class / Resize Method / Resize(String,String) Method
The table’s top-left cell.
The table’s bottom-right cell.


In This Topic
    Resize(String,String) Method
    In This Topic
    Resizes the table with a new CellRange. The top of the table must remain in the same row, the resulting table must contain at least one row of data and the resized table must overlap the original table.
    Syntax
    'Declaration
     
    
    Public Overloads Sub Resize( _
       ByVal startCellAddress As String, _
       ByVal endCellAddress As String _
    ) 
    'Usage
     
    
    Dim instance As Table
    Dim startCellAddress As String
    Dim endCellAddress As String
     
    instance.Resize(startCellAddress, endCellAddress)
    public void Resize( 
       string startCellAddress,
       string endCellAddress
    )

    Parameters

    startCellAddress
    The table’s top-left cell.
    endCellAddress
    The table’s bottom-right cell.
    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also