Class Font
Specifies font information.
Inheritance
System.Object
Font
Namespace: Neodynamic.Blazor.BarcodeProfessional
Assembly: Neodynamic.Blazor.Barcode.dll
Syntax
public class Font : Object
Constructors
Font()
Declaration
public Font()
Properties
Bold
A value that indicates whether the font is bold.
Declaration
public bool Bold { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
CustomFontFile
Gets or sets the custom font file to use for this Font object. It's the full path pointing out to the custom font file on local disk; or the font file content in Base64 format.
Declaration
public string CustomFontFile { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Italic
A value that indicates whether the font is italic.
Declaration
public bool Italic { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Name
The font face name.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Strikeout
A value that indicates whether the font specifies a horizontal line through the font.
Declaration
public bool Strikeout { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Underline
A value that indicates whether the font is underlined.
Declaration
public bool Underline { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |