[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IRange.DisplayFormat

DisplayFormat Property

DisplayFormat

Gets a DisplayFormat object that represents the display settings for the specified range.

Declaration
IDisplayFormat DisplayFormat { get; }
ReadOnly Property DisplayFormat As IDisplayFormat
Examples
IRange range = worksheet.Range["A1"];
range.Interior.Color = Color.LightYellow;
IDisplayFormat displayFormat = range.DisplayFormat;
Color color = displayFormat.Interior.Color;