MoveColumn(Int32,Int32,Boolean) Method
In This Topic
Moves the specified column from its current index to the specified index, and shifts each column in between and the destination column one column in the direction of the specified column.
Syntax
'Declaration
Public Overloads Overridable Sub MoveColumn( _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Boolean _
)
'Usage
Dim instance As SheetView
Dim fromIndex As Integer
Dim toIndex As Integer
Dim moveContent As Boolean
instance.MoveColumn(fromIndex, toIndex, moveContent)
public virtual void MoveColumn(
int ,
int ,
bool
)
Parameters
- fromIndex
- Current index of the column to move
- toIndex
- New index of the column after the move
- moveContent
- Whether to move the content
See Also