InkAnalyzer.GetAnalysisHints 方法 (String)
傳回所有 AnalysisHintNode 物件,其指定的名稱會附加至 InkAnalyzer。
命名空間: Microsoft.Ink
組件: Microsoft.Ink.Analysis (在 Microsoft.Ink.Analysis.dll 中)
語法
'宣告
Public Function GetAnalysisHints ( _
hintName As String _
) As ContextNodeCollection
'用途
Dim instance As InkAnalyzer
Dim hintName As String
Dim returnValue As ContextNodeCollection
returnValue = instance.GetAnalysisHints(hintName)
public ContextNodeCollection GetAnalysisHints(
string hintName
)
public:
ContextNodeCollection^ GetAnalysisHints(
String^ hintName
)
public ContextNodeCollection GetAnalysisHints(
String hintName
)
public function GetAnalysisHints(
hintName : String
) : ContextNodeCollection
參數
- hintName
型別:System.String
要傳回之分析提示的名稱。
傳回值
型別:Microsoft.Ink.ContextNodeCollection
包含具有指定名稱之分析提示的集合,或是如果沒有附加至筆墨分析器的這類提示,則為空集合。
備註
這個方法可能只傳回已設定其 Name 屬性的分析提示。
範例
這個範例會建立 System.Text.StringBuilder (notes)。接著會加入所有具有名稱 theHintName 的分析提示相關資訊,且這些分析提示目前附加至 InkAnalyzer (theInkAnalyzer)。
' Create a string builder for information about the hints.
Dim notes As New System.Text.StringBuilder()
notes.AppendLine(String.Format( _
"List of all the current AnalysisHintNodes named '{0}':", theHintName))
Dim theHint As Microsoft.Ink.AnalysisHintNode
For Each theHint In Me.theInkAnalyzer.GetAnalysisHints(theHintName)
notes.AppendLine(String.Format(" Hint {0}", theHint.Id))
Next theHint
// Create a string builder for information about the hints.
System.Text.StringBuilder notes = new System.Text.StringBuilder();
notes.AppendLine(string.Format(
"List of all the current AnalysisHintNodes named '{0}':",
theHintName));
foreach (Microsoft.Ink.AnalysisHintNode theHint
in this.theInkAnalyzer.GetAnalysisHints(theHintName))
{
notes.AppendLine(string.Format(" Hint {0}", theHint.Id));
}
平台
Windows Vista
.NET Framework 和 .NET Compact Framework 並不支援各種平台的所有版本。如需支援平台版本的相關資訊,請參閱 .NET Framework 系統需求。
版本資訊
.NET Framework
支援版本:3.0