TextInputDialog Class Reference

Text input dialog. More...

Inheritance diagram for TextInputDialog:
ICommonDialog

List of all members.

Public Member Functions

 TextInputDialog ()
 TextInputDialog constructor.
void Dispose ()
 Frees unmanaged resources of TextInputDialog.
void Open ()
 Opens the text input dialog.
void Abort ()
 Aborts the text input dialog.

Properties

CommonDialogState State [get]
 Dialog state.
CommonDialogResult Result [get]
 Dialog operational result.
TextInputMode Mode [get, set]
 Text input mode.
string Text [get, set]
 Edit-target text.

Detailed Description

Text input dialog.


Member Function Documentation

void Abort ( )

Aborts the text input dialog.

Calling only in the main thread is possible.

Implements ICommonDialog.

void Open ( )

Opens the text input dialog.

Calling only in the main thread is possible.

Implements ICommonDialog.


Property Documentation

CommonDialogResult Result [get]

Dialog operational result.

Obtaining only in the main thread is possible.

Implements ICommonDialog.

CommonDialogState State [get]

Dialog state.

Obtaining only in the main thread is possible.

Implements ICommonDialog.

string Text [get, set]

Edit-target text.

By setting Text before calling Open(), a character string in the initial state of the text input dialog can be specified. After the State becomes Finished and it is confirmed that the Result is OK, obtain Text to consequently obtain the text edit result.