TabletPropertyDescription.TabletPropertyMetrics 属性

获取此数据包属性的规格。

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

语法

声明
Public ReadOnly Property TabletPropertyMetrics As TabletPropertyMetrics
用法
Dim instance As TabletPropertyDescription
Dim value As TabletPropertyMetrics

value = instance.TabletPropertyMetrics
public TabletPropertyMetrics TabletPropertyMetrics { get; }
public:
property TabletPropertyMetrics TabletPropertyMetrics {
    TabletPropertyMetrics get ();
}
/** @property */
public TabletPropertyMetrics get_TabletPropertyMetrics()
public function get TabletPropertyMetrics () : TabletPropertyMetrics

属性值

类型:Microsoft.Ink.TabletPropertyMetrics
此数据包属性的规格。

备注

规格描述数据包属性的范围、分辨率和单位。

示例

此示例创建一个新的 TabletPropertyDescription 对象。TabletPropertyMetrics 属性公开在实例化过程中使用的 TabletPropertyMetrics 对象。

Dim defTablet As Tablet = New Tablets().DefaultTablet
Dim Metrics As TabletPropertyMetrics = defTablet.GetPropertyMetrics(PacketProperty.NormalPressure)
Dim tabletPropDesc As TabletPropertyDescription = New TabletPropertyDescription(PacketProperty.NormalPressure, Metrics)
' metrics now accessible via the TabletPropertyMetrics property
Dim min As Integer = tabletPropDesc.TabletPropertyMetrics.Minimum
Tablet defTablet = new Tablets().DefaultTablet;
TabletPropertyMetrics Metrics = defTablet.GetPropertyMetrics(PacketProperty.NormalPressure);
TabletPropertyDescription tabletPropDesc = new TabletPropertyDescription(PacketProperty.NormalPressure, Metrics);
// metrics now accessible via the TabletPropertyMetrics property
int min = tabletPropDesc.TabletPropertyMetrics.Minimum;

平台

Windows Vista

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

版本信息

.NET Framework

受以下版本支持:3.0

另请参见

参考

TabletPropertyDescription 类

TabletPropertyDescription 成员

Microsoft.Ink 命名空间

TabletPropertyMetrics