InkAnalyzer.GetAlternates 方法 (ContextNodeCollection, Int32)
傳回 AnalysisAlternateCollection,其中包含儲存在 ContextNodeCollection 中節點的分析替代項目 (數目可多達指定的數目)。
命名空間: System.Windows.Ink
組件: IAWinFX (在 IAWinFX.dll 中)
語法
'宣告
Public Function GetAlternates ( _
nodes As ContextNodeCollection, _
maximumAlternates As Integer _
) As AnalysisAlternateCollection
'用途
Dim instance As InkAnalyzer
Dim nodes As ContextNodeCollection
Dim maximumAlternates As Integer
Dim returnValue As AnalysisAlternateCollection
returnValue = instance.GetAlternates(nodes, _
maximumAlternates)
public AnalysisAlternateCollection GetAlternates(
ContextNodeCollection nodes,
int maximumAlternates
)
public:
AnalysisAlternateCollection^ GetAlternates(
ContextNodeCollection^ nodes,
int maximumAlternates
)
public AnalysisAlternateCollection GetAlternates(
ContextNodeCollection nodes,
int maximumAlternates
)
public function GetAlternates(
nodes : ContextNodeCollection,
maximumAlternates : int
) : AnalysisAlternateCollection
參數
- nodes
型別:System.Windows.Ink.ContextNodeCollection
取得分析替代項目的節點。
- maximumAlternates
型別:System.Int32
要傳回的分析替代項目數。
傳回值
型別:System.Windows.Ink.AnalysisAlternateCollection
nodes 的頂端分析替代項目 (最多 maximumAlternates 個)。
備註
頂端替代項目會傳回做為集合的第一個替代項目。
nodes 中的 ContextNode 物件不一定表示文件的相鄰區域。
針對 nodes 中的每個分析提示,InkAnalyzer 只會傳回頂端替代項目。
範例
這個範例會針對與 InkAnalyzer (名為 theInkAnalyzer) 相關聯的 ContextNodeCollection (名為 theContextNodes) 取得五個頂端替代項目。接著,將替代項目的已辨識字串加入至名為 theAlternateStrings 的 StringCollection。
' Get 5 analysis alternates for the context node collection and add the
' recognized strings to a string collection.
theAlternateCollection = Me.theInkAnalyzer.GetAlternates(theContextNodes, 5)
theAlternateStrings.Clear()
For Each theAlternate As AnalysisAlternate In theAlternateCollection
theAlternateStrings.Add(theAlternate.RecognizedString)
Next theAlternate
// Get 5 analysis alternates for the context node collection and add the
// recognized strings to a string collection.
theAlternateCollection = this.theInkAnalyzer.GetAlternates(theContextNodes, 5);
theAlternateStrings.Clear();
foreach (AnalysisAlternate theAlternate
in theAlternateCollection)
{
theAlternateStrings.Add(theAlternate.RecognizedString);
}
平台
Windows Vista
.NET Framework 和 .NET Compact Framework 並不支援各種平台的所有版本。如需支援平台版本的相關資訊,請參閱 .NET Framework 系統需求。
版本資訊
.NET Framework
支援版本:3.0
請參閱
參考
System.Windows.Ink.AnalysisAlternate
System.Windows.Ink.AnalysisAlternateCollection