Compartilhar via


RuleBasedCollator.LowerCaseFirst Property

Definition

Return true if a lowercase character is sorted before the corresponding uppercase character. -or- Sets the orders of lower cased characters to sort before upper cased characters, in strength TERTIARY.

public bool LowerCaseFirst { [Android.Runtime.Register("isLowerCaseFirst", "()Z", "", ApiSince=24)] get; [Android.Runtime.Register("setLowerCaseFirst", "(Z)V", "", ApiSince=24)] set; }
[<get: Android.Runtime.Register("isLowerCaseFirst", "()Z", "", ApiSince=24)>]
[<set: Android.Runtime.Register("setLowerCaseFirst", "(Z)V", "", ApiSince=24)>]
member this.LowerCaseFirst : bool with get, set

Property Value

true lower cased characters are sorted before upper cased characters, false otherwise

Attributes

Remarks

Property getter documentation:

Return true if a lowercase character is sorted before the corresponding uppercase character. See setCaseFirst(boolean) for details.

Java documentation for android.icu.text.RuleBasedCollator.isLowerCaseFirst().

Property setter documentation:

Sets the orders of lower cased characters to sort before upper cased characters, in strength TERTIARY. If true is set, the RuleBasedCollator will sort lower cased characters before the upper cased ones. Otherwise, if false is set, the RuleBasedCollator will ignore case preferences. The default default setting in a Collator object depends on the locale data loaded from the resources.

Java documentation for android.icu.text.RuleBasedCollator.setLowerCaseFirst(boolean).

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.

Applies to