[]
Returns an instance of IFont which may be used to get and set font properties of the cells represented by this IRange.
IFont Font { get; }
ReadOnly Property Font As IFont
| Type | Description |
|---|---|
| IFont | The font. |
IRange range = worksheet.Range["A1"];
IFont font = range.Font;
font.Bold = true;
bool bold = range.Font.Bold;