NonClientFrameEdges 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 constants that indicate which edges of the window frame are not owned by the client.
This enumeration supports a bitwise combination of its member values.
public enum class NonClientFrameEdges
[System.Flags]
public enum NonClientFrameEdges
[<System.Flags>]
type NonClientFrameEdges =
Public Enum NonClientFrameEdges
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | All edges are owned by the client (value = 0). |
Left | 1 | The left edge is not owned by the client (value = 1). |
Top | 2 | The top edge is not owned by the client (value = 2). |
Right | 4 | The right edge is not owned by the client (value = 4). |
Bottom | 8 | The bottom edge is not owned by the client (value = 8). |
Remarks
This enumeration is used by the WindowChrome.NonClientFrameEdges property.