Class FontTypes
Supported PDF Fonts
Inheritance
Implements
Namespace: IronSoftware.Drawing
Assembly: IronSoftware.Drawing.Common.dll
Syntax
public class FontTypes : Enumeration, IComparable
Properties
Arial
Represents the Arial font type.
Declaration
public static FontTypes Arial { get; }
Property Value
Type | Description |
---|---|
FontTypes |
ArialBold
Represents the Arial-Bold font type.
Declaration
public static FontTypes ArialBold { get; }
Property Value
Type | Description |
---|---|
FontTypes |
ArialBoldItalic
Represents the Arial-BoldItalic font type.
Declaration
public static FontTypes ArialBoldItalic { get; }
Property Value
Type | Description |
---|---|
FontTypes |
ArialItalic
Represents the Arial-Italic font type.
Declaration
public static FontTypes ArialItalic { get; }
Property Value
Type | Description |
---|---|
FontTypes |
Courier
Represents the Courier font type.
Declaration
public static FontTypes Courier { get; }
Property Value
Type | Description |
---|---|
FontTypes |
CourierBold
Represents the Courier-Bold font type.
Declaration
public static FontTypes CourierBold { get; }
Property Value
Type | Description |
---|---|
FontTypes |
CourierBoldOblique
Represents the Courier-BoldOblique font type.
Declaration
public static FontTypes CourierBoldOblique { get; }
Property Value
Type | Description |
---|---|
FontTypes |
CourierNew
Represents the CourierNew font type.
Declaration
public static FontTypes CourierNew { get; }
Property Value
Type | Description |
---|---|
FontTypes |
CourierNewBold
Represents the CourierNew-Bold font type.
Declaration
public static FontTypes CourierNewBold { get; }
Property Value
Type | Description |
---|---|
FontTypes |
CourierNewBoldItalic
Represents the CourierNew-BoldItalic font type.
Declaration
public static FontTypes CourierNewBoldItalic { get; }
Property Value
Type | Description |
---|---|
FontTypes |
CourierNewItalic
Represents the CourierNew-Italic font type.
Declaration
public static FontTypes CourierNewItalic { get; }
Property Value
Type | Description |
---|---|
FontTypes |
CourierOblique
Represents the Courier-Oblique font type.
Declaration
public static FontTypes CourierOblique { get; }
Property Value
Type | Description |
---|---|
FontTypes |
Helvetica
Represents the Helvetica font type.
Declaration
public static FontTypes Helvetica { get; }
Property Value
Type | Description |
---|---|
FontTypes |
HelveticaBold
Represents the Helvetica-Bold font type.
Declaration
public static FontTypes HelveticaBold { get; }
Property Value
Type | Description |
---|---|
FontTypes |
HelveticaBoldOblique
Represents the Helvetica-BoldOblique font type.
Declaration
public static FontTypes HelveticaBoldOblique { get; }
Property Value
Type | Description |
---|---|
FontTypes |
HelveticaOblique
Represents the Helvetica-Oblique font type.
Declaration
public static FontTypes HelveticaOblique { get; }
Property Value
Type | Description |
---|---|
FontTypes |
Symbol
Represents the Symbol font type.
Declaration
public static FontTypes Symbol { get; }
Property Value
Type | Description |
---|---|
FontTypes |
TimesNewRoman
Represents the TimesNewRoman font type.
Declaration
public static FontTypes TimesNewRoman { get; }
Property Value
Type | Description |
---|---|
FontTypes |
TimesNewRomanBold
Represents the TimesNewRoman-Bold font type.
Declaration
public static FontTypes TimesNewRomanBold { get; }
Property Value
Type | Description |
---|---|
FontTypes |
TimesNewRomanBoldItalic
Represents the TimesNewRoman-BoldItalic font type.
Declaration
public static FontTypes TimesNewRomanBoldItalic { get; }
Property Value
Type | Description |
---|---|
FontTypes |
TimesNewRomanItalic
Represents the TimesNewRoman-Italic font type.
Declaration
public static FontTypes TimesNewRomanItalic { get; }
Property Value
Type | Description |
---|---|
FontTypes |
ZapfDingbats
Represents the ZapfDingbats font type.
Declaration
public static FontTypes ZapfDingbats { get; }
Property Value
Type | Description |
---|---|
FontTypes |
Methods
FromString(String)
Returns the corresponding FontTypes based on the provided font name string.
Declaration
public static FontTypes FromString(string fontName)
Parameters
Type | Name | Description |
---|---|---|
System.String | fontName | The name of the font. |
Returns
Type | Description |
---|---|
FontTypes | The corresponding FontTypes object. |
Exceptions
Type | Condition |
---|---|
System.InvalidCastException | Thrown when the provided font name is not a recognized standard PDF font type. |