StylusDevice.Capture Methode

Definition

Bindet die Eingabe des Tablettstifts an ein bestimmtes Element.

Überlädt

Capture(IInputElement)

Bindet die Eingabe des Tablettstifts an das angegebene Element.

Capture(IInputElement, CaptureMode)

Bindet den Tablettstift an das angegebene Element.

Capture(IInputElement)

Bindet die Eingabe des Tablettstifts an das angegebene Element.

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

Parameter

element
IInputElement

Das Element, an das der Tablettstift gebunden ist.

Gibt zurück

true, wenn das Eingabeelement erfolgreich erfasst wird, andernfalls false. Der Standardwert ist false.

Ausnahmen

element ist null.

Beispiele

Das folgende Beispiel veranschaulicht die Capture(IInputElement) Methode.

// Bind stylus to tablet's input element
myStylusDevice.Capture(myStylusDevice.Target);
' Bind stylus to tablet's input element
myStylusDevice.Capture(myStylusDevice.Target)

Gilt für:

Capture(IInputElement, CaptureMode)

Bindet den Tablettstift an das angegebene Element.

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

Parameter

element
IInputElement

Das Element, an das der Tablettstift gebunden ist.

captureMode
CaptureMode

Einer der CaptureMode-Werte.

Gibt zurück

true, wenn das Eingabeelement erfolgreich erfasst wird, andernfalls false. Der Standardwert ist false.

Ausnahmen

element oder captureMode ist null.

Beispiele

Das folgende Beispiel veranschaulicht die Capture(IInputElement, CaptureMode) Methode.

// 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)

Gilt für: