BreakIterator.Following(Int32) Method
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.
Sets the iterator's current iteration position to be the first boundary position following the specified position.
[Android.Runtime.Register("following", "(I)I", "GetFollowing_IHandler", ApiSince=24)]
public abstract int Following (int offset);
[<Android.Runtime.Register("following", "(I)I", "GetFollowing_IHandler", ApiSince=24)>]
abstract member Following : int -> int
Parameters
- offset
- Int32
The character position to start searching from.
Returns
The position of the first boundary position following "offset" (whether or not "offset" itself is a boundary position), or DONE if "offset" is the past-the-end offset.
- Attributes
Remarks
Sets the iterator's current iteration position to be the first boundary position following the specified position. (Whether the specified position is itself a boundary position or not doesn't matter-- this function always moves the iteration position to the first boundary after the specified position.) If the specified position is the past-the-end position, returns DONE.
Java documentation for android.icu.text.BreakIterator.following(int)
.
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.