InputScopeNameValue 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.
Specifies a particular named input mode (InputScopeName) used to populate an InputScope.
public enum class InputScopeNameValue
/// [Windows.Foundation.Metadata.ContractVersion(Microsoft.UI.Xaml.WinUIContract, 65536)]
enum class InputScopeNameValue
[Windows.Foundation.Metadata.ContractVersion(typeof(Microsoft.UI.Xaml.WinUIContract), 65536)]
public enum InputScopeNameValue
Public Enum InputScopeNameValue
<object property="enumNamedConstant"/>
- Inheritance
-
InputScopeNameValue
- Attributes
Fields
Name | Value | Description |
---|---|---|
Default | 0 | No input scope is applied. |
Url | 1 | Indicates a Uniform Resource Identifier (URI). This can include URL, File, or File Transfer Protocol (FTP) formats. Keyboard includes .com and Go keys (as well as :, -, and / keys). Pressing and holding the .com key displays additional options (.org, .net, and region-specific suffixes). |
EmailSmtpAddress | 5 | Input scope is intended for working with a Simple Mail Transport Protocol (SMTP) form e-mail address (accountname@host). Keyboard includes @ and .com keys. Pressing and holding the .com key displays additional options (.org, .net, and region-specific suffixes). See EmailNameOrAddress for less specific keyboard. |
PersonalFullName | 7 | Input scope is intended for working with a complete personal name. |
CurrencyAmountAndSymbol | 20 | Input scope is intended for working with amount and symbol of currency. |
CurrencyAmount | 21 | Input scope is intended for working with a currency amount (no currency symbol). |
DateMonthNumber | 23 | Input scope is intended for working with a numeric month of the year. |
DateDayNumber | 24 | Input scope is intended for working with a numeric day of the month. |
DateYear | 25 | Input scope is intended for working with a numeric year. |
Digits | 28 | Input scope is intended for working with a collection of numbers. |
Number | 29 | Input scope is intended for working with digits 0-9. |
Password | 31 | Input scope is intended for working with an alphanumeric password, including other symbols, such as punctuation and mathematical symbols. |
TelephoneNumber | 32 | Input scope is intended for working with telephone numbers. |
TelephoneCountryCode | 33 | Input scope is intended for working with a numeric telephone country/region code. |
TelephoneAreaCode | 34 | Input scope is intended for working with a numeric telephone area code. |
TelephoneLocalNumber | 35 | Input scope is intended for working with a local telephone number. |
TimeHour | 37 | Input scope is intended for working with a numeric hour of the day. |
TimeMinutesOrSeconds | 38 | Input scope is intended for working with a numeric minute of the hour, or second of the minute. |
NumberFullWidth | 39 | Input scope is intended for full-width number characters. |
AlphanumericHalfWidth | 40 | Input scope is intended for alphanumeric half-width characters. |
AlphanumericFullWidth | 41 | Input scope is intended for alphanumeric full-width characters. |
Hiragana | 44 | Input scope is intended for Hiragana characters. |
KatakanaHalfWidth | 45 | Input scope is intended for Katakana half-width characters. |
KatakanaFullWidth | 46 | Input scope is intended for Katakana full-width characters. |
Hanja | 47 | Input scope is intended for Hanja characters. |
HangulHalfWidth | 48 | Input scope is intended for Hangul half-width characters. |
HangulFullWidth | 49 | Input scope is intended for Hangul full-width characters. |
Search | 50 | Input scope is intended for search strings. |
Formula | 51 | Input scope is intended for spreadsheet formula strings. |
SearchIncremental | 52 | Input scope is intended for search boxes where incremental results are displayed as the user types. |
ChineseHalfWidth | 53 | Input scope is intended for Chinese half-width characters. |
ChineseFullWidth | 54 | Input scope is intended for Chinese full-width characters. |
NativeScript | 55 | Input scope is intended for native script. |
Text | 57 | Input scope is intended for working with text. |
Chat | 58 | Input scope is intended for chat strings. |
NameOrPhoneNumber | 59 | Input scope is intended for working with a name or telephone number. |
EmailNameOrAddress | 60 | Input scope is intended for working with an email, name, or address. See EmailSmtpAddress for email-specific keyboard. |
Maps | 62 | Input scope is intended for working with a map location. |
NumericPassword | 63 | Expected input is a numeric password, or PIN. |
NumericPin | 64 | Expected input is a numeric PIN. |
AlphanumericPin | 65 | Expected input is an alphanumeric PIN. |
FormulaNumber | 67 | Expected input is a mathematical formula. Advises input processors to show the number page. |
ChatWithoutEmoji | 68 | Expected input does not include emoji. Advises input processors to not show the emoji key. |
Remarks
Note
Support for a given input scope value can vary across input methods.