Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
20
UltraPrintPreviewDocument-Printing a single pag
posted

Hello,

i am using the ultraprintpreviewdocument to print documents with several pages. Now I want to select a single page from them and print it.  Is this possible with a ultraprintpreviewdocument (Version 8.3) or do I have to develop my own printpreviewdocument?

Parents
  • 5118
    Suggested Answer
    posted

    This can be done through the PrinterSettings object.  Get to it like this:

    ultraPrintPreviewDialog1.Document.DefaultPageSettings.PrinterSettings

    and then you can invoke the print command:

    ultraPrintPreviewDialog1.Document.Print()

     

Reply Children