RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
TForm Class

TForm represents a standard application window (form).

Pascal
TForm = class(TCustomForm);
C++
class TForm : public TCustomForm;

When you create forms in the Form designer at design time, they are implemented as descendants of TForm. Forms can represent the application's main window, or dialog boxes, or MDI children. A form can contain other objects, such as TButton, TCheckBox, and TComboBox objects. 

Examples of forms include TLoginDialog and TPasswordDialog objects. 

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!