MGMoveColumn

Top  Previous  Next

This event is fired when moving column(s) is finished.

[Visual Basic .NET]

Public Event MGMoveColumn(ByVal s As Object, ByVal e As MoveColumnEventArgs)

[C#]

public event MGMoveColumn(object s, MoveColumnEventArgs e);

Parameters

s

    Specifies the sender object.

 

e

    is the object of MoveColumnEventArgs Class with the following members:

1.GridIndex specifies the index of current active grid where moving occurs. -1 indicates the full grid; for a sub grid in cascade mode, this member's value must be between 0 and the return value of GetTotalSubGrids() minus 1.

2.SrcStartColumnIndex specifies the index (0-based) of the first moving column.

3.SrcEndColumnIndex specifies the index (0-based) of the last moving column.

4.DstColumnIndex specifies the index (0-based) of the target column.