InkAnalyzerBase.GetStrokeType 方法

返回指定笔画的类型。

命名空间:  System.Windows.Ink.AnalysisCore
程序集:  IACore(在 IACore.dll 中)

语法

声明
Public Function GetStrokeType ( _
    strokeId As Integer _
) As StrokeType
用法
Dim instance As InkAnalyzerBase
Dim strokeId As Integer
Dim returnValue As StrokeType

returnValue = instance.GetStrokeType(strokeId)
public StrokeType GetStrokeType(
    int strokeId
)
public:
StrokeType GetStrokeType(
    int strokeId
)
public StrokeType GetStrokeType(
    int strokeId
)
public function GetStrokeType(
    strokeId : int
) : StrokeType

参数

返回值

类型:System.Windows.Ink.AnalysisCore.StrokeType
指定笔画的分类。

备注

如果笔画的类型为 StrokeType 值 Unspecified,则 InkAnalyzerBase 在墨迹分析过程中对笔画进行分类。否则,墨迹分析器使用在笔画上设置的类型。

墨迹分析器不会将笔画类型值作为墨迹分析的一部分进行设置。若要指定或更改笔画类型,请使用 SetStrokeTypeSetStrokesType

示例

下面的示例确定指定笔画的类型,如果该类型尚未设置为 Unspecified,则将其设置为 UnspecifiedInkAnalyzerBase (theInkAnalyzerBase) 包含笔画标识符 theStrokeId 的笔画数据。

' If the specified stroke is not set to unspecified,
' Set the stroke's type to unspecified.
Dim theStrokeType As System.Windows.Ink.AnalysisCore.StrokeType = _
    theInkAnalyzerBase.GetStrokeType(theStrokeId)
If System.Windows.Ink.AnalysisCore.StrokeType.Unspecified <> theStrokeType Then
    theInkAnalyzerBase.SetStrokeType( _
        theStrokeId, System.Windows.Ink.AnalysisCore.StrokeType.Unspecified)
End If
// If the specified stroke is not set to unspecified,
// Set the stroke's type to unspecified.
System.Windows.Ink.AnalysisCore.StrokeType theStrokeType =
    theInkAnalyzerBase.GetStrokeType(theStrokeId);
if (System.Windows.Ink.AnalysisCore.StrokeType.Unspecified != theStrokeType)
{
    theInkAnalyzerBase.SetStrokeType(theStrokeId,
        System.Windows.Ink.AnalysisCore.StrokeType.Unspecified);
}

平台

Windows Vista, Windows XP SP2, Windows Server 2003

.NET Framework 和 .NET Compact Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求

版本信息

.NET Framework

受以下版本支持:3.0

另请参见

参考

InkAnalyzerBase 类

InkAnalyzerBase 成员

System.Windows.Ink.AnalysisCore 命名空间

InkAnalyzerBase.SetStrokeType

InkAnalyzerBase.SetStrokesType