Jay Shukla
Jay Shukla

Reputation: 792

How to get the dynamically column index while clicking on a cell using wpf GridControl DevExpress?

I have a problem related with the DevExpress GridControl when I click on any GridControl cell then it will return the clicked column Index?

Upvotes: 2

Views: 2056

Answers (1)

DmitryG
DmitryG

Reputation: 17850

You can identify clicked column and this column visible index using the hit-information returned by the GridView.CalcHitInfo() method:

GridHitInfo hitInfo = gridView1.CalcHitInfo(new Point(e.X, e.Y));
if(hitInfo.InRowCell){
    int columnIndex = hitInfo.Column.VisibleIndex;
    //...
}

Related help-article: Hit Information Overview
Related How-To: Identify the Grid's Element Located Under the Mouse Cursor

Upvotes: 2

Related Questions