PrinterSetup.SetupString

From Xojo Documentation

Property (As String )
aPrinterSetup.SetupString = newStringValue
or
StringValue = aPrinterSetup.SetupString

Supported for all project types and targets.

A value that represents all of the other properties.

Notes

When the user clicks OK in the Page Setup dialog box, this value will be populated. You can then store this value to store the user's Page Setup settings. Assigning one of these stored values to this property will then update all of the other properties restoring the page setup settings.

Examples

This example displays the Page Setup dialog box and then stores the settings the user chose in a variable:

Dim settings As String
Dim pageSetup As New PrinterSetup
If pageSetup.PageSetupDialog Then
settings = PageSetup.SetupString
End If

This example restores the page setup settings stored in a variable called "settings" and then displays the Page Setup dialog box with those settings:

Dim pageSetup As New PrinterSetup
pageSetup.SetupString = settings
If pageSetup.PageSetupDialog Then
settings = PageSetup.SetupString
End If