CoreInputViewKind Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Name | Value | Description |
---|---|---|
Default | 0 | Show the default input pane view. Behaves exactly like TryShow or TryShowPrimaryView. |
Keyboard | 1 | Show the software keyboard view. |
Handwriting | 2 | Show the handwriting pane view. If it is not available, it will show the software keyboard. |
Emoji | 3 | Show the emoji pane view. If it is not available, it will show the emoji view of the software keyboard. |
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. |
Clipboard | 5 | Show the clipboard history pane view. |
Dictation | 6 | Show the dictation pane view. |
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 |