InkRecognizerCollection.GetEnumerator 메서드
업데이트: 2007년 11월
컬렉션을 반복하는 데 사용할 수 있는 열거자를 반환합니다.
네임스페이스: System.Windows.Ink
어셈블리: IAWinFX(IAWinFX.dll)
구문
‘선언
Public Function GetEnumerator As InkRecognizerCollection..::.InkRecognizerCollectionEnumerator
‘사용 방법
Dim instance As InkRecognizerCollection
Dim returnValue As InkRecognizerCollection..::.InkRecognizerCollectionEnumerator
returnValue = instance.GetEnumerator()
public InkRecognizerCollection..::.InkRecognizerCollectionEnumerator GetEnumerator()
public:
InkRecognizerCollection..::.InkRecognizerCollectionEnumerator^ GetEnumerator()
public InkRecognizerCollection..::.InkRecognizerCollectionEnumerator GetEnumerator()
public function GetEnumerator() : InkRecognizerCollection..::.InkRecognizerCollectionEnumerator
반환 값
형식: System.Windows.Ink.InkRecognizerCollection.InkRecognizerCollectionEnumerator
컬렉션을 반복하는 데 사용할 수 있는 열거자입니다.
설명
이 컬렉션은 ICollection 인터페이스를 구현합니다. 이 속성에 대한 자세한 내용은 GetEnumerator를 참조하십시오.
예제
다음 예제에서는 foreach 문(Visual Basic에서는 For Each...Next)을 사용하여 theInkRecognizerCollection이라는 InkRecognizerCollection을 반복합니다. foreach 문은 컴파일러가 문을 지원하기 위해 생성하는 내부 코드에서 GetEnumerator 메서드를 호출합니다.
' 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.
For Each theRecognizer As InkRecognizer In theInkRecognizerCollection
' Use a helper method to get a string containing information
' on the InkRecognizer.
result.AppendLine(Me.GetInkRecognizerData(theRecognizer))
Next theRecognizer
// 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.
foreach (InkRecognizer theRecognizer
in theInkRecognizerCollection)
{
// Use a helper method to get a string containing information
// on the InkRecognizer.
result.AppendLine(this.GetInkRecognizerData(theRecognizer));
}
플랫폼
Windows Vista
.NET Framework 및 .NET Compact Framework에서 모든 플랫폼의 전체 버전을 지원하지는 않습니다. 지원되는 버전의 목록을 보려면 .NET Framework 시스템 요구 사항을 참조하십시오.
버전 정보
.NET Framework
3.0에서 지원