HitTestOptions Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the options that can be used when performing a hit test on the background specified by a visual style.
This enumeration supports a bitwise combination of its member values.
public enum class HitTestOptions
[System.Flags]
public enum HitTestOptions
[<System.Flags>]
type HitTestOptions =
Public Enum HitTestOptions
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
BackgroundSegment | 0 | The hit test option for the background segment. |
FixedBorder | 2 | The hit test option for the fixed border. |
Caption | 4 | The hit test option for the caption. |
ResizingBorderLeft | 16 | The hit test option for the left resizing border. |
ResizingBorderTop | 32 | The hit test option for the top resizing border. |
ResizingBorderRight | 64 | The hit test option for the right resizing border. |
ResizingBorderBottom | 128 | The hit test option for the bottom resizing border. |
ResizingBorder | 240 | The hit test option for the resizing border. |
SizingTemplate | 256 | The resizing border is specified as a template, not just window edges. This option is mutually exclusive with SystemSizingMargins; SizingTemplate takes precedence. |
SystemSizingMargins | 512 | The system resizing border width is used instead of visual style content margins. This option is mutually exclusive with SizingTemplate; SizingTemplate takes precedence. |
Remarks
The HitTestOptions values are used as an argument in the VisualStyleRenderer.HitTestBackground method.
Applies to
.NET