DekGenius.com
[ Team LiB ] Previous Section Next Section

Border3DSideserializable, flag

System.Windows.Forms (system.windows.forms.dll)enum

This enumeration is used by the ControlPaint.DrawBorder3D() method to determine which sides of the border should be drawn.

public enum Border3DSide {
   Left = 0x00000001,
   Top = 0x00000002,
   Right = 0x00000004,
   Bottom = 0x00000008,
   Middle = 0x00000800,
   All = 0x0000080F
}

Hierarchy

System.Object System.ValueType System.Enum(System.IComparabl, System.IFormattable, System.IConvertible) Border3DSide

Passed To

ControlPaint.DrawBorder3D()

    [ Team LiB ] Previous Section Next Section