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 set:gridControl1.Rows.HeaderCount =2 ,gridControl1.RowCount=100,and fill some data in the header of the grid.But when I want to print or printView the grid,And when the pages of the grid more than one .the header of second page will only play a Row.Why??
My printView code is :
GridPrintAtLocDocument pd = new GridPrintAtLocDocument(gridControl1, true); PrintPreviewDialog dlg = new PrintPreviewDialog() ;
dlg.Document = pd; dlg.="MyDocument PrintView";
dlg.ShowDialog();