Stroke.PacketDescription 属性

获取类型 Guid 的数组,这些 Guid 描述存储在 Stroke 对象中的数据包 数据的类型。

命名空间:  Microsoft.Ink
程序集:  Microsoft.Ink(在 Microsoft.Ink.dll 中)

语法

声明
Public ReadOnly Property PacketDescription As Guid()
用法
Dim instance As Stroke
Dim value As Guid()

value = instance.PacketDescription
public Guid[] PacketDescription { get; }
public:
property array<Guid>^ PacketDescription {
    array<Guid>^ get ();
}
/** @property */
public Guid[] get_PacketDescription()
public function get PacketDescription () : Guid[]

属性值

类型:array<System.Guid[]
类型 Guid 的数组,这些 Guid 描述存储在 Stroke 对象中的数据包 数据的类型。

备注

有关可用数据包属性的完整列表,请参见 PacketProperty 对象。

示例

此 C# 示例返回 Stroke 对象 theStroke 的数据包数据(存储为全局唯一标识符 (GUID))的数组。

System.Guid[] thePacketDescription = theStroke.PacketDescription;

此 Microsoft Visual Basic .NET 示例返回 Stroke 对象 theStroke 的数据包数据(存储为全局唯一标识符 (GUID))的数组。

Dim thePacketDescription() As Guid = theStroke.PacketDescription

平台

Windows Vista

.NET Framework 和 .NET Compact Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求

版本信息

.NET Framework

受以下版本支持:3.0

另请参见

参考

Stroke 类

Stroke 成员

Microsoft.Ink 命名空间

PacketProperty