Method
PrinterSetup.PageSetupDialog
Warning
This item was deprecated in version 2019r2. Please use PrinterSetup.ShowPageSetupDialog as a replacement.
Description
Displays the standard Page Setup dialog box.
Notes
If the SetupString property has been populated before this method is called, the Page Setup dialog box will reflect the settings stored in the SetupString property. After the user clicks the OK button to close the Page Setup dialog box, all of the PrinterSetup properties will be updated to reflect the settings the user chose.
On a Mac, PageSetupDialog takes an optional parameter, window. If specified, the Page Setup dialog will appear as a sheet connected to that window.
Returns a Boolean. This function returns True if the User clicks OK and False if the user clicks Cancel.
Sample code
This example displays the Page Setup dialog box and then stores the settings the user chose in a variable:
Dim printerSettings As String
Dim printer As New PrinterSetup
If printer.PageSetupDialog Then
printerSettings = printer.SetupString
End If
Compatibility
All project types on all supported operating systems.