How to set default paper size to print HTML in WinForms HTMLUI Control?
Paper size
In WinForms HTMLUI control, paper size can be customized programmatically using the property named “PaperSize”
Following code examples demonstrates the same.
C#
//To set the Paper size for the PrintDocument pd.DefaultPageSettings.PaperSize = new System.Drawing.Printing.PaperSize("ticket", 250, 750); //To set the Margin for the Document (dlg.Document as HTMLUIPrintDocument).DefaultPageSettings.Margins = new System.Drawing.Printing.Margins(0, 0, 0, 0);
VB
'To set the Paper size for the PrintDocument pd.DefaultPageSettings.PaperSize = New System.Drawing.Printing.PaperSize("ticket", 250, 750) 'To set the Margin for the Document TryCast(dlg.Document, HTMLUIPrintDocument).DefaultPageSettings.Margins = New System.Drawing.Printing.Margins(0, 0, 0, 0)
Figure 1. Set Paper size programmatically in HTMLUI with image
Conclusion
I hope you enjoyed learning about how to set default paper size to print HTML in WinForms HTMLUIControl.
You can refer to our WinForms HTMLUIControl's feature tour page to learn about its other groundbreaking feature representations. You can also explore our Documentation to understand how to present and manipulate data.
For current customers, you can check out our WInForms components on the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to explore our WinForms HTMLUIControl and other WInForms components.
If you have any queries or require clarifications, please let us know in the comments below. You can also contact us through our support forums, Direct-Trac or feedback portal, or the feedback portal. We are always happy to assist you!