[This is preliminary documentation and is subject to change.]

Gets or sets the text that is to be displayed on the item.

Namespace: Tools.WindowsT.FormsT
Assembly: Tools.Windows (in Tools.Windows.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
[BindableAttribute(true)]
public override string Text { get; set; }
Visual Basic
<BindableAttribute(True)> _
Public Overrides Property Text As String
	Get
	Set
Visual C++
[BindableAttribute(true)]
public:
virtual property String^ Text {
	String^ get () override;
	void set (String^ value) override;
}
F#
[<BindableAttribute(true)>]
abstract Text : string with get, set
[<BindableAttribute(true)>]
override Text : string with get, set
JScript
override function get Text () : String
override function set Text (value : String)

Return Value

A string representing the item's text. The default value is the empty string ("").

See Also