CaptureMode Enumeration
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Defines values used to describe the different modes in which input events can be captured.
Namespace: Microsoft.SPOT.Input
Assembly: Microsoft.SPOT.TinyCore (in Microsoft.SPOT.TinyCore.dll)
Syntax
'Declaration
Public Enumeration CaptureMode
public enum CaptureMode
public enum class CaptureMode
type CaptureMode
public enum CaptureMode
Members
Member name | Description | |
---|---|---|
None | No input capture; input goes to the UIElement where the event occurred. | |
Element | Capture is applied to a single element, and input goes to the captured UIElement. | |
SubTree | Capture is applied to a subtree of elements. If the event occurs in a child of the UIElement with capture, input is sent to the child element, but otherwise, input is sent to the UIElement with capture. |