InkAnalyzer.GetAnalysisHints 方法 (String)
傳回 ContextNodeCollection,其中包含具有指定之名稱,而且附加至 InkAnalyzer 的所有 AnalysisHintNode 物件。
命名空間: System.Windows.Ink
組件: IAWinFX (在 IAWinFX.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
要傳回之分析提示的名稱。
傳回值
型別:System.Windows.Ink.ContextNodeCollection
包含具有指定名稱之分析提示的集合,如果這類提示沒有附加至筆墨分析器,則為包含空集合的集合。
備註
這個方法只能傳回其 Name 屬性已經過設定的分析提示。
範例
這個範例會建立名為 notes 的 StringBuilder。接著,再加入目前附加至 InkAnalyzer (名為 theInkAnalyzer) 之所有分析提示 (名為 theHintName) 的相關資訊。
' 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))
For Each theHint As AnalysisHintNode 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 (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