Skip to main content

constructor(sourceColumn, destinationColumn, isDropBefore, isGroupPanel) Constructor

Initializes a new instance of the ASPxClientGridViewColumnMovingEventArgs class.

Declaration

constructor(
    sourceColumn: ASPxClientGridViewColumn,
    destinationColumn: ASPxClientGridViewColumn,
    isDropBefore: boolean,
    isGroupPanel: boolean
)

Parameters

Name Type Description
sourceColumn ASPxClientGridViewColumn

An ASPxClientGridViewColumn object that represents the column currently being dragged by an end-user. This value is assigned to the ASPxClientGridViewColumnMovingEventArgs.sourceColumn property.

destinationColumn ASPxClientGridViewColumn

An ASPxClientGridViewColumn object that represents the target column. This value is assigned to the ASPxClientGridViewColumnMovingEventArgs.destinationColumn property.

isDropBefore boolean

true if the source column will be inserted before the target column (if dropped); otherwise, false. This value is assigned to the ASPxClientGridViewColumnMovingEventArgs.isDropBefore property.

isGroupPanel boolean

true if the source column is currently over the Group Panel; otherwise, false. This value is assigned to the ASPxClientGridViewColumnMovingEventArgs.isGroupPanel property.

See Also