UIRectEdge 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.
An enumeration whose values specify screen edges, for use with Edges and EdgesForExtendedLayout.
This enumeration supports a bitwise combination of its member values.
[ObjCRuntime.Native]
[System.Flags]
public enum UIRectEdge
[<ObjCRuntime.Native>]
[<System.Flags>]
type UIRectEdge =
- Inheritance
-
UIRectEdge
- Attributes
Fields
| Name | Value | Description |
|---|---|---|
| None | 0 | No edges. |
| Top | 1 | The top edge of the rectangle. |
| Left | 2 | The left edge of the rectangle. |
| Bottom | 4 | The bottom edge of the rectangle. |
| Right | 8 | The right edge of the rectangle. |
| All | 15 | All edges of the rectangle. |