다음을 통해 공유


InkAnalyzer.Ink 속성

업데이트: 2007년 11월

InkAnalyzer에서 스트로크 데이터를 분석하는 데 사용할 수 있는 Ink 개체를 가져옵니다.

네임스페이스:  Microsoft.Ink
어셈블리:  Microsoft.Ink.Analysis(Microsoft.Ink.Analysis.dll)

구문

‘선언
Public ReadOnly Property Ink As Ink
‘사용 방법
Dim instance As InkAnalyzer
Dim value As Ink

value = instance.Ink
public Ink Ink { get; }
public:
property Ink^ Ink {
    Ink^ get ();
}
/** @property */
public Ink get_Ink()
public function get Ink () : Ink

속성 값

형식: Microsoft.Ink.Ink
InkAnalyzer 에서 스트로크 데이터를 분석하는 데 사용할 수 있는 Ink 개체입니다.

설명

InkAnalyzerInk 개체 하나에서 가져온 스트로크 데이터만 분석할 수 있습니다. 잉크 분석기가 초기화된 후에는 이 연결을 변경할 수 없습니다.

예제

이 예제에서는 InkAnalyzer인 theInkAnalyzer에 연결된 모든 스트로크를 제거한 다음 연결된 Ink 개체에서 스트로크를 삭제합니다.

' Get all the strokes associated with the ink analyzer.
Dim theStrokes As Microsoft.Ink.Strokes = Me.theInkAnalyzer.RootNode.Strokes

If Nothing IsNot theStrokes Then
    ' Remove the strokes from the analyzer.
    Me.theInkAnalyzer.RemoveStrokes(theStrokes)

    ' Deleted the strokes from the associated Ink object.
    Me.theInkAnalyzer.Ink.DeleteStrokes(theStrokes)
End If
// Get all the strokes associated with the ink analyzer.
Microsoft.Ink.Strokes theStrokes = this.theInkAnalyzer.RootNode.Strokes;

if (null != theStrokes)
{
    // Remove the strokes from the analyzer.
    this.theInkAnalyzer.RemoveStrokes(theStrokes);

    // Deleted the strokes from the associated Ink object.
    this.theInkAnalyzer.Ink.DeleteStrokes(theStrokes);
}

플랫폼

Windows Vista

.NET Framework 및 .NET Compact Framework에서 모든 플랫폼의 전체 버전을 지원하지는 않습니다. 지원되는 버전의 목록을 보려면 .NET Framework 시스템 요구 사항을 참조하십시오.

버전 정보

.NET Framework

3.0에서 지원

참고 항목

참조

InkAnalyzer 클래스

InkAnalyzer 멤버

Microsoft.Ink 네임스페이스