InkCollectorCursorInRangeEventHandler 대리자
업데이트: 2007년 11월
InkCollector 개체의 CursorInRange 이벤트를 처리하는 메서드를 나타냅니다.
네임스페이스: Microsoft.Ink
어셈블리: Microsoft.Ink(Microsoft.Ink.dll)
구문
‘선언
Public Delegate Sub InkCollectorCursorInRangeEventHandler ( _
sender As Object, _
e As InkCollectorCursorInRangeEventArgs _
)
‘사용 방법
Dim instance As New InkCollectorCursorInRangeEventHandler(AddressOf HandlerMethod)
public delegate void InkCollectorCursorInRangeEventHandler(
Object sender,
InkCollectorCursorInRangeEventArgs e
)
public delegate void InkCollectorCursorInRangeEventHandler(
Object^ sender,
InkCollectorCursorInRangeEventArgs^ e
)
/** @delegate */
public delegate void InkCollectorCursorInRangeEventHandler(
Object sender,
InkCollectorCursorInRangeEventArgs e
)
JScript에서는 대리자를 지원하지 않습니다.
매개 변수
- sender
형식: System.Object
이 이벤트의 소스 InkCollector 개체입니다.
- e
형식: Microsoft.Ink.InkCollectorCursorInRangeEventArgs
이벤트 데이터가 들어 있는 InkCollectorCursorInRangeEventArgs 개체입니다.
설명
InkCollectorCursorInRangeEventHandler 대리자를 만들 때는 이벤트를 처리할 메서드를 식별합니다. 이벤트를 이벤트 처리기와 연결하려면 대리자의 인스턴스를 해당 이벤트에 추가합니다. 대리자를 제거하지 않는 경우 이벤트가 발생할 때마다 이벤트 처리기가 호출됩니다. 이벤트 관심도는 기본적으로 설정됩니다.
잉크 모드뿐만 아니라 선택 또는 지우기 모드인 경우에도 CursorInRange 이벤트가 발생합니다. 따라서 사용자가 설정하는 편집 모드는 사용자가 직접 모니터링해야 하며 이벤트를 해석하기 전에 모드를 알고 있어야 합니다. 이러한 요구 사항을 적용하면 플랫폼 이벤트를 더 효율적으로 인식하여 플랫폼을 보다 자유롭게 활용할 수 있습니다.
예제
이 예제에서는 CursorInRange 이벤트가 발생할 때 InkCollector 개체가 해당 Cursor 개체와 처음으로 접촉했는지 확인합니다. 확인에 성공하면 DrawingAttributes 속성에 DefaultDrawingAttributes 속성의 복제본이 할당됩니다. 이렇게 하면 이후에 DrawingAttributes 속성에 액세스할 때 null 참조 예외가 throw되지 않습니다.
Private Sub mInkObject_CursorInRange(ByVal sender As Object, ByVal e As InkCollectorCursorInRangeEventArgs)
Const MOUSE_CURSOR_ID As Integer = 1
If e.NewCursor Then
' mInkObject can be InkCollector, InkOverlay, or InkPicture
e.Cursor.DrawingAttributes = mInkObject.DefaultDrawingAttributes.Clone()
' if this cursor is the mouse, we'll set color to red
If (MOUSE_CURSOR_ID = e.Cursor.Id) Then
e.Cursor.DrawingAttributes.Color = Color.Red
End If
End If
End Sub
private void mInkObject_CursorInRange(object sender, InkCollectorCursorInRangeEventArgs e)
{
const int MOUSE_CURSOR_ID = 1;
if (e.NewCursor)
{
// mInkObject can be InkCollector, InkOverlay, or InkPicture
e.Cursor.DrawingAttributes = mInkObject.DefaultDrawingAttributes.Clone();
// if this cursor is the mouse, we'll set color to red
if (MOUSE_CURSOR_ID == e.Cursor.Id)
{
e.Cursor.DrawingAttributes.Color = Color.Red;
}
}
}
플랫폼
Windows Vista
.NET Framework 및 .NET Compact Framework에서 모든 플랫폼의 전체 버전을 지원하지는 않습니다. 지원되는 버전의 목록을 보려면 .NET Framework 시스템 요구 사항을 참조하십시오.
버전 정보
.NET Framework
3.0에서 지원