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

Dsiplays modal message box with formated prompt, given title and owner

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 ModalF_PTWa(
	string Prompt,
	string Title,
	Object Owner,
	params Object[] arguments
)
Visual Basic
Public Shared Function ModalF_PTWa ( _
	Prompt As String, _
	Title As String, _
	Owner As Object, _
	ParamArray arguments As Object() _
) As DialogResult
Visual C++
public:
static DialogResult ModalF_PTWa(
	String^ Prompt, 
	String^ Title, 
	Object^ Owner, 
	... array<Object^>^ arguments
)
F#
static member ModalF_PTWa : 
        Prompt:string * 
        Title:string * 
        Owner:Object * 
        arguments:Object[] -> DialogResult 
JScript
public static function ModalF_PTWa(
	Prompt : String, 
	Title : String, 
	Owner : Object, 
	... arguments : Object[]
) : DialogResult

Parameters

Prompt
Type: System..::..String
Format string for promt to be shown to user
Title
Type: System..::..String
Message box title
Owner
Type: System..::..Object
The window message box window will be modal to (can be null). Typical values are IWin32Window and Window If implementation does not recognize type of owner it ignores it.
arguments
Type: array<System..::..Object>[]()[][]
Formating arguments for prompt. Arguments are placed in place of placeholders in Prompt using the String function.

Return Value

Indicates button clicked by user

See Also

Collapse/expand Version History

1.5.3