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.
2 questions:
Is is possible to have an absolute position for a border :
ColStyles[4].Borders.Right=....
This means that this border style is attached to the 4 column so if it changes position the style will go with it.
I would like this style to stay always at the 4th column even if this changes position
Also
Is it possible to have a double line instead of the extrathik as the border line?
Thanks
ADAdministrator Syncfusion Team April 4, 2005 04:14 PM UTC
If you do not want the borders to move, then do not set them in grid.ColStyles. Instead, try handling QueryCellInfo, then if e.RowIndex == -1 and e.ColIndex points to your special column, set e.Style.Borders..... to the value you want.
There is no property setting that will draw two doble lines, but you can handle DrawCellFrameAppearance and daw custom borders if you like, Take a look at the \Syncfusion\Essential Studio\3.0.1.0\Windows\Grid.Windows\Samples\In Depth\CustomBorders sample.