Border3DSide 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 sides of a rectangle to apply a three-dimensional border to.
This enumeration supports a bitwise combination of its member values.
public enum class Border3DSide
[System.Flags]
[System.Runtime.InteropServices.ComVisible(true)]
public enum Border3DSide
[System.Flags]
public enum Border3DSide
[<System.Flags>]
[<System.Runtime.InteropServices.ComVisible(true)>]
type Border3DSide =
[<System.Flags>]
type Border3DSide =
Public Enum Border3DSide
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
Left | 1 | A three-dimensional border on the left edge of the rectangle. |
Top | 2 | A three-dimensional border on the top edge of the rectangle. |
Right | 4 | A three-dimensional border on the right side of the rectangle. |
Bottom | 8 | A three-dimensional border on the bottom side of the rectangle. |
Middle | 2048 | The interior of the rectangle is filled with the color defined for three-dimensional controls instead of the background color for the form. |
All | 2063 | A three-dimensional border on all four sides of the rectangle. The middle of the rectangle is filled with the color defined for three-dimensional controls. |
Remarks
Use the members of this enumeration with the DrawBorder3D method of the ControlPaint class.
Applies to
See also
.NET