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();