Vcl.Controls.TControl.Text

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Text: TCaption read GetText write SetText;

C++

__property TCaption Text = {read=GetText, write=SetText};

Properties

Type Visibility Source Unit Parent
property protected
Vcl.Controls.pas
Vcl.Controls.hpp
Vcl.Controls TControl

Description

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