StylusDevice.Capture メソッド

定義

スタイラスからの入力を特定の要素にバインドします。

オーバーロード

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 です。

例外

elementnullです。

elementUIElement でも 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 または captureModenull です。

elementUIElement でも 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)

適用対象