InkRecognizerCollection.InkRecognizerCollectionEnumerator 클래스
업데이트: 2007년 11월
InkRecognizerCollection 반복 처리를 지원하는 System.Collections.IEnumerator 인터페이스의 구현입니다.
네임스페이스: System.Windows.Ink
어셈블리: IAWinFX(IAWinFX.dll)
구문
‘선언
Public Class InkRecognizerCollectionEnumerator _
Implements IEnumerator
‘사용 방법
Dim instance As InkRecognizerCollection.InkRecognizerCollectionEnumerator
public class InkRecognizerCollectionEnumerator : IEnumerator
public ref class InkRecognizerCollectionEnumerator : IEnumerator
public class InkRecognizerCollectionEnumerator implements IEnumerator
public class InkRecognizerCollectionEnumerator implements IEnumerator
설명
이 열거자는 참조된 InkRecognizerCollection의 요소에 대한 읽기 전용 액세스를 제공합니다. 예를 들어 Microsoft Visual Basic 및 C# 프로그래밍 언어에서 컬렉션의 요소를 반복 처리하는 foreach 문은 컬렉션의 요소를 반복 처리하기 위해 InkRecognizerCollection의 인스턴스에서 InkRecognizerCollection.InkRecognizerCollectionEnumerator를 검색합니다.
이 클래스에 대한 자세한 내용은 IEnumerator를 참조하십시오.
예제
다음 예제에서는 InkRecognizerCollection을 반복 처리하여 theInkRecognizerCollection 컬렉션의 모든 InkRecognizer 개체에 대한 정보를 반환합니다.
' Create a StringBuilder in which to collect the information.
Dim result As New System.Text.StringBuilder()
result.AppendLine("Recognizers in the InkRecognizerCollection:" & Environment.NewLine)
' Iterate over the InkRecognizerCollection to collect information
' on each InkRecognizer.
Dim enumerator As InkRecognizerCollection.InkRecognizerCollectionEnumerator _
= theInkRecognizerCollection.GetEnumerator()
While enumerator.MoveNext()
' Use a helper method to get a string containing information
' on the InkRecognizer.
result.AppendLine(Me.GetInkRecognizerData(enumerator.Current))
End While
// Create a StringBuilder in which to collect the information.
System.Text.StringBuilder result = new System.Text.StringBuilder();
result.AppendLine("Recognizers in the InkRecognizerCollection:"
+ Environment.NewLine);
// Iterate over the InkRecognizerCollection to collect information
// on each InkRecognizer.
InkRecognizerCollection.InkRecognizerCollectionEnumerator enumerator =
theInkRecognizerCollection.GetEnumerator();
while (enumerator.MoveNext())
{
// Use a helper method to get a string containing information
// on the InkRecognizer.
result.AppendLine(this.GetInkRecognizerData(enumerator.Current));
}
상속 계층 구조
System.Object
System.Windows.Ink.InkRecognizerCollection.InkRecognizerCollectionEnumerator
스레드로부터의 안전성
이 형식의 모든 공용 static(Visual Basic의 경우 Shared) 멤버는 스레드로부터 안전합니다. 인터페이스 멤버는 스레드로부터 안전하지 않습니다.
플랫폼
Windows Vista
.NET Framework 및 .NET Compact Framework에서 모든 플랫폼의 전체 버전을 지원하지는 않습니다. 지원되는 버전의 목록을 보려면 .NET Framework 시스템 요구 사항을 참조하십시오.
버전 정보
.NET Framework
3.0에서 지원
참고 항목
참조
InkRecognizerCollection.InkRecognizerCollectionEnumerator 멤버