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

Displays modal message box with given prompt, title and icon

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

Syntax

C#
public static DialogResult Modal_PTI(
	string Prompt,
	string Title,
	MessageBox..::..MessageBoxIcons Icon
)
Visual Basic
Public Shared Function Modal_PTI ( _
	Prompt As String, _
	Title As String, _
	Icon As MessageBox..::..MessageBoxIcons _
) As DialogResult
Visual C++
public:
static DialogResult Modal_PTI(
	String^ Prompt, 
	String^ Title, 
	MessageBox..::..MessageBoxIcons Icon
)
F#
static member Modal_PTI : 
        Prompt:string * 
        Title:string * 
        Icon:MessageBox..::..MessageBoxIcons -> DialogResult 
JScript
public static function Modal_PTI(
	Prompt : String, 
	Title : String, 
	Icon : MessageBox..::..MessageBoxIcons
) : DialogResult

Parameters

Prompt
Type: System..::..String
Prompt to be shown
Title
Type: System..::..String
Message box title
Icon
Type: Tools.WindowsT.IndependentT..::..MessageBox..::..MessageBoxIcons
Defines one of predefined icons to show to user. Actual image is obtained via GetIconDelegate

Return Value

Indicates button clicked by user

See Also