How to print the contents of the HTMLUI control?
3 Sep 2020 / 1 minute to read
The document available in the HTMLUI control can be printed with the help of the HTMLUIPrintDocument class. The Print method of this class is used to start the document printing process.
//represents printing support in the HTMLUI control
HTMLUIPrintDocument pd;
pd = new HTMLUIPrintDocument(this.htmluiControl1.Document);
// starts the printing process
pd.Print();
' represents printing support in the HTMLUI control
Private pd As HTMLUIPrintDocument
Private pd = New HTMLUIPrintDocument(Me.HtmluiControl1.Document)
' Starts the printing process
pd.Print()
Was this page helpful?
Yes
No
Thank you for your feedback!
Thank you for your feedback and comments. We will rectify this as soon as possible!
An unknown error has occurred. Please try again.
Help us improve this page