UCharacter.TitlecaseNoLowercase Field
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
This constant will be removed in the future version. Use Android.Icu.Lang.TitlecaseOptions enum directly instead of this field.
Do not lowercase non-initial parts of words when titlecasing.
[Android.Runtime.Register("TITLECASE_NO_LOWERCASE", ApiSince=24)]
[System.Obsolete("This constant will be removed in the future version. Use Android.Icu.Lang.TitlecaseOptions enum directly instead of this field.", true)]
public const Android.Icu.Lang.TitlecaseOptions TitlecaseNoLowercase = 256;
[<Android.Runtime.Register("TITLECASE_NO_LOWERCASE", ApiSince=24)>]
[<System.Obsolete("This constant will be removed in the future version. Use Android.Icu.Lang.TitlecaseOptions enum directly instead of this field.", true)>]
val mutable TitlecaseNoLowercase : Android.Icu.Lang.TitlecaseOptions
Field Value
Value = 256- Attributes
Remarks
Do not lowercase non-initial parts of words when titlecasing. Option bit for titlecasing APIs that take an options bit set.
By default, titlecasing will titlecase the first cased character of a word and lowercase all other characters. With this option, the other characters will not be modified.
Java documentation for android.icu.lang.UCharacter.TITLECASE_NO_LOWERCASE
.
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.