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

Gets or sets title text of message box

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

Syntax

C#
[DefaultValueAttribute(typeof(string), null)]
[KnownCategoryAttribute(KnownCategoryAttribute..::..KnownCategories.Appearance)]
public string Title { get; set; }
Visual Basic
<DefaultValueAttribute(GetType(String), Nothing)> _
<KnownCategoryAttribute(KnownCategoryAttribute..::..KnownCategories.Appearance)> _
Public Property Title As String
	Get
	Set
Visual C++
[DefaultValueAttribute(typeof(String), nullptr)]
[KnownCategoryAttribute(KnownCategoryAttribute..::..KnownCategories::Appearance)]
public:
property String^ Title {
	String^ get ();
	void set (String^ value);
}
F#
[<DefaultValueAttribute(typeof(string), null)>]
[<KnownCategoryAttribute(KnownCategoryAttribute..::..KnownCategories.Appearance)>]
member Title : string with get, set
JScript
function get Title () : String
function set Title (value : String)

Remarks

If value of thsi property is null or an empty string, application title is used (see Title)

See Also