DynaPDF Manual - Page 313

Previous Page 312   Index   Next Page 314

Function Reference
Page 313 of 821
If the field is a radio button or group field, the child fields used are also deleted. There is no need to
delete each field separately.
A field is never physically deleted. All field handles are still valid after a field was deleted, but the
"Used" flag of the field is set to false (see GetField() for further information). If a field contained an
action that was not used by another object then the action is also deleted.
Fields can also be deleted by using its name instead of the handle. See DeleteFieldEx() for further
information.
Return values:
If the function succeeds the return value is 1. If the function fails the return value is 0.
DeleteFieldEx
Syntax:
SI32 pdfDeleteFieldEx(
const PPDF* IPDF, // Instance pointer
const char* Name) // Full qualified field name
This function deletes an interactive form field by using its full qualified name, that is the name of
any parent group field separated by a period (.) plus the field name.
Remarks:
Check boxes of a radio button have no name. It is not possible to delete such a check box by using
this function, use DeleteField() instead. However, the entire radio button can be deleted with this
function.
Return values:
If the function succeeds the return value is 1. If the function fails the return value is 0.
DeleteJavaScripts
Syntax:
void pdfDeleteJavaScripts(
const PPDF* IPDF,
// Instance pointer
LBOOL DelJavaScriptActions) // Delete Javascript Actions?
The function deletes all global Javascripts and optionally all Javascript Actions from the document.
 

Previous topic: DeleteBookmark, DeleteEmbeddedFile, DeleteField

Next topic: DeleteOCGFromAppEvent, DeleteNamedDest