Adds a new font with specified properties to the end of the
collection of document fonts.
Namespace:
BitMiracle.Docotic.Pdf
Assembly:
BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)
Syntax
C#
public PdfFont AddFont(
string fontFace,
bool bold,
bool italic,
bool underline,
bool strikeout
)
VB
Public Function AddFont (
fontFace As String,
bold As Boolean,
italic As Boolean,
underline As Boolean,
strikeout As Boolean
) As PdfFont
Parameters
- fontFace
- Type: System.String
The name of the font face. - bold
- Type: System.Boolean
if set to true then added font
will be bold. - italic
- Type: System.Boolean
if set to true then added font
will be italic. - underline
- Type: System.Boolean
if set to true then text drawn
with added font will be underlined. - strikeout
- Type: System.Boolean
if set to true then text drawn
with added font will be stroked out.
Return Value
Type:
PdfFontThe newly added
PdfFont or
null if there is no font
with specified face installed.
Remarks
If requested font does not have bold or italic
version then bold or italic version will be synthesized when
needed.
See Also