Processes specified text as an input by user.
Namespace: Sgry.AzukiAssembly: Azuki (in Azuki.dll) Version: 1.7.13.40248
Syntax
C# |
---|
void HandleTextInput( string text ) |
Visual Basic |
---|
Sub HandleTextInput ( text As String ) |
Parameters
- text
- Type: System..::..String
The string to be processed.
Remarks
This method processes specified text as an input by user. Because this method is the implementation of user input, some special pre-processes will be done. The example of pre-processes are next:
- If Document.ReadOnly property is true, this method will do nothing.
- This method applies AutoIndentHook for each characters in the text.
- This method applies built-in hook processes such as converting tab to spaces.
Exceptions
Exception | Condition |
---|---|
System..::..InvalidOperationException | This object is already disposed. |
System..::..ArgumentNullException | Parameter 'text' is null. |