Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / SheetView Class / MoveColumn(Int32,Int32,Int32) Method
Column index at which to start the move (first column)
Number of columns to move
Destination before which to copy the range of columns
Example


In This Topic
    MoveColumn(Int32,Int32,Int32) Method
    In This Topic
    Moves the column or columns to a specified location.
    Syntax
    'Declaration
     
    
    Public Sub MoveColumn( _
       ByVal column As Integer, _
       ByVal count As Integer, _
       ByVal toColumn As Integer _
    ) 
    'Usage
     
    
    Dim instance As SheetView
    Dim column As Integer
    Dim count As Integer
    Dim toColumn As Integer
     
    instance.MoveColumn(column, count, toColumn)
    public void MoveColumn( 
       int column,
       int count,
       int toColumn
    )

    Parameters

    column
    Column index at which to start the move (first column)
    count
    Number of columns to move
    toColumn
    Destination before which to copy the range of columns
    Example
    This example uses the MoveColumn method.
    See Also