| [Overview][Classes][Procedures and functions][Index] | 
[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
The common base class for custom drawn dialogs (Calculator and Calendar).
Source position: extdlgs.pas line 107
type TExtCommonDialog = class(TCommonDialog)  | 
||
protected  | 
||
function GetLeft; virtual;  | 
  | 
Gets the value for the Left property.  | 
function GetHeight; override;  | 
  | 
Gets the value for the Height property.  | 
function GetTop; virtual;  | 
  | 
Gets the value for the Top property.  | 
function GetWidth; override;  | 
  | 
Gets the value for the Width property.  | 
procedure SetLeft(); virtual;  | 
  | 
Sets the value for the Left property.  | 
procedure SetTop(); virtual;  | 
  | 
Sets the value for the Top property.  | 
property DlgForm: TCustomForm; [rw]  | 
  | 
Contains the form displayed modally for the custom-drawn dialog.  | 
public  | 
||
constructor Create(); override;  | 
  | 
Constructor for the class instance.  | 
destructor Destroy; override;  | 
  | 
Destructor for the class instance.  | 
  | 
Contains the left coordinate for the dialog form.  | 
|
  | 
Contains the top coordinate for the dialog form.  | 
|
published  | 
||
property DialogPosition: TPosition; [rw]  | 
  | 
Specifies the position where the dialog is displayed.  | 
end;  | 
  | 
The common base class for custom drawn dialogs (Calculator and Calendar).  | 
|
| | | ||
  | 
The base type from which other dialogs are derived.  | 
|
| | | ||
  | 
The base class for LCL components which have an associated widget.  | 
|
| | | ||
| | | ||
| | | ||
TExtCommonDialog is a TCommonDialog descendant which implements a common base class for custom drawn dialogs such as TCalculatorDialog and TCalendarDialog. It provides additional properties used to set the position for the form displayed in the dialog.
  | 
Contains the form displayed modally for the custom-drawn dialog.  | 
|
  | 
Specifies the position where the dialog is displayed.  | 
|
  | 
Contains the left coordinate for the dialog form.  | 
|
  | 
Contains the top coordinate for the dialog form.  | 
|
  | 
Implements a pop-up calculator dialog used to perform simple calculations and return the value.  | 
|
  | 
TCalendarDialog - a popup calendar dialog that allows a date to be selected and returned to the main program.  | 
|
  | 
The base type from which other dialogs are derived.  | 
| Version 4.0 | Generated 2025-05-03 | Home |