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.
Is there a property ColumnWidth on a GridBoundColumn? Or you can only set it through the grids model?
GridBoundColumn gbc = new GridBoundColumn();
gbc.HeaderText = "Private Column";
gbc.MappingName = "Name1";
gbc.StyleInfo.Format = "T";
gridDataBoundGrid1.GridBoundColumns.Add(gbc);
gridDataBoundGrid1.Model.ColWidths["Name1"] = 50;
ADAdministrator Syncfusion Team December 19, 2002 06:37 PM UTC
> Is there a property ColumnWidth on a GridBoundColumn? Or you can only set it through the grids model?
>
> GridBoundColumn gbc = new GridBoundColumn();
> gbc.HeaderText = "Private Column";
> gbc.MappingName = "Name1";
> gbc.StyleInfo.Format = "T";
> gridDataBoundGrid1.GridBoundColumns.Add(gbc);
>
> gridDataBoundGrid1.Model.ColWidths["Name1"] = 50;
>
Right now you have to set it through the grid model (as shown in your example). But we'll add also support for it in GridBoundColumn and design-time in future.
Stefan