DynaPDF Manual - Page 441

Previous Page 440   Index   Next Page 442

Function Reference
Page 441 of 839
Return values:
If the current open import file was already opened in repair mode then the return value is 1. If it was
loaded in normal mode then the return value is 0. If no import file is in memory the return value is a
negative error code.
GetIsFixedPich
Syntax:
LBOOL pdfGetIsFixedPitch(
const PPDF* IPDF) // Instance pointer
The function returns 1 if the active font is a fixed pitch font or 0 if the font is a variable pitch font.
You must set a font before this function can be used (see SetFont() for further information).
Return values:
If the function succeeds the return value 0 or 1 depending on whether the font is a fixed pitch font. If
the function fails the return value is a negative error code.
GetIsTaggingEnabled
Syntax:
LBOOL pdfGetIsTaggingEnabled(
const PPDF* IPDF) // Instance pointer
This function can be used to determine whether tagging is enabled. If the function is called within
an open page then it checks whether tagging is enabled for this page. EditPage() does not fully
disable tagging when the structure information of a specific page is damaged.
When the function is called outside of an open page then it checks whether tagging for the entire
document is enabled. Tagging can be disabled when a page of a PDF file with tagging information
was imported while a structure tree was already in memory.
Return values:
If tagging is enabled the return value is 1. If tagging is disabled the return value is 0.
GetItalicAngle
Syntax:
double pdfGetItalicAngle(
const PPDF* IPDF) // Instance pointer
The function returns the italic angle in degrees that will be used to emulate italic font styles. This
value is only used if an italic version of the wished font could not be found. See SetItalicAngle() for
further information.
Default value = 14.0
 

Previous topic: GetInPrintSettings, GetInRepairMode

Next topic: GetJavaScript