Поделиться через


RecognitionAlternates.RecognitionAlternatesEnumerator.Current - свойство

Обновлен: Ноябрь 2007

Gets the RecognitionAlternate object in the RecognitionAlternates collection to which the enumerator is pointing.

Пространство имен:  Microsoft.Ink
Сборка:  Microsoft.Ink (в Microsoft.Ink.dll)

Синтаксис

'Декларация
Public ReadOnly Property Current As RecognitionAlternate
'Применение
Dim instance As RecognitionAlternates..::.RecognitionAlternatesEnumerator
Dim value As RecognitionAlternate

value = instance.Current
public RecognitionAlternate Current { get; }
public:
property RecognitionAlternate^ Current {
    RecognitionAlternate^ get ();
}
/** @property */
public RecognitionAlternate get_Current()
public function get Current () : RecognitionAlternate

Значение свойства

Тип: Microsoft.Ink.RecognitionAlternate
The RecognitionAlternate object in the RecognitionAlternates collection to which the enumerator is pointing.

Заметки

After a RecognitionAlternates.RecognitionAlternatesEnumerator enumerator is created, or after the Reset method is called, the MoveNext method must be called to advance the enumerator to the first element of the collection before reading the value of the Current property; otherwise, the Current property is undefined.

The Current property throws an exception if the last call to the MoveNext method returns false. If the last call to the MoveNext method returns false, the enumerator has reached the end of the RecognitionAlternates collection.

The Current property does not move the position of the enumerator. Consecutive calls to the Current property return the same object until either the MoveNext or Reset method is called.

An enumerator remains valid as long as the collection remains unchanged. If changes are made to the collection—such as adding, modifying or deleting elements—the enumerator is irrecoverably invalidated. The next call to the MoveNext or Reset method throws an InvalidOperationException exception. If the collection is modified between calling the MoveNext method and calling the Current property, the Current property returns the element that it is set to, even if the enumerator is already invalidated.

Примеры

This example gets the System.Collections.IEnumerator for the RecognitionAlternates collection, and uses it to traverse the collection.

Dim inkRecogAlternates As List(Of String) = New List(Of String)
' get the RecognitionAlternates from the RecognitionResult object
Dim mAlternates As RecognitionAlternates = mRecognitionResult.GetAlternatesFromSelection()
' get the enumerator
Dim iEnum As RecognitionAlternates.RecognitionAlternatesEnumerator = mAlternates.GetEnumerator()
iEnum.Reset()
' traverse the collection
While iEnum.MoveNext()
    Dim theRecognitionAlternate As RecognitionAlternate = iEnum.Current
    inkRecogAlternates.Add(theRecognitionAlternate.ToString())
End While
List<String> inkRecogAlternates = new List<string>();
// get the RecognitionAlternates from the RecognitionResult object
RecognitionAlternates mAlternates = mRecognitionResult.GetAlternatesFromSelection();
// get the enumerator
RecognitionAlternates.RecognitionAlternatesEnumerator iEnum = mAlternates.GetEnumerator();
iEnum.Reset();
// traverse the collection
while (iEnum.MoveNext())
{
    RecognitionAlternate theRecognitionAlternate = iEnum.Current;
    inkRecogAlternates.Add(theRecognitionAlternate.ToString());
}

Платформы

Windows Vista

Среды .NET Framework и .NET Compact Framework поддерживают не все версии каждой платформы. Поддерживаемые версии перечислены в разделе Требования к системе для .NET Framework.

Сведения о версии

.NET Framework

Поддерживается в версии: 3.0

См. также

Ссылки

RecognitionAlternates.RecognitionAlternatesEnumerator Класс

RecognitionAlternates.RecognitionAlternatesEnumerator - члены

Microsoft.Ink - пространство имен

RecognitionAlternates

RecognitionAlternate

RecognitionAlternates.RecognitionAlternatesEnumerator.MoveNext

RecognitionAlternates.RecognitionAlternatesEnumerator.Reset

Другие ресурсы

IEnumerator