InkCollectorNewPacketsEventArgs.Cursor Property

InkCollectorNewPacketsEventArgs.Cursor Property

Gets the Cursor object that was used to create the Stroke object that generated the NewPackets event.

Definition

Visual Basic .NET Public ReadOnly Property Cursor As Cursor
C# public Cursor Cursor { get; }
Managed C++ public: __property Cursor* get_Cursor();

Property Value

Microsoft.Ink.Cursor. The object that was used to create the Stroke object that generated the NewPackets event.

This property is read-only. This property has no default value.

Remarks

The Microsoft.Ink.Cursor class is not to be confused with System.Windows.Forms.Cursor Leave Site class. Microsoft.Ink.Cursor represents general information about a tablet pointing and selecting device, usually a pen, while System.Windows.Forms.Cursor Leave Site represents the image used to paint the mouse pointer.

Examples

[C#]

This C# example shows a NewPackets event handler that puts the Cursor's name into a TextBox Leave Site, theTextBox.

private void theInkCollector_NewPackets(object sender, InkCollectorNewPacketsEventArgs e)
{
  theTextBox.Text = e.Cursor.ToString();
}

[Visual Basic .NET]

This Microsoft® Visual Basic® .NET example shows a NewPackets event handler that puts the Cursor's name into a TextBox Leave Site, theTextBox.

Private Sub theInkCollector_NewPackets(ByVal sender As Object, ByVal e As InkCollectorNewPacketsEventArgs) _
Handles theInkCollector.NewPackets
  theTextBox.Text = e.Cursor.ToString()
End Sub

See Also