SelectionHitResult Enumeration
SelectionHitResult Enumeration |
Defines values that specify which part of a selection, if any, was hit during a hit test.
Declaration
[C++]
typedef enum SelectionHitResult {
SHR_None = 0,
SHR_NW,
SHR_SE,
SHR_NE,
SHR_SW,
SHR_E,
SHR_W,
SHR_N,
SHR_S,
SHR_Selection
} SelectionHitResult;
[Microsoft® Visual Basic® 6.0]
Enum SelectionHitResult
SHR_None = 0
SHR_NW = 1
SHR_SE = 2
SHR_NE = 3
SHR_SW = 4
SHR_E = 5
SHR_W = 6
SHR_N = 7
SHR_S = 8
SHR_Selection = 9
End Enum
Members
The following tables list the enumeration values.
Name | Description |
---|---|
East | Specifies that the east side sizing handle was hit. |
None | Specifies that no part of the selection was hit. |
North | Specifies that the north side sizing handle was hit. |
Northeast | Specifies that the northeast corner sizing handle was hit. |
Northwest | Specifies that the northwest corner sizing handle was hit. |
Selection | Specifies that the selection itself was hit (no selection handle was hit). |
South | Specifies that the south side sizing handle was hit. |
Southeast | Specifies that the southeast corner sizing handle was hit. |
Southwest | Specifies that the southwest corner sizing handle was hit. |
West | Specifies that the west side sizing handle was hit. |