Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / SheetSpanModel Class / MoveColumns Method
The column index at which to start the move.
The column index at which to paste columns.
The number of columns to move.


In This Topic
    MoveColumns Method
    In This Topic
    Moves columns and pastes them at the specified location.
    Syntax
    'Declaration
     
    Public Sub MoveColumns( _
       ByVal fromColumn As Integer, _
       ByVal toColumn As Integer, _
       ByVal count As Integer _
    ) 
    'Usage
     
    Dim instance As SheetSpanModel
    Dim fromColumn As Integer
    Dim toColumn As Integer
    Dim count As Integer
     
    instance.MoveColumns(fromColumn, toColumn, count)
    public void MoveColumns( 
       int fromColumn,
       int toColumn,
       int count
    )

    Parameters

    fromColumn
    The column index at which to start the move.
    toColumn
    The column index at which to paste columns.
    count
    The number of columns to move.
    See Also