DekGenius.com
[ Team LiB ] Previous Section Next Section

ButtonBorderStyleserializable

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

To draw a button-like border, you can use the ControlPaint.DrawBorder() method and pass in a value from this enumeration to determine the type of border to draw.

public enum ButtonBorderStyle {
   None = 0,
   Dotted = 1,
   Dashed = 2,
   Solid = 3,
   Inset = 4,
   Outset = 5
}

Hierarchy

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

Passed To

ControlPaint.DrawBorder()

    [ Team LiB ] Previous Section Next Section