[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IFontFormat

Interface IFontFormat

Namespace
GrapeCity.Documents.Excel.Drawing
Assembly
GcDocs.Excel.dll

Represents font attributes (for example, font name, font size, and color) for an object.

public interface IFontFormat

Properties

Bold

Gets or sets the boolean property that indicates whether the represented text is bold.

bool Bold { get; set; }

Property Value

bool

true if bold; otherwise, false.

Color

Gets the color format .

IColorFormat Color { get; }

Property Value

IColorFormat

Italic

Gets or sets the boolean property that indicates whether the represented text is italicized.

bool Italic { get; set; }

Property Value

bool

Name

Gets or sets the font name to use for the represented text.

string Name { get; set; }

Property Value

string

The name.

Size

Gets or sets the size of the font in points.

double Size { get; set; }

Property Value

double

The size.

Strikethrough

Gets or sets the boolean property that indicates whether the represented text has a strike through it.

bool Strikethrough { get; set; }

Property Value

bool

true if strikethrough; otherwise, false.

Subscript

Gets or sets the boolean property that indicates whether the represented text is a subscript.

bool Subscript { get; set; }

Property Value

bool

true if subscript; otherwise, false.

Superscript

Gets or sets the boolean property that indicates whether the represented text is a superscript.

bool Superscript { get; set; }

Property Value

bool

true if superscript; otherwise, false.

ThemeFont

Gets or sets the theme font in the applied font scheme that is associated with the specified object (read/write ThemeFont).

ThemeFont ThemeFont { get; set; }

Property Value

ThemeFont

Underline

Gets or sets the UnderlineStyle of the represented text.

TextUnderlineType Underline { get; set; }

Property Value

TextUnderlineType