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.
ADAdministrator Syncfusion Team December 22, 2004 07:39 AM
In a GridControl, the column headers are row 0. So, to change what you see in the header cell, you can use code like:
this.grid[0, someColIndex].Text = "Your header text";
ADAdministrator Syncfusion Team December 22, 2004 11:07 PM
Hi Burch !
Thanks Its working ...
Rajesh
>In a GridControl, the column headers are row 0. So, to change what you see in the header cell, you can use code like:
>
>this.grid[0, someColIndex].Text = "Your header text";
>
MMMrudang MajmudarJanuary 6, 2005 05:42 AM
I am doing the same thing
this.gridControl1[0,4].Text="TEXT";
it does not work.
Using gridcontrol in virtual mode
>In a GridControl, the column headers are row 0. So, to change what you see in the header cell, you can use code like:
>
>this.grid[0, someColIndex].Text = "Your header text";
>
ADAdministrator Syncfusion Team January 6, 2005 06:14 AM
In a true virtual grid, you would need to provide the header text in QueryCellInfo based on the value of e.ColIndex when e.RowIndex == 0.