KeyCharacterMap.KeyData.Meta Property
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.
Caution
deprecated
The character that will be generated in various meta states
(the same ones used for #get
and defined as
KeyEvent#META_SHIFT_ON
and KeyEvent#META_ALT_ON
).
[Android.Runtime.Register("meta")]
[System.Obsolete("deprecated")]
public System.Collections.Generic.IList<char>? Meta { get; set; }
[<Android.Runtime.Register("meta")>]
[<System.Obsolete("deprecated")>]
member this.Meta : System.Collections.Generic.IList<char> with get, set
Property Value
- Attributes
Remarks
The character that will be generated in various meta states (the same ones used for #get
and defined as KeyEvent#META_SHIFT_ON
and KeyEvent#META_ALT_ON
). <table> <tr><th>Index</th><th align="left">Value</th></tr> <tr><td>0</td><td>no modifiers</td></tr> <tr><td>1</td><td>caps</td></tr> <tr><td>2</td><td>alt</td></tr> <tr><td>3</td><td>caps + alt</td></tr> </table>
Java documentation for android.view.KeyCharacterMap.KeyData.meta
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.