AD
Administrator
Syncfusion Team
December 9, 2004 08:54 AM UTC
If youwant to remove it from all columns, you can use:
this.gridDataBoundGrid1.Model.Options.DefaultGridBorderStyle = GridBorderStyle.None;
If you want to remove it from one column, try:
this.gridDataBoundGrid1.Binder.InternalColumns["Col2"].StyleInfo.Borders.Right = GridBorder.Empty;
If you have explicitly added gridBooundColumns, then use grid.GridBoundColumns["Col2"] instead of the internal columns as above.