InkAnalyzerBase.GetAlternates 方法 (array<Int32[], Int32)
針對指定的筆劃最多傳回指定的分析替代項目數。
命名空間: System.Windows.Ink.AnalysisCore
組件: IACore (在 IACore.dll 中)
語法
'宣告
Public Function GetAlternates ( _
strokeIds As Integer(), _
maximumAlternates As Integer _
) As AnalysisAlternateBaseCollection
'用途
Dim instance As InkAnalyzerBase
Dim strokeIds As Integer()
Dim maximumAlternates As Integer
Dim returnValue As AnalysisAlternateBaseCollection
returnValue = instance.GetAlternates(strokeIds, _
maximumAlternates)
public AnalysisAlternateBaseCollection GetAlternates(
int[] strokeIds,
int maximumAlternates
)
public:
AnalysisAlternateBaseCollection^ GetAlternates(
array<int>^ strokeIds,
int maximumAlternates
)
public AnalysisAlternateBaseCollection GetAlternates(
int[] strokeIds,
int maximumAlternates
)
public function GetAlternates(
strokeIds : int[],
maximumAlternates : int
) : AnalysisAlternateBaseCollection
參數
- strokeIds
型別:array<System.Int32[]
陣列,其中包含要取得分析替代項目之筆劃的識別項。
- maximumAlternates
型別:System.Int32
要傳回的分析替代項目數。
傳回值
型別:System.Windows.Ink.AnalysisCore.AnalysisAlternateBaseCollection
對於指定的筆劃,最多傳回 maximumAlternate 個頂端分析替代項目。
備註
頂端替代項目會傳回做為集合的第一個替代項目。
指定的筆劃不一定表示文件的相鄰區域。
範例
下列範例會針對 32 位元帶正負號的整數陣列 theStrokeIds 中所識別的筆劃,取得最多五個替代項目。指定的筆劃是指派至 InkAnalyzerBase (theInkAnalyzerBase) 的筆劃。
' Retrieve 5 alternates for the specified strokes.
Dim theAlternates As System.Windows.Ink.AnalysisCore.AnalysisAlternateBaseCollection = _
theInkAnalyzerBase.GetAlternates(theStrokeIds, 5)
// Retrieve 5 alternates for the specified strokes.
System.Windows.Ink.AnalysisCore.AnalysisAlternateBaseCollection theAlternates =
theInkAnalyzerBase.GetAlternates(theStrokeIds, 5);
平台
Windows Vista, Windows XP SP2, Windows Server 2003
.NET Framework 和 .NET Compact Framework 並不支援各種平台的所有版本。如需支援平台版本的相關資訊,請參閱 .NET Framework 系統需求。
版本資訊
.NET Framework
支援版本:3.0
請參閱
參考
System.Windows.Ink.AnalysisCore 命名空間
System.Windows.Ink.AnalysisCore.AnalysisAlternateBase
System.Windows.Ink.AnalysisCore.AnalysisAlternateBaseCollection