Delegate GLFWCallbacks.CharModsCallback
The function signature for Unicode character with modifiers callback functions. It is called for each input character, regardless of what modifier keys are held down.
Namespace: OpenTK.Windowing.GraphicsLibraryFramework
Assembly: OpenTK.Windowing.GraphicsLibraryFramework.dll
Syntax
public delegate void GLFWCallbacks.CharModsCallback(Window* window, uint codepoint, KeyModifiers modifiers)
Parameters
Type | Name | Description |
---|---|---|
Window* | window | The window that received the event. |
uint | codepoint | The Unicode code point of the character. |
KeyModifiers | modifiers | Bit field describing which modifier keys were held down. |