Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
InkCollectorCursorDownEventArgs.InkCollectorCursorDownEventArgs Constructor |
Initializes a new instance of the InkCollectorCursorDownEventArgs class.
Definition
Visual Basic .NET Public Sub InkCollectorCursorDownEventArgs( _
ByVal cursor As Cursor, _
ByVal stroke As Stroke _
)C# public InkCollectorCursorDownEventArgs(
Cursor cursor,
Stroke stroke
);Managed C++ public: InkCollectorCursorDownEventArgs(
Cursor *cursor,
Stroke *stroke
);
Parameters
cursor Microsoft.Ink.Cursor. The Cursor object that triggers the CursorDown event. stroke Microsoft.Ink.Stroke. The Stroke object created during the CursorDown event.
Remarks
cursor of type Cursor is the cursor used to collect the stroke. stroke of type Stroke is the inked stroke.
See Also