[This is preliminary documentation and is subject to change.]
Displays modal message box with given prompt, title and items
Namespace: Tools.WindowsT.IndependentTAssembly: Tools.Windows (in Tools.Windows.dll) Version: 1.5.3.38916 (1.5.3.38916)
Syntax
| C# |
|---|
public static MessageBox ModalEx_PTS( string Prompt, string Title, params Object[] Items ) |
| Visual Basic |
|---|
Public Shared Function ModalEx_PTS ( _ Prompt As String, _ Title As String, _ ParamArray Items As Object() _ ) As MessageBox |
| Visual C++ |
|---|
public: static MessageBox^ ModalEx_PTS( String^ Prompt, String^ Title, ... array<Object^>^ Items ) |
| F# |
|---|
static member ModalEx_PTS : Prompt:string * Title:string * Items:Object[] -> MessageBox |
| JScript |
|---|
public static function ModalEx_PTS( Prompt : String, Title : String, ... Items : Object[] ) : MessageBox |
Parameters
- Prompt
- Type: System..::..String
Prompt to be shown
- Title
- Type: System..::..String
Message box title
- Items
- Type: array<System..::..Object>[]()[][]
Items to be shown in message box. Place items of type MessageBox..::..MessageBoxButton, MessageBox..::..MessageBoxCheckBox, MessageBox..::..MessageBoxRadioButton and String here. String items are placed inside ComboBox. Items of other types are ignored.
Return Value
Instance of message box. The instance is alredy closed when this function returns.
See Also
Version History
1.5.3
- Fix: Bug in ModalEx_PTEIOWMHS(String, String, IEnumerable<(Of <<'(Object>)>>), Image, MessageBox..::..MessageBoxOptions, Object, Int32, EventHandler<(Of <<'(MessageBox, EventArgs>)>>), Sound) (which this method depends on) caused that objects in Items were not processed.