The items of the standard group include some basic graphical controls.
Name |
Description |
Design |
TMainMenu |
Creates a horizontal menu bar at the top of the window. Items can be added with the Items feature in the Object Inspector. |
|
TPopupMenu |
Creates a pop-up menu. This menu must be added to another item with the PopupMenu feature. The menu then appears with a right-click on the corresponding item. |
|
TLabel |
Creates simple text that can be placed freely. The text cannot be changed by users. |
|
TEdit |
Creates a simple text field, in which users can enter text. With Enabled feature you can prevent editing of the field. |
|
TMemo |
Creates a multiline text field, which is otherwise like TEdit item. |
|
TButton |
Creates a simple button. With the various Events, you can add features to the button. |
|
TCheckBox |
Creates a checkbox. This feature provides users with a range of options, of which multiple options can be selected. |
|
TRadioButton |
Creates a radio button. This feature provides users with a range of options; however, unlike the Checkbox, users are only permitted to select a single option. Multiple selection is not possible. |
|
TListBox |
Creates a list. Depending on the MultiSelect feature, users can select one or more entries. Entries are added with the Items feature. |
|
TComboBox |
Creates a drop-down box. Entries can be added with the Items feature. |
|
TGroupBox |
Creates a group box for logical structuring of additional items. Especially when many different selection items are listed in the window, a logical structure provides a better overview for users. Please note that you cannot add any existing items to the GroupBox. This means that you first have to create a GroupBox and then create new items in the GroupBox. |
|
TPanel |
Creates a panel for the logical structuring of additional items. The panel does not contain any special features. However, it lists all Events to be able to respond to all occurrences. Please note that you cann add any existing items to a panel. This means that you first have to create a panel and then create new items in the panel. |
|
TRadioGroup |
Creates a group of radio buttons. It is only possible to select a single entry within a group. Entries can be added with the Items feature. |
Last change on 10.03.2014