Back to API Reference
Enum
RangeDecorationCorners
Corner mask used by built-in and custom rounded range decorations.
public static readonly RangeDecorationCorners None = 0No corners are rounded.
public static readonly RangeDecorationCorners TopLeft = 1Round the top-left corner.
public static readonly RangeDecorationCorners TopRight = 2Round the top-right corner.
public static readonly RangeDecorationCorners BottomRight = 4Round the bottom-right corner.
public static readonly RangeDecorationCorners BottomLeft = 8Round the bottom-left corner.
public static readonly RangeDecorationCorners Left = TopLeft | BottomLeftRound both left corners.
public static readonly RangeDecorationCorners Right = TopRight | BottomRightRound both right corners.
public static readonly RangeDecorationCorners All = TopLeft | TopRight | BottomRight | BottomLeftRound all corners.
