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 값 중 하나입니다.
반환
입력 요소가 성공적으로 캡처되었으면 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