Back to API Reference
Enum

RangeDecorationCorners

Corner mask used by built-in and custom rounded range decorations.

public static readonly RangeDecorationCorners None = 0

No corners are rounded.

public static readonly RangeDecorationCorners TopLeft = 1

Round the top-left corner.

public static readonly RangeDecorationCorners TopRight = 2

Round the top-right corner.

public static readonly RangeDecorationCorners BottomRight = 4

Round the bottom-right corner.

public static readonly RangeDecorationCorners BottomLeft = 8

Round the bottom-left corner.

public static readonly RangeDecorationCorners Left = TopLeft | BottomLeft

Round both left corners.

public static readonly RangeDecorationCorners All = TopLeft | TopRight | BottomRight | BottomLeft

Round all corners.