Table Of Contents

Previous topic

Overlay

Next topic

PageSetupDialogData

This Page

phoenix_title PageSetupDialog

This class represents the page setup common dialog.

The page setup dialog contains controls for paper size (letter, A4, A5 etc.), orientation (landscape or portrait), and, only under Windows currently, controls for setting left, top, right and bottom margin sizes in millimetres.

The exact appearance of this dialog varies among the platforms as a native dialog is used when available (currently the case for all major platforms).

When the dialog has been closed, you need to query the PageSetupDialogData object associated with the dialog.

Note that the OK and Cancel buttons do not destroy the dialog; this must be done by the application.


class_hierarchy Inheritance Diagram

Inheritance diagram for class PageSetupDialog

Inheritance diagram of PageSetupDialog


method_summary Methods Summary

__init__ Constructor.
GetPageSetupData Returns the PageSetupDialogData object associated with the dialog.
ShowModal Shows the dialog, returning ID_OK if the user pressed OK, and ID_CANCEL otherwise.

property_summary Properties Summary

PageSetupData See GetPageSetupData

api Class API



class PageSetupDialog(Object)

This class represents the page setup common dialog.

Possible constructors:

PageSetupDialog(parent, data=None)

Methods



__init__(self, parent, data=None)

Constructor.

Pass a parent window, and optionally a pointer to a block of page setup data, which will be copied to the print dialog’s internal data.

Parameters:


GetPageSetupData(self)

Returns the PageSetupDialogData object associated with the dialog.

Return type: PageSetupDialogData


ShowModal(self)

Shows the dialog, returning ID_OK if the user pressed OK, and ID_CANCEL otherwise.

Return type:int

Properties



PageSetupData

See GetPageSetupData