hiding border of a column

can i hide right border of a column in databoundgrid?

1 Reply

AD Administrator Syncfusion Team February 9, 2005 12:20 PM UTC

Use following code: GridModelDataBinder binder = this.gridDataBoundGrid1.Binder; GridBoundColumn gbc = binder.InternalColumns["FirstName"]; //gbc.HeaderText = "Name"; //gbc.StyleInfo.BackColor = Color.FromArgb(0xC0, 0xC9, 0xdb); //gbc.StyleInfo.TextColor = Color.Blue; // hide border: gbc.StyleInfo.Borders.Right = GridBorder.Empty; Stefan >can i hide right border of a column in databoundgrid?

Loader.
Up arrow icon