[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ILabelOptions.Font

Font Property

Font

Gets the font used by the watermark label.

Use the returned font object to configure the watermark label font for the range, such as its bold style, italic style, size, and color. SpreadJS only.

Declaration
IFont Font { get; }
ReadOnly Property Font As IFont
Examples
IRange range = worksheet.Range["A1"];
range.Watermark = "Required";
IFont font = range.LabelOptions.Font;
font.Bold = true;
font.Color = Color.Blue;