|
This property determines whether JavaScript and VBScript are
enabled.
By default, client side script such as JavaScript is disabled
when rendering HTML documents.
This is done for good security reasons, and we strongly
recommend that you do not change this setting.
However, if you are sure that your source documents do not pose
a security risk, you can enable Script using this setting.
If you have a server edition of Windows (e.g. Windows Server
2008) and are using the MSHTML engine, you may need to also disable
Enhanced Security Configuration for user running the
program/application pool to allow JavaScript execution.
|
Script-Accessible Functions. These are functions that
script inside HTML can access in the window.external object. The
function signatures shown are in C#-like syntax. You'll need to
pass in the correct number of arguments. (for similar functionaity
in the Gecko engine, see "Script-accessible properties" in GeckoSubset)
| MSHTML
only
|
|
Delays ABCpdf's rendering of the HTML page. |
| |
bool ABCpdf_RenderWait()
|
| |
| Name
|
Description
|
| return |
True if ABCpdf waits (i.e. the function succeeds), otherwise
false. |
|
| |
When this function is called before the page load
is considered complete, the page load is not considered complete
until ABCpdf_RenderComplete is called. This function returns false
if ABCpdf_RenderComplete has been called. This is useful if the
page relies on timeout/asynchronous events (AJAX). |
| MSHTML
only
|
|
Resumes ABCpdf's rendering of the HTML page. |
| |
bool ABCpdf_RenderComplete()
bool ABCpdf_RenderComplete(bool force)
|
| |
| Name
|
Description
|
| force |
Whether ABCpdf ignores normal indications of page load
completion. The default value is false. |
| return |
True if ABCpdf resumes rendering as requested (i.e. the
function succeeds), otherwise false. |
|
| |
This function can be called whether
ABCpdf_RenderWait has/has not been called. If force is false,
ABCpdf resumes normal rendering. If force is true, ABCpdf starts
rendering immediately, ignoring all other indications of page load
completion. This function returns false if force is false and the
function has been previously called with force true. This is useful
if the page relies on timeout/asynchronous events (AJAX). |
|
|
|
|