Vcl.Dialogs.TPageSetupDialog.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AOwner: TComponent); override;

C++

__fastcall virtual TPageSetupDialog(System::Classes::TComponent* AOwner);

Properties

Type Visibility Source Unit Parent
constructor public
Vcl.Dialogs.pas
Vcl.Dialogs.hpp
Vcl.Dialogs TPageSetupDialog

Description

Creates and initializes a TPageSetupDialog instance.

The Create method generates a TPageSetupDialog instance, but the new dialog does not appear on the form at runtime until the Execute method is called.

AOwner is the component, typically a form or data module, that is responsible for freeing the TPageSetupDialog instance. It becomes the value of the Owner property.

See Also