op.document.changeInfo
From PDF XChange PDF SDK
(→Sample) |
|||
Line 35: | Line 35: | ||
input.Add().v = Doc.CoreDoc; | input.Add().v = Doc.CoreDoc; | ||
PDFXEdit.ICabNode options = Op.Params.Root["Options"]; | PDFXEdit.ICabNode options = Op.Params.Root["Options"]; | ||
− | options["Flags"].v = PDFXEdit.PXV_ChangeDocPropsFlag.CDPF_Title; | + | options["Flags"].v = (int)PDFXEdit.PXV_ChangeDocPropsFlag.CDPF_Title | (int)PDFXEdit.PXV_ChangeDocPropsFlag.CDPF_ViewFlags; |
+ | options["ViewFlags"].v = (1 << (int)PDFXEdit.PXC_DocumentViewFlags.DocViewFlag_DisplayDocTitle); | ||
options["Title"].v = "Your custom title"; | options["Title"].v = "Your custom title"; | ||
Op.Do(); | Op.Do(); | ||
} | } | ||
</pre> | </pre> |
Latest revision as of 04:50, 28 October 2016
Overview
The operation allows to change specified document's properties.
Parameters
Name | Type | Description |
---|---|---|
Input | Array | IUnknown -based object containing the IPXC_Document that will have it's properties changed.
|
Output | Array | IUnknown -based object containing the IPXC_Document that had it's properties changed.
|
Options | Dictionary | Dictionary with options of the operation. |
Sample
//C# private void ChangeDocumentInfo(PDFXEdit.IPXV_Document Doc, PDFXEdit.IPXV_Inst Inst) { int nID = Inst.Str2ID("op.document.changeInfo", 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"]; options["Flags"].v = (int)PDFXEdit.PXV_ChangeDocPropsFlag.CDPF_Title | (int)PDFXEdit.PXV_ChangeDocPropsFlag.CDPF_ViewFlags; options["ViewFlags"].v = (1 << (int)PDFXEdit.PXC_DocumentViewFlags.DocViewFlag_DisplayDocTitle); options["Title"].v = "Your custom title"; Op.Do(); }