다음을 통해 공유


InkAnalyzerBase.SetStrokeType 메서드

업데이트: 2007년 11월

지정된 스트로크의 형식을 변경합니다.

네임스페이스:  System.Windows.Ink.AnalysisCore
어셈블리:  IACore(IACore.dll)

구문

‘선언
Public Sub SetStrokeType ( _
    strokeId As Integer, _
    strokeType As StrokeType _
)
‘사용 방법
Dim instance As InkAnalyzerBase
Dim strokeId As Integer
Dim strokeType As StrokeType

instance.SetStrokeType(strokeId, strokeType)
public void SetStrokeType(
    int strokeId,
    StrokeType strokeType
)
public:
void SetStrokeType(
    int strokeId, 
    StrokeType strokeType
)
public void SetStrokeType(
    int strokeId,
    StrokeType strokeType
)
public function SetStrokeType(
    strokeId : int, 
    strokeType : StrokeType
)

매개 변수

  • strokeId
    형식: System.Int32
    strokeType을 할당할 스트로크의 스트로크 식별자입니다.

설명

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

잉크 분석기는 잉크 분석 시 스트로크 형식 값을 설정하지 않습니다. 현재 스트로크에 할당된 형식을 가져오려면 GetStrokeType을 호출합니다.

스트로크가 분류되지 않은 잉크 노드가 아닌 컨텍스트 노드에 연결되어 있으면 이 메서드가 스트로크를 동일한 언어의 스트로크를 포함하는 분류되지 않은 잉크 노드로 이동합니다. 이러한 컨텍스트 노드가 없으면 분류되지 않은 새 잉크 노드가 만들어지고 여기에 스트로크가 추가됩니다. 분류되지 않은 잉크 노드는 Type 속성 값이 UnclassifiedInkContextNodeBase입니다.

이 메서드는 스트로크를 이동하는 경우 잉크 분석기의 DirtyRegion에 스트로크 경계 상자도 추가합니다.

strokeType 매개 변수가 스트로크의 현재 형식과 일치하는 경우 이 메서드는 스트로크를 이동하지 않습니다.

지정된 스트로크가 잉크 분석기에 연결되어 있지 않으면 이 메서드는 잉크 분석기를 업데이트하지 않고 반환됩니다.

예제

다음 예제에서는 지정된 스트로크의 형식을 확인하여 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.GetStrokeType

InkAnalyzerBase.SetStrokesType

System.Windows.Ink.AnalysisCore.StrokeType