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'm having what (I'm sure) is such a dumb problem - I can't get the row to grow with the text in there..
grdQuickNotes.RowStyles(tmpRow).WrapText = True
grdQuickNotes.RowStyles(tmpRow).AutoSize = True
IS there something I'm missing? I'm not specifically setting the height; but that does work.
ADAdministrator Syncfusion Team July 11, 2003 11:53 PM UTC
A couple of points. Is grdQuickNotes a GridControl or a GridDataBoundGrid? A GridDataBoundGrid does not support RowStyles so your code would not work for that grid.
The other comment is that style.AutoSize only works for user typing into the grid. It does not work for programmatically changing a cell's value. In this case, you should call grid.Model.RowHeights.ResizeToFit to size the cells to fit.