[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IBorder.TintAndShade

TintAndShade Property

TintAndShade

Gets or sets the tint and shade value applied to the border color.

The value ranges from -1 (darkest) to 1 (lightest), and 0 is neutral. The default value is 0.

Declaration
double TintAndShade { get; set; }
Property TintAndShade As Double
Examples
IBorder border = worksheet.Range["A1"].Borders[BordersIndex.EdgeBottom];
border.Color = Color.Blue;
border.TintAndShade = 0.5;
double tintAndShade = border.TintAndShade;