FontCreate Method (PDFDoc, FontStandardType1Font, Boolean) |
Creates a PDF::Font object for the given standard (also known as base 14 font).
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public static Font Create(
PDFDoc doc,
FontStandardType1Font type,
bool embed
)
Public Shared Function Create (
doc As PDFDoc,
type As FontStandardType1Font,
embed As Boolean
) As Font
public:
static Font^ Create(
[InAttribute] PDFDoc^ doc,
[InAttribute] FontStandardType1Font type,
[InAttribute] bool embed
)
pdftron.PDF.Font.Create = function(doc, type, embed);
Parameters
- doc
- Type: pdftron.PDFPDFDoc
The PDF document. - type
- Type: pdftron.PDFFontStandardType1Font
The font type. - embed
- Type: SystemBoolean
If the font will be embedded.
Return Value
Type:
FontA newly created font.
See Also