TextView.FontFeatureSettings 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.
Returns the font feature settings. -or- Sets font feature settings.
public virtual string? FontFeatureSettings { [Android.Runtime.Register("getFontFeatureSettings", "()Ljava/lang/String;", "GetGetFontFeatureSettingsHandler")] get; [Android.Runtime.Register("setFontFeatureSettings", "(Ljava/lang/String;)V", "GetSetFontFeatureSettings_Ljava_lang_String_Handler")] set; }
[<get: Android.Runtime.Register("getFontFeatureSettings", "()Ljava/lang/String;", "GetGetFontFeatureSettingsHandler")>]
[<set: Android.Runtime.Register("setFontFeatureSettings", "(Ljava/lang/String;)V", "GetSetFontFeatureSettings_Ljava_lang_String_Handler")>]
member this.FontFeatureSettings : string with get, set
Property Value
the currently set font feature settings. Default is null.
- Attributes
Remarks
Property getter documentation:
Returns the font feature settings. The format is the same as the CSS font-feature-settings attribute: https://www.w3.org/TR/css-fonts-3/#font-feature-settings-prop
Java documentation for android.widget.TextView.getFontFeatureSettings()
.
Property setter documentation:
Sets font feature settings. The format is the same as the CSS font-feature-settings attribute: https://www.w3.org/TR/css-fonts-3/#font-feature-settings-prop
Java documentation for android.widget.TextView.setFontFeatureSettings(java.lang.String)
.
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.