UnicodeCharacterRangeCollection.UnicodeCharacterRangeCollectionEnumerator.MoveNext - метод
Обновлен: Ноябрь 2007
Moves the enumerator index to the next object in the collection.
Пространство имен: Microsoft.Ink
Сборка: Microsoft.Ink.Analysis (в Microsoft.Ink.Analysis.dll)
Синтаксис
'Декларация
Public Function MoveNext As Boolean
'Применение
Dim instance As UnicodeCharacterRangeCollection..::.UnicodeCharacterRangeCollectionEnumerator
Dim returnValue As Boolean
returnValue = instance.MoveNext()
public bool MoveNext()
public:
virtual bool MoveNext() sealed
public final boolean MoveNext()
public final function MoveNext() : boolean
Возвращаемое значение
Тип: System.Boolean
Set to true if the index position references an object; false if the index position references the end of the collection.
Реализации
Примеры
In this example, an enumerator is obtained for a UnicodeCharacterRangeCollection and used to traverse the collection.
Dim UCRC As UnicodeCharacterRangeCollection = pInkRecognizer.GetUnicodeRanges()
Dim theEnumerator As _
UnicodeCharacterRangeCollection.UnicodeCharacterRangeCollectionEnumerator _
= UCRC.GetEnumerator()
theEnumerator.Reset()
While theEnumerator.MoveNext()
Dim UCR As UnicodeCharacterRange = theEnumerator.Current
End While
UnicodeCharacterRangeCollection UCRC = pInkRecognizer.GetUnicodeRanges();
UnicodeCharacterRangeCollection.UnicodeCharacterRangeCollectionEnumerator
theEnumerator = UCRC.GetEnumerator();
theEnumerator.Reset();
while (theEnumerator.MoveNext())
{
UnicodeCharacterRange UCR = theEnumerator.Current;
}
Платформы
Windows Vista
Среды .NET Framework и .NET Compact Framework поддерживают не все версии каждой платформы. Поддерживаемые версии перечислены в разделе Требования к системе для .NET Framework.
Сведения о версии
.NET Framework
Поддерживается в версии: 3.0
См. также
Ссылки
UnicodeCharacterRangeCollection.UnicodeCharacterRangeCollectionEnumerator Класс
UnicodeCharacterRangeCollection.UnicodeCharacterRangeCollectionEnumerator - члены