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

Gets or sets instance of MessageBoxForm that currently shows the message box

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

Syntax

C#
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)]
[BrowsableAttribute(false)]
public MessageBoxForm Form { get; protected set; }
Visual Basic
<DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)> _
<BrowsableAttribute(False)> _
Public Property Form As MessageBoxForm
	Get
	Protected Set
Visual C++
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility::Hidden)]
[BrowsableAttribute(false)]
public:
property MessageBoxForm^ Form {
	MessageBoxForm^ get ();
	protected: void set (MessageBoxForm^ value);
}
F#
[<DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)>]
[<BrowsableAttribute(false)>]
member Form : MessageBoxForm with get, set
JScript
function get Form () : MessageBoxForm
protected function set Form (value : MessageBoxForm)

Field Value

This property should be set only from overriden PerformDialog(Boolean, Object) when it does not calls base class method

See Also