Skip to main content

RowCellClickEventArgs(DXMouseEventArgs, Int32, GridColumn) Constructor

Initializes a new instance of the RowCellClickEventArgs class with the specified settings.

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v23.2.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

Declaration

public RowCellClickEventArgs(
    DXMouseEventArgs e,
    int rowHandle,
    GridColumn column
)

Parameters

Name Type Description
e DXMouseEventArgs

A DXMouseEventArgs object that contains information on the clicked point.

rowHandle Int32

An integer value that specifies the handle of the clicked row. This value is assigned to the RowClickEventArgs.RowHandle property.

column GridColumn

A GridColumn object that identifies the clicked grid column. This value is assigned to the RowCellClickEventArgs.Column property.

See Also