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

Gets or sets sound played when message box is shown

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

Syntax

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

Field Value

Sound played when message box is shown. Null if no sound shall be played.

Remarks

Current sound to be played when message box is show. Null if no sound is played.

See Also