InkCollector.SetGestureStatus 方法
设置 InkCollector 对象是否关注某个已知应用程序笔势。
命名空间: Microsoft.Ink
程序集: Microsoft.Ink(在 Microsoft.Ink.dll 中)
语法
声明
Public Sub SetGestureStatus ( _
gesture As ApplicationGesture, _
listening As Boolean _
)
用法
Dim instance As InkCollector
Dim gesture As ApplicationGesture
Dim listening As Boolean
instance.SetGestureStatus(gesture, listening)
public void SetGestureStatus(
ApplicationGesture gesture,
bool listening
)
public:
void SetGestureStatus(
ApplicationGesture gesture,
bool listening
)
public void SetGestureStatus(
ApplicationGesture gesture,
boolean listening
)
public function SetGestureStatus(
gesture : ApplicationGesture,
listening : boolean
)
参数
- gesture
类型:Microsoft.Ink.ApplicationGesture
ApplicationGesture 枚举的成员,指示要设置其状态的笔势。
- listening
类型:System.Boolean
InkCollector 对象是否关注某个已知应用程序笔势。
如果 InkCollector 对象关注该应用程序笔势,则为 true。
如果 InkCollector 对象不关注该应用程序笔势,则为 false。
备注
若要在一次调用中启用或禁用所有应用程序笔势,请使用 ApplicationGesture 枚举的 ApplicationGesture 值。
若要返回一个值,用于指示 InkCollector 对象是否关注特定的应用程序笔势,请调用 GetGestureStatus 方法。
示例
在此示例中,InkCollector 对象 mInkCollector 设置对 ApplicationGesture 枚举的四个笔势的关注。
' set InkCollector interest in the Left, Right, Up, Down gestures
mInkCollector.SetGestureStatus(ApplicationGesture.Left, True)
mInkCollector.SetGestureStatus(ApplicationGesture.Right, True)
mInkCollector.SetGestureStatus(ApplicationGesture.Up, True)
mInkCollector.SetGestureStatus(ApplicationGesture.Down, True)
// set InkCollector interest in the Left, Right, Up, Down gestures
mInkCollector.SetGestureStatus(ApplicationGesture.Left, true);
mInkCollector.SetGestureStatus(ApplicationGesture.Right, true);
mInkCollector.SetGestureStatus(ApplicationGesture.Up, true);
mInkCollector.SetGestureStatus(ApplicationGesture.Down, true);
平台
Windows Vista
.NET Framework 和 .NET Compact Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。
版本信息
.NET Framework
受以下版本支持:3.0