I am using the UltraWinGrid and I need to print the first three rows on every new page. Is there anyway to do this? Here is the code I am currently using:
Dim
pdSetup As New System.Drawing.Printing.PrintDocument
With pdSetup.DefaultPageSettings.Margins .Top = 20 .Right = 80 .Left = 10 .Bottom = 30End With
pdSetup.DefaultPageSettings.Landscape =
True
pdSetup.DefaultPageSettings.Landscape = TruegrdDemoShift.Print(grdDemoShift.DisplayLayout, pdSetup, RowPropertyCategories.Appearances Or _ RowPropertyCategories.Height Or _ RowPropertyCategories.RowSpacing Or _ RowPropertyCategories.CellAppearance Or _ RowPropertyCategories.Description Or _ RowPropertyCategories.Expanded Or _ RowPropertyCategories.UnboundData)
Hi,
No, there's currently no way to do this.