[]
A struct that contains info of fonts that are used by workbook.
public struct FontInfo
Public Structure FontInfo
FontInfo fontInfo = new FontInfo();
fontInfo.Name = "Arial";
fontInfo.Bold = true;
fontInfo.Italic = false;
| Name | Description |
|---|---|
| Bold | A bool value indicates whether the font is bold. |
| Italic | A bool value indicates whether the font is italic. |
| Name | Gets or sets the name of the font. |
| Name | Description |
|---|---|
| Equals(object) | Checks whether this font information is equal to another object.
Two FontInfo objects are considered equal when their |
| GetHashCode() | Get hash code of font. |
| Name | Description |
|---|---|
| operator ==(FontInfo, FontInfo) | Equality. |
| operator !=(FontInfo, FontInfo) | Inequality. |