Skip to content

OnScreenKeyboardConfig

interludesoftware.tick

Interlude.Tick

OnScreenKeyboardConfig Struct

Options passed to OpenOnScreenKeyboard(string, OnScreenKeyboardConfig). All flags default to false, which produces a plain editable text field.

public struct OnScreenKeyboardConfig

Fields

OnScreenKeyboardConfig.IsMultiline Field

Allow newline characters in the keyboard view.

public bool IsMultiline;

Field Value

System.Boolean

OnScreenKeyboardConfig.IsNumberOnly Field

Restrict the keyboard to a numeric pad.

public bool IsNumberOnly;

Field Value

System.Boolean

OnScreenKeyboardConfig.IsPassword Field

Mask each character (iOS / Android password keyboards).

public bool IsPassword;

Field Value

System.Boolean