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.
I have a GridControl for which RowHeaders and ColHeaders are both false.
Can I set things up so that the columns can be resized by dragging the cell border (like the visual studio property grid)?
Thanks!
ADAdministrator Syncfusion Team January 27, 2005 09:38 AM UTC
Make sure the InsideGrid flag is set in grid.ResizeColsBehavior and the grid.ResizeRowsBehavior properties. You can do this in the designer or from code.
// add the inside flag to the current settings of ResizeColsBehavior
this.gridControl1.ResizeColsBehavior |= GridResizeCellsBehavior.InsideGrid;