Spread Windows Forms 15.0
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / ITableColumns Interface / Move Method
An integer value indicates the position to move.
An integer value indicates the target position.
An integer value indicates the moved column count.


In This Topic
    Move Method (ITableColumns)
    In This Topic
    Moves table column(s) at the specified position to other position.
    Syntax
    'Declaration
     
    
    Function Move( _
       ByVal column As Integer, _
       ByVal toColumn As Integer, _
       ByVal count As Integer _
    ) As Boolean
    'Usage
     
    
    Dim instance As ITableColumns
    Dim column As Integer
    Dim toColumn As Integer
    Dim count As Integer
    Dim value As Boolean
     
    value = instance.Move(column, toColumn, count)

    Parameters

    column
    An integer value indicates the position to move.
    toColumn
    An integer value indicates the target position.
    count
    An integer value indicates the moved column count.

    Return Value

    true if the moving is done successful, false otherwise.
    See Also