다음을 통해 공유


InkEditRecognitionEventHandler 대리자

업데이트: 2007년 11월

InkEdit 컨트롤의 Recognition 이벤트를 처리하는 메서드를 나타냅니다.

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

구문

‘선언
Public Delegate Sub InkEditRecognitionEventHandler ( _
    sender As Object, _
    e As InkEditRecognitionEventArgs _
)
‘사용 방법
Dim instance As New InkEditRecognitionEventHandler(AddressOf HandlerMethod)
public delegate void InkEditRecognitionEventHandler(
    Object sender,
    InkEditRecognitionEventArgs e
)
public delegate void InkEditRecognitionEventHandler(
    Object^ sender, 
    InkEditRecognitionEventArgs^ e
)
/** @delegate */
public delegate void InkEditRecognitionEventHandler(
    Object sender,
    InkEditRecognitionEventArgs e
)
JScript에서는 대리자를 지원하지 않습니다.

매개 변수

설명

InkEditRecognitionEventHandler 대리자를 만들 때는 이벤트를 처리할 메서드를 식별합니다. 이벤트를 이벤트 처리기와 연결하려면 대리자의 인스턴스를 해당 이벤트에 추가합니다. 대리자를 제거하지 않는 경우 이벤트가 발생할 때마다 이벤트 처리기가 호출됩니다.

예제

이 예제에서는 Recognition 이벤트를 사용하여 RecognitionResult 개체를 유지합니다. 우선 SetResultOnStrokes 메서드를 호출하여 RecognitionResult 개체를 관련 Strokes 컬렉션에 연결합니다. 그런 다음 연결된 Ink 개체의 CustomStrokes 속성에 Strokes가 추가됩니다.

Private Sub mInkEdit_Recognition(ByVal sender As Object, ByVal e As InkEditRecognitionEventArgs)
    Dim R As RecognitionResult = e.RecognitionResult
    R.SetResultOnStrokes()
    ' add these strokes to custom strokes collection
    ' using R.Strokes(0).Id as the name
    R.Strokes.Ink.CustomStrokes.Add(R.Strokes(0).Id.ToString(), R.Strokes)
End Sub
private void mInkEdit_Recognition(object sender, InkEditRecognitionEventArgs e)
{
    RecognitionResult R = e.RecognitionResult;
    R.SetResultOnStrokes();
    // add these strokes to custom strokes collection
    // using R.Strokes[0].Id as the name
    R.Strokes.Ink.CustomStrokes.Add(R.Strokes[0].Id.ToString(), R.Strokes);
}

플랫폼

Windows Vista

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

버전 정보

.NET Framework

3.0에서 지원

참고 항목

참조

Microsoft.Ink 네임스페이스

InkEdit.Recognize