op.annot.setData
From PDF XChange PDF SDK
(→Sample) |
|||
Line 33: | Line 33: | ||
PDFXEdit.IPXC_AnnotData_FreeText FTData = (PDFXEdit.IPXC_AnnotData_FreeText)Annotation.Data; | PDFXEdit.IPXC_AnnotData_FreeText FTData = (PDFXEdit.IPXC_AnnotData_FreeText)Annotation.Data; | ||
FTData.Contents = "Test String"; | FTData.Contents = "Test String"; | ||
− | int nID = | + | int nID = Inst.Str2ID("op.annot.setData", false); |
− | PDFXEdit.IOperation Op = | + | PDFXEdit.IOperation Op = Inst.CreateOp(nID); |
PDFXEdit.ICabNode input = Op.Params.Root["Input"]; | PDFXEdit.ICabNode input = Op.Params.Root["Input"]; | ||
input.Add().v = Annotation; | input.Add().v = Annotation; |
Latest revision as of 06:28, 15 April 2016
Overview
The operation allows to modify the annotation data of the given annotation.
Parameters
Name | Type | Description |
---|---|---|
Input | Array | Array of IUnknown -based objects containing the IPXC_Annotation that will have it's data modified.
|
Output | Array | Array of IUnknown -based objects containing the IPXC_Annotation that had it's data modified.
|
Options | Dictionary | Dictionary with options of the operation. |
Sample
//C# private void SetAnnotationData(PDFXEdit.IPXV_Document Doc, PDFXEdit.IPXV_Inst Inst, PDFXEdit.IPXC_Annotation Annotation) { //In this sample the Free Text Annotation is used PDFXEdit.IPXC_AnnotData_FreeText FTData = (PDFXEdit.IPXC_AnnotData_FreeText)Annotation.Data; FTData.Contents = "Test String"; int nID = Inst.Str2ID("op.annot.setData", false); PDFXEdit.IOperation Op = Inst.CreateOp(nID); PDFXEdit.ICabNode input = Op.Params.Root["Input"]; input.Add().v = Annotation; PDFXEdit.ICabNode options = Op.Params.Root["Options"]; options["NewData"].v = FTData; Op.Do(); }