'Declaration Public Function MoveColumnUnder( _ ByVal current As ColumnBase, _ ByVal parent As ColumnBase _ ) As Boolean
'Usage Dim instance As DataGridControl Dim current As ColumnBase Dim parent As ColumnBase Dim value As Boolean value = instance.MoveColumnUnder(current, parent)
public bool MoveColumnUnder( ColumnBase current, ColumnBase parent )
Parameters
- current
- The column to move.
- parent
- The parent column under which to move the current column. Can be a null reference (Nothing in Visual Basic) to move the column to the the group of columns that do not have a parent.
Return Value
true if the move was successful; false, otherwise.