StatusBar.Text Property
Sets or gets the selected text.
Namespace: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Syntax
'Declaration
Default Property Text As String
string this { get; set; }
property String^ default {
String^ get ();
void set (String^ value);
}
abstract Text : string with get, set
function get Text () : String
function set Text (value : String)
Property Value
Type: System.String
A string representing the selected text.
Remarks
The Text property is the default property for the StatusBar object.
When the Text property is read, the text in the status bar is returned.
When the Text property is set, the value is displayed in the status bar.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
Other Resources
How to: Compile and Run the Automation Object Model Code Examples