[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.CornerFold.Color

Color Property

Color

Gets the color of the corner fold.

Use this property to retrieve the Color applied to the corner fold in a cell decoration.

Declaration
public Color Color { get; }
Public ReadOnly Property Color As Color
Implements
Examples
CornerFold cornerFold = new CornerFold(
    Color.Red,
    CornerPosition.LeftTop | CornerPosition.RightTop,
    8
);
Color color = cornerFold.Color;