PDFDocMergeXFDF Method (IFilter, MergeXFDFOptions) |
Merge existing form and annotation data with those imported from the XFDF file. It will
replace annotations from pdfdocument with matching annotations from XFDF.
In order for the annotations to be considered matching, "name" of the xfdf annotation needs to match "NM"
of that in pdf.
XFDF annotations that don't have a match in the pdf document will be added.
For regular xfdf files, no deletions will be made
This method also supports command form of xfdf, for those files, deletions will be performed for
annotations in "delete" section
Since this method avoids updating annotations unnecessarily it works well with incremental save.
Note: This method is suitable for realtime collaboration.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public void MergeXFDF(
IFilter stm,
MergeXFDFOptions options
)
Public Sub MergeXFDF (
stm As IFilter,
options As MergeXFDFOptions
)
public:
virtual void MergeXFDF(
[InAttribute] IFilter^ stm,
[InAttribute] MergeXFDFOptions^ options
) sealed
function MergeXFDF(stm, options);
Parameters
- stm
- Type: pdftron.FiltersIFilter
filter containing the content of the xfdf file - options
- Type: pdftron.PDFMergeXFDFOptions
finer control parameters (see MergeXFDFOptions for more details)
See Also