InkAnalyzerBase.AddStrokes 方法 (array<Int32[], array<Int32[], array<Int32[], array<Guid[])
将多个笔画的笔画数据添加到墨迹分析器,并将活动输入线程的区域性标识符分配给这些笔画。
命名空间: System.Windows.Ink.AnalysisCore
程序集: IACore(在 IACore.dll 中)
语法
声明
Public Function AddStrokes ( _
strokeIdsToAdd As Integer(), _
strokePacketCount As Integer(), _
strokePacketData As Integer(), _
strokePacketDescription As Guid() _
) As ContextNodeBase
用法
Dim instance As InkAnalyzerBase
Dim strokeIdsToAdd As Integer()
Dim strokePacketCount As Integer()
Dim strokePacketData As Integer()
Dim strokePacketDescription As Guid()
Dim returnValue As ContextNodeBase
returnValue = instance.AddStrokes(strokeIdsToAdd, _
strokePacketCount, strokePacketData, _
strokePacketDescription)
public ContextNodeBase AddStrokes(
int[] strokeIdsToAdd,
int[] strokePacketCount,
int[] strokePacketData,
Guid[] strokePacketDescription
)
public:
ContextNodeBase^ AddStrokes(
array<int>^ strokeIdsToAdd,
array<int>^ strokePacketCount,
array<int>^ strokePacketData,
array<Guid>^ strokePacketDescription
)
public ContextNodeBase AddStrokes(
int[] strokeIdsToAdd,
int[] strokePacketCount,
int[] strokePacketData,
Guid[] strokePacketDescription
)
public function AddStrokes(
strokeIdsToAdd : int[],
strokePacketCount : int[],
strokePacketData : int[],
strokePacketDescription : Guid[]
) : ContextNodeBase
参数
- strokeIdsToAdd
类型:array<System.Int32[]
包含笔画标识符的数组。
- strokePacketCount
类型:array<System.Int32[]
包含每个笔画的数据包数目的数组。
- strokePacketData
类型:array<System.Int32[]
包含笔画数据包数据的数组。
- strokePacketDescription
类型:array<System.Guid[]
包含数据包属性标识符的数组。
返回值
类型:System.Windows.Ink.AnalysisCore.ContextNodeBase
墨迹分析器已将笔画添加到其中的上下文节点。
备注
InkAnalyzerBase 将笔画添加到一个 Type 属性值为 UnclassifiedInk() 的 ContextNodeBase。
墨迹分析器将活动输入线程的区域性标识符分配给笔画。然后,将笔画添加到墨迹分析器的根节点之下的、包含具有相同区域性标识符的笔画的第一个未分类墨迹节点。如果墨迹分析器无法找到具有相同区域性标识符的节点,则分析器会在其根节点之下创建一个新的 ContextNodeBase,并将笔画添加到该新的未分类墨迹节点。
strokePacketData 包含所有笔画的数据包数据。strokePacketDescription 包含用于描述每个笔画中每个点所包含的数据包数据类型的全局唯一标识符 (GUID)。有关可用数据包属性的完整列表,请参见 PacketProperty 类。
在对 AddStrokes 的单次调用中只能添加具有相同数据包描述的笔画。
此方法将 DirtyRegion 扩展为区域的当前值与所添加笔画的边界框的并集。
如果 InkAnalyzerBase 的一个现有笔画与要添加的某个笔画具有相同的标识符,则 InkAnalyzerBase 会引发异常。
示例
此示例定义一个方法,该方法将 Strokes 集合转换为数据包数据,然后将笔画添加到 InkAnalyzerBase。该方法返回墨迹分析器向其添加笔画的 ContextNodeBase。
''' <summary>
''' Adds a collection of strokes to an InkAnalyzerBase.
''' </summary>
''' <param name="baseInkAnalyzer">
''' The analyzer that receives the strokes.</param>
''' <param name="theStrokes">The strokes to add.</param>
''' <returns>The node to which the analyzer added the strokes.</returns>
''' <remarks>
''' This method converts stroke data to packet data for example only.
''' The InkAnalyzerBase is used when your application is handling packet
''' data. If your application uses stroke data from an Ink object, then
''' you would use InkAnalyzer.
''' </remarks>
Public Overloads Shared Function MyAddStrokes( _
ByVal baseInkAnalyzer As System.Windows.Ink.AnalysisCore.InkAnalyzerBase, _
ByVal theStrokes As Microsoft.Ink.Strokes) _
As System.Windows.Ink.AnalysisCore.ContextNodeBase
' Check that the parameters are valid
If baseInkAnalyzer Is Nothing Then
Throw New ArgumentNullException("baseInkAnalyzer")
End If
If theStrokes Is Nothing Then
Throw New ArgumentNullException("theStrokes")
End If
If 0 = theStrokes.Count Then
Throw New ArgumentException("Empty strokes collection.")
End If
' Only strokes that have the same packet description GUIDs
' can be added in one call to InkAnalyzerBase.AddStrokes.
Dim thePacketDescription As Guid() = theStrokes(0).PacketDescription
' Accumulate the stroke data in collections.
Dim theStrokeIdentifiers As New ArrayList()
Dim thePacketCounts As New ArrayList()
Dim thePacketData As New ArrayList()
Dim aStroke As Microsoft.Ink.Stroke
For Each aStroke In theStrokes
If Not InkAnalyzerHelper.AreElementwiseEquivalent( _
aStroke.PacketDescription, thePacketDescription) Then
Throw New ApplicationException( _
"The strokes collection contains strokes with different" & _
" packet descriptions.")
End If
' Add the stroke data to the collections.
theStrokeIdentifiers.Add(aStroke.Id)
thePacketCounts.Add(aStroke.PacketCount)
thePacketData.AddRange(aStroke.GetPacketData())
Next aStroke
' Add the stroke data to the base layer ink analyzer.
Dim result As System.Windows.Ink.AnalysisCore.ContextNodeBase = baseInkAnalyzer.AddStrokes( _
DirectCast(theStrokeIdentifiers.ToArray(GetType(Integer)), Integer()), _
DirectCast(thePacketCounts.ToArray(GetType(Integer)), Integer()), _
DirectCast(thePacketData.ToArray(GetType(Integer)), Integer()), _
thePacketDescription)
Return result
End Function 'AddStrokes
/// <summary>
/// Adds a collection of strokes to an InkAnalyzerBase.
/// </summary>
/// <param name="baseInkAnalyzer">
/// The analyzer that receives the strokes.</param>
/// <param name="theStrokes">The strokes to add.</param>
/// <returns>The node to which the analyzer added the strokes.</returns>
/// <remarks>
/// This method converts stroke data to packet data for example only.
/// The InkAnalyzerBase is used when your application is handling packet
/// data. If your application uses stroke data from an Ink object, then
/// you would use InkAnalyzer.
/// </remarks>
public static System.Windows.Ink.AnalysisCore.ContextNodeBase MyAddStrokes(
System.Windows.Ink.AnalysisCore.InkAnalyzerBase baseInkAnalyzer,
Microsoft.Ink.Strokes theStrokes)
{
// Check that the parameters are valid
if (null == baseInkAnalyzer)
{
throw new ArgumentNullException("baseInkAnalyzer");
}
if (null == theStrokes)
{
throw new ArgumentNullException("theStrokes");
}
if (0 == theStrokes.Count)
{
throw new ArgumentException("Empty strokes collection.");
}
// Only strokes that have the same packet description GUIDs
// can be added in one call to InkAnalyzerBase.AddStrokes.
Guid[] thePacketDescription = theStrokes[0].PacketDescription;
// Accumulate the stroke data in collections.
ArrayList theStrokeIdentifiers = new ArrayList();
ArrayList thePacketCounts = new ArrayList();
ArrayList thePacketData = new ArrayList();
foreach (Microsoft.Ink.Stroke aStroke in theStrokes)
{
if (!InkAnalyzerHelper.AreElementwiseEquivalent(
aStroke.PacketDescription, thePacketDescription))
{
throw new ApplicationException(
"The strokes collection contains strokes with different packet descriptions.");
}
// Add the stroke data to the collections.
theStrokeIdentifiers.Add(aStroke.Id);
thePacketCounts.Add(aStroke.PacketCount);
thePacketData.AddRange(aStroke.GetPacketData());
}
// Add the stroke data to the base layer ink analyzer.
System.Windows.Ink.AnalysisCore.ContextNodeBase result = baseInkAnalyzer.AddStrokes(
theStrokeIdentifiers.ToArray(typeof(int)) as int[],
thePacketCounts.ToArray(typeof(int)) as int[],
thePacketData.ToArray(typeof(int)) as int[],
thePacketDescription);
return result;
}
平台
Windows Vista, Windows XP SP2, Windows Server 2003
.NET Framework 和 .NET Compact Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。
版本信息
.NET Framework
受以下版本支持:3.0