AD
Administrator
Syncfusion Team
June 3, 2008 06:33 PM UTC
The GridStyleInfo object has a ShowButtons property that you can use to hide buttons. So, depending upon wether you have explicitly added GridBoundColumns or not, you would use code like:
gridDataBoundGrid1.GridBoundColumns["ColName"].StyleInfo.ShowButtons = GridShowButtons.Hide;
or
gridDataBoundGrid1.Binder.InternalColumns["ColName"].StyleInfo.ShowButtons = GridShowButtons.Hide;