SearchIterator.BreakIterator 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 BreakIterator that is used to restrict the indexes at which matches are detected. -or- Set the BreakIterator that will be used to restrict the points at which matches are detected.
public virtual Android.Icu.Text.BreakIterator? BreakIterator { [Android.Runtime.Register("getBreakIterator", "()Landroid/icu/text/BreakIterator;", "GetGetBreakIteratorHandler", ApiSince=24)] get; [Android.Runtime.Register("setBreakIterator", "(Landroid/icu/text/BreakIterator;)V", "GetSetBreakIterator_Landroid_icu_text_BreakIterator_Handler", ApiSince=24)] set; }
[<get: Android.Runtime.Register("getBreakIterator", "()Landroid/icu/text/BreakIterator;", "GetGetBreakIteratorHandler", ApiSince=24)>]
[<set: Android.Runtime.Register("setBreakIterator", "(Landroid/icu/text/BreakIterator;)V", "GetSetBreakIterator_Landroid_icu_text_BreakIterator_Handler", ApiSince=24)>]
member this.BreakIterator : Android.Icu.Text.BreakIterator with get, set
Property Value
the BreakIterator set to restrict logic matches
- Attributes
Remarks
Property getter documentation:
Returns the BreakIterator that is used to restrict the indexes at which matches are detected. This will be the same object that was passed to the constructor or to #setBreakIterator
. If the BreakIterator
has not been set, null
will be returned. See #setBreakIterator
for more information.
Java documentation for android.icu.text.SearchIterator.getBreakIterator()
.
Property setter documentation:
Set the BreakIterator that will be used to restrict the points at which matches are detected.
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.