TextElementEnumerator.Current 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.
Gets the current text element in the string.
public:
property System::Object ^ Current { System::Object ^ get(); };
public object Current { get; }
member this.Current : obj
Public ReadOnly Property Current As Object
Property Value
An object containing the current text element in the string.
Implements
Exceptions
The enumerator is positioned before the first text element of the string or after the last text element.
Remarks
After an enumerator is created or after a Reset is called, MoveNext must be called to advance the enumerator to the first text element of the string before reading the value of Current. Otherwise, Current is undefined.
Current also throws an exception if the last call to MoveNext returned false
, which indicates the end of the string.
Current does not move the position of the enumerator, and consecutive calls to Current return the same object until either MoveNext or Reset is called.