InkAnalyzer.GetAnalysisHints 메서드
업데이트: 2007년 11월
InkAnalyzer에 연결된 모든 AnalysisHintNode 개체를 반환합니다.
네임스페이스: Microsoft.Ink
어셈블리: Microsoft.Ink.Analysis(Microsoft.Ink.Analysis.dll)
구문
‘선언
Public Function GetAnalysisHints As ContextNodeCollection
‘사용 방법
Dim instance As InkAnalyzer
Dim returnValue As ContextNodeCollection
returnValue = instance.GetAnalysisHints()
public ContextNodeCollection GetAnalysisHints()
public:
ContextNodeCollection^ GetAnalysisHints()
public ContextNodeCollection GetAnalysisHints()
public function GetAnalysisHints() : ContextNodeCollection
반환 값
형식: Microsoft.Ink.ContextNodeCollection
InkAnalyzer 에 연결된 모든 AnalysisHintNode 개체입니다.
설명
연결된 AnalysisHintNode 개체가 없으면 빈 ContextNodeCollection이 반환됩니다.
예제
이 예제에서는 System.Text.StringBuilder인 notes를 만듭니다. 그런 다음 InkAnalyzer인 theInkAnalyzer에 현재 연결되어 있는 각 분석 힌트의 GUID(Globally Unique Identifier)와 이름을 추가합니다.
' Create a string builder for information about the hints.
Dim notes As New System.Text.StringBuilder()
notes.AppendLine("List of all the current AnalysisHintNodes:")
Dim theHint As Microsoft.Ink.AnalysisHintNode
For Each theHint In Me.theInkAnalyzer.GetAnalysisHints()
notes.AppendLine(String.Format( _
" Hint {0}, name '{1}'", theHint.Id, theHint.Name))
Next theHint
// Create a string builder for information about the hints.
System.Text.StringBuilder notes = new System.Text.StringBuilder();
notes.AppendLine("List of all the current AnalysisHintNodes:");
foreach (Microsoft.Ink.AnalysisHintNode theHint
in this.theInkAnalyzer.GetAnalysisHints())
{
notes.AppendLine(string.Format(" Hint {0}, name '{1}'",
theHint.Id, theHint.Name));
}
플랫폼
Windows Vista
.NET Framework 및 .NET Compact Framework에서 모든 플랫폼의 전체 버전을 지원하지는 않습니다. 지원되는 버전의 목록을 보려면 .NET Framework 시스템 요구 사항을 참조하십시오.
버전 정보
.NET Framework
3.0에서 지원