Vyasdev Meledath
Vyasdev Meledath

Reputation: 9016

How to disable one row of DevExpress XtraGrid in C#

I am using DevExpress XtraGrid in c#.NET application. I want to disable or set readonly property to particular row of XtraGrid . Please Help.

Upvotes: 1

Views: 12957

Answers (1)

Itay Karo
Itay Karo

Reputation: 18286

You can use the GridView.ShowingEditor event and set e.Cancel = true

Upvotes: 8

Related Questions