op.bookmarks.export

From PDF XChange PDF SDK
Jump to: navigation, search
(Automatic page editing by robot)
 
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:
 
{{#customTitle:op.bookmarks.export}}
 
{{#customTitle:op.bookmarks.export}}
 
{{#parentPage:PXV:Operations|op.bookmarks.export|operation}}
 
{{#parentPage:PXV:Operations|op.bookmarks.export|operation}}
{{ToWrite}}
 
 
{{ToReview}}
 
{{ToReview}}
  
 
== Overview ==
 
== Overview ==
The operation overview...
+
The operation allows to export bookmarks into a file.
  
 
== Parameters ==
 
== Parameters ==
Line 16: Line 15:
 
| class="op_param_name" | Input
 
| class="op_param_name" | Input
 
| style="text-align:center" | Array
 
| style="text-align:center" | Array
| Array of <code>IUnknown</code>-based objects.
+
| Array of <code>IUnknown</code>-based objects containing the [[PXV:IPXC_Bookmark|IPXC_Bookmark]] objects that need to be exported or the [[PXV:IPXC_Document|IPXC_Document]] object when all of the bookmarks must be exported from it. Note that all of the bookmarks must belong to one document.
 
|-
 
|-
 
| class="op_param_name" | Output
 
| class="op_param_name" | Output
 
| style="text-align:center;" | Array
 
| style="text-align:center;" | Array
| Array of <code>IUnknown</code>-based objects.
+
| Array of <code>IUnknown</code>-based objects containing the [[PXV:IPXC_Document|IPXC_Document]] from which the bookmarks were exported. Not yet implemented.
 
|-
 
|-
 
| class="op_param_name" | [[PXV:op_bookmarks_export_Options|Options]]
 
| class="op_param_name" | [[PXV:op_bookmarks_export_Options|Options]]
Line 26: Line 25:
 
| Dictionary with options of the operation.
 
| Dictionary with options of the operation.
 
|}
 
|}
 +
 +
== Sample ==
 +
<pre class="brush:c#">//C#
 +
private void ExportBookmarks(PDFXEdit.IPXV_Document Doc, PDFXEdit.IPXV_Inst Inst)
 +
{
 +
int nID = Inst.Str2ID("op.bookmarks.export", false);
 +
PDFXEdit.IOperation Op = Inst.CreateOp(nID);
 +
PDFXEdit.ICabNode input = Op.Params.Root["Input"];
 +
input.Add().v = Doc;
 +
PDFXEdit.ICabNode options = Op.Params.Root["Options"];
 +
PDFXEdit.IAFS_Inst fsInst = (PDFXEdit.IAFS_Inst)Inst.GetExtension("AFS");
 +
PDFXEdit.IAFS_Name destFile = fsInst.DefaultFileSys.StringToName("D:\\Bookmarks.xcbkm");
 +
options["ExportTo"].v = destFile;
 +
Op.Do();
 +
}
 +
</pre>

Latest revision as of 05:52, 18 April 2016


Overview

The operation allows to export bookmarks into a file.

Parameters

Name Type Description
Input Array Array of IUnknown-based objects containing the IPXC_Bookmark objects that need to be exported or the IPXC_Document object when all of the bookmarks must be exported from it. Note that all of the bookmarks must belong to one document.
Output Array Array of IUnknown-based objects containing the IPXC_Document from which the bookmarks were exported. Not yet implemented.
Options Dictionary Dictionary with options of the operation.

Sample

//C#
private void ExportBookmarks(PDFXEdit.IPXV_Document Doc, PDFXEdit.IPXV_Inst Inst)
{
	int nID = Inst.Str2ID("op.bookmarks.export", false);
	PDFXEdit.IOperation Op = Inst.CreateOp(nID);
	PDFXEdit.ICabNode input = Op.Params.Root["Input"];
	input.Add().v = Doc;
	PDFXEdit.ICabNode options = Op.Params.Root["Options"];
	PDFXEdit.IAFS_Inst fsInst = (PDFXEdit.IAFS_Inst)Inst.GetExtension("AFS");
	PDFXEdit.IAFS_Name destFile = fsInst.DefaultFileSys.StringToName("D:\\Bookmarks.xcbkm");
	options["ExportTo"].v = destFile;
	Op.Do();
}