StylusDevice.Capture メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
スタイラスからの入力を特定の要素にバインドします。
オーバーロード
Capture(IInputElement) |
スタイラスからの入力を、指定した要素にバインドします。 |
Capture(IInputElement, CaptureMode) |
指定した要素にスタイラスをバインドします。 |
Capture(IInputElement)
スタイラスからの入力を、指定した要素にバインドします。
public:
bool Capture(System::Windows::IInputElement ^ element);
public bool Capture (System.Windows.IInputElement element);
member this.Capture : System.Windows.IInputElement -> bool
Public Function Capture (element As IInputElement) As Boolean
パラメーター
- element
- IInputElement
スタイラスのバインド先の要素。
戻り値
入力要素が正常にキャプチャされた場合はtrue
。それ以外の場合は false
。 既定値は、false
です。
例外
element
が null
です。
element
が UIElement でも FrameworkContentElement でもありません。
例
Capture(IInputElement)メソッドの例を次に示します。
// Bind stylus to tablet's input element
myStylusDevice.Capture(myStylusDevice.Target);
' Bind stylus to tablet's input element
myStylusDevice.Capture(myStylusDevice.Target)
適用対象
Capture(IInputElement, CaptureMode)
指定した要素にスタイラスをバインドします。
public:
bool Capture(System::Windows::IInputElement ^ element, System::Windows::Input::CaptureMode captureMode);
public bool Capture (System.Windows.IInputElement element, System.Windows.Input.CaptureMode captureMode);
member this.Capture : System.Windows.IInputElement * System.Windows.Input.CaptureMode -> bool
Public Function Capture (element As IInputElement, captureMode As CaptureMode) As Boolean
パラメーター
- element
- IInputElement
スタイラスのバインド先の要素。
- captureMode
- CaptureMode
CaptureMode 値のいずれか 1 つ。
戻り値
入力要素が正常にキャプチャされた場合はtrue
。それ以外の場合は false
。 既定値は、false
です。
例外
element
または captureMode
が null
です。
element
が UIElement でも FrameworkContentElement でもありません。
例
Capture(IInputElement, CaptureMode)メソッドの例を次に示します。
// Bind stylus to tablet's input element
// through entire subtree
myStylusDevice.Capture(myStylusDevice.Target, CaptureMode.SubTree);
' Bind stylus to tablet's input element
' through entire subtree
myStylusDevice.Capture(myStylusDevice.Target, CaptureMode.SubTree)
適用対象
.NET