CoreInputViewKind Enum

Definition

Defines the values for specifying a preferred view for the input pane.

public enum class CoreInputViewKind
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 458752)]
enum class CoreInputViewKind
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 458752)]
public enum CoreInputViewKind
var value = Windows.UI.ViewManagement.Core.CoreInputViewKind.default
Public Enum CoreInputViewKind
Inheritance
CoreInputViewKind
Attributes

Windows requirements

Device family
Windows 10, version 1809 (introduced in 10.0.17763.0)
API contract
Windows.Foundation.UniversalApiContract (introduced in v7.0)

Fields

Clipboard 5

Show the clipboard history pane view.

Default 0

Show the default input pane view.

Behaves exactly like TryShow or TryShowPrimaryView.

Dictation 6

Show the dictation pane view.

Emoji 3

Show the emoji pane view. If it is not available, it will show the emoji view of the software keyboard.

Handwriting 2

Show the handwriting pane view. If it is not available, it will show the software keyboard.

Keyboard 1

Show the software keyboard view.

Symbols 4

Show the emoji pane with symbols view enabled. If it is not available, it will show the emoji view of the software keyboard.

Remarks

Primary view refers to either of the CoreInputViewKind.Keyboard or CoreInputViewKind.Handwriting views, while CoreInputView can be any of the values from CoreInputViewKind.

Pass this parameter in the TryShow(CoreInputViewKind) method to specify the preferred input view.

This allows apps to build specific experiences around certain input views, if that view is available.

Version history

Windows version SDK version Value added
2004 19041 Symbols
?? ?? Clipboard

Applies to

See also