'Declaration Public Function MoveColumnBefore( _ ByVal current As ColumnBase, _ ByVal next As ColumnBase _ ) As Boolean
'Usage Dim instance As DataGridControl Dim current As ColumnBase Dim next As ColumnBase Dim value As Boolean value = instance.MoveColumnBefore(current, next)
public bool MoveColumnBefore( ColumnBase current, ColumnBase next )
Parameters
- current
- The column to move.
- next
- The column that will become the current column's next column.
Return Value
true if the move was successful; false, otherwise.