[]
Gets the color of the corner fold.
Use this property to retrieve the Color applied to the corner fold in a cell decoration.
public Color Color { get; }
Public ReadOnly Property Color As Color
CornerFold cornerFold = new CornerFold(
Color.Red,
CornerPosition.LeftTop | CornerPosition.RightTop,
8
);
Color color = cornerFold.Color;