Share via


InkCollectorNewInAirPacketsEventArgs.InkCollectorNewInAirPacketsEventArgs Constructor

InkCollectorNewInAirPacketsEventArgs.InkCollectorNewInAirPacketsEventArgs Constructor

Initializes a new instance of the InkCollectorNewInAirPacketsEventArgs class.

Definition

Visual Basic .NET Public Sub InkCollectorNewInAirPacketsEventArgs( _
ByVal cursor As Cursor, _
ByVal packetCount As Integer, _
ByVal packetData() As Integer _
)
C# public InkCollectorNewInAirPacketsEventArgs(
Cursor cursor,
int packetCount,
int[] packetData
);
Managed C++ public: InkCollectorNewInAirPacketsEventArgs(
Cursor *cursor,
int *packetCount,
int *packetData __gc[]
);

Parameters

cursor Microsoft.Ink.Cursor. The Cursor that triggers the NewInAirPackets event.
packetCount System.Int32. The number of packets collected.
packetData System.Int32[]. The packet data in raw format.

Remarks

cursor of type Cursor is the cursor used. packetCount of type is the number of packets collected. packetData is the packet data in raw format.

See Also