[]
Gets a DisplayFormat object that represents the display settings for the specified range.
IDisplayFormat DisplayFormat { get; }
ReadOnly Property DisplayFormat As IDisplayFormat
IRange range = worksheet.Range["A1"];
range.Interior.Color = Color.LightYellow;
IDisplayFormat displayFormat = range.DisplayFormat;
Color color = displayFormat.Interior.Color;