The Syncfusion® native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
ADAdministrator Syncfusion Team February 7, 2005 06:03 PM UTC
You can try setting the GridBoundColumn.StyleInfo.Borders.Right property.
this.gridDataBoundGrid1.Binder.InternalColumns["col1"].StyleInfo.Borders.Right = new GridBorder(GridBorderStyle.Solid, Color.Black, GridBorderWeight.Medium);
(If you have added GridBoundColumns, use this.gridDataBoundGrid1.GridBoundBounds["col1"] instead of the internalcolumns.)
ADAdministrator Syncfusion Team February 9, 2005 03:57 PM UTC
There is no such method for the Grid Control (not the bound one)
ADAdministrator Syncfusion Team February 9, 2005 04:09 PM UTC
Use the ColStyles property for a regular grid:
gridControl.ColStyles[1].Borders.Right = new GridBorder(GridBorderStyle.Solid, Color.Black, GridBorderWeight.Medium);
Stefan