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
1375
Set toolbar button unchecked at runtime in UltraPrintPreviewDialog
posted

I was hoping to figure this out, but I'm struggling. I'm using the UltraPrintPreviewDialog, but when it runs, I'd like to set the Continuous button / property to be unchecked. The default seems to be checked.

Is there a way to do this when I instantiate the control?   i.e. UltraPrintPreviewDialog.Something.Continuous = FALSE.

Thanks,

JL

Parents
  • 54937
    Offline posted

    Basically when the printpreviewdialog's load event occurs, the state of the toolbar button is initialized based on the value of the contained UltraPrintPreviewControl's Settings.Rows property where 0 is continuous. So if you want continuous to be false then you could (in code) set the ultraPrintPreviewDialog.PrintPreviewControl.Settings.Rows = 1 before you show the dialog.

Reply Children
No Data