Class TextInputEventArgs
This event is triggered when the user has typed text.
Inherited Members
Namespace: OpenTK.Platform
Assembly: OpenTK.Platform.dll
Syntax
public class TextInputEventArgs : WindowEventArgs
Constructors
TextInputEventArgs(WindowHandle, string)
Initializes a new instance of the TextInputEventArgs class.
Declaration
public TextInputEventArgs(WindowHandle window, string text)
Parameters
Type | Name | Description |
---|---|---|
WindowHandle | window | The window which received this text input. |
string | text | The typed text. |
Properties
Text
The text the user entered.
Declaration
public string Text { get; }
Property Value
Type | Description |
---|---|
string |