TextElementEnumerator.MoveNext Method
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Advances the enumerator to the next text element of the string.
Namespace: System.Globalization
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public Function MoveNext As Boolean
public bool MoveNext()
Return Value
Type: System.Boolean
true if the enumerator was successfully advanced to the next text element; false if the enumerator has passed the end of the string.
Implements
Exceptions
Exception | Condition |
---|---|
InvalidOperationException | The string was modified after the enumerator was created. |
Remarks
The .NET Framework defines a text element as a unit of text that is displayed as a single character, that is, a grapheme. A text element can be a base character, a surrogate pair, or a combining character sequence. The Unicode Standard defines a surrogate pair as a coded character representation for a single abstract character that consists of a sequence of two code units, where the first unit of the pair is a high surrogate and the second is a low surrogate. The Unicode Standard defines a combining character sequence as a combination of a base character and one or more combining characters. A surrogate pair can represent a base character or a combining character. For more information on surrogate pairs and combining character sequences, see The Unicode Standard at http://www.unicode.org.
After an enumerator is created or after a Reset is called, the enumerator is positioned before the first text element of the string, and the first call to MoveNext moves the enumerator over the first text element of the string.
If the string is modified after this enumerator was created, MoveNext throws an exception.
After the end of the string is passed, subsequent calls to MoveNext return false until Reset is called.
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0
XNA Framework
Supported in: Xbox 360, Windows Phone OS 7.0
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.