InkCollectorSystemGestureEventArgs.Point 属性
获取用于指示系统笔势 位置的 Point 结构。
命名空间: Microsoft.Ink
程序集: Microsoft.Ink(在 Microsoft.Ink.dll 中)
语法
声明
Public ReadOnly Property Point As Point
用法
Dim instance As InkCollectorSystemGestureEventArgs
Dim value As Point
value = instance.Point
public Point Point { get; }
public:
property Point Point {
Point get ();
}
/** @property */
public Point get_Point()
public function get Point () : Point
属性值
类型:System.Drawing.Point
系统笔势的位置。
示例
在此示例中,InkCollectorSystemGestureEventHandler 实例检查传入 InkCollectorSystemGestureEventArgs 对象的数据。如果墨迹画布左上角发生 DoubleTap 系统笔势,则擦除墨迹画布上的所有笔画。
Private Sub mInkObject_SystemGesture(ByVal sender As Object, ByVal e As InkCollectorSystemGestureEventArgs)
If (e.Id = SystemGesture.DoubleTap And e.Point.X <= 106 And e.Point.Y <= 106) Then
EraseAllStrokes()
End If
End Sub
private void mInkObject_SystemGesture(object sender, InkCollectorSystemGestureEventArgs e)
{
if (e.Id == SystemGesture.DoubleTap && e.Point.X <= 106 && e.Point.Y <= 106)
{
EraseAllStrokes();
}
}
平台
Windows Vista
.NET Framework 和 .NET Compact Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。
版本信息
.NET Framework
受以下版本支持:3.0
另请参见
参考
InkCollectorSystemGestureEventArgs 类