new Pdf()
Object that can be used to define a PDF file, which can then be written to disk. [REQUIREMENT: unpublished projects only] [REQUIREMENT: user subscription access - 'pdfs']
Example:
// DOM/PAULI, WE'RE GOING TO WANT AN EXAMPLE HERE THAT MAKES USE OF VIRTUALLY THE ENTIRE API, this will show people what's possible
MEMBERS
-
defaultFontName :string
-
The default font for text within this Pdf. Please note that any fonts (ttf or otf files) used within Pdfs must reside within the 'Pdf Fonts' directory of the Incisor® application support directory, which can be accessed from the Incisor® menu.
- Default Value:
- "Noto Sans"
-
defaultFontSize :number
-
The default font size for text within this Pdf.
- Default Value:
- 40
-
inheritedTypes :object
-
Dictionary object listing all of the types this object is compatible with.
-
type :string
-
Type identifier.
METHODS
-
addSection() returns {PdfSection}
-
Adds a new PdfSection to this Pdf and returns it. A PdfSection is a group of pages with a shared style.
Returns:
PdfSection -
defineFont(name, regularFontFileName, boldFontFileName (opt), italicFontFileName (opt), boldItalicFontFileName (opt))
-
Defines a new font that can be used within this Pdf. Please note that any fonts (ttf or otf files) used within Pdfs must reside within the 'Pdf Fonts' directory of the Incisor® application support directory, which can be accessed from the Incisor® menu.
Parameters:
Name Type Attributes Default Description name
string The name of the newly defined font to be made available to use within this Pdf.
regularFontFileName
string The name of the font file (within the application support 'Pdf Fonts' directory) to be used for regular text.
boldFontFileName
string <optional>
The name of the font file (within the application support 'Pdf Fonts' directory) to be used for bold text. [DEFAULT: regularFontFileName]
italicFontFileName
string <optional>
The name of the font file (within the application support 'Pdf Fonts' directory) to be used for italic text. [DEFAULT: regularFontFileName]
boldItalicFontFileName
string <optional>
The name of the font file (within the application support 'Pdf Fonts' directory) to be used for bold italic text. [DEFAULT: regularFontFileName]
-
writePdf(filePath, isPathRelative (opt))
-
Writes the Pdf file to the given path.
Parameters:
Name Type Attributes Default Description filePath
string The relative or absolute path for the file to be written.
isPathRelative
boolean <optional>
Bool stating if the given path is relative to the project path or an absolute path. If an absolute path is used that is outside of the project directory, the 'allowUniversalFileIO' item in application settings must be set to true. [DEFAULT: true]