Processes specified text as an input by user.

Namespace: Sgry.Azuki.WinForms
Assembly: Azuki (in Azuki.dll) Version: 1.7.13.40248

Syntax

C#
public void HandleTextInput(
	string text
)
Visual Basic
Public Sub HandleTextInput ( 
	text As String
)

Parameters

text
Type: System..::..String
The string to be processed.

Implements

IUserInterface..::..HandleTextInput(String)

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

ExceptionCondition
System..::..InvalidOperationExceptionThis object is already disposed.
System..::..ArgumentNullExceptionParameter 'text' is null.

See Also