Stroke.PacketDescription Property

Stroke.PacketDescription Property

Gets an array of type Guid Leave Site that describes the types of packet data stored in the Stroke object.

Definition

Visual Basic .NET Public ReadOnly Property PacketDescription As Guid()
C# public Guid[] PacketDescription { get; }
Managed C++ public: __property Guid* get_PacketDescription();

Property Value

System.Guid[]. An array of type Guid Leave Site that describes the types of packet data stored in the Stroke object.

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

Remarks

For a complete list of available packet properties, see the PacketProperty object.

Examples

[C#]

This C# example returns the array of packet data, stored as globally unique identifiers (GUIDs), for a Stroke, theStroke.

System.Guid[] thePacketDescription = theStroke.PacketDescription;

[Visual Basic .NET]

This Microsoft® Visual Basic® .NET example returns the array of packet data, stored as GUIDs, for a Stroke, theStroke.

Dim thePacketDescription() As Guid = theStroke.PacketDescription

See Also