Vcl.FileCtrl.TFilterComboBox.Text

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Text: TCaption read GetText write SetText default 0;

C++

__property Text = {default=0};

Properties

Type Visibility Source Unit Parent
property public
Vcl.FileCtrl.pas
Vcl.FileCtrl.hpp
Vcl.FileCtrl TFilterComboBox

Description

Contains a text string associated with the control.

Vcl.FileCtrl.TFilterComboBox.Text inherits from Vcl.Controls.TControl.Text. All content below this line refers to Vcl.Controls.TControl.Text.

Contains a text string associated with the control.

Use the Text property to read the Text of the control or to specify a new string for the Text value. By default, Text is the control name. For edit controls and memos, the Text appears within the control. For combo boxes, the Text is the content of the edit control portion of the combo box.

Note: Controls that display text use either the Caption property or the Text property to specify the text value. Which property is used depends on the type of control. In general, Caption is used for text that appears as a window title or label, while Text is used for text that appears as the content of a control.

See Also

Code Examples