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

If overriden in derived class shows the dialog

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

Syntax

C#
protected abstract void PerformDialog(
	bool Modal,
	Object Owner
)
Visual Basic
Protected MustOverride Sub PerformDialog ( _
	Modal As Boolean, _
	Owner As Object _
)
Visual C++
protected:
virtual void PerformDialog(
	bool Modal, 
	Object^ Owner
) abstract
F#
abstract PerformDialog : 
        Modal:bool * 
        Owner:Object -> unit 
JScript
protected abstract function PerformDialog(
	Modal : boolean, 
	Owner : Object
)

Parameters

Modal
Type: System..::..Boolean
Indicates if dialog should be shown modally (true) or modells (false)
Owner
Type: System..::..Object
Parent window of dialog (may be null). Typical values are IWin32Window and Window. If implementation does not recognize type of owner it shall treat it as null.

Exceptions

ExceptionCondition
System..::..InvalidOperationExceptionState is not Created. Overriding method shall check this condition and thrown an exception if condition is vialoted.

See Also

Collapse/expand Version History

1.5.3