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 way I can set the whole col 0 to be horizontalalignment of center? Like when i want to set all of col 0 width I just do the following
Me.grdDateRange.Model.ColWidths(0) = 60
Is there something similar to that for setting the alignment that Im overlooking? I tried adding c0:c0 to the range styles and setting it there and it didnt do anything
ADAdministrator Syncfusion Team February 3, 2005 04:07 PM UTC
Set it through
grdDateRange.Model.BaseStylesMap["Row Header"].StyleInfo
or in VB
grdDateRange.Model.BaseStylesMap("Row Header").StyleInfo
Stefan
>Is there a way I can set the whole col 0 to be horizontalalignment of center? Like when i want to set all of col 0 width I just do the following
>
> Me.grdDateRange.Model.ColWidths(0) = 60
>
>Is there something similar to that for setting the alignment that Im overlooking? I tried adding c0:c0 to the range styles and setting it there and it didnt do anything