Show / Hide Table of Contents

Class TextInputEventArgs

This event is triggered when the user has typed text.

Inheritance
object
EventArgs
WindowEventArgs
TextInputEventArgs
Inherited Members
WindowEventArgs.Window
EventArgs.Empty
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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

See Also

TextEditingEventArgs
In this article
Back to top Generated by DocFX