op.resetForm

From PDF XChange PDF SDK
Revision as of 07:37, 21 April 2016 by Palamar (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search


Overview

Resets the form fields to their initial state, removing all of the changes done.

Parameters

Name Type Description
Input Array Array of IUnknown-based objects containing the IPXC_Document that will have it's pages' forms reset.
Output Array Array of IUnknown-based objects containing the IPXC_Document that had it's pages' forms reset.
Options Dictionary Dictionary with options of the operation.

Sample

//C#
private void ResetForm(PDFXEdit.IPXV_Document Doc, PDFXEdit.IPXV_Inst Inst)
{
	int nID = Inst.Str2ID("op.resetForm", false);
	PDFXEdit.IOperation Op = Inst.CreateOp(nID);
	var input = Op.Params.Root["Input"];
	input.Add().v = Doc.CoreDoc;
	PDFXEdit.ICabNode options = Op.Params.Root["Options"];
	//Resetting all of the form fields
	options["Exclude"].v = true;
	Op.Do();
}