PrinterSetup.PageSetupDialog

From Xojo Documentation

Method

PrinterSetup.PageSetupDialog(Optional window as Window) As Boolean

Supported for all project types and targets.

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.

Examples

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