다음을 통해 공유


InkAnalyzerBase.GetStrokeType 메서드

업데이트: 2007년 11월

지정된 스트로크의 형식을 반환합니다.

네임스페이스:  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

매개 변수

  • strokeId
    형식: System.Int32
    스트로크 식별자입니다.

반환 값

형식: System.Windows.Ink.AnalysisCore.StrokeType
지정된 스트로크의 분류입니다.

설명

스트로크의 형식이 StrokeType 값인 Unspecified이면 InkAnalyzerBase는 잉크 분석 도중 스트로크를 분류합니다. 그렇지 않으면 잉크 분석기에서 스트로크에 설정된 형식을 사용합니다.

잉크 분석기는 잉크 분석 시 스트로크 형식 값을 설정하지 않습니다. 스트로크 형식을 지정하거나 변경하려면 SetStrokeType 또는 SetStrokesType을 사용합니다.

예제

다음 예제에서는 지정된 스트로크의 형식을 확인하여 Unspecified로 설정되어 있지 않으면 Unspecified로 설정합니다. InkAnalyzerBase인 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