InkPicture.SetGestureStatus 方法
設定 InkPicture 物件是否與已知的應用程式筆勢有關聯。
命名空間: Microsoft.Ink
組件: Microsoft.Ink (在 Microsoft.Ink.dll 中)
語法
'宣告
Public Sub SetGestureStatus ( _
gesture As ApplicationGesture, _
listening As Boolean _
)
'用途
Dim instance As InkPicture
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
InkPicture 物件是否與已知的應用程式筆勢有關聯。
如果 InkPicture 物件與應用程式筆勢有關聯,則為 true。
如果 InkPicture 物件與應用程式筆勢沒有關聯,則為 false。
備註
若要在一個呼叫中啟用或停用所有應用程式筆勢,請使用 ApplicationGesture 列舉型別的 AllGestures 值。
若要傳回一個表示 InkPicture 物件是否與特定應用程式筆勢有關聯的值,請呼叫 GetGestureStatus 方法。
範例
在這個範例中,InkPicture 物件 (變數名稱為 mInkPicture) 會表示對 ApplicationGesture 列舉型別的四個筆勢感興趣。
' set InkPicture interest in the Left, Right, Up, Down gestures
mInkPicture.SetGestureStatus(ApplicationGesture.Left, True)
mInkPicture.SetGestureStatus(ApplicationGesture.Right, True)
mInkPicture.SetGestureStatus(ApplicationGesture.Up, True)
mInkPicture.SetGestureStatus(ApplicationGesture.Down, True)
// set InkPicture interest in the Left, Right, Up, Down gestures
mInkPicture.SetGestureStatus(ApplicationGesture.Left, true);
mInkPicture.SetGestureStatus(ApplicationGesture.Right, true);
mInkPicture.SetGestureStatus(ApplicationGesture.Up, true);
mInkPicture.SetGestureStatus(ApplicationGesture.Down, true);
平台
Windows Vista
.NET Framework 和 .NET Compact Framework 並不支援各種平台的所有版本。如需支援平台版本的相關資訊,請參閱 .NET Framework 系統需求。
版本資訊
.NET Framework
支援版本:3.0