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

Displays modal message box with given prompt and title

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_PT(
	string Prompt,
	string Title
)
Visual Basic
Public Shared Function Modal_PT ( _
	Prompt As String, _
	Title As String _
) As DialogResult
Visual C++
public:
static DialogResult Modal_PT(
	String^ Prompt, 
	String^ Title
)
F#
static member Modal_PT : 
        Prompt:string * 
        Title:string -> DialogResult 
JScript
public static function Modal_PT(
	Prompt : String, 
	Title : String
) : DialogResult

Parameters

Prompt
Type: System..::..String
Prompt to be shown
Title
Type: System..::..String
Message box title

Return Value

Indicates button clicked by user

See Also