From e638c6b1303620312e78fbd273b289a3f12d7fe2 Mon Sep 17 00:00:00 2001 From: Oleksandr Andriienko Date: Mon, 9 Sep 2024 16:14:31 +0200 Subject: [PATCH 1/3] Aspose.PDF for JavaScript/Node.js via C++: AsposePdfGetWordsCharactersCount --- english/javascript-cpp/_index.md | 1 + english/javascript-cpp/metadata/_index.md | 2 + .../_index.md | 63 +++++++++++++++++++ english/nodejs-cpp/_index.md | 1 + english/nodejs-cpp/metadata/_index.md | 2 + .../_index.md | 60 ++++++++++++++++++ 6 files changed, 129 insertions(+) create mode 100644 english/javascript-cpp/metadata/asposepdfgetwordscharacterscount/_index.md create mode 100644 english/nodejs-cpp/metadata/asposepdfgetwordscharacterscount/_index.md diff --git a/english/javascript-cpp/_index.md b/english/javascript-cpp/_index.md index 2418ca4178..dcacec03f4 100644 --- a/english/javascript-cpp/_index.md +++ b/english/javascript-cpp/_index.md @@ -92,6 +92,7 @@ Such operations are very time consuming, so we recommend using Web Worker. | [AsposePdfGetInfo](./metadata/asposepdfgetinfo/) | Get info (metadata) from a PDF-file. | | [AsposePdfGetAllFonts](./metadata/asposepdfgetallfonts/) | Get list fonts from a PDF-file. | | [AsposePdfRemoveMetadata](./metadata/asposepdfremovemetadata/) | Remove metadata from a PDF-file. | +| [AsposePdfGetWordsCharactersCount](./metadata/asposepdfgetwordscharacterscount/) | Get words and characters count in a PDF-file. | ## Security PDF functions diff --git a/english/javascript-cpp/metadata/_index.md b/english/javascript-cpp/metadata/_index.md index b877e3f791..e9b6427d30 100644 --- a/english/javascript-cpp/metadata/_index.md +++ b/english/javascript-cpp/metadata/_index.md @@ -14,6 +14,8 @@ url: /javascript-cpp/metadata/ | [AsposePdfGetInfo](./asposepdfgetinfo/) | Get info (metadata) from a PDF-file. | | [AsposePdfGetAllFonts](./asposepdfgetallfonts/) | Get list fonts from a PDF-file. | | [AsposePdfRemoveMetadata](./asposepdfremovemetadata/) | Remove metadata from a PDF-file. | +| [AsposePdfGetWordsCharactersCount](./asposepdfgetwordscharacterscount/) | Get words and characters count in a PDF-file. | + ## Detailed Description diff --git a/english/javascript-cpp/metadata/asposepdfgetwordscharacterscount/_index.md b/english/javascript-cpp/metadata/asposepdfgetwordscharacterscount/_index.md new file mode 100644 index 0000000000..9863d904ae --- /dev/null +++ b/english/javascript-cpp/metadata/asposepdfgetwordscharacterscount/_index.md @@ -0,0 +1,63 @@ +--- +title: "AsposePdfGetWordsCharactersCount" +second_title: Aspose.PDF for JavaScript via C++ +description: "Get words and characters count in a PDF-file." +type: docs +url: /javascript-cpp/metadata/asposepdfgetwordscharacterscount/ +--- + +_Get words and characters count in a PDF-file._ + +```js +function AsposePdfGetWordsCharactersCount( + fileBlob, + fileName +) +``` + +**Parameters**: + +* **fileBlob** Blob object +* **fileName** file name + +**Return**: + +JSON object + +* **errorCode** - code error (0 no error) +* **errorText** - text error ("" no error) +* **words** - words count +* **characters** - characters count + +**Web Worker example**: +```js + /*Create Web Worker*/ + const AsposePDFWebWorker = new Worker("AsposePDFforJS.js"); + AsposePDFWebWorker.onerror = evt => console.log(`Error from Web Worker: ${evt.message}`); + AsposePDFWebWorker.onmessage = evt => document.getElementById('output').textContent = + (evt.data == 'ready') ? 'loaded!' : + (evt.data.json.errorCode == 0) ? `\nWords count:${evt.data.json.words}\nCharacters count:${evt.data.json.characters}` : `Error: ${evt.data.json.errorText}`; + + /*Event handler*/ + const ffilePdfGetWordsCharactersCount = e => { + const file_reader = new FileReader(); + file_reader.onload = event => { + /*Get words and characters count in a PDF-file - Ask Web Worker*/ + AsposePDFWebWorker.postMessage({ "operation": 'AsposePdfGetWordsCharactersCount', "params": [event.target.result, e.target.files[0].name] }, [event.target.result]); + }; + file_reader.readAsArrayBuffer(e.target.files[0]); + }; +``` +**Simple example**: +```js + var ffilePdfGetWordsCharactersCount = function (e) { + const file_reader = new FileReader(); + file_reader.onload = (event) => { + /*Get words and characters count in a PDF-file*/ + const json = AsposePdfGetWordsCharactersCount(event.target.result, e.target.files[0].name); + if (json.errorCode == 0) document.getElementById('output').textContent = "JSON:\n" + JSON.stringify(json, null, 4); + else document.getElementById('output').textContent = json.errorText; + }; + file_reader.readAsArrayBuffer(e.target.files[0]); + }; +``` diff --git a/english/nodejs-cpp/_index.md b/english/nodejs-cpp/_index.md index edcf615a57..3ba06a3494 100644 --- a/english/nodejs-cpp/_index.md +++ b/english/nodejs-cpp/_index.md @@ -91,6 +91,7 @@ is_root: true | [AsposePdfGetInfo](./metadata/asposepdfgetinfo/) | Get info (metadata) from a PDF-file. | | [AsposePdfGetAllFonts](./metadata/asposepdfgetallfonts/) | Get list fonts from a PDF-file. | | [AsposePdfRemoveMetadata](./metadata/asposepdfremovemetadata/) | Remove metadata from a PDF-file. | +| [AsposePdfGetWordsCharactersCount](./metadata/asposepdfgetwordscharacterscount/) | Get words and characters count in a PDF-file. | ## Security PDF functions diff --git a/english/nodejs-cpp/metadata/_index.md b/english/nodejs-cpp/metadata/_index.md index 978f8a6cef..7bc8f39813 100644 --- a/english/nodejs-cpp/metadata/_index.md +++ b/english/nodejs-cpp/metadata/_index.md @@ -14,6 +14,8 @@ url: /nodejs-cpp/metadata/ | [AsposePdfGetInfo](./asposepdfgetinfo/) | Get info (metadata) from a PDF-file. | | [AsposePdfGetAllFonts](./asposepdfgetallfonts/) | Get list fonts from a PDF-file. | | [AsposePdfRemoveMetadata](./asposepdfremovemetadata/) | Remove metadata from a PDF-file. | +| [AsposePdfGetWordsCharactersCount](./asposepdfgetwordscharacterscount/) | Get words and characters count in a PDF-file. | + ## Detailed Description diff --git a/english/nodejs-cpp/metadata/asposepdfgetwordscharacterscount/_index.md b/english/nodejs-cpp/metadata/asposepdfgetwordscharacterscount/_index.md new file mode 100644 index 0000000000..416336c2e9 --- /dev/null +++ b/english/nodejs-cpp/metadata/asposepdfgetwordscharacterscount/_index.md @@ -0,0 +1,60 @@ +--- +title: "AsposePdfGetWordsCharactersCount" +second_title: Aspose.PDF for Node.js via C++ +description: "Get words and characters count in a PDF-file." +type: docs +url: /nodejs-cpp/metadata/asposepdfgetwordscharacterscount/ +--- + +_Get words and characters count in a PDF-file._ + +```js +function AsposePdfGetWordsCharactersCount( + fileName +) +``` + +**Parameters**: + +* **fileName** file name + +**Return**: + +JSON object + +* **errorCode** - code error (0 no error) +* **errorText** - text error ("" no error) +* **words** - words count +* **characters** - characters count + + +**CommonJS**: + +```js +const AsposePdf = require('asposepdfnodejs'); +const pdf_file = 'Aspose.pdf'; +AsposePdf().then(AsposePdfModule => { + /*Get words and characters count in a PDF-file*/ + const json = AsposePdfModule.AsposePdfGetWordsCharactersCount(pdf_file); + /* JSON + Words count : json.words + Characters count : json.characters + */ + console.log("AsposePdfGetWordsCharactersCount => %O", json.errorCode == 0 ? 'Words count: ' + json.words : json.errorText); +}); +``` + +**ECMAScript/ES6**: + +```js +import AsposePdf from 'asposepdfnodejs'; +const AsposePdfModule = await AsposePdf(); +const pdf_file = 'Aspose.pdf'; +/*Get words and characters count in a PDF-file*/ +const json = AsposePdfModule.AsposePdfGetWordsCharactersCount(pdf_file); +/* JSON + Words count : json.words + Characters count : json.characters +*/ +console.log("AsposePdfGetWordsCharactersCount => %O", json.errorCode == 0 ? 'Words count: ' + json.words : json.errorText); +``` \ No newline at end of file From fce587f468a9a4bec471a245c19d730268a11c92 Mon Sep 17 00:00:00 2001 From: Alexander Malokhovetskiy Date: Mon, 16 Sep 2024 18:53:36 +0300 Subject: [PATCH 2/3] Directory for Aspose.PDF for C++ --- english/cpp/_index.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 english/cpp/_index.md diff --git a/english/cpp/_index.md b/english/cpp/_index.md new file mode 100644 index 0000000000..c843fc19be --- /dev/null +++ b/english/cpp/_index.md @@ -0,0 +1,10 @@ +--- +title: Aspose.PDF for C++ +type: docs +weight: 10 +url: /cpp/ +keywords: "Aspose.PDF for C++ API Reference" +description: Aspose.PDF for C++ is a native C++ library that enables developers to create, read and manipulate PDF documents programmatically. +tags: ['pdf-to-jpg', 'pdf-to-png', 'pdf-convert'] +is_root: true +--- From d488a941f38ac9f99ccea8930f5b3339e4b07d51 Mon Sep 17 00:00:00 2001 From: Alexander Malokhovetskiy Date: Tue, 17 Sep 2024 12:17:55 +0300 Subject: [PATCH 3/3] initial data --- english/cpp/_index.md | 43 +- english/cpp/aspose.pdf.annotations/_index.md | 175 ++ .../actioncollection/_index.md | 39 + .../actioncollection/add/_index.md | 41 + .../actioncollection/clear/_index.md | 23 + .../actioncollection/contains/_index.md | 45 + .../actioncollection/copyto/_index.md | 50 + .../actioncollection/delete/_index.md | 54 + .../actioncollection/get_count/_index.md | 23 + .../actioncollection/get_isreadonly/_index.md | 23 + .../get_issynchronized/_index.md | 23 + .../actioncollection/get_syncroot/_index.md | 23 + .../actioncollection/getenumerator/_index.md | 29 + .../actioncollection/idx_get/_index.md | 45 + .../actioncollection/remove/_index.md | 45 + .../annotation/_index.md | 86 + .../annotation/accept/_index.md | 42 + .../annotation/changeafterresize/_index.md | 42 + .../annotation/flatten/_index.md | 23 + .../annotation/get_actions/_index.md | 24 + .../annotation/get_activestate/_index.md | 23 + .../annotation/get_alignment/_index.md | 33 + .../annotation/get_annotationtype/_index.md | 24 + .../annotation/get_appearance/_index.md | 24 + .../annotation/get_border/_index.md | 24 + .../annotation/get_characteristics/_index.md | 24 + .../annotation/get_color/_index.md | 24 + .../annotation/get_contents/_index.md | 23 + .../annotation/get_flags/_index.md | 24 + .../annotation/get_fullname/_index.md | 28 + .../annotation/get_height/_index.md | 23 + .../get_horizontalalignment/_index.md | 33 + .../annotation/get_modified/_index.md | 23 + .../annotation/get_name/_index.md | 23 + .../annotation/get_pageindex/_index.md | 23 + .../annotation/get_rect/_index.md | 24 + .../annotation/get_states/_index.md | 24 + .../get_texthorizontalalignment/_index.md | 24 + .../get_updateappearanceonconvert/_index.md | 23 + .../annotation/get_usefontsubset/_index.md | 23 + .../annotation/get_width/_index.md | 23 + .../annotation/getrectangle/_index.md | 45 + .../annotation/set_activestate/_index.md | 23 + .../annotation/set_alignment/_index.md | 33 + .../annotation/set_border/_index.md | 24 + .../annotation/set_color/_index.md | 24 + .../annotation/set_contents/_index.md | 23 + .../annotation/set_flags/_index.md | 24 + .../annotation/set_height/_index.md | 23 + .../set_horizontalalignment/_index.md | 33 + .../annotation/set_modified/_index.md | 23 + .../annotation/set_name/_index.md | 23 + .../annotation/set_rect/_index.md | 24 + .../set_texthorizontalalignment/_index.md | 24 + .../set_updateappearanceonconvert/_index.md | 23 + .../annotation/set_usefontsubset/_index.md | 23 + .../annotation/set_width/_index.md | 23 + .../annotationactioncollection/_index.md | 56 + .../get_oncalculate/_index.md | 24 + .../get_onclosepage/_index.md | 24 + .../get_onenter/_index.md | 24 + .../get_onexit/_index.md | 24 + .../get_onformat/_index.md | 24 + .../get_onhidepage/_index.md | 24 + .../get_onlostfocus/_index.md | 24 + .../get_onmodifycharacter/_index.md | 24 + .../get_onopenpage/_index.md | 24 + .../get_onpressmousebtn/_index.md | 24 + .../get_onreceivefocus/_index.md | 24 + .../get_onreleasemousebtn/_index.md | 24 + .../get_onshowpage/_index.md | 24 + .../get_onvalidate/_index.md | 24 + .../set_oncalculate/_index.md | 24 + .../set_onclosepage/_index.md | 24 + .../set_onenter/_index.md | 24 + .../set_onexit/_index.md | 24 + .../set_onformat/_index.md | 24 + .../set_onhidepage/_index.md | 24 + .../set_onlostfocus/_index.md | 24 + .../set_onmodifycharacter/_index.md | 24 + .../set_onopenpage/_index.md | 24 + .../set_onpressmousebtn/_index.md | 24 + .../set_onreceivefocus/_index.md | 24 + .../set_onreleasemousebtn/_index.md | 24 + .../set_onshowpage/_index.md | 24 + .../set_onvalidate/_index.md | 24 + .../annotationcollection/_index.md | 43 + .../annotationcollection/accept/_index.md | 42 + .../annotationcollection/add/_index.md | 84 + .../annotationcollection/clear/_index.md | 23 + .../annotationcollection/contains/_index.md | 46 + .../annotationcollection/copyto/_index.md | 50 + .../annotationcollection/delete/_index.md | 87 + .../annotationcollection/findbyname/_index.md | 45 + .../annotationcollection/get_count/_index.md | 23 + .../get_isreadonly/_index.md | 23 + .../get_issynchronized/_index.md | 23 + .../get_syncroot/_index.md | 23 + .../getenumerator/_index.md | 29 + .../annotationcollection/idx_get/_index.md | 45 + .../annotationcollection/remove/_index.md | 46 + .../annotationflags/_index.md | 38 + .../annotationflagsconverter/_index.md | 29 + .../annotationflagsconverter/toenum/_index.md | 24 + .../tostring/_index.md | 24 + .../toxfdfstring/_index.md | 24 + .../annotationselector/_index.md | 59 + .../annotationselector/_index.md | 56 + .../annotationselector/get_selected/_index.md | 24 + .../annotationselector/visit/_index.md | 960 +++++++ .../annotationstate/_index.md | 35 + .../annotationstateconverter/_index.md | 28 + .../annotationstateconverter/toenum/_index.md | 24 + .../tostring/_index.md | 24 + .../annotationstatemodel/_index.md | 30 + .../annotationstatemodelconverter/_index.md | 28 + .../toenum/_index.md | 24 + .../tostring/_index.md | 24 + .../annotationtype/_index.md | 60 + .../appearancedictionary/_index.md | 46 + .../appearancedictionary/add/_index.md | 83 + .../appearancedictionary/clear/_index.md | 23 + .../appearancedictionary/contains/_index.md | 45 + .../containskey/_index.md | 44 + .../appearancedictionary/copyto/_index.md | 91 + .../appearancedictionary/get_count/_index.md | 23 + .../get_isfixedsize/_index.md | 23 + .../get_isreadonly/_index.md | 23 + .../get_issynchronized/_index.md | 23 + .../appearancedictionary/get_keys/_index.md | 23 + .../get_syncroot/_index.md | 23 + .../appearancedictionary/get_values/_index.md | 24 + .../getenumerator/_index.md | 29 + .../appearancedictionary/idx_get/_index.md | 45 + .../appearancedictionary/idx_set/_index.md | 45 + .../appearancedictionary/remove/_index.md | 80 + .../trygetvalue/_index.md | 54 + .../bleedmarkannotation/_index.md | 95 + .../bleedmarkannotation/accept/_index.md | 42 + .../bleedmarkannotation/_index.md | 53 + .../get_annotationtype/_index.md | 24 + .../aspose.pdf.annotations/border/_index.md | 41 + .../border/border/_index.md | 41 + .../border/get_dash/_index.md | 24 + .../border/get_effect/_index.md | 28 + .../border/get_effectintensity/_index.md | 23 + .../border/get_hcornerradius/_index.md | 23 + .../border/get_style/_index.md | 28 + .../border/get_vcornerradius/_index.md | 23 + .../border/get_width/_index.md | 23 + .../border/set_dash/_index.md | 24 + .../border/set_effect/_index.md | 28 + .../border/set_effectintensity/_index.md | 23 + .../border/set_hcornerradius/_index.md | 23 + .../border/set_style/_index.md | 28 + .../border/set_vcornerradius/_index.md | 23 + .../border/set_width/_index.md | 23 + .../bordereffect/_index.md | 29 + .../bordereffectconverter/_index.md | 29 + .../bordereffectconverter/toenum/_index.md | 24 + .../bordereffectconverter/tostring/_index.md | 24 + .../toxfdfstring/_index.md | 24 + .../borderstyle/_index.md | 32 + .../borderstyleconverter/_index.md | 29 + .../borderstyleconverter/toenum/_index.md | 24 + .../borderstyleconverter/tostring/_index.md | 24 + .../toxfdfstring/_index.md | 24 + .../aspose.pdf.annotations/capstyle/_index.md | 29 + .../captionposition/_index.md | 29 + .../captionpositionconverter/_index.md | 28 + .../captionpositionconverter/toenum/_index.md | 24 + .../tostring/_index.md | 24 + .../caretannotation/_index.md | 114 + .../caretannotation/accept/_index.md | 41 + .../caretannotation/caretannotation/_index.md | 85 + .../get_annotationtype/_index.md | 24 + .../caretannotation/get_frame/_index.md | 24 + .../caretannotation/get_symbol/_index.md | 28 + .../caretannotation/set_frame/_index.md | 24 + .../caretannotation/set_symbol/_index.md | 28 + .../caretsymbol/_index.md | 29 + .../caretsymbolconverter/_index.md | 29 + .../caretsymbolconverter/toenum/_index.md | 24 + .../caretsymbolconverter/tostring/_index.md | 24 + .../toxfdfstring/_index.md | 24 + .../characteristics/_index.md | 32 + .../characteristics/get_background/_index.md | 23 + .../characteristics/get_border/_index.md | 23 + .../characteristics/get_rotate/_index.md | 24 + .../characteristics/set_background/_index.md | 23 + .../characteristics/set_border/_index.md | 23 + .../characteristics/set_rotate/_index.md | 24 + .../circleannotation/_index.md | 115 + .../circleannotation/accept/_index.md | 41 + .../circleannotation/_index.md | 85 + .../get_annotationtype/_index.md | 24 + .../colorbarannotation/_index.md | 91 + .../colorbarannotation/accept/_index.md | 41 + .../changeafterresize/_index.md | 42 + .../colorbarannotation/_index.md | 63 + .../get_annotationtype/_index.md | 24 + .../get_colorofcmyk/_index.md | 27 + .../set_colorofcmyk/_index.md | 27 + .../colorsofcmyk/_index.md | 31 + .../colorsofcmykconverter/_index.md | 28 + .../colorsofcmykconverter/toenum/_index.md | 24 + .../toxfdfstring/_index.md | 24 + .../commonfigureannotation/_index.md | 113 + .../commonfigureannotation/_index.md | 42 + .../get_frame/_index.md | 24 + .../get_interiorcolor/_index.md | 24 + .../set_frame/_index.md | 24 + .../set_interiorcolor/_index.md | 24 + .../cornerprintermarkannotation/_index.md | 90 + .../get_position/_index.md | 24 + .../set_position/_index.md | 24 + .../customexplicitdestination/_index.md | 33 + .../tostring/_index.md | 28 + .../cpp/aspose.pdf.annotations/dash/_index.md | 33 + .../dash/dash/_index.md | 80 + .../dash/get_off/_index.md | 23 + .../dash/get_on/_index.md | 23 + .../dash/get_pattern/_index.md | 23 + .../dash/set_off/_index.md | 23 + .../dash/set_on/_index.md | 23 + .../defaultappearance/_index.md | 39 + .../defaultappearance/_index.md | 124 + .../defaultappearance/get_font/_index.md | 24 + .../defaultappearance/get_fontname/_index.md | 23 + .../get_fontresourcename/_index.md | 23 + .../defaultappearance/get_fontsize/_index.md | 23 + .../defaultappearance/get_text/_index.md | 23 + .../defaultappearance/get_textcolor/_index.md | 23 + .../defaultappearance/set_fontname/_index.md | 23 + .../set_fontresourcename/_index.md | 23 + .../defaultappearance/set_fontsize/_index.md | 23 + .../defaultappearance/set_textcolor/_index.md | 23 + .../documentactioncollection/_index.md | 37 + .../documentactioncollection/_index.md | 42 + .../get_afterprinting/_index.md | 24 + .../get_aftersaving/_index.md | 24 + .../get_beforeclosing/_index.md | 24 + .../get_beforeprinting/_index.md | 24 + .../get_beforesaving/_index.md | 24 + .../set_afterprinting/_index.md | 24 + .../set_aftersaving/_index.md | 24 + .../set_beforeclosing/_index.md | 24 + .../set_beforeprinting/_index.md | 24 + .../set_beforesaving/_index.md | 24 + .../explicitdestination/_index.md | 33 + .../createdestination/_index.md | 191 ++ .../explicitdestination/get_page/_index.md | 24 + .../get_pagenumber/_index.md | 23 + .../explicitdestination/tostring/_index.md | 28 + .../explicitdestinationtype/_index.md | 35 + .../_index.md | 28 + .../toenum/_index.md | 24 + .../tostring/_index.md | 24 + .../fdfreader/_index.md | 27 + .../fdfreader/readannotations/_index.md | 51 + .../fileattachmentannotation/_index.md | 113 + .../fileattachmentannotation/accept/_index.md | 41 + .../fileattachmentannotation/_index.md | 62 + .../get_annotationtype/_index.md | 24 + .../get_file/_index.md | 24 + .../get_icon/_index.md | 24 + .../get_opacity/_index.md | 23 + .../set_file/_index.md | 24 + .../set_icon/_index.md | 24 + .../set_opacity/_index.md | 23 + .../aspose.pdf.annotations/fileicon/_index.md | 31 + .../fileiconconverter/_index.md | 28 + .../fileiconconverter/toenum/_index.md | 24 + .../fileiconconverter/tostring/_index.md | 24 + .../fitbexplicitdestination/_index.md | 36 + .../fitbexplicitdestination/_index.md | 118 + .../tostring/_index.md | 28 + .../fitbhexplicitdestination/_index.md | 37 + .../fitbhexplicitdestination/_index.md | 145 + .../get_top/_index.md | 23 + .../tostring/_index.md | 28 + .../fitbvexplicitdestination/_index.md | 37 + .../fitbvexplicitdestination/_index.md | 145 + .../get_left/_index.md | 23 + .../tostring/_index.md | 28 + .../fitexplicitdestination/_index.md | 36 + .../fitexplicitdestination/_index.md | 118 + .../fitexplicitdestination/tostring/_index.md | 28 + .../fithexplicitdestination/_index.md | 37 + .../fithexplicitdestination/_index.md | 145 + .../fithexplicitdestination/get_top/_index.md | 23 + .../tostring/_index.md | 28 + .../fitrexplicitdestination/_index.md | 40 + .../fitrexplicitdestination/_index.md | 226 ++ .../get_bottom/_index.md | 23 + .../get_left/_index.md | 23 + .../get_right/_index.md | 23 + .../fitrexplicitdestination/get_top/_index.md | 23 + .../tostring/_index.md | 28 + .../fitvexplicitdestination/_index.md | 37 + .../fitvexplicitdestination/_index.md | 145 + .../get_left/_index.md | 23 + .../tostring/_index.md | 28 + .../fixedprint/_index.md | 32 + .../get_horizontaltranslation/_index.md | 23 + .../fixedprint/get_matrix/_index.md | 24 + .../get_verticaltranslation/_index.md | 23 + .../set_horizontaltranslation/_index.md | 23 + .../fixedprint/set_matrix/_index.md | 24 + .../set_verticaltranslation/_index.md | 23 + .../freetextannotation/_index.md | 131 + .../freetextannotation/accept/_index.md | 41 + .../freetextannotation/_index.md | 104 + .../get_annotationtype/_index.md | 24 + .../freetextannotation/get_callout/_index.md | 24 + .../get_defaultappearance/_index.md | 23 + .../get_defaultappearanceobject/_index.md | 24 + .../get_defaultstyle/_index.md | 23 + .../get_endingstyle/_index.md | 24 + .../freetextannotation/get_intent/_index.md | 24 + .../get_justification/_index.md | 24 + .../freetextannotation/get_rotate/_index.md | 24 + .../get_startingstyle/_index.md | 24 + .../get_textrectangle/_index.md | 24 + .../get_textstyle/_index.md | 24 + .../freetextannotation/set_callout/_index.md | 24 + .../set_defaultappearance/_index.md | 23 + .../set_defaultstyle/_index.md | 23 + .../set_endingstyle/_index.md | 24 + .../freetextannotation/set_intent/_index.md | 24 + .../set_justification/_index.md | 24 + .../freetextannotation/set_rotate/_index.md | 24 + .../set_startingstyle/_index.md | 24 + .../set_textrectangle/_index.md | 24 + .../set_textstyle/_index.md | 24 + .../freetextintent/_index.md | 30 + .../freetextintentconverter/_index.md | 29 + .../freetextintentconverter/toenum/_index.md | 24 + .../tostring/_index.md | 24 + .../toxfdfstring/_index.md | 24 + .../genericannotation/_index.md | 87 + .../genericannotation/accept/_index.md | 42 + .../genericannotation/_index.md | 24 + .../get_annotationtype/_index.md | 24 + .../gotoaction/_index.md | 38 + .../gotoaction/get_destination/_index.md | 24 + .../gotoaction/gotoaction/_index.md | 226 ++ .../gotoaction/set_destination/_index.md | 24 + .../gotoremoteaction/_index.md | 44 + .../get_destination/_index.md | 24 + .../gotoremoteaction/get_file/_index.md | 24 + .../gotoremoteaction/get_newwindow/_index.md | 24 + .../gotoremoteaction/_index.md | 90 + .../set_destination/_index.md | 24 + .../gotoremoteaction/set_file/_index.md | 24 + .../gotoremoteaction/set_newwindow/_index.md | 24 + .../gotouriaction/_index.md | 33 + .../gotouriaction/get_uri/_index.md | 23 + .../gotouriaction/gotouriaction/_index.md | 40 + .../gotouriaction/set_uri/_index.md | 23 + .../hideaction/_index.md | 40 + .../hideaction/get_ishidden/_index.md | 23 + .../hideaction/hideaction/_index.md | 297 ++ .../hideaction/set_ishidden/_index.md | 23 + .../highlightannotation/_index.md | 113 + .../highlightannotation/accept/_index.md | 41 + .../get_annotationtype/_index.md | 24 + .../highlightannotation/_index.md | 51 + .../highlightingmode/_index.md | 32 + .../highlightingmodeconverter/_index.md | 28 + .../toenum/_index.md | 24 + .../tostring/_index.md | 24 + .../iannotationvisitor/_index.md | 50 + .../iannotationvisitor/visit/_index.md | 797 ++++++ .../iappointment/_index.md | 22 + .../importdataaction/_index.md | 32 + .../importdataaction/get_data/_index.md | 24 + .../importdataaction/set_data/_index.md | 24 + .../inkannotation/_index.md | 114 + .../inkannotation/accept/_index.md | 41 + .../inkannotation/changeafterresize/_index.md | 42 + .../get_annotationtype/_index.md | 24 + .../inkannotation/get_capstyle/_index.md | 24 + .../inkannotation/get_inklist/_index.md | 24 + .../inkannotation/inkannotation/_index.md | 104 + .../inkannotation/set_capstyle/_index.md | 24 + .../inkannotation/set_inklist/_index.md | 24 + .../javascriptaction/_index.md | 33 + .../javascriptaction/get_script/_index.md | 23 + .../javascriptaction/_index.md | 40 + .../javascriptaction/set_script/_index.md | 23 + .../justification/_index.md | 30 + .../justificationconverter/_index.md | 28 + .../justificationconverter/toenum/_index.md | 24 + .../toxfdfstring/_index.md | 24 + .../launchaction/_index.md | 36 + .../launchaction/get_file/_index.md | 23 + .../launchaction/get_newwindow/_index.md | 24 + .../launchaction/launchaction/_index.md | 82 + .../launchaction/set_file/_index.md | 23 + .../launchaction/set_newwindow/_index.md | 24 + .../launchactionoperation/_index.md | 30 + .../launchactionoperationconverter/_index.md | 34 + .../stropen/_index.md | 23 + .../strprint/_index.md | 23 + .../toenum/_index.md | 24 + .../tostring/_index.md | 24 + .../lightingschemetype/_index.md | 39 + .../lineannotation/_index.md | 136 + .../lineannotation/accept/_index.md | 41 + .../changeafterresize/_index.md | 42 + .../get_annotationtype/_index.md | 24 + .../get_captionoffset/_index.md | 24 + .../get_captionposition/_index.md | 24 + .../lineannotation/get_ending/_index.md | 24 + .../lineannotation/get_endingstyle/_index.md | 24 + .../lineannotation/get_intent/_index.md | 24 + .../get_interiorcolor/_index.md | 24 + .../lineannotation/get_leaderline/_index.md | 23 + .../get_leaderlineextension/_index.md | 23 + .../get_leaderlineoffset/_index.md | 23 + .../lineannotation/get_measure/_index.md | 24 + .../lineannotation/get_showcaption/_index.md | 23 + .../lineannotation/get_starting/_index.md | 24 + .../get_startingstyle/_index.md | 24 + .../lineannotation/lineannotation/_index.md | 122 + .../set_captionoffset/_index.md | 24 + .../set_captionposition/_index.md | 24 + .../lineannotation/set_ending/_index.md | 24 + .../lineannotation/set_endingstyle/_index.md | 24 + .../lineannotation/set_intent/_index.md | 24 + .../set_interiorcolor/_index.md | 24 + .../lineannotation/set_leaderline/_index.md | 23 + .../set_leaderlineextension/_index.md | 23 + .../set_leaderlineoffset/_index.md | 23 + .../lineannotation/set_measure/_index.md | 24 + .../lineannotation/set_showcaption/_index.md | 23 + .../lineannotation/set_starting/_index.md | 24 + .../set_startingstyle/_index.md | 24 + .../lineending/_index.md | 37 + .../lineendingconverter/_index.md | 28 + .../lineendingconverter/toenum/_index.md | 24 + .../lineendingconverter/tostring/_index.md | 24 + .../lineintent/_index.md | 30 + .../lineintentconverter/_index.md | 29 + .../lineintentconverter/toenum/_index.md | 24 + .../lineintentconverter/tostring/_index.md | 24 + .../toxfdfstring/_index.md | 24 + .../linkannotation/_index.md | 93 + .../linkannotation/accept/_index.md | 41 + .../linkannotation/get_action/_index.md | 24 + .../get_annotationtype/_index.md | 24 + .../linkannotation/get_destination/_index.md | 24 + .../linkannotation/get_highlighting/_index.md | 24 + .../linkannotation/linkannotation/_index.md | 51 + .../linkannotation/set_action/_index.md | 24 + .../linkannotation/set_destination/_index.md | 24 + .../linkannotation/set_highlighting/_index.md | 24 + .../markupannotation/_index.md | 109 + .../markupannotation/clearstate/_index.md | 23 + .../get_creationdate/_index.md | 23 + .../markupannotation/get_inreplyto/_index.md | 24 + .../markupannotation/get_opacity/_index.md | 23 + .../markupannotation/get_popup/_index.md | 24 + .../markupannotation/get_replytype/_index.md | 24 + .../markupannotation/get_richtext/_index.md | 23 + .../markupannotation/get_subject/_index.md | 23 + .../markupannotation/get_title/_index.md | 23 + .../markupannotation/getstate/_index.md | 29 + .../markupannotation/getstatemodel/_index.md | 29 + .../markupannotation/_index.md | 42 + .../markupannotation/set_inreplyto/_index.md | 24 + .../markupannotation/set_opacity/_index.md | 23 + .../markupannotation/set_popup/_index.md | 24 + .../markupannotation/set_replytype/_index.md | 24 + .../markupannotation/set_richtext/_index.md | 23 + .../markupannotation/set_subject/_index.md | 23 + .../markupannotation/set_title/_index.md | 23 + .../markupannotation/setmarkedstate/_index.md | 40 + .../markupannotation/setreviewstate/_index.md | 82 + .../aspose.pdf.annotations/measure/_index.md | 45 + .../measure/get_angleformat/_index.md | 23 + .../measure/get_areaformat/_index.md | 23 + .../measure/get_distanceformat/_index.md | 23 + .../measure/get_origin/_index.md | 24 + .../measure/get_scaleratio/_index.md | 23 + .../measure/get_slopeformat/_index.md | 23 + .../measure/get_xformat/_index.md | 23 + .../measure/get_xyfactor/_index.md | 23 + .../measure/get_yformat/_index.md | 23 + .../measure/measure/_index.md | 42 + .../measure/set_angleformat/_index.md | 23 + .../measure/set_areaformat/_index.md | 23 + .../measure/set_distanceformat/_index.md | 23 + .../measure/set_origin/_index.md | 24 + .../measure/set_scaleratio/_index.md | 23 + .../measure/set_slopeformat/_index.md | 23 + .../measure/set_xformat/_index.md | 23 + .../measure/set_xyfactor/_index.md | 23 + .../measure/set_yformat/_index.md | 23 + .../mediaclip/_index.md | 22 + .../mediaclipdata/_index.md | 28 + .../mediaclipdata/get_data/_index.md | 24 + .../mediaclipsection/_index.md | 23 + .../mediarendition/_index.md | 31 + .../mediarendition/get_mediaclip/_index.md | 24 + .../movieannotation/_index.md | 99 + .../movieannotation/accept/_index.md | 41 + .../get_annotationtype/_index.md | 24 + .../movieannotation/get_aspect/_index.md | 24 + .../movieannotation/get_file/_index.md | 24 + .../movieannotation/get_poster/_index.md | 23 + .../movieannotation/get_rotate/_index.md | 23 + .../movieannotation/get_title/_index.md | 23 + .../movieannotation/movieannotation/_index.md | 102 + .../movieannotation/set_aspect/_index.md | 24 + .../movieannotation/set_file/_index.md | 24 + .../movieannotation/set_poster/_index.md | 23 + .../movieannotation/set_rotate/_index.md | 23 + .../movieannotation/set_title/_index.md | 23 + .../namedaction/_index.md | 33 + .../namedaction/get_name/_index.md | 23 + .../namedaction/namedaction/_index.md | 41 + .../namedaction/set_name/_index.md | 23 + .../nameddestination/_index.md | 30 + .../nameddestination/get_name/_index.md | 23 + .../nameddestination/_index.md | 51 + .../nameddestination/tostring/_index.md | 28 + .../pageinformationannotation/_index.md | 93 + .../accept/_index.md | 42 + .../get_annotationtype/_index.md | 24 + .../pageinformationannotation/_index.md | 51 + .../pdf3dactivation/_index.md | 30 + .../pdf3dannotation/_index.md | 100 + .../pdf3dannotation/accept/_index.md | 42 + .../clearimagepreview/_index.md | 23 + .../get_annotationtype/_index.md | 28 + .../pdf3dannotation/get_content/_index.md | 28 + .../get_lightingscheme/_index.md | 28 + .../get_pdf3dartwork/_index.md | 28 + .../pdf3dannotation/get_rendermode/_index.md | 28 + .../pdf3dannotation/get_viewarray/_index.md | 28 + .../pdf3dannotation/getimagepreview/_index.md | 28 + .../pdf3dannotation/pdf3dannotation/_index.md | 132 + .../pdf3dannotation/set_content/_index.md | 28 + .../setdefaultviewindex/_index.md | 40 + .../pdf3dannotation/setimagepreview/_index.md | 71 + .../pdf3dartwork/_index.md | 35 + .../pdf3dartwork/get_lightingscheme/_index.md | 28 + .../pdf3dartwork/get_rendermode/_index.md | 28 + .../pdf3dartwork/get_viewarray/_index.md | 28 + .../pdf3dartwork/getviewsarray/_index.md | 29 + .../pdf3dartwork/getviewslist/_index.md | 29 + .../pdf3dartwork/pdf3dartwork/_index.md | 113 + .../pdf3dartwork/set_lightingscheme/_index.md | 28 + .../pdf3dartwork/set_rendermode/_index.md | 28 + .../pdf3dcontent/_index.md | 39 + .../pdf3dcontent/get_extension/_index.md | 27 + .../pdf3dcontent/getasbytearray/_index.md | 28 + .../pdf3dcontent/getasstream/_index.md | 28 + .../pdf3dcontent/load/_index.md | 49 + .../pdf3dcontent/loadasprc/_index.md | 102 + .../pdf3dcontent/loadasu3d/_index.md | 102 + .../pdf3dcontent/pdf3dcontent/_index.md | 63 + .../pdf3dcontent/savetofile/_index.md | 49 + .../pdf3dcrosssection/_index.md | 39 + .../pdf3dcrosssection/get_center/_index.md | 28 + .../get_cuttingplanecolor/_index.md | 28 + .../get_cuttingplaneopacity/_index.md | 38 + .../get_cuttingplaneorientation/_index.md | 39 + .../_index.md | 28 + .../get_visibility/_index.md | 27 + .../pdf3dcrosssection/_index.md | 41 + .../pdf3dcrosssection/set_center/_index.md | 28 + .../set_cuttingplanecolor/_index.md | 28 + .../set_cuttingplaneopacity/_index.md | 38 + .../set_cuttingplaneorientation/_index.md | 39 + .../_index.md | 28 + .../set_visibility/_index.md | 27 + .../pdf3dcrosssectionarray/_index.md | 33 + .../pdf3dcrosssectionarray/add/_index.md | 41 + .../get_count/_index.md | 27 + .../pdf3dcrosssectionarray/idx_get/_index.md | 54 + .../pdf3dcrosssectionarray/idx_set/_index.md | 59 + .../pdf3dcrosssectionarray/_index.md | 41 + .../removeall/_index.md | 23 + .../pdf3dcrosssectionarray/removeat/_index.md | 49 + .../pdf3dcuttingplaneorientation/_index.md | 35 + .../get_anglex/_index.md | 27 + .../get_angley/_index.md | 27 + .../get_anglez/_index.md | 27 + .../pdf3dcuttingplaneorientation/_index.md | 72 + .../set_anglex/_index.md | 27 + .../set_angley/_index.md | 27 + .../set_anglez/_index.md | 27 + .../tostring/_index.md | 28 + .../pdf3dlightingscheme/_index.md | 45 + .../pdf3dlightingscheme/artwork/_index.md | 23 + .../pdf3dlightingscheme/blue/_index.md | 23 + .../pdf3dlightingscheme/cad/_index.md | 23 + .../pdf3dlightingscheme/cube/_index.md | 23 + .../pdf3dlightingscheme/day/_index.md | 23 + .../pdf3dlightingscheme/get_type/_index.md | 28 + .../pdf3dlightingscheme/hard/_index.md | 23 + .../pdf3dlightingscheme/headlamp/_index.md | 23 + .../pdf3dlightingscheme/night/_index.md | 23 + .../pdf3dlightingscheme/none/_index.md | 23 + .../pdf3dlightingscheme/_index.md | 81 + .../pdf3dlightingscheme/primary/_index.md | 23 + .../pdf3dlightingscheme/red/_index.md | 23 + .../pdf3dlightingscheme/white/_index.md | 23 + .../pdf3drendermode/_index.md | 55 + .../pdf3drendermode/boundingbox/_index.md | 23 + .../pdf3drendermode/get_type/_index.md | 28 + .../getauxiliarycolour/_index.md | 29 + .../pdf3drendermode/getcreasevalue/_index.md | 28 + .../pdf3drendermode/getfacecolor/_index.md | 28 + .../pdf3drendermode/getopacity/_index.md | 28 + .../pdf3drendermode/illustration/_index.md | 23 + .../pdf3drendermode/pdf3drendermode/_index.md | 81 + .../setauxiliarycolour/_index.md | 46 + .../pdf3drendermode/setcreasevalue/_index.md | 45 + .../pdf3drendermode/setfacecolor/_index.md | 46 + .../pdf3drendermode/setopacity/_index.md | 45 + .../shadedillustration/_index.md | 23 + .../pdf3drendermode/shadedvertices/_index.md | 23 + .../pdf3drendermode/shadedwireframe/_index.md | 23 + .../pdf3drendermode/solid/_index.md | 23 + .../pdf3drendermode/solidoutline/_index.md | 23 + .../pdf3drendermode/solidwireframe/_index.md | 23 + .../pdf3drendermode/transparent/_index.md | 23 + .../transparentboundingbox/_index.md | 23 + .../transparentboundingboxoutline/_index.md | 23 + .../transparentwareframe/_index.md | 23 + .../pdf3drendermode/vertices/_index.md | 23 + .../pdf3drendermode/wireframe/_index.md | 23 + .../pdf3dstream/_index.md | 29 + .../pdf3dstream/get_content/_index.md | 28 + .../pdf3dstream/pdf3dstream/_index.md | 51 + .../pdf3dstream/set_content/_index.md | 28 + .../pdf3dview/_index.md | 41 + .../pdf3dview/get_backgroundcolor/_index.md | 28 + .../pdf3dview/get_cameraorbit/_index.md | 27 + .../pdf3dview/get_cameraposition/_index.md | 28 + .../get_crosssectionsarray/_index.md | 28 + .../pdf3dview/get_lightingscheme/_index.md | 28 + .../pdf3dview/get_rendermode/_index.md | 28 + .../pdf3dview/get_viewname/_index.md | 27 + .../pdf3dview/pdf3dview/_index.md | 120 + .../pdf3dview/set_backgroundcolor/_index.md | 28 + .../pdf3dview/set_cameraorbit/_index.md | 27 + .../pdf3dview/set_cameraposition/_index.md | 28 + .../pdf3dview/set_lightingscheme/_index.md | 28 + .../pdf3dview/set_rendermode/_index.md | 28 + .../pdf3dview/set_viewname/_index.md | 27 + .../pdf3dviewarray/_index.md | 32 + .../pdf3dviewarray/add/_index.md | 50 + .../pdf3dviewarray/get_count/_index.md | 27 + .../pdf3dviewarray/idx_get/_index.md | 54 + .../pdf3dviewarray/idx_set/_index.md | 60 + .../pdf3dviewarray/removeall/_index.md | 23 + .../pdf3dviewarray/removeat/_index.md | 49 + .../pdfaction/_index.md | 30 + .../pdfaction/get_next/_index.md | 24 + .../pdfaction/getecmascriptstring/_index.md | 28 + .../pdfaction/tostring/_index.md | 28 + .../pdfactioncollection/_index.md | 31 + .../pdfactioncollection/add/_index.md | 41 + .../pdfactioncollection/delete/_index.md | 40 + .../pdfactioncollection/get_count/_index.md | 23 + .../getenumerator/_index.md | 29 + .../pdfactioncollection/idx_get/_index.md | 45 + .../polyannotation/_index.md | 120 + .../changeafterresize/_index.md | 42 + .../polyannotation/get_endingstyle/_index.md | 24 + .../polyannotation/get_intent/_index.md | 24 + .../get_interiorcolor/_index.md | 24 + .../polyannotation/get_measure/_index.md | 24 + .../get_startingstyle/_index.md | 24 + .../polyannotation/get_vertices/_index.md | 24 + .../polyannotation/set_endingstyle/_index.md | 24 + .../polyannotation/set_intent/_index.md | 24 + .../set_interiorcolor/_index.md | 24 + .../polyannotation/set_measure/_index.md | 24 + .../set_startingstyle/_index.md | 24 + .../polyannotation/set_vertices/_index.md | 24 + .../polygonannotation/_index.md | 122 + .../polygonannotation/accept/_index.md | 41 + .../get_annotationtype/_index.md | 24 + .../polygonannotation/_index.md | 104 + .../polyintent/_index.md | 31 + .../polyintentconverter/_index.md | 29 + .../polyintentconverter/toenum/_index.md | 24 + .../polyintentconverter/tostring/_index.md | 24 + .../toxfdfstring/_index.md | 24 + .../polylineannotation/_index.md | 121 + .../polylineannotation/accept/_index.md | 41 + .../get_annotationtype/_index.md | 24 + .../polylineannotation/_index.md | 61 + .../popupannotation/_index.md | 92 + .../popupannotation/accept/_index.md | 41 + .../get_annotationtype/_index.md | 24 + .../popupannotation/get_open/_index.md | 23 + .../popupannotation/get_parent/_index.md | 24 + .../popupannotation/popupannotation/_index.md | 84 + .../popupannotation/set_open/_index.md | 23 + .../popupannotation/set_parent/_index.md | 24 + .../predefinedaction/_index.md | 98 + .../predefinedactionconverter/_index.md | 27 + .../tostring/_index.md | 24 + .../printermarkannotation/_index.md | 88 + .../addprintermarks/_index.md | 115 + .../printermarkcornerposition/_index.md | 31 + .../printermarksideposition/_index.md | 31 + .../printermarkskind/_index.md | 38 + .../printermarkskindextensions/_index.md | 28 + .../hasflagfast/_index.md | 57 + .../printermarkskindextensions/_index.md | 23 + .../redactionannotation/_index.md | 127 + .../redactionannotation/accept/_index.md | 41 + .../get_annotationtype/_index.md | 24 + .../get_bordercolor/_index.md | 24 + .../get_defaultappearance/_index.md | 23 + .../get_fillcolor/_index.md | 24 + .../get_fontsize/_index.md | 23 + .../get_overlaytext/_index.md | 23 + .../get_quadpoint/_index.md | 24 + .../redactionannotation/get_repeat/_index.md | 23 + .../get_textalignment/_index.md | 24 + .../redactionannotation/redact/_index.md | 23 + .../redactionannotation/_index.md | 86 + .../set_bordercolor/_index.md | 24 + .../set_defaultappearance/_index.md | 23 + .../set_fillcolor/_index.md | 24 + .../set_fontsize/_index.md | 23 + .../set_overlaytext/_index.md | 23 + .../set_quadpoint/_index.md | 24 + .../redactionannotation/set_repeat/_index.md | 23 + .../set_textalignment/_index.md | 24 + .../registrationmarkannotation/_index.md | 95 + .../accept/_index.md | 42 + .../get_annotationtype/_index.md | 24 + .../get_position/_index.md | 24 + .../registrationmarkannotation/_index.md | 51 + .../set_position/_index.md | 24 + .../rendermodetype/_index.md | 41 + .../rendition/_index.md | 29 + .../rendition/get_name/_index.md | 23 + .../rendition/get_renditiontype/_index.md | 24 + .../rendition/set_name/_index.md | 23 + .../renditionaction/_index.md | 35 + .../renditionaction/get_javascript/_index.md | 23 + .../renditionaction/get_rendition/_index.md | 24 + .../get_renditionoperation/_index.md | 24 + .../renditionaction/set_javascript/_index.md | 23 + .../set_renditionoperation/_index.md | 24 + .../renditionoperation/_index.md | 33 + .../renditiontype/_index.md | 30 + .../replytype/_index.md | 30 + .../replytypeconverter/_index.md | 29 + .../replytypeconverter/toenum/_index.md | 24 + .../replytypeconverter/tostring/_index.md | 24 + .../replytypeconverter/toxfdfstring/_index.md | 24 + .../richmediaannotation/_index.md | 100 + .../richmediaannotation/accept/_index.md | 41 + .../addcustomdata/_index.md | 49 + .../get_activateon/_index.md | 23 + .../get_annotationtype/_index.md | 24 + .../richmediaannotation/get_content/_index.md | 23 + .../get_customflashvariables/_index.md | 23 + .../get_customplayer/_index.md | 23 + .../richmediaannotation/get_type/_index.md | 23 + .../richmediaannotation/_index.md | 53 + .../set_activateon/_index.md | 23 + .../set_customflashvariables/_index.md | 23 + .../set_customplayer/_index.md | 23 + .../richmediaannotation/set_type/_index.md | 23 + .../richmediaannotation/setcontent/_index.md | 49 + .../richmediaannotation/setposter/_index.md | 40 + .../richmediaannotation/update/_index.md | 23 + .../screenannotation/_index.md | 91 + .../screenannotation/accept/_index.md | 41 + .../screenannotation/get_action/_index.md | 24 + .../get_annotationtype/_index.md | 24 + .../screenannotation/get_title/_index.md | 23 + .../screenannotation/_index.md | 60 + .../screenannotation/set_title/_index.md | 23 + .../selectorrendition/_index.md | 31 + .../get_renditions/_index.md | 24 + .../soundannotation/_index.md | 113 + .../soundannotation/accept/_index.md | 41 + .../get_annotationtype/_index.md | 24 + .../soundannotation/get_icon/_index.md | 24 + .../soundannotation/get_sounddata/_index.md | 24 + .../soundannotation/set_icon/_index.md | 24 + .../soundannotation/soundannotation/_index.md | 121 + .../sounddata/_index.md | 35 + .../sounddata/get_bits/_index.md | 23 + .../sounddata/get_channels/_index.md | 23 + .../sounddata/get_contents/_index.md | 23 + .../sounddata/get_encoding/_index.md | 24 + .../sounddata/get_rate/_index.md | 23 + .../sounddata/set_bits/_index.md | 23 + .../sounddata/set_channels/_index.md | 23 + .../sounddata/set_encoding/_index.md | 24 + .../sounddata/set_rate/_index.md | 23 + .../soundencoding/_index.md | 31 + .../soundencodingconverter/_index.md | 29 + .../soundencodingconverter/toenum/_index.md | 24 + .../soundencodingconverter/tostring/_index.md | 24 + .../toxfdfstring/_index.md | 24 + .../soundicon/_index.md | 29 + .../soundiconconverter/_index.md | 28 + .../soundiconconverter/toenum/_index.md | 24 + .../soundiconconverter/tostring/_index.md | 24 + .../soundsampledata/_index.md | 46 + .../defaultencodingformat/_index.md | 23 + .../defaultofbitsperchannel/_index.md | 23 + .../defaultofsoundchannels/_index.md | 23 + .../defaultsamplingrate/_index.md | 23 + .../get_bitsperchannel/_index.md | 23 + .../get_encodingformat/_index.md | 24 + .../get_numberofsoundchannels/_index.md | 23 + .../get_samplingrate/_index.md | 23 + .../set_bitsperchannel/_index.md | 23 + .../set_encodingformat/_index.md | 24 + .../set_numberofsoundchannels/_index.md | 23 + .../set_samplingrate/_index.md | 23 + .../soundsampledata/soundsampledata/_index.md | 189 ++ .../soundsampledataencodingformat/_index.md | 31 + .../squareannotation/_index.md | 115 + .../squareannotation/accept/_index.md | 41 + .../get_annotationtype/_index.md | 24 + .../squareannotation/_index.md | 83 + .../squigglyannotation/_index.md | 113 + .../squigglyannotation/accept/_index.md | 41 + .../get_annotationtype/_index.md | 24 + .../squigglyannotation/_index.md | 51 + .../stampannotation/_index.md | 114 + .../stampannotation/accept/_index.md | 41 + .../get_annotationtype/_index.md | 24 + .../stampannotation/get_icon/_index.md | 24 + .../stampannotation/get_image/_index.md | 23 + .../stampannotation/set_icon/_index.md | 24 + .../stampannotation/set_image/_index.md | 23 + .../stampannotation/stampannotation/_index.md | 84 + .../stampicon/_index.md | 41 + .../stampiconconverter/_index.md | 28 + .../stampiconconverter/toenum/_index.md | 24 + .../stampiconconverter/tostring/_index.md | 24 + .../strikeoutannotation/_index.md | 113 + .../strikeoutannotation/accept/_index.md | 41 + .../get_annotationtype/_index.md | 24 + .../strikeoutannotation/_index.md | 51 + .../submitformaction/_index.md | 52 + .../canonicalformat/_index.md | 23 + .../submitformaction/embedform/_index.md | 23 + .../submitformaction/exclfkey/_index.md | 23 + .../exclnonuserannots/_index.md | 23 + .../submitformaction/exclude/_index.md | 23 + .../submitformaction/exportformat/_index.md | 23 + .../submitformaction/get_flags/_index.md | 23 + .../submitformaction/get_url/_index.md | 24 + .../submitformaction/getmethod/_index.md | 23 + .../includeannotations/_index.md | 23 + .../includeappendsaves/_index.md | 23 + .../includenovaluefields/_index.md | 23 + .../submitformaction/set_flags/_index.md | 23 + .../submitformaction/set_url/_index.md | 24 + .../submitcoordinates/_index.md | 23 + .../submitformaction/_index.md | 23 + .../submitformaction/submitpdf/_index.md | 23 + .../submitformaction/xfdf/_index.md | 23 + .../textalignment/_index.md | 39 + .../textannotation/_index.md | 114 + .../textannotation/accept/_index.md | 41 + .../changeafterresize/_index.md | 42 + .../get_annotationtype/_index.md | 24 + .../textannotation/get_icon/_index.md | 24 + .../textannotation/get_open/_index.md | 23 + .../textannotation/set_icon/_index.md | 24 + .../textannotation/set_open/_index.md | 23 + .../textannotation/textannotation/_index.md | 84 + .../aspose.pdf.annotations/texticon/_index.md | 38 + .../texticonconverter/_index.md | 28 + .../texticonconverter/toenum/_index.md | 24 + .../texticonconverter/tostring/_index.md | 24 + .../textmarkupannotation/_index.md | 112 + .../changeafterresize/_index.md | 42 + .../get_quadpoints/_index.md | 24 + .../getmarkedtext/_index.md | 28 + .../getmarkedtextfragments/_index.md | 29 + .../set_quadpoints/_index.md | 24 + .../textstyle/_index.md | 37 + .../textstyle/get_alignment/_index.md | 33 + .../textstyle/get_color/_index.md | 23 + .../textstyle/get_fontname/_index.md | 23 + .../textstyle/get_fontsize/_index.md | 23 + .../get_horizontalalignment/_index.md | 24 + .../textstyle/set_alignment/_index.md | 33 + .../textstyle/set_color/_index.md | 23 + .../textstyle/set_fontname/_index.md | 23 + .../textstyle/set_fontsize/_index.md | 23 + .../set_horizontalalignment/_index.md | 24 + .../textstyle/tostring/_index.md | 28 + .../trimmarkannotation/_index.md | 95 + .../trimmarkannotation/accept/_index.md | 42 + .../get_annotationtype/_index.md | 24 + .../trimmarkannotation/_index.md | 53 + .../underlineannotation/_index.md | 113 + .../underlineannotation/accept/_index.md | 41 + .../get_annotationtype/_index.md | 24 + .../underlineannotation/_index.md | 51 + .../watermarkannotation/_index.md | 92 + .../watermarkannotation/accept/_index.md | 41 + .../changeafterresize/_index.md | 42 + .../get_annotationtype/_index.md | 24 + .../get_fixedprint/_index.md | 24 + .../watermarkannotation/get_opacity/_index.md | 23 + .../watermarkannotation/set_opacity/_index.md | 23 + .../watermarkannotation/settext/_index.md | 42 + .../settextandstate/_index.md | 52 + .../watermarkannotation/_index.md | 52 + .../widgetannotation/_index.md | 102 + .../widgetannotation/accept/_index.md | 41 + .../widgetannotation/get_actions/_index.md | 24 + .../get_annotationtype/_index.md | 24 + .../get_defaultappearance/_index.md | 24 + .../widgetannotation/get_exportable/_index.md | 23 + .../get_highlighting/_index.md | 24 + .../get_onactivated/_index.md | 24 + .../widgetannotation/get_parent/_index.md | 24 + .../widgetannotation/get_readonly/_index.md | 23 + .../widgetannotation/get_required/_index.md | 23 + .../getcheckedstatename/_index.md | 28 + .../set_defaultappearance/_index.md | 24 + .../widgetannotation/set_exportable/_index.md | 23 + .../set_highlighting/_index.md | 24 + .../set_onactivated/_index.md | 24 + .../widgetannotation/set_readonly/_index.md | 23 + .../widgetannotation/set_required/_index.md | 23 + .../widgetannotation/_index.md | 42 + .../xfdfreader/_index.md | 29 + .../xfdfreader/getelements/_index.md | 44 + .../xfdfreader/readannotations/_index.md | 51 + .../xfdfreader/readfields/_index.md | 51 + .../xyzexplicitdestination/_index.md | 42 + .../createdestination/_index.md | 82 + .../_index.md | 92 + .../xyzexplicitdestination/get_left/_index.md | 23 + .../xyzexplicitdestination/get_top/_index.md | 23 + .../xyzexplicitdestination/get_zoom/_index.md | 23 + .../xyzexplicitdestination/tostring/_index.md | 28 + .../xyzexplicitdestination/_index.md | 199 ++ english/cpp/aspose.pdf.collections/_index.md | 17 + .../asposehashdictionary/_index.md | 22 + .../cpp/aspose.pdf.comparison.diff/_index.md | 22 + .../diffoperation/_index.md | 32 + .../diffoperation/equals/_index.md | 38 + .../diffoperation/get_operation/_index.md | 24 + .../diffoperation/get_text/_index.md | 23 + .../diffoperation/gethashcode/_index.md | 28 + .../diffoperation/tostring/_index.md | 28 + .../operation/_index.md | 30 + .../_index.md | 18 + .../graphicalpdfcomparer/_index.md | 39 + .../comparedocumentstoimages/_index.md | 86 + .../comparedocumentstopdf/_index.md | 68 + .../comparepagestoimage/_index.md | 68 + .../comparepagestopdf/_index.md | 128 + .../graphicalpdfcomparer/get_color/_index.md | 24 + .../get_resolution/_index.md | 24 + .../get_threshold/_index.md | 23 + .../getdifference/_index.md | 64 + .../graphicalpdfcomparer/_index.md | 23 + .../graphicalpdfcomparer/set_color/_index.md | 24 + .../set_resolution/_index.md | 24 + .../set_threshold/_index.md | 23 + .../imagesdifference/_index.md | 33 + .../differencetoimage/_index.md | 54 + .../imagesdifference/dispose/_index.md | 23 + .../imagesdifference/get_difference/_index.md | 23 + .../imagesdifference/get_height/_index.md | 23 + .../get_sourceimage/_index.md | 23 + .../imagesdifference/get_stride/_index.md | 23 + .../getdestinationimage/_index.md | 28 + .../_index.md | 23 + .../htmldiffoutputgenerator/_index.md | 43 + .../generateoutput/_index.md | 155 ++ .../get_deletestyle/_index.md | 23 + .../get_equalstyle/_index.md | 23 + .../get_insertstyle/_index.md | 23 + .../get_strikethroughdeleted/_index.md | 23 + .../htmldiffoutputgenerator/_index.md | 55 + .../set_deletestyle/_index.md | 23 + .../set_equalstyle/_index.md | 23 + .../set_insertstyle/_index.md | 23 + .../set_strikethroughdeleted/_index.md | 23 + .../ifileoutputgenerator/_index.md | 28 + .../generateoutput/_index.md | 91 + .../istringoutputgenerator/_index.md | 28 + .../generateoutput/_index.md | 81 + .../markdowndiffoutputgenerator/_index.md | 34 + .../generateoutput/_index.md | 163 ++ .../markdowndiffoutputgenerator/_index.md | 23 + .../outputtextstyle/_index.md | 35 + .../get_deletedstyle/_index.md | 24 + .../outputtextstyle/get_equalstyle/_index.md | 24 + .../get_insertedstyle/_index.md | 24 + .../get_strikethroughdeleted/_index.md | 23 + .../outputtextstyle/outputtextstyle/_index.md | 23 + .../set_deletedstyle/_index.md | 24 + .../outputtextstyle/set_equalstyle/_index.md | 24 + .../set_insertedstyle/_index.md | 24 + .../set_strikethroughdeleted/_index.md | 23 + .../pdfoutputgenerator/_index.md | 33 + .../generateoutput/_index.md | 91 + .../pdfoutputgenerator/_index.md | 129 + .../textstyle/_index.md | 30 + .../textstyle/get_backgroundcolor/_index.md | 24 + .../textstyle/get_color/_index.md | 24 + .../textstyle/set_backgroundcolor/_index.md | 24 + .../textstyle/set_color/_index.md | 24 + .../_index.md | 23 + .../comparisonmode/_index.md | 30 + .../sidebysidecomparisonoptions/_index.md | 41 + .../get_additionalchangemarks/_index.md | 23 + .../get_comparisonarea1/_index.md | 24 + .../get_comparisonarea2/_index.md | 24 + .../get_comparisonmode/_index.md | 24 + .../get_excludeareas1/_index.md | 24 + .../get_excludeareas2/_index.md | 24 + .../get_excludetables/_index.md | 23 + .../set_additionalchangemarks/_index.md | 23 + .../set_comparisonarea1/_index.md | 24 + .../set_comparisonarea2/_index.md | 24 + .../set_comparisonmode/_index.md | 24 + .../set_excludeareas1/_index.md | 24 + .../set_excludeareas2/_index.md | 24 + .../set_excludetables/_index.md | 23 + .../sidebysidecomparisonoptions/_index.md | 23 + .../sidebysidepdfcomparer/_index.md | 29 + .../sidebysidepdfcomparer/compare/_index.md | 129 + .../sidebysidepdfcomparer/_index.md | 23 + english/cpp/aspose.pdf.comparison/_index.md | 26 + .../comparisonoptions/_index.md | 37 + .../comparisonoptions/_index.md | 23 + .../get_editoperationsorder/_index.md | 24 + .../get_excludeareas1/_index.md | 24 + .../get_excludeareas2/_index.md | 24 + .../get_excludetables/_index.md | 23 + .../get_extractionarea/_index.md | 24 + .../set_editoperationsorder/_index.md | 24 + .../set_excludeareas1/_index.md | 24 + .../set_excludeareas2/_index.md | 24 + .../set_excludetables/_index.md | 23 + .../set_extractionarea/_index.md | 24 + .../comparisonstatisticsbuilder/_index.md | 28 + .../buildstatistics/_index.md | 83 + .../documentcomparisonstatistics/_index.md | 34 + .../get_pagesstatistics/_index.md | 24 + .../editoperationsorder/_index.md | 29 + .../textitemcomparisonstatistics/_index.md | 32 + .../get_deletedcharacterscount/_index.md | 23 + .../get_deleteoperationscount/_index.md | 23 + .../get_insertedcharacterscount/_index.md | 23 + .../get_insertoperationscount/_index.md | 23 + .../get_totalcharacters/_index.md | 23 + .../textitemcomparisonstatistics/_index.md | 23 + .../textpdfcomparer/_index.md | 35 + .../assemblydestinationpagetext/_index.md | 45 + .../assemblysourcepagetext/_index.md | 45 + .../comparedocumentspagebypage/_index.md | 132 + .../compareflatdocuments/_index.md | 132 + .../textpdfcomparer/comparepages/_index.md | 66 + .../createcomparisonstatistics/_index.md | 83 + english/cpp/aspose.pdf.devices/_index.md | 40 + .../aspose.pdf.devices/bmpdevice/_index.md | 50 + .../bmpdevice/bmpdevice/_index.md | 210 ++ .../bmpdevice/process/_index.md | 50 + .../aspose.pdf.devices/colordepth/_index.md | 32 + .../compressiontype/_index.md | 32 + .../cpp/aspose.pdf.devices/device/_index.md | 22 + .../aspose.pdf.devices/dicomdevice/_index.md | 50 + .../dicomdevice/dicomdevice/_index.md | 210 ++ .../dicomdevice/process/_index.md | 50 + .../documentdevice/_index.md | 34 + .../documentdevice/documentdevice/_index.md | 23 + .../documentdevice/process/_index.md | 209 ++ .../aspose.pdf.devices/emfdevice/_index.md | 50 + .../emfdevice/emfdevice/_index.md | 210 ++ .../emfdevice/process/_index.md | 50 + .../formpresentationmode/_index.md | 29 + .../aspose.pdf.devices/gifdevice/_index.md | 50 + .../gifdevice/gifdevice/_index.md | 210 ++ .../gifdevice/process/_index.md | 50 + .../aspose.pdf.devices/imagedevice/_index.md | 44 + .../imagedevice/get_coordinatetype/_index.md | 24 + .../get_formpresentationmode/_index.md | 24 + .../imagedevice/get_height/_index.md | 23 + .../get_renderingoptions/_index.md | 24 + .../imagedevice/get_resolution/_index.md | 24 + .../imagedevice/get_width/_index.md | 23 + .../imagedevice/imagedevice/_index.md | 210 ++ .../imagedevice/set_coordinatetype/_index.md | 24 + .../set_formpresentationmode/_index.md | 24 + .../set_renderingoptions/_index.md | 24 + .../aspose.pdf.devices/jpegdevice/_index.md | 54 + .../jpegdevice/jpegdevice/_index.md | 398 +++ .../jpegdevice/process/_index.md | 50 + .../cpp/aspose.pdf.devices/margins/_index.md | 36 + .../margins/get_bottom/_index.md | 27 + .../margins/get_left/_index.md | 27 + .../margins/get_right/_index.md | 27 + .../margins/get_top/_index.md | 27 + .../margins/margins/_index.md | 81 + .../margins/set_bottom/_index.md | 27 + .../margins/set_left/_index.md | 27 + .../margins/set_right/_index.md | 27 + .../margins/set_top/_index.md | 27 + .../aspose.pdf.devices/pagedevice/_index.md | 29 + .../pagedevice/process/_index.md | 91 + .../aspose.pdf.devices/pngdevice/_index.md | 52 + .../get_transparentbackground/_index.md | 23 + .../pngdevice/pngdevice/_index.md | 210 ++ .../pngdevice/process/_index.md | 50 + .../set_transparentbackground/_index.md | 23 + .../aspose.pdf.devices/resolution/_index.md | 32 + .../resolution/get_x/_index.md | 23 + .../resolution/get_y/_index.md | 23 + .../resolution/resolution/_index.md | 80 + .../resolution/set_x/_index.md | 23 + .../resolution/set_y/_index.md | 23 + .../aspose.pdf.devices/shapetype/_index.md | 30 + .../aspose.pdf.devices/textdevice/_index.md | 41 + .../textdevice/get_encoding/_index.md | 23 + .../get_extractionoptions/_index.md | 24 + .../textdevice/process/_index.md | 50 + .../textdevice/set_encoding/_index.md | 23 + .../set_extractionoptions/_index.md | 24 + .../textdevice/textdevice/_index.md | 129 + .../thumbnaildevice/_index.md | 46 + .../thumbnaildevice/process/_index.md | 50 + .../thumbnaildevice/thumbnaildevice/_index.md | 63 + .../aspose.pdf.devices/tiffdevice/_index.md | 61 + .../tiffdevice/binarizebradley/_index.md | 58 + .../get_formpresentationmode/_index.md | 24 + .../tiffdevice/get_height/_index.md | 23 + .../tiffdevice/get_renderingoptions/_index.md | 24 + .../tiffdevice/get_resolution/_index.md | 24 + .../tiffdevice/get_settings/_index.md | 24 + .../tiffdevice/get_width/_index.md | 23 + .../tiffdevice/process/_index.md | 109 + .../set_formpresentationmode/_index.md | 24 + .../tiffdevice/set_renderingoptions/_index.md | 24 + .../tiffdevice/tiffdevice/_index.md | 863 ++++++ .../aspose.pdf.devices/tiffsettings/_index.md | 48 + .../tiffsettings/get_brightness/_index.md | 27 + .../tiffsettings/get_compression/_index.md | 30 + .../tiffsettings/get_coordinatetype/_index.md | 24 + .../tiffsettings/get_depth/_index.md | 30 + .../tiffsettings/get_margins/_index.md | 24 + .../tiffsettings/get_shape/_index.md | 30 + .../tiffsettings/get_skipblankpages/_index.md | 29 + .../tiffsettings/set_brightness/_index.md | 27 + .../tiffsettings/set_compression/_index.md | 30 + .../tiffsettings/set_coordinatetype/_index.md | 24 + .../tiffsettings/set_depth/_index.md | 30 + .../tiffsettings/set_shape/_index.md | 30 + .../tiffsettings/set_skipblankpages/_index.md | 29 + .../tiffsettings/tiffsettings/_index.md | 366 +++ english/cpp/aspose.pdf.drawing/_index.md | 33 + english/cpp/aspose.pdf.drawing/arc/_index.md | 43 + .../cpp/aspose.pdf.drawing/arc/arc/_index.md | 76 + .../arc/get_alpha/_index.md | 23 + .../aspose.pdf.drawing/arc/get_beta/_index.md | 23 + .../aspose.pdf.drawing/arc/get_posx/_index.md | 23 + .../aspose.pdf.drawing/arc/get_posy/_index.md | 23 + .../arc/get_radius/_index.md | 23 + .../arc/set_alpha/_index.md | 23 + .../aspose.pdf.drawing/arc/set_beta/_index.md | 23 + .../aspose.pdf.drawing/arc/set_posx/_index.md | 23 + .../aspose.pdf.drawing/arc/set_posy/_index.md | 23 + .../arc/set_radius/_index.md | 23 + .../cpp/aspose.pdf.drawing/circle/_index.md | 39 + .../circle/circle/_index.md | 58 + .../circle/get_posx/_index.md | 23 + .../circle/get_posy/_index.md | 23 + .../circle/get_radius/_index.md | 23 + .../circle/set_posx/_index.md | 23 + .../circle/set_posy/_index.md | 23 + .../circle/set_radius/_index.md | 23 + .../cpp/aspose.pdf.drawing/curve/_index.md | 35 + .../aspose.pdf.drawing/curve/curve/_index.md | 40 + .../curve/get_positionarray/_index.md | 23 + .../curve/set_positionarray/_index.md | 23 + .../cpp/aspose.pdf.drawing/ellipse/_index.md | 41 + .../ellipse/ellipse/_index.md | 67 + .../ellipse/get_bottom/_index.md | 23 + .../ellipse/get_height/_index.md | 23 + .../ellipse/get_left/_index.md | 23 + .../ellipse/get_width/_index.md | 23 + .../ellipse/set_bottom/_index.md | 23 + .../ellipse/set_height/_index.md | 23 + .../ellipse/set_left/_index.md | 23 + .../ellipse/set_width/_index.md | 23 + .../gradientaxialshading/_index.md | 38 + .../gradientaxialshading/get_end/_index.md | 24 + .../get_endcolor/_index.md | 24 + .../gradientaxialshading/get_start/_index.md | 24 + .../get_startcolor/_index.md | 24 + .../gradientaxialshading/_index.md | 64 + .../gradientaxialshading/set_end/_index.md | 24 + .../set_endcolor/_index.md | 24 + .../gradientaxialshading/set_start/_index.md | 24 + .../set_startcolor/_index.md | 24 + .../gradientradialshading/_index.md | 42 + .../gradientradialshading/get_end/_index.md | 24 + .../get_endcolor/_index.md | 24 + .../get_endingradius/_index.md | 23 + .../gradientradialshading/get_start/_index.md | 24 + .../get_startcolor/_index.md | 24 + .../get_startingradius/_index.md | 23 + .../gradientradialshading/_index.md | 64 + .../gradientradialshading/set_end/_index.md | 24 + .../set_endcolor/_index.md | 24 + .../set_endingradius/_index.md | 23 + .../gradientradialshading/set_start/_index.md | 24 + .../set_startcolor/_index.md | 24 + .../set_startingradius/_index.md | 23 + .../cpp/aspose.pdf.drawing/graph/_index.md | 67 + .../aspose.pdf.drawing/graph/clone/_index.md | 28 + .../graph/get_border/_index.md | 24 + .../graph/get_graphinfo/_index.md | 24 + .../graph/get_height/_index.md | 23 + .../graph/get_ischangeposition/_index.md | 23 + .../graph/get_left/_index.md | 23 + .../graph/get_shapes/_index.md | 24 + .../graph/get_title/_index.md | 24 + .../graph/get_top/_index.md | 23 + .../graph/get_width/_index.md | 23 + .../aspose.pdf.drawing/graph/graph/_index.md | 94 + .../graph/set_border/_index.md | 24 + .../graph/set_graphinfo/_index.md | 24 + .../graph/set_height/_index.md | 23 + .../graph/set_ischangeposition/_index.md | 23 + .../graph/set_left/_index.md | 23 + .../graph/set_shapes/_index.md | 24 + .../graph/set_title/_index.md | 24 + .../graph/set_top/_index.md | 23 + .../graph/set_width/_index.md | 23 + .../aspose.pdf.drawing/imageformat/_index.md | 37 + english/cpp/aspose.pdf.drawing/line/_index.md | 35 + .../line/get_positionarray/_index.md | 23 + .../aspose.pdf.drawing/line/line/_index.md | 40 + .../line/set_positionarray/_index.md | 23 + english/cpp/aspose.pdf.drawing/path/_index.md | 35 + .../path/get_shapes/_index.md | 24 + .../aspose.pdf.drawing/path/path/_index.md | 55 + .../patterncolorspace/_index.md | 27 + .../patterncolorspace/_index.md | 23 + .../aspose.pdf.drawing/rectangle/_index.md | 43 + .../rectangle/get_bottom/_index.md | 23 + .../rectangle/get_height/_index.md | 23 + .../rectangle/get_left/_index.md | 23 + .../get_roundedcornerradius/_index.md | 23 + .../rectangle/get_width/_index.md | 23 + .../rectangle/rectangle/_index.md | 67 + .../rectangle/set_bottom/_index.md | 23 + .../rectangle/set_height/_index.md | 23 + .../rectangle/set_left/_index.md | 23 + .../set_roundedcornerradius/_index.md | 23 + .../rectangle/set_width/_index.md | 23 + .../cpp/aspose.pdf.drawing/shape/_index.md | 31 + .../shape/get_graphinfo/_index.md | 24 + .../shape/get_text/_index.md | 24 + .../shape/set_graphinfo/_index.md | 24 + .../shape/set_text/_index.md | 24 + .../aspose.pdf.drawing/shape/shape/_index.md | 23 + .../_index.md | 17 + .../icmapcodespacerange/_index.md | 33 + .../icmapcodespacerange/getallbytes/_index.md | 45 + .../icmapcodespacerange/getsize/_index.md | 28 + .../haspartialmatch/_index.md | 53 + .../icmapcodespacerange/isinrange/_index.md | 167 ++ .../_index.md | 17 + .../fontsremover/_index.md | 22 + .../aspose.pdf.engine.commondata/_index.md | 17 + .../idocumentsecondarystrategies/_index.md | 27 + .../get_simplefontencodingrule/_index.md | 23 + english/cpp/aspose.pdf.engine.data/_index.md | 17 + .../ipdfstringextractioninfo/_index.md | 27 + .../get_rawcodes/_index.md | 23 + .../cpp/aspose.pdf.engine.filters/_index.md | 22 + .../filtertype/_index.md | 39 + .../filtertypeconverter/_index.md | 28 + .../filtertypeconverter/toenum/_index.md | 24 + .../filtertypeconverter/tostring/_index.md | 24 + .../_index.md | 27 + .../exportfieldsoptions/_index.md | 29 + .../exportfieldsoptions/_index.md | 23 + .../get_exportpasswordvalue/_index.md | 27 + .../set_exportpasswordvalue/_index.md | 27 + .../exportfieldstojsonoptions/_index.md | 37 + .../exportfieldstojsonoptions/_index.md | 23 + .../get_writeindented/_index.md | 27 + .../set_writeindented/_index.md | 27 + .../exportimportmessages/_index.md | 47 + .../appearancedobjectnotimporting/_index.md | 23 + .../appearancennotpresented/_index.md | 23 + .../appearancerobjectnotimporting/_index.md | 23 + .../barcodesymbologyvaluenotvalid/_index.md | 23 + .../exportimportmessages/_index.md | 23 + .../notimplemented/_index.md | 23 + .../pageindexisnotset/_index.md | 23 + .../exportimportmessages/pageisnull/_index.md | 23 + .../pagenotfoundindocument/_index.md | 23 + .../partialnameisnotset/_index.md | 23 + .../rectangleimporterror/_index.md | 23 + .../rectangleisnotset/_index.md | 23 + .../rectnotpresented/_index.md | 23 + .../_index.md | 23 + .../unknownexporterror/_index.md | 23 + .../unknownfieldtype/_index.md | 23 + .../unknownimporterror/_index.md | 23 + .../fieldserializationresult/_index.md | 30 + .../get_errormessages/_index.md | 27 + .../get_fieldfullname/_index.md | 27 + .../get_fieldserializationstatus/_index.md | 28 + .../get_warningmessages/_index.md | 27 + .../fieldserializationstatus/_index.md | 30 + .../importfieldsoptions/_index.md | 22 + .../importfieldstojsonoptions/_index.md | 27 + english/cpp/aspose.pdf.facades/_index.md | 77 + .../aspose.pdf.facades/algorithm/_index.md | 29 + .../aspose.pdf.facades/autofiller/_index.md | 51 + .../autofiller/autofiller/_index.md | 23 + .../autofiller/bindpdf/_index.md | 106 + .../autofiller/close/_index.md | 23 + .../autofiller/dispose/_index.md | 23 + .../autofiller/get_basicfilename/_index.md | 23 + .../autofiller/get_generatingpath/_index.md | 23 + .../autofiller/get_inputfilename/_index.md | 32 + .../autofiller/get_inputstream/_index.md | 32 + .../autofiller/get_outputfilename/_index.md | 32 + .../autofiller/get_outputstream/_index.md | 32 + .../autofiller/get_outputstreams/_index.md | 23 + .../autofiller/save/_index.md | 94 + .../autofiller/set_basicfilename/_index.md | 23 + .../autofiller/set_generatingpath/_index.md | 23 + .../autofiller/set_inputfilename/_index.md | 32 + .../autofiller/set_inputstream/_index.md | 32 + .../autofiller/set_outputfilename/_index.md | 32 + .../autofiller/set_outputstream/_index.md | 32 + .../autofiller/set_outputstreams/_index.md | 23 + .../autofiller/set_unflattenfields/_index.md | 23 + .../autorotatemode/_index.md | 30 + .../bdcproperties/_index.md | 33 + .../bdcproperties/bdcproperties/_index.md | 98 + .../bdcproperties/get_e/_index.md | 23 + .../bdcproperties/get_lang/_index.md | 23 + .../bdcproperties/get_mcid/_index.md | 23 + .../bdcproperties/set_e/_index.md | 23 + .../bdcproperties/set_lang/_index.md | 23 + .../blendingcolorspace/_index.md | 31 + .../cpp/aspose.pdf.facades/bookmark/_index.md | 64 + .../bookmark/bookmark/_index.md | 23 + .../bookmark/compareto/_index.md | 24 + .../bookmark/get_action/_index.md | 23 + .../bookmark/get_boldflag/_index.md | 23 + .../bookmark/get_childitem/_index.md | 33 + .../bookmark/get_childitems/_index.md | 24 + .../bookmark/get_destination/_index.md | 23 + .../bookmark/get_italicflag/_index.md | 23 + .../bookmark/get_level/_index.md | 23 + .../bookmark/get_open/_index.md | 23 + .../bookmark/get_pagedisplay/_index.md | 23 + .../bookmark/get_pagedisplay_bottom/_index.md | 23 + .../bookmark/get_pagedisplay_left/_index.md | 23 + .../bookmark/get_pagedisplay_right/_index.md | 23 + .../bookmark/get_pagedisplay_top/_index.md | 23 + .../bookmark/get_pagedisplay_zoom/_index.md | 23 + .../bookmark/get_pagenumber/_index.md | 23 + .../bookmark/get_remotefile/_index.md | 23 + .../bookmark/get_title/_index.md | 23 + .../bookmark/get_titlecolor/_index.md | 23 + .../bookmark/set_action/_index.md | 23 + .../bookmark/set_boldflag/_index.md | 23 + .../bookmark/set_childitem/_index.md | 33 + .../bookmark/set_childitems/_index.md | 24 + .../bookmark/set_destination/_index.md | 23 + .../bookmark/set_italicflag/_index.md | 23 + .../bookmark/set_level/_index.md | 23 + .../bookmark/set_open/_index.md | 23 + .../bookmark/set_pagedisplay/_index.md | 23 + .../bookmark/set_pagedisplay_bottom/_index.md | 23 + .../bookmark/set_pagedisplay_left/_index.md | 23 + .../bookmark/set_pagedisplay_right/_index.md | 23 + .../bookmark/set_pagedisplay_top/_index.md | 23 + .../bookmark/set_pagedisplay_zoom/_index.md | 23 + .../bookmark/set_pagenumber/_index.md | 23 + .../bookmark/set_remotefile/_index.md | 23 + .../bookmark/set_title/_index.md | 23 + .../bookmark/set_titlecolor/_index.md | 23 + .../aspose.pdf.facades/bookmarks/_index.md | 27 + .../bookmarks/settemplateweakptr/_index.md | 40 + .../cpp/aspose.pdf.facades/datatype/_index.md | 33 + .../defaultmetadataproperties/_index.md | 36 + .../documentprivilege/_index.md | 56 + .../documentprivilege/compareto/_index.md | 23 + .../documentprivilege/get_allowall/_index.md | 24 + .../get_allowassembly/_index.md | 23 + .../documentprivilege/get_allowcopy/_index.md | 23 + .../get_allowdegradedprinting/_index.md | 23 + .../get_allowfillin/_index.md | 23 + .../get_allowmodifyannotations/_index.md | 23 + .../get_allowmodifycontents/_index.md | 23 + .../get_allowprint/_index.md | 23 + .../get_allowscreenreaders/_index.md | 23 + .../documentprivilege/get_assembly/_index.md | 24 + .../documentprivilege/get_copy/_index.md | 24 + .../get_degradedprinting/_index.md | 24 + .../documentprivilege/get_fillin/_index.md | 24 + .../documentprivilege/get_forbidall/_index.md | 24 + .../get_modifyannotations/_index.md | 24 + .../get_modifycontents/_index.md | 24 + .../documentprivilege/get_print/_index.md | 24 + .../get_screenreaders/_index.md | 24 + .../set_allowassembly/_index.md | 23 + .../documentprivilege/set_allowcopy/_index.md | 23 + .../set_allowdegradedprinting/_index.md | 23 + .../set_allowfillin/_index.md | 23 + .../set_allowmodifyannotations/_index.md | 23 + .../set_allowmodifycontents/_index.md | 23 + .../set_allowprint/_index.md | 23 + .../set_allowscreenreaders/_index.md | 23 + .../set_changeallowlevel/_index.md | 23 + .../set_copyallowlevel/_index.md | 23 + .../set_printallowlevel/_index.md | 23 + .../aspose.pdf.facades/encodingtype/_index.md | 34 + .../cpp/aspose.pdf.facades/facade/_index.md | 35 + .../facade/bindpdf/_index.md | 103 + .../aspose.pdf.facades/facade/close/_index.md | 23 + .../facade/dispose/_index.md | 23 + .../facade/get_document/_index.md | 24 + .../aspose.pdf.facades/fieldtype/_index.md | 40 + .../aspose.pdf.facades/fontcolor/_index.md | 34 + .../fontcolor/fontcolor/_index.md | 72 + .../fontcolor/get_blue/_index.md | 23 + .../fontcolor/get_green/_index.md | 23 + .../fontcolor/get_red/_index.md | 23 + .../fontcolor/set_blue/_index.md | 23 + .../fontcolor/set_green/_index.md | 23 + .../fontcolor/set_red/_index.md | 23 + .../aspose.pdf.facades/fontstyle/_index.md | 43 + english/cpp/aspose.pdf.facades/form/_index.md | 101 + .../aspose.pdf.facades/form/close/_index.md | 23 + .../form/exportfdf/_index.md | 40 + .../form/exportxfdf/_index.md | 40 + .../form/exportxml/_index.md | 40 + .../form/extractxfadata/_index.md | 40 + .../form/fillbarcodefield/_index.md | 53 + .../form/fillfield/_index.md | 255 ++ .../form/fillfields/_index.md | 62 + .../form/fillimagefield/_index.md | 89 + .../form/flattenallfields/_index.md | 23 + .../form/flattenfield/_index.md | 40 + .../aspose.pdf.facades/form/form/_index.md | 482 ++++ .../form/get_attachmentname/_index.md | 23 + .../form/get_contentdisposition/_index.md | 24 + .../form/get_destfilename/_index.md | 32 + .../form/get_deststream/_index.md | 32 + .../form/get_fieldnames/_index.md | 23 + .../form/get_formsubmitbuttonnames/_index.md | 23 + .../form/get_importresult/_index.md | 23 + .../form/get_response/_index.md | 23 + .../form/get_saveoptions/_index.md | 24 + .../form/get_srcfilename/_index.md | 32 + .../form/get_srcstream/_index.md | 32 + .../getbuttonoptioncurrentvalue/_index.md | 44 + .../form/getbuttonoptionvalues/_index.md | 44 + .../form/getfield/_index.md | 44 + .../form/getfieldfacade/_index.md | 45 + .../form/getfieldflag/_index.md | 45 + .../form/getfieldlimit/_index.md | 44 + .../form/getfieldtype/_index.md | 45 + .../form/getfullfieldname/_index.md | 44 + .../form/getrichtext/_index.md | 44 + .../form/getsubmitflags/_index.md | 45 + .../form/importfdf/_index.md | 40 + .../form/importxfdf/_index.md | 40 + .../form/importxml/_index.md | 80 + .../form/isrequiredfield/_index.md | 44 + .../form/renamefield/_index.md | 49 + .../aspose.pdf.facades/form/save/_index.md | 94 + .../form/set_attachmentname/_index.md | 23 + .../form/set_contentdisposition/_index.md | 24 + .../form/set_convertto/_index.md | 24 + .../form/set_destfilename/_index.md | 32 + .../form/set_deststream/_index.md | 32 + .../form/set_response/_index.md | 23 + .../form/set_saveoptions/_index.md | 24 + .../form/set_srcfilename/_index.md | 32 + .../form/set_srcstream/_index.md | 32 + .../form/setxfadata/_index.md | 40 + .../formattedtext/_index.md | 45 + .../formattedtext/addnewlinetext/_index.md | 82 + .../formattedtext/formattedtext/_index.md | 995 +++++++ .../formattedtext/get_textheight/_index.md | 23 + .../formattedtext/get_textwidth/_index.md | 23 + .../formattedtext/iscjk/_index.md | 28 + .../formattedtext/setcjkfontstyle/_index.md | 23 + .../aspose.pdf.facades/formeditor/_index.md | 108 + .../formeditor/addfield/_index.md | 201 ++ .../formeditor/addfieldscript/_index.md | 53 + .../formeditor/addlistitem/_index.md | 89 + .../formeditor/addsubmitbtn/_index.md | 104 + .../formeditor/close/_index.md | 23 + .../formeditor/copyinnerfield/_index.md | 125 + .../formeditor/copyouterfield/_index.md | 165 ++ .../formeditor/decoratefield/_index.md | 86 + .../formeditor/dellistitem/_index.md | 49 + .../formeditor/formeditor/_index.md | 330 +++ .../formeditor/get_attachmentname/_index.md | 23 + .../get_contentdisposition/_index.md | 24 + .../formeditor/get_destfilename/_index.md | 32 + .../formeditor/get_deststream/_index.md | 32 + .../formeditor/get_exportitems/_index.md | 23 + .../formeditor/get_facade/_index.md | 24 + .../formeditor/get_items/_index.md | 23 + .../get_radiobuttonitemsize/_index.md | 23 + .../formeditor/get_radiogap/_index.md | 23 + .../formeditor/get_radiohoriz/_index.md | 23 + .../formeditor/get_response/_index.md | 23 + .../formeditor/get_saveoptions/_index.md | 24 + .../formeditor/get_srcfilename/_index.md | 32 + .../formeditor/get_srcstream/_index.md | 32 + .../formeditor/get_submitflag/_index.md | 24 + .../formeditor/getfieldappearance/_index.md | 45 + .../formeditor/movefield/_index.md | 80 + .../formeditor/removefield/_index.md | 40 + .../formeditor/removefieldaction/_index.md | 40 + .../formeditor/renamefield/_index.md | 49 + .../formeditor/resetfacade/_index.md | 23 + .../formeditor/resetinnerfacade/_index.md | 23 + .../formeditor/save/_index.md | 32 + .../formeditor/set_attachmentname/_index.md | 23 + .../set_contentdisposition/_index.md | 24 + .../formeditor/set_convertto/_index.md | 24 + .../formeditor/set_destfilename/_index.md | 32 + .../formeditor/set_deststream/_index.md | 32 + .../formeditor/set_exportitems/_index.md | 23 + .../formeditor/set_facade/_index.md | 24 + .../formeditor/set_items/_index.md | 23 + .../set_radiobuttonitemsize/_index.md | 23 + .../formeditor/set_radiogap/_index.md | 23 + .../formeditor/set_radiohoriz/_index.md | 23 + .../formeditor/set_response/_index.md | 23 + .../formeditor/set_saveoptions/_index.md | 24 + .../formeditor/set_srcfilename/_index.md | 32 + .../formeditor/set_srcstream/_index.md | 32 + .../formeditor/set_submitflag/_index.md | 24 + .../formeditor/setfieldalignment/_index.md | 53 + .../formeditor/setfieldalignmentv/_index.md | 53 + .../formeditor/setfieldappearance/_index.md | 54 + .../formeditor/setfieldattribute/_index.md | 54 + .../formeditor/setfieldcombnumber/_index.md | 53 + .../formeditor/setfieldlimit/_index.md | 53 + .../formeditor/setfieldscript/_index.md | 53 + .../formeditor/setsubmitflag/_index.md | 54 + .../formeditor/setsubmiturl/_index.md | 53 + .../formeditor/single2multiple/_index.md | 44 + .../formfieldfacade/_index.md | 93 + .../formfieldfacade/alignbottom/_index.md | 23 + .../formfieldfacade/aligncenter/_index.md | 23 + .../formfieldfacade/alignjustified/_index.md | 23 + .../formfieldfacade/alignleft/_index.md | 23 + .../formfieldfacade/alignmiddle/_index.md | 23 + .../formfieldfacade/alignright/_index.md | 23 + .../formfieldfacade/aligntop/_index.md | 23 + .../formfieldfacade/alignundefined/_index.md | 23 + .../borderstylebeveled/_index.md | 23 + .../borderstyledashed/_index.md | 23 + .../borderstyleinset/_index.md | 23 + .../borderstylesolid/_index.md | 23 + .../borderstyleundefined/_index.md | 23 + .../borderstyleunderline/_index.md | 23 + .../borderwidthmedium/_index.md | 23 + .../borderwidththick/_index.md | 23 + .../formfieldfacade/borderwidththin/_index.md | 23 + .../borderwidthundefined/_index.md | 23 + .../checkboxstylecheck/_index.md | 23 + .../checkboxstylecircle/_index.md | 23 + .../checkboxstylecross/_index.md | 23 + .../checkboxstylediamond/_index.md | 23 + .../checkboxstylesquare/_index.md | 23 + .../checkboxstylestar/_index.md | 23 + .../checkboxstyleundefined/_index.md | 23 + .../formfieldfacade/formfieldfacade/_index.md | 23 + .../formfieldfacade/get_alignment/_index.md | 23 + .../get_backgroundcolor/_index.md | 23 + .../formfieldfacade/get_bordercolor/_index.md | 23 + .../formfieldfacade/get_borderstyle/_index.md | 23 + .../formfieldfacade/get_borderwidth/_index.md | 23 + .../formfieldfacade/get_box/_index.md | 23 + .../formfieldfacade/get_buttonstyle/_index.md | 23 + .../formfieldfacade/get_caption/_index.md | 23 + .../formfieldfacade/get_customfont/_index.md | 23 + .../formfieldfacade/get_exportitems/_index.md | 23 + .../formfieldfacade/get_font/_index.md | 24 + .../formfieldfacade/get_fontsize/_index.md | 23 + .../formfieldfacade/get_items/_index.md | 23 + .../formfieldfacade/get_pagenumber/_index.md | 23 + .../formfieldfacade/get_position/_index.md | 23 + .../formfieldfacade/get_rotation/_index.md | 23 + .../formfieldfacade/get_textcolor/_index.md | 23 + .../get_textencoding/_index.md | 24 + .../formfieldfacade/reset/_index.md | 23 + .../formfieldfacade/set_alignment/_index.md | 23 + .../set_backgroundcolor/_index.md | 23 + .../formfieldfacade/set_bordercolor/_index.md | 23 + .../formfieldfacade/set_borderstyle/_index.md | 23 + .../formfieldfacade/set_borderwidth/_index.md | 23 + .../formfieldfacade/set_box/_index.md | 23 + .../formfieldfacade/set_buttonstyle/_index.md | 23 + .../formfieldfacade/set_caption/_index.md | 23 + .../formfieldfacade/set_customfont/_index.md | 23 + .../formfieldfacade/set_exportitems/_index.md | 23 + .../formfieldfacade/set_font/_index.md | 24 + .../formfieldfacade/set_fontsize/_index.md | 23 + .../formfieldfacade/set_items/_index.md | 23 + .../formfieldfacade/set_pagenumber/_index.md | 23 + .../formfieldfacade/set_position/_index.md | 23 + .../formfieldfacade/set_rotation/_index.md | 23 + .../formfieldfacade/set_textcolor/_index.md | 23 + .../set_textencoding/_index.md | 24 + .../cpp/aspose.pdf.facades/ifacade/_index.md | 30 + .../ifacade/bindpdf/_index.md | 103 + .../ifacade/close/_index.md | 23 + .../imagemergemode/_index.md | 30 + .../isaveablefacade/_index.md | 33 + .../isaveablefacade/save/_index.md | 71 + .../cpp/aspose.pdf.facades/keysize/_index.md | 30 + .../cpp/aspose.pdf.facades/lineinfo/_index.md | 39 + .../lineinfo/get_borderstyle/_index.md | 23 + .../lineinfo/get_linecolor/_index.md | 23 + .../lineinfo/get_linedashpattern/_index.md | 23 + .../lineinfo/get_linewidth/_index.md | 23 + .../lineinfo/get_verticecoordinate/_index.md | 23 + .../lineinfo/get_visibility/_index.md | 23 + .../lineinfo/lineinfo/_index.md | 23 + .../lineinfo/set_borderstyle/_index.md | 23 + .../lineinfo/set_linecolor/_index.md | 23 + .../lineinfo/set_linedashpattern/_index.md | 23 + .../lineinfo/set_linewidth/_index.md | 23 + .../lineinfo/set_verticecoordinate/_index.md | 23 + .../lineinfo/set_visibility/_index.md | 23 + .../pdfannotationeditor/_index.md | 63 + .../deleteannotation/_index.md | 43 + .../deleteannotations/_index.md | 54 + .../exportannotationstoxfdf/_index.md | 40 + .../exportannotationsxfdf/_index.md | 126 + .../extractannotations/_index.md | 118 + .../flatteningannotations/_index.md | 104 + .../importannotationfromxfdf/_index.md | 163 ++ .../importannotations/_index.md | 153 ++ .../importannotationsfromfdf/_index.md | 40 + .../importannotationsfromxfdf/_index.md | 71 + .../modifyannotations/_index.md | 59 + .../modifyannotationsauthor/_index.md | 67 + .../pdfannotationeditor/_index.md | 56 + .../pdfannotationeditor/redactarea/_index.md | 59 + .../pdfbookmarkeditor/_index.md | 56 + .../createbookmarkofpage/_index.md | 91 + .../createbookmarks/_index.md | 104 + .../deletebookmarks/_index.md | 54 + .../exportbookmarkstohtml/_index.md | 49 + .../exportbookmarkstoxml/_index.md | 71 + .../extractbookmarks/_index.md | 138 + .../extractbookmarkstohtml/_index.md | 54 + .../importbookmarkswithxml/_index.md | 71 + .../modifybookmarks/_index.md | 49 + .../pdfbookmarkeditor/_index.md | 56 + .../pdfcontenteditor/_index.md | 116 + .../adddocumentadditionalaction/_index.md | 49 + .../adddocumentattachment/_index.md | 100 + .../pdfcontenteditor/bindpdf/_index.md | 71 + .../changeviewerpreference/_index.md | 40 + .../pdfcontenteditor/close/_index.md | 23 + .../createapplicationlink/_index.md | 184 ++ .../createbookmarksaction/_index.md | 94 + .../pdfcontenteditor/createcaret/_index.md | 88 + .../createcustomactionlink/_index.md | 68 + .../createfileattachment/_index.md | 313 +++ .../pdfcontenteditor/createfreetext/_index.md | 58 + .../createjavascriptlink/_index.md | 67 + .../pdfcontenteditor/createline/_index.md | 139 + .../createlocallink/_index.md | 183 ++ .../pdfcontenteditor/createmarkup/_index.md | 76 + .../pdfcontenteditor/createmovie/_index.md | 58 + .../createpdfdocumentlink/_index.md | 210 ++ .../pdfcontenteditor/createpolygon/_index.md | 68 + .../pdfcontenteditor/createpolyline/_index.md | 68 + .../pdfcontenteditor/createpopup/_index.md | 67 + .../createrubberstamp/_index.md | 210 ++ .../pdfcontenteditor/createsound/_index.md | 76 + .../createsquarecircle/_index.md | 85 + .../pdfcontenteditor/createtext/_index.md | 85 + .../pdfcontenteditor/createweblink/_index.md | 183 ++ .../deleteattachments/_index.md | 23 + .../pdfcontenteditor/deleteimage/_index.md | 63 + .../pdfcontenteditor/deletestamp/_index.md | 51 + .../deletestampbyid/_index.md | 84 + .../deletestampbyids/_index.md | 81 + .../pdfcontenteditor/documentclose/_index.md | 23 + .../pdfcontenteditor/documentopen/_index.md | 23 + .../documentprinted/_index.md | 23 + .../pdfcontenteditor/documentsaved/_index.md | 23 + .../documentwillprint/_index.md | 23 + .../documentwillsave/_index.md | 23 + .../pdfcontenteditor/drawcurve/_index.md | 68 + .../pdfcontenteditor/extractlink/_index.md | 29 + .../get_replacetextstrategy/_index.md | 24 + .../get_texteditoptions/_index.md | 24 + .../get_textreplaceoptions/_index.md | 24 + .../get_textsearchoptions/_index.md | 24 + .../pdfcontenteditor/getstamps/_index.md | 46 + .../getviewerpreference/_index.md | 28 + .../pdfcontenteditor/hidestampbyid/_index.md | 49 + .../pdfcontenteditor/movestamp/_index.md | 67 + .../pdfcontenteditor/movestampbyid/_index.md | 67 + .../pdfcontenteditor/_index.md | 56 + .../removedocumentopenaction/_index.md | 23 + .../pdfcontenteditor/replaceimage/_index.md | 58 + .../pdfcontenteditor/replacetext/_index.md | 280 ++ .../set_replacetextstrategy/_index.md | 24 + .../set_texteditoptions/_index.md | 24 + .../set_textreplaceoptions/_index.md | 24 + .../set_textsearchoptions/_index.md | 24 + .../pdfcontenteditor/showstampbyid/_index.md | 49 + .../aspose.pdf.facades/pdfconverter/_index.md | 103 + .../pdfconverter/bindpdf/_index.md | 72 + .../pdfconverter/close/_index.md | 23 + .../pdfconverter/doconvert/_index.md | 23 + .../pdfconverter/get_coordinatetype/_index.md | 24 + .../pdfconverter/get_endpage/_index.md | 23 + .../get_formpresentationmode/_index.md | 24 + .../pdfconverter/get_pagecount/_index.md | 23 + .../pdfconverter/get_password/_index.md | 23 + .../get_renderingoptions/_index.md | 24 + .../pdfconverter/get_resolution/_index.md | 24 + .../get_showhiddenareas/_index.md | 32 + .../pdfconverter/get_startpage/_index.md | 23 + .../pdfconverter/get_userpassword/_index.md | 23 + .../pdfconverter/getnextimage/_index.md | 933 +++++++ .../pdfconverter/hasnextimage/_index.md | 28 + .../pdfconverter/mergeimages/_index.md | 83 + .../pdfconverter/mergeimagesastiff/_index.md | 44 + .../pdfconverter/pdfconverter/_index.md | 56 + .../pdfconverter/saveastiff/_index.md | 993 +++++++ .../pdfconverter/saveastiffclassf/_index.md | 251 ++ .../pdfconverter/set_coordinatetype/_index.md | 24 + .../pdfconverter/set_endpage/_index.md | 23 + .../set_formpresentationmode/_index.md | 24 + .../pdfconverter/set_password/_index.md | 23 + .../set_renderingoptions/_index.md | 24 + .../pdfconverter/set_resolution/_index.md | 24 + .../set_showhiddenareas/_index.md | 32 + .../pdfconverter/set_startpage/_index.md | 23 + .../pdfconverter/set_userpassword/_index.md | 23 + .../aspose.pdf.facades/pdfextractor/_index.md | 71 + .../pdfextractor/bindpdf/_index.md | 71 + .../pdfextractor/extractattachment/_index.md | 54 + .../pdfextractor/extractimage/_index.md | 23 + .../pdfextractor/extracttext/_index.md | 54 + .../pdfextractor/get_endpage/_index.md | 23 + .../get_extractimagemode/_index.md | 30 + .../get_extracttextmode/_index.md | 27 + .../pdfextractor/get_isbidi/_index.md | 23 + .../pdfextractor/get_password/_index.md | 23 + .../pdfextractor/get_resolution/_index.md | 23 + .../pdfextractor/get_startpage/_index.md | 23 + .../get_textsearchoptions/_index.md | 24 + .../pdfextractor/getattachment/_index.md | 59 + .../pdfextractor/getattachmentinfo/_index.md | 29 + .../pdfextractor/getattachnames/_index.md | 28 + .../pdfextractor/getnextimage/_index.md | 167 ++ .../pdfextractor/getnextpagetext/_index.md | 71 + .../pdfextractor/gettext/_index.md | 111 + .../pdfextractor/hasnextimage/_index.md | 28 + .../pdfextractor/hasnextpagetext/_index.md | 28 + .../pdfextractor/pdfextractor/_index.md | 56 + .../pdfextractor/set_endpage/_index.md | 23 + .../set_extractimagemode/_index.md | 30 + .../set_extracttextmode/_index.md | 27 + .../pdfextractor/set_password/_index.md | 23 + .../pdfextractor/set_resolution/_index.md | 23 + .../pdfextractor/set_startpage/_index.md | 23 + .../set_textsearchoptions/_index.md | 24 + .../pdffileeditor/_index.md | 219 ++ .../pdffileeditor/addmargins/_index.md | 187 ++ .../pdffileeditor/addmarginspct/_index.md | 187 ++ .../pdffileeditor/addpagebreak/_index.md | 157 ++ .../pdffileeditor/append/_index.md | 443 +++ .../pdffileeditor/concatenate/_index.md | 462 ++++ .../pdffileeditor/delete/_index.md | 221 ++ .../pdffileeditor/extract/_index.md | 345 +++ .../get_allowconcatenateexceptions/_index.md | 32 + .../get_attachmentname/_index.md | 23 + .../get_closeconcatenatedstreams/_index.md | 23 + .../get_concatenationpacketsize/_index.md | 23 + .../get_contentdisposition/_index.md | 24 + .../pdffileeditor/get_conversionlog/_index.md | 23 + .../get_copylogicalstructure/_index.md | 23 + .../pdffileeditor/get_copyoutlines/_index.md | 23 + .../get_corruptedfileaction/_index.md | 23 + .../get_corrupteditems/_index.md | 23 + .../get_incrementalupdates/_index.md | 23 + .../pdffileeditor/get_keepactions/_index.md | 23 + .../get_keepfieldsunique/_index.md | 23 + .../pdffileeditor/get_lastexception/_index.md | 23 + .../get_mergeduplicatelayers/_index.md | 23 + .../get_mergeduplicateoutlines/_index.md | 23 + .../pdffileeditor/get_optimizesize/_index.md | 23 + .../pdffileeditor/get_ownerpassword/_index.md | 23 + .../get_preserveuserrights/_index.md | 23 + .../get_removesignatures/_index.md | 23 + .../pdffileeditor/get_saveoptions/_index.md | 24 + .../pdffileeditor/get_uniquesuffix/_index.md | 23 + .../pdffileeditor/get_usediskbuffer/_index.md | 23 + .../pdffileeditor/insert/_index.md | 455 ++++ .../pdffileeditor/makebooklet/_index.md | 726 +++++ .../pdffileeditor/makenup/_index.md | 759 ++++++ .../pdffileeditor/pdffileeditor/_index.md | 23 + .../pdffileeditor/resizecontents/_index.md | 496 ++++ .../pdffileeditor/resizecontentspct/_index.md | 151 ++ .../set_allowconcatenateexceptions/_index.md | 32 + .../set_attachmentname/_index.md | 23 + .../set_closeconcatenatedstreams/_index.md | 23 + .../set_concatenationpacketsize/_index.md | 23 + .../set_contentdisposition/_index.md | 24 + .../pdffileeditor/set_convertto/_index.md | 24 + .../set_copylogicalstructure/_index.md | 23 + .../pdffileeditor/set_copyoutlines/_index.md | 23 + .../set_corruptedfileaction/_index.md | 23 + .../set_incrementalupdates/_index.md | 23 + .../pdffileeditor/set_keepactions/_index.md | 23 + .../set_keepfieldsunique/_index.md | 23 + .../set_mergeduplicatelayers/_index.md | 23 + .../set_mergeduplicateoutlines/_index.md | 23 + .../pdffileeditor/set_optimizesize/_index.md | 23 + .../pdffileeditor/set_ownerpassword/_index.md | 23 + .../set_preserveuserrights/_index.md | 23 + .../set_removesignatures/_index.md | 23 + .../pdffileeditor/set_saveoptions/_index.md | 24 + .../pdffileeditor/set_uniquesuffix/_index.md | 23 + .../pdffileeditor/set_usediskbuffer/_index.md | 23 + .../pdffileeditor/splitfromfirst/_index.md | 223 ++ .../pdffileeditor/splittobulks/_index.md | 97 + .../pdffileeditor/splittoend/_index.md | 223 ++ .../pdffileeditor/splittopages/_index.md | 159 ++ .../pdffileeditor/tryappend/_index.md | 305 +++ .../pdffileeditor/tryconcatenate/_index.md | 423 +++ .../pdffileeditor/trydelete/_index.md | 229 ++ .../pdffileeditor/tryextract/_index.md | 294 ++ .../pdffileeditor/tryinsert/_index.md | 303 +++ .../pdffileeditor/trymakebooklet/_index.md | 749 ++++++ .../pdffileeditor/trymakenup/_index.md | 783 ++++++ .../pdffileeditor/tryresizecontents/_index.md | 338 +++ .../pdffileeditor/trysplitfromfirst/_index.md | 229 ++ .../pdffileeditor/trysplittoend/_index.md | 229 ++ .../aspose.pdf.facades/pdffileinfo/_index.md | 85 + .../pdffileinfo/bindpdf/_index.md | 41 + .../pdffileinfo/clearinfo/_index.md | 23 + .../pdffileinfo/close/_index.md | 23 + .../pdffileinfo/get_author/_index.md | 23 + .../pdffileinfo/get_creationdate/_index.md | 23 + .../pdffileinfo/get_creator/_index.md | 23 + .../pdffileinfo/get_hascollection/_index.md | 23 + .../pdffileinfo/get_haseditpassword/_index.md | 23 + .../pdffileinfo/get_hasopenpassword/_index.md | 23 + .../pdffileinfo/get_header/_index.md | 23 + .../pdffileinfo/get_inputfile/_index.md | 32 + .../pdffileinfo/get_inputstream/_index.md | 32 + .../pdffileinfo/get_isencrypted/_index.md | 23 + .../pdffileinfo/get_ispdffile/_index.md | 23 + .../pdffileinfo/get_keywords/_index.md | 23 + .../pdffileinfo/get_moddate/_index.md | 23 + .../pdffileinfo/get_numberofpages/_index.md | 23 + .../pdffileinfo/get_passwordtype/_index.md | 24 + .../pdffileinfo/get_producer/_index.md | 23 + .../pdffileinfo/get_subject/_index.md | 23 + .../pdffileinfo/get_title/_index.md | 23 + .../get_usestrictvalidation/_index.md | 23 + .../getdocumentprivilege/_index.md | 29 + .../pdffileinfo/getmetainfo/_index.md | 44 + .../pdffileinfo/getpageheight/_index.md | 45 + .../pdffileinfo/getpagerotation/_index.md | 45 + .../pdffileinfo/getpagewidth/_index.md | 45 + .../pdffileinfo/getpagexoffset/_index.md | 45 + .../pdffileinfo/getpageyoffset/_index.md | 45 + .../pdffileinfo/getpdfversion/_index.md | 28 + .../pdffileinfo/pdffileinfo/_index.md | 198 ++ .../pdffileinfo/save/_index.md | 71 + .../pdffileinfo/savenewinfo/_index.md | 87 + .../pdffileinfo/savenewinfowithxmp/_index.md | 44 + .../pdffileinfo/set_author/_index.md | 23 + .../pdffileinfo/set_creationdate/_index.md | 23 + .../pdffileinfo/set_creator/_index.md | 23 + .../pdffileinfo/set_header/_index.md | 23 + .../pdffileinfo/set_inputfile/_index.md | 32 + .../pdffileinfo/set_inputstream/_index.md | 32 + .../pdffileinfo/set_keywords/_index.md | 23 + .../pdffileinfo/set_moddate/_index.md | 23 + .../pdffileinfo/set_subject/_index.md | 23 + .../pdffileinfo/set_title/_index.md | 23 + .../set_usestrictvalidation/_index.md | 23 + .../pdffileinfo/setmetainfo/_index.md | 49 + .../aspose.pdf.facades/pdffilemend/_index.md | 66 + .../pdffilemend/addimage/_index.md | 689 +++++ .../pdffilemend/addtext/_index.md | 240 ++ .../pdffilemend/close/_index.md | 23 + .../pdffilemend/get_inputfile/_index.md | 32 + .../pdffilemend/get_inputstream/_index.md | 32 + .../pdffilemend/get_outputfile/_index.md | 32 + .../pdffilemend/get_outputstream/_index.md | 32 + .../get_textpositioningmode/_index.md | 24 + .../pdffilemend/get_wrapmode/_index.md | 24 + .../pdffilemend/pdffilemend/_index.md | 240 ++ .../pdffilemend/save/_index.md | 71 + .../pdffilemend/set_inputfile/_index.md | 32 + .../pdffilemend/set_inputstream/_index.md | 32 + .../pdffilemend/set_iswordwrap/_index.md | 23 + .../pdffilemend/set_outputfile/_index.md | 32 + .../pdffilemend/set_outputstream/_index.md | 32 + .../set_textpositioningmode/_index.md | 24 + .../pdffilemend/set_wrapmode/_index.md | 24 + .../pdffilesanitization/_index.md | 50 + .../pdffilesanitization/bindpdf/_index.md | 103 + .../pdffilesanitization/close/_index.md | 23 + .../pdffilesanitization/get_log/_index.md | 23 + .../get_userebuildxrefandtrailer/_index.md | 23 + .../get_usetrimbottom/_index.md | 23 + .../get_usetrimtop/_index.md | 23 + .../pdffilesanitization/_index.md | 23 + .../rebuildxrefandtrailer/_index.md | 23 + .../pdffilesanitization/recover/_index.md | 23 + .../pdffilesanitization/save/_index.md | 71 + .../set_userebuildxrefandtrailer/_index.md | 23 + .../set_usetrimbottom/_index.md | 23 + .../set_usetrimtop/_index.md | 23 + .../pdffilesanitization/trimbottom/_index.md | 23 + .../pdffilesanitization/trimtop/_index.md | 23 + .../pdffilesecurity/_index.md | 62 + .../pdffilesecurity/bindpdf/_index.md | 71 + .../pdffilesecurity/changepassword/_index.md | 221 ++ .../pdffilesecurity/close/_index.md | 23 + .../get_allowexceptions/_index.md | 32 + .../get_lastexception/_index.md | 23 + .../pdffilesecurity/mfdecryptfile/_index.md | 44 + .../pdffilesecurity/mfencryptfile/_index.md | 150 ++ .../pdffilesecurity/pdffilesecurity/_index.md | 240 ++ .../set_allowexceptions/_index.md | 32 + .../pdffilesecurity/set_inputfile/_index.md | 32 + .../pdffilesecurity/set_inputstream/_index.md | 32 + .../pdffilesecurity/set_outputfile/_index.md | 32 + .../set_outputstream/_index.md | 32 + .../pdffilesecurity/setprivilege/_index.md | 99 + .../trychangepassword/_index.md | 221 ++ .../pdffilesecurity/trydecryptfile/_index.md | 44 + .../pdffilesecurity/tryencryptfile/_index.md | 74 + .../pdffilesecurity/trysetprivilege/_index.md | 63 + .../pdffilesignature/_index.md | 80 + .../pdffilesignature/bindpdf/_index.md | 71 + .../pdffilesignature/certify/_index.md | 136 + .../pdffilesignature/close/_index.md | 23 + .../containssignature/_index.md | 28 + .../containsusagerights/_index.md | 28 + .../coverswholedocument/_index.md | 44 + .../extractcertificate/_index.md | 44 + .../pdffilesignature/extractimage/_index.md | 44 + .../get_iscertified/_index.md | 23 + .../get_isltvenabled/_index.md | 23 + .../get_signatureappearance/_index.md | 23 + .../get_signatureappearancestream/_index.md | 23 + .../getaccesspermissions/_index.md | 30 + .../getblanksignnames/_index.md | 28 + .../pdffilesignature/getcontactinfo/_index.md | 44 + .../pdffilesignature/getdatetime/_index.md | 44 + .../pdffilesignature/getlocation/_index.md | 44 + .../pdffilesignature/getreason/_index.md | 44 + .../pdffilesignature/getrevision/_index.md | 44 + .../pdffilesignature/getsignername/_index.md | 44 + .../pdffilesignature/getsignnames/_index.md | 44 + .../gettotalrevision/_index.md | 28 + .../iscontainsignature/_index.md | 36 + .../iscoverswholedocument/_index.md | 49 + .../pdffilesignature/_index.md | 184 ++ .../removesignature/_index.md | 80 + .../removesignatures/_index.md | 23 + .../removeusagerights/_index.md | 23 + .../pdffilesignature/save/_index.md | 94 + .../set_signatureappearance/_index.md | 23 + .../set_signatureappearancestream/_index.md | 23 + .../pdffilesignature/setcertificate/_index.md | 49 + .../pdffilesignature/sign/_index.md | 438 +++ .../verifysignature/_index.md | 44 + .../pdffilesignature/verifysigned/_index.md | 44 + .../aspose.pdf.facades/pdffilestamp/_index.md | 110 + .../pdffilestamp/addfooter/_index.md | 309 +++ .../pdffilestamp/addheader/_index.md | 306 +++ .../pdffilestamp/addpagenumber/_index.md | 408 +++ .../pdffilestamp/addstamp/_index.md | 42 + .../pdffilestamp/close/_index.md | 23 + .../pdffilestamp/get_attachmentname/_index.md | 23 + .../get_contentdisposition/_index.md | 24 + .../pdffilestamp/get_inputfile/_index.md | 32 + .../pdffilestamp/get_inputstream/_index.md | 32 + .../pdffilestamp/get_keepsecurity/_index.md | 23 + .../pdffilestamp/get_numberingstyle/_index.md | 24 + .../pdffilestamp/get_optimizesize/_index.md | 23 + .../pdffilestamp/get_outputfile/_index.md | 32 + .../pdffilestamp/get_outputstream/_index.md | 32 + .../pdffilestamp/get_pageheight/_index.md | 23 + .../get_pagenumberrotation/_index.md | 23 + .../pdffilestamp/get_pagewidth/_index.md | 23 + .../pdffilestamp/get_response/_index.md | 23 + .../pdffilestamp/get_saveoptions/_index.md | 24 + .../pdffilestamp/get_stampid/_index.md | 23 + .../pdffilestamp/get_startingnumber/_index.md | 23 + .../pdffilestamp/pdffilestamp/_index.md | 438 +++ .../pdffilestamp/posbottomleft/_index.md | 23 + .../pdffilestamp/posbottommiddle/_index.md | 23 + .../pdffilestamp/posbottomright/_index.md | 23 + .../pdffilestamp/possidesleft/_index.md | 23 + .../pdffilestamp/possidesright/_index.md | 23 + .../pdffilestamp/posupperleft/_index.md | 23 + .../pdffilestamp/posuppermiddle/_index.md | 23 + .../pdffilestamp/posupperright/_index.md | 23 + .../pdffilestamp/save/_index.md | 71 + .../pdffilestamp/set_attachmentname/_index.md | 23 + .../set_contentdisposition/_index.md | 24 + .../pdffilestamp/set_convertto/_index.md | 24 + .../pdffilestamp/set_inputfile/_index.md | 32 + .../pdffilestamp/set_inputstream/_index.md | 32 + .../pdffilestamp/set_keepsecurity/_index.md | 23 + .../pdffilestamp/set_numberingstyle/_index.md | 24 + .../pdffilestamp/set_optimizesize/_index.md | 23 + .../pdffilestamp/set_outputfile/_index.md | 32 + .../pdffilestamp/set_outputstream/_index.md | 32 + .../set_pagenumberrotation/_index.md | 23 + .../pdffilestamp/set_response/_index.md | 23 + .../pdffilestamp/set_saveoptions/_index.md | 24 + .../pdffilestamp/set_stampid/_index.md | 23 + .../pdffilestamp/set_startingnumber/_index.md | 23 + .../pdfjavascriptstripper/_index.md | 28 + .../pdfjavascriptstripper/strip/_index.md | 97 + .../pdfpageeditor/_index.md | 84 + .../pdfpageeditor/applychanges/_index.md | 23 + .../pdfpageeditor/blindh/_index.md | 23 + .../pdfpageeditor/blindv/_index.md | 23 + .../pdfpageeditor/btwipe/_index.md | 23 + .../pdfpageeditor/dglitter/_index.md | 23 + .../pdfpageeditor/dissolve/_index.md | 23 + .../get_displayduration/_index.md | 23 + .../get_horizontalalignment/_index.md | 24 + .../pdfpageeditor/get_pagerotations/_index.md | 23 + .../pdfpageeditor/get_pagesize/_index.md | 24 + .../pdfpageeditor/get_processpages/_index.md | 23 + .../pdfpageeditor/get_rotation/_index.md | 23 + .../get_transitionduration/_index.md | 23 + .../get_transitiontype/_index.md | 23 + .../get_verticalalignmenttype/_index.md | 24 + .../pdfpageeditor/get_zoom/_index.md | 23 + .../pdfpageeditor/getpageboxsize/_index.md | 54 + .../pdfpageeditor/getpagerotation/_index.md | 45 + .../pdfpageeditor/getpages/_index.md | 30 + .../pdfpageeditor/getpagesize/_index.md | 46 + .../pdfpageeditor/inbox/_index.md | 23 + .../pdfpageeditor/lrglitter/_index.md | 23 + .../pdfpageeditor/lrwipe/_index.md | 23 + .../pdfpageeditor/moveposition/_index.md | 49 + .../pdfpageeditor/outbox/_index.md | 23 + .../pdfpageeditor/pdfpageeditor/_index.md | 56 + .../pdfpageeditor/rlwipe/_index.md | 23 + .../pdfpageeditor/save/_index.md | 71 + .../set_displayduration/_index.md | 23 + .../set_horizontalalignment/_index.md | 24 + .../pdfpageeditor/set_pagerotations/_index.md | 23 + .../pdfpageeditor/set_pagesize/_index.md | 24 + .../pdfpageeditor/set_processpages/_index.md | 23 + .../pdfpageeditor/set_rotation/_index.md | 23 + .../set_transitionduration/_index.md | 23 + .../set_transitiontype/_index.md | 23 + .../set_verticalalignmenttype/_index.md | 24 + .../pdfpageeditor/set_zoom/_index.md | 23 + .../pdfpageeditor/splithin/_index.md | 23 + .../pdfpageeditor/splithout/_index.md | 23 + .../pdfpageeditor/splitvin/_index.md | 23 + .../pdfpageeditor/splitvout/_index.md | 23 + .../pdfpageeditor/tbglitter/_index.md | 23 + .../pdfpageeditor/tbwipe/_index.md | 23 + .../pdfprintpageinfo/_index.md | 27 + .../pdfprintpageinfo/get_pagenumber/_index.md | 23 + .../aspose.pdf.facades/pdfproducer/_index.md | 34 + .../pdfproducer/produce/_index.md | 577 ++++ .../_index.md | 22 + .../pdfxmpmetadata/_index.md | 70 + .../pdfxmpmetadata/add/_index.md | 223 ++ .../pdfxmpmetadata/clear/_index.md | 23 + .../pdfxmpmetadata/contains/_index.md | 116 + .../pdfxmpmetadata/containskey/_index.md | 44 + .../pdfxmpmetadata/copyto/_index.md | 50 + .../pdfxmpmetadata/get_count/_index.md | 23 + .../get_extensionfields/_index.md | 24 + .../pdfxmpmetadata/get_isfixedsize/_index.md | 23 + .../pdfxmpmetadata/get_isreadonly/_index.md | 23 + .../get_issynchronized/_index.md | 23 + .../pdfxmpmetadata/getenumerator/_index.md | 29 + .../getnamespaceuribyprefix/_index.md | 44 + .../getprefixbynamespaceuri/_index.md | 44 + .../pdfxmpmetadata/getxmpmetadata/_index.md | 64 + .../pdfxmpmetadata/idx_get/_index.md | 82 + .../pdfxmpmetadata/idx_set/_index.md | 92 + .../pdfxmpmetadata/pdfxmpmetadata/_index.md | 56 + .../registernamespaceuri/_index.md | 49 + .../pdfxmpmetadata/remove/_index.md | 113 + .../settemplateweakptr/_index.md | 40 + .../pdfxmpmetadata/trygetvalue/_index.md | 54 + .../positioningmode/_index.md | 30 + .../aspose.pdf.facades/propertyflag/_index.md | 31 + .../replacetextstrategy/_index.md | 33 + .../get_isregularexpressionused/_index.md | 23 + .../get_nocharacterbehavior/_index.md | 23 + .../get_replacescope/_index.md | 23 + .../replacetextstrategy/_index.md | 23 + .../set_isregularexpressionused/_index.md | 23 + .../set_nocharacterbehavior/_index.md | 23 + .../set_replacescope/_index.md | 23 + .../saveablefacade/_index.md | 38 + .../saveablefacade/save/_index.md | 71 + .../cpp/aspose.pdf.facades/stamp/_index.md | 51 + .../stamp/bindimage/_index.md | 72 + .../stamp/bindlogo/_index.md | 42 + .../stamp/bindpdf/_index.md | 90 + .../stamp/bindtextstate/_index.md | 41 + .../stamp/get_blendingspace/_index.md | 24 + .../stamp/get_isbackground/_index.md | 27 + .../stamp/get_opacity/_index.md | 23 + .../stamp/get_pagenumber/_index.md | 23 + .../stamp/get_pages/_index.md | 23 + .../stamp/get_quality/_index.md | 23 + .../stamp/get_rotation/_index.md | 23 + .../stamp/get_stampid/_index.md | 23 + .../stamp/set_blendingspace/_index.md | 24 + .../stamp/set_isbackground/_index.md | 27 + .../stamp/set_opacity/_index.md | 23 + .../stamp/set_pagenumber/_index.md | 23 + .../stamp/set_pages/_index.md | 23 + .../stamp/set_quality/_index.md | 23 + .../stamp/set_rotation/_index.md | 23 + .../stamp/set_stampid/_index.md | 23 + .../stamp/setimagesize/_index.md | 51 + .../stamp/setorigin/_index.md | 49 + .../aspose.pdf.facades/stamp/stamp/_index.md | 23 + .../aspose.pdf.facades/stampinfo/_index.md | 34 + .../stampinfo/get_form/_index.md | 24 + .../stampinfo/get_image/_index.md | 23 + .../stampinfo/get_indexonpage/_index.md | 23 + .../stampinfo/get_rectangle/_index.md | 24 + .../stampinfo/get_stampid/_index.md | 23 + .../stampinfo/get_stamptype/_index.md | 24 + .../stampinfo/get_text/_index.md | 23 + .../stampinfo/get_visible/_index.md | 23 + .../aspose.pdf.facades/stamptype/_index.md | 29 + .../submitformflag/_index.md | 33 + .../textproperties/_index.md | 33 + .../textproperties/get_color/_index.md | 23 + .../get_iscolorspecified/_index.md | 23 + .../get_istextsizespecified/_index.md | 23 + .../textproperties/get_textsize/_index.md | 23 + .../textproperties/set_color/_index.md | 23 + .../textproperties/set_textsize/_index.md | 23 + .../textproperties/textproperties/_index.md | 41 + .../viewerpreference/_index.md | 54 + .../viewerpreference/centerwindow/_index.md | 23 + .../viewerpreference/directionl2r/_index.md | 23 + .../viewerpreference/directionr2l/_index.md | 23 + .../displaydoctitle/_index.md | 23 + .../duplexfliplongedge/_index.md | 23 + .../duplexflipshortedge/_index.md | 23 + .../viewerpreference/fitwindow/_index.md | 23 + .../viewerpreference/hidemenubar/_index.md | 23 + .../viewerpreference/hidetoolbar/_index.md | 23 + .../viewerpreference/hidewindowui/_index.md | 23 + .../nonfullscreenpagemodeusenone/_index.md | 23 + .../nonfullscreenpagemodeuseoc/_index.md | 23 + .../_index.md | 23 + .../nonfullscreenpagemodeusethumbs/_index.md | 23 + .../pagelayoutonecolumn/_index.md | 23 + .../pagelayoutsinglepage/_index.md | 23 + .../pagelayouttwocolumnleft/_index.md | 23 + .../pagelayouttwocolumnright/_index.md | 23 + .../pagemodefullscreen/_index.md | 23 + .../pagemodeuseattachment/_index.md | 23 + .../pagemodeusenone/_index.md | 23 + .../viewerpreference/pagemodeuseoc/_index.md | 23 + .../pagemodeuseoutlines/_index.md | 23 + .../pagemodeusethumbs/_index.md | 23 + .../picktraybypdfsize/_index.md | 23 + .../printscalingappdefault/_index.md | 23 + .../printscalingnone/_index.md | 23 + .../viewerpreference/simplex/_index.md | 23 + .../aspose.pdf.facades/wordwrapmode/_index.md | 29 + english/cpp/aspose.pdf.forms/_index.md | 63 + .../aspose.pdf.forms/barcodefield/_index.md | 162 ++ .../barcodefield/barcodefield/_index.md | 95 + .../barcodefield/get_caption/_index.md | 23 + .../barcodefield/get_ecc/_index.md | 23 + .../barcodefield/get_resolution/_index.md | 23 + .../barcodefield/get_symbology/_index.md | 24 + .../barcodefield/get_xsymheight/_index.md | 23 + .../barcodefield/get_xsymwidth/_index.md | 23 + .../cpp/aspose.pdf.forms/boxstyle/_index.md | 33 + .../aspose.pdf.forms/buttonfield/_index.md | 155 ++ .../buttonfield/addimage/_index.md | 41 + .../buttonfield/buttonfield/_index.md | 110 + .../get_alternatecaption/_index.md | 23 + .../buttonfield/get_alternateicon/_index.md | 24 + .../buttonfield/get_iconfit/_index.md | 24 + .../buttonfield/get_icposition/_index.md | 24 + .../buttonfield/get_normalcaption/_index.md | 23 + .../buttonfield/get_normalicon/_index.md | 24 + .../buttonfield/get_rollovercaption/_index.md | 23 + .../buttonfield/get_rollovericon/_index.md | 24 + .../set_alternatecaption/_index.md | 23 + .../buttonfield/set_alternateicon/_index.md | 24 + .../buttonfield/set_icposition/_index.md | 24 + .../buttonfield/set_normalcaption/_index.md | 23 + .../buttonfield/set_normalicon/_index.md | 24 + .../buttonfield/set_rollovercaption/_index.md | 23 + .../buttonfield/set_rollovericon/_index.md | 24 + .../aspose.pdf.forms/checkboxfield/_index.md | 150 ++ .../checkboxfield/addoption/_index.md | 133 + .../checkboxfield/checkboxfield/_index.md | 143 + .../checkboxfield/clone/_index.md | 28 + .../checkboxfield/get_activestate/_index.md | 23 + .../checkboxfield/get_allowedstates/_index.md | 28 + .../checkboxfield/get_checked/_index.md | 23 + .../checkboxfield/get_exportvalue/_index.md | 23 + .../checkboxfield/get_style/_index.md | 24 + .../checkboxfield/get_value/_index.md | 23 + .../checkboxfield/set_activestate/_index.md | 23 + .../checkboxfield/set_checked/_index.md | 23 + .../checkboxfield/set_exportvalue/_index.md | 23 + .../checkboxfield/set_style/_index.md | 24 + .../checkboxfield/set_value/_index.md | 23 + .../aspose.pdf.forms/choicefield/_index.md | 151 ++ .../choicefield/addoption/_index.md | 80 + .../choicefield/choicefield/_index.md | 130 + .../choicefield/deleteoption/_index.md | 40 + .../get_commitimmediately/_index.md | 23 + .../choicefield/get_multiselect/_index.md | 23 + .../choicefield/get_options/_index.md | 24 + .../choicefield/get_selected/_index.md | 23 + .../choicefield/get_selecteditems/_index.md | 23 + .../choicefield/get_value/_index.md | 23 + .../set_commitimmediately/_index.md | 23 + .../choicefield/set_multiselect/_index.md | 23 + .../choicefield/set_selected/_index.md | 23 + .../choicefield/set_selecteditems/_index.md | 23 + .../choicefield/set_value/_index.md | 23 + .../aspose.pdf.forms/comboboxfield/_index.md | 159 ++ .../comboboxfield/comboboxfield/_index.md | 144 + .../comboboxfield/get_editable/_index.md | 23 + .../comboboxfield/get_spellcheck/_index.md | 23 + .../comboboxfield/set_editable/_index.md | 23 + .../comboboxfield/set_spellcheck/_index.md | 23 + .../cpp/aspose.pdf.forms/datefield/_index.md | 165 ++ .../datefield/addimage/_index.md | 48 + .../datefield/datefield/_index.md | 144 + .../datefield/get_dateformat/_index.md | 27 + .../datefield/get_datetimevalue/_index.md | 23 + .../aspose.pdf.forms/datefield/init/_index.md | 41 + .../datefield/set_dateformat/_index.md | 27 + .../datefield/set_datetimevalue/_index.md | 23 + .../docmdpaccesspermissions/_index.md | 30 + .../docmdpsignature/_index.md | 28 + .../docmdpsignature/docmdpsignature/_index.md | 51 + .../get_accesspermissions/_index.md | 24 + .../externalsignature/_index.md | 58 + .../externalsignature/_index.md | 120 + .../get_certificate/_index.md | 23 + english/cpp/aspose.pdf.forms/field/_index.md | 137 + .../aspose.pdf.forms/field/copyto/_index.md | 55 + .../field/copytowidgetarray/_index.md | 50 + .../field/executefieldjavascript/_index.md | 41 + .../aspose.pdf.forms/field/field/_index.md | 42 + .../field/get_alternatename/_index.md | 23 + .../field/get_annotationindex/_index.md | 23 + .../field/get_count/_index.md | 23 + .../field/get_fitintorectangle/_index.md | 23 + .../field/get_isgroup/_index.md | 23 + .../field/get_issharedfield/_index.md | 23 + .../field/get_issynchronized/_index.md | 23 + .../field/get_mappingname/_index.md | 23 + .../field/get_maxfontsize/_index.md | 23 + .../field/get_minfontsize/_index.md | 23 + .../field/get_pageindex/_index.md | 23 + .../field/get_partialname/_index.md | 23 + .../aspose.pdf.forms/field/get_rect/_index.md | 24 + .../field/get_syncroot/_index.md | 23 + .../field/get_taborder/_index.md | 23 + .../field/get_value/_index.md | 23 + .../field/getenumerator/_index.md | 29 + .../aspose.pdf.forms/field/idx_get/_index.md | 81 + .../field/recalculate/_index.md | 28 + .../field/set_alternatename/_index.md | 23 + .../field/set_annotationindex/_index.md | 23 + .../field/set_fitintorectangle/_index.md | 23 + .../field/set_issharedfield/_index.md | 23 + .../field/set_mappingname/_index.md | 23 + .../field/set_maxfontsize/_index.md | 23 + .../field/set_minfontsize/_index.md | 23 + .../field/set_partialname/_index.md | 23 + .../aspose.pdf.forms/field/set_rect/_index.md | 24 + .../field/set_taborder/_index.md | 23 + .../field/set_value/_index.md | 23 + .../field/setposition/_index.md | 42 + .../field/settemplateweakptr/_index.md | 40 + .../fileselectboxfield/_index.md | 154 ++ english/cpp/aspose.pdf.forms/form/_index.md | 69 + .../cpp/aspose.pdf.forms/form/add/_index.md | 141 + .../form/addfieldappearance/_index.md | 62 + .../aspose.pdf.forms/form/assignxfa/_index.md | 40 + .../aspose.pdf.forms/form/copyto/_index.md | 50 + .../aspose.pdf.forms/form/delete/_index.md | 73 + .../aspose.pdf.forms/form/flatten/_index.md | 23 + .../form/get_autorecalculate/_index.md | 23 + .../form/get_autorestoreform/_index.md | 23 + .../aspose.pdf.forms/form/get_count/_index.md | 23 + .../form/get_defaultappearance/_index.md | 24 + .../form/get_defaultresources/_index.md | 24 + .../form/get_emulaterequierdgroups/_index.md | 23 + .../form/get_fields/_index.md | 24 + .../form/get_ignoreneedsrendering/_index.md | 23 + .../form/get_issynchronized/_index.md | 23 + .../form/get_removepermission/_index.md | 23 + .../form/get_signaturesappendonly/_index.md | 23 + .../form/get_signaturesexist/_index.md | 23 + .../form/get_syncroot/_index.md | 23 + .../aspose.pdf.forms/form/get_type/_index.md | 24 + .../aspose.pdf.forms/form/get_xfa/_index.md | 24 + .../form/getenumerator/_index.md | 29 + .../form/getfieldsinrect/_index.md | 47 + .../aspose.pdf.forms/form/hasfield/_index.md | 136 + .../aspose.pdf.forms/form/idx_get/_index.md | 81 + .../makeformannotationsindependent/_index.md | 41 + .../form/removefieldappearance/_index.md | 51 + .../form/set_autorecalculate/_index.md | 23 + .../form/set_autorestoreform/_index.md | 23 + .../form/set_calculatedfields/_index.md | 24 + .../form/set_defaultappearance/_index.md | 24 + .../form/set_emulaterequierdgroups/_index.md | 23 + .../form/set_ignoreneedsrendering/_index.md | 23 + .../form/set_removepermission/_index.md | 23 + .../form/set_signaturesappendonly/_index.md | 23 + .../form/set_signaturesexist/_index.md | 23 + .../aspose.pdf.forms/form/set_type/_index.md | 24 + .../cpp/aspose.pdf.forms/formtype/_index.md | 30 + .../iconcaptionposition/_index.md | 34 + .../cpp/aspose.pdf.forms/iconfit/_index.md | 40 + .../iconfit/get_leftoverbottom/_index.md | 23 + .../iconfit/get_leftoverleft/_index.md | 23 + .../iconfit/get_scalingmode/_index.md | 24 + .../iconfit/get_scalingreason/_index.md | 24 + .../iconfit/get_spreadonborder/_index.md | 23 + .../iconfit/nametoscalingmode/_index.md | 45 + .../iconfit/nametoscalingreason/_index.md | 45 + .../iconfit/scalingmodetoname/_index.md | 45 + .../iconfit/scalingreasontoname/_index.md | 45 + .../iconfit/set_leftoverbottom/_index.md | 23 + .../iconfit/set_leftoverleft/_index.md | 23 + .../iconfit/set_scalingmode/_index.md | 24 + .../iconfit/set_scalingreason/_index.md | 24 + .../iconfit/set_spreadonborder/_index.md | 23 + .../aspose.pdf.forms/listboxfield/_index.md | 156 ++ .../listboxfield/get_topindex/_index.md | 23 + .../listboxfield/listboxfield/_index.md | 111 + .../listboxfield/set_selected/_index.md | 23 + .../listboxfield/set_selecteditems/_index.md | 23 + .../listboxfield/set_topindex/_index.md | 23 + .../aspose.pdf.forms/numberfield/_index.md | 160 ++ .../numberfield/get_allowedchars/_index.md | 27 + .../numberfield/numberfield/_index.md | 111 + .../numberfield/set_allowedchars/_index.md | 27 + english/cpp/aspose.pdf.forms/option/_index.md | 33 + .../option/get_index/_index.md | 23 + .../option/get_name/_index.md | 23 + .../option/get_selected/_index.md | 23 + .../option/get_value/_index.md | 23 + .../option/set_name/_index.md | 23 + .../option/set_selected/_index.md | 23 + .../option/set_value/_index.md | 23 + .../optioncollection/_index.md | 43 + .../optioncollection/add/_index.md | 44 + .../optioncollection/clear/_index.md | 23 + .../optioncollection/contains/_index.md | 48 + .../optioncollection/copyto/_index.md | 50 + .../optioncollection/get/_index.md | 83 + .../optioncollection/get_count/_index.md | 23 + .../optioncollection/get_isreadonly/_index.md | 23 + .../get_issynchronized/_index.md | 23 + .../optioncollection/get_syncroot/_index.md | 23 + .../optioncollection/getenumerator/_index.md | 29 + .../optioncollection/idx_get/_index.md | 81 + .../optioncollection/remove/_index.md | 48 + .../passwordboxfield/_index.md | 154 ++ english/cpp/aspose.pdf.forms/pkcs1/_index.md | 58 + .../aspose.pdf.forms/pkcs1/pkcs1/_index.md | 135 + english/cpp/aspose.pdf.forms/pkcs7/_index.md | 57 + .../aspose.pdf.forms/pkcs7/pkcs7/_index.md | 104 + .../aspose.pdf.forms/pkcs7detached/_index.md | 58 + .../pkcs7detached/pkcs7detached/_index.md | 134 + .../radiobuttonfield/_index.md | 167 ++ .../radiobuttonfield/add/_index.md | 41 + .../radiobuttonfield/addoption/_index.md | 81 + .../get_notoggletooff/_index.md | 33 + .../radiobuttonfield/get_options/_index.md | 24 + .../radiobuttonfield/get_pageindex/_index.md | 23 + .../radiobuttonfield/get_selected/_index.md | 23 + .../radiobuttonfield/get_style/_index.md | 24 + .../radiobuttonfield/get_value/_index.md | 23 + .../radiobuttonfield/_index.md | 75 + .../set_notoggletooff/_index.md | 33 + .../radiobuttonfield/set_selected/_index.md | 23 + .../radiobuttonfield/set_style/_index.md | 24 + .../radiobuttonfield/set_value/_index.md | 23 + .../radiobuttonfield/setposition/_index.md | 41 + .../radiobuttonoptionfield/_index.md | 144 + .../get_caption/_index.md | 24 + .../get_optionname/_index.md | 23 + .../get_style/_index.md | 24 + .../radiobuttonoptionfield/_index.md | 66 + .../set_caption/_index.md | 24 + .../set_optionname/_index.md | 23 + .../set_style/_index.md | 24 + .../richtextboxfield/_index.md | 163 ++ .../get_formattedvalue/_index.md | 23 + .../richtextboxfield/get_justify/_index.md | 24 + .../get_richtextvalue/_index.md | 23 + .../richtextboxfield/get_style/_index.md | 23 + .../richtextboxfield/get_value/_index.md | 23 + .../richtextboxfield/_index.md | 52 + .../set_formattedvalue/_index.md | 23 + .../richtextboxfield/set_justify/_index.md | 24 + .../set_richtextvalue/_index.md | 23 + .../richtextboxfield/set_style/_index.md | 23 + .../richtextboxfield/set_value/_index.md | 23 + .../aspose.pdf.forms/scalingmode/_index.md | 29 + .../aspose.pdf.forms/scalingreason/_index.md | 31 + .../cpp/aspose.pdf.forms/signature/_index.md | 53 + .../signature/get_authority/_index.md | 23 + .../signature/get_byterange/_index.md | 23 + .../signature/get_contactinfo/_index.md | 23 + .../signature/get_customappearance/_index.md | 24 + .../signature/get_customsignhash/_index.md | 24 + .../signature/get_date/_index.md | 23 + .../signature/get_location/_index.md | 23 + .../signature/get_ocspsettings/_index.md | 24 + .../signature/get_reason/_index.md | 23 + .../signature/get_showproperties/_index.md | 35 + .../signature/get_timestampsettings/_index.md | 24 + .../signature/get_useltv/_index.md | 23 + .../signature/set_authority/_index.md | 23 + .../signature/set_contactinfo/_index.md | 23 + .../signature/set_customappearance/_index.md | 24 + .../signature/set_customsignhash/_index.md | 24 + .../signature/set_date/_index.md | 23 + .../signature/set_location/_index.md | 23 + .../signature/set_ocspsettings/_index.md | 24 + .../signature/set_reason/_index.md | 23 + .../signature/set_showproperties/_index.md | 35 + .../signature/set_timestampsettings/_index.md | 24 + .../signature/set_useltv/_index.md | 23 + .../signature/signature/_index.md | 103 + .../signature/verify/_index.md | 28 + .../signaturecustomappearance/_index.md | 63 + .../get_backgroundcolor/_index.md | 24 + .../get_contactinfolabel/_index.md | 23 + .../get_culture/_index.md | 23 + .../get_datesignedatlabel/_index.md | 23 + .../get_datetimeformat/_index.md | 23 + .../get_datetimelocalformat/_index.md | 23 + .../get_digitalsignedlabel/_index.md | 23 + .../get_digitalsubjectformat/_index.md | 24 + .../get_fontfamilyname/_index.md | 23 + .../get_fontsize/_index.md | 23 + .../get_foregroundcolor/_index.md | 24 + .../get_locationlabel/_index.md | 23 + .../get_reasonlabel/_index.md | 23 + .../get_rotation/_index.md | 24 + .../get_showcontactinfo/_index.md | 23 + .../get_showlocation/_index.md | 23 + .../get_showreason/_index.md | 23 + .../get_usedigitalsubjectformat/_index.md | 23 + .../set_backgroundcolor/_index.md | 24 + .../set_contactinfolabel/_index.md | 23 + .../set_culture/_index.md | 23 + .../set_datesignedatlabel/_index.md | 23 + .../set_datetimeformat/_index.md | 23 + .../set_datetimelocalformat/_index.md | 23 + .../set_digitalsignedlabel/_index.md | 23 + .../set_digitalsubjectformat/_index.md | 24 + .../set_fontfamilyname/_index.md | 23 + .../set_fontsize/_index.md | 23 + .../set_foregroundcolor/_index.md | 24 + .../set_locationlabel/_index.md | 23 + .../set_reasonlabel/_index.md | 23 + .../set_rotation/_index.md | 24 + .../set_showcontactinfo/_index.md | 23 + .../set_showlocation/_index.md | 23 + .../set_showreason/_index.md | 23 + .../set_usedigitalsubjectformat/_index.md | 23 + .../signaturecustomappearance/_index.md | 23 + .../aspose.pdf.forms/signaturefield/_index.md | 144 + .../extractcertificate/_index.md | 28 + .../signaturefield/extractimage/_index.md | 64 + .../signaturefield/get_signature/_index.md | 24 + .../signaturefield/sign/_index.md | 93 + .../signaturefield/signaturefield/_index.md | 95 + .../signaturesubjectformatter/_index.md | 28 + .../formatsubject/_index.md | 24 + .../signaturesubjectformatter/_index.md | 23 + .../cpp/aspose.pdf.forms/signhash/_index.md | 22 + .../subjectnameelements/_index.md | 34 + .../cpp/aspose.pdf.forms/symbology/_index.md | 30 + .../symbologyconverter/_index.md | 28 + .../symbologyconverter/toenum/_index.md | 24 + .../symbologyconverter/tostring/_index.md | 24 + .../aspose.pdf.forms/textboxfield/_index.md | 154 ++ .../textboxfield/addbarcode/_index.md | 40 + .../textboxfield/addimage/_index.md | 41 + .../textboxfield/get_forcecombs/_index.md | 23 + .../textboxfield/get_maxlen/_index.md | 23 + .../textboxfield/get_multiline/_index.md | 23 + .../textboxfield/get_scrollable/_index.md | 23 + .../textboxfield/get_spellcheck/_index.md | 23 + .../get_textverticalalignment/_index.md | 24 + .../textboxfield/get_value/_index.md | 23 + .../textboxfield/set_forcecombs/_index.md | 23 + .../textboxfield/set_maxlen/_index.md | 23 + .../textboxfield/set_multiline/_index.md | 23 + .../textboxfield/set_scrollable/_index.md | 23 + .../textboxfield/set_spellcheck/_index.md | 23 + .../set_textverticalalignment/_index.md | 24 + .../textboxfield/set_value/_index.md | 23 + .../textboxfield/textboxfield/_index.md | 144 + english/cpp/aspose.pdf.forms/xfa/_index.md | 38 + .../aspose.pdf.forms/xfa/get_config/_index.md | 23 + .../xfa/get_datasets/_index.md | 23 + .../xfa/get_fieldnames/_index.md | 23 + .../aspose.pdf.forms/xfa/get_form/_index.md | 23 + .../xfa/get_namespacemanager/_index.md | 23 + .../xfa/get_template/_index.md | 23 + .../aspose.pdf.forms/xfa/get_xdp/_index.md | 23 + .../xfa/getfieldtemplate/_index.md | 44 + .../xfa/getfieldtemplates/_index.md | 28 + .../aspose.pdf.forms/xfa/idx_get/_index.md | 44 + .../aspose.pdf.forms/xfa/idx_set/_index.md | 49 + .../xfa/setfieldimage/_index.md | 49 + .../_index.md | 17 + .../pdftypeobjectcreator/_index.md | 30 + .../createextractor/_index.md | 245 ++ .../cpp/aspose.pdf.groupprocessor/_index.md | 20 + .../extractorfactory/_index.md | 32 + .../extractorfactory/_index.md | 23 + .../extractorfactory/pdf/_index.md | 23 + .../idocumentpagetextextractor/_index.md | 28 + .../extractpagetext/_index.md | 45 + .../get_pagecount/_index.md | 23 + .../idocumenttextextractor/_index.md | 27 + .../extractalltext/_index.md | 28 + .../ipdftypeextractor/_index.md | 36 + .../ipdftypeextractor/dispose/_index.md | 23 + .../extractalltext/_index.md | 28 + .../extractpagetext/_index.md | 45 + .../get_isfastextractionused/_index.md | 23 + .../ipdftypeextractor/get_pagecount/_index.md | 23 + .../ipdftypeextractor/get_version/_index.md | 23 + .../cpp/aspose.pdf.logicalstructure/_index.md | 89 + .../annotationelement/_index.md | 63 + .../get_alternatedescriptions/_index.md | 23 + .../set_alternatedescriptions/_index.md | 23 + .../annotelement/_index.md | 63 + .../artelement/_index.md | 61 + .../attributekey/_index.md | 75 + .../attributekey/backgroundcolor/_index.md | 23 + .../attributekey/baselineshift/_index.md | 23 + .../attributekey/bbox/_index.md | 23 + .../attributekey/blockalign/_index.md | 23 + .../attributekey/bordercolor/_index.md | 23 + .../attributekey/borderstyle/_index.md | 23 + .../attributekey/borderthickness/_index.md | 23 + .../attributekey/checked/_index.md | 23 + .../attributekey/color/_index.md | 23 + .../attributekey/colspan/_index.md | 23 + .../attributekey/columncount/_index.md | 23 + .../attributekey/columngap/_index.md | 23 + .../attributekey/columnwidths/_index.md | 23 + .../attributekey/desc/_index.md | 23 + .../attributekey/endindent/_index.md | 23 + .../attributekey/get_key/_index.md | 27 + .../attributekey/get_owner/_index.md | 28 + .../glyphorientationvertical/_index.md | 23 + .../attributekey/headers/_index.md | 23 + .../attributekey/height/_index.md | 23 + .../attributekey/inlinealign/_index.md | 23 + .../attributekey/lineheight/_index.md | 23 + .../attributekey/listnumbering/_index.md | 23 + .../attributekey/padding/_index.md | 23 + .../attributekey/placement/_index.md | 23 + .../attributekey/role/_index.md | 23 + .../attributekey/rowspan/_index.md | 23 + .../attributekey/rubyalign/_index.md | 23 + .../attributekey/rubyposition/_index.md | 23 + .../attributekey/scope/_index.md | 23 + .../attributekey/spaceafter/_index.md | 23 + .../attributekey/spacebefore/_index.md | 23 + .../attributekey/startindent/_index.md | 23 + .../attributekey/summary/_index.md | 23 + .../attributekey/tborderstyle/_index.md | 23 + .../attributekey/textalign/_index.md | 23 + .../textdecorationcolor/_index.md | 23 + .../textdecorationthickness/_index.md | 23 + .../attributekey/textdecorationtype/_index.md | 23 + .../attributekey/textindent/_index.md | 23 + .../attributekey/to_attributekey/_index.md | 24 + .../attributekey/tostring/_index.md | 28 + .../attributekey/tpadding/_index.md | 23 + .../attributekey/width/_index.md | 23 + .../attributekey/writingmode/_index.md | 23 + .../attributename/_index.md | 100 + .../attributename/blockalign_after/_index.md | 23 + .../attributename/blockalign_before/_index.md | 23 + .../blockalign_justify/_index.md | 23 + .../attributename/blockalign_middle/_index.md | 23 + .../borderstyle_dashed/_index.md | 23 + .../borderstyle_dotted/_index.md | 23 + .../borderstyle_double/_index.md | 23 + .../borderstyle_groove/_index.md | 23 + .../borderstyle_hidden/_index.md | 23 + .../attributename/borderstyle_inset/_index.md | 23 + .../attributename/borderstyle_none/_index.md | 23 + .../borderstyle_outset/_index.md | 23 + .../attributename/borderstyle_ridge/_index.md | 23 + .../attributename/borderstyle_solid/_index.md | 23 + .../attributename/checked_neutral/_index.md | 23 + .../attributename/checked_off/_index.md | 23 + .../attributename/checked_on/_index.md | 23 + .../fromnameattributekey/_index.md | 55 + .../attributename/get_attributekey/_index.md | 24 + .../attributename/get_name/_index.md | 23 + .../glyphorientationvertical_auto/_index.md | 23 + .../attributename/height_auto/_index.md | 23 + .../inlinealign_center/_index.md | 23 + .../attributename/inlinealign_end/_index.md | 23 + .../attributename/inlinealign_start/_index.md | 23 + .../attributename/lineheight_auto/_index.md | 23 + .../attributename/lineheight_normal/_index.md | 23 + .../listnumbering_circle/_index.md | 23 + .../listnumbering_decimal/_index.md | 23 + .../listnumbering_disc/_index.md | 23 + .../listnumbering_loweralpha/_index.md | 23 + .../listnumbering_lowerroman/_index.md | 23 + .../listnumbering_none/_index.md | 23 + .../listnumbering_square/_index.md | 23 + .../listnumbering_upperalpha/_index.md | 23 + .../listnumbering_upperroman/_index.md | 23 + .../attributename/placement_before/_index.md | 23 + .../attributename/placement_block/_index.md | 23 + .../attributename/placement_end/_index.md | 23 + .../attributename/placement_inline/_index.md | 23 + .../attributename/placement_start/_index.md | 23 + .../attributename/role_cb/_index.md | 23 + .../attributename/role_pb/_index.md | 23 + .../attributename/role_rb/_index.md | 23 + .../attributename/role_tv/_index.md | 23 + .../attributename/rubyalign_center/_index.md | 23 + .../rubyalign_distribute/_index.md | 23 + .../attributename/rubyalign_end/_index.md | 23 + .../attributename/rubyalign_justify/_index.md | 23 + .../attributename/rubyalign_start/_index.md | 23 + .../rubyposition_after/_index.md | 23 + .../rubyposition_before/_index.md | 23 + .../rubyposition_inline/_index.md | 23 + .../rubyposition_warichu/_index.md | 23 + .../attributename/scope_both/_index.md | 23 + .../attributename/scope_column/_index.md | 23 + .../attributename/scope_row/_index.md | 23 + .../attributename/textalign_center/_index.md | 23 + .../attributename/textalign_end/_index.md | 23 + .../attributename/textalign_justify/_index.md | 23 + .../attributename/textalign_start/_index.md | 23 + .../textdecorationtype_linethrough/_index.md | 23 + .../textdecorationtype_none/_index.md | 23 + .../textdecorationtype_overline/_index.md | 23 + .../textdecorationtype_underline/_index.md | 23 + .../attributename/tostring/_index.md | 28 + .../attributename/width_auto/_index.md | 23 + .../attributename/writingmode_lrtb/_index.md | 23 + .../attributename/writingmode_rltb/_index.md | 23 + .../attributename/writingmode_tbrl/_index.md | 23 + .../attributeownerstandard/_index.md | 40 + .../attributeownerstandard/css_100/_index.md | 24 + .../attributeownerstandard/css_200/_index.md | 24 + .../get_owner/_index.md | 27 + .../attributeownerstandard/html_320/_index.md | 24 + .../attributeownerstandard/html_401/_index.md | 24 + .../attributeownerstandard/layout/_index.md | 24 + .../attributeownerstandard/list/_index.md | 24 + .../attributeownerstandard/oeb_100/_index.md | 24 + .../printfield/_index.md | 24 + .../attributeownerstandard/rtf_105/_index.md | 24 + .../attributeownerstandard/table/_index.md | 24 + .../to_attributeownerstandard/_index.md | 24 + .../attributeownerstandard/tostring/_index.md | 28 + .../attributeownerstandard/xml_100/_index.md | 24 + .../bibentryelement/_index.md | 61 + .../blockquoteelement/_index.md | 61 + .../blselement/_index.md | 61 + .../blstextelement/_index.md | 65 + .../get_structuretextstate/_index.md | 28 + .../blstextelement/settext/_index.md | 41 + .../captionelement/_index.md | 61 + .../codeelement/_index.md | 63 + .../divelement/_index.md | 61 + .../documentelement/_index.md | 61 + .../element/_index.md | 39 + .../element/appendchild/_index.md | 53 + .../element/clearchilds/_index.md | 23 + .../element/findelements/_index.md | 57 + .../element/get_childelements/_index.md | 28 + .../element/get_parentelement/_index.md | 28 + .../element/insertchild/_index.md | 63 + .../element/removechild/_index.md | 40 + .../element/tag/_index.md | 198 ++ .../element/tostring/_index.md | 28 + .../elementlist/_index.md | 30 + .../elementlist/get_count/_index.md | 23 + .../elementlist/getenumerator/_index.md | 29 + .../elementlist/idx_get/_index.md | 45 + .../elementlist/item/_index.md | 45 + .../elementlistimplementation/_index.md | 36 + .../addelement/_index.md | 50 + .../elementlistimplementation/_index.md | 24 + .../get_count/_index.md | 23 + .../getenumerator/_index.md | 29 + .../insertelement/_index.md | 59 + .../elementlistimplementation/item/_index.md | 45 + .../removeat/_index.md | 49 + .../removeelement/_index.md | 50 + .../figureelement/_index.md | 63 + .../formelement/_index.md | 63 + .../formulaelement/_index.md | 63 + .../groupingelement/_index.md | 61 + .../headerelement/_index.md | 63 + .../illustrationelement/_index.md | 63 + .../illustrationelement/setimage/_index.md | 102 + .../ilselement/_index.md | 61 + .../ilstextelement/_index.md | 65 + .../get_structuretextstate/_index.md | 28 + .../ilstextelement/settext/_index.md | 41 + .../indexelement/_index.md | 61 + .../itextelement/_index.md | 28 + .../get_structuretextstate/_index.md | 28 + .../itextelement/settext/_index.md | 41 + .../linkelement/_index.md | 69 + .../linkelement/get_hyperlink/_index.md | 24 + .../get_structuretextstate/_index.md | 28 + .../linkelement/set_hyperlink/_index.md | 24 + .../linkelement/settext/_index.md | 41 + .../listchildelement/_index.md | 61 + .../listelement/_index.md | 61 + .../listlblelement/_index.md | 61 + .../listlbodyelement/_index.md | 61 + .../listlielement/_index.md | 61 + .../mcrelement/_index.md | 43 + .../mcrelement/get_content/_index.md | 31 + .../mcrelement/get_imagesrc/_index.md | 31 + .../mcrelement/get_mcid/_index.md | 27 + .../mcrelement/tag/_index.md | 198 ++ .../mcrelement/tostring/_index.md | 28 + .../nonstructelement/_index.md | 61 + .../noteelement/_index.md | 63 + .../objrelement/_index.md | 40 + .../objrelement/tag/_index.md | 198 ++ .../objrelement/tostring/_index.md | 28 + .../paragraphelement/_index.md | 63 + .../partelement/_index.md | 61 + .../privateelement/_index.md | 61 + .../quoteelement/_index.md | 63 + .../referenceelement/_index.md | 61 + .../rubychildelement/_index.md | 61 + .../rubyelement/_index.md | 61 + .../rubyrbelement/_index.md | 61 + .../rubyrpelement/_index.md | 61 + .../rubyrtelement/_index.md | 61 + .../sectelement/_index.md | 61 + .../spanelement/_index.md | 63 + .../structtreerootelement/_index.md | 40 + .../structtreerootelement/tag/_index.md | 198 ++ .../structureattribute/_index.md | 42 + .../get_isinitializedvalue/_index.md | 23 + .../structureattribute/get_key/_index.md | 28 + .../getarraynumbervalue/_index.md | 28 + .../getarrayvalue/_index.md | 29 + .../structureattribute/getnamevalue/_index.md | 29 + .../getnumbervalue/_index.md | 28 + .../getstringvalue/_index.md | 28 + .../setarraynumbervalue/_index.md | 40 + .../setarrayvalue/_index.md | 41 + .../setcolorvalue/_index.md | 42 + .../structureattribute/setnamevalue/_index.md | 41 + .../setnumbervalue/_index.md | 40 + .../setrectanglevalue/_index.md | 42 + .../setstringvalue/_index.md | 40 + .../structureattribute/_index.md | 41 + .../structureattribute/tostring/_index.md | 28 + .../structureattributecollection/_index.md | 28 + .../createattributes/_index.md | 46 + .../getattributes/_index.md | 46 + .../structureattributes/_index.md | 29 + .../structureattributes/get_owner/_index.md | 28 + .../getattribute/_index.md | 47 + .../setattribute/_index.md | 42 + .../structureelement/_index.md | 61 + .../changeparentelement/_index.md | 41 + .../structureelement/clearid/_index.md | 23 + .../structureelement/generateid/_index.md | 23 + .../structureelement/get_actualtext/_index.md | 27 + .../get_alternativetext/_index.md | 27 + .../structureelement/get_attributes/_index.md | 28 + .../get_defaultattributeowner/_index.md | 28 + .../get_expansiontext/_index.md | 27 + .../structureelement/get_id/_index.md | 27 + .../structureelement/get_language/_index.md | 27 + .../structureelement/get_page/_index.md | 24 + .../get_structuretype/_index.md | 28 + .../structureelement/get_title/_index.md | 27 + .../structureelement/remove/_index.md | 23 + .../structureelement/set_actualtext/_index.md | 27 + .../set_alternativetext/_index.md | 27 + .../set_expansiontext/_index.md | 27 + .../structureelement/set_language/_index.md | 27 + .../structureelement/set_title/_index.md | 27 + .../structureelement/setid/_index.md | 40 + .../structureelement/settag/_index.md | 40 + .../structureelement/tag/_index.md | 198 ++ .../structureelement/tostring/_index.md | 28 + .../structuretextstate/_index.md | 54 + .../get_backgroundcolor/_index.md | 28 + .../get_characterspacing/_index.md | 27 + .../structuretextstate/get_font/_index.md | 28 + .../structuretextstate/get_fontsize/_index.md | 27 + .../get_fontstyle/_index.md | 28 + .../get_foregroundcolor/_index.md | 28 + .../get_horizontalscaling/_index.md | 27 + .../get_linespacing/_index.md | 27 + .../get_margininfo/_index.md | 24 + .../get_strikeout/_index.md | 27 + .../get_subscript/_index.md | 27 + .../get_superscript/_index.md | 27 + .../get_underline/_index.md | 27 + .../get_wordspacing/_index.md | 27 + .../set_backgroundcolor/_index.md | 28 + .../set_characterspacing/_index.md | 27 + .../structuretextstate/set_font/_index.md | 28 + .../structuretextstate/set_fontsize/_index.md | 27 + .../set_fontstyle/_index.md | 28 + .../set_foregroundcolor/_index.md | 28 + .../set_horizontalscaling/_index.md | 27 + .../set_linespacing/_index.md | 27 + .../set_margininfo/_index.md | 24 + .../set_strikeout/_index.md | 27 + .../set_subscript/_index.md | 27 + .../set_superscript/_index.md | 27 + .../set_underline/_index.md | 27 + .../set_wordspacing/_index.md | 27 + .../structuretypecategory/_index.md | 32 + .../structuretypecategory/blses/_index.md | 24 + .../groupingelements/_index.md | 24 + .../illustrationelements/_index.md | 24 + .../structuretypecategory/ilses/_index.md | 24 + .../to_structuretypecategory/_index.md | 24 + .../structuretypecategory/tostring/_index.md | 28 + .../structuretypestandard/_index.md | 83 + .../structuretypestandard/annot/_index.md | 23 + .../structuretypestandard/art/_index.md | 23 + .../structuretypestandard/bibentry/_index.md | 29 + .../blockquote/_index.md | 23 + .../structuretypestandard/caption/_index.md | 23 + .../structuretypestandard/code/_index.md | 23 + .../structuretypestandard/div/_index.md | 23 + .../structuretypestandard/document/_index.md | 23 + .../structuretypestandard/figure/_index.md | 23 + .../structuretypestandard/form/_index.md | 23 + .../structuretypestandard/formula/_index.md | 29 + .../get_category/_index.md | 28 + .../structuretypestandard/get_tag/_index.md | 27 + .../structuretypestandard/h/_index.md | 23 + .../structuretypestandard/h1/_index.md | 23 + .../structuretypestandard/h2/_index.md | 23 + .../structuretypestandard/h3/_index.md | 23 + .../structuretypestandard/h4/_index.md | 23 + .../structuretypestandard/h5/_index.md | 23 + .../structuretypestandard/h6/_index.md | 23 + .../structuretypestandard/index/_index.md | 23 + .../structuretypestandard/l/_index.md | 23 + .../structuretypestandard/lbl/_index.md | 23 + .../structuretypestandard/lbody/_index.md | 23 + .../structuretypestandard/li/_index.md | 23 + .../structuretypestandard/link/_index.md | 23 + .../structuretypestandard/nonstruct/_index.md | 23 + .../structuretypestandard/note/_index.md | 29 + .../structuretypestandard/p/_index.md | 23 + .../structuretypestandard/part/_index.md | 23 + .../structuretypestandard/private/_index.md | 23 + .../structuretypestandard/quote/_index.md | 29 + .../structuretypestandard/rb/_index.md | 23 + .../structuretypestandard/reference/_index.md | 23 + .../structuretypestandard/rp/_index.md | 23 + .../structuretypestandard/rt/_index.md | 23 + .../structuretypestandard/ruby/_index.md | 29 + .../structuretypestandard/sect/_index.md | 23 + .../structuretypestandard/span/_index.md | 23 + .../structuretypestandard/table/_index.md | 23 + .../structuretypestandard/tbody/_index.md | 23 + .../structuretypestandard/td/_index.md | 23 + .../structuretypestandard/tfoot/_index.md | 23 + .../structuretypestandard/th/_index.md | 23 + .../structuretypestandard/thead/_index.md | 23 + .../to_structuretypestandard/_index.md | 24 + .../structuretypestandard/toc/_index.md | 29 + .../structuretypestandard/toci/_index.md | 71 + .../structuretypestandard/tostring/_index.md | 28 + .../structuretypestandard/tr/_index.md | 23 + .../structuretypestandard/warichu/_index.md | 29 + .../structuretypestandard/wp/_index.md | 23 + .../structuretypestandard/wt/_index.md | 23 + .../tablecellelement/_index.md | 85 + .../tablecellelement/get_alignment/_index.md | 24 + .../get_backgroundcolor/_index.md | 24 + .../tablecellelement/get_border/_index.md | 24 + .../tablecellelement/get_colspan/_index.md | 23 + .../get_defaultcelltextstate/_index.md | 24 + .../tablecellelement/get_isnoborder/_index.md | 23 + .../get_iswordwrapped/_index.md | 23 + .../tablecellelement/get_margin/_index.md | 24 + .../tablecellelement/get_rowspan/_index.md | 23 + .../get_structuretextstate/_index.md | 28 + .../get_verticalalignment/_index.md | 24 + .../tablecellelement/set_alignment/_index.md | 24 + .../set_backgroundcolor/_index.md | 24 + .../tablecellelement/set_border/_index.md | 24 + .../tablecellelement/set_colspan/_index.md | 23 + .../set_defaultcelltextstate/_index.md | 24 + .../tablecellelement/set_isnoborder/_index.md | 23 + .../set_iswordwrapped/_index.md | 23 + .../tablecellelement/set_margin/_index.md | 24 + .../tablecellelement/set_rowspan/_index.md | 23 + .../set_verticalalignment/_index.md | 24 + .../tablecellelement/settext/_index.md | 41 + .../tablechildelement/_index.md | 61 + .../tableelement/_index.md | 100 + .../tableelement/createtbody/_index.md | 29 + .../tableelement/createtfoot/_index.md | 29 + .../tableelement/createthead/_index.md | 29 + .../tableelement/get_alignment/_index.md | 24 + .../get_backgroundcolor/_index.md | 24 + .../tableelement/get_border/_index.md | 24 + .../tableelement/get_broken/_index.md | 24 + .../get_columnadjustment/_index.md | 24 + .../tableelement/get_columnwidths/_index.md | 23 + .../tableelement/get_cornerstyle/_index.md | 24 + .../get_defaultcellborder/_index.md | 24 + .../get_defaultcellpadding/_index.md | 24 + .../get_defaultcelltextstate/_index.md | 24 + .../get_defaultcolumnwidth/_index.md | 23 + .../get_isbordersincluded/_index.md | 23 + .../tableelement/get_isbroken/_index.md | 23 + .../tableelement/get_left/_index.md | 23 + .../get_repeatingcolumnscount/_index.md | 23 + .../get_repeatingrowscount/_index.md | 23 + .../get_repeatingrowsstyle/_index.md | 24 + .../tableelement/get_top/_index.md | 23 + .../tableelement/set_alignment/_index.md | 24 + .../set_backgroundcolor/_index.md | 24 + .../tableelement/set_border/_index.md | 24 + .../tableelement/set_broken/_index.md | 24 + .../set_columnadjustment/_index.md | 24 + .../tableelement/set_columnwidths/_index.md | 23 + .../tableelement/set_cornerstyle/_index.md | 24 + .../set_defaultcellborder/_index.md | 24 + .../set_defaultcellpadding/_index.md | 24 + .../set_defaultcelltextstate/_index.md | 24 + .../set_defaultcolumnwidth/_index.md | 23 + .../set_isbordersincluded/_index.md | 23 + .../tableelement/set_isbroken/_index.md | 23 + .../tableelement/set_left/_index.md | 23 + .../set_repeatingcolumnscount/_index.md | 23 + .../set_repeatingrowscount/_index.md | 23 + .../set_repeatingrowsstyle/_index.md | 24 + .../tableelement/set_top/_index.md | 23 + .../tablerowcollectionelement/_index.md | 62 + .../createtr/_index.md | 29 + .../tabletbodyelement/_index.md | 62 + .../tabletdelement/_index.md | 83 + .../tabletfootelement/_index.md | 62 + .../tabletheadelement/_index.md | 62 + .../tablethelement/_index.md | 83 + .../tabletrelement/_index.md | 83 + .../tabletrelement/createtd/_index.md | 29 + .../tabletrelement/createth/_index.md | 29 + .../get_backgroundcolor/_index.md | 24 + .../tabletrelement/get_border/_index.md | 24 + .../get_defaultcellborder/_index.md | 24 + .../get_defaultcellpadding/_index.md | 24 + .../get_defaultcelltextstate/_index.md | 24 + .../get_fixedrowheight/_index.md | 23 + .../tabletrelement/get_isinnewpage/_index.md | 23 + .../tabletrelement/get_isrowbroken/_index.md | 23 + .../tabletrelement/get_minrowheight/_index.md | 23 + .../get_verticalalignment/_index.md | 24 + .../set_backgroundcolor/_index.md | 24 + .../tabletrelement/set_border/_index.md | 24 + .../set_defaultcellborder/_index.md | 24 + .../set_defaultcellpadding/_index.md | 24 + .../set_defaultcelltextstate/_index.md | 24 + .../set_fixedrowheight/_index.md | 23 + .../tabletrelement/set_isinnewpage/_index.md | 23 + .../tabletrelement/set_isrowbroken/_index.md | 23 + .../tabletrelement/set_minrowheight/_index.md | 23 + .../set_verticalalignment/_index.md | 24 + .../tocelement/_index.md | 61 + .../tocielement/_index.md | 61 + .../warichuchildelement/_index.md | 61 + .../warichuelement/_index.md | 61 + .../warichuwpelement/_index.md | 61 + .../warichuwtelement/_index.md | 61 + .../cpp/aspose.pdf.multithreading/_index.md | 18 + .../iinterruptmonitor/_index.md | 22 + .../interruptmonitor/_index.md | 23 + english/cpp/aspose.pdf.operators/_index.md | 104 + .../basicsetcolorandpatternoperator/_index.md | 44 + .../get_patternname/_index.md | 23 + .../basicsetcoloroperator/_index.md | 43 + .../basicsetcoloroperator/get_b/_index.md | 23 + .../basicsetcoloroperator/get_c/_index.md | 23 + .../basicsetcoloroperator/get_color/_index.md | 23 + .../basicsetcoloroperator/get_g/_index.md | 23 + .../basicsetcoloroperator/get_gray/_index.md | 23 + .../basicsetcoloroperator/get_k/_index.md | 23 + .../basicsetcoloroperator/get_m/_index.md | 23 + .../basicsetcoloroperator/get_r/_index.md | 23 + .../basicsetcoloroperator/get_y/_index.md | 23 + .../cpp/aspose.pdf.operators/bdc/_index.md | 38 + .../aspose.pdf.operators/bdc/accept/_index.md | 41 + .../aspose.pdf.operators/bdc/bdc/_index.md | 55 + .../bdc/get_properties/_index.md | 24 + .../bdc/get_tag/_index.md | 23 + .../bdc/set_tag/_index.md | 23 + .../bdc/tostring/_index.md | 28 + english/cpp/aspose.pdf.operators/bi/_index.md | 34 + .../aspose.pdf.operators/bi/accept/_index.md | 41 + .../cpp/aspose.pdf.operators/bi/bi/_index.md | 23 + .../blocktextoperator/_index.md | 37 + .../blocktextoperator/_index.md | 56 + .../cpp/aspose.pdf.operators/bmc/_index.md | 36 + .../aspose.pdf.operators/bmc/accept/_index.md | 41 + .../aspose.pdf.operators/bmc/bmc/_index.md | 40 + .../bmc/get_tag/_index.md | 23 + .../bmc/set_tag/_index.md | 23 + .../bmc/tostring/_index.md | 28 + english/cpp/aspose.pdf.operators/bt/_index.md | 38 + .../aspose.pdf.operators/bt/accept/_index.md | 41 + .../cpp/aspose.pdf.operators/bt/bt/_index.md | 23 + .../bt/tostring/_index.md | 28 + english/cpp/aspose.pdf.operators/bx/_index.md | 34 + .../aspose.pdf.operators/bx/accept/_index.md | 41 + .../cpp/aspose.pdf.operators/bx/bx/_index.md | 23 + .../bx/tostring/_index.md | 28 + .../cpp/aspose.pdf.operators/clip/_index.md | 34 + .../clip/accept/_index.md | 41 + .../aspose.pdf.operators/clip/clip/_index.md | 23 + .../clip/tostring/_index.md | 28 + .../aspose.pdf.operators/closepath/_index.md | 34 + .../closepath/accept/_index.md | 41 + .../closepath/closepath/_index.md | 23 + .../closepatheofillstroke/_index.md | 34 + .../closepatheofillstroke/accept/_index.md | 41 + .../closepatheofillstroke/_index.md | 23 + .../closepatheofillstroke/tostring/_index.md | 28 + .../closepathfillstroke/_index.md | 34 + .../closepathfillstroke/accept/_index.md | 41 + .../closepathfillstroke/_index.md | 23 + .../closepathfillstroke/tostring/_index.md | 28 + .../closepathstroke/_index.md | 34 + .../closepathstroke/accept/_index.md | 41 + .../closepathstroke/closepathstroke/_index.md | 23 + .../closepathstroke/tostring/_index.md | 28 + .../concatenatematrix/_index.md | 37 + .../concatenatematrix/accept/_index.md | 41 + .../concatenatematrix/_index.md | 117 + .../concatenatematrix/get_matrix/_index.md | 24 + .../concatenatematrix/set_matrix/_index.md | 24 + .../concatenatematrix/tostring/_index.md | 28 + .../aspose.pdf.operators/curveto/_index.md | 35 + .../curveto/accept/_index.md | 41 + .../curveto/curveto/_index.md | 85 + .../curveto/get_points/_index.md | 24 + .../curveto/tostring/_index.md | 28 + .../aspose.pdf.operators/curveto1/_index.md | 35 + .../curveto1/accept/_index.md | 41 + .../curveto1/curveto1/_index.md | 67 + .../curveto1/get_points/_index.md | 24 + .../aspose.pdf.operators/curveto2/_index.md | 35 + .../curveto2/accept/_index.md | 41 + .../curveto2/curveto2/_index.md | 67 + .../curveto2/get_points/_index.md | 24 + english/cpp/aspose.pdf.operators/do/_index.md | 37 + .../aspose.pdf.operators/do/accept/_index.md | 41 + .../cpp/aspose.pdf.operators/do/do/_index.md | 54 + .../do/get_name/_index.md | 23 + .../do/set_name/_index.md | 23 + .../do/tostring/_index.md | 28 + english/cpp/aspose.pdf.operators/dp/_index.md | 36 + .../aspose.pdf.operators/dp/accept/_index.md | 41 + .../cpp/aspose.pdf.operators/dp/dp/_index.md | 40 + .../aspose.pdf.operators/dp/get_tag/_index.md | 23 + .../aspose.pdf.operators/dp/set_tag/_index.md | 23 + .../dp/tostring/_index.md | 28 + english/cpp/aspose.pdf.operators/ei/_index.md | 34 + .../aspose.pdf.operators/ei/accept/_index.md | 41 + .../cpp/aspose.pdf.operators/ei/ei/_index.md | 23 + .../cpp/aspose.pdf.operators/emc/_index.md | 34 + .../aspose.pdf.operators/emc/accept/_index.md | 41 + .../aspose.pdf.operators/emc/emc/_index.md | 23 + .../emc/tostring/_index.md | 28 + .../aspose.pdf.operators/endpath/_index.md | 34 + .../endpath/accept/_index.md | 41 + .../endpath/endpath/_index.md | 23 + .../endpath/tostring/_index.md | 28 + .../cpp/aspose.pdf.operators/eoclip/_index.md | 34 + .../eoclip/accept/_index.md | 41 + .../eoclip/eoclip/_index.md | 23 + .../cpp/aspose.pdf.operators/eofill/_index.md | 34 + .../eofill/accept/_index.md | 41 + .../eofill/eofill/_index.md | 23 + .../eofillstroke/_index.md | 34 + .../eofillstroke/accept/_index.md | 41 + .../eofillstroke/eofillstroke/_index.md | 23 + english/cpp/aspose.pdf.operators/et/_index.md | 38 + .../aspose.pdf.operators/et/accept/_index.md | 41 + .../cpp/aspose.pdf.operators/et/et/_index.md | 23 + .../et/tostring/_index.md | 28 + english/cpp/aspose.pdf.operators/ex/_index.md | 34 + .../aspose.pdf.operators/ex/accept/_index.md | 41 + .../cpp/aspose.pdf.operators/ex/ex/_index.md | 23 + .../cpp/aspose.pdf.operators/fill/_index.md | 34 + .../fill/accept/_index.md | 41 + .../aspose.pdf.operators/fill/fill/_index.md | 23 + .../fill/tostring/_index.md | 28 + .../aspose.pdf.operators/fillstroke/_index.md | 34 + .../fillstroke/accept/_index.md | 41 + .../fillstroke/fillstroke/_index.md | 23 + .../fillstroke/tostring/_index.md | 28 + .../glyphposition/_index.md | 30 + .../glyphposition/get_position/_index.md | 23 + .../glyphposition/get_text/_index.md | 23 + .../glyphposition/glyphposition/_index.md | 82 + .../aspose.pdf.operators/grestore/_index.md | 34 + .../grestore/accept/_index.md | 41 + .../grestore/grestore/_index.md | 23 + .../grestore/tostring/_index.md | 28 + english/cpp/aspose.pdf.operators/gs/_index.md | 36 + .../aspose.pdf.operators/gs/accept/_index.md | 41 + .../gs/get_name/_index.md | 23 + .../cpp/aspose.pdf.operators/gs/gs/_index.md | 40 + .../gs/set_name/_index.md | 23 + .../gs/tostring/_index.md | 28 + .../cpp/aspose.pdf.operators/gsave/_index.md | 34 + .../gsave/accept/_index.md | 41 + .../gsave/gsave/_index.md | 23 + .../gsave/tostring/_index.md | 28 + english/cpp/aspose.pdf.operators/id/_index.md | 34 + .../aspose.pdf.operators/id/accept/_index.md | 41 + .../cpp/aspose.pdf.operators/id/id/_index.md | 23 + .../aspose.pdf.operators/linecap/_index.md | 30 + .../aspose.pdf.operators/linejoin/_index.md | 30 + .../cpp/aspose.pdf.operators/lineto/_index.md | 38 + .../lineto/accept/_index.md | 41 + .../lineto/get_x/_index.md | 23 + .../lineto/get_y/_index.md | 23 + .../lineto/lineto/_index.md | 49 + .../lineto/set_x/_index.md | 23 + .../lineto/set_y/_index.md | 23 + .../lineto/tostring/_index.md | 28 + .../movetextposition/_index.md | 42 + .../movetextposition/accept/_index.md | 41 + .../movetextposition/get_x/_index.md | 23 + .../movetextposition/get_y/_index.md | 23 + .../movetextposition/_index.md | 49 + .../movetextposition/set_x/_index.md | 23 + .../movetextposition/set_y/_index.md | 23 + .../movetextposition/tostring/_index.md | 28 + .../movetextpositionsetleading/_index.md | 42 + .../accept/_index.md | 41 + .../get_x/_index.md | 23 + .../get_y/_index.md | 23 + .../movetextpositionsetleading/_index.md | 49 + .../set_x/_index.md | 23 + .../set_y/_index.md | 23 + .../cpp/aspose.pdf.operators/moveto/_index.md | 38 + .../moveto/accept/_index.md | 41 + .../moveto/get_x/_index.md | 23 + .../moveto/get_y/_index.md | 23 + .../moveto/moveto/_index.md | 49 + .../moveto/set_x/_index.md | 23 + .../moveto/set_y/_index.md | 23 + .../moveto/tostring/_index.md | 28 + .../movetonextline/_index.md | 38 + .../movetonextline/accept/_index.md | 41 + .../movetonextline/movetonextline/_index.md | 23 + .../movetonextline/tostring/_index.md | 28 + .../movetonextlineshowtext/_index.md | 41 + .../movetonextlineshowtext/accept/_index.md | 41 + .../movetonextlineshowtext/get_text/_index.md | 23 + .../movetonextlineshowtext/_index.md | 54 + english/cpp/aspose.pdf.operators/mp/_index.md | 36 + .../aspose.pdf.operators/mp/accept/_index.md | 41 + .../aspose.pdf.operators/mp/get_tag/_index.md | 23 + .../cpp/aspose.pdf.operators/mp/mp/_index.md | 40 + .../aspose.pdf.operators/mp/set_tag/_index.md | 23 + .../obsoletefill/_index.md | 34 + .../obsoletefill/accept/_index.md | 41 + .../obsoletefill/obsoletefill/_index.md | 23 + english/cpp/aspose.pdf.operators/re/_index.md | 43 + .../aspose.pdf.operators/re/accept/_index.md | 41 + .../re/get_height/_index.md | 23 + .../re/get_width/_index.md | 23 + .../aspose.pdf.operators/re/get_x/_index.md | 23 + .../aspose.pdf.operators/re/get_y/_index.md | 23 + .../cpp/aspose.pdf.operators/re/re/_index.md | 81 + .../re/set_height/_index.md | 23 + .../re/set_width/_index.md | 23 + .../aspose.pdf.operators/re/set_x/_index.md | 23 + .../aspose.pdf.operators/re/set_y/_index.md | 23 + .../re/tostring/_index.md | 28 + .../aspose.pdf.operators/selectfont/_index.md | 40 + .../selectfont/accept/_index.md | 41 + .../selectfont/get_name/_index.md | 23 + .../selectfont/get_size/_index.md | 23 + .../selectfont/selectfont/_index.md | 49 + .../selectfont/tostring/_index.md | 28 + .../setadvancedcolor/_index.md | 51 + .../setadvancedcolor/accept/_index.md | 41 + .../setadvancedcolor/getcolor/_index.md | 28 + .../setadvancedcolor/_index.md | 293 ++ .../setadvancedcolorstroke/_index.md | 50 + .../setadvancedcolorstroke/accept/_index.md | 41 + .../setadvancedcolorstroke/getcolor/_index.md | 28 + .../setadvancedcolorstroke/_index.md | 260 ++ .../setcharacterspacing/_index.md | 40 + .../setcharacterspacing/accept/_index.md | 41 + .../get_charspacing/_index.md | 23 + .../set_charspacing/_index.md | 23 + .../setcharacterspacing/_index.md | 40 + .../setcharwidth/_index.md | 36 + .../setcharwidth/accept/_index.md | 41 + .../setcharwidth/get_wx/_index.md | 23 + .../setcharwidth/get_wy/_index.md | 23 + .../setcharwidth/setcharwidth/_index.md | 49 + .../setcharwidth/tostring/_index.md | 28 + .../setcharwidthboundingbox/_index.md | 40 + .../setcharwidthboundingbox/accept/_index.md | 41 + .../setcharwidthboundingbox/get_llx/_index.md | 23 + .../setcharwidthboundingbox/get_lly/_index.md | 23 + .../setcharwidthboundingbox/get_urx/_index.md | 23 + .../setcharwidthboundingbox/get_ury/_index.md | 23 + .../setcharwidthboundingbox/get_wx/_index.md | 23 + .../setcharwidthboundingbox/get_wy/_index.md | 23 + .../setcharwidthboundingbox/_index.md | 85 + .../tostring/_index.md | 28 + .../setcmykcolor/_index.md | 43 + .../setcmykcolor/accept/_index.md | 41 + .../setcmykcolor/get_c/_index.md | 23 + .../setcmykcolor/get_k/_index.md | 23 + .../setcmykcolor/get_m/_index.md | 23 + .../setcmykcolor/get_y/_index.md | 23 + .../setcmykcolor/getcolor/_index.md | 28 + .../setcmykcolor/set_c/_index.md | 23 + .../setcmykcolor/set_k/_index.md | 23 + .../setcmykcolor/set_m/_index.md | 23 + .../setcmykcolor/set_y/_index.md | 23 + .../setcmykcolor/setcmykcolor/_index.md | 67 + .../setcmykcolorstroke/_index.md | 43 + .../setcmykcolorstroke/accept/_index.md | 41 + .../setcmykcolorstroke/get_c/_index.md | 23 + .../setcmykcolorstroke/get_k/_index.md | 23 + .../setcmykcolorstroke/get_m/_index.md | 23 + .../setcmykcolorstroke/get_y/_index.md | 23 + .../setcmykcolorstroke/getcolor/_index.md | 28 + .../setcmykcolorstroke/set_c/_index.md | 23 + .../setcmykcolorstroke/set_k/_index.md | 23 + .../setcmykcolorstroke/set_m/_index.md | 23 + .../setcmykcolorstroke/set_y/_index.md | 23 + .../setcmykcolorstroke/_index.md | 67 + .../aspose.pdf.operators/setcolor/_index.md | 62 + .../setcolor/accept/_index.md | 41 + .../setcolor/get_b/_index.md | 27 + .../setcolor/get_c/_index.md | 23 + .../setcolor/get_g/_index.md | 27 + .../setcolor/get_k/_index.md | 23 + .../setcolor/get_m/_index.md | 23 + .../setcolor/get_r/_index.md | 27 + .../setcolor/get_y/_index.md | 23 + .../setcolor/getcolor/_index.md | 28 + .../setcolor/set_b/_index.md | 27 + .../setcolor/set_c/_index.md | 23 + .../setcolor/set_g/_index.md | 27 + .../setcolor/set_k/_index.md | 23 + .../setcolor/set_m/_index.md | 23 + .../setcolor/set_r/_index.md | 27 + .../setcolor/set_y/_index.md | 23 + .../setcolor/setcolor/_index.md | 193 ++ .../setcolor/tostring/_index.md | 28 + .../setcoloroperator/_index.md | 34 + .../setcoloroperator/getcolor/_index.md | 28 + .../setcolorrenderingintent/_index.md | 36 + .../setcolorrenderingintent/accept/_index.md | 41 + .../get_intentname/_index.md | 23 + .../set_intentname/_index.md | 23 + .../setcolorrenderingintent/_index.md | 41 + .../setcolorspace/_index.md | 36 + .../setcolorspace/accept/_index.md | 41 + .../setcolorspace/get_name/_index.md | 23 + .../setcolorspace/set_name/_index.md | 23 + .../setcolorspace/setcolorspace/_index.md | 41 + .../setcolorspacestroke/_index.md | 36 + .../setcolorspacestroke/accept/_index.md | 41 + .../setcolorspacestroke/get_name/_index.md | 23 + .../setcolorspacestroke/set_name/_index.md | 23 + .../setcolorspacestroke/_index.md | 41 + .../setcolorstroke/_index.md | 62 + .../setcolorstroke/accept/_index.md | 41 + .../setcolorstroke/get_b/_index.md | 27 + .../setcolorstroke/get_c/_index.md | 23 + .../setcolorstroke/get_g/_index.md | 27 + .../setcolorstroke/get_k/_index.md | 23 + .../setcolorstroke/get_m/_index.md | 23 + .../setcolorstroke/get_r/_index.md | 27 + .../setcolorstroke/get_y/_index.md | 23 + .../setcolorstroke/getcolor/_index.md | 28 + .../setcolorstroke/set_b/_index.md | 27 + .../setcolorstroke/set_c/_index.md | 23 + .../setcolorstroke/set_g/_index.md | 27 + .../setcolorstroke/set_k/_index.md | 23 + .../setcolorstroke/set_m/_index.md | 23 + .../setcolorstroke/set_r/_index.md | 27 + .../setcolorstroke/set_y/_index.md | 23 + .../setcolorstroke/setcolorstroke/_index.md | 193 ++ .../aspose.pdf.operators/setdash/_index.md | 38 + .../setdash/accept/_index.md | 41 + .../setdash/get_pattern/_index.md | 23 + .../setdash/get_phase/_index.md | 23 + .../setdash/set_pattern/_index.md | 23 + .../setdash/set_phase/_index.md | 23 + .../setdash/setdash/_index.md | 49 + .../setdash/tostring/_index.md | 28 + .../aspose.pdf.operators/setflat/_index.md | 36 + .../setflat/accept/_index.md | 41 + .../setflat/get_flatness/_index.md | 23 + .../setflat/set_flatness/_index.md | 23 + .../setflat/setflat/_index.md | 40 + .../setglyphspositionshowtext/_index.md | 41 + .../accept/_index.md | 41 + .../get_glyphpositions/_index.md | 24 + .../get_text/_index.md | 23 + .../setglyphspositionshowtext/_index.md | 41 + .../tostring/_index.md | 28 + .../aspose.pdf.operators/setgray/_index.md | 37 + .../setgray/accept/_index.md | 41 + .../setgray/get_gray/_index.md | 23 + .../setgray/getcolor/_index.md | 28 + .../setgray/set_gray/_index.md | 23 + .../setgray/setgray/_index.md | 40 + .../setgray/tostring/_index.md | 28 + .../setgraystroke/_index.md | 37 + .../setgraystroke/accept/_index.md | 41 + .../setgraystroke/get_gray/_index.md | 23 + .../setgraystroke/getcolor/_index.md | 28 + .../setgraystroke/set_gray/_index.md | 23 + .../setgraystroke/setgraystroke/_index.md | 40 + .../setgraystroke/tostring/_index.md | 28 + .../sethorizontaltextscaling/_index.md | 40 + .../sethorizontaltextscaling/accept/_index.md | 41 + .../get_horizontalscaling/_index.md | 23 + .../set_horizontalscaling/_index.md | 23 + .../sethorizontaltextscaling/_index.md | 40 + .../aspose.pdf.operators/setlinecap/_index.md | 36 + .../setlinecap/accept/_index.md | 41 + .../setlinecap/get_cap/_index.md | 24 + .../setlinecap/set_cap/_index.md | 24 + .../setlinecap/setlinecap/_index.md | 41 + .../setlinejoin/_index.md | 37 + .../setlinejoin/accept/_index.md | 41 + .../setlinejoin/get_join/_index.md | 24 + .../setlinejoin/set_join/_index.md | 24 + .../setlinejoin/setlinejoin/_index.md | 38 + .../setlinewidth/_index.md | 36 + .../setlinewidth/accept/_index.md | 41 + .../setlinewidth/get_width/_index.md | 23 + .../setlinewidth/set_width/_index.md | 23 + .../setlinewidth/setlinewidth/_index.md | 40 + .../setlinewidth/tostring/_index.md | 28 + .../setmiterlimit/_index.md | 36 + .../setmiterlimit/accept/_index.md | 41 + .../setmiterlimit/get_miterlimit/_index.md | 23 + .../setmiterlimit/set_miterlimit/_index.md | 23 + .../setmiterlimit/setmiterlimit/_index.md | 40 + .../setrgbcolor/_index.md | 42 + .../setrgbcolor/accept/_index.md | 41 + .../setrgbcolor/get_b/_index.md | 27 + .../setrgbcolor/get_g/_index.md | 27 + .../setrgbcolor/get_r/_index.md | 27 + .../setrgbcolor/getcolor/_index.md | 28 + .../setrgbcolor/set_b/_index.md | 27 + .../setrgbcolor/set_g/_index.md | 27 + .../setrgbcolor/set_r/_index.md | 27 + .../setrgbcolor/setrgbcolor/_index.md | 89 + .../setrgbcolor/tostring/_index.md | 28 + .../setrgbcolorstroke/_index.md | 42 + .../setrgbcolorstroke/accept/_index.md | 41 + .../setrgbcolorstroke/get_b/_index.md | 27 + .../setrgbcolorstroke/get_g/_index.md | 27 + .../setrgbcolorstroke/get_r/_index.md | 27 + .../setrgbcolorstroke/getcolor/_index.md | 28 + .../setrgbcolorstroke/set_b/_index.md | 27 + .../setrgbcolorstroke/set_g/_index.md | 27 + .../setrgbcolorstroke/set_r/_index.md | 27 + .../setrgbcolorstroke/_index.md | 90 + .../setrgbcolorstroke/tostring/_index.md | 28 + .../_index.md | 42 + .../accept/_index.md | 41 + .../get_ac/_index.md | 23 + .../get_aw/_index.md | 23 + .../get_text/_index.md | 23 + .../_index.md | 59 + .../settextleading/_index.md | 40 + .../settextleading/accept/_index.md | 41 + .../settextleading/get_leading/_index.md | 23 + .../settextleading/set_leading/_index.md | 23 + .../settextleading/settextleading/_index.md | 41 + .../settextleading/tostring/_index.md | 28 + .../settextmatrix/_index.md | 41 + .../settextmatrix/accept/_index.md | 41 + .../settextmatrix/get_matrix/_index.md | 24 + .../settextmatrix/set_matrix/_index.md | 24 + .../settextmatrix/settextmatrix/_index.md | 117 + .../settextmatrix/tostring/_index.md | 28 + .../settextrenderingmode/_index.md | 38 + .../settextrenderingmode/accept/_index.md | 41 + .../settextrenderingmode/_index.md | 23 + .../settextrise/_index.md | 40 + .../settextrise/accept/_index.md | 41 + .../settextrise/get_textrise/_index.md | 23 + .../settextrise/set_textrise/_index.md | 23 + .../settextrise/settextrise/_index.md | 41 + .../setwordspacing/_index.md | 40 + .../setwordspacing/accept/_index.md | 41 + .../setwordspacing/get_wordspacing/_index.md | 23 + .../setwordspacing/set_wordspacing/_index.md | 23 + .../setwordspacing/setwordspacing/_index.md | 40 + .../cpp/aspose.pdf.operators/shfill/_index.md | 36 + .../shfill/accept/_index.md | 41 + .../shfill/get_name/_index.md | 23 + .../shfill/set_name/_index.md | 23 + .../shfill/shfill/_index.md | 40 + .../aspose.pdf.operators/showtext/_index.md | 43 + .../showtext/accept/_index.md | 41 + .../showtext/get_text/_index.md | 23 + .../showtext/set_text/_index.md | 23 + .../showtext/showtext/_index.md | 135 + .../showtext/tostring/_index.md | 28 + .../cpp/aspose.pdf.operators/stroke/_index.md | 34 + .../stroke/accept/_index.md | 41 + .../stroke/stroke/_index.md | 23 + .../stroke/tostring/_index.md | 28 + .../textoperator/_index.md | 35 + .../textoperator/accept/_index.md | 41 + .../textoperator/textoperator/_index.md | 56 + .../textplaceoperator/_index.md | 37 + .../textplaceoperator/_index.md | 56 + .../textshowoperator/_index.md | 39 + .../textshowoperator/get_text/_index.md | 23 + .../textshowoperator/set_text/_index.md | 23 + .../textshowoperator/_index.md | 56 + .../textstateoperator/_index.md | 37 + .../textstateoperator/_index.md | 56 + english/cpp/aspose.pdf.optimization/_index.md | 24 + .../imagecompressionoptions/_index.md | 39 + .../get_compressimages/_index.md | 23 + .../get_encoding/_index.md | 24 + .../get_imagequality/_index.md | 23 + .../get_maxresolution/_index.md | 23 + .../get_resizeimages/_index.md | 23 + .../get_version/_index.md | 24 + .../imagecompressionoptions/_index.md | 23 + .../set_compressimages/_index.md | 23 + .../set_encoding/_index.md | 24 + .../set_imagequality/_index.md | 23 + .../set_maxresolution/_index.md | 23 + .../set_resizeimages/_index.md | 23 + .../set_version/_index.md | 24 + .../imagecompressionversion/_index.md | 30 + .../imageencoding/_index.md | 31 + .../optimizationoptions/_index.md | 59 + .../optimizationoptions/all/_index.md | 29 + .../get_allowreusepagecontent/_index.md | 23 + .../get_compressimages/_index.md | 32 + .../get_compressobjects/_index.md | 25 + .../get_imagecompressionoptions/_index.md | 24 + .../get_imageencoding/_index.md | 24 + .../get_imagequality/_index.md | 32 + .../get_linkduplcatestreams/_index.md | 23 + .../get_maxresoultion/_index.md | 27 + .../get_removeprivateinfo/_index.md | 23 + .../get_removeunusedobjects/_index.md | 23 + .../get_removeunusedstreams/_index.md | 23 + .../get_resizeimages/_index.md | 32 + .../get_subsetfonts/_index.md | 23 + .../get_unembedfonts/_index.md | 23 + .../optimizationoptions/_index.md | 23 + .../set_allowreusepagecontent/_index.md | 23 + .../set_compressimages/_index.md | 32 + .../set_compressobjects/_index.md | 25 + .../set_imageencoding/_index.md | 24 + .../set_imagequality/_index.md | 32 + .../set_linkduplcatestreams/_index.md | 23 + .../set_maxresoultion/_index.md | 27 + .../set_removeprivateinfo/_index.md | 23 + .../set_removeunusedobjects/_index.md | 23 + .../set_removeunusedstreams/_index.md | 23 + .../set_resizeimages/_index.md | 32 + .../set_subsetfonts/_index.md | 23 + .../set_unembedfonts/_index.md | 23 + .../aspose.pdf.pdfaoptionclasses/_index.md | 18 + .../fontembeddingoptions/_index.md | 29 + .../fontembeddingoptions/_index.md | 23 + .../get_usedefaultsubstitution/_index.md | 23 + .../set_usedefaultsubstitution/_index.md | 23 + .../tounicodeprocessingrules/_index.md | 33 + .../get_mapnonlinkedsymbolsonspace/_index.md | 23 + .../get_removespacesfromcmapnames/_index.md | 23 + .../set_mapnonlinkedsymbolsonspace/_index.md | 23 + .../set_removespacesfromcmapnames/_index.md | 23 + .../tounicodeprocessingrules/_index.md | 94 + .../cpp/aspose.pdf.pdftomarkdown/_index.md | 26 + .../emphasisstyle/_index.md | 29 + .../headinglevels/_index.md | 30 + .../headinglevels/addlevels/_index.md | 49 + .../headinglevels/get_alllevels/_index.md | 23 + .../headinglevels/headinglevels/_index.md | 54 + .../headingrecognitionstrategy/_index.md | 31 + .../headingstyle/_index.md | 29 + .../linebreakstyle/_index.md | 30 + .../markdownsaveoptions/_index.md | 58 + .../get_areatoextract/_index.md | 24 + .../get_emphasisstyle/_index.md | 24 + .../get_extractvectorgraphics/_index.md | 23 + .../get_headinglevels/_index.md | 24 + .../get_headingrecognitionstrategy/_index.md | 24 + .../get_headingstyle/_index.md | 24 + .../get_linebreakstyle/_index.md | 24 + .../get_resourcesdirectoryname/_index.md | 23 + .../_index.md | 23 + .../get_useimagehtmltag/_index.md | 23 + .../markdownsaveoptions/_index.md | 23 + .../set_areatoextract/_index.md | 24 + .../set_emphasisstyle/_index.md | 24 + .../set_extractvectorgraphics/_index.md | 23 + .../set_headinglevels/_index.md | 24 + .../set_headingrecognitionstrategy/_index.md | 24 + .../set_headingstyle/_index.md | 24 + .../set_linebreakstyle/_index.md | 24 + .../set_resourcesdirectoryname/_index.md | 23 + .../_index.md | 23 + .../set_useimagehtmltag/_index.md | 23 + english/cpp/aspose.pdf.sanitization/_index.md | 22 + .../irecovery/_index.md | 30 + .../irecovery/get_log/_index.md | 23 + .../irecovery/recover/_index.md | 23 + .../irecovery/trimbottom/_index.md | 23 + .../irecovery/trimtop/_index.md | 23 + .../sanitizationexception/_index.md | 22 + english/cpp/aspose.pdf.structure/_index.md | 22 + .../aspose.pdf.structure/element/_index.md | 36 + .../element/get_actualtext/_index.md | 23 + .../element/get_alt/_index.md | 23 + .../element/get_children/_index.md | 24 + .../element/get_e/_index.md | 23 + .../element/get_lang/_index.md | 23 + .../element/remove/_index.md | 23 + .../element/set_actualtext/_index.md | 23 + .../element/set_alt/_index.md | 23 + .../element/set_e/_index.md | 23 + .../element/set_lang/_index.md | 23 + .../elementcollection/_index.md | 49 + .../elementcollection/begin/_index.md | 49 + .../elementcollection/cbegin/_index.md | 29 + .../elementcollection/cend/_index.md | 29 + .../const_iterator/_index.md | 23 + .../elementcollection/end/_index.md | 49 + .../elementcollection/get_count/_index.md | 23 + .../elementcollection/getenumerator/_index.md | 29 + .../elementcollection/idx_get/_index.md | 45 + .../elementcollection/iterator/_index.md | 23 + .../iterator_holder_type/_index.md | 23 + .../elementcollection/remove/_index.md | 45 + .../virtualizebeginconstiterator/_index.md | 29 + .../virtualizebeginiterator/_index.md | 29 + .../virtualized_iterator/_index.md | 23 + .../virtualized_iterator_element/_index.md | 23 + .../virtualizeendconstiterator/_index.md | 29 + .../virtualizeenditerator/_index.md | 29 + .../figureelement/_index.md | 38 + .../figureelement/get_image/_index.md | 23 + .../rootelement/_index.md | 37 + .../structelement/_index.md | 37 + .../textelement/_index.md | 38 + .../textelement/get_text/_index.md | 23 + english/cpp/aspose.pdf.tagged/_index.md | 23 + .../itaggedcontent/_index.md | 66 + .../createannotelement/_index.md | 33 + .../itaggedcontent/createartelement/_index.md | 33 + .../createbibentryelement/_index.md | 33 + .../createblockquoteelement/_index.md | 33 + .../createcaptionelement/_index.md | 33 + .../createcodeelement/_index.md | 33 + .../itaggedcontent/createdivelement/_index.md | 33 + .../createfigureelement/_index.md | 33 + .../createformelement/_index.md | 33 + .../createformulaelement/_index.md | 33 + .../createheaderelement/_index.md | 71 + .../createindexelement/_index.md | 33 + .../createlinkelement/_index.md | 33 + .../createlistelement/_index.md | 33 + .../createnonstructelement/_index.md | 33 + .../createnoteelement/_index.md | 33 + .../createparagraphelement/_index.md | 33 + .../createpartelement/_index.md | 33 + .../createprivateelement/_index.md | 33 + .../createquoteelement/_index.md | 33 + .../createreferenceelement/_index.md | 33 + .../createrubyelement/_index.md | 33 + .../createsectelement/_index.md | 33 + .../createspanelement/_index.md | 33 + .../createtableelement/_index.md | 33 + .../createtabletbodyelement/_index.md | 33 + .../createtabletdelement/_index.md | 33 + .../createtabletfootelement/_index.md | 33 + .../createtabletheadelement/_index.md | 33 + .../createtablethelement/_index.md | 33 + .../createtabletrelement/_index.md | 33 + .../itaggedcontent/createtocelement/_index.md | 33 + .../createtocielement/_index.md | 33 + .../createwarichuelement/_index.md | 33 + .../itaggedcontent/get_rootelement/_index.md | 30 + .../get_structtreerootelement/_index.md | 30 + .../get_structuretextstate/_index.md | 30 + .../itaggedcontent/setlanguage/_index.md | 44 + .../itaggedcontent/settitle/_index.md | 42 + .../taggedexception/_index.md | 22 + .../taggedpdfexceptioncode/_index.md | 44 + .../element_appendingimpossible/_index.md | 23 + .../element_couldnotbemapped/_index.md | 23 + .../element_elementalreadyappended/_index.md | 23 + .../getmessage/_index.md | 23 + .../_index.md | 23 + .../_index.md | 23 + .../_index.md | 23 + .../_index.md | 23 + .../_index.md | 23 + .../_index.md | 23 + .../_index.md | 23 + .../_index.md | 23 + .../_index.md | 23 + .../taggedpdfexceptioncode/tostring/_index.md | 28 + english/cpp/aspose.pdf.text/_index.md | 80 + .../aspose.pdf.text/absorbedcell/_index.md | 33 + .../absorbedcell/compareto/_index.md | 45 + .../absorbedcell/get_borderinfo/_index.md | 24 + .../absorbedcell/get_colspan/_index.md | 23 + .../absorbedcell/get_rectangle/_index.md | 24 + .../absorbedcell/get_textfragments/_index.md | 24 + .../cpp/aspose.pdf.text/absorbedrow/_index.md | 31 + .../absorbedrow/compareto/_index.md | 45 + .../absorbedrow/get_celllist/_index.md | 24 + .../absorbedrow/get_rectangle/_index.md | 24 + .../aspose.pdf.text/absorbedtable/_index.md | 32 + .../absorbedtable/compareto/_index.md | 45 + .../absorbedtable/get_pagenum/_index.md | 23 + .../absorbedtable/get_rectangle/_index.md | 24 + .../absorbedtable/get_rowlist/_index.md | 24 + .../cpp/aspose.pdf.text/charinfo/_index.md | 28 + .../charinfo/get_position/_index.md | 24 + .../charinfo/get_rectangle/_index.md | 24 + .../charinfocollection/_index.md | 43 + .../charinfocollection/add/_index.md | 43 + .../charinfocollection/clear/_index.md | 23 + .../charinfocollection/contains/_index.md | 45 + .../charinfocollection/copyto/_index.md | 50 + .../charinfocollection/get_count/_index.md | 23 + .../get_isreadonly/_index.md | 23 + .../get_issynchronized/_index.md | 23 + .../charinfocollection/get_syncroot/_index.md | 23 + .../getenumerator/_index.md | 29 + .../charinfocollection/idx_get/_index.md | 45 + .../charinfocollection/remove/_index.md | 47 + .../coordinateorigin/_index.md | 29 + .../customfontsubstitutionbase/_index.md | 28 + .../trysubstitute/_index.md | 58 + .../aspose.pdf.text/filefontsource/_index.md | 31 + .../filefontsource/equals/_index.md | 45 + .../filefontsource/filefontsource/_index.md | 40 + .../filefontsource/get_filepath/_index.md | 23 + .../filefontsource/set_filepath/_index.md | 23 + .../folderfontsource/_index.md | 31 + .../folderfontsource/equals/_index.md | 44 + .../folderfontsource/_index.md | 40 + .../folderfontsource/get_folderpath/_index.md | 23 + .../folderfontsource/set_folderpath/_index.md | 23 + english/cpp/aspose.pdf.text/font/_index.md | 42 + .../font/cppissettrailerable/_index.md | 23 + .../font/get_basefont/_index.md | 23 + .../font/get_decodedfontname/_index.md | 23 + .../font/get_fontname/_index.md | 25 + .../font/get_fontoptions/_index.md | 24 + .../font/get_isaccessible/_index.md | 29 + .../font/get_isembedded/_index.md | 26 + .../font/get_issubset/_index.md | 25 + .../font/getlastfontembeddingerror/_index.md | 28 + .../font/measurestring/_index.md | 54 + .../cpp/aspose.pdf.text/font/save/_index.md | 40 + .../font/set_isembedded/_index.md | 26 + .../font/set_issubset/_index.md | 25 + .../aspose.pdf.text/fontabsorber/_index.md | 30 + .../fontabsorber/fontabsorber/_index.md | 23 + .../fontabsorber/get_fonts/_index.md | 24 + .../fontabsorber/visit/_index.md | 95 + .../aspose.pdf.text/fontcollection/_index.md | 42 + .../fontcollection/add/_index.md | 51 + .../fontcollection/contains/_index.md | 81 + .../fontcollection/copyto/_index.md | 50 + .../fontcollection/get_count/_index.md | 23 + .../fontcollection/get_isreadonly/_index.md | 23 + .../get_issynchronized/_index.md | 23 + .../fontcollection/get_syncroot/_index.md | 23 + .../fontcollection/getenumerator/_index.md | 29 + .../fontcollection/idx_get/_index.md | 81 + .../fontcollection/remove/_index.md | 45 + .../aspose.pdf.text/fontrepository/_index.md | 39 + .../fontrepository/findfont/_index.md | 197 ++ .../fontrepository/get_sources/_index.md | 24 + .../get_substitutions/_index.md | 24 + .../fontrepository/loadfonts/_index.md | 23 + .../fontrepository/openfont/_index.md | 141 + .../fontrepository/reloadfonts/_index.md | 23 + .../cpp/aspose.pdf.text/fontsource/_index.md | 22 + .../fontsourcecollection/_index.md | 37 + .../fontsourcecollection/add/_index.md | 42 + .../fontsourcecollection/clear/_index.md | 23 + .../fontsourcecollection/contains/_index.md | 46 + .../fontsourcecollection/copyto/_index.md | 50 + .../fontsourcecollection/delete/_index.md | 42 + .../fontsourcecollection/get_count/_index.md | 23 + .../get_issynchronized/_index.md | 23 + .../get_syncroot/_index.md | 23 + .../getenumerator/_index.md | 29 + .../fontsourcecollection/idx_get/_index.md | 45 + .../fontsourcecollection/remove/_index.md | 46 + .../cpp/aspose.pdf.text/fontstyles/_index.md | 34 + .../fontsubstitution/_index.md | 22 + .../fontsubstitutioncollection/_index.md | 36 + .../fontsubstitutioncollection/add/_index.md | 42 + .../clear/_index.md | 23 + .../contains/_index.md | 46 + .../copyto/_index.md | 50 + .../get_count/_index.md | 23 + .../get_issynchronized/_index.md | 23 + .../get_syncroot/_index.md | 23 + .../getenumerator/_index.md | 29 + .../idx_get/_index.md | 45 + .../remove/_index.md | 46 + .../cpp/aspose.pdf.text/fonttypes/_index.md | 29 + .../aspose.pdf.text/ifontoptions/_index.md | 28 + .../_index.md | 23 + .../_index.md | 23 + .../ifontsubstitutioncallback/_index.md | 29 + .../_index.md | 23 + .../get_registrar/_index.md | 23 + .../notifyaboutsubstitution/_index.md | 50 + .../ifontsubstitutionregistrator/_index.md | 29 + .../getallsubstitutions/_index.md | 29 + .../registrysubstitution/_index.md | 100 + .../aspose.pdf.text/itableelement/_index.md | 27 + .../itableelement/get_rectangle/_index.md | 24 + .../aspose.pdf.text/markupparagraph/_index.md | 33 + .../get_continuationpagenumbers/_index.md | 23 + .../markupparagraph/get_fragments/_index.md | 28 + .../markupparagraph/get_lines/_index.md | 28 + .../markupparagraph/get_points/_index.md | 24 + .../get_secondarypoints/_index.md | 24 + .../markupparagraph/get_text/_index.md | 23 + .../markupparagraph/set_text/_index.md | 23 + .../aspose.pdf.text/markupsection/_index.md | 29 + .../markupsection/get_fragments/_index.md | 28 + .../markupsection/get_paragraphs/_index.md | 24 + .../markupsection/get_rectangle/_index.md | 24 + .../memoryfontsource/_index.md | 32 + .../memoryfontsource/dispose/_index.md | 23 + .../memoryfontsource/equals/_index.md | 45 + .../memoryfontsource/get_fontbytes/_index.md | 23 + .../memoryfontsource/_index.md | 41 + .../onsegmentchangedeventargs/_index.md | 30 + .../get_initialsegmenttextlength/_index.md | 23 + .../get_segmentafter/_index.md | 23 + .../get_segmentchanged/_index.md | 23 + .../onsegmentchangedeventargs/_index.md | 23 + .../cpp/aspose.pdf.text/pagemarkup/_index.md | 33 + .../_index.md | 23 + .../pagemarkup/get_number/_index.md | 23 + .../pagemarkup/get_paragraphs/_index.md | 24 + .../pagemarkup/get_rectangle/_index.md | 24 + .../pagemarkup/get_sections/_index.md | 24 + .../pagemarkup/get_textfragments/_index.md | 28 + .../_index.md | 23 + .../paragraphabsorber/_index.md | 45 + .../_index.md | 23 + .../get_pagemarkups/_index.md | 24 + .../get_paragraphabsorberoptions/_index.md | 24 + .../get_sectionssearchdepth/_index.md | 27 + .../get_textreplaceoptions/_index.md | 24 + .../paragraphabsorber/_index.md | 129 + .../_index.md | 23 + .../set_paragraphabsorberoptions/_index.md | 24 + .../set_sectionssearchdepth/_index.md | 27 + .../set_textreplaceoptions/_index.md | 24 + .../paragraphabsorber/visit/_index.md | 75 + .../paragraphabsorberoptions/_index.md | 33 + .../get_searchrectangle/_index.md | 24 + .../_index.md | 23 + .../_index.md | 23 + .../paragraphabsorberoptions/_index.md | 23 + .../set_searchrectangle/_index.md | 24 + .../_index.md | 23 + .../_index.md | 23 + .../cpp/aspose.pdf.text/position/_index.md | 33 + .../aspose.pdf.text/position/equals/_index.md | 44 + .../position/get_xindent/_index.md | 23 + .../position/get_yindent/_index.md | 23 + .../position/position/_index.md | 49 + .../position/set_xindent/_index.md | 23 + .../position/set_yindent/_index.md | 23 + .../position/tostring/_index.md | 28 + .../simplefontsubstitution/_index.md | 30 + .../get_originalfontname/_index.md | 23 + .../get_substitutionfontname/_index.md | 23 + .../simplefontsubstitution/_index.md | 58 + .../substitutionfontcategories/_index.md | 29 + .../systemfontsource/_index.md | 29 + .../systemfontsource/equals/_index.md | 45 + .../systemfontsource/_index.md | 23 + .../systemfontssubstitution/_index.md | 32 + .../get_defaultfont/_index.md | 24 + .../get_fontcategories/_index.md | 24 + .../set_defaultfont/_index.md | 24 + .../set_fontcategories/_index.md | 24 + .../systemfontssubstitution/_index.md | 41 + .../tabalignmenttype/_index.md | 30 + .../aspose.pdf.text/tableabsorber/_index.md | 37 + .../tableabsorber/get_tablelist/_index.md | 24 + .../get_textsearchoptions/_index.md | 28 + .../tableabsorber/get_useflowengine/_index.md | 29 + .../tableabsorber/remove/_index.md | 44 + .../tableabsorber/replace/_index.md | 66 + .../set_textsearchoptions/_index.md | 28 + .../tableabsorber/set_useflowengine/_index.md | 29 + .../tableabsorber/tableabsorber/_index.md | 62 + .../tableabsorber/visit/_index.md | 75 + .../aspose.pdf.text/tableadertype/_index.md | 31 + english/cpp/aspose.pdf.text/tabstop/_index.md | 35 + .../tabstop/get_alignmenttype/_index.md | 24 + .../tabstop/get_isreadonly/_index.md | 23 + .../tabstop/get_leadertype/_index.md | 24 + .../tabstop/get_position/_index.md | 23 + .../tabstop/set_alignmenttype/_index.md | 24 + .../tabstop/set_leadertype/_index.md | 24 + .../tabstop/set_position/_index.md | 23 + .../aspose.pdf.text/tabstop/tabstop/_index.md | 54 + .../cpp/aspose.pdf.text/tabstops/_index.md | 36 + .../aspose.pdf.text/tabstops/add/_index.md | 143 + .../aspose.pdf.text/tabstops/clone/_index.md | 28 + .../tabstops/get_count/_index.md | 43 + .../tabstops/get_isreadonly/_index.md | 23 + .../tabstops/idx_get/_index.md | 45 + .../tabstops/idx_set/_index.md | 51 + .../tabstops/tabstops/_index.md | 23 + .../aspose.pdf.text/textabsorber/_index.md | 44 + .../textabsorber/get_errors/_index.md | 24 + .../get_extractionoptions/_index.md | 28 + .../textabsorber/get_haserrors/_index.md | 23 + .../textabsorber/get_text/_index.md | 23 + .../get_textsearchoptions/_index.md | 28 + .../set_extractionoptions/_index.md | 28 + .../set_textsearchoptions/_index.md | 28 + .../textabsorber/textabsorber/_index.md | 143 + .../textabsorber/visit/_index.md | 108 + .../cpp/aspose.pdf.text/textbuilder/_index.md | 31 + .../textbuilder/appendparagraph/_index.md | 42 + .../textbuilder/appendtext/_index.md | 77 + .../textbuilder/textbuilder/_index.md | 90 + .../aspose.pdf.text/texteditoptions/_index.md | 45 + .../get_allowlanguagetransformation/_index.md | 23 + .../get_clippingpathsprocessing/_index.md | 23 + .../get_fontreplacebehavior/_index.md | 23 + .../_index.md | 23 + .../get_nocharacterbehavior/_index.md | 23 + .../get_replacementfont/_index.md | 24 + .../_index.md | 23 + .../set_allowlanguagetransformation/_index.md | 23 + .../set_clippingpathsprocessing/_index.md | 23 + .../set_fontreplacebehavior/_index.md | 23 + .../_index.md | 23 + .../set_nocharacterbehavior/_index.md | 23 + .../set_replacementfont/_index.md | 24 + .../_index.md | 23 + .../texteditoptions/texteditoptions/_index.md | 134 + .../textextractionerror/_index.md | 33 + .../get_description/_index.md | 23 + .../get_extractedtext/_index.md | 23 + .../textextractionerror/get_fontkey/_index.md | 23 + .../get_fontname/_index.md | 23 + .../get_location/_index.md | 24 + .../textextractionerror/get_summary/_index.md | 23 + .../textextractionerror/tostring/_index.md | 28 + .../textextractionerrorlocation/_index.md | 35 + .../get_fontusedkey/_index.md | 23 + .../get_formkey/_index.md | 23 + .../get_objecttype/_index.md | 23 + .../get_operatorindex/_index.md | 23 + .../get_operatorstring/_index.md | 23 + .../get_pagenumber/_index.md | 23 + .../get_path/_index.md | 23 + .../get_textstartpoint/_index.md | 24 + .../tostring/_index.md | 28 + .../textextractionoptions/_index.md | 32 + .../get_formattingmode/_index.md | 23 + .../get_scalefactor/_index.md | 23 + .../set_formattingmode/_index.md | 23 + .../set_scalefactor/_index.md | 23 + .../textextractionoptions/_index.md | 41 + .../textformattingoptions/_index.md | 39 + .../get_firstlineindent/_index.md | 23 + .../get_hyphensymbol/_index.md | 27 + .../get_linespacing/_index.md | 23 + .../get_subsequentlinesindent/_index.md | 23 + .../get_wrapmode/_index.md | 23 + .../set_firstlineindent/_index.md | 23 + .../set_hyphensymbol/_index.md | 27 + .../set_linespacing/_index.md | 23 + .../set_subsequentlinesindent/_index.md | 23 + .../set_wrapmode/_index.md | 23 + .../textformattingoptions/_index.md | 54 + .../aspose.pdf.text/textfragment/_index.md | 100 + .../textfragment/clone/_index.md | 28 + .../textfragment/clonewithsegments/_index.md | 28 + .../get_baselineposition/_index.md | 24 + .../textfragment/get_endnote/_index.md | 24 + .../textfragment/get_footnote/_index.md | 24 + .../textfragment/get_form/_index.md | 28 + .../get_horizontalalignment/_index.md | 24 + .../textfragment/get_page/_index.md | 28 + .../textfragment/get_position/_index.md | 27 + .../textfragment/get_rectangle/_index.md | 24 + .../textfragment/get_replaceoptions/_index.md | 24 + .../textfragment/get_segments/_index.md | 31 + .../textfragment/get_text/_index.md | 25 + .../textfragment/get_textstate/_index.md | 30 + .../get_verticalalignment/_index.md | 24 + .../textfragment/get_wraplinescount/_index.md | 23 + .../isolatetextsegments/_index.md | 55 + .../set_baselineposition/_index.md | 24 + .../textfragment/set_endnote/_index.md | 24 + .../textfragment/set_footnote/_index.md | 24 + .../set_horizontalalignment/_index.md | 24 + .../textfragment/set_hyperlink/_index.md | 24 + .../textfragment/set_position/_index.md | 27 + .../textfragment/set_segments/_index.md | 31 + .../textfragment/set_text/_index.md | 25 + .../set_verticalalignment/_index.md | 24 + .../textfragment/set_wraplinescount/_index.md | 23 + .../textfragment/textfragment/_index.md | 129 + .../textfragmentabsorber/_index.md | 71 + .../applyforallfragments/_index.md | 117 + .../textfragmentabsorber/get_errors/_index.md | 24 + .../get_extractionoptions/_index.md | 24 + .../get_haserrors/_index.md | 23 + .../textfragmentabsorber/get_phrase/_index.md | 23 + .../get_regexresults/_index.md | 24 + .../textfragmentabsorber/get_text/_index.md | 23 + .../get_texteditoptions/_index.md | 24 + .../get_textfragments/_index.md | 24 + .../get_textreplaceoptions/_index.md | 24 + .../get_textsearchoptions/_index.md | 24 + .../removealltext/_index.md | 116 + .../textfragmentabsorber/reset/_index.md | 23 + .../set_extractionoptions/_index.md | 24 + .../textfragmentabsorber/set_phrase/_index.md | 23 + .../set_texteditoptions/_index.md | 24 + .../set_textfragments/_index.md | 24 + .../set_textreplaceoptions/_index.md | 24 + .../set_textsearchoptions/_index.md | 24 + .../textfragmentabsorber/_index.md | 406 +++ .../textfragmentabsorber/visit/_index.md | 106 + .../textfragmentcollection/_index.md | 37 + .../textfragmentcollection/add/_index.md | 42 + .../textfragmentcollection/clear/_index.md | 23 + .../textfragmentcollection/contains/_index.md | 45 + .../textfragmentcollection/copyto/_index.md | 50 + .../get_count/_index.md | 23 + .../get_isreadonly/_index.md | 23 + .../get_issynchronized/_index.md | 23 + .../get_syncroot/_index.md | 23 + .../getenumerator/_index.md | 29 + .../textfragmentcollection/idx_get/_index.md | 45 + .../textfragmentcollection/remove/_index.md | 45 + .../textfragmentstate/_index.md | 90 + .../applychangesfrom/_index.md | 44 + .../get_backgroundcolor/_index.md | 24 + .../get_characterspacing/_index.md | 23 + .../get_coordinateorigin/_index.md | 24 + .../get_drawtextrectangleborder/_index.md | 23 + .../textfragmentstate/get_font/_index.md | 24 + .../textfragmentstate/get_fontsize/_index.md | 23 + .../textfragmentstate/get_fontstyle/_index.md | 24 + .../get_foregroundcolor/_index.md | 24 + .../get_formattingoptions/_index.md | 24 + .../get_horizontalalignment/_index.md | 30 + .../get_horizontalscaling/_index.md | 23 + .../textfragmentstate/get_invisible/_index.md | 23 + .../get_linespacing/_index.md | 29 + .../get_renderingmode/_index.md | 24 + .../textfragmentstate/get_rotation/_index.md | 23 + .../textfragmentstate/get_strikeout/_index.md | 23 + .../get_strokingcolor/_index.md | 24 + .../textfragmentstate/get_subscript/_index.md | 23 + .../get_superscript/_index.md | 23 + .../textfragmentstate/get_tabstops/_index.md | 28 + .../textfragmentstate/get_underline/_index.md | 23 + .../get_wordspacing/_index.md | 23 + .../isfitrectangle/_index.md | 55 + .../textfragmentstate/measureheight/_index.md | 44 + .../textfragmentstate/measurestring/_index.md | 44 + .../set_backgroundcolor/_index.md | 24 + .../set_characterspacing/_index.md | 23 + .../set_coordinateorigin/_index.md | 24 + .../set_drawtextrectangleborder/_index.md | 23 + .../textfragmentstate/set_font/_index.md | 24 + .../textfragmentstate/set_fontsize/_index.md | 23 + .../textfragmentstate/set_fontstyle/_index.md | 24 + .../set_foregroundcolor/_index.md | 24 + .../set_formattingoptions/_index.md | 24 + .../set_horizontalalignment/_index.md | 30 + .../set_horizontalscaling/_index.md | 23 + .../textfragmentstate/set_invisible/_index.md | 23 + .../set_linespacing/_index.md | 29 + .../set_renderingmode/_index.md | 24 + .../textfragmentstate/set_rotation/_index.md | 23 + .../textfragmentstate/set_strikeout/_index.md | 23 + .../set_strokingcolor/_index.md | 24 + .../textfragmentstate/set_subscript/_index.md | 23 + .../set_superscript/_index.md | 23 + .../textfragmentstate/set_underline/_index.md | 23 + .../set_wordspacing/_index.md | 23 + .../textfragmentstate/_index.md | 42 + .../cpp/aspose.pdf.text/textoptions/_index.md | 22 + .../aspose.pdf.text/textparagraph/_index.md | 57 + .../textparagraph/appendline/_index.md | 300 +++ .../textparagraph/beginedit/_index.md | 29 + .../textparagraph/endedit/_index.md | 29 + .../get_firstlineindent/_index.md | 23 + .../get_formattingoptions/_index.md | 24 + .../get_horizontalalignment/_index.md | 28 + .../textparagraph/get_justify/_index.md | 23 + .../textparagraph/get_margin/_index.md | 24 + .../textparagraph/get_position/_index.md | 24 + .../textparagraph/get_rectangle/_index.md | 24 + .../textparagraph/get_rotation/_index.md | 23 + .../get_subsequentlinesindent/_index.md | 23 + .../textparagraph/get_textrectangle/_index.md | 24 + .../get_verticalalignment/_index.md | 28 + .../set_firstlineindent/_index.md | 23 + .../set_formattingoptions/_index.md | 24 + .../set_horizontalalignment/_index.md | 28 + .../textparagraph/set_justify/_index.md | 23 + .../textparagraph/set_margin/_index.md | 24 + .../textparagraph/set_position/_index.md | 24 + .../textparagraph/set_rectangle/_index.md | 24 + .../textparagraph/set_rotation/_index.md | 23 + .../set_subsequentlinesindent/_index.md | 23 + .../set_verticalalignment/_index.md | 28 + .../textparagraph/textparagraph/_index.md | 23 + .../textrenderingmode/_index.md | 35 + .../textreplaceoptions/_index.md | 41 + .../get_adjustmentnewlinespacing/_index.md | 23 + .../get_ignoreparagraphs/_index.md | 23 + .../get_leftadjustment/_index.md | 29 + .../get_replaceadjustmentaction/_index.md | 23 + .../get_replacescope/_index.md | 23 + .../get_rightadjustment/_index.md | 30 + .../set_adjustmentnewlinespacing/_index.md | 23 + .../set_ignoreparagraphs/_index.md | 23 + .../set_leftadjustment/_index.md | 29 + .../set_replaceadjustmentaction/_index.md | 23 + .../set_replacescope/_index.md | 23 + .../set_rightadjustment/_index.md | 30 + .../textreplaceoptions/_index.md | 71 + .../textsearchoptions/_index.md | 50 + .../get_ignoreresourcefonterrors/_index.md | 23 + .../get_ignoreshadowtext/_index.md | 23 + .../get_isregularexpressionused/_index.md | 23 + .../get_limittopagebounds/_index.md | 23 + .../get_logtextextractionerrors/_index.md | 23 + .../textsearchoptions/get_rectangle/_index.md | 28 + .../_index.md | 23 + .../get_searchinannotations/_index.md | 23 + .../_index.md | 23 + .../get_usefontengineencoding/_index.md | 23 + .../set_ignoreresourcefonterrors/_index.md | 23 + .../set_ignoreshadowtext/_index.md | 23 + .../set_isregularexpressionused/_index.md | 23 + .../set_limittopagebounds/_index.md | 23 + .../set_logtextextractionerrors/_index.md | 23 + .../textsearchoptions/set_rectangle/_index.md | 28 + .../_index.md | 23 + .../set_searchinannotations/_index.md | 23 + .../_index.md | 23 + .../set_usefontengineencoding/_index.md | 23 + .../textsearchoptions/_index.md | 115 + .../cpp/aspose.pdf.text/textsegment/_index.md | 73 + .../get_baselineposition/_index.md | 24 + .../textsegment/get_characters/_index.md | 24 + .../textsegment/get_endcharindex/_index.md | 23 + .../textsegment/get_hyperlink/_index.md | 24 + .../textsegment/get_position/_index.md | 24 + .../textsegment/get_rectangle/_index.md | 24 + .../textsegment/get_startcharindex/_index.md | 23 + .../textsegment/get_text/_index.md | 23 + .../textsegment/get_texteditoptions/_index.md | 24 + .../textsegment/get_textstate/_index.md | 28 + .../textsegment/myhtmlencode/_index.md | 44 + .../set_baselineposition/_index.md | 24 + .../textsegment/set_hyperlink/_index.md | 24 + .../textsegment/set_position/_index.md | 24 + .../textsegment/set_text/_index.md | 23 + .../textsegment/set_texteditoptions/_index.md | 24 + .../textsegment/set_textstate/_index.md | 28 + .../textsegment/textsegment/_index.md | 55 + .../textsegmentcollection/_index.md | 37 + .../textsegmentcollection/add/_index.md | 42 + .../textsegmentcollection/clear/_index.md | 23 + .../textsegmentcollection/contains/_index.md | 45 + .../textsegmentcollection/copyto/_index.md | 50 + .../textsegmentcollection/get_count/_index.md | 23 + .../get_isreadonly/_index.md | 23 + .../get_issynchronized/_index.md | 23 + .../get_syncroot/_index.md | 23 + .../getenumerator/_index.md | 29 + .../textsegmentcollection/idx_get/_index.md | 45 + .../textsegmentcollection/remove/_index.md | 45 + .../cpp/aspose.pdf.text/textstate/_index.md | 72 + .../textstate/applychangesfrom/_index.md | 44 + .../textstate/get_backgroundcolor/_index.md | 30 + .../textstate/get_characterspacing/_index.md | 23 + .../textstate/get_coordinateorigin/_index.md | 24 + .../textstate/get_font/_index.md | 24 + .../textstate/get_fontsize/_index.md | 23 + .../textstate/get_fontstyle/_index.md | 24 + .../textstate/get_foregroundcolor/_index.md | 24 + .../get_horizontalalignment/_index.md | 30 + .../textstate/get_horizontalscaling/_index.md | 23 + .../textstate/get_invisible/_index.md | 23 + .../textstate/get_linespacing/_index.md | 29 + .../textstate/get_renderingmode/_index.md | 24 + .../textstate/get_strikeout/_index.md | 23 + .../textstate/get_strokingcolor/_index.md | 24 + .../textstate/get_subscript/_index.md | 23 + .../textstate/get_superscript/_index.md | 23 + .../textstate/get_underline/_index.md | 23 + .../textstate/get_wordspacing/_index.md | 23 + .../textstate/measureheight/_index.md | 44 + .../textstate/measurestring/_index.md | 44 + .../textstate/set_backgroundcolor/_index.md | 30 + .../textstate/set_characterspacing/_index.md | 23 + .../textstate/set_coordinateorigin/_index.md | 24 + .../textstate/set_font/_index.md | 24 + .../textstate/set_fontsize/_index.md | 23 + .../textstate/set_fontstyle/_index.md | 24 + .../textstate/set_foregroundcolor/_index.md | 24 + .../set_horizontalalignment/_index.md | 30 + .../textstate/set_horizontalscaling/_index.md | 23 + .../textstate/set_invisible/_index.md | 23 + .../textstate/set_linespacing/_index.md | 29 + .../textstate/set_renderingmode/_index.md | 24 + .../textstate/set_strikeout/_index.md | 23 + .../textstate/set_strokingcolor/_index.md | 24 + .../textstate/set_subscript/_index.md | 23 + .../textstate/set_superscript/_index.md | 23 + .../textstate/set_underline/_index.md | 23 + .../textstate/set_wordspacing/_index.md | 23 + .../textstate/textstate/_index.md | 251 ++ .../unicodesubstitution/_index.md | 33 + .../unicodesubstitution/_index.md | 63 + .../cpp/aspose.pdf.utils.publicdata/_index.md | 22 + .../cospdfboolean/_index.md | 36 + .../cospdfboolean/cospdfboolean/_index.md | 40 + .../cospdfboolean/equals/_index.md | 46 + .../cospdfboolean/get_value/_index.md | 27 + .../cospdfboolean/gethashcode/_index.md | 28 + .../cospdfboolean/tocospdfboolean/_index.md | 29 + .../cospdfboolean/tostring/_index.md | 28 + .../cospdfname/_index.md | 36 + .../cospdfname/cospdfname/_index.md | 40 + .../cospdfname/equals/_index.md | 44 + .../cospdfname/get_value/_index.md | 27 + .../cospdfname/gethashcode/_index.md | 28 + .../cospdfname/tocospdfname/_index.md | 29 + .../cospdfname/tostring/_index.md | 28 + .../cospdfnumber/_index.md | 37 + .../cospdfnumber/cospdfnumber/_index.md | 54 + .../cospdfnumber/equals/_index.md | 46 + .../cospdfnumber/get_value/_index.md | 27 + .../cospdfnumber/gethashcode/_index.md | 28 + .../cospdfnumber/tocospdfnumber/_index.md | 29 + .../cospdfnumber/tostring/_index.md | 28 + .../cospdfprimitive/_index.md | 31 + .../cospdfprimitive/tocospdfboolean/_index.md | 29 + .../cospdfprimitive/tocospdfname/_index.md | 29 + .../cospdfprimitive/tocospdfnumber/_index.md | 29 + .../cospdfprimitive/tocospdfstring/_index.md | 29 + .../cospdfstring/_index.md | 38 + .../cospdfstring/cospdfstring/_index.md | 80 + .../cospdfstring/equals/_index.md | 46 + .../cospdfstring/get_ishexadecimal/_index.md | 27 + .../cospdfstring/get_value/_index.md | 27 + .../cospdfstring/gethashcode/_index.md | 28 + .../cospdfstring/tocospdfstring/_index.md | 29 + .../cospdfstring/tostring/_index.md | 28 + .../icospdfprimitive/_index.md | 30 + .../tocospdfboolean/_index.md | 29 + .../icospdfprimitive/tocospdfname/_index.md | 29 + .../icospdfprimitive/tocospdfnumber/_index.md | 29 + .../icospdfprimitive/tocospdfstring/_index.md | 29 + english/cpp/aspose.pdf.utils/_index.md | 17 + .../dictionaryeditor/_index.md | 45 + .../dictionaryeditor/add/_index.md | 100 + .../dictionaryeditor/clear/_index.md | 23 + .../dictionaryeditor/contains/_index.md | 45 + .../dictionaryeditor/containskey/_index.md | 44 + .../dictionaryeditor/copyto/_index.md | 75 + .../dictionaryeditor/_index.md | 39 + .../dictionaryeditor/get_allkeys/_index.md | 23 + .../dictionaryeditor/get_count/_index.md | 23 + .../dictionaryeditor/get_isreadonly/_index.md | 28 + .../dictionaryeditor/get_keys/_index.md | 23 + .../dictionaryeditor/get_values/_index.md | 24 + .../dictionaryeditor/getenumerator/_index.md | 29 + .../dictionaryeditor/idx_get/_index.md | 70 + .../dictionaryeditor/idx_set/_index.md | 75 + .../dictionaryeditor/remove/_index.md | 80 + .../dictionaryeditor/trygetvalue/_index.md | 54 + .../aspose.pdf.vector.extraction/_index.md | 19 + .../subpathgroup/_index.md | 22 + .../svgextractionoptions/_index.md | 43 + .../get_autogrouping/_index.md | 23 + .../get_extracteverysubpathtosvg/_index.md | 23 + .../get_extractionareabound/_index.md | 24 + .../get_groupstrength/_index.md | 23 + .../get_minstrokewidth/_index.md | 27 + .../_index.md | 23 + .../get_unpackpagecontentxform/_index.md | 23 + .../get_unpackxformpredicate/_index.md | 24 + .../set_autogrouping/_index.md | 23 + .../set_extracteverysubpathtosvg/_index.md | 23 + .../set_extractionareabound/_index.md | 24 + .../set_groupstrength/_index.md | 23 + .../set_minstrokewidth/_index.md | 27 + .../_index.md | 23 + .../set_unpackpagecontentxform/_index.md | 23 + .../set_unpackxformpredicate/_index.md | 24 + .../svgextractionoptions/_index.md | 23 + .../svgextractor/_index.md | 34 + .../svgextractor/extract/_index.md | 354 +++ .../svgextractor/svgextractor/_index.md | 55 + english/cpp/aspose.pdf.vector/_index.md | 23 + .../graphicelement/_index.md | 38 + .../graphicelement/addonpage/_index.md | 41 + .../graphicelement/dispose/_index.md | 23 + .../graphicelement/get_matrix/_index.md | 24 + .../graphicelement/get_operators/_index.md | 24 + .../graphicelement/get_parent/_index.md | 24 + .../graphicelement/get_position/_index.md | 24 + .../graphicelement/get_rectangle/_index.md | 24 + .../graphicelement/get_sourcepage/_index.md | 24 + .../graphicelement/remove/_index.md | 23 + .../graphicelement/savetosvg/_index.md | 59 + .../graphicelement/set_position/_index.md | 24 + .../graphicelementcollection/_index.md | 36 + .../graphicelementcollection/add/_index.md | 41 + .../graphicelementcollection/clear/_index.md | 23 + .../contains/_index.md | 46 + .../graphicelementcollection/copyto/_index.md | 50 + .../get_count/_index.md | 23 + .../getenumerator/_index.md | 29 + .../graphicelementcollection/_index.md | 23 + .../idx_get/_index.md | 45 + .../graphicelementcollection/remove/_index.md | 46 + .../tostring/_index.md | 28 + .../graphicsabsorber/_index.md | 40 + .../graphicsabsorber/dispose/_index.md | 23 + .../graphicsabsorber/get_elements/_index.md | 24 + .../graphicsabsorber/_index.md | 23 + .../graphicsabsorber/resumeupdate/_index.md | 27 + .../graphicsabsorber/suppressupdate/_index.md | 27 + .../graphicsabsorber/visit/_index.md | 41 + .../aspose.pdf.vector/graphicstate/_index.md | 30 + .../get_clipsandmatrices/_index.md | 24 + .../get_colorsandstyles/_index.md | 24 + .../graphicstate/get_matrix/_index.md | 24 + .../graphicstate/set_matrix/_index.md | 24 + .../aspose.pdf.vector/namespacedoc/_index.md | 22 + .../cpp/aspose.pdf.vector/subpath/_index.md | 39 + .../subpath/get_rectangle/_index.md | 24 + .../xformplacement/_index.md | 42 + .../xformplacement/addonpage/_index.md | 41 + .../xformplacement/get_elements/_index.md | 24 + .../xformplacement/get_name/_index.md | 23 + .../xformplacement/get_rectangle/_index.md | 24 + .../xformplacement/get_xform/_index.md | 24 + .../xformplacement/set_position/_index.md | 24 + english/cpp/aspose.pdf.xfaconverter/_index.md | 17 + .../xfaparseroptions/_index.md | 37 + .../xfaparseroptions/get_basepath/_index.md | 27 + .../get_emulaterequierdgroups/_index.md | 23 + .../xfaparseroptions/get_pagesize/_index.md | 27 + .../xfaparseroptions/get_signed/_index.md | 23 + .../get_uriresolver/_index.md | 27 + .../xfaparseroptions/set_basepath/_index.md | 27 + .../set_emulaterequierdgroups/_index.md | 23 + .../xfaparseroptions/set_pagesize/_index.md | 27 + .../xfaparseroptions/set_signed/_index.md | 23 + .../set_uriresolver/_index.md | 27 + .../xfaparseroptions/_index.md | 40 + english/cpp/aspose.pdf/_index.md | 274 ++ .../cpp/aspose.pdf/afrelationship/_index.md | 34 + .../cpp/aspose.pdf/apsloadoptions/_index.md | 42 + .../apsloadoptions/apsloadoptions/_index.md | 23 + .../cpp/aspose.pdf/apssaveoptions/_index.md | 38 + .../apssaveoptions/apssaveoptions/_index.md | 23 + english/cpp/aspose.pdf/artifact/_index.md | 78 + .../aspose.pdf/artifact/artifact/_index.md | 91 + .../artifact/beginupdates/_index.md | 23 + .../cpp/aspose.pdf/artifact/dispose/_index.md | 23 + .../get_artifacthorizontalalignment/_index.md | 24 + .../get_artifactverticalalignment/_index.md | 24 + .../artifact/get_bottommargin/_index.md | 23 + .../artifact/get_contents/_index.md | 24 + .../artifact/get_customsubtype/_index.md | 23 + .../artifact/get_customtype/_index.md | 23 + .../aspose.pdf/artifact/get_form/_index.md | 24 + .../aspose.pdf/artifact/get_image/_index.md | 24 + .../artifact/get_isbackground/_index.md | 23 + .../artifact/get_leftmargin/_index.md | 23 + .../aspose.pdf/artifact/get_lines/_index.md | 23 + .../aspose.pdf/artifact/get_opacity/_index.md | 23 + .../artifact/get_position/_index.md | 24 + .../artifact/get_rectangle/_index.md | 24 + .../artifact/get_rightmargin/_index.md | 23 + .../artifact/get_rotation/_index.md | 23 + .../aspose.pdf/artifact/get_subtype/_index.md | 23 + .../aspose.pdf/artifact/get_text/_index.md | 23 + .../artifact/get_textstate/_index.md | 24 + .../artifact/get_topmargin/_index.md | 23 + .../aspose.pdf/artifact/get_type/_index.md | 23 + .../aspose.pdf/artifact/getvalue/_index.md | 44 + .../aspose.pdf/artifact/removevalue/_index.md | 40 + .../aspose.pdf/artifact/saveupdates/_index.md | 23 + .../set_artifacthorizontalalignment/_index.md | 24 + .../set_artifactverticalalignment/_index.md | 24 + .../artifact/set_bottommargin/_index.md | 23 + .../artifact/set_customsubtype/_index.md | 23 + .../artifact/set_customtype/_index.md | 23 + .../artifact/set_isbackground/_index.md | 23 + .../artifact/set_leftmargin/_index.md | 23 + .../aspose.pdf/artifact/set_opacity/_index.md | 23 + .../artifact/set_position/_index.md | 24 + .../artifact/set_rightmargin/_index.md | 23 + .../artifact/set_rotation/_index.md | 23 + .../aspose.pdf/artifact/set_subtype/_index.md | 23 + .../aspose.pdf/artifact/set_text/_index.md | 23 + .../artifact/set_textstate/_index.md | 24 + .../artifact/set_topmargin/_index.md | 23 + .../aspose.pdf/artifact/set_type/_index.md | 23 + .../aspose.pdf/artifact/setimage/_index.md | 71 + .../artifact/setlinesandstate/_index.md | 51 + .../setpagenumberreplacementstring/_index.md | 40 + .../aspose.pdf/artifact/setpdfpage/_index.md | 42 + .../cpp/aspose.pdf/artifact/settext/_index.md | 41 + .../artifact/settextandstate/_index.md | 52 + .../aspose.pdf/artifact/setvalue/_index.md | 49 + .../aspose.pdf/artifactcollection/_index.md | 38 + .../artifactcollection/add/_index.md | 42 + .../artifactcollection/copyto/_index.md | 50 + .../artifactcollection/delete/_index.md | 73 + .../artifactcollection/findbyvalue/_index.md | 54 + .../artifactcollection/get_count/_index.md | 23 + .../get_isreadonly/_index.md | 23 + .../get_issynchronized/_index.md | 23 + .../artifactcollection/get_syncroot/_index.md | 23 + .../getenumerator/_index.md | 29 + .../artifactcollection/idx_get/_index.md | 45 + .../artifactcollection/update/_index.md | 42 + .../aspose.pdf/assemblyconstants/_index.md | 35 + .../assemblyconstants/family/_index.md | 23 + .../assemblyconstants/platform/_index.md | 23 + .../assemblyconstants/producer/_index.md | 23 + .../assemblyconstants/product/_index.md | 55 + .../assemblyconstants/releasedate/_index.md | 23 + .../assemblyconstants/title/_index.md | 23 + .../assemblyconstants/version/_index.md | 55 + .../aspose.pdf/backgroundartifact/_index.md | 84 + .../backgroundartifact/_index.md | 23 + .../get_backgroundcolor/_index.md | 24 + .../get_backgroundimage/_index.md | 23 + .../set_backgroundcolor/_index.md | 24 + .../set_backgroundimage/_index.md | 23 + .../aspose.pdf/baseactioncollection/_index.md | 27 + .../removeactions/_index.md | 23 + .../baseoperatorcollection/_index.md | 41 + .../baseoperatorcollection/add/_index.md | 42 + .../cancelupdate/_index.md | 23 + .../baseoperatorcollection/clear/_index.md | 23 + .../baseoperatorcollection/contains/_index.md | 46 + .../baseoperatorcollection/copyto/_index.md | 50 + .../get_count/_index.md | 23 + .../get_isfasttextextractionmode/_index.md | 23 + .../get_isreadonly/_index.md | 23 + .../getenumerator/_index.md | 29 + .../baseoperatorcollection/idx_get/_index.md | 45 + .../baseoperatorcollection/idx_set/_index.md | 51 + .../baseoperatorcollection/insert/_index.md | 51 + .../baseoperatorcollection/remove/_index.md | 46 + .../resumeupdate/_index.md | 23 + .../suppressupdate/_index.md | 23 + .../cpp/aspose.pdf/baseparagraph/_index.md | 46 + .../baseparagraph/baseparagraph/_index.md | 23 + .../aspose.pdf/baseparagraph/clone/_index.md | 28 + .../get_horizontalalignment/_index.md | 24 + .../baseparagraph/get_hyperlink/_index.md | 24 + .../get_isfirstparagraphincolumn/_index.md | 23 + .../get_isinlineparagraph/_index.md | 23 + .../baseparagraph/get_isinnewpage/_index.md | 23 + .../get_iskeptwithnext/_index.md | 23 + .../baseparagraph/get_margin/_index.md | 24 + .../get_verticalalignment/_index.md | 24 + .../baseparagraph/get_zindex/_index.md | 23 + .../set_horizontalalignment/_index.md | 24 + .../baseparagraph/set_hyperlink/_index.md | 24 + .../set_isfirstparagraphincolumn/_index.md | 23 + .../set_isinlineparagraph/_index.md | 23 + .../baseparagraph/set_isinnewpage/_index.md | 23 + .../set_iskeptwithnext/_index.md | 23 + .../baseparagraph/set_margin/_index.md | 24 + .../set_verticalalignment/_index.md | 24 + .../baseparagraph/set_zindex/_index.md | 23 + english/cpp/aspose.pdf/bitmapinfo/_index.md | 35 + .../bitmapinfo/bitmapinfo/_index.md | 71 + .../bitmapinfo/get_format/_index.md | 23 + .../bitmapinfo/get_height/_index.md | 23 + .../bitmapinfo/get_pixelbytes/_index.md | 23 + .../aspose.pdf/bitmapinfo/get_width/_index.md | 23 + english/cpp/aspose.pdf/blendmode/_index.md | 44 + .../aspose.pdf/bordercornerstyle/_index.md | 29 + english/cpp/aspose.pdf/borderinfo/_index.md | 43 + .../borderinfo/borderinfo/_index.md | 231 ++ .../cpp/aspose.pdf/borderinfo/clone/_index.md | 28 + .../borderinfo/get_bottom/_index.md | 24 + .../aspose.pdf/borderinfo/get_left/_index.md | 24 + .../aspose.pdf/borderinfo/get_right/_index.md | 24 + .../get_roundedborderradius/_index.md | 23 + .../aspose.pdf/borderinfo/get_top/_index.md | 24 + .../borderinfo/set_bottom/_index.md | 24 + .../aspose.pdf/borderinfo/set_left/_index.md | 24 + .../aspose.pdf/borderinfo/set_right/_index.md | 24 + .../set_roundedborderradius/_index.md | 23 + .../aspose.pdf/borderinfo/set_top/_index.md | 24 + english/cpp/aspose.pdf/borderside/_index.md | 34 + .../cpp/aspose.pdf/buildversioninfo/_index.md | 31 + .../assemblyversion/_index.md | 23 + .../buildversioninfo/fileversion/_index.md | 23 + .../internalproducer/_index.md | 23 + .../buildversioninfo/producer/_index.md | 23 + .../buildversioninfo/product/_index.md | 23 + .../cpp/aspose.pdf/cdrloadoptions/_index.md | 42 + .../cdrloadoptions/cdrloadoptions/_index.md | 23 + english/cpp/aspose.pdf/cell/_index.md | 58 + english/cpp/aspose.pdf/cell/cell/_index.md | 55 + english/cpp/aspose.pdf/cell/clone/_index.md | 28 + .../aspose.pdf/cell/get_alignment/_index.md | 24 + .../cell/get_backgroundcolor/_index.md | 24 + .../cell/get_backgroundimage/_index.md | 24 + .../cell/get_backgroundimagefile/_index.md | 32 + .../cpp/aspose.pdf/cell/get_border/_index.md | 24 + .../cpp/aspose.pdf/cell/get_colspan/_index.md | 23 + .../cell/get_defaultcelltextstate/_index.md | 24 + .../aspose.pdf/cell/get_isnoborder/_index.md | 23 + .../cell/get_isoverridebyfragment/_index.md | 23 + .../cell/get_iswordwrapped/_index.md | 23 + .../cpp/aspose.pdf/cell/get_margin/_index.md | 24 + .../aspose.pdf/cell/get_paragraphs/_index.md | 24 + .../cpp/aspose.pdf/cell/get_rowspan/_index.md | 23 + .../cell/get_verticalalignment/_index.md | 24 + .../cpp/aspose.pdf/cell/get_width/_index.md | 23 + .../aspose.pdf/cell/set_alignment/_index.md | 24 + .../cell/set_backgroundcolor/_index.md | 24 + .../cell/set_backgroundimage/_index.md | 24 + .../cell/set_backgroundimagefile/_index.md | 32 + .../cpp/aspose.pdf/cell/set_border/_index.md | 24 + .../cpp/aspose.pdf/cell/set_colspan/_index.md | 23 + .../cell/set_defaultcelltextstate/_index.md | 24 + .../aspose.pdf/cell/set_isnoborder/_index.md | 23 + .../cell/set_isoverridebyfragment/_index.md | 23 + .../cell/set_iswordwrapped/_index.md | 23 + .../cpp/aspose.pdf/cell/set_margin/_index.md | 24 + .../aspose.pdf/cell/set_paragraphs/_index.md | 24 + .../cpp/aspose.pdf/cell/set_rowspan/_index.md | 23 + .../cell/set_verticalalignment/_index.md | 24 + english/cpp/aspose.pdf/cells/_index.md | 58 + english/cpp/aspose.pdf/cells/add/_index.md | 143 + english/cpp/aspose.pdf/cells/begin/_index.md | 49 + english/cpp/aspose.pdf/cells/cbegin/_index.md | 29 + english/cpp/aspose.pdf/cells/cells/_index.md | 23 + english/cpp/aspose.pdf/cells/cend/_index.md | 29 + .../aspose.pdf/cells/const_iterator/_index.md | 23 + .../cpp/aspose.pdf/cells/dispose/_index.md | 23 + english/cpp/aspose.pdf/cells/end/_index.md | 49 + .../cpp/aspose.pdf/cells/get_count/_index.md | 23 + .../aspose.pdf/cells/getenumerator/_index.md | 29 + .../cpp/aspose.pdf/cells/idx_get/_index.md | 45 + .../cpp/aspose.pdf/cells/idx_set/_index.md | 48 + english/cpp/aspose.pdf/cells/insert/_index.md | 50 + .../cpp/aspose.pdf/cells/iterator/_index.md | 23 + .../cells/iterator_holder_type/_index.md | 23 + english/cpp/aspose.pdf/cells/remove/_index.md | 41 + .../aspose.pdf/cells/removerange/_index.md | 49 + .../virtualizebeginconstiterator/_index.md | 29 + .../cells/virtualizebeginiterator/_index.md | 29 + .../cells/virtualized_iterator/_index.md | 23 + .../virtualized_iterator_element/_index.md | 23 + .../virtualizeendconstiterator/_index.md | 29 + .../cells/virtualizeenditerator/_index.md | 29 + .../cpp/aspose.pdf/cgmimportoptions/_index.md | 31 + .../cgmimportoptions/_index.md | 23 + .../cgmimportoptions/get_pagesize/_index.md | 23 + .../cgmimportoptions/set_pagesize/_index.md | 23 + .../cpp/aspose.pdf/cgmloadoptions/_index.md | 44 + .../cgmloadoptions/cgmloadoptions/_index.md | 54 + .../cgmloadoptions/get_pagesize/_index.md | 23 + english/cpp/aspose.pdf/collection/_index.md | 45 + .../collection/collection/_index.md | 23 + .../collection/get_defaultentry/_index.md | 23 + .../collection/get_schema/_index.md | 24 + .../collection/getsortedcollection/_index.md | 29 + .../cpp/aspose.pdf/collectionfield/_index.md | 32 + .../collectionfield/get_e/_index.md | 23 + .../collectionfield/get_filedtype/_index.md | 24 + .../collectionfield/get_n/_index.md | 23 + .../collectionfield/get_o/_index.md | 23 + .../collectionfield/get_subtype/_index.md | 24 + .../collectionfield/get_v/_index.md | 23 + .../collectionfieldsubtype/_index.md | 37 + .../collectionfieldsubtypeconverter/_index.md | 30 + .../convert/_index.md | 117 + .../converttofieldtype/_index.md | 46 + .../cpp/aspose.pdf/collectionitem/_index.md | 33 + .../collectionitem/get_allnames/_index.md | 23 + .../collectionitem/get_isempty/_index.md | 32 + .../collectionitem/hasname/_index.md | 44 + .../trygetdatetimevalue/_index.md | 53 + .../trygetdoublevalue/_index.md | 53 + .../collectionitem/trygetintvalue/_index.md | 53 + .../collectionitem/trygettextvalue/_index.md | 53 + .../cpp/aspose.pdf/collectionschema/_index.md | 30 + .../collectionschema/get_allfields/_index.md | 24 + .../collectionschema/get_allnames/_index.md | 23 + .../getcollectionfield/_index.md | 45 + .../collectionschema/hasname/_index.md | 44 + .../cpp/aspose.pdf/collectionsort/_index.md | 30 + .../collectionsort/collectionsort/_index.md | 54 + .../aspose.pdf/collectionsort/get_a/_index.md | 23 + .../aspose.pdf/collectionsort/get_s/_index.md | 23 + english/cpp/aspose.pdf/color/_index.md | 188 ++ english/cpp/aspose.pdf/color/color/_index.md | 23 + english/cpp/aspose.pdf/color/empty/_index.md | 23 + english/cpp/aspose.pdf/color/equals/_index.md | 44 + .../cpp/aspose.pdf/color/fromargb/_index.md | 126 + .../cpp/aspose.pdf/color/fromcmyk/_index.md | 72 + .../cpp/aspose.pdf/color/fromgray/_index.md | 45 + .../cpp/aspose.pdf/color/fromrgb/_index.md | 100 + english/cpp/aspose.pdf/color/get_a/_index.md | 23 + .../aspose.pdf/color/get_aliceblue/_index.md | 29 + .../color/get_antiquewhite/_index.md | 29 + .../cpp/aspose.pdf/color/get_aqua/_index.md | 29 + .../aspose.pdf/color/get_aquamarine/_index.md | 29 + .../cpp/aspose.pdf/color/get_azure/_index.md | 29 + .../cpp/aspose.pdf/color/get_beige/_index.md | 29 + .../cpp/aspose.pdf/color/get_bisque/_index.md | 29 + .../cpp/aspose.pdf/color/get_black/_index.md | 29 + .../color/get_blanchedalmond/_index.md | 29 + .../cpp/aspose.pdf/color/get_blue/_index.md | 29 + .../aspose.pdf/color/get_blueviolet/_index.md | 29 + .../cpp/aspose.pdf/color/get_brown/_index.md | 29 + .../aspose.pdf/color/get_burlywood/_index.md | 29 + .../aspose.pdf/color/get_cadetblue/_index.md | 29 + .../aspose.pdf/color/get_chartreuse/_index.md | 29 + .../aspose.pdf/color/get_chocolate/_index.md | 29 + .../aspose.pdf/color/get_colorspace/_index.md | 24 + .../cpp/aspose.pdf/color/get_coral/_index.md | 29 + .../color/get_cornflowerblue/_index.md | 29 + .../aspose.pdf/color/get_cornsilk/_index.md | 29 + .../aspose.pdf/color/get_crimson/_index.md | 29 + .../cpp/aspose.pdf/color/get_cyan/_index.md | 29 + .../aspose.pdf/color/get_darkblue/_index.md | 29 + .../aspose.pdf/color/get_darkcyan/_index.md | 29 + .../color/get_darkgoldenrod/_index.md | 29 + .../aspose.pdf/color/get_darkgray/_index.md | 29 + .../aspose.pdf/color/get_darkgreen/_index.md | 29 + .../aspose.pdf/color/get_darkkhaki/_index.md | 29 + .../color/get_darkmagenta/_index.md | 29 + .../color/get_darkolivegreen/_index.md | 29 + .../aspose.pdf/color/get_darkorange/_index.md | 29 + .../aspose.pdf/color/get_darkorchid/_index.md | 29 + .../aspose.pdf/color/get_darkred/_index.md | 29 + .../aspose.pdf/color/get_darksalmon/_index.md | 29 + .../color/get_darkseagreen/_index.md | 29 + .../color/get_darkslateblue/_index.md | 29 + .../color/get_darkslategray/_index.md | 29 + .../color/get_darkturquoise/_index.md | 29 + .../aspose.pdf/color/get_darkviolet/_index.md | 29 + .../cpp/aspose.pdf/color/get_data/_index.md | 23 + .../aspose.pdf/color/get_deeppink/_index.md | 29 + .../color/get_deepskyblue/_index.md | 29 + .../aspose.pdf/color/get_dimgray/_index.md | 29 + .../aspose.pdf/color/get_dodgerblue/_index.md | 29 + .../aspose.pdf/color/get_firebrick/_index.md | 29 + .../color/get_floralwhite/_index.md | 29 + .../color/get_forestgreen/_index.md | 29 + .../aspose.pdf/color/get_fuchsia/_index.md | 29 + .../aspose.pdf/color/get_gainsboro/_index.md | 29 + .../aspose.pdf/color/get_ghostwhite/_index.md | 29 + .../cpp/aspose.pdf/color/get_gold/_index.md | 29 + .../aspose.pdf/color/get_goldenrod/_index.md | 29 + .../cpp/aspose.pdf/color/get_gray/_index.md | 29 + .../cpp/aspose.pdf/color/get_green/_index.md | 29 + .../color/get_greenyellow/_index.md | 29 + .../aspose.pdf/color/get_honeydew/_index.md | 29 + .../aspose.pdf/color/get_hotpink/_index.md | 29 + .../aspose.pdf/color/get_indianred/_index.md | 29 + .../cpp/aspose.pdf/color/get_indigo/_index.md | 29 + .../cpp/aspose.pdf/color/get_ivory/_index.md | 29 + .../cpp/aspose.pdf/color/get_khaki/_index.md | 29 + .../aspose.pdf/color/get_lavender/_index.md | 29 + .../color/get_lavenderblush/_index.md | 29 + .../aspose.pdf/color/get_lawngreen/_index.md | 29 + .../color/get_lemonchiffon/_index.md | 29 + .../aspose.pdf/color/get_lightblue/_index.md | 29 + .../aspose.pdf/color/get_lightcoral/_index.md | 29 + .../aspose.pdf/color/get_lightcyan/_index.md | 29 + .../color/get_lightgoldenrodyellow/_index.md | 29 + .../aspose.pdf/color/get_lightgray/_index.md | 29 + .../aspose.pdf/color/get_lightgreen/_index.md | 29 + .../aspose.pdf/color/get_lightpink/_index.md | 29 + .../color/get_lightsalmon/_index.md | 29 + .../color/get_lightseagreen/_index.md | 29 + .../color/get_lightskyblue/_index.md | 29 + .../color/get_lightslategray/_index.md | 29 + .../color/get_lightsteelblue/_index.md | 29 + .../color/get_lightyellow/_index.md | 29 + .../cpp/aspose.pdf/color/get_lime/_index.md | 29 + .../aspose.pdf/color/get_limegreen/_index.md | 29 + .../cpp/aspose.pdf/color/get_linen/_index.md | 29 + .../aspose.pdf/color/get_magenta/_index.md | 29 + .../cpp/aspose.pdf/color/get_maroon/_index.md | 29 + .../color/get_mediumaquamarine/_index.md | 29 + .../aspose.pdf/color/get_mediumblue/_index.md | 29 + .../color/get_mediumorchid/_index.md | 29 + .../color/get_mediumpurple/_index.md | 29 + .../color/get_mediumseagreen/_index.md | 29 + .../color/get_mediumslateblue/_index.md | 29 + .../color/get_mediumspringgreen/_index.md | 29 + .../color/get_mediumturquoise/_index.md | 29 + .../color/get_mediumvioletred/_index.md | 29 + .../color/get_midnightblue/_index.md | 29 + .../aspose.pdf/color/get_mintcream/_index.md | 29 + .../aspose.pdf/color/get_mistyrose/_index.md | 29 + .../aspose.pdf/color/get_moccasin/_index.md | 29 + .../color/get_navajowhite/_index.md | 29 + .../cpp/aspose.pdf/color/get_navy/_index.md | 29 + .../aspose.pdf/color/get_oldlace/_index.md | 29 + .../cpp/aspose.pdf/color/get_olive/_index.md | 29 + .../aspose.pdf/color/get_olivedrab/_index.md | 29 + .../cpp/aspose.pdf/color/get_orange/_index.md | 29 + .../aspose.pdf/color/get_orangered/_index.md | 29 + .../cpp/aspose.pdf/color/get_orchid/_index.md | 29 + .../color/get_palegoldenrod/_index.md | 29 + .../aspose.pdf/color/get_palegreen/_index.md | 29 + .../color/get_paleturquoise/_index.md | 29 + .../color/get_palevioletred/_index.md | 29 + .../aspose.pdf/color/get_papayawhip/_index.md | 29 + .../color/get_patterncolorspace/_index.md | 24 + .../aspose.pdf/color/get_peachpuff/_index.md | 29 + .../cpp/aspose.pdf/color/get_peru/_index.md | 29 + .../cpp/aspose.pdf/color/get_pink/_index.md | 29 + .../cpp/aspose.pdf/color/get_plum/_index.md | 29 + .../aspose.pdf/color/get_powderblue/_index.md | 29 + .../cpp/aspose.pdf/color/get_purple/_index.md | 29 + .../cpp/aspose.pdf/color/get_red/_index.md | 29 + .../aspose.pdf/color/get_rosybrown/_index.md | 29 + .../aspose.pdf/color/get_royalblue/_index.md | 29 + .../color/get_saddlebrown/_index.md | 29 + .../cpp/aspose.pdf/color/get_salmon/_index.md | 29 + .../aspose.pdf/color/get_sandybrown/_index.md | 29 + .../aspose.pdf/color/get_seagreen/_index.md | 29 + .../aspose.pdf/color/get_seashell/_index.md | 29 + .../cpp/aspose.pdf/color/get_sienna/_index.md | 29 + .../cpp/aspose.pdf/color/get_silver/_index.md | 29 + .../aspose.pdf/color/get_skyblue/_index.md | 29 + .../aspose.pdf/color/get_slateblue/_index.md | 29 + .../aspose.pdf/color/get_slategray/_index.md | 29 + .../cpp/aspose.pdf/color/get_snow/_index.md | 29 + .../color/get_springgreen/_index.md | 29 + .../aspose.pdf/color/get_steelblue/_index.md | 29 + .../cpp/aspose.pdf/color/get_tan/_index.md | 29 + .../cpp/aspose.pdf/color/get_teal/_index.md | 29 + .../aspose.pdf/color/get_thistle/_index.md | 29 + .../cpp/aspose.pdf/color/get_tomato/_index.md | 29 + .../color/get_transparent/_index.md | 29 + .../aspose.pdf/color/get_turquoise/_index.md | 29 + .../cpp/aspose.pdf/color/get_violet/_index.md | 29 + .../cpp/aspose.pdf/color/get_wheat/_index.md | 29 + .../cpp/aspose.pdf/color/get_white/_index.md | 29 + .../aspose.pdf/color/get_whitesmoke/_index.md | 29 + .../cpp/aspose.pdf/color/get_yellow/_index.md | 29 + .../color/get_yellowgreen/_index.md | 29 + english/cpp/aspose.pdf/color/parse/_index.md | 45 + .../color/set_patterncolorspace/_index.md | 24 + english/cpp/aspose.pdf/color/torgb/_index.md | 28 + .../cpp/aspose.pdf/color/tostring/_index.md | 28 + english/cpp/aspose.pdf/colorspace/_index.md | 30 + .../aspose.pdf/colorspaceconverter/_index.md | 28 + .../colorspaceconverter/toenum/_index.md | 24 + .../colorspaceconverter/tostring/_index.md | 24 + english/cpp/aspose.pdf/colortype/_index.md | 31 + .../cpp/aspose.pdf/columnadjustment/_index.md | 30 + english/cpp/aspose.pdf/columninfo/_index.md | 33 + .../columninfo/columninfo/_index.md | 23 + .../columninfo/get_columncount/_index.md | 23 + .../columninfo/get_columnspacing/_index.md | 27 + .../columninfo/get_columnwidths/_index.md | 23 + .../columninfo/set_columncount/_index.md | 23 + .../columninfo/set_columnspacing/_index.md | 27 + .../columninfo/set_columnwidths/_index.md | 23 + english/cpp/aspose.pdf/comhelper/_index.md | 39 + .../aspose.pdf/comhelper/openfile/_index.md | 192 ++ .../aspose.pdf/comhelper/openstream/_index.md | 235 ++ .../compositingparameters/_index.md | 32 + .../compositingparameters/_index.md | 134 + .../get_blendmode/_index.md | 24 + .../get_filtertype/_index.md | 24 + .../get_ismasked/_index.md | 23 + .../aspose.pdf/contentdisposition/_index.md | 29 + .../aspose.pdf/converterroraction/_index.md | 29 + .../convertsoftmaskaction/_index.md | 29 + .../converttransparencyaction/_index.md | 29 + .../aspose.pdf/crashreportoptions/_index.md | 37 + .../crashreportoptions/_index.md | 49 + .../get_applicationtitle/_index.md | 23 + .../get_crashreportdirectory/_index.md | 23 + .../get_crashreportfilename/_index.md | 23 + .../get_crashreportpath/_index.md | 23 + .../get_custommessage/_index.md | 23 + .../get_exception/_index.md | 23 + .../get_libraryversion/_index.md | 23 + .../set_crashreportdirectory/_index.md | 23 + .../set_crashreportfilename/_index.md | 23 + .../set_custommessage/_index.md | 23 + .../cpp/aspose.pdf/cryptoalgorithm/_index.md | 31 + .../deprecatedfeatureexception/_index.md | 22 + .../destinationcollection/_index.md | 38 + .../destinationcollection/add/_index.md | 47 + .../destinationcollection/clear/_index.md | 23 + .../destinationcollection/contains/_index.md | 44 + .../destinationcollection/copyto/_index.md | 49 + .../destinationcollection/get_count/_index.md | 23 + .../get_isreadonly/_index.md | 23 + .../getenumerator/_index.md | 28 + .../getexplicitdestination/_index.md | 54 + .../getpagenumber/_index.md | 53 + .../destinationcollection/idx_get/_index.md | 44 + .../destinationcollection/indexof/_index.md | 44 + .../destinationcollection/remove/_index.md | 51 + .../aspose.pdf/digesthashalgorithm/_index.md | 30 + english/cpp/aspose.pdf/direction/_index.md | 29 + .../aspose.pdf/directionconverter/_index.md | 28 + .../directionconverter/toenum/_index.md | 24 + .../directionconverter/tostring/_index.md | 24 + .../cpp/aspose.pdf/djvuloadoptions/_index.md | 42 + .../djvuloadoptions/djvuloadoptions/_index.md | 23 + .../cpp/aspose.pdf/docsaveoptions/_index.md | 64 + .../docsaveoptions/docsaveoptions/_index.md | 23 + .../get_addreturntolineend/_index.md | 23 + .../docsaveoptions/get_batchsize/_index.md | 23 + .../get_converttype3fonts/_index.md | 23 + .../docsaveoptions/get_format/_index.md | 23 + .../get_imageresolutionx/_index.md | 23 + .../get_imageresolutiony/_index.md | 23 + .../get_maxdistancebetweentextlines/_index.md | 23 + .../get_memorysavemodepath/_index.md | 23 + .../docsaveoptions/get_mode/_index.md | 23 + .../get_recognizebullets/_index.md | 23 + .../get_relativehorizontalproximity/_index.md | 23 + .../docsaveoptions/get_resavefonts/_index.md | 23 + .../set_addreturntolineend/_index.md | 23 + .../docsaveoptions/set_batchsize/_index.md | 23 + .../set_converttype3fonts/_index.md | 23 + .../docsaveoptions/set_format/_index.md | 23 + .../set_imageresolutionx/_index.md | 23 + .../set_imageresolutiony/_index.md | 23 + .../set_maxdistancebetweentextlines/_index.md | 23 + .../set_memorysavemodepath/_index.md | 23 + .../docsaveoptions/set_mode/_index.md | 23 + .../set_recognizebullets/_index.md | 23 + .../set_relativehorizontalproximity/_index.md | 23 + .../docsaveoptions/set_resavefonts/_index.md | 23 + english/cpp/aspose.pdf/document/_index.md | 210 ++ .../cpp/aspose.pdf/document/bindxml/_index.md | 200 ++ .../document/callbackgethocr/_index.md | 23 + .../callbackgethocrwithpage/_index.md | 23 + .../document/changepasswords/_index.md | 58 + .../cpp/aspose.pdf/document/check/_index.md | 44 + .../cpp/aspose.pdf/document/convert/_index.md | 744 ++++++ .../convertpagetopngmemorystream/_index.md | 46 + .../cpp/aspose.pdf/document/decrypt/_index.md | 23 + .../defaultnodesnuminsubtrees/_index.md | 23 + .../cpp/aspose.pdf/document/dispose/_index.md | 23 + .../aspose.pdf/document/document/_index.md | 459 ++++ .../cpp/aspose.pdf/document/encrypt/_index.md | 210 ++ .../exportannotationstoxfdf/_index.md | 71 + .../cpp/aspose.pdf/document/flatten/_index.md | 54 + .../document/flattentransparency/_index.md | 23 + .../fontsubstitutionhandler/_index.md | 44 + .../aspose.pdf/document/freememory/_index.md | 23 + .../aspose.pdf/document/get_actions/_index.md | 24 + .../get_allowreusepagecontent/_index.md | 23 + .../document/get_background/_index.md | 24 + .../document/get_centerwindow/_index.md | 23 + .../document/get_collection/_index.md | 24 + .../document/get_cryptoalgorithm/_index.md | 24 + .../document/get_destinations/_index.md | 24 + .../document/get_direction/_index.md | 24 + .../_index.md | 23 + .../document/get_displaydoctitle/_index.md | 23 + .../aspose.pdf/document/get_duplex/_index.md | 24 + .../document/get_embeddedfiles/_index.md | 24 + .../document/get_embedstandardfonts/_index.md | 23 + .../document/get_enableobjectunload/_index.md | 23 + .../get_enablesignaturesanitization/_index.md | 23 + .../document/get_filename/_index.md | 23 + .../_index.md | 23 + .../document/get_fitwindow/_index.md | 23 + .../document/get_fontutilities/_index.md | 23 + .../aspose.pdf/document/get_form/_index.md | 24 + .../get_handlesignaturechange/_index.md | 23 + .../document/get_hidemenubar/_index.md | 23 + .../document/get_hidetoolbar/_index.md | 23 + .../document/get_hidewindowui/_index.md | 23 + .../cpp/aspose.pdf/document/get_id/_index.md | 24 + .../get_ignorecorruptedobjects/_index.md | 23 + .../aspose.pdf/document/get_info/_index.md | 24 + .../document/get_isencrypted/_index.md | 23 + .../document/get_islicensed/_index.md | 23 + .../document/get_islinearized/_index.md | 23 + .../document/get_ispdfacompliant/_index.md | 23 + .../document/get_ispdfuacompliant/_index.md | 23 + .../document/get_isxrefgapsallowed/_index.md | 23 + .../document/get_javascript/_index.md | 24 + .../document/get_logicalstructure/_index.md | 24 + .../document/get_metadata/_index.md | 24 + .../document/get_nameddestinations/_index.md | 24 + .../get_nonfullscreenpagemode/_index.md | 24 + .../document/get_openaction/_index.md | 24 + .../document/get_optimizesize/_index.md | 23 + .../document/get_outlines/_index.md | 24 + .../document/get_outputintents/_index.md | 24 + .../document/get_pageinfo/_index.md | 28 + .../document/get_pagelabels/_index.md | 24 + .../document/get_pagelayout/_index.md | 24 + .../document/get_pagemode/_index.md | 24 + .../aspose.pdf/document/get_pages/_index.md | 24 + .../document/get_pdfformat/_index.md | 24 + .../document/get_permissions/_index.md | 23 + .../document/get_picktraybypdfsize/_index.md | 23 + .../document/get_printscaling/_index.md | 24 + .../document/get_taggedcontent/_index.md | 28 + .../aspose.pdf/document/get_version/_index.md | 23 + .../document/getcatalogvalue/_index.md | 44 + .../document/getobjectbyid/_index.md | 44 + .../document/getxmpmetadata/_index.md | 40 + .../document/hasincrementalupdate/_index.md | 28 + .../importannotationsfromxfdf/_index.md | 71 + .../aspose.pdf/document/loadfrom/_index.md | 67 + .../cpp/aspose.pdf/document/merge/_index.md | 153 ++ .../document/mergedocuments/_index.md | 169 ++ .../aspose.pdf/document/optimize/_index.md | 32 + .../document/optimizeresources/_index.md | 64 + .../pagenodestobalancedtree/_index.md | 40 + .../document/processparagraphs/_index.md | 23 + .../document/removemetadata/_index.md | 23 + .../document/removepdfacompliance/_index.md | 23 + .../document/removepdfuacompliance/_index.md | 23 + .../cpp/aspose.pdf/document/repair/_index.md | 40 + .../cpp/aspose.pdf/document/save/_index.md | 365 +++ .../cpp/aspose.pdf/document/savexml/_index.md | 40 + .../cpp/aspose.pdf/document/sendto/_index.md | 213 ++ .../set_allowreusepagecontent/_index.md | 23 + .../document/set_background/_index.md | 24 + .../document/set_centerwindow/_index.md | 23 + .../document/set_collection/_index.md | 24 + .../document/set_direction/_index.md | 24 + .../_index.md | 23 + .../document/set_displaydoctitle/_index.md | 23 + .../aspose.pdf/document/set_duplex/_index.md | 24 + .../document/set_embedstandardfonts/_index.md | 23 + .../document/set_enableobjectunload/_index.md | 23 + .../set_enablesignaturesanitization/_index.md | 23 + .../_index.md | 23 + .../document/set_fitwindow/_index.md | 23 + .../set_handlesignaturechange/_index.md | 23 + .../document/set_hidemenubar/_index.md | 23 + .../document/set_hidetoolbar/_index.md | 23 + .../document/set_hidewindowui/_index.md | 23 + .../set_ignorecorruptedobjects/_index.md | 23 + .../document/set_islinearized/_index.md | 23 + .../document/set_isxrefgapsallowed/_index.md | 23 + .../set_nonfullscreenpagemode/_index.md | 24 + .../document/set_openaction/_index.md | 24 + .../document/set_optimizesize/_index.md | 23 + .../document/set_pageinfo/_index.md | 28 + .../document/set_pagelayout/_index.md | 24 + .../document/set_pagemode/_index.md | 24 + .../document/set_picktraybypdfsize/_index.md | 23 + .../document/set_printscaling/_index.md | 24 + .../_index.md | 23 + .../aspose.pdf/document/settitle/_index.md | 41 + .../document/setxmpmetadata/_index.md | 40 + .../aspose.pdf/document/validate/_index.md | 135 + .../aspose.pdf/documentextensions/_index.md | 28 + .../documentextensions/_index.md | 23 + .../splitsharedimages/_index.md | 60 + .../cpp/aspose.pdf/documentfactory/_index.md | 32 + .../documentfactory/createdocument/_index.md | 193 ++ .../documentfactory/documentfactory/_index.md | 23 + english/cpp/aspose.pdf/documentinfo/_index.md | 57 + .../cpp/aspose.pdf/documentinfo/add/_index.md | 49 + .../aspose.pdf/documentinfo/clear/_index.md | 23 + .../documentinfo/clearcustomdata/_index.md | 23 + .../documentinfo/documentinfo/_index.md | 41 + .../documentinfo/get_author/_index.md | 23 + .../documentinfo/get_creationdate/_index.md | 23 + .../get_creationtimezone/_index.md | 23 + .../documentinfo/get_creator/_index.md | 23 + .../documentinfo/get_keywords/_index.md | 23 + .../documentinfo/get_moddate/_index.md | 23 + .../documentinfo/get_modtimezone/_index.md | 23 + .../documentinfo/get_producer/_index.md | 23 + .../documentinfo/get_subject/_index.md | 23 + .../documentinfo/get_title/_index.md | 23 + .../documentinfo/get_trapped/_index.md | 23 + .../aspose.pdf/documentinfo/idx_get/_index.md | 44 + .../aspose.pdf/documentinfo/idx_set/_index.md | 47 + .../documentinfo/ispredefinedkey/_index.md | 44 + .../aspose.pdf/documentinfo/remove/_index.md | 40 + .../documentinfo/set_author/_index.md | 23 + .../documentinfo/set_creationdate/_index.md | 23 + .../set_creationtimezone/_index.md | 23 + .../documentinfo/set_creator/_index.md | 23 + .../documentinfo/set_keywords/_index.md | 23 + .../documentinfo/set_moddate/_index.md | 23 + .../documentinfo/set_modtimezone/_index.md | 23 + .../documentinfo/set_producer/_index.md | 23 + .../documentinfo/set_subject/_index.md | 23 + .../documentinfo/set_title/_index.md | 23 + .../documentinfo/set_trapped/_index.md | 23 + .../documentinfo/settemplateweakptr/_index.md | 40 + english/cpp/aspose.pdf/editiontype/_index.md | 29 + .../embeddedfilecollection/_index.md | 40 + .../embeddedfilecollection/add/_index.md | 83 + .../embeddedfilecollection/copyto/_index.md | 50 + .../embeddedfilecollection/delete/_index.md | 54 + .../deletebykey/_index.md | 40 + .../findbyname/_index.md | 45 + .../get_count/_index.md | 23 + .../get_issynchronized/_index.md | 23 + .../embeddedfilecollection/get_keys/_index.md | 23 + .../get_syncroot/_index.md | 23 + .../getenumerator/_index.md | 29 + .../embeddedfilecollection/idx_get/_index.md | 81 + .../embeddedfilesdoesnotexists/_index.md | 22 + .../aspose.pdf/emptyvalueexception/_index.md | 22 + .../cpp/aspose.pdf/encryptedpayload/_index.md | 30 + .../encryptedpayload/_index.md | 41 + .../encryptedpayload/get_subtype/_index.md | 23 + .../encryptedpayload/get_type/_index.md | 23 + .../encryptedpayload/get_version/_index.md | 23 + .../cpp/aspose.pdf/epubloadoptions/_index.md | 48 + .../epubloadoptions/epubloadoptions/_index.md | 54 + .../epubloadoptions/get_customcss/_index.md | 23 + .../epubloadoptions/get_margin/_index.md | 24 + .../epubloadoptions/get_pagesize/_index.md | 23 + .../epubloadoptions/set_customcss/_index.md | 23 + .../epubloadoptions/set_margin/_index.md | 24 + .../cpp/aspose.pdf/epubsaveoptions/_index.md | 40 + .../epubsaveoptions/epubsaveoptions/_index.md | 23 + .../epubsaveoptions/get_title/_index.md | 23 + .../epubsaveoptions/set_title/_index.md | 23 + .../cpp/aspose.pdf/excelsaveoptions/_index.md | 46 + .../excelsaveoptions/_index.md | 23 + .../excelsaveoptions/get_format/_index.md | 23 + .../get_insertblankcolumnatfirst/_index.md | 23 + .../_index.md | 23 + .../get_uniformworksheets/_index.md | 23 + .../excelsaveoptions/set_format/_index.md | 23 + .../set_insertblankcolumnatfirst/_index.md | 23 + .../_index.md | 23 + .../set_uniformworksheets/_index.md | 23 + .../cpp/aspose.pdf/extendedboolean/_index.md | 30 + .../cpp/aspose.pdf/extractimagemode/_index.md | 29 + .../cpp/aspose.pdf/fieldvaluetype/_index.md | 31 + english/cpp/aspose.pdf/filechecker/_index.md | 29 + .../filechecker/filechecker/_index.md | 23 + .../filechecker/iscontentsafe/_index.md | 44 + .../filechecker/isfileextensionsafe/_index.md | 44 + english/cpp/aspose.pdf/fileencoding/_index.md | 29 + .../cpp/aspose.pdf/filehyperlink/_index.md | 34 + .../filehyperlink/filehyperlink/_index.md | 54 + .../filehyperlink/get_newwindow/_index.md | 24 + .../filehyperlink/get_path/_index.md | 23 + .../filehyperlink/set_newwindow/_index.md | 24 + .../filehyperlink/set_path/_index.md | 23 + english/cpp/aspose.pdf/fileparams/_index.md | 33 + .../fileparams/fileparams/_index.md | 41 + .../fileparams/get_checksum/_index.md | 23 + .../fileparams/get_creationdate/_index.md | 23 + .../fileparams/get_moddate/_index.md | 23 + .../aspose.pdf/fileparams/get_size/_index.md | 23 + .../fileparams/set_creationdate/_index.md | 23 + .../fileparams/set_moddate/_index.md | 23 + .../aspose.pdf/filespecification/_index.md | 58 + .../filespecification/dispose/_index.md | 23 + .../filespecification/_index.md | 224 ++ .../get_afrelationship/_index.md | 24 + .../get_collectionitem/_index.md | 24 + .../filespecification/get_contents/_index.md | 23 + .../get_description/_index.md | 23 + .../filespecification/get_encoding/_index.md | 24 + .../get_encryptedpayload/_index.md | 24 + .../get_filesystem/_index.md | 23 + .../get_includecontents/_index.md | 23 + .../filespecification/get_mimetype/_index.md | 23 + .../filespecification/get_name/_index.md | 23 + .../filespecification/get_params/_index.md | 24 + .../get_streamcontents/_index.md | 23 + .../get_unicodename/_index.md | 23 + .../filespecification/getvalue/_index.md | 44 + .../set_afrelationship/_index.md | 24 + .../filespecification/set_contents/_index.md | 23 + .../set_description/_index.md | 23 + .../filespecification/set_encoding/_index.md | 24 + .../set_filesystem/_index.md | 23 + .../set_includecontents/_index.md | 23 + .../filespecification/set_mimetype/_index.md | 23 + .../filespecification/set_name/_index.md | 23 + .../filespecification/set_params/_index.md | 24 + .../set_unicodename/_index.md | 23 + .../filespecification/setvalue/_index.md | 49 + .../filespecificationcomparer/_index.md | 28 + .../compare/_index.md | 54 + .../filespecificationcomparer/_index.md | 41 + english/cpp/aspose.pdf/fixup/_index.md | 33 + english/cpp/aspose.pdf/floatingbox/_index.md | 71 + .../aspose.pdf/floatingbox/clone/_index.md | 28 + .../floatingbox/floatingbox/_index.md | 63 + .../floatingbox/get_backgroundcolor/_index.md | 24 + .../floatingbox/get_backgroundimage/_index.md | 24 + .../floatingbox/get_border/_index.md | 24 + .../floatingbox/get_columninfo/_index.md | 27 + .../floatingbox/get_height/_index.md | 23 + .../floatingbox/get_isneedrepeating/_index.md | 23 + .../aspose.pdf/floatingbox/get_left/_index.md | 23 + .../floatingbox/get_padding/_index.md | 24 + .../floatingbox/get_paragraphs/_index.md | 24 + .../aspose.pdf/floatingbox/get_top/_index.md | 23 + .../floatingbox/get_width/_index.md | 23 + .../floatingbox/set_backgroundcolor/_index.md | 24 + .../floatingbox/set_backgroundimage/_index.md | 24 + .../floatingbox/set_border/_index.md | 24 + .../floatingbox/set_columninfo/_index.md | 27 + .../floatingbox/set_height/_index.md | 23 + .../floatingbox/set_isneedrepeating/_index.md | 23 + .../aspose.pdf/floatingbox/set_left/_index.md | 23 + .../floatingbox/set_padding/_index.md | 24 + .../floatingbox/set_paragraphs/_index.md | 24 + .../aspose.pdf/floatingbox/set_top/_index.md | 23 + .../floatingbox/set_width/_index.md | 23 + .../fontembeddingexception/_index.md | 22 + .../fontnotfoundexception/_index.md | 22 + .../aspose.pdf/fontsubsetstrategy/_index.md | 29 + .../cpp/aspose.pdf/footerartifact/_index.md | 80 + .../footerartifact/footerartifact/_index.md | 23 + .../aspose.pdf/formattedfragment/_index.md | 47 + english/cpp/aspose.pdf/graphinfo/_index.md | 50 + .../cpp/aspose.pdf/graphinfo/clone/_index.md | 28 + .../aspose.pdf/graphinfo/get_color/_index.md | 24 + .../graphinfo/get_dasharray/_index.md | 23 + .../graphinfo/get_dashphase/_index.md | 23 + .../graphinfo/get_fillcolor/_index.md | 24 + .../graphinfo/get_isdoubled/_index.md | 23 + .../graphinfo/get_linewidth/_index.md | 23 + .../graphinfo/get_rotationangle/_index.md | 23 + .../graphinfo/get_scalingratex/_index.md | 23 + .../graphinfo/get_scalingratey/_index.md | 23 + .../graphinfo/get_skewanglex/_index.md | 23 + .../graphinfo/get_skewangley/_index.md | 23 + .../aspose.pdf/graphinfo/graphinfo/_index.md | 23 + .../aspose.pdf/graphinfo/set_color/_index.md | 24 + .../graphinfo/set_dasharray/_index.md | 23 + .../graphinfo/set_dashphase/_index.md | 23 + .../graphinfo/set_fillcolor/_index.md | 24 + .../graphinfo/set_isdoubled/_index.md | 23 + .../graphinfo/set_linewidth/_index.md | 23 + .../graphinfo/set_rotationangle/_index.md | 23 + .../graphinfo/set_scalingratex/_index.md | 23 + .../graphinfo/set_scalingratey/_index.md | 23 + .../graphinfo/set_skewanglex/_index.md | 23 + .../graphinfo/set_skewangley/_index.md | 23 + english/cpp/aspose.pdf/group/_index.md | 29 + .../aspose.pdf/group/get_colorspace/_index.md | 24 + english/cpp/aspose.pdf/group/group/_index.md | 42 + .../aspose.pdf/group/set_colorspace/_index.md | 24 + .../cpp/aspose.pdf/headerartifact/_index.md | 80 + .../headerartifact/headerartifact/_index.md | 23 + english/cpp/aspose.pdf/headerfooter/_index.md | 34 + .../aspose.pdf/headerfooter/clone/_index.md | 28 + .../get_isclipextracontent/_index.md | 23 + .../headerfooter/get_margin/_index.md | 24 + .../headerfooter/get_paragraphs/_index.md | 24 + .../headerfooter/headerfooter/_index.md | 23 + .../set_isclipextracontent/_index.md | 23 + .../headerfooter/set_margin/_index.md | 24 + .../headerfooter/set_paragraphs/_index.md | 24 + english/cpp/aspose.pdf/heading/_index.md | 91 + .../cpp/aspose.pdf/heading/clone/_index.md | 28 + .../heading/clonewithsegments/_index.md | 28 + .../heading/get_destinationpage/_index.md | 24 + .../heading/get_isautosequence/_index.md | 23 + .../aspose.pdf/heading/get_isinlist/_index.md | 23 + .../aspose.pdf/heading/get_level/_index.md | 23 + .../heading/get_startnumber/_index.md | 23 + .../aspose.pdf/heading/get_style/_index.md | 24 + .../aspose.pdf/heading/get_tocpage/_index.md | 24 + .../cpp/aspose.pdf/heading/get_top/_index.md | 23 + .../heading/get_userlabel/_index.md | 24 + .../cpp/aspose.pdf/heading/heading/_index.md | 40 + .../heading/set_destinationpage/_index.md | 24 + .../heading/set_isautosequence/_index.md | 23 + .../aspose.pdf/heading/set_isinlist/_index.md | 23 + .../aspose.pdf/heading/set_level/_index.md | 23 + .../heading/set_startnumber/_index.md | 23 + .../aspose.pdf/heading/set_style/_index.md | 24 + .../aspose.pdf/heading/set_tocpage/_index.md | 24 + .../cpp/aspose.pdf/heading/set_top/_index.md | 23 + .../heading/set_userlabel/_index.md | 24 + .../aspose.pdf/horizontalalignment/_index.md | 33 + .../cpp/aspose.pdf/htmldocumenttype/_index.md | 29 + english/cpp/aspose.pdf/htmlfragment/_index.md | 57 + .../aspose.pdf/htmlfragment/clone/_index.md | 28 + .../get_htmlloadoptions/_index.md | 24 + .../htmlfragment/get_isbreakwords/_index.md | 23 + .../get_isparagraphhasmargin/_index.md | 23 + .../htmlfragment/get_rectangle/_index.md | 23 + .../htmlfragment/get_textstate/_index.md | 24 + .../htmlfragment/htmlfragment/_index.md | 40 + .../set_htmlloadoptions/_index.md | 24 + .../htmlfragment/set_isbreakwords/_index.md | 23 + .../set_isparagraphhasmargin/_index.md | 23 + .../htmlfragment/set_textstate/_index.md | 24 + .../cpp/aspose.pdf/htmlloadoptions/_index.md | 58 + .../htmlloadoptions/get_basepath/_index.md | 23 + .../get_htmlmediatype/_index.md | 24 + .../get_inputencoding/_index.md | 23 + .../get_isembedfonts/_index.md | 23 + .../get_isprioritycsspagerule/_index.md | 23 + .../get_isrendertosinglepage/_index.md | 23 + .../htmlloadoptions/get_pageinfo/_index.md | 24 + .../get_pagelayoutoption/_index.md | 24 + .../htmlloadoptions/htmlloadoptions/_index.md | 54 + .../set_htmlmediatype/_index.md | 24 + .../set_inputencoding/_index.md | 23 + .../set_isembedfonts/_index.md | 23 + .../set_isprioritycsspagerule/_index.md | 23 + .../set_isrendertosinglepage/_index.md | 23 + .../htmlloadoptions/set_pageinfo/_index.md | 24 + .../set_pagelayoutoption/_index.md | 24 + .../cpp/aspose.pdf/htmlmediatype/_index.md | 29 + .../aspose.pdf/htmlpagelayoutoption/_index.md | 30 + .../cpp/aspose.pdf/htmlsaveoptions/_index.md | 96 + .../csssavingstrategy/_index.md | 23 + .../cssurlmakingstrategy/_index.md | 23 + .../_index.md | 32 + .../htmlsaveoptions/get_batchsize/_index.md | 23 + .../get_compresssvggraphicsifany/_index.md | 27 + .../_index.md | 23 + .../get_defaultfontname/_index.md | 27 + .../get_documenttype/_index.md | 28 + .../get_explicitlistofsavedpages/_index.md | 23 + .../htmlsaveoptions/get_fixedlayout/_index.md | 27 + .../_index.md | 23 + .../htmlsaveoptions/get_fontsources/_index.md | 28 + .../get_ignoredtextfontsize/_index.md | 23 + .../get_ignoreresourcefonterrors/_index.md | 23 + .../get_imageresolution/_index.md | 27 + .../get_minimallinewidth/_index.md | 23 + .../get_preventglyphsgrouping/_index.md | 23 + .../get_rendertextasimage/_index.md | 23 + .../get_simpletextboxmodegrouping/_index.md | 23 + .../get_splitcssintopages/_index.md | 23 + .../get_splitintopages/_index.md | 23 + .../htmlsaveoptions/get_title/_index.md | 23 + .../get_trymergefragments/_index.md | 23 + .../htmlsaveoptions/get_usezorder/_index.md | 23 + .../htmlpagemarkupsavingstrategy/_index.md | 23 + .../htmlsaveoptions/htmlsaveoptions/_index.md | 127 + .../resourcesavingstrategy/_index.md | 36 + .../_index.md | 32 + .../htmlsaveoptions/set_batchsize/_index.md | 23 + .../set_compresssvggraphicsifany/_index.md | 27 + .../_index.md | 23 + .../set_defaultfontname/_index.md | 27 + .../set_documenttype/_index.md | 28 + .../set_explicitlistofsavedpages/_index.md | 23 + .../htmlsaveoptions/set_fixedlayout/_index.md | 27 + .../_index.md | 23 + .../set_ignoredtextfontsize/_index.md | 23 + .../set_ignoreresourcefonterrors/_index.md | 23 + .../set_imageresolution/_index.md | 27 + .../set_minimallinewidth/_index.md | 23 + .../set_preventglyphsgrouping/_index.md | 23 + .../set_rendertextasimage/_index.md | 23 + .../set_simpletextboxmodegrouping/_index.md | 23 + .../set_splitcssintopages/_index.md | 23 + .../set_splitintopages/_index.md | 23 + .../htmlsaveoptions/set_title/_index.md | 23 + .../set_trymergefragments/_index.md | 23 + .../htmlsaveoptions/set_usezorder/_index.md | 23 + english/cpp/aspose.pdf/hyperlink/_index.md | 27 + .../cpp_set_link_element_to_weak/_index.md | 23 + .../icolorspaceconversionstrategy/_index.md | 27 + .../convert/_index.md | 41 + english/cpp/aspose.pdf/id/_index.md | 28 + .../cpp/aspose.pdf/id/get_modified/_index.md | 23 + .../cpp/aspose.pdf/id/get_original/_index.md | 23 + .../iindexbitmapconverter/_index.md | 29 + .../get1bppimage/_index.md | 44 + .../get4bppimage/_index.md | 44 + .../get8bppimage/_index.md | 44 + english/cpp/aspose.pdf/image/_index.md | 70 + english/cpp/aspose.pdf/image/clone/_index.md | 28 + .../aspose.pdf/image/get_bitmapinfo/_index.md | 24 + .../aspose.pdf/image/get_bitmapsize/_index.md | 24 + .../cpp/aspose.pdf/image/get_file/_index.md | 23 + .../aspose.pdf/image/get_filetype/_index.md | 24 + .../aspose.pdf/image/get_fixheight/_index.md | 23 + .../aspose.pdf/image/get_fixwidth/_index.md | 23 + .../aspose.pdf/image/get_imagescale/_index.md | 23 + .../image/get_imagestream/_index.md | 23 + .../image/get_isapplyresolution/_index.md | 23 + .../image/get_isblackwhite/_index.md | 23 + .../cpp/aspose.pdf/image/get_title/_index.md | 24 + .../aspose.pdf/image/getmimetype/_index.md | 45 + english/cpp/aspose.pdf/image/image/_index.md | 23 + .../aspose.pdf/image/set_bitmapinfo/_index.md | 24 + .../cpp/aspose.pdf/image/set_file/_index.md | 23 + .../aspose.pdf/image/set_filetype/_index.md | 24 + .../aspose.pdf/image/set_fixheight/_index.md | 23 + .../aspose.pdf/image/set_fixwidth/_index.md | 23 + .../aspose.pdf/image/set_imagescale/_index.md | 23 + .../image/set_imagestream/_index.md | 23 + .../image/set_isapplyresolution/_index.md | 23 + .../image/set_isblackwhite/_index.md | 23 + .../cpp/aspose.pdf/image/set_title/_index.md | 24 + .../aspose.pdf/imagedeleteaction/_index.md | 31 + .../cpp/aspose.pdf/imagefiletype/_index.md | 31 + .../cpp/aspose.pdf/imagefiltertype/_index.md | 31 + .../cpp/aspose.pdf/imageplacement/_index.md | 42 + .../get_compositingparameters/_index.md | 24 + .../imageplacement/get_image/_index.md | 24 + .../imageplacement/get_matrix/_index.md | 24 + .../imageplacement/get_operator/_index.md | 24 + .../imageplacement/get_page/_index.md | 24 + .../imageplacement/get_rectangle/_index.md | 24 + .../imageplacement/get_resolution/_index.md | 24 + .../imageplacement/get_rotation/_index.md | 23 + .../aspose.pdf/imageplacement/hide/_index.md | 23 + .../imageplacement/replace/_index.md | 40 + .../aspose.pdf/imageplacement/save/_index.md | 80 + .../imageplacementabsorber/_index.md | 36 + .../get_imageplacements/_index.md | 24 + .../get_isreadonlymode/_index.md | 23 + .../imageplacementabsorber/_index.md | 23 + .../set_isreadonlymode/_index.md | 23 + .../imageplacementabsorber/visit/_index.md | 75 + .../imageplacementcollection/_index.md | 37 + .../imageplacementcollection/add/_index.md | 42 + .../imageplacementcollection/clear/_index.md | 23 + .../contains/_index.md | 45 + .../imageplacementcollection/copyto/_index.md | 50 + .../get_count/_index.md | 23 + .../get_isreadonly/_index.md | 23 + .../get_issynchronized/_index.md | 23 + .../get_syncroot/_index.md | 23 + .../getenumerator/_index.md | 29 + .../idx_get/_index.md | 45 + .../imageplacementcollection/remove/_index.md | 45 + english/cpp/aspose.pdf/imagestamp/_index.md | 76 + .../imagestamp/get_alternativetext/_index.md | 23 + .../imagestamp/get_height/_index.md | 23 + .../aspose.pdf/imagestamp/get_image/_index.md | 23 + .../imagestamp/get_quality/_index.md | 23 + .../aspose.pdf/imagestamp/get_width/_index.md | 23 + .../imagestamp/imagestamp/_index.md | 71 + .../cpp/aspose.pdf/imagestamp/put/_index.md | 42 + .../imagestamp/set_alternativetext/_index.md | 23 + .../imagestamp/set_height/_index.md | 23 + .../imagestamp/set_quality/_index.md | 23 + .../aspose.pdf/imagestamp/set_width/_index.md | 23 + english/cpp/aspose.pdf/importformat/_index.md | 28 + .../cpp/aspose.pdf/importoptions/_index.md | 27 + .../importoptions/get_importformat/_index.md | 24 + .../inameddestinationcollection/_index.md | 32 + .../inameddestinationcollection/add/_index.md | 50 + .../get_count/_index.md | 23 + .../get_names/_index.md | 23 + .../idx_get/_index.md | 45 + .../idx_set/_index.md | 50 + .../remove/_index.md | 40 + .../incorrectcmapusageexception/_index.md | 22 + .../incorrectfontusageexception/_index.md | 22 + .../invalidcgmfileformatexception/_index.md | 22 + .../invalidfileformatexception/_index.md | 22 + .../_index.md | 22 + .../invalidpasswordexception/_index.md | 22 + .../invalidpdffileformatexception/_index.md | 22 + .../invalidvalueformatexception/_index.md | 22 + .../aspose.pdf/ioperatorcontainer/_index.md | 28 + .../ioperatorcontainer/get_contents/_index.md | 24 + .../get_resources/_index.md | 24 + .../aspose.pdf/ioperatorselector/_index.md | 100 + .../ioperatorselector/visit/_index.md | 2377 +++++++++++++++++ .../cpp/aspose.pdf/ipagesetoptions/_index.md | 28 + .../get_explicitlistofsavedpages/_index.md | 23 + .../set_explicitlistofsavedpages/_index.md | 23 + .../cpp/aspose.pdf/ipipelineoptions/_index.md | 28 + .../ipipelineoptions/get_batchsize/_index.md | 23 + .../ipipelineoptions/set_batchsize/_index.md | 23 + .../isupportsmemorycleanup/_index.md | 27 + .../freememory/_index.md | 23 + .../aspose.pdf/itexinputdirectory/_index.md | 27 + .../itexinputdirectory/getfile/_index.md | 62 + .../aspose.pdf/itexoutputdirectory/_index.md | 29 + .../getoutputfile/_index.md | 53 + .../cpp/aspose.pdf/iwarningcallback/_index.md | 27 + .../iwarningcallback/warning/_index.md | 46 + .../aspose.pdf/javascriptcollection/_index.md | 30 + .../javascriptcollection/get_keys/_index.md | 23 + .../javascriptcollection/idx_get/_index.md | 44 + .../javascriptcollection/idx_set/_index.md | 49 + .../javascriptcollection/remove/_index.md | 44 + .../javascriptextensionsexception/_index.md | 22 + .../cpp/aspose.pdf/latexfragment/_index.md | 64 + .../latexfragment/latexfragment/_index.md | 80 + .../cpp/aspose.pdf/latexloadoptions/_index.md | 72 + .../cpp/aspose.pdf/latexsaveoptions/_index.md | 52 + english/cpp/aspose.pdf/layer/_index.md | 37 + english/cpp/aspose.pdf/layer/delete/_index.md | 23 + .../cpp/aspose.pdf/layer/flatten/_index.md | 42 + .../aspose.pdf/layer/get_contents/_index.md | 24 + english/cpp/aspose.pdf/layer/get_id/_index.md | 23 + .../cpp/aspose.pdf/layer/get_locked/_index.md | 23 + .../cpp/aspose.pdf/layer/get_name/_index.md | 23 + english/cpp/aspose.pdf/layer/layer/_index.md | 49 + english/cpp/aspose.pdf/layer/lock/_index.md | 23 + english/cpp/aspose.pdf/layer/save/_index.md | 71 + english/cpp/aspose.pdf/layer/unlock/_index.md | 23 + english/cpp/aspose.pdf/levelformat/_index.md | 35 + .../levelformat/get_linedash/_index.md | 24 + .../levelformat/get_margin/_index.md | 24 + .../get_subsequentlinesindent/_index.md | 23 + .../levelformat/get_textstate/_index.md | 24 + .../levelformat/levelformat/_index.md | 23 + .../levelformat/set_linedash/_index.md | 24 + .../levelformat/set_margin/_index.md | 24 + .../set_subsequentlinesindent/_index.md | 23 + .../levelformat/set_textstate/_index.md | 24 + english/cpp/aspose.pdf/license/_index.md | 31 + .../aspose.pdf/license/get_embedded/_index.md | 30 + .../cpp/aspose.pdf/license/license/_index.md | 23 + .../aspose.pdf/license/set_embedded/_index.md | 30 + .../aspose.pdf/license/setlicense/_index.md | 99 + english/cpp/aspose.pdf/licensestate/_index.md | 29 + english/cpp/aspose.pdf/loadformat/_index.md | 45 + english/cpp/aspose.pdf/loadoptions/_index.md | 45 + .../_index.md | 31 + .../loadoptions/get_loadformat/_index.md | 24 + .../loadoptions/get_warninghandler/_index.md | 24 + .../loadoptions/loadoptions/_index.md | 23 + .../resourceloadingstrategy/_index.md | 23 + .../_index.md | 31 + .../loadoptions/set_warninghandler/_index.md | 24 + .../cpp/aspose.pdf/localhyperlink/_index.md | 34 + .../localhyperlink/get_target/_index.md | 24 + .../get_targetpagenumber/_index.md | 23 + .../localhyperlink/localhyperlink/_index.md | 55 + .../localhyperlink/set_target/_index.md | 24 + .../set_targetpagenumber/_index.md | 23 + english/cpp/aspose.pdf/margininfo/_index.md | 37 + .../cpp/aspose.pdf/margininfo/clone/_index.md | 28 + .../margininfo/get_bottom/_index.md | 23 + .../aspose.pdf/margininfo/get_left/_index.md | 23 + .../aspose.pdf/margininfo/get_right/_index.md | 23 + .../aspose.pdf/margininfo/get_top/_index.md | 23 + .../margininfo/margininfo/_index.md | 83 + .../margininfo/set_bottom/_index.md | 23 + .../aspose.pdf/margininfo/set_left/_index.md | 23 + .../aspose.pdf/margininfo/set_right/_index.md | 23 + .../aspose.pdf/margininfo/set_top/_index.md | 23 + english/cpp/aspose.pdf/matrix/_index.md | 64 + english/cpp/aspose.pdf/matrix/add/_index.md | 46 + .../cpp/aspose.pdf/matrix/equals/_index.md | 44 + english/cpp/aspose.pdf/matrix/get_a/_index.md | 23 + english/cpp/aspose.pdf/matrix/get_b/_index.md | 23 + english/cpp/aspose.pdf/matrix/get_c/_index.md | 23 + english/cpp/aspose.pdf/matrix/get_d/_index.md | 23 + .../cpp/aspose.pdf/matrix/get_data/_index.md | 23 + english/cpp/aspose.pdf/matrix/get_e/_index.md | 23 + .../aspose.pdf/matrix/get_elements/_index.md | 23 + english/cpp/aspose.pdf/matrix/get_f/_index.md | 23 + .../cpp/aspose.pdf/matrix/getangle/_index.md | 46 + .../aspose.pdf/matrix/getflipmatrix/_index.md | 29 + .../aspose.pdf/matrix/gethashcode/_index.md | 28 + .../cpp/aspose.pdf/matrix/matrix/_index.md | 196 ++ .../cpp/aspose.pdf/matrix/multiply/_index.md | 45 + .../cpp/aspose.pdf/matrix/reverse/_index.md | 29 + .../cpp/aspose.pdf/matrix/rotation/_index.md | 82 + english/cpp/aspose.pdf/matrix/scale/_index.md | 121 + english/cpp/aspose.pdf/matrix/set_a/_index.md | 23 + english/cpp/aspose.pdf/matrix/set_b/_index.md | 23 + english/cpp/aspose.pdf/matrix/set_c/_index.md | 23 + english/cpp/aspose.pdf/matrix/set_d/_index.md | 23 + english/cpp/aspose.pdf/matrix/set_e/_index.md | 23 + english/cpp/aspose.pdf/matrix/set_f/_index.md | 23 + english/cpp/aspose.pdf/matrix/skew/_index.md | 54 + .../cpp/aspose.pdf/matrix/tostring/_index.md | 28 + .../cpp/aspose.pdf/matrix/transform/_index.md | 141 + .../cpp/aspose.pdf/matrix/translate/_index.md | 63 + .../cpp/aspose.pdf/matrix/unscale/_index.md | 67 + .../aspose.pdf/matrix/untransform/_index.md | 67 + english/cpp/aspose.pdf/matrix3d/_index.md | 59 + english/cpp/aspose.pdf/matrix3d/add/_index.md | 46 + .../cpp/aspose.pdf/matrix3d/equals/_index.md | 44 + .../cpp/aspose.pdf/matrix3d/get_a/_index.md | 23 + .../cpp/aspose.pdf/matrix3d/get_b/_index.md | 23 + .../cpp/aspose.pdf/matrix3d/get_c/_index.md | 23 + .../cpp/aspose.pdf/matrix3d/get_d/_index.md | 23 + .../cpp/aspose.pdf/matrix3d/get_e/_index.md | 23 + .../cpp/aspose.pdf/matrix3d/get_f/_index.md | 23 + .../cpp/aspose.pdf/matrix3d/get_g/_index.md | 23 + .../cpp/aspose.pdf/matrix3d/get_h/_index.md | 23 + .../cpp/aspose.pdf/matrix3d/get_i/_index.md | 23 + .../cpp/aspose.pdf/matrix3d/get_tx/_index.md | 23 + .../cpp/aspose.pdf/matrix3d/get_ty/_index.md | 23 + .../cpp/aspose.pdf/matrix3d/get_tz/_index.md | 23 + .../aspose.pdf/matrix3d/getangle/_index.md | 46 + .../aspose.pdf/matrix3d/gethashcode/_index.md | 28 + .../aspose.pdf/matrix3d/matrix3d/_index.md | 218 ++ .../cpp/aspose.pdf/matrix3d/set_a/_index.md | 23 + .../cpp/aspose.pdf/matrix3d/set_b/_index.md | 23 + .../cpp/aspose.pdf/matrix3d/set_c/_index.md | 23 + .../cpp/aspose.pdf/matrix3d/set_d/_index.md | 23 + .../cpp/aspose.pdf/matrix3d/set_e/_index.md | 23 + .../cpp/aspose.pdf/matrix3d/set_f/_index.md | 23 + .../cpp/aspose.pdf/matrix3d/set_g/_index.md | 23 + .../cpp/aspose.pdf/matrix3d/set_h/_index.md | 23 + .../cpp/aspose.pdf/matrix3d/set_i/_index.md | 23 + .../cpp/aspose.pdf/matrix3d/set_tx/_index.md | 23 + .../cpp/aspose.pdf/matrix3d/set_ty/_index.md | 23 + .../cpp/aspose.pdf/matrix3d/set_tz/_index.md | 23 + .../aspose.pdf/matrix3d/tostring/_index.md | 28 + .../cpp/aspose.pdf/mdloadoptions/_index.md | 46 + .../get_isprioritycsspagerule/_index.md | 23 + .../mdloadoptions/get_pageinfo/_index.md | 24 + .../mdloadoptions/mdloadoptions/_index.md | 23 + .../set_isprioritycsspagerule/_index.md | 23 + .../mdloadoptions/set_pageinfo/_index.md | 24 + english/cpp/aspose.pdf/metadata/_index.md | 54 + english/cpp/aspose.pdf/metadata/add/_index.md | 163 ++ .../cpp/aspose.pdf/metadata/clear/_index.md | 23 + .../aspose.pdf/metadata/contains/_index.md | 80 + .../aspose.pdf/metadata/containskey/_index.md | 44 + .../cpp/aspose.pdf/metadata/copyto/_index.md | 50 + .../aspose.pdf/metadata/get_count/_index.md | 23 + .../metadata/get_extensionfields/_index.md | 24 + .../metadata/get_isfixedsize/_index.md | 23 + .../metadata/get_isreadonly/_index.md | 23 + .../metadata/get_issynchronized/_index.md | 23 + .../aspose.pdf/metadata/get_keys/_index.md | 23 + .../metadata/get_namespacemanager/_index.md | 23 + .../metadata/get_syncroot/_index.md | 23 + .../aspose.pdf/metadata/get_values/_index.md | 24 + .../metadata/getenumerator/_index.md | 29 + .../getnamespaceuribyprefix/_index.md | 44 + .../getprefixbynamespaceuri/_index.md | 44 + .../cpp/aspose.pdf/metadata/idx_get/_index.md | 45 + .../cpp/aspose.pdf/metadata/idx_set/_index.md | 51 + .../metadata/registernamespaceuri/_index.md | 98 + .../cpp/aspose.pdf/metadata/remove/_index.md | 80 + .../aspose.pdf/metadata/trygetvalue/_index.md | 54 + english/cpp/aspose.pdf/metered/_index.md | 32 + .../metered/getconsumptioncredit/_index.md | 28 + .../metered/getconsumptionquantity/_index.md | 28 + .../metered/getproductname/_index.md | 28 + .../metered/ismeteredlicensed/_index.md | 28 + .../cpp/aspose.pdf/metered/metered/_index.md | 23 + .../metered/setmeteredkey/_index.md | 49 + .../cpp/aspose.pdf/mhtloadoptions/_index.md | 43 + .../mhtloadoptions/get_pageinfo/_index.md | 24 + .../mhtloadoptions/mhtloadoptions/_index.md | 23 + .../aspose.pdf/mobixmlsaveoptions/_index.md | 38 + .../mobixmlsaveoptions/_index.md | 23 + .../nameddestinationcollection/_index.md | 33 + .../nameddestinationcollection/add/_index.md | 50 + .../get_count/_index.md | 23 + .../get_names/_index.md | 23 + .../idx_get/_index.md | 45 + .../idx_set/_index.md | 50 + .../remove/_index.md | 40 + english/cpp/aspose.pdf/note/_index.md | 34 + .../aspose.pdf/note/get_paragraphs/_index.md | 24 + .../cpp/aspose.pdf/note/get_text/_index.md | 23 + .../aspose.pdf/note/get_textstate/_index.md | 24 + english/cpp/aspose.pdf/note/note/_index.md | 54 + .../aspose.pdf/note/set_paragraphs/_index.md | 24 + .../cpp/aspose.pdf/note/set_text/_index.md | 23 + .../aspose.pdf/note/set_textstate/_index.md | 24 + .../cpp/aspose.pdf/numberingstyle/_index.md | 33 + english/cpp/aspose.pdf/ocspsettings/_index.md | 29 + .../ocspsettings/get_serverurl/_index.md | 23 + .../ocspsettings/ocspsettings/_index.md | 40 + .../ocspsettings/set_serverurl/_index.md | 23 + .../cpp/aspose.pdf/ofdloadoptions/_index.md | 42 + .../ofdloadoptions/ofdloadoptions/_index.md | 23 + english/cpp/aspose.pdf/operator/_index.md | 32 + .../cpp/aspose.pdf/operator/accept/_index.md | 41 + .../aspose.pdf/operator/get_index/_index.md | 23 + .../operator/istextshowoperator/_index.md | 46 + .../aspose.pdf/operator/set_index/_index.md | 23 + .../aspose.pdf/operator/tostring/_index.md | 28 + .../aspose.pdf/operator/valueequals/_index.md | 46 + .../aspose.pdf/operatorcollection/_index.md | 55 + .../operatorcollection/accept/_index.md | 41 + .../operatorcollection/add/_index.md | 106 + .../operatorcollection/cancelupdate/_index.md | 23 + .../operatorcollection/clear/_index.md | 23 + .../operatorcollection/contains/_index.md | 46 + .../operatorcollection/copyto/_index.md | 50 + .../operatorcollection/delete/_index.md | 104 + .../operatorcollection/dispose/_index.md | 23 + .../operatorcollection/get_count/_index.md | 23 + .../get_isfasttextextractionmode/_index.md | 23 + .../get_isreadonly/_index.md | 23 + .../getenumerator/_index.md | 29 + .../operatorcollection/idx_get/_index.md | 45 + .../operatorcollection/idx_set/_index.md | 51 + .../operatorcollection/insert/_index.md | 133 + .../operatorcollection/remove/_index.md | 46 + .../operatorcollection/replace/_index.md | 42 + .../operatorcollection/resumeupdate/_index.md | 54 + .../suppressupdate/_index.md | 23 + .../operatorcollection/tostring/_index.md | 28 + .../cpp/aspose.pdf/operatorselector/_index.md | 104 + .../operatorselector/get_selected/_index.md | 24 + .../operatorselector/_index.md | 55 + .../operatorselector/visit/_index.md | 2377 +++++++++++++++++ english/cpp/aspose.pdf/opi/_index.md | 30 + .../opi/get_filespecification/_index.md | 23 + .../cpp/aspose.pdf/opi/get_position/_index.md | 23 + .../cpp/aspose.pdf/opi/get_version/_index.md | 23 + english/cpp/aspose.pdf/opi/opi/_index.md | 41 + .../optimizedmemorystream/_index.md | 54 + .../defaultbuffersize/_index.md | 23 + .../optimizedmemorystream/flush/_index.md | 23 + .../get_buffersize/_index.md | 27 + .../get_canread/_index.md | 28 + .../get_canseek/_index.md | 28 + .../get_canwrite/_index.md | 28 + .../get_freeondispose/_index.md | 23 + .../get_length/_index.md | 28 + .../get_position/_index.md | 28 + .../optimizedmemorystream/_index.md | 125 + .../optimizedmemorystream/read/_index.md | 62 + .../optimizedmemorystream/readbyte/_index.md | 28 + .../optimizedmemorystream/seek/_index.md | 53 + .../set_buffersize/_index.md | 27 + .../set_freeondispose/_index.md | 23 + .../set_position/_index.md | 28 + .../optimizedmemorystream/setlength/_index.md | 40 + .../optimizedmemorystream/toarray/_index.md | 28 + .../optimizedmemorystream/write/_index.md | 59 + .../optimizedmemorystream/writebyte/_index.md | 40 + .../optimizedmemorystream/writeto/_index.md | 40 + .../aspose.pdf/outlinecollection/_index.md | 44 + .../outlinecollection/add/_index.md | 41 + .../outlinecollection/clear/_index.md | 23 + .../outlinecollection/contains/_index.md | 45 + .../outlinecollection/copyto/_index.md | 50 + .../outlinecollection/delete/_index.md | 54 + .../outlinecollection/get_count/_index.md | 23 + .../outlinecollection/get_first/_index.md | 24 + .../get_isreadonly/_index.md | 23 + .../get_issynchronized/_index.md | 23 + .../outlinecollection/get_last/_index.md | 24 + .../outlinecollection/get_syncroot/_index.md | 23 + .../get_visiblecount/_index.md | 23 + .../outlinecollection/getenumerator/_index.md | 34 + .../outlinecollection/idx_get/_index.md | 45 + .../outlinecollection/remove/_index.md | 76 + .../outlineitemcollection/_index.md | 65 + .../outlineitemcollection/add/_index.md | 41 + .../outlineitemcollection/clear/_index.md | 23 + .../outlineitemcollection/contains/_index.md | 45 + .../outlineitemcollection/copyto/_index.md | 50 + .../outlineitemcollection/delete/_index.md | 54 + .../get_action/_index.md | 24 + .../outlineitemcollection/get_bold/_index.md | 23 + .../outlineitemcollection/get_color/_index.md | 23 + .../outlineitemcollection/get_count/_index.md | 23 + .../get_destination/_index.md | 24 + .../outlineitemcollection/get_first/_index.md | 24 + .../get_hasnext/_index.md | 23 + .../get_isreadonly/_index.md | 23 + .../get_issynchronized/_index.md | 23 + .../get_italic/_index.md | 23 + .../outlineitemcollection/get_last/_index.md | 24 + .../outlineitemcollection/get_level/_index.md | 23 + .../outlineitemcollection/get_next/_index.md | 24 + .../outlineitemcollection/get_open/_index.md | 23 + .../get_parent/_index.md | 24 + .../outlineitemcollection/get_prev/_index.md | 24 + .../get_syncroot/_index.md | 23 + .../outlineitemcollection/get_title/_index.md | 23 + .../get_visiblecount/_index.md | 23 + .../getenumerator/_index.md | 35 + .../outlineitemcollection/idx_get/_index.md | 45 + .../outlineitemcollection/insert/_index.md | 50 + .../outlineitemcollection/_index.md | 41 + .../outlineitemcollection/remove/_index.md | 76 + .../set_action/_index.md | 24 + .../outlineitemcollection/set_bold/_index.md | 23 + .../outlineitemcollection/set_color/_index.md | 23 + .../set_destination/_index.md | 24 + .../set_italic/_index.md | 23 + .../outlineitemcollection/set_open/_index.md | 23 + .../outlineitemcollection/set_title/_index.md | 23 + english/cpp/aspose.pdf/outlines/_index.md | 35 + english/cpp/aspose.pdf/outlines/add/_index.md | 41 + .../cpp/aspose.pdf/outlines/clear/_index.md | 23 + .../aspose.pdf/outlines/contains/_index.md | 45 + .../cpp/aspose.pdf/outlines/copyto/_index.md | 50 + .../aspose.pdf/outlines/get_count/_index.md | 23 + .../outlines/get_isreadonly/_index.md | 23 + .../outlines/get_visiblecount/_index.md | 23 + .../outlines/getenumerator/_index.md | 29 + .../cpp/aspose.pdf/outlines/remove/_index.md | 45 + english/cpp/aspose.pdf/outputintent/_index.md | 31 + .../outputintent/get_info/_index.md | 23 + .../get_outputcondition/_index.md | 23 + .../get_outputconditionidentifier/_index.md | 23 + .../outputintent/get_registryname/_index.md | 23 + .../outputintent/get_subtype/_index.md | 23 + .../cpp/aspose.pdf/outputintents/_index.md | 35 + .../aspose.pdf/outputintents/add/_index.md | 58 + .../aspose.pdf/outputintents/clear/_index.md | 23 + .../outputintents/contains/_index.md | 48 + .../aspose.pdf/outputintents/copyto/_index.md | 77 + .../outputintents/get_count/_index.md | 23 + .../outputintents/get_isreadonly/_index.md | 23 + .../outputintents/getenumerator/_index.md | 29 + .../outputintents/idx_get/_index.md | 63 + .../aspose.pdf/outputintents/remove/_index.md | 48 + english/cpp/aspose.pdf/page/_index.md | 120 + english/cpp/aspose.pdf/page/accept/_index.md | 140 + .../cpp/aspose.pdf/page/addgraphics/_index.md | 56 + .../cpp/aspose.pdf/page/addimage/_index.md | 209 ++ .../cpp/aspose.pdf/page/addstamp/_index.md | 42 + .../cpp/aspose.pdf/page/asbytearray/_index.md | 45 + english/cpp/aspose.pdf/page/asxml/_index.md | 28 + .../page/beforepagegenerate/_index.md | 36 + .../page/calculatecontentbbox/_index.md | 29 + .../page/converttopngmemorystream/_index.md | 28 + .../aspose.pdf/page/deletegraphics/_index.md | 41 + english/cpp/aspose.pdf/page/dispose/_index.md | 23 + english/cpp/aspose.pdf/page/flatten/_index.md | 23 + .../cpp/aspose.pdf/page/freememory/_index.md | 23 + .../cpp/aspose.pdf/page/get_actions/_index.md | 24 + .../aspose.pdf/page/get_annotations/_index.md | 24 + .../cpp/aspose.pdf/page/get_artbox/_index.md | 24 + .../aspose.pdf/page/get_artifacts/_index.md | 24 + .../aspose.pdf/page/get_background/_index.md | 24 + .../page/get_backgroundimage/_index.md | 24 + .../aspose.pdf/page/get_bleedbox/_index.md | 24 + .../aspose.pdf/page/get_colortype/_index.md | 24 + .../aspose.pdf/page/get_contents/_index.md | 24 + .../cpp/aspose.pdf/page/get_cropbox/_index.md | 24 + .../aspose.pdf/page/get_duration/_index.md | 23 + .../page/get_fieldsintaborder/_index.md | 24 + .../cpp/aspose.pdf/page/get_footer/_index.md | 28 + .../cpp/aspose.pdf/page/get_group/_index.md | 24 + .../cpp/aspose.pdf/page/get_header/_index.md | 28 + .../get_isaddparagraphsafterlast/_index.md | 27 + .../cpp/aspose.pdf/page/get_layers/_index.md | 28 + .../aspose.pdf/page/get_mediabox/_index.md | 24 + .../page/get_notelinestyle/_index.md | 28 + .../cpp/aspose.pdf/page/get_number/_index.md | 23 + .../aspose.pdf/page/get_pageinfo/_index.md | 28 + .../aspose.pdf/page/get_paragraphs/_index.md | 28 + .../cpp/aspose.pdf/page/get_rect/_index.md | 24 + .../aspose.pdf/page/get_resources/_index.md | 24 + .../cpp/aspose.pdf/page/get_rotate/_index.md | 24 + .../page/get_rotationmatrix/_index.md | 24 + .../aspose.pdf/page/get_taborder/_index.md | 24 + .../cpp/aspose.pdf/page/get_tocinfo/_index.md | 28 + .../cpp/aspose.pdf/page/get_trimbox/_index.md | 24 + .../aspose.pdf/page/get_userunit/_index.md | 23 + .../aspose.pdf/page/get_watermark/_index.md | 24 + .../page/getnotifications/_index.md | 28 + .../cpp/aspose.pdf/page/getpagerect/_index.md | 45 + .../page/hasvectorgraphics/_index.md | 28 + .../aspose.pdf/page/inttorotation/_index.md | 45 + english/cpp/aspose.pdf/page/isblank/_index.md | 44 + .../aspose.pdf/page/makegrayscale/_index.md | 23 + .../cpp/aspose.pdf/page/mergelayers/_index.md | 80 + english/cpp/aspose.pdf/page/resize/_index.md | 41 + .../aspose.pdf/page/rotationtoint/_index.md | 45 + english/cpp/aspose.pdf/page/sendto/_index.md | 91 + .../cpp/aspose.pdf/page/set_artbox/_index.md | 24 + .../aspose.pdf/page/set_background/_index.md | 24 + .../page/set_backgroundimage/_index.md | 24 + .../aspose.pdf/page/set_bleedbox/_index.md | 24 + .../cpp/aspose.pdf/page/set_cropbox/_index.md | 24 + .../aspose.pdf/page/set_duration/_index.md | 23 + .../cpp/aspose.pdf/page/set_footer/_index.md | 28 + .../cpp/aspose.pdf/page/set_group/_index.md | 24 + .../cpp/aspose.pdf/page/set_header/_index.md | 28 + .../set_isaddparagraphsafterlast/_index.md | 27 + .../cpp/aspose.pdf/page/set_layers/_index.md | 28 + .../aspose.pdf/page/set_mediabox/_index.md | 24 + .../page/set_notelinestyle/_index.md | 28 + .../aspose.pdf/page/set_pageinfo/_index.md | 28 + .../aspose.pdf/page/set_paragraphs/_index.md | 28 + .../cpp/aspose.pdf/page/set_rect/_index.md | 24 + .../cpp/aspose.pdf/page/set_rotate/_index.md | 24 + .../aspose.pdf/page/set_taborder/_index.md | 24 + .../cpp/aspose.pdf/page/set_tocinfo/_index.md | 28 + .../cpp/aspose.pdf/page/set_trimbox/_index.md | 24 + .../aspose.pdf/page/set_userunit/_index.md | 23 + .../aspose.pdf/page/set_watermark/_index.md | 24 + .../cpp/aspose.pdf/page/setpagesize/_index.md | 51 + .../page/trysavevectorgraphics/_index.md | 44 + .../aspose.pdf/pageactioncollection/_index.md | 32 + .../get_onclose/_index.md | 24 + .../pageactioncollection/get_onopen/_index.md | 24 + .../set_onclose/_index.md | 24 + .../pageactioncollection/set_onopen/_index.md | 24 + .../cpp/aspose.pdf/pagecollection/_index.md | 57 + .../pagecollection/accept/_index.md | 140 + .../aspose.pdf/pagecollection/add/_index.md | 93 + .../aspose.pdf/pagecollection/clear/_index.md | 23 + .../pagecollection/contains/_index.md | 52 + .../pagecollection/copypage/_index.md | 46 + .../pagecollection/copyto/_index.md | 50 + .../pagecollection/delete/_index.md | 85 + .../pagecollection/flatten/_index.md | 23 + .../pagecollection/freememory/_index.md | 23 + .../pagecollection/get_count/_index.md | 23 + .../pagecollection/get_isreadonly/_index.md | 23 + .../get_issynchronized/_index.md | 23 + .../pagecollection/get_syncroot/_index.md | 23 + .../pagecollection/getenumerator/_index.md | 29 + .../pagecollection/idx_get/_index.md | 45 + .../pagecollection/indexof/_index.md | 48 + .../pagecollection/insert/_index.md | 173 ++ .../pagecollection/remove/_index.md | 47 + .../aspose.pdf/pagecoordinatetype/_index.md | 29 + english/cpp/aspose.pdf/pageinfo/_index.md | 41 + .../cpp/aspose.pdf/pageinfo/clone/_index.md | 28 + .../pageinfo/get_anymargin/_index.md | 24 + .../pageinfo/get_defaulttextstate/_index.md | 24 + .../aspose.pdf/pageinfo/get_height/_index.md | 23 + .../pageinfo/get_islandscape/_index.md | 23 + .../aspose.pdf/pageinfo/get_margin/_index.md | 24 + .../pageinfo/get_pureheight/_index.md | 23 + .../aspose.pdf/pageinfo/get_width/_index.md | 23 + .../aspose.pdf/pageinfo/pageinfo/_index.md | 23 + .../pageinfo/set_anymargin/_index.md | 24 + .../pageinfo/set_defaulttextstate/_index.md | 24 + .../aspose.pdf/pageinfo/set_height/_index.md | 23 + .../pageinfo/set_islandscape/_index.md | 23 + .../aspose.pdf/pageinfo/set_margin/_index.md | 24 + .../aspose.pdf/pageinfo/set_width/_index.md | 23 + english/cpp/aspose.pdf/pagelabel/_index.md | 33 + .../pagelabel/get_numberingstyle/_index.md | 24 + .../aspose.pdf/pagelabel/get_prefix/_index.md | 23 + .../pagelabel/get_startingvalue/_index.md | 23 + .../aspose.pdf/pagelabel/pagelabel/_index.md | 23 + .../pagelabel/set_numberingstyle/_index.md | 24 + .../aspose.pdf/pagelabel/set_prefix/_index.md | 23 + .../pagelabel/set_startingvalue/_index.md | 23 + .../aspose.pdf/pagelabelcollection/_index.md | 30 + .../pagelabelcollection/getlabel/_index.md | 45 + .../pagelabelcollection/getpages/_index.md | 28 + .../pagelabelcollection/removelabel/_index.md | 44 + .../pagelabelcollection/updatelabel/_index.md | 50 + english/cpp/aspose.pdf/pagelayout/_index.md | 34 + .../aspose.pdf/pagelayoutconverter/_index.md | 28 + .../pagelayoutconverter/toenum/_index.md | 24 + .../pagelayoutconverter/tostring/_index.md | 24 + english/cpp/aspose.pdf/pagemode/_index.md | 33 + .../aspose.pdf/pagemodeconverter/_index.md | 28 + .../pagemodeconverter/toenum/_index.md | 24 + .../pagemodeconverter/tostring/_index.md | 24 + .../cpp/aspose.pdf/pagenumberstamp/_index.md | 104 + .../pagenumberstamp/get_format/_index.md | 23 + .../get_numberingstyle/_index.md | 24 + .../get_startingnumber/_index.md | 23 + .../pagenumberstamp/pagenumberstamp/_index.md | 86 + .../aspose.pdf/pagenumberstamp/put/_index.md | 42 + .../pagenumberstamp/set_format/_index.md | 23 + .../set_numberingstyle/_index.md | 24 + .../set_startingnumber/_index.md | 23 + english/cpp/aspose.pdf/pagesize/_index.md | 45 + .../cpp/aspose.pdf/pagesize/get_a0/_index.md | 24 + .../cpp/aspose.pdf/pagesize/get_a1/_index.md | 24 + .../cpp/aspose.pdf/pagesize/get_a2/_index.md | 24 + .../cpp/aspose.pdf/pagesize/get_a3/_index.md | 24 + .../cpp/aspose.pdf/pagesize/get_a4/_index.md | 24 + .../cpp/aspose.pdf/pagesize/get_a5/_index.md | 24 + .../cpp/aspose.pdf/pagesize/get_a6/_index.md | 24 + .../cpp/aspose.pdf/pagesize/get_b5/_index.md | 24 + .../aspose.pdf/pagesize/get_height/_index.md | 23 + .../pagesize/get_islandscape/_index.md | 23 + .../aspose.pdf/pagesize/get_p11x17/_index.md | 24 + .../pagesize/get_pageledger/_index.md | 24 + .../pagesize/get_pagelegal/_index.md | 24 + .../pagesize/get_pageletter/_index.md | 24 + .../aspose.pdf/pagesize/get_width/_index.md | 23 + .../aspose.pdf/pagesize/pagesize/_index.md | 49 + .../aspose.pdf/pagesize/set_height/_index.md | 23 + .../pagesize/set_islandscape/_index.md | 23 + .../aspose.pdf/pagesize/set_width/_index.md | 23 + .../paragraphs/_anonymous_method_0/_index.md | 24 + english/cpp/aspose.pdf/paragraphs/_index.md | 61 + .../cpp/aspose.pdf/paragraphs/add/_index.md | 41 + .../cpp/aspose.pdf/paragraphs/begin/_index.md | 49 + .../aspose.pdf/paragraphs/cbegin/_index.md | 29 + .../cpp/aspose.pdf/paragraphs/cend/_index.md | 29 + .../cpp/aspose.pdf/paragraphs/clear/_index.md | 23 + .../cpp/aspose.pdf/paragraphs/clone/_index.md | 28 + .../paragraphs/const_iterator/_index.md | 23 + .../_index.md | 23 + .../cpp/aspose.pdf/paragraphs/end/_index.md | 49 + .../aspose.pdf/paragraphs/get_count/_index.md | 23 + .../paragraphs/getenumerator/_index.md | 29 + .../aspose.pdf/paragraphs/getrange/_index.md | 54 + .../aspose.pdf/paragraphs/idx_get/_index.md | 45 + .../aspose.pdf/paragraphs/idx_set/_index.md | 48 + .../aspose.pdf/paragraphs/insert/_index.md | 50 + .../paragraphs/insertrange/_index.md | 51 + .../aspose.pdf/paragraphs/iterator/_index.md | 23 + .../paragraphs/iterator_holder_type/_index.md | 23 + .../paragraphs/paragraphs/_index.md | 23 + .../aspose.pdf/paragraphs/remove/_index.md | 41 + .../paragraphs/removerange/_index.md | 49 + .../virtualizebeginconstiterator/_index.md | 29 + .../virtualizebeginiterator/_index.md | 29 + .../paragraphs/virtualized_iterator/_index.md | 23 + .../virtualized_iterator_element/_index.md | 23 + .../virtualizeendconstiterator/_index.md | 29 + .../virtualizeenditerator/_index.md | 29 + english/cpp/aspose.pdf/passwordtype/_index.md | 31 + .../cpp/aspose.pdf/pclloadoptions/_index.md | 46 + .../pclloadoptions/get_batchsize/_index.md | 23 + .../pclloadoptions/pclloadoptions/_index.md | 23 + .../pclloadoptions/set_batchsize/_index.md | 23 + .../pdfanonspecificationflags/_index.md | 29 + .../_index.md | 23 + .../pdfanonspecificationflags/_index.md | 23 + .../_index.md | 23 + .../_index.md | 33 + .../_index.md | 23 + .../get_preferredcmapencodingtable/_index.md | 23 + .../_index.md | 85 + .../_index.md | 23 + .../set_preferredcmapencodingtable/_index.md | 23 + english/cpp/aspose.pdf/pdfexception/_index.md | 22 + english/cpp/aspose.pdf/pdfformat/_index.md | 52 + .../pdfformatconversionoptions/_index.md | 72 + .../get_aligntext/_index.md | 23 + .../get_convertsoftmaskaction/_index.md | 24 + .../get_default/_index.md | 24 + .../get_erroraction/_index.md | 24 + .../get_excludefontsstrategy/_index.md | 23 + .../get_fontembeddingoptions/_index.md | 24 + .../get_format/_index.md | 24 + .../get_iccprofilefilename/_index.md | 23 + .../_index.md | 23 + .../get_islowmemorymode/_index.md | 23 + .../get_istransferinfo/_index.md | 23 + .../get_logfilename/_index.md | 23 + .../get_logstream/_index.md | 23 + .../get_nonspecificationcases/_index.md | 24 + .../get_notaccessiblefonts/_index.md | 23 + .../get_optimizefilesize/_index.md | 26 + .../get_puatextprocessingstrategy/_index.md | 23 + .../_index.md | 24 + .../get_transparencyaction/_index.md | 24 + .../get_unicodeprocessingrules/_index.md | 24 + .../pdfformatconversionoptions/_index.md | 287 ++ .../set_aligntext/_index.md | 23 + .../set_convertsoftmaskaction/_index.md | 24 + .../set_erroraction/_index.md | 24 + .../set_excludefontsstrategy/_index.md | 23 + .../set_format/_index.md | 24 + .../set_iccprofilefilename/_index.md | 23 + .../_index.md | 23 + .../set_islowmemorymode/_index.md | 23 + .../set_istransferinfo/_index.md | 23 + .../set_logfilename/_index.md | 23 + .../set_logstream/_index.md | 23 + .../set_optimizefilesize/_index.md | 26 + .../set_puatextprocessingstrategy/_index.md | 23 + .../_index.md | 24 + .../set_transparencyaction/_index.md | 24 + .../set_unicodeprocessingrules/_index.md | 24 + english/cpp/aspose.pdf/pdfpagestamp/_index.md | 74 + .../pdfpagestamp/get_pdfpage/_index.md | 24 + .../pdfpagestamp/pdfpagestamp/_index.md | 122 + .../cpp/aspose.pdf/pdfpagestamp/put/_index.md | 42 + .../pdfpagestamp/set_pdfpage/_index.md | 24 + .../cpp/aspose.pdf/pdfsaveoptions/_index.md | 39 + .../get_defaultfontname/_index.md | 23 + .../pdfsaveoptions/get_temppath/_index.md | 23 + .../pdfsaveoptions/pdfsaveoptions/_index.md | 23 + .../set_defaultfontname/_index.md | 23 + .../pdfsaveoptions/set_temppath/_index.md | 23 + english/cpp/aspose.pdf/pdfversion/_index.md | 36 + .../aspose.pdf/pdfversionmethods/_index.md | 28 + .../pdfversionmethods/getstring/_index.md | 45 + .../pdfversionmethods/_index.md | 23 + .../aspose.pdf/pdfxmlloadoptions/_index.md | 42 + .../pdfxmlloadoptions/_index.md | 23 + .../aspose.pdf/pdfxmlsaveoptions/_index.md | 38 + .../pdfxmlsaveoptions/_index.md | 23 + english/cpp/aspose.pdf/permissions/_index.md | 35 + english/cpp/aspose.pdf/point/_index.md | 35 + .../cpp/aspose.pdf/point/distance/_index.md | 54 + .../aspose.pdf/point/get_trivial/_index.md | 24 + english/cpp/aspose.pdf/point/get_x/_index.md | 23 + english/cpp/aspose.pdf/point/get_y/_index.md | 23 + english/cpp/aspose.pdf/point/point/_index.md | 49 + english/cpp/aspose.pdf/point/set_x/_index.md | 23 + english/cpp/aspose.pdf/point/set_y/_index.md | 23 + .../cpp/aspose.pdf/point/topoint/_index.md | 28 + .../cpp/aspose.pdf/point/tostring/_index.md | 28 + english/cpp/aspose.pdf/point3d/_index.md | 35 + .../aspose.pdf/point3d/get_trivial/_index.md | 24 + .../cpp/aspose.pdf/point3d/get_x/_index.md | 23 + .../cpp/aspose.pdf/point3d/get_y/_index.md | 23 + .../cpp/aspose.pdf/point3d/get_z/_index.md | 23 + .../cpp/aspose.pdf/point3d/point3d/_index.md | 58 + .../cpp/aspose.pdf/point3d/set_x/_index.md | 23 + .../cpp/aspose.pdf/point3d/set_y/_index.md | 23 + .../cpp/aspose.pdf/point3d/set_z/_index.md | 23 + .../cpp/aspose.pdf/point3d/tostring/_index.md | 28 + .../cpp/aspose.pdf/pptxsaveoptions/_index.md | 48 + .../get_customprogresshandler/_index.md | 24 + .../get_imageresolution/_index.md | 23 + .../get_optimizetextboxes/_index.md | 23 + .../get_separateimages/_index.md | 23 + .../get_slidesasimages/_index.md | 23 + .../pptxsaveoptions/pptxsaveoptions/_index.md | 23 + .../set_customprogresshandler/_index.md | 24 + .../set_imageresolution/_index.md | 23 + .../set_optimizetextboxes/_index.md | 23 + .../set_separateimages/_index.md | 23 + .../set_slidesasimages/_index.md | 23 + english/cpp/aspose.pdf/printduplex/_index.md | 30 + .../aspose.pdf/printduplexconverter/_index.md | 28 + .../printduplexconverter/toenum/_index.md | 24 + .../printduplexconverter/tostring/_index.md | 24 + english/cpp/aspose.pdf/printscaling/_index.md | 29 + .../printscalingconverter/_index.md | 29 + .../printscalingconverter/_index.md | 23 + .../printscalingconverter/toenum/_index.md | 45 + .../printscalingconverter/tostring/_index.md | 45 + english/cpp/aspose.pdf/producttype/_index.md | 30 + .../aspose.pdf/progresseventtype/_index.md | 31 + .../cpp/aspose.pdf/psloadoptions/_index.md | 44 + .../psloadoptions/get_fontsfolders/_index.md | 23 + .../psloadoptions/psloadoptions/_index.md | 23 + .../psloadoptions/set_fontsfolders/_index.md | 23 + .../cpp/aspose.pdf/pssaveoptions/_index.md | 43 + .../pssaveoptions/get_embedfont/_index.md | 23 + .../pssaveoptions/get_embedfontas/_index.md | 23 + .../pssaveoptions/pssaveoptions/_index.md | 55 + .../pssaveoptions/set_embedfont/_index.md | 23 + .../pssaveoptions/set_embedfontas/_index.md | 23 + english/cpp/aspose.pdf/rectangle/_index.md | 64 + .../cpp/aspose.pdf/rectangle/center/_index.md | 29 + .../cpp/aspose.pdf/rectangle/clone/_index.md | 28 + .../aspose.pdf/rectangle/contains/_index.md | 46 + .../rectangle/containsline/_index.md | 71 + .../rectangle/containspoint/_index.md | 53 + .../cpp/aspose.pdf/rectangle/empty/_index.md | 23 + .../cpp/aspose.pdf/rectangle/equals/_index.md | 46 + .../aspose.pdf/rectangle/fromrect/_index.md | 81 + .../aspose.pdf/rectangle/get_height/_index.md | 23 + .../rectangle/get_isempty/_index.md | 23 + .../rectangle/get_ispoint/_index.md | 23 + .../rectangle/get_istrivial/_index.md | 23 + .../aspose.pdf/rectangle/get_llx/_index.md | 23 + .../aspose.pdf/rectangle/get_lly/_index.md | 23 + .../rectangle/get_trivial/_index.md | 24 + .../aspose.pdf/rectangle/get_urx/_index.md | 23 + .../aspose.pdf/rectangle/get_ury/_index.md | 23 + .../aspose.pdf/rectangle/get_width/_index.md | 23 + .../aspose.pdf/rectangle/intersect/_index.md | 46 + .../rectangle/isintersect/_index.md | 45 + .../cpp/aspose.pdf/rectangle/join/_index.md | 46 + .../aspose.pdf/rectangle/nearequals/_index.md | 55 + .../cpp/aspose.pdf/rectangle/parse/_index.md | 45 + .../aspose.pdf/rectangle/rectangle/_index.md | 76 + .../cpp/aspose.pdf/rectangle/rotate/_index.md | 72 + .../aspose.pdf/rectangle/set_llx/_index.md | 23 + .../aspose.pdf/rectangle/set_lly/_index.md | 23 + .../aspose.pdf/rectangle/set_urx/_index.md | 23 + .../aspose.pdf/rectangle/set_ury/_index.md | 23 + .../aspose.pdf/rectangle/topoints/_index.md | 29 + .../cpp/aspose.pdf/rectangle/torect/_index.md | 28 + .../aspose.pdf/rectangle/tostring/_index.md | 28 + .../cpp/aspose.pdf/renderingoptions/_index.md | 55 + .../get_barcodeoptimization/_index.md | 23 + .../get_convertfontstounicodettf/_index.md | 23 + .../get_defaultfontname/_index.md | 23 + .../get_heightextraunits/_index.md | 23 + .../get_ignoreresourcefonterrors/_index.md | 23 + .../get_interpolationhighquality/_index.md | 23 + .../get_maxfontscachesize/_index.md | 23 + .../get_maxsymbolscachesize/_index.md | 23 + .../get_optimizedimensions/_index.md | 23 + .../get_scaleimagestofitpagewidth/_index.md | 32 + .../get_systemfontsnativerendering/_index.md | 23 + .../get_usefonthinting/_index.md | 23 + .../get_usenewimagingengine/_index.md | 32 + .../get_widthextraunits/_index.md | 23 + .../renderingoptions/_index.md | 23 + .../set_barcodeoptimization/_index.md | 23 + .../set_convertfontstounicodettf/_index.md | 23 + .../set_defaultfontname/_index.md | 23 + .../set_heightextraunits/_index.md | 23 + .../set_ignoreresourcefonterrors/_index.md | 23 + .../set_interpolationhighquality/_index.md | 23 + .../set_maxfontscachesize/_index.md | 23 + .../set_maxsymbolscachesize/_index.md | 23 + .../set_optimizedimensions/_index.md | 23 + .../set_scaleimagestofitpagewidth/_index.md | 32 + .../set_systemfontsnativerendering/_index.md | 23 + .../set_usefonthinting/_index.md | 23 + .../set_usenewimagingengine/_index.md | 32 + .../set_widthextraunits/_index.md | 23 + english/cpp/aspose.pdf/resources/_index.md | 34 + .../resources/cpp_set_xfrom_weak/_index.md | 24 + .../aspose.pdf/resources/freememory/_index.md | 23 + .../aspose.pdf/resources/get_fonts/_index.md | 24 + .../aspose.pdf/resources/get_forms/_index.md | 24 + .../aspose.pdf/resources/get_images/_index.md | 24 + .../resources/getextgstates/_index.md | 28 + .../aspose.pdf/resources/getfonts/_index.md | 45 + english/cpp/aspose.pdf/returnaction/_index.md | 29 + .../_index.md | 28 + .../convert/_index.md | 41 + english/cpp/aspose.pdf/rotation/_index.md | 32 + english/cpp/aspose.pdf/row/_index.md | 50 + english/cpp/aspose.pdf/row/clone/_index.md | 28 + .../row/get_backgroundcolor/_index.md | 24 + .../cpp/aspose.pdf/row/get_border/_index.md | 24 + .../cpp/aspose.pdf/row/get_cells/_index.md | 24 + .../row/get_defaultcellborder/_index.md | 24 + .../row/get_defaultcellpadding/_index.md | 24 + .../row/get_defaultcelltextstate/_index.md | 24 + .../row/get_fixedrowheight/_index.md | 23 + .../aspose.pdf/row/get_isinnewpage/_index.md | 23 + .../aspose.pdf/row/get_isrowbroken/_index.md | 23 + .../aspose.pdf/row/get_minrowheight/_index.md | 23 + .../row/get_verticalalignment/_index.md | 24 + english/cpp/aspose.pdf/row/row/_index.md | 23 + .../row/set_backgroundcolor/_index.md | 24 + .../cpp/aspose.pdf/row/set_border/_index.md | 24 + .../cpp/aspose.pdf/row/set_cells/_index.md | 24 + .../row/set_defaultcellborder/_index.md | 24 + .../row/set_defaultcellpadding/_index.md | 24 + .../row/set_defaultcelltextstate/_index.md | 24 + .../row/set_fixedrowheight/_index.md | 23 + .../aspose.pdf/row/set_isinnewpage/_index.md | 23 + .../aspose.pdf/row/set_isrowbroken/_index.md | 23 + .../aspose.pdf/row/set_minrowheight/_index.md | 23 + .../row/set_verticalalignment/_index.md | 24 + english/cpp/aspose.pdf/rows/_index.md | 57 + english/cpp/aspose.pdf/rows/add/_index.md | 61 + english/cpp/aspose.pdf/rows/begin/_index.md | 49 + english/cpp/aspose.pdf/rows/cbegin/_index.md | 29 + english/cpp/aspose.pdf/rows/cend/_index.md | 29 + .../aspose.pdf/rows/const_iterator/_index.md | 23 + english/cpp/aspose.pdf/rows/dispose/_index.md | 23 + english/cpp/aspose.pdf/rows/end/_index.md | 49 + .../cpp/aspose.pdf/rows/get_count/_index.md | 23 + .../aspose.pdf/rows/getenumerator/_index.md | 29 + english/cpp/aspose.pdf/rows/idx_get/_index.md | 41 + english/cpp/aspose.pdf/rows/idx_set/_index.md | 41 + english/cpp/aspose.pdf/rows/indexof/_index.md | 45 + .../cpp/aspose.pdf/rows/iterator/_index.md | 23 + .../rows/iterator_holder_type/_index.md | 23 + english/cpp/aspose.pdf/rows/remove/_index.md | 41 + .../cpp/aspose.pdf/rows/removeat/_index.md | 40 + .../cpp/aspose.pdf/rows/removerange/_index.md | 49 + english/cpp/aspose.pdf/rows/rows/_index.md | 23 + .../virtualizebeginconstiterator/_index.md | 29 + .../rows/virtualizebeginiterator/_index.md | 29 + .../rows/virtualized_iterator/_index.md | 23 + .../virtualized_iterator_element/_index.md | 23 + .../rows/virtualizeendconstiterator/_index.md | 29 + .../rows/virtualizeenditerator/_index.md | 29 + english/cpp/aspose.pdf/saveformat/_index.md | 45 + english/cpp/aspose.pdf/saveoptions/_index.md | 33 + .../saveoptions/get_cacheglyphs/_index.md | 23 + .../saveoptions/get_closeresponse/_index.md | 23 + .../saveoptions/get_saveformat/_index.md | 24 + .../saveoptions/get_warninghandler/_index.md | 24 + .../saveoptions/set_cacheglyphs/_index.md | 23 + .../saveoptions/set_closeresponse/_index.md | 23 + .../saveoptions/set_warninghandler/_index.md | 24 + english/cpp/aspose.pdf/stamp/_index.md | 68 + .../aspose.pdf/stamp/get_background/_index.md | 23 + .../stamp/get_bottommargin/_index.md | 23 + .../cpp/aspose.pdf/stamp/get_height/_index.md | 23 + .../stamp/get_horizontalalignment/_index.md | 24 + .../aspose.pdf/stamp/get_leftmargin/_index.md | 23 + .../aspose.pdf/stamp/get_opacity/_index.md | 23 + .../stamp/get_outlineopacity/_index.md | 23 + .../stamp/get_outlinewidth/_index.md | 23 + .../stamp/get_rightmargin/_index.md | 23 + .../cpp/aspose.pdf/stamp/get_rotate/_index.md | 24 + .../stamp/get_rotateangle/_index.md | 23 + .../aspose.pdf/stamp/get_topmargin/_index.md | 23 + .../stamp/get_verticalalignment/_index.md | 24 + .../cpp/aspose.pdf/stamp/get_width/_index.md | 23 + .../aspose.pdf/stamp/get_xindent/_index.md | 23 + .../aspose.pdf/stamp/get_yindent/_index.md | 23 + .../cpp/aspose.pdf/stamp/get_zoom/_index.md | 23 + .../cpp/aspose.pdf/stamp/get_zoomx/_index.md | 23 + .../cpp/aspose.pdf/stamp/get_zoomy/_index.md | 23 + .../cpp/aspose.pdf/stamp/getstampid/_index.md | 28 + english/cpp/aspose.pdf/stamp/put/_index.md | 41 + .../aspose.pdf/stamp/set_background/_index.md | 23 + .../stamp/set_bottommargin/_index.md | 23 + .../cpp/aspose.pdf/stamp/set_height/_index.md | 23 + .../stamp/set_horizontalalignment/_index.md | 24 + .../aspose.pdf/stamp/set_leftmargin/_index.md | 23 + .../aspose.pdf/stamp/set_opacity/_index.md | 23 + .../stamp/set_outlineopacity/_index.md | 23 + .../stamp/set_outlinewidth/_index.md | 23 + .../stamp/set_rightmargin/_index.md | 23 + .../cpp/aspose.pdf/stamp/set_rotate/_index.md | 24 + .../stamp/set_rotateangle/_index.md | 23 + .../aspose.pdf/stamp/set_topmargin/_index.md | 23 + .../stamp/set_verticalalignment/_index.md | 24 + .../cpp/aspose.pdf/stamp/set_width/_index.md | 23 + .../aspose.pdf/stamp/set_xindent/_index.md | 23 + .../aspose.pdf/stamp/set_yindent/_index.md | 23 + .../cpp/aspose.pdf/stamp/set_zoom/_index.md | 23 + .../cpp/aspose.pdf/stamp/set_zoomx/_index.md | 23 + .../cpp/aspose.pdf/stamp/set_zoomy/_index.md | 23 + .../cpp/aspose.pdf/stamp/setstampid/_index.md | 40 + english/cpp/aspose.pdf/stamp/stamp/_index.md | 23 + .../cpp/aspose.pdf/svgloadoptions/_index.md | 46 + .../get_adjustpagesize/_index.md | 23 + .../svgloadoptions/get_pageinfo/_index.md | 24 + .../set_adjustpagesize/_index.md | 23 + .../svgloadoptions/set_pageinfo/_index.md | 24 + .../svgloadoptions/svgloadoptions/_index.md | 23 + .../cpp/aspose.pdf/svgsaveoptions/_index.md | 43 + .../embeddedimagessavingstrategy/_index.md | 23 + .../svgsaveoptions/svgsaveoptions/_index.md | 23 + english/cpp/aspose.pdf/table/_index.md | 90 + english/cpp/aspose.pdf/table/clone/_index.md | 28 + .../aspose.pdf/table/get_alignment/_index.md | 24 + .../table/get_backgroundcolor/_index.md | 24 + .../cpp/aspose.pdf/table/get_border/_index.md | 24 + .../aspose.pdf/table/get_breaktext/_index.md | 24 + .../cpp/aspose.pdf/table/get_broken/_index.md | 24 + .../table/get_columnadjustment/_index.md | 24 + .../table/get_columnwidths/_index.md | 23 + .../table/get_cornerstyle/_index.md | 24 + .../table/get_defaultcellborder/_index.md | 24 + .../table/get_defaultcellpadding/_index.md | 24 + .../table/get_defaultcelltextstate/_index.md | 24 + .../table/get_defaultcolumnwidth/_index.md | 23 + .../table/get_isbordersincluded/_index.md | 23 + .../aspose.pdf/table/get_isbroken/_index.md | 23 + .../cpp/aspose.pdf/table/get_left/_index.md | 23 + .../table/get_repeatingcolumnscount/_index.md | 23 + .../table/get_repeatingrowscount/_index.md | 23 + .../table/get_repeatingrowsstyle/_index.md | 24 + .../cpp/aspose.pdf/table/get_rows/_index.md | 24 + .../cpp/aspose.pdf/table/get_top/_index.md | 23 + .../cpp/aspose.pdf/table/getheight/_index.md | 45 + .../cpp/aspose.pdf/table/getwidth/_index.md | 28 + .../aspose.pdf/table/set_alignment/_index.md | 24 + .../table/set_backgroundcolor/_index.md | 24 + .../cpp/aspose.pdf/table/set_border/_index.md | 24 + .../aspose.pdf/table/set_breaktext/_index.md | 24 + .../cpp/aspose.pdf/table/set_broken/_index.md | 24 + .../table/set_columnadjustment/_index.md | 24 + .../table/set_columnwidths/_index.md | 23 + .../table/set_cornerstyle/_index.md | 24 + .../table/set_defaultcellborder/_index.md | 24 + .../table/set_defaultcellpadding/_index.md | 24 + .../table/set_defaultcelltextstate/_index.md | 24 + .../table/set_defaultcolumnwidth/_index.md | 23 + .../table/set_isbordersincluded/_index.md | 23 + .../aspose.pdf/table/set_isbroken/_index.md | 23 + .../cpp/aspose.pdf/table/set_left/_index.md | 23 + .../table/set_repeatingcolumnscount/_index.md | 23 + .../table/set_repeatingrowscount/_index.md | 23 + .../table/set_repeatingrowsstyle/_index.md | 24 + .../cpp/aspose.pdf/table/set_top/_index.md | 23 + .../table/setcolumntextstate/_index.md | 50 + english/cpp/aspose.pdf/table/table/_index.md | 23 + english/cpp/aspose.pdf/tablebroken/_index.md | 31 + english/cpp/aspose.pdf/taborder/_index.md | 32 + .../texfilesysteminputdirectory/_index.md | 30 + .../dispose/_index.md | 23 + .../getfile/_index.md | 62 + .../texfilesysteminputdirectory/_index.md | 40 + .../texfilesystemoutputdirectory/_index.md | 34 + .../getoutputfile/_index.md | 53 + .../texfilesystemoutputdirectory/_index.md | 40 + english/cpp/aspose.pdf/texfragment/_index.md | 53 + .../aspose.pdf/texfragment/clone/_index.md | 28 + .../get_latexloadoptionsofinstance/_index.md | 33 + .../get_texloadoptionsofinstance/_index.md | 24 + .../set_latexloadoptionsofinstance/_index.md | 33 + .../set_texloadoptionsofinstance/_index.md | 24 + .../texfragment/texfragment/_index.md | 80 + .../cpp/aspose.pdf/texloadoptions/_index.md | 63 + .../texloadoptions/get_datetime/_index.md | 23 + .../get_inputdirectory/_index.md | 24 + .../texloadoptions/get_jobname/_index.md | 23 + .../texloadoptions/get_noligatures/_index.md | 23 + .../get_outputdirectory/_index.md | 24 + .../get_rasterizeformulas/_index.md | 23 + .../texloadoptions/get_repeat/_index.md | 23 + .../get_requiredinputdirectory/_index.md | 24 + .../get_showterminaloutput/_index.md | 23 + .../texloadoptions/get_subsetfonts/_index.md | 23 + .../texloadoptions/getloadresult/_index.md | 29 + .../texloadoptions/set_datetime/_index.md | 23 + .../set_inputdirectory/_index.md | 24 + .../texloadoptions/set_jobname/_index.md | 23 + .../texloadoptions/set_noligatures/_index.md | 23 + .../set_outputdirectory/_index.md | 24 + .../set_rasterizeformulas/_index.md | 23 + .../texloadoptions/set_repeat/_index.md | 23 + .../set_requiredinputdirectory/_index.md | 24 + .../set_showterminaloutput/_index.md | 23 + .../texloadoptions/set_subsetfonts/_index.md | 23 + .../texloadoptions/texloadoptions/_index.md | 23 + .../cpp/aspose.pdf/texloadresult/_index.md | 33 + .../texmemoryoutputdirectory/_index.md | 31 + .../dispose/_index.md | 23 + .../getfile/_index.md | 62 + .../getoutputfile/_index.md | 53 + .../texmemoryoutputdirectory/_index.md | 23 + .../cpp/aspose.pdf/texsaveoptions/_index.md | 43 + .../texsaveoptions/addfontencs/_index.md | 40 + .../texsaveoptions/clearfontencs/_index.md | 23 + .../get_outdirectorypath/_index.md | 23 + .../texsaveoptions/get_pagescount/_index.md | 23 + .../set_outdirectorypath/_index.md | 23 + .../texsaveoptions/texsaveoptions/_index.md | 23 + english/cpp/aspose.pdf/textstamp/_index.md | 95 + .../aspose.pdf/textstamp/get_draw/_index.md | 23 + .../aspose.pdf/textstamp/get_height/_index.md | 23 + .../textstamp/get_justify/_index.md | 23 + .../textstamp/get_maxrowwidth/_index.md | 23 + .../get_nocharacterbehavior/_index.md | 23 + .../textstamp/get_replacementfont/_index.md | 24 + .../aspose.pdf/textstamp/get_scale/_index.md | 23 + .../textstamp/get_textalignment/_index.md | 24 + .../textstamp/get_textstate/_index.md | 24 + .../get_treatyindentasbaseline/_index.md | 23 + .../aspose.pdf/textstamp/get_value/_index.md | 23 + .../aspose.pdf/textstamp/get_width/_index.md | 23 + .../textstamp/get_wordwrap/_index.md | 32 + .../textstamp/get_wordwrapmode/_index.md | 23 + .../cpp/aspose.pdf/textstamp/put/_index.md | 42 + .../aspose.pdf/textstamp/set_draw/_index.md | 23 + .../aspose.pdf/textstamp/set_height/_index.md | 23 + .../textstamp/set_justify/_index.md | 23 + .../textstamp/set_maxrowwidth/_index.md | 23 + .../set_nocharacterbehavior/_index.md | 23 + .../textstamp/set_replacementfont/_index.md | 24 + .../aspose.pdf/textstamp/set_scale/_index.md | 23 + .../textstamp/set_textalignment/_index.md | 24 + .../set_treatyindentasbaseline/_index.md | 23 + .../aspose.pdf/textstamp/set_value/_index.md | 23 + .../aspose.pdf/textstamp/set_width/_index.md | 23 + .../textstamp/set_wordwrap/_index.md | 32 + .../textstamp/set_wordwrapmode/_index.md | 23 + .../aspose.pdf/textstamp/textstamp/_index.md | 116 + .../aspose.pdf/timestampsettings/_index.md | 33 + .../get_basicauthcredentials/_index.md | 23 + .../get_digesthashalgorithm/_index.md | 24 + .../timestampsettings/get_serverurl/_index.md | 23 + .../set_basicauthcredentials/_index.md | 23 + .../set_digesthashalgorithm/_index.md | 24 + .../timestampsettings/set_serverurl/_index.md | 23 + .../timestampsettings/_index.md | 59 + english/cpp/aspose.pdf/tocinfo/_index.md | 45 + .../tocinfo/get_columninfo/_index.md | 24 + .../tocinfo/get_copytooutlines/_index.md | 23 + .../tocinfo/get_formatarray/_index.md | 24 + .../tocinfo/get_formatarraylength/_index.md | 23 + .../tocinfo/get_iscounttocpages/_index.md | 23 + .../tocinfo/get_isshowpagenumbers/_index.md | 23 + .../aspose.pdf/tocinfo/get_linedash/_index.md | 24 + .../tocinfo/get_pagenumbersprefix/_index.md | 23 + .../aspose.pdf/tocinfo/get_title/_index.md | 24 + .../tocinfo/set_columninfo/_index.md | 24 + .../tocinfo/set_copytooutlines/_index.md | 23 + .../tocinfo/set_formatarray/_index.md | 24 + .../tocinfo/set_formatarraylength/_index.md | 23 + .../tocinfo/set_iscounttocpages/_index.md | 23 + .../tocinfo/set_isshowpagenumbers/_index.md | 23 + .../aspose.pdf/tocinfo/set_linedash/_index.md | 24 + .../tocinfo/set_pagenumbersprefix/_index.md | 23 + .../aspose.pdf/tocinfo/set_title/_index.md | 24 + .../cpp/aspose.pdf/tocinfo/tocinfo/_index.md | 23 + .../cpp/aspose.pdf/txtloadoptions/_index.md | 42 + .../txtloadoptions/txtloadoptions/_index.md | 23 + .../aspose.pdf/unifiedsaveoptions/_index.md | 45 + .../conversionprogresseventhandler/_index.md | 23 + .../get_extractocrsublayeronly/_index.md | 27 + .../set_extractocrsublayeronly/_index.md | 27 + .../unifiedsaveoptions/_index.md | 23 + .../unsupportedfonttypeexception/_index.md | 22 + .../aspose.pdf/verticalalignment/_index.md | 31 + english/cpp/aspose.pdf/warninginfo/_index.md | 29 + .../warninginfo/get_warningmessage/_index.md | 28 + .../get_warningtypeproperty/_index.md | 29 + .../warninginfo/warninginfo/_index.md | 50 + english/cpp/aspose.pdf/warningtype/_index.md | 34 + english/cpp/aspose.pdf/watermark/_index.md | 31 + .../watermark/get_available/_index.md | 23 + .../aspose.pdf/watermark/get_image/_index.md | 23 + .../watermark/get_position/_index.md | 24 + .../aspose.pdf/watermark/watermark/_index.md | 83 + .../aspose.pdf/watermarkartifact/_index.md | 80 + .../watermarkartifact/_index.md | 23 + english/cpp/aspose.pdf/webhyperlink/_index.md | 32 + .../aspose.pdf/webhyperlink/get_url/_index.md | 23 + .../aspose.pdf/webhyperlink/set_url/_index.md | 23 + .../webhyperlink/webhyperlink/_index.md | 54 + english/cpp/aspose.pdf/xfatag/_index.md | 32 + english/cpp/aspose.pdf/xform/_index.md | 47 + .../aspose.pdf/xform/createnewform/_index.md | 57 + .../cpp/aspose.pdf/xform/dispose/_index.md | 23 + .../cpp/aspose.pdf/xform/freememory/_index.md | 23 + .../cpp/aspose.pdf/xform/get_bbox/_index.md | 24 + .../aspose.pdf/xform/get_contents/_index.md | 24 + english/cpp/aspose.pdf/xform/get_it/_index.md | 23 + .../cpp/aspose.pdf/xform/get_matrix/_index.md | 24 + .../cpp/aspose.pdf/xform/get_name/_index.md | 23 + .../cpp/aspose.pdf/xform/get_opi/_index.md | 24 + .../aspose.pdf/xform/get_rectangle/_index.md | 24 + .../aspose.pdf/xform/get_resources/_index.md | 24 + .../aspose.pdf/xform/get_subtype/_index.md | 23 + .../aspose.pdf/xform/getresources/_index.md | 65 + .../cpp/aspose.pdf/xform/set_bbox/_index.md | 24 + .../cpp/aspose.pdf/xform/set_matrix/_index.md | 24 + .../cpp/aspose.pdf/xform/set_name/_index.md | 23 + .../cpp/aspose.pdf/xformcollection/_index.md | 46 + .../aspose.pdf/xformcollection/add/_index.md | 42 + .../xformcollection/clear/_index.md | 23 + .../xformcollection/contains/_index.md | 45 + .../xformcollection/copyto/_index.md | 50 + .../cpp_set_xfrom_weak/_index.md | 24 + .../xformcollection/delete/_index.md | 85 + .../xformcollection/freememory/_index.md | 23 + .../xformcollection/get_count/_index.md | 23 + .../xformcollection/get_isreadonly/_index.md | 23 + .../get_issynchronized/_index.md | 23 + .../xformcollection/get_syncroot/_index.md | 23 + .../xformcollection/getenumerator/_index.md | 29 + .../xformcollection/getformname/_index.md | 45 + .../xformcollection/idx_get/_index.md | 81 + .../xformcollection/remove/_index.md | 45 + english/cpp/aspose.pdf/ximage/_index.md | 46 + .../ximage/addstencilmask/_index.md | 40 + .../ximage/detectcolortype/_index.md | 24 + .../ximage/get_containstransparency/_index.md | 23 + .../ximage/get_filtertype/_index.md | 24 + .../ximage/get_grayscaled/_index.md | 23 + .../aspose.pdf/ximage/get_height/_index.md | 23 + .../aspose.pdf/ximage/get_imagemask/_index.md | 27 + .../aspose.pdf/ximage/get_metadata/_index.md | 24 + .../cpp/aspose.pdf/ximage/get_name/_index.md | 23 + .../cpp/aspose.pdf/ximage/get_width/_index.md | 23 + .../aspose.pdf/ximage/getcolortype/_index.md | 29 + .../ximage/getnameincollection/_index.md | 28 + .../ximage/isthesameobject/_index.md | 46 + .../cpp/aspose.pdf/ximage/rename/_index.md | 40 + english/cpp/aspose.pdf/ximage/save/_index.md | 171 ++ .../cpp/aspose.pdf/ximage/set_name/_index.md | 23 + .../cpp/aspose.pdf/ximage/tostream/_index.md | 28 + .../aspose.pdf/ximageaddingparams/_index.md | 48 + .../get_bitmapinfo/_index.md | 24 + .../ximageaddingparams/get_bitmask/_index.md | 23 + .../get_filtertype/_index.md | 24 + .../ximageaddingparams/get_image/_index.md | 23 + .../get_imagestream/_index.md | 23 + .../get_isblackwhite/_index.md | 23 + .../get_isgrayscaled/_index.md | 23 + .../get_isgrayscalesoftmasked/_index.md | 23 + .../get_isstencilmasked/_index.md | 23 + .../ximageaddingparams/get_quality/_index.md | 23 + .../ximageaddingparams/get_type/_index.md | 23 + .../set_bitmapinfo/_index.md | 24 + .../ximageaddingparams/set_bitmask/_index.md | 23 + .../set_filtertype/_index.md | 24 + .../ximageaddingparams/set_image/_index.md | 23 + .../set_imagestream/_index.md | 23 + .../set_isblackwhite/_index.md | 23 + .../set_isgrayscaled/_index.md | 23 + .../set_isgrayscalesoftmasked/_index.md | 23 + .../set_isstencilmasked/_index.md | 23 + .../ximageaddingparams/set_quality/_index.md | 23 + .../ximageaddingparams/_index.md | 23 + .../cpp/aspose.pdf/ximagecollection/_index.md | 54 + .../aspose.pdf/ximagecollection/add/_index.md | 211 ++ .../ximagecollection/addwithname/_index.md | 46 + .../ximagecollection/clear/_index.md | 23 + .../ximagecollection/contains/_index.md | 45 + .../ximagecollection/copyto/_index.md | 50 + .../ximagecollection/delete/_index.md | 168 ++ .../ximagecollection/get_count/_index.md | 23 + .../ximagecollection/get_isreadonly/_index.md | 23 + .../get_issynchronized/_index.md | 23 + .../ximagecollection/get_names/_index.md | 23 + .../ximagecollection/get_syncroot/_index.md | 23 + .../ximagecollection/getenumerator/_index.md | 29 + .../ximagecollection/getimagename/_index.md | 46 + .../ximagecollection/idx_get/_index.md | 83 + .../ximagecollection/remove/_index.md | 47 + .../ximagecollection/replace/_index.md | 156 ++ .../cpp/aspose.pdf/xmlloadoptions/_index.md | 46 + .../xmlloadoptions/get_xslstream/_index.md | 23 + .../xmlloadoptions/xmlloadoptions/_index.md | 85 + .../xmlloadoptions/~xmlloadoptions/_index.md | 23 + .../cpp/aspose.pdf/xmlsaveoptions/_index.md | 35 + .../xmlsaveoptions/xmlsaveoptions/_index.md | 23 + english/cpp/aspose.pdf/xmpfield/_index.md | 42 + .../cpp/aspose.pdf/xmpfield/equals/_index.md | 44 + .../aspose.pdf/xmpfield/get_empty/_index.md | 24 + .../xmpfield/get_fieldtype/_index.md | 28 + .../aspose.pdf/xmpfield/get_isempty/_index.md | 27 + .../aspose.pdf/xmpfield/get_lang/_index.md | 27 + .../xmpfield/get_localname/_index.md | 27 + .../aspose.pdf/xmpfield/get_name/_index.md | 27 + .../xmpfield/get_namespaceuri/_index.md | 27 + .../aspose.pdf/xmpfield/get_prefix/_index.md | 27 + .../aspose.pdf/xmpfield/get_value/_index.md | 28 + .../aspose.pdf/xmpfield/gethashcode/_index.md | 28 + .../xmpfield/set_localname/_index.md | 27 + .../xmpfield/set_namespaceuri/_index.md | 27 + .../aspose.pdf/xmpfield/set_prefix/_index.md | 27 + .../cpp/aspose.pdf/xmpfield/toarray/_index.md | 29 + .../aspose.pdf/xmpfield/tostructure/_index.md | 29 + english/cpp/aspose.pdf/xmpfieldtype/_index.md | 32 + .../xmppdfaextensioncategorytype/_index.md | 29 + .../xmppdfaextensionfield/_index.md | 34 + .../xmppdfaextensionfield/get_name/_index.md | 23 + .../get_valuetype/_index.md | 23 + .../xmppdfaextensionfield/getxml/_index.md | 44 + .../xmppdfaextensionfield/_index.md | 67 + .../xmppdfaextensionobject/_index.md | 30 + .../get_description/_index.md | 23 + .../get_value/_index.md | 23 + .../xmppdfaextensionobject/getxml/_index.md | 44 + .../set_value/_index.md | 23 + .../xmppdfaextensionproperty/_index.md | 36 + .../get_category/_index.md | 24 + .../xmppdfaextensionproperty/getxml/_index.md | 44 + .../xmppdfaextensionproperty/_index.md | 77 + .../xmppdfaextensionschema/_index.md | 51 + .../xmppdfaextensionschema/add/_index.md | 41 + .../xmppdfaextensionschema/contains/_index.md | 45 + .../defaultextensionnamespaceprefix/_index.md | 23 + .../defaultextensionnamespaceuri/_index.md | 26 + .../defaultfieldnamespaceprefix/_index.md | 26 + .../defaultfieldnamespaceuri/_index.md | 26 + .../defaultpropertynamespaceprefix/_index.md | 26 + .../defaultpropertynamespaceuri/_index.md | 26 + .../defaultschemanamespaceprefix/_index.md | 26 + .../defaultschemanamespaceuri/_index.md | 26 + .../defaultvaluenamespaceuri/_index.md | 26 + .../defaultvaluetypenamespaceprefix/_index.md | 26 + .../get_description/_index.md | 24 + .../get_objects/_index.md | 24 + .../getproperty/_index.md | 45 + .../getschemaxml/_index.md | 44 + .../getvaluesxml/_index.md | 49 + .../rdfnamespaceuri/_index.md | 26 + .../rdfprefix/_index.md | 26 + .../xmppdfaextensionschema/remove/_index.md | 41 + .../xmppdfaextensionschema/_index.md | 41 + .../_index.md | 31 + .../get_description/_index.md | 23 + .../get_namespaceuri/_index.md | 23 + .../get_prefix/_index.md | 23 + .../getxml/_index.md | 44 + .../_index.md | 58 + .../xmppdfaextensionvaluetype/_index.md | 50 + .../xmppdfaextensionvaluetype/add/_index.md | 41 + .../addrange/_index.md | 41 + .../xmppdfaextensionvaluetype/clear/_index.md | 23 + .../get_fields/_index.md | 24 + .../get_namespaceuri/_index.md | 23 + .../get_prefix/_index.md | 23 + .../get_type/_index.md | 26 + .../getxml/_index.md | 44 + .../remove/_index.md | 41 + .../xmppdfaextensionvaluetype/_index.md | 67 + english/cpp/aspose.pdf/xmpvalue/_index.md | 64 + .../aspose.pdf/xmpvalue/get_isarray/_index.md | 23 + .../xmpvalue/get_isdatetime/_index.md | 23 + .../xmpvalue/get_isdouble/_index.md | 23 + .../aspose.pdf/xmpvalue/get_isfield/_index.md | 23 + .../xmpvalue/get_isinteger/_index.md | 23 + .../xmpvalue/get_isnamedvalue/_index.md | 23 + .../xmpvalue/get_isnamedvalues/_index.md | 23 + .../aspose.pdf/xmpvalue/get_israw/_index.md | 28 + .../xmpvalue/get_isstring/_index.md | 23 + .../xmpvalue/get_isstructure/_index.md | 23 + .../xmpvalue/to_keyvaluepair/_index.md | 24 + .../xmpvalue/to_keyvaluepairarray/_index.md | 24 + .../xmpvalue/to_objectarray/_index.md | 24 + .../aspose.pdf/xmpvalue/to_string/_index.md | 24 + .../aspose.pdf/xmpvalue/to_xmpvalue/_index.md | 84 + .../xmpvalue/to_xmpvaluearray/_index.md | 24 + .../cpp/aspose.pdf/xmpvalue/toarray/_index.md | 29 + .../aspose.pdf/xmpvalue/todatetime/_index.md | 28 + .../xmpvalue/todictionary/_index.md | 29 + .../aspose.pdf/xmpvalue/todouble/_index.md | 28 + .../cpp/aspose.pdf/xmpvalue/tofield/_index.md | 29 + .../aspose.pdf/xmpvalue/tointeger/_index.md | 28 + .../xmpvalue/tonamedvalue/_index.md | 29 + .../xmpvalue/tonamedvalues/_index.md | 29 + .../cpp/aspose.pdf/xmpvalue/toraw/_index.md | 28 + .../aspose.pdf/xmpvalue/tostring/_index.md | 63 + .../xmpvalue/tostringvalue/_index.md | 28 + .../aspose.pdf/xmpvalue/tostructure/_index.md | 29 + .../aspose.pdf/xmpvalue/xmpvalue/_index.md | 165 ++ .../cpp/aspose.pdf/xpsloadoptions/_index.md | 46 + .../xpsloadoptions/get_batchsize/_index.md | 23 + .../xpsloadoptions/set_batchsize/_index.md | 23 + .../xpsloadoptions/xpsloadoptions/_index.md | 23 + .../cpp/aspose.pdf/xpssaveoptions/_index.md | 46 + .../xpssaveoptions/get_batchsize/_index.md | 23 + .../get_savetransparenttexts/_index.md | 23 + .../get_usenewimagingengine/_index.md | 32 + .../xpssaveoptions/set_batchsize/_index.md | 23 + .../set_savetransparenttexts/_index.md | 23 + .../set_usenewimagingengine/_index.md | 32 + .../xpssaveoptions/xpssaveoptions/_index.md | 23 + .../cpp/aspose.pdf/xslfoloadoptions/_index.md | 53 + .../xslfoloadoptions/get_basepath/_index.md | 23 + .../get_xsltargumentlist/_index.md | 23 + .../xslfoloadoptions/set_basepath/_index.md | 23 + .../set_xsltargumentlist/_index.md | 23 + .../xslfoloadoptions/_index.md | 85 + 6651 files changed, 256994 insertions(+), 1 deletion(-) create mode 100644 english/cpp/aspose.pdf.annotations/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/actioncollection/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/actioncollection/add/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/actioncollection/clear/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/actioncollection/contains/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/actioncollection/copyto/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/actioncollection/delete/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/actioncollection/get_count/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/actioncollection/get_isreadonly/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/actioncollection/get_issynchronized/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/actioncollection/get_syncroot/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/actioncollection/getenumerator/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/actioncollection/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/actioncollection/remove/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotation/accept/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotation/changeafterresize/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotation/flatten/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotation/get_actions/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotation/get_activestate/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotation/get_alignment/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotation/get_annotationtype/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotation/get_appearance/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotation/get_border/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotation/get_characteristics/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotation/get_color/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotation/get_contents/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotation/get_flags/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotation/get_fullname/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotation/get_height/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotation/get_horizontalalignment/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotation/get_modified/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotation/get_name/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotation/get_pageindex/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotation/get_rect/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotation/get_states/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotation/get_texthorizontalalignment/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotation/get_updateappearanceonconvert/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotation/get_usefontsubset/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotation/get_width/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotation/getrectangle/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotation/set_activestate/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotation/set_alignment/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotation/set_border/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotation/set_color/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotation/set_contents/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotation/set_flags/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotation/set_height/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotation/set_horizontalalignment/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotation/set_modified/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotation/set_name/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotation/set_rect/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotation/set_texthorizontalalignment/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotation/set_updateappearanceonconvert/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotation/set_usefontsubset/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotation/set_width/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationactioncollection/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationactioncollection/get_oncalculate/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onclosepage/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onenter/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onexit/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onformat/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onhidepage/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onlostfocus/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onmodifycharacter/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onopenpage/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onpressmousebtn/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onreceivefocus/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onreleasemousebtn/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onshowpage/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onvalidate/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationactioncollection/set_oncalculate/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onclosepage/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onenter/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onexit/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onformat/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onhidepage/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onlostfocus/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onmodifycharacter/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onopenpage/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onpressmousebtn/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onreceivefocus/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onreleasemousebtn/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onshowpage/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onvalidate/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationcollection/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationcollection/accept/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationcollection/add/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationcollection/clear/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationcollection/contains/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationcollection/copyto/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationcollection/delete/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationcollection/findbyname/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationcollection/get_count/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationcollection/get_isreadonly/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationcollection/get_issynchronized/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationcollection/get_syncroot/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationcollection/getenumerator/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationcollection/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationcollection/remove/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationflags/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationflagsconverter/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationflagsconverter/toenum/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationflagsconverter/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationflagsconverter/toxfdfstring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationselector/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationselector/annotationselector/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationselector/get_selected/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationselector/visit/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationstate/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationstateconverter/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationstateconverter/toenum/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationstateconverter/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationstatemodel/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationstatemodelconverter/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationstatemodelconverter/toenum/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationstatemodelconverter/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/annotationtype/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/appearancedictionary/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/appearancedictionary/add/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/appearancedictionary/clear/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/appearancedictionary/contains/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/appearancedictionary/containskey/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/appearancedictionary/copyto/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/appearancedictionary/get_count/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/appearancedictionary/get_isfixedsize/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/appearancedictionary/get_isreadonly/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/appearancedictionary/get_issynchronized/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/appearancedictionary/get_keys/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/appearancedictionary/get_syncroot/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/appearancedictionary/get_values/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/appearancedictionary/getenumerator/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/appearancedictionary/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/appearancedictionary/idx_set/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/appearancedictionary/remove/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/appearancedictionary/trygetvalue/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/bleedmarkannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/bleedmarkannotation/accept/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/bleedmarkannotation/bleedmarkannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/bleedmarkannotation/get_annotationtype/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/border/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/border/border/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/border/get_dash/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/border/get_effect/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/border/get_effectintensity/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/border/get_hcornerradius/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/border/get_style/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/border/get_vcornerradius/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/border/get_width/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/border/set_dash/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/border/set_effect/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/border/set_effectintensity/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/border/set_hcornerradius/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/border/set_style/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/border/set_vcornerradius/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/border/set_width/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/bordereffect/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/bordereffectconverter/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/bordereffectconverter/toenum/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/bordereffectconverter/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/bordereffectconverter/toxfdfstring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/borderstyle/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/borderstyleconverter/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/borderstyleconverter/toenum/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/borderstyleconverter/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/borderstyleconverter/toxfdfstring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/capstyle/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/captionposition/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/captionpositionconverter/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/captionpositionconverter/toenum/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/captionpositionconverter/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/caretannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/caretannotation/accept/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/caretannotation/caretannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/caretannotation/get_annotationtype/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/caretannotation/get_frame/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/caretannotation/get_symbol/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/caretannotation/set_frame/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/caretannotation/set_symbol/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/caretsymbol/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/caretsymbolconverter/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/caretsymbolconverter/toenum/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/caretsymbolconverter/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/caretsymbolconverter/toxfdfstring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/characteristics/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/characteristics/get_background/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/characteristics/get_border/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/characteristics/get_rotate/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/characteristics/set_background/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/characteristics/set_border/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/characteristics/set_rotate/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/circleannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/circleannotation/accept/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/circleannotation/circleannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/circleannotation/get_annotationtype/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/colorbarannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/colorbarannotation/accept/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/colorbarannotation/changeafterresize/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/colorbarannotation/colorbarannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/colorbarannotation/get_annotationtype/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/colorbarannotation/get_colorofcmyk/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/colorbarannotation/set_colorofcmyk/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/colorsofcmyk/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/colorsofcmykconverter/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/colorsofcmykconverter/toenum/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/colorsofcmykconverter/toxfdfstring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/commonfigureannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/commonfigureannotation/commonfigureannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/commonfigureannotation/get_frame/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/commonfigureannotation/get_interiorcolor/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/commonfigureannotation/set_frame/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/commonfigureannotation/set_interiorcolor/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/cornerprintermarkannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/cornerprintermarkannotation/get_position/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/cornerprintermarkannotation/set_position/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/customexplicitdestination/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/customexplicitdestination/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/dash/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/dash/dash/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/dash/get_off/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/dash/get_on/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/dash/get_pattern/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/dash/set_off/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/dash/set_on/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/defaultappearance/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/defaultappearance/defaultappearance/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/defaultappearance/get_font/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/defaultappearance/get_fontname/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/defaultappearance/get_fontresourcename/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/defaultappearance/get_fontsize/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/defaultappearance/get_text/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/defaultappearance/get_textcolor/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/defaultappearance/set_fontname/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/defaultappearance/set_fontresourcename/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/defaultappearance/set_fontsize/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/defaultappearance/set_textcolor/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/documentactioncollection/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/documentactioncollection/documentactioncollection/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/documentactioncollection/get_afterprinting/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/documentactioncollection/get_aftersaving/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/documentactioncollection/get_beforeclosing/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/documentactioncollection/get_beforeprinting/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/documentactioncollection/get_beforesaving/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/documentactioncollection/set_afterprinting/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/documentactioncollection/set_aftersaving/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/documentactioncollection/set_beforeclosing/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/documentactioncollection/set_beforeprinting/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/documentactioncollection/set_beforesaving/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/explicitdestination/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/explicitdestination/createdestination/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/explicitdestination/get_page/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/explicitdestination/get_pagenumber/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/explicitdestination/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/explicitdestinationtype/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/explicitdestinationtypeconverter/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/explicitdestinationtypeconverter/toenum/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/explicitdestinationtypeconverter/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fdfreader/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fdfreader/readannotations/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fileattachmentannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fileattachmentannotation/accept/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fileattachmentannotation/fileattachmentannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fileattachmentannotation/get_annotationtype/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fileattachmentannotation/get_file/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fileattachmentannotation/get_icon/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fileattachmentannotation/get_opacity/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fileattachmentannotation/set_file/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fileattachmentannotation/set_icon/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fileattachmentannotation/set_opacity/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fileicon/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fileiconconverter/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fileiconconverter/toenum/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fileiconconverter/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fitbexplicitdestination/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fitbexplicitdestination/fitbexplicitdestination/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fitbexplicitdestination/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fitbhexplicitdestination/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fitbhexplicitdestination/fitbhexplicitdestination/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fitbhexplicitdestination/get_top/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fitbhexplicitdestination/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fitbvexplicitdestination/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fitbvexplicitdestination/fitbvexplicitdestination/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fitbvexplicitdestination/get_left/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fitbvexplicitdestination/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fitexplicitdestination/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fitexplicitdestination/fitexplicitdestination/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fitexplicitdestination/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fithexplicitdestination/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fithexplicitdestination/fithexplicitdestination/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fithexplicitdestination/get_top/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fithexplicitdestination/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fitrexplicitdestination/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fitrexplicitdestination/fitrexplicitdestination/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fitrexplicitdestination/get_bottom/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fitrexplicitdestination/get_left/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fitrexplicitdestination/get_right/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fitrexplicitdestination/get_top/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fitrexplicitdestination/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fitvexplicitdestination/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fitvexplicitdestination/fitvexplicitdestination/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fitvexplicitdestination/get_left/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fitvexplicitdestination/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fixedprint/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fixedprint/get_horizontaltranslation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fixedprint/get_matrix/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fixedprint/get_verticaltranslation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fixedprint/set_horizontaltranslation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fixedprint/set_matrix/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/fixedprint/set_verticaltranslation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/freetextannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/freetextannotation/accept/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/freetextannotation/freetextannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/freetextannotation/get_annotationtype/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/freetextannotation/get_callout/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/freetextannotation/get_defaultappearance/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/freetextannotation/get_defaultappearanceobject/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/freetextannotation/get_defaultstyle/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/freetextannotation/get_endingstyle/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/freetextannotation/get_intent/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/freetextannotation/get_justification/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/freetextannotation/get_rotate/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/freetextannotation/get_startingstyle/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/freetextannotation/get_textrectangle/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/freetextannotation/get_textstyle/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/freetextannotation/set_callout/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/freetextannotation/set_defaultappearance/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/freetextannotation/set_defaultstyle/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/freetextannotation/set_endingstyle/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/freetextannotation/set_intent/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/freetextannotation/set_justification/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/freetextannotation/set_rotate/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/freetextannotation/set_startingstyle/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/freetextannotation/set_textrectangle/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/freetextannotation/set_textstyle/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/freetextintent/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/freetextintentconverter/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/freetextintentconverter/toenum/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/freetextintentconverter/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/freetextintentconverter/toxfdfstring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/genericannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/genericannotation/accept/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/genericannotation/genericannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/genericannotation/get_annotationtype/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/gotoaction/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/gotoaction/get_destination/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/gotoaction/gotoaction/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/gotoaction/set_destination/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/gotoremoteaction/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/gotoremoteaction/get_destination/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/gotoremoteaction/get_file/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/gotoremoteaction/get_newwindow/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/gotoremoteaction/gotoremoteaction/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/gotoremoteaction/set_destination/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/gotoremoteaction/set_file/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/gotoremoteaction/set_newwindow/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/gotouriaction/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/gotouriaction/get_uri/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/gotouriaction/gotouriaction/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/gotouriaction/set_uri/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/hideaction/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/hideaction/get_ishidden/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/hideaction/hideaction/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/hideaction/set_ishidden/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/highlightannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/highlightannotation/accept/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/highlightannotation/get_annotationtype/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/highlightannotation/highlightannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/highlightingmode/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/highlightingmodeconverter/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/highlightingmodeconverter/toenum/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/highlightingmodeconverter/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/iannotationvisitor/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/iannotationvisitor/visit/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/iappointment/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/importdataaction/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/importdataaction/get_data/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/importdataaction/set_data/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/inkannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/inkannotation/accept/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/inkannotation/changeafterresize/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/inkannotation/get_annotationtype/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/inkannotation/get_capstyle/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/inkannotation/get_inklist/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/inkannotation/inkannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/inkannotation/set_capstyle/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/inkannotation/set_inklist/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/javascriptaction/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/javascriptaction/get_script/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/javascriptaction/javascriptaction/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/javascriptaction/set_script/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/justification/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/justificationconverter/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/justificationconverter/toenum/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/justificationconverter/toxfdfstring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/launchaction/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/launchaction/get_file/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/launchaction/get_newwindow/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/launchaction/launchaction/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/launchaction/set_file/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/launchaction/set_newwindow/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/launchactionoperation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/launchactionoperationconverter/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/launchactionoperationconverter/stropen/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/launchactionoperationconverter/strprint/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/launchactionoperationconverter/toenum/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/launchactionoperationconverter/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/lightingschemetype/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/lineannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/lineannotation/accept/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/lineannotation/changeafterresize/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/lineannotation/get_annotationtype/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/lineannotation/get_captionoffset/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/lineannotation/get_captionposition/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/lineannotation/get_ending/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/lineannotation/get_endingstyle/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/lineannotation/get_intent/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/lineannotation/get_interiorcolor/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/lineannotation/get_leaderline/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/lineannotation/get_leaderlineextension/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/lineannotation/get_leaderlineoffset/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/lineannotation/get_measure/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/lineannotation/get_showcaption/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/lineannotation/get_starting/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/lineannotation/get_startingstyle/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/lineannotation/lineannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/lineannotation/set_captionoffset/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/lineannotation/set_captionposition/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/lineannotation/set_ending/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/lineannotation/set_endingstyle/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/lineannotation/set_intent/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/lineannotation/set_interiorcolor/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/lineannotation/set_leaderline/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/lineannotation/set_leaderlineextension/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/lineannotation/set_leaderlineoffset/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/lineannotation/set_measure/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/lineannotation/set_showcaption/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/lineannotation/set_starting/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/lineannotation/set_startingstyle/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/lineending/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/lineendingconverter/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/lineendingconverter/toenum/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/lineendingconverter/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/lineintent/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/lineintentconverter/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/lineintentconverter/toenum/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/lineintentconverter/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/lineintentconverter/toxfdfstring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/linkannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/linkannotation/accept/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/linkannotation/get_action/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/linkannotation/get_annotationtype/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/linkannotation/get_destination/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/linkannotation/get_highlighting/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/linkannotation/linkannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/linkannotation/set_action/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/linkannotation/set_destination/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/linkannotation/set_highlighting/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/markupannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/markupannotation/clearstate/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/markupannotation/get_creationdate/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/markupannotation/get_inreplyto/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/markupannotation/get_opacity/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/markupannotation/get_popup/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/markupannotation/get_replytype/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/markupannotation/get_richtext/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/markupannotation/get_subject/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/markupannotation/get_title/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/markupannotation/getstate/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/markupannotation/getstatemodel/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/markupannotation/markupannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/markupannotation/set_inreplyto/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/markupannotation/set_opacity/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/markupannotation/set_popup/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/markupannotation/set_replytype/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/markupannotation/set_richtext/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/markupannotation/set_subject/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/markupannotation/set_title/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/markupannotation/setmarkedstate/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/markupannotation/setreviewstate/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/measure/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/measure/get_angleformat/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/measure/get_areaformat/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/measure/get_distanceformat/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/measure/get_origin/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/measure/get_scaleratio/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/measure/get_slopeformat/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/measure/get_xformat/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/measure/get_xyfactor/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/measure/get_yformat/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/measure/measure/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/measure/set_angleformat/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/measure/set_areaformat/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/measure/set_distanceformat/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/measure/set_origin/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/measure/set_scaleratio/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/measure/set_slopeformat/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/measure/set_xformat/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/measure/set_xyfactor/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/measure/set_yformat/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/mediaclip/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/mediaclipdata/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/mediaclipdata/get_data/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/mediaclipsection/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/mediarendition/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/mediarendition/get_mediaclip/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/movieannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/movieannotation/accept/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/movieannotation/get_annotationtype/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/movieannotation/get_aspect/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/movieannotation/get_file/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/movieannotation/get_poster/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/movieannotation/get_rotate/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/movieannotation/get_title/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/movieannotation/movieannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/movieannotation/set_aspect/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/movieannotation/set_file/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/movieannotation/set_poster/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/movieannotation/set_rotate/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/movieannotation/set_title/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/namedaction/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/namedaction/get_name/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/namedaction/namedaction/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/namedaction/set_name/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/nameddestination/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/nameddestination/get_name/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/nameddestination/nameddestination/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/nameddestination/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pageinformationannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pageinformationannotation/accept/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pageinformationannotation/get_annotationtype/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pageinformationannotation/pageinformationannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dactivation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dannotation/accept/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dannotation/clearimagepreview/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dannotation/get_annotationtype/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dannotation/get_content/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dannotation/get_lightingscheme/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dannotation/get_pdf3dartwork/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dannotation/get_rendermode/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dannotation/get_viewarray/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dannotation/getimagepreview/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dannotation/pdf3dannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dannotation/set_content/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dannotation/setdefaultviewindex/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dannotation/setimagepreview/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dartwork/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dartwork/get_lightingscheme/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dartwork/get_rendermode/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dartwork/get_viewarray/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dartwork/getviewsarray/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dartwork/getviewslist/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dartwork/pdf3dartwork/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dartwork/set_lightingscheme/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dartwork/set_rendermode/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dcontent/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dcontent/get_extension/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dcontent/getasbytearray/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dcontent/getasstream/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dcontent/load/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dcontent/loadasprc/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dcontent/loadasu3d/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dcontent/pdf3dcontent/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dcontent/savetofile/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dcrosssection/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dcrosssection/get_center/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dcrosssection/get_cuttingplanecolor/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dcrosssection/get_cuttingplaneopacity/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dcrosssection/get_cuttingplaneorientation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dcrosssection/get_cuttingplanesintersectioncolor/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dcrosssection/get_visibility/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dcrosssection/pdf3dcrosssection/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dcrosssection/set_center/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dcrosssection/set_cuttingplanecolor/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dcrosssection/set_cuttingplaneopacity/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dcrosssection/set_cuttingplaneorientation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dcrosssection/set_cuttingplanesintersectioncolor/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dcrosssection/set_visibility/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dcrosssectionarray/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dcrosssectionarray/add/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dcrosssectionarray/get_count/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dcrosssectionarray/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dcrosssectionarray/idx_set/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dcrosssectionarray/pdf3dcrosssectionarray/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dcrosssectionarray/removeall/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dcrosssectionarray/removeat/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/get_anglex/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/get_angley/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/get_anglez/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/pdf3dcuttingplaneorientation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/set_anglex/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/set_angley/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/set_anglez/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/artwork/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/blue/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/cad/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/cube/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/day/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/get_type/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/hard/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/headlamp/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/night/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/none/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/pdf3dlightingscheme/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/primary/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/red/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/white/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3drendermode/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3drendermode/boundingbox/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3drendermode/get_type/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3drendermode/getauxiliarycolour/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3drendermode/getcreasevalue/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3drendermode/getfacecolor/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3drendermode/getopacity/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3drendermode/illustration/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3drendermode/pdf3drendermode/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3drendermode/setauxiliarycolour/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3drendermode/setcreasevalue/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3drendermode/setfacecolor/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3drendermode/setopacity/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3drendermode/shadedillustration/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3drendermode/shadedvertices/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3drendermode/shadedwireframe/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3drendermode/solid/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3drendermode/solidoutline/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3drendermode/solidwireframe/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3drendermode/transparent/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3drendermode/transparentboundingbox/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3drendermode/transparentboundingboxoutline/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3drendermode/transparentwareframe/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3drendermode/vertices/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3drendermode/wireframe/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dstream/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dstream/get_content/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dstream/pdf3dstream/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dstream/set_content/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dview/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dview/get_backgroundcolor/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dview/get_cameraorbit/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dview/get_cameraposition/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dview/get_crosssectionsarray/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dview/get_lightingscheme/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dview/get_rendermode/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dview/get_viewname/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dview/pdf3dview/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dview/set_backgroundcolor/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dview/set_cameraorbit/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dview/set_cameraposition/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dview/set_lightingscheme/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dview/set_rendermode/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dview/set_viewname/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dviewarray/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dviewarray/add/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dviewarray/get_count/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dviewarray/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dviewarray/idx_set/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dviewarray/removeall/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdf3dviewarray/removeat/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdfaction/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdfaction/get_next/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdfaction/getecmascriptstring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdfaction/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdfactioncollection/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdfactioncollection/add/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdfactioncollection/delete/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdfactioncollection/get_count/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdfactioncollection/getenumerator/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/pdfactioncollection/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/polyannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/polyannotation/changeafterresize/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/polyannotation/get_endingstyle/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/polyannotation/get_intent/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/polyannotation/get_interiorcolor/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/polyannotation/get_measure/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/polyannotation/get_startingstyle/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/polyannotation/get_vertices/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/polyannotation/set_endingstyle/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/polyannotation/set_intent/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/polyannotation/set_interiorcolor/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/polyannotation/set_measure/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/polyannotation/set_startingstyle/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/polyannotation/set_vertices/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/polygonannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/polygonannotation/accept/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/polygonannotation/get_annotationtype/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/polygonannotation/polygonannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/polyintent/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/polyintentconverter/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/polyintentconverter/toenum/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/polyintentconverter/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/polyintentconverter/toxfdfstring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/polylineannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/polylineannotation/accept/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/polylineannotation/get_annotationtype/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/polylineannotation/polylineannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/popupannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/popupannotation/accept/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/popupannotation/get_annotationtype/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/popupannotation/get_open/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/popupannotation/get_parent/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/popupannotation/popupannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/popupannotation/set_open/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/popupannotation/set_parent/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/predefinedaction/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/predefinedactionconverter/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/predefinedactionconverter/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/printermarkannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/printermarkannotation/addprintermarks/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/printermarkcornerposition/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/printermarksideposition/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/printermarkskind/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/printermarkskindextensions/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/printermarkskindextensions/hasflagfast/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/printermarkskindextensions/printermarkskindextensions/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/redactionannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/redactionannotation/accept/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/redactionannotation/get_annotationtype/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/redactionannotation/get_bordercolor/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/redactionannotation/get_defaultappearance/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/redactionannotation/get_fillcolor/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/redactionannotation/get_fontsize/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/redactionannotation/get_overlaytext/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/redactionannotation/get_quadpoint/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/redactionannotation/get_repeat/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/redactionannotation/get_textalignment/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/redactionannotation/redact/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/redactionannotation/redactionannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/redactionannotation/set_bordercolor/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/redactionannotation/set_defaultappearance/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/redactionannotation/set_fillcolor/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/redactionannotation/set_fontsize/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/redactionannotation/set_overlaytext/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/redactionannotation/set_quadpoint/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/redactionannotation/set_repeat/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/redactionannotation/set_textalignment/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/registrationmarkannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/registrationmarkannotation/accept/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/registrationmarkannotation/get_annotationtype/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/registrationmarkannotation/get_position/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/registrationmarkannotation/registrationmarkannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/registrationmarkannotation/set_position/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/rendermodetype/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/rendition/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/rendition/get_name/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/rendition/get_renditiontype/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/rendition/set_name/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/renditionaction/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/renditionaction/get_javascript/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/renditionaction/get_rendition/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/renditionaction/get_renditionoperation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/renditionaction/set_javascript/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/renditionaction/set_renditionoperation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/renditionoperation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/renditiontype/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/replytype/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/replytypeconverter/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/replytypeconverter/toenum/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/replytypeconverter/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/replytypeconverter/toxfdfstring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/richmediaannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/richmediaannotation/accept/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/richmediaannotation/addcustomdata/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/richmediaannotation/get_activateon/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/richmediaannotation/get_annotationtype/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/richmediaannotation/get_content/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/richmediaannotation/get_customflashvariables/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/richmediaannotation/get_customplayer/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/richmediaannotation/get_type/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/richmediaannotation/richmediaannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/richmediaannotation/set_activateon/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/richmediaannotation/set_customflashvariables/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/richmediaannotation/set_customplayer/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/richmediaannotation/set_type/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/richmediaannotation/setcontent/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/richmediaannotation/setposter/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/richmediaannotation/update/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/screenannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/screenannotation/accept/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/screenannotation/get_action/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/screenannotation/get_annotationtype/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/screenannotation/get_title/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/screenannotation/screenannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/screenannotation/set_title/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/selectorrendition/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/selectorrendition/get_renditions/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/soundannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/soundannotation/accept/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/soundannotation/get_annotationtype/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/soundannotation/get_icon/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/soundannotation/get_sounddata/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/soundannotation/set_icon/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/soundannotation/soundannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/sounddata/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/sounddata/get_bits/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/sounddata/get_channels/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/sounddata/get_contents/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/sounddata/get_encoding/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/sounddata/get_rate/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/sounddata/set_bits/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/sounddata/set_channels/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/sounddata/set_encoding/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/sounddata/set_rate/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/soundencoding/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/soundencodingconverter/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/soundencodingconverter/toenum/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/soundencodingconverter/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/soundencodingconverter/toxfdfstring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/soundicon/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/soundiconconverter/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/soundiconconverter/toenum/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/soundiconconverter/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/soundsampledata/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/soundsampledata/defaultencodingformat/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/soundsampledata/defaultofbitsperchannel/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/soundsampledata/defaultofsoundchannels/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/soundsampledata/defaultsamplingrate/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/soundsampledata/get_bitsperchannel/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/soundsampledata/get_encodingformat/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/soundsampledata/get_numberofsoundchannels/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/soundsampledata/get_samplingrate/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/soundsampledata/set_bitsperchannel/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/soundsampledata/set_encodingformat/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/soundsampledata/set_numberofsoundchannels/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/soundsampledata/set_samplingrate/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/soundsampledata/soundsampledata/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/soundsampledataencodingformat/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/squareannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/squareannotation/accept/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/squareannotation/get_annotationtype/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/squareannotation/squareannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/squigglyannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/squigglyannotation/accept/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/squigglyannotation/get_annotationtype/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/squigglyannotation/squigglyannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/stampannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/stampannotation/accept/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/stampannotation/get_annotationtype/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/stampannotation/get_icon/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/stampannotation/get_image/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/stampannotation/set_icon/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/stampannotation/set_image/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/stampannotation/stampannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/stampicon/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/stampiconconverter/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/stampiconconverter/toenum/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/stampiconconverter/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/strikeoutannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/strikeoutannotation/accept/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/strikeoutannotation/get_annotationtype/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/strikeoutannotation/strikeoutannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/submitformaction/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/submitformaction/canonicalformat/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/submitformaction/embedform/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/submitformaction/exclfkey/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/submitformaction/exclnonuserannots/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/submitformaction/exclude/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/submitformaction/exportformat/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/submitformaction/get_flags/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/submitformaction/get_url/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/submitformaction/getmethod/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/submitformaction/includeannotations/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/submitformaction/includeappendsaves/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/submitformaction/includenovaluefields/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/submitformaction/set_flags/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/submitformaction/set_url/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/submitformaction/submitcoordinates/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/submitformaction/submitformaction/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/submitformaction/submitpdf/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/submitformaction/xfdf/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/textalignment/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/textannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/textannotation/accept/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/textannotation/changeafterresize/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/textannotation/get_annotationtype/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/textannotation/get_icon/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/textannotation/get_open/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/textannotation/set_icon/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/textannotation/set_open/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/textannotation/textannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/texticon/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/texticonconverter/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/texticonconverter/toenum/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/texticonconverter/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/textmarkupannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/textmarkupannotation/changeafterresize/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/textmarkupannotation/get_quadpoints/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/textmarkupannotation/getmarkedtext/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/textmarkupannotation/getmarkedtextfragments/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/textmarkupannotation/set_quadpoints/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/textstyle/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/textstyle/get_alignment/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/textstyle/get_color/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/textstyle/get_fontname/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/textstyle/get_fontsize/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/textstyle/get_horizontalalignment/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/textstyle/set_alignment/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/textstyle/set_color/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/textstyle/set_fontname/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/textstyle/set_fontsize/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/textstyle/set_horizontalalignment/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/textstyle/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/trimmarkannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/trimmarkannotation/accept/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/trimmarkannotation/get_annotationtype/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/trimmarkannotation/trimmarkannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/underlineannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/underlineannotation/accept/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/underlineannotation/get_annotationtype/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/underlineannotation/underlineannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/watermarkannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/watermarkannotation/accept/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/watermarkannotation/changeafterresize/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/watermarkannotation/get_annotationtype/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/watermarkannotation/get_fixedprint/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/watermarkannotation/get_opacity/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/watermarkannotation/set_opacity/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/watermarkannotation/settext/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/watermarkannotation/settextandstate/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/watermarkannotation/watermarkannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/widgetannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/widgetannotation/accept/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/widgetannotation/get_actions/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/widgetannotation/get_annotationtype/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/widgetannotation/get_defaultappearance/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/widgetannotation/get_exportable/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/widgetannotation/get_highlighting/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/widgetannotation/get_onactivated/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/widgetannotation/get_parent/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/widgetannotation/get_readonly/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/widgetannotation/get_required/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/widgetannotation/getcheckedstatename/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/widgetannotation/set_defaultappearance/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/widgetannotation/set_exportable/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/widgetannotation/set_highlighting/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/widgetannotation/set_onactivated/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/widgetannotation/set_readonly/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/widgetannotation/set_required/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/widgetannotation/widgetannotation/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/xfdfreader/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/xfdfreader/getelements/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/xfdfreader/readannotations/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/xfdfreader/readfields/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/xyzexplicitdestination/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/xyzexplicitdestination/createdestination/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/xyzexplicitdestination/createdestinationtoupperleftcorner/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/xyzexplicitdestination/get_left/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/xyzexplicitdestination/get_top/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/xyzexplicitdestination/get_zoom/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/xyzexplicitdestination/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.annotations/xyzexplicitdestination/xyzexplicitdestination/_index.md create mode 100644 english/cpp/aspose.pdf.collections/_index.md create mode 100644 english/cpp/aspose.pdf.collections/asposehashdictionary/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.diff/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.diff/diffoperation/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.diff/diffoperation/equals/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.diff/diffoperation/get_operation/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.diff/diffoperation/get_text/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.diff/diffoperation/gethashcode/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.diff/diffoperation/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.diff/operation/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.graphicalcomparison/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/comparedocumentstoimages/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/comparedocumentstopdf/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/comparepagestoimage/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/comparepagestopdf/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/get_color/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/get_resolution/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/get_threshold/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/getdifference/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/graphicalpdfcomparer/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/set_color/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/set_resolution/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/set_threshold/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.graphicalcomparison/imagesdifference/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.graphicalcomparison/imagesdifference/differencetoimage/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.graphicalcomparison/imagesdifference/dispose/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.graphicalcomparison/imagesdifference/get_difference/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.graphicalcomparison/imagesdifference/get_height/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.graphicalcomparison/imagesdifference/get_sourceimage/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.graphicalcomparison/imagesdifference/get_stride/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.graphicalcomparison/imagesdifference/getdestinationimage/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.outputgenerator/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/generateoutput/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/get_deletestyle/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/get_equalstyle/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/get_insertstyle/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/get_strikethroughdeleted/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/htmldiffoutputgenerator/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/set_deletestyle/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/set_equalstyle/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/set_insertstyle/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/set_strikethroughdeleted/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.outputgenerator/ifileoutputgenerator/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.outputgenerator/ifileoutputgenerator/generateoutput/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.outputgenerator/istringoutputgenerator/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.outputgenerator/istringoutputgenerator/generateoutput/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.outputgenerator/markdowndiffoutputgenerator/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.outputgenerator/markdowndiffoutputgenerator/generateoutput/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.outputgenerator/markdowndiffoutputgenerator/markdowndiffoutputgenerator/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/get_deletedstyle/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/get_equalstyle/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/get_insertedstyle/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/get_strikethroughdeleted/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/outputtextstyle/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/set_deletedstyle/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/set_equalstyle/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/set_insertedstyle/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/set_strikethroughdeleted/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.outputgenerator/pdfoutputgenerator/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.outputgenerator/pdfoutputgenerator/generateoutput/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.outputgenerator/pdfoutputgenerator/pdfoutputgenerator/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.outputgenerator/textstyle/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.outputgenerator/textstyle/get_backgroundcolor/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.outputgenerator/textstyle/get_color/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.outputgenerator/textstyle/set_backgroundcolor/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.outputgenerator/textstyle/set_color/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.sidebysidecomparison/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.sidebysidecomparison/comparisonmode/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/get_additionalchangemarks/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/get_comparisonarea1/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/get_comparisonarea2/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/get_comparisonmode/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/get_excludeareas1/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/get_excludeareas2/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/get_excludetables/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/set_additionalchangemarks/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/set_comparisonarea1/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/set_comparisonarea2/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/set_comparisonmode/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/set_excludeareas1/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/set_excludeareas2/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/set_excludetables/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/sidebysidecomparisonoptions/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidepdfcomparer/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidepdfcomparer/compare/_index.md create mode 100644 english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidepdfcomparer/sidebysidepdfcomparer/_index.md create mode 100644 english/cpp/aspose.pdf.comparison/_index.md create mode 100644 english/cpp/aspose.pdf.comparison/comparisonoptions/_index.md create mode 100644 english/cpp/aspose.pdf.comparison/comparisonoptions/comparisonoptions/_index.md create mode 100644 english/cpp/aspose.pdf.comparison/comparisonoptions/get_editoperationsorder/_index.md create mode 100644 english/cpp/aspose.pdf.comparison/comparisonoptions/get_excludeareas1/_index.md create mode 100644 english/cpp/aspose.pdf.comparison/comparisonoptions/get_excludeareas2/_index.md create mode 100644 english/cpp/aspose.pdf.comparison/comparisonoptions/get_excludetables/_index.md create mode 100644 english/cpp/aspose.pdf.comparison/comparisonoptions/get_extractionarea/_index.md create mode 100644 english/cpp/aspose.pdf.comparison/comparisonoptions/set_editoperationsorder/_index.md create mode 100644 english/cpp/aspose.pdf.comparison/comparisonoptions/set_excludeareas1/_index.md create mode 100644 english/cpp/aspose.pdf.comparison/comparisonoptions/set_excludeareas2/_index.md create mode 100644 english/cpp/aspose.pdf.comparison/comparisonoptions/set_excludetables/_index.md create mode 100644 english/cpp/aspose.pdf.comparison/comparisonoptions/set_extractionarea/_index.md create mode 100644 english/cpp/aspose.pdf.comparison/comparisonstatisticsbuilder/_index.md create mode 100644 english/cpp/aspose.pdf.comparison/comparisonstatisticsbuilder/buildstatistics/_index.md create mode 100644 english/cpp/aspose.pdf.comparison/documentcomparisonstatistics/_index.md create mode 100644 english/cpp/aspose.pdf.comparison/documentcomparisonstatistics/get_pagesstatistics/_index.md create mode 100644 english/cpp/aspose.pdf.comparison/editoperationsorder/_index.md create mode 100644 english/cpp/aspose.pdf.comparison/textitemcomparisonstatistics/_index.md create mode 100644 english/cpp/aspose.pdf.comparison/textitemcomparisonstatistics/get_deletedcharacterscount/_index.md create mode 100644 english/cpp/aspose.pdf.comparison/textitemcomparisonstatistics/get_deleteoperationscount/_index.md create mode 100644 english/cpp/aspose.pdf.comparison/textitemcomparisonstatistics/get_insertedcharacterscount/_index.md create mode 100644 english/cpp/aspose.pdf.comparison/textitemcomparisonstatistics/get_insertoperationscount/_index.md create mode 100644 english/cpp/aspose.pdf.comparison/textitemcomparisonstatistics/get_totalcharacters/_index.md create mode 100644 english/cpp/aspose.pdf.comparison/textitemcomparisonstatistics/textitemcomparisonstatistics/_index.md create mode 100644 english/cpp/aspose.pdf.comparison/textpdfcomparer/_index.md create mode 100644 english/cpp/aspose.pdf.comparison/textpdfcomparer/assemblydestinationpagetext/_index.md create mode 100644 english/cpp/aspose.pdf.comparison/textpdfcomparer/assemblysourcepagetext/_index.md create mode 100644 english/cpp/aspose.pdf.comparison/textpdfcomparer/comparedocumentspagebypage/_index.md create mode 100644 english/cpp/aspose.pdf.comparison/textpdfcomparer/compareflatdocuments/_index.md create mode 100644 english/cpp/aspose.pdf.comparison/textpdfcomparer/comparepages/_index.md create mode 100644 english/cpp/aspose.pdf.comparison/textpdfcomparer/createcomparisonstatistics/_index.md create mode 100644 english/cpp/aspose.pdf.devices/_index.md create mode 100644 english/cpp/aspose.pdf.devices/bmpdevice/_index.md create mode 100644 english/cpp/aspose.pdf.devices/bmpdevice/bmpdevice/_index.md create mode 100644 english/cpp/aspose.pdf.devices/bmpdevice/process/_index.md create mode 100644 english/cpp/aspose.pdf.devices/colordepth/_index.md create mode 100644 english/cpp/aspose.pdf.devices/compressiontype/_index.md create mode 100644 english/cpp/aspose.pdf.devices/device/_index.md create mode 100644 english/cpp/aspose.pdf.devices/dicomdevice/_index.md create mode 100644 english/cpp/aspose.pdf.devices/dicomdevice/dicomdevice/_index.md create mode 100644 english/cpp/aspose.pdf.devices/dicomdevice/process/_index.md create mode 100644 english/cpp/aspose.pdf.devices/documentdevice/_index.md create mode 100644 english/cpp/aspose.pdf.devices/documentdevice/documentdevice/_index.md create mode 100644 english/cpp/aspose.pdf.devices/documentdevice/process/_index.md create mode 100644 english/cpp/aspose.pdf.devices/emfdevice/_index.md create mode 100644 english/cpp/aspose.pdf.devices/emfdevice/emfdevice/_index.md create mode 100644 english/cpp/aspose.pdf.devices/emfdevice/process/_index.md create mode 100644 english/cpp/aspose.pdf.devices/formpresentationmode/_index.md create mode 100644 english/cpp/aspose.pdf.devices/gifdevice/_index.md create mode 100644 english/cpp/aspose.pdf.devices/gifdevice/gifdevice/_index.md create mode 100644 english/cpp/aspose.pdf.devices/gifdevice/process/_index.md create mode 100644 english/cpp/aspose.pdf.devices/imagedevice/_index.md create mode 100644 english/cpp/aspose.pdf.devices/imagedevice/get_coordinatetype/_index.md create mode 100644 english/cpp/aspose.pdf.devices/imagedevice/get_formpresentationmode/_index.md create mode 100644 english/cpp/aspose.pdf.devices/imagedevice/get_height/_index.md create mode 100644 english/cpp/aspose.pdf.devices/imagedevice/get_renderingoptions/_index.md create mode 100644 english/cpp/aspose.pdf.devices/imagedevice/get_resolution/_index.md create mode 100644 english/cpp/aspose.pdf.devices/imagedevice/get_width/_index.md create mode 100644 english/cpp/aspose.pdf.devices/imagedevice/imagedevice/_index.md create mode 100644 english/cpp/aspose.pdf.devices/imagedevice/set_coordinatetype/_index.md create mode 100644 english/cpp/aspose.pdf.devices/imagedevice/set_formpresentationmode/_index.md create mode 100644 english/cpp/aspose.pdf.devices/imagedevice/set_renderingoptions/_index.md create mode 100644 english/cpp/aspose.pdf.devices/jpegdevice/_index.md create mode 100644 english/cpp/aspose.pdf.devices/jpegdevice/jpegdevice/_index.md create mode 100644 english/cpp/aspose.pdf.devices/jpegdevice/process/_index.md create mode 100644 english/cpp/aspose.pdf.devices/margins/_index.md create mode 100644 english/cpp/aspose.pdf.devices/margins/get_bottom/_index.md create mode 100644 english/cpp/aspose.pdf.devices/margins/get_left/_index.md create mode 100644 english/cpp/aspose.pdf.devices/margins/get_right/_index.md create mode 100644 english/cpp/aspose.pdf.devices/margins/get_top/_index.md create mode 100644 english/cpp/aspose.pdf.devices/margins/margins/_index.md create mode 100644 english/cpp/aspose.pdf.devices/margins/set_bottom/_index.md create mode 100644 english/cpp/aspose.pdf.devices/margins/set_left/_index.md create mode 100644 english/cpp/aspose.pdf.devices/margins/set_right/_index.md create mode 100644 english/cpp/aspose.pdf.devices/margins/set_top/_index.md create mode 100644 english/cpp/aspose.pdf.devices/pagedevice/_index.md create mode 100644 english/cpp/aspose.pdf.devices/pagedevice/process/_index.md create mode 100644 english/cpp/aspose.pdf.devices/pngdevice/_index.md create mode 100644 english/cpp/aspose.pdf.devices/pngdevice/get_transparentbackground/_index.md create mode 100644 english/cpp/aspose.pdf.devices/pngdevice/pngdevice/_index.md create mode 100644 english/cpp/aspose.pdf.devices/pngdevice/process/_index.md create mode 100644 english/cpp/aspose.pdf.devices/pngdevice/set_transparentbackground/_index.md create mode 100644 english/cpp/aspose.pdf.devices/resolution/_index.md create mode 100644 english/cpp/aspose.pdf.devices/resolution/get_x/_index.md create mode 100644 english/cpp/aspose.pdf.devices/resolution/get_y/_index.md create mode 100644 english/cpp/aspose.pdf.devices/resolution/resolution/_index.md create mode 100644 english/cpp/aspose.pdf.devices/resolution/set_x/_index.md create mode 100644 english/cpp/aspose.pdf.devices/resolution/set_y/_index.md create mode 100644 english/cpp/aspose.pdf.devices/shapetype/_index.md create mode 100644 english/cpp/aspose.pdf.devices/textdevice/_index.md create mode 100644 english/cpp/aspose.pdf.devices/textdevice/get_encoding/_index.md create mode 100644 english/cpp/aspose.pdf.devices/textdevice/get_extractionoptions/_index.md create mode 100644 english/cpp/aspose.pdf.devices/textdevice/process/_index.md create mode 100644 english/cpp/aspose.pdf.devices/textdevice/set_encoding/_index.md create mode 100644 english/cpp/aspose.pdf.devices/textdevice/set_extractionoptions/_index.md create mode 100644 english/cpp/aspose.pdf.devices/textdevice/textdevice/_index.md create mode 100644 english/cpp/aspose.pdf.devices/thumbnaildevice/_index.md create mode 100644 english/cpp/aspose.pdf.devices/thumbnaildevice/process/_index.md create mode 100644 english/cpp/aspose.pdf.devices/thumbnaildevice/thumbnaildevice/_index.md create mode 100644 english/cpp/aspose.pdf.devices/tiffdevice/_index.md create mode 100644 english/cpp/aspose.pdf.devices/tiffdevice/binarizebradley/_index.md create mode 100644 english/cpp/aspose.pdf.devices/tiffdevice/get_formpresentationmode/_index.md create mode 100644 english/cpp/aspose.pdf.devices/tiffdevice/get_height/_index.md create mode 100644 english/cpp/aspose.pdf.devices/tiffdevice/get_renderingoptions/_index.md create mode 100644 english/cpp/aspose.pdf.devices/tiffdevice/get_resolution/_index.md create mode 100644 english/cpp/aspose.pdf.devices/tiffdevice/get_settings/_index.md create mode 100644 english/cpp/aspose.pdf.devices/tiffdevice/get_width/_index.md create mode 100644 english/cpp/aspose.pdf.devices/tiffdevice/process/_index.md create mode 100644 english/cpp/aspose.pdf.devices/tiffdevice/set_formpresentationmode/_index.md create mode 100644 english/cpp/aspose.pdf.devices/tiffdevice/set_renderingoptions/_index.md create mode 100644 english/cpp/aspose.pdf.devices/tiffdevice/tiffdevice/_index.md create mode 100644 english/cpp/aspose.pdf.devices/tiffsettings/_index.md create mode 100644 english/cpp/aspose.pdf.devices/tiffsettings/get_brightness/_index.md create mode 100644 english/cpp/aspose.pdf.devices/tiffsettings/get_compression/_index.md create mode 100644 english/cpp/aspose.pdf.devices/tiffsettings/get_coordinatetype/_index.md create mode 100644 english/cpp/aspose.pdf.devices/tiffsettings/get_depth/_index.md create mode 100644 english/cpp/aspose.pdf.devices/tiffsettings/get_margins/_index.md create mode 100644 english/cpp/aspose.pdf.devices/tiffsettings/get_shape/_index.md create mode 100644 english/cpp/aspose.pdf.devices/tiffsettings/get_skipblankpages/_index.md create mode 100644 english/cpp/aspose.pdf.devices/tiffsettings/set_brightness/_index.md create mode 100644 english/cpp/aspose.pdf.devices/tiffsettings/set_compression/_index.md create mode 100644 english/cpp/aspose.pdf.devices/tiffsettings/set_coordinatetype/_index.md create mode 100644 english/cpp/aspose.pdf.devices/tiffsettings/set_depth/_index.md create mode 100644 english/cpp/aspose.pdf.devices/tiffsettings/set_shape/_index.md create mode 100644 english/cpp/aspose.pdf.devices/tiffsettings/set_skipblankpages/_index.md create mode 100644 english/cpp/aspose.pdf.devices/tiffsettings/tiffsettings/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/arc/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/arc/arc/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/arc/get_alpha/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/arc/get_beta/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/arc/get_posx/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/arc/get_posy/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/arc/get_radius/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/arc/set_alpha/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/arc/set_beta/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/arc/set_posx/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/arc/set_posy/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/arc/set_radius/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/circle/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/circle/circle/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/circle/get_posx/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/circle/get_posy/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/circle/get_radius/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/circle/set_posx/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/circle/set_posy/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/circle/set_radius/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/curve/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/curve/curve/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/curve/get_positionarray/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/curve/set_positionarray/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/ellipse/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/ellipse/ellipse/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/ellipse/get_bottom/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/ellipse/get_height/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/ellipse/get_left/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/ellipse/get_width/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/ellipse/set_bottom/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/ellipse/set_height/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/ellipse/set_left/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/ellipse/set_width/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/gradientaxialshading/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/gradientaxialshading/get_end/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/gradientaxialshading/get_endcolor/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/gradientaxialshading/get_start/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/gradientaxialshading/get_startcolor/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/gradientaxialshading/gradientaxialshading/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/gradientaxialshading/set_end/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/gradientaxialshading/set_endcolor/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/gradientaxialshading/set_start/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/gradientaxialshading/set_startcolor/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/gradientradialshading/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/gradientradialshading/get_end/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/gradientradialshading/get_endcolor/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/gradientradialshading/get_endingradius/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/gradientradialshading/get_start/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/gradientradialshading/get_startcolor/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/gradientradialshading/get_startingradius/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/gradientradialshading/gradientradialshading/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/gradientradialshading/set_end/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/gradientradialshading/set_endcolor/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/gradientradialshading/set_endingradius/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/gradientradialshading/set_start/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/gradientradialshading/set_startcolor/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/gradientradialshading/set_startingradius/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/graph/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/graph/clone/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/graph/get_border/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/graph/get_graphinfo/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/graph/get_height/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/graph/get_ischangeposition/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/graph/get_left/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/graph/get_shapes/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/graph/get_title/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/graph/get_top/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/graph/get_width/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/graph/graph/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/graph/set_border/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/graph/set_graphinfo/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/graph/set_height/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/graph/set_ischangeposition/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/graph/set_left/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/graph/set_shapes/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/graph/set_title/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/graph/set_top/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/graph/set_width/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/imageformat/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/line/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/line/get_positionarray/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/line/line/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/line/set_positionarray/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/path/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/path/get_shapes/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/path/path/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/patterncolorspace/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/patterncolorspace/patterncolorspace/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/rectangle/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/rectangle/get_bottom/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/rectangle/get_height/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/rectangle/get_left/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/rectangle/get_roundedcornerradius/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/rectangle/get_width/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/rectangle/rectangle/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/rectangle/set_bottom/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/rectangle/set_height/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/rectangle/set_left/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/rectangle/set_roundedcornerradius/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/rectangle/set_width/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/shape/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/shape/get_graphinfo/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/shape/get_text/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/shape/set_graphinfo/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/shape/set_text/_index.md create mode 100644 english/cpp/aspose.pdf.drawing/shape/shape/_index.md create mode 100644 english/cpp/aspose.pdf.engine.commondata.text.cmaps/_index.md create mode 100644 english/cpp/aspose.pdf.engine.commondata.text.cmaps/icmapcodespacerange/_index.md create mode 100644 english/cpp/aspose.pdf.engine.commondata.text.cmaps/icmapcodespacerange/getallbytes/_index.md create mode 100644 english/cpp/aspose.pdf.engine.commondata.text.cmaps/icmapcodespacerange/getsize/_index.md create mode 100644 english/cpp/aspose.pdf.engine.commondata.text.cmaps/icmapcodespacerange/haspartialmatch/_index.md create mode 100644 english/cpp/aspose.pdf.engine.commondata.text.cmaps/icmapcodespacerange/isinrange/_index.md create mode 100644 english/cpp/aspose.pdf.engine.commondata.text.fonts.utilities/_index.md create mode 100644 english/cpp/aspose.pdf.engine.commondata.text.fonts.utilities/fontsremover/_index.md create mode 100644 english/cpp/aspose.pdf.engine.commondata/_index.md create mode 100644 english/cpp/aspose.pdf.engine.commondata/idocumentsecondarystrategies/_index.md create mode 100644 english/cpp/aspose.pdf.engine.commondata/idocumentsecondarystrategies/get_simplefontencodingrule/_index.md create mode 100644 english/cpp/aspose.pdf.engine.data/_index.md create mode 100644 english/cpp/aspose.pdf.engine.data/ipdfstringextractioninfo/_index.md create mode 100644 english/cpp/aspose.pdf.engine.data/ipdfstringextractioninfo/get_rawcodes/_index.md create mode 100644 english/cpp/aspose.pdf.engine.filters/_index.md create mode 100644 english/cpp/aspose.pdf.engine.filters/filtertype/_index.md create mode 100644 english/cpp/aspose.pdf.engine.filters/filtertypeconverter/_index.md create mode 100644 english/cpp/aspose.pdf.engine.filters/filtertypeconverter/toenum/_index.md create mode 100644 english/cpp/aspose.pdf.engine.filters/filtertypeconverter/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/_index.md create mode 100644 english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportfieldsoptions/_index.md create mode 100644 english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportfieldsoptions/exportfieldsoptions/_index.md create mode 100644 english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportfieldsoptions/get_exportpasswordvalue/_index.md create mode 100644 english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportfieldsoptions/set_exportpasswordvalue/_index.md create mode 100644 english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportfieldstojsonoptions/_index.md create mode 100644 english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportfieldstojsonoptions/exportfieldstojsonoptions/_index.md create mode 100644 english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportfieldstojsonoptions/get_writeindented/_index.md create mode 100644 english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportfieldstojsonoptions/set_writeindented/_index.md create mode 100644 english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/_index.md create mode 100644 english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/appearancedobjectnotimporting/_index.md create mode 100644 english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/appearancennotpresented/_index.md create mode 100644 english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/appearancerobjectnotimporting/_index.md create mode 100644 english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/barcodesymbologyvaluenotvalid/_index.md create mode 100644 english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/exportimportmessages/_index.md create mode 100644 english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/notimplemented/_index.md create mode 100644 english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/pageindexisnotset/_index.md create mode 100644 english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/pageisnull/_index.md create mode 100644 english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/pagenotfoundindocument/_index.md create mode 100644 english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/partialnameisnotset/_index.md create mode 100644 english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/rectangleimporterror/_index.md create mode 100644 english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/rectangleisnotset/_index.md create mode 100644 english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/rectnotpresented/_index.md create mode 100644 english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/supportexportonly14standardfonts/_index.md create mode 100644 english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/unknownexporterror/_index.md create mode 100644 english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/unknownfieldtype/_index.md create mode 100644 english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/unknownimporterror/_index.md create mode 100644 english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/fieldserializationresult/_index.md create mode 100644 english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/fieldserializationresult/get_errormessages/_index.md create mode 100644 english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/fieldserializationresult/get_fieldfullname/_index.md create mode 100644 english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/fieldserializationresult/get_fieldserializationstatus/_index.md create mode 100644 english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/fieldserializationresult/get_warningmessages/_index.md create mode 100644 english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/fieldserializationstatus/_index.md create mode 100644 english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/importfieldsoptions/_index.md create mode 100644 english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/importfieldstojsonoptions/_index.md create mode 100644 english/cpp/aspose.pdf.facades/_index.md create mode 100644 english/cpp/aspose.pdf.facades/algorithm/_index.md create mode 100644 english/cpp/aspose.pdf.facades/autofiller/_index.md create mode 100644 english/cpp/aspose.pdf.facades/autofiller/autofiller/_index.md create mode 100644 english/cpp/aspose.pdf.facades/autofiller/bindpdf/_index.md create mode 100644 english/cpp/aspose.pdf.facades/autofiller/close/_index.md create mode 100644 english/cpp/aspose.pdf.facades/autofiller/dispose/_index.md create mode 100644 english/cpp/aspose.pdf.facades/autofiller/get_basicfilename/_index.md create mode 100644 english/cpp/aspose.pdf.facades/autofiller/get_generatingpath/_index.md create mode 100644 english/cpp/aspose.pdf.facades/autofiller/get_inputfilename/_index.md create mode 100644 english/cpp/aspose.pdf.facades/autofiller/get_inputstream/_index.md create mode 100644 english/cpp/aspose.pdf.facades/autofiller/get_outputfilename/_index.md create mode 100644 english/cpp/aspose.pdf.facades/autofiller/get_outputstream/_index.md create mode 100644 english/cpp/aspose.pdf.facades/autofiller/get_outputstreams/_index.md create mode 100644 english/cpp/aspose.pdf.facades/autofiller/save/_index.md create mode 100644 english/cpp/aspose.pdf.facades/autofiller/set_basicfilename/_index.md create mode 100644 english/cpp/aspose.pdf.facades/autofiller/set_generatingpath/_index.md create mode 100644 english/cpp/aspose.pdf.facades/autofiller/set_inputfilename/_index.md create mode 100644 english/cpp/aspose.pdf.facades/autofiller/set_inputstream/_index.md create mode 100644 english/cpp/aspose.pdf.facades/autofiller/set_outputfilename/_index.md create mode 100644 english/cpp/aspose.pdf.facades/autofiller/set_outputstream/_index.md create mode 100644 english/cpp/aspose.pdf.facades/autofiller/set_outputstreams/_index.md create mode 100644 english/cpp/aspose.pdf.facades/autofiller/set_unflattenfields/_index.md create mode 100644 english/cpp/aspose.pdf.facades/autorotatemode/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bdcproperties/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bdcproperties/bdcproperties/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bdcproperties/get_e/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bdcproperties/get_lang/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bdcproperties/get_mcid/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bdcproperties/set_e/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bdcproperties/set_lang/_index.md create mode 100644 english/cpp/aspose.pdf.facades/blendingcolorspace/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bookmark/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bookmark/bookmark/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bookmark/compareto/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bookmark/get_action/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bookmark/get_boldflag/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bookmark/get_childitem/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bookmark/get_childitems/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bookmark/get_destination/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bookmark/get_italicflag/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bookmark/get_level/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bookmark/get_open/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bookmark/get_pagedisplay/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bookmark/get_pagedisplay_bottom/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bookmark/get_pagedisplay_left/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bookmark/get_pagedisplay_right/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bookmark/get_pagedisplay_top/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bookmark/get_pagedisplay_zoom/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bookmark/get_pagenumber/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bookmark/get_remotefile/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bookmark/get_title/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bookmark/get_titlecolor/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bookmark/set_action/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bookmark/set_boldflag/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bookmark/set_childitem/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bookmark/set_childitems/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bookmark/set_destination/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bookmark/set_italicflag/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bookmark/set_level/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bookmark/set_open/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bookmark/set_pagedisplay/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bookmark/set_pagedisplay_bottom/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bookmark/set_pagedisplay_left/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bookmark/set_pagedisplay_right/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bookmark/set_pagedisplay_top/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bookmark/set_pagedisplay_zoom/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bookmark/set_pagenumber/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bookmark/set_remotefile/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bookmark/set_title/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bookmark/set_titlecolor/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bookmarks/_index.md create mode 100644 english/cpp/aspose.pdf.facades/bookmarks/settemplateweakptr/_index.md create mode 100644 english/cpp/aspose.pdf.facades/datatype/_index.md create mode 100644 english/cpp/aspose.pdf.facades/defaultmetadataproperties/_index.md create mode 100644 english/cpp/aspose.pdf.facades/documentprivilege/_index.md create mode 100644 english/cpp/aspose.pdf.facades/documentprivilege/compareto/_index.md create mode 100644 english/cpp/aspose.pdf.facades/documentprivilege/get_allowall/_index.md create mode 100644 english/cpp/aspose.pdf.facades/documentprivilege/get_allowassembly/_index.md create mode 100644 english/cpp/aspose.pdf.facades/documentprivilege/get_allowcopy/_index.md create mode 100644 english/cpp/aspose.pdf.facades/documentprivilege/get_allowdegradedprinting/_index.md create mode 100644 english/cpp/aspose.pdf.facades/documentprivilege/get_allowfillin/_index.md create mode 100644 english/cpp/aspose.pdf.facades/documentprivilege/get_allowmodifyannotations/_index.md create mode 100644 english/cpp/aspose.pdf.facades/documentprivilege/get_allowmodifycontents/_index.md create mode 100644 english/cpp/aspose.pdf.facades/documentprivilege/get_allowprint/_index.md create mode 100644 english/cpp/aspose.pdf.facades/documentprivilege/get_allowscreenreaders/_index.md create mode 100644 english/cpp/aspose.pdf.facades/documentprivilege/get_assembly/_index.md create mode 100644 english/cpp/aspose.pdf.facades/documentprivilege/get_copy/_index.md create mode 100644 english/cpp/aspose.pdf.facades/documentprivilege/get_degradedprinting/_index.md create mode 100644 english/cpp/aspose.pdf.facades/documentprivilege/get_fillin/_index.md create mode 100644 english/cpp/aspose.pdf.facades/documentprivilege/get_forbidall/_index.md create mode 100644 english/cpp/aspose.pdf.facades/documentprivilege/get_modifyannotations/_index.md create mode 100644 english/cpp/aspose.pdf.facades/documentprivilege/get_modifycontents/_index.md create mode 100644 english/cpp/aspose.pdf.facades/documentprivilege/get_print/_index.md create mode 100644 english/cpp/aspose.pdf.facades/documentprivilege/get_screenreaders/_index.md create mode 100644 english/cpp/aspose.pdf.facades/documentprivilege/set_allowassembly/_index.md create mode 100644 english/cpp/aspose.pdf.facades/documentprivilege/set_allowcopy/_index.md create mode 100644 english/cpp/aspose.pdf.facades/documentprivilege/set_allowdegradedprinting/_index.md create mode 100644 english/cpp/aspose.pdf.facades/documentprivilege/set_allowfillin/_index.md create mode 100644 english/cpp/aspose.pdf.facades/documentprivilege/set_allowmodifyannotations/_index.md create mode 100644 english/cpp/aspose.pdf.facades/documentprivilege/set_allowmodifycontents/_index.md create mode 100644 english/cpp/aspose.pdf.facades/documentprivilege/set_allowprint/_index.md create mode 100644 english/cpp/aspose.pdf.facades/documentprivilege/set_allowscreenreaders/_index.md create mode 100644 english/cpp/aspose.pdf.facades/documentprivilege/set_changeallowlevel/_index.md create mode 100644 english/cpp/aspose.pdf.facades/documentprivilege/set_copyallowlevel/_index.md create mode 100644 english/cpp/aspose.pdf.facades/documentprivilege/set_printallowlevel/_index.md create mode 100644 english/cpp/aspose.pdf.facades/encodingtype/_index.md create mode 100644 english/cpp/aspose.pdf.facades/facade/_index.md create mode 100644 english/cpp/aspose.pdf.facades/facade/bindpdf/_index.md create mode 100644 english/cpp/aspose.pdf.facades/facade/close/_index.md create mode 100644 english/cpp/aspose.pdf.facades/facade/dispose/_index.md create mode 100644 english/cpp/aspose.pdf.facades/facade/get_document/_index.md create mode 100644 english/cpp/aspose.pdf.facades/fieldtype/_index.md create mode 100644 english/cpp/aspose.pdf.facades/fontcolor/_index.md create mode 100644 english/cpp/aspose.pdf.facades/fontcolor/fontcolor/_index.md create mode 100644 english/cpp/aspose.pdf.facades/fontcolor/get_blue/_index.md create mode 100644 english/cpp/aspose.pdf.facades/fontcolor/get_green/_index.md create mode 100644 english/cpp/aspose.pdf.facades/fontcolor/get_red/_index.md create mode 100644 english/cpp/aspose.pdf.facades/fontcolor/set_blue/_index.md create mode 100644 english/cpp/aspose.pdf.facades/fontcolor/set_green/_index.md create mode 100644 english/cpp/aspose.pdf.facades/fontcolor/set_red/_index.md create mode 100644 english/cpp/aspose.pdf.facades/fontstyle/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/close/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/exportfdf/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/exportxfdf/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/exportxml/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/extractxfadata/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/fillbarcodefield/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/fillfield/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/fillfields/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/fillimagefield/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/flattenallfields/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/flattenfield/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/form/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/get_attachmentname/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/get_contentdisposition/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/get_destfilename/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/get_deststream/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/get_fieldnames/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/get_formsubmitbuttonnames/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/get_importresult/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/get_response/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/get_saveoptions/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/get_srcfilename/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/get_srcstream/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/getbuttonoptioncurrentvalue/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/getbuttonoptionvalues/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/getfield/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/getfieldfacade/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/getfieldflag/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/getfieldlimit/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/getfieldtype/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/getfullfieldname/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/getrichtext/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/getsubmitflags/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/importfdf/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/importxfdf/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/importxml/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/isrequiredfield/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/renamefield/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/save/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/set_attachmentname/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/set_contentdisposition/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/set_convertto/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/set_destfilename/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/set_deststream/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/set_response/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/set_saveoptions/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/set_srcfilename/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/set_srcstream/_index.md create mode 100644 english/cpp/aspose.pdf.facades/form/setxfadata/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formattedtext/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formattedtext/addnewlinetext/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formattedtext/formattedtext/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formattedtext/get_textheight/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formattedtext/get_textwidth/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formattedtext/iscjk/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formattedtext/setcjkfontstyle/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/addfield/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/addfieldscript/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/addlistitem/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/addsubmitbtn/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/close/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/copyinnerfield/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/copyouterfield/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/decoratefield/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/dellistitem/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/formeditor/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/get_attachmentname/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/get_contentdisposition/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/get_destfilename/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/get_deststream/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/get_exportitems/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/get_facade/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/get_items/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/get_radiobuttonitemsize/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/get_radiogap/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/get_radiohoriz/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/get_response/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/get_saveoptions/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/get_srcfilename/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/get_srcstream/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/get_submitflag/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/getfieldappearance/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/movefield/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/removefield/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/removefieldaction/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/renamefield/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/resetfacade/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/resetinnerfacade/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/save/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/set_attachmentname/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/set_contentdisposition/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/set_convertto/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/set_destfilename/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/set_deststream/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/set_exportitems/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/set_facade/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/set_items/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/set_radiobuttonitemsize/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/set_radiogap/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/set_radiohoriz/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/set_response/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/set_saveoptions/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/set_srcfilename/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/set_srcstream/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/set_submitflag/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/setfieldalignment/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/setfieldalignmentv/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/setfieldappearance/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/setfieldattribute/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/setfieldcombnumber/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/setfieldlimit/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/setfieldscript/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/setsubmitflag/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/setsubmiturl/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formeditor/single2multiple/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/alignbottom/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/aligncenter/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/alignjustified/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/alignleft/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/alignmiddle/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/alignright/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/aligntop/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/alignundefined/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/borderstylebeveled/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/borderstyledashed/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/borderstyleinset/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/borderstylesolid/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/borderstyleundefined/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/borderstyleunderline/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/borderwidthmedium/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/borderwidththick/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/borderwidththin/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/borderwidthundefined/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/checkboxstylecheck/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/checkboxstylecircle/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/checkboxstylecross/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/checkboxstylediamond/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/checkboxstylesquare/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/checkboxstylestar/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/checkboxstyleundefined/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/formfieldfacade/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/get_alignment/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/get_backgroundcolor/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/get_bordercolor/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/get_borderstyle/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/get_borderwidth/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/get_box/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/get_buttonstyle/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/get_caption/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/get_customfont/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/get_exportitems/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/get_font/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/get_fontsize/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/get_items/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/get_pagenumber/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/get_position/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/get_rotation/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/get_textcolor/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/get_textencoding/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/reset/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/set_alignment/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/set_backgroundcolor/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/set_bordercolor/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/set_borderstyle/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/set_borderwidth/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/set_box/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/set_buttonstyle/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/set_caption/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/set_customfont/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/set_exportitems/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/set_font/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/set_fontsize/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/set_items/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/set_pagenumber/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/set_position/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/set_rotation/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/set_textcolor/_index.md create mode 100644 english/cpp/aspose.pdf.facades/formfieldfacade/set_textencoding/_index.md create mode 100644 english/cpp/aspose.pdf.facades/ifacade/_index.md create mode 100644 english/cpp/aspose.pdf.facades/ifacade/bindpdf/_index.md create mode 100644 english/cpp/aspose.pdf.facades/ifacade/close/_index.md create mode 100644 english/cpp/aspose.pdf.facades/imagemergemode/_index.md create mode 100644 english/cpp/aspose.pdf.facades/isaveablefacade/_index.md create mode 100644 english/cpp/aspose.pdf.facades/isaveablefacade/save/_index.md create mode 100644 english/cpp/aspose.pdf.facades/keysize/_index.md create mode 100644 english/cpp/aspose.pdf.facades/lineinfo/_index.md create mode 100644 english/cpp/aspose.pdf.facades/lineinfo/get_borderstyle/_index.md create mode 100644 english/cpp/aspose.pdf.facades/lineinfo/get_linecolor/_index.md create mode 100644 english/cpp/aspose.pdf.facades/lineinfo/get_linedashpattern/_index.md create mode 100644 english/cpp/aspose.pdf.facades/lineinfo/get_linewidth/_index.md create mode 100644 english/cpp/aspose.pdf.facades/lineinfo/get_verticecoordinate/_index.md create mode 100644 english/cpp/aspose.pdf.facades/lineinfo/get_visibility/_index.md create mode 100644 english/cpp/aspose.pdf.facades/lineinfo/lineinfo/_index.md create mode 100644 english/cpp/aspose.pdf.facades/lineinfo/set_borderstyle/_index.md create mode 100644 english/cpp/aspose.pdf.facades/lineinfo/set_linecolor/_index.md create mode 100644 english/cpp/aspose.pdf.facades/lineinfo/set_linedashpattern/_index.md create mode 100644 english/cpp/aspose.pdf.facades/lineinfo/set_linewidth/_index.md create mode 100644 english/cpp/aspose.pdf.facades/lineinfo/set_verticecoordinate/_index.md create mode 100644 english/cpp/aspose.pdf.facades/lineinfo/set_visibility/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfannotationeditor/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfannotationeditor/deleteannotation/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfannotationeditor/deleteannotations/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfannotationeditor/exportannotationstoxfdf/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfannotationeditor/exportannotationsxfdf/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfannotationeditor/extractannotations/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfannotationeditor/flatteningannotations/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfannotationeditor/importannotationfromxfdf/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfannotationeditor/importannotations/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfannotationeditor/importannotationsfromfdf/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfannotationeditor/importannotationsfromxfdf/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfannotationeditor/modifyannotations/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfannotationeditor/modifyannotationsauthor/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfannotationeditor/pdfannotationeditor/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfannotationeditor/redactarea/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfbookmarkeditor/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfbookmarkeditor/createbookmarkofpage/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfbookmarkeditor/createbookmarks/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfbookmarkeditor/deletebookmarks/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfbookmarkeditor/exportbookmarkstohtml/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfbookmarkeditor/exportbookmarkstoxml/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfbookmarkeditor/extractbookmarks/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfbookmarkeditor/extractbookmarkstohtml/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfbookmarkeditor/importbookmarkswithxml/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfbookmarkeditor/modifybookmarks/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfbookmarkeditor/pdfbookmarkeditor/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/adddocumentadditionalaction/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/adddocumentattachment/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/bindpdf/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/changeviewerpreference/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/close/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/createapplicationlink/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/createbookmarksaction/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/createcaret/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/createcustomactionlink/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/createfileattachment/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/createfreetext/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/createjavascriptlink/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/createline/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/createlocallink/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/createmarkup/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/createmovie/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/createpdfdocumentlink/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/createpolygon/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/createpolyline/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/createpopup/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/createrubberstamp/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/createsound/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/createsquarecircle/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/createtext/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/createweblink/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/deleteattachments/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/deleteimage/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/deletestamp/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/deletestampbyid/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/deletestampbyids/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/documentclose/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/documentopen/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/documentprinted/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/documentsaved/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/documentwillprint/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/documentwillsave/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/drawcurve/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/extractlink/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/get_replacetextstrategy/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/get_texteditoptions/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/get_textreplaceoptions/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/get_textsearchoptions/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/getstamps/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/getviewerpreference/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/hidestampbyid/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/movestamp/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/movestampbyid/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/pdfcontenteditor/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/removedocumentopenaction/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/replaceimage/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/replacetext/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/set_replacetextstrategy/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/set_texteditoptions/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/set_textreplaceoptions/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/set_textsearchoptions/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfcontenteditor/showstampbyid/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfconverter/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfconverter/bindpdf/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfconverter/close/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfconverter/doconvert/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfconverter/get_coordinatetype/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfconverter/get_endpage/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfconverter/get_formpresentationmode/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfconverter/get_pagecount/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfconverter/get_password/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfconverter/get_renderingoptions/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfconverter/get_resolution/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfconverter/get_showhiddenareas/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfconverter/get_startpage/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfconverter/get_userpassword/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfconverter/getnextimage/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfconverter/hasnextimage/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfconverter/mergeimages/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfconverter/mergeimagesastiff/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfconverter/pdfconverter/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfconverter/saveastiff/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfconverter/saveastiffclassf/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfconverter/set_coordinatetype/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfconverter/set_endpage/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfconverter/set_formpresentationmode/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfconverter/set_password/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfconverter/set_renderingoptions/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfconverter/set_resolution/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfconverter/set_showhiddenareas/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfconverter/set_startpage/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfconverter/set_userpassword/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfextractor/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfextractor/bindpdf/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfextractor/extractattachment/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfextractor/extractimage/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfextractor/extracttext/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfextractor/get_endpage/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfextractor/get_extractimagemode/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfextractor/get_extracttextmode/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfextractor/get_isbidi/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfextractor/get_password/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfextractor/get_resolution/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfextractor/get_startpage/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfextractor/get_textsearchoptions/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfextractor/getattachment/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfextractor/getattachmentinfo/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfextractor/getattachnames/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfextractor/getnextimage/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfextractor/getnextpagetext/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfextractor/gettext/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfextractor/hasnextimage/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfextractor/hasnextpagetext/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfextractor/pdfextractor/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfextractor/set_endpage/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfextractor/set_extractimagemode/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfextractor/set_extracttextmode/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfextractor/set_password/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfextractor/set_resolution/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfextractor/set_startpage/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfextractor/set_textsearchoptions/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/addmargins/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/addmarginspct/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/addpagebreak/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/append/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/concatenate/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/delete/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/extract/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/get_allowconcatenateexceptions/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/get_attachmentname/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/get_closeconcatenatedstreams/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/get_concatenationpacketsize/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/get_contentdisposition/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/get_conversionlog/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/get_copylogicalstructure/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/get_copyoutlines/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/get_corruptedfileaction/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/get_corrupteditems/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/get_incrementalupdates/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/get_keepactions/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/get_keepfieldsunique/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/get_lastexception/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/get_mergeduplicatelayers/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/get_mergeduplicateoutlines/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/get_optimizesize/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/get_ownerpassword/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/get_preserveuserrights/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/get_removesignatures/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/get_saveoptions/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/get_uniquesuffix/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/get_usediskbuffer/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/insert/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/makebooklet/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/makenup/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/pdffileeditor/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/resizecontents/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/resizecontentspct/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/set_allowconcatenateexceptions/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/set_attachmentname/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/set_closeconcatenatedstreams/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/set_concatenationpacketsize/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/set_contentdisposition/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/set_convertto/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/set_copylogicalstructure/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/set_copyoutlines/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/set_corruptedfileaction/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/set_incrementalupdates/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/set_keepactions/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/set_keepfieldsunique/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/set_mergeduplicatelayers/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/set_mergeduplicateoutlines/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/set_optimizesize/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/set_ownerpassword/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/set_preserveuserrights/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/set_removesignatures/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/set_saveoptions/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/set_uniquesuffix/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/set_usediskbuffer/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/splitfromfirst/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/splittobulks/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/splittoend/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/splittopages/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/tryappend/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/tryconcatenate/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/trydelete/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/tryextract/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/tryinsert/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/trymakebooklet/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/trymakenup/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/tryresizecontents/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/trysplitfromfirst/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileeditor/trysplittoend/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/bindpdf/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/clearinfo/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/close/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/get_author/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/get_creationdate/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/get_creator/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/get_hascollection/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/get_haseditpassword/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/get_hasopenpassword/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/get_header/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/get_inputfile/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/get_inputstream/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/get_isencrypted/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/get_ispdffile/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/get_keywords/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/get_moddate/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/get_numberofpages/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/get_passwordtype/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/get_producer/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/get_subject/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/get_title/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/get_usestrictvalidation/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/getdocumentprivilege/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/getmetainfo/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/getpageheight/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/getpagerotation/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/getpagewidth/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/getpagexoffset/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/getpageyoffset/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/getpdfversion/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/pdffileinfo/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/save/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/savenewinfo/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/savenewinfowithxmp/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/set_author/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/set_creationdate/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/set_creator/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/set_header/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/set_inputfile/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/set_inputstream/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/set_keywords/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/set_moddate/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/set_subject/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/set_title/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/set_usestrictvalidation/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffileinfo/setmetainfo/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilemend/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilemend/addimage/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilemend/addtext/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilemend/close/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilemend/get_inputfile/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilemend/get_inputstream/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilemend/get_outputfile/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilemend/get_outputstream/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilemend/get_textpositioningmode/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilemend/get_wrapmode/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilemend/pdffilemend/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilemend/save/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilemend/set_inputfile/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilemend/set_inputstream/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilemend/set_iswordwrap/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilemend/set_outputfile/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilemend/set_outputstream/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilemend/set_textpositioningmode/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilemend/set_wrapmode/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesanitization/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesanitization/bindpdf/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesanitization/close/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesanitization/get_log/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesanitization/get_userebuildxrefandtrailer/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesanitization/get_usetrimbottom/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesanitization/get_usetrimtop/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesanitization/pdffilesanitization/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesanitization/rebuildxrefandtrailer/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesanitization/recover/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesanitization/save/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesanitization/set_userebuildxrefandtrailer/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesanitization/set_usetrimbottom/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesanitization/set_usetrimtop/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesanitization/trimbottom/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesanitization/trimtop/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesecurity/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesecurity/bindpdf/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesecurity/changepassword/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesecurity/close/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesecurity/get_allowexceptions/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesecurity/get_lastexception/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesecurity/mfdecryptfile/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesecurity/mfencryptfile/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesecurity/pdffilesecurity/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesecurity/set_allowexceptions/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesecurity/set_inputfile/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesecurity/set_inputstream/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesecurity/set_outputfile/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesecurity/set_outputstream/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesecurity/setprivilege/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesecurity/trychangepassword/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesecurity/trydecryptfile/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesecurity/tryencryptfile/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesecurity/trysetprivilege/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesignature/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesignature/bindpdf/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesignature/certify/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesignature/close/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesignature/containssignature/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesignature/containsusagerights/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesignature/coverswholedocument/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesignature/extractcertificate/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesignature/extractimage/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesignature/get_iscertified/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesignature/get_isltvenabled/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesignature/get_signatureappearance/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesignature/get_signatureappearancestream/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesignature/getaccesspermissions/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesignature/getblanksignnames/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesignature/getcontactinfo/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesignature/getdatetime/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesignature/getlocation/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesignature/getreason/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesignature/getrevision/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesignature/getsignername/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesignature/getsignnames/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesignature/gettotalrevision/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesignature/iscontainsignature/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesignature/iscoverswholedocument/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesignature/pdffilesignature/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesignature/removesignature/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesignature/removesignatures/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesignature/removeusagerights/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesignature/save/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesignature/set_signatureappearance/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesignature/set_signatureappearancestream/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesignature/setcertificate/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesignature/sign/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesignature/verifysignature/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesignature/verifysigned/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/addfooter/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/addheader/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/addpagenumber/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/addstamp/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/close/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/get_attachmentname/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/get_contentdisposition/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/get_inputfile/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/get_inputstream/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/get_keepsecurity/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/get_numberingstyle/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/get_optimizesize/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/get_outputfile/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/get_outputstream/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/get_pageheight/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/get_pagenumberrotation/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/get_pagewidth/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/get_response/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/get_saveoptions/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/get_stampid/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/get_startingnumber/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/pdffilestamp/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/posbottomleft/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/posbottommiddle/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/posbottomright/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/possidesleft/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/possidesright/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/posupperleft/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/posuppermiddle/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/posupperright/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/save/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/set_attachmentname/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/set_contentdisposition/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/set_convertto/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/set_inputfile/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/set_inputstream/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/set_keepsecurity/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/set_numberingstyle/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/set_optimizesize/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/set_outputfile/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/set_outputstream/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/set_pagenumberrotation/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/set_response/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/set_saveoptions/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/set_stampid/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilestamp/set_startingnumber/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfjavascriptstripper/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfjavascriptstripper/strip/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/applychanges/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/blindh/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/blindv/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/btwipe/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/dglitter/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/dissolve/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/get_displayduration/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/get_horizontalalignment/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/get_pagerotations/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/get_pagesize/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/get_processpages/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/get_rotation/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/get_transitionduration/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/get_transitiontype/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/get_verticalalignmenttype/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/get_zoom/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/getpageboxsize/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/getpagerotation/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/getpages/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/getpagesize/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/inbox/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/lrglitter/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/lrwipe/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/moveposition/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/outbox/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/pdfpageeditor/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/rlwipe/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/save/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/set_displayduration/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/set_horizontalalignment/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/set_pagerotations/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/set_pagesize/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/set_processpages/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/set_rotation/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/set_transitionduration/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/set_transitiontype/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/set_verticalalignmenttype/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/set_zoom/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/splithin/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/splithout/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/splitvin/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/splitvout/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/tbglitter/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfpageeditor/tbwipe/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfprintpageinfo/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfprintpageinfo/get_pagenumber/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfproducer/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfproducer/produce/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfquerypagesettingseventhandler/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfxmpmetadata/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfxmpmetadata/add/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfxmpmetadata/clear/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfxmpmetadata/contains/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfxmpmetadata/containskey/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfxmpmetadata/copyto/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfxmpmetadata/get_count/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfxmpmetadata/get_extensionfields/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfxmpmetadata/get_isfixedsize/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfxmpmetadata/get_isreadonly/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfxmpmetadata/get_issynchronized/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfxmpmetadata/getenumerator/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfxmpmetadata/getnamespaceuribyprefix/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfxmpmetadata/getprefixbynamespaceuri/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfxmpmetadata/getxmpmetadata/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfxmpmetadata/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfxmpmetadata/idx_set/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfxmpmetadata/pdfxmpmetadata/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfxmpmetadata/registernamespaceuri/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfxmpmetadata/remove/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfxmpmetadata/settemplateweakptr/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfxmpmetadata/trygetvalue/_index.md create mode 100644 english/cpp/aspose.pdf.facades/positioningmode/_index.md create mode 100644 english/cpp/aspose.pdf.facades/propertyflag/_index.md create mode 100644 english/cpp/aspose.pdf.facades/replacetextstrategy/_index.md create mode 100644 english/cpp/aspose.pdf.facades/replacetextstrategy/get_isregularexpressionused/_index.md create mode 100644 english/cpp/aspose.pdf.facades/replacetextstrategy/get_nocharacterbehavior/_index.md create mode 100644 english/cpp/aspose.pdf.facades/replacetextstrategy/get_replacescope/_index.md create mode 100644 english/cpp/aspose.pdf.facades/replacetextstrategy/replacetextstrategy/_index.md create mode 100644 english/cpp/aspose.pdf.facades/replacetextstrategy/set_isregularexpressionused/_index.md create mode 100644 english/cpp/aspose.pdf.facades/replacetextstrategy/set_nocharacterbehavior/_index.md create mode 100644 english/cpp/aspose.pdf.facades/replacetextstrategy/set_replacescope/_index.md create mode 100644 english/cpp/aspose.pdf.facades/saveablefacade/_index.md create mode 100644 english/cpp/aspose.pdf.facades/saveablefacade/save/_index.md create mode 100644 english/cpp/aspose.pdf.facades/stamp/_index.md create mode 100644 english/cpp/aspose.pdf.facades/stamp/bindimage/_index.md create mode 100644 english/cpp/aspose.pdf.facades/stamp/bindlogo/_index.md create mode 100644 english/cpp/aspose.pdf.facades/stamp/bindpdf/_index.md create mode 100644 english/cpp/aspose.pdf.facades/stamp/bindtextstate/_index.md create mode 100644 english/cpp/aspose.pdf.facades/stamp/get_blendingspace/_index.md create mode 100644 english/cpp/aspose.pdf.facades/stamp/get_isbackground/_index.md create mode 100644 english/cpp/aspose.pdf.facades/stamp/get_opacity/_index.md create mode 100644 english/cpp/aspose.pdf.facades/stamp/get_pagenumber/_index.md create mode 100644 english/cpp/aspose.pdf.facades/stamp/get_pages/_index.md create mode 100644 english/cpp/aspose.pdf.facades/stamp/get_quality/_index.md create mode 100644 english/cpp/aspose.pdf.facades/stamp/get_rotation/_index.md create mode 100644 english/cpp/aspose.pdf.facades/stamp/get_stampid/_index.md create mode 100644 english/cpp/aspose.pdf.facades/stamp/set_blendingspace/_index.md create mode 100644 english/cpp/aspose.pdf.facades/stamp/set_isbackground/_index.md create mode 100644 english/cpp/aspose.pdf.facades/stamp/set_opacity/_index.md create mode 100644 english/cpp/aspose.pdf.facades/stamp/set_pagenumber/_index.md create mode 100644 english/cpp/aspose.pdf.facades/stamp/set_pages/_index.md create mode 100644 english/cpp/aspose.pdf.facades/stamp/set_quality/_index.md create mode 100644 english/cpp/aspose.pdf.facades/stamp/set_rotation/_index.md create mode 100644 english/cpp/aspose.pdf.facades/stamp/set_stampid/_index.md create mode 100644 english/cpp/aspose.pdf.facades/stamp/setimagesize/_index.md create mode 100644 english/cpp/aspose.pdf.facades/stamp/setorigin/_index.md create mode 100644 english/cpp/aspose.pdf.facades/stamp/stamp/_index.md create mode 100644 english/cpp/aspose.pdf.facades/stampinfo/_index.md create mode 100644 english/cpp/aspose.pdf.facades/stampinfo/get_form/_index.md create mode 100644 english/cpp/aspose.pdf.facades/stampinfo/get_image/_index.md create mode 100644 english/cpp/aspose.pdf.facades/stampinfo/get_indexonpage/_index.md create mode 100644 english/cpp/aspose.pdf.facades/stampinfo/get_rectangle/_index.md create mode 100644 english/cpp/aspose.pdf.facades/stampinfo/get_stampid/_index.md create mode 100644 english/cpp/aspose.pdf.facades/stampinfo/get_stamptype/_index.md create mode 100644 english/cpp/aspose.pdf.facades/stampinfo/get_text/_index.md create mode 100644 english/cpp/aspose.pdf.facades/stampinfo/get_visible/_index.md create mode 100644 english/cpp/aspose.pdf.facades/stamptype/_index.md create mode 100644 english/cpp/aspose.pdf.facades/submitformflag/_index.md create mode 100644 english/cpp/aspose.pdf.facades/textproperties/_index.md create mode 100644 english/cpp/aspose.pdf.facades/textproperties/get_color/_index.md create mode 100644 english/cpp/aspose.pdf.facades/textproperties/get_iscolorspecified/_index.md create mode 100644 english/cpp/aspose.pdf.facades/textproperties/get_istextsizespecified/_index.md create mode 100644 english/cpp/aspose.pdf.facades/textproperties/get_textsize/_index.md create mode 100644 english/cpp/aspose.pdf.facades/textproperties/set_color/_index.md create mode 100644 english/cpp/aspose.pdf.facades/textproperties/set_textsize/_index.md create mode 100644 english/cpp/aspose.pdf.facades/textproperties/textproperties/_index.md create mode 100644 english/cpp/aspose.pdf.facades/viewerpreference/_index.md create mode 100644 english/cpp/aspose.pdf.facades/viewerpreference/centerwindow/_index.md create mode 100644 english/cpp/aspose.pdf.facades/viewerpreference/directionl2r/_index.md create mode 100644 english/cpp/aspose.pdf.facades/viewerpreference/directionr2l/_index.md create mode 100644 english/cpp/aspose.pdf.facades/viewerpreference/displaydoctitle/_index.md create mode 100644 english/cpp/aspose.pdf.facades/viewerpreference/duplexfliplongedge/_index.md create mode 100644 english/cpp/aspose.pdf.facades/viewerpreference/duplexflipshortedge/_index.md create mode 100644 english/cpp/aspose.pdf.facades/viewerpreference/fitwindow/_index.md create mode 100644 english/cpp/aspose.pdf.facades/viewerpreference/hidemenubar/_index.md create mode 100644 english/cpp/aspose.pdf.facades/viewerpreference/hidetoolbar/_index.md create mode 100644 english/cpp/aspose.pdf.facades/viewerpreference/hidewindowui/_index.md create mode 100644 english/cpp/aspose.pdf.facades/viewerpreference/nonfullscreenpagemodeusenone/_index.md create mode 100644 english/cpp/aspose.pdf.facades/viewerpreference/nonfullscreenpagemodeuseoc/_index.md create mode 100644 english/cpp/aspose.pdf.facades/viewerpreference/nonfullscreenpagemodeuseoutlines/_index.md create mode 100644 english/cpp/aspose.pdf.facades/viewerpreference/nonfullscreenpagemodeusethumbs/_index.md create mode 100644 english/cpp/aspose.pdf.facades/viewerpreference/pagelayoutonecolumn/_index.md create mode 100644 english/cpp/aspose.pdf.facades/viewerpreference/pagelayoutsinglepage/_index.md create mode 100644 english/cpp/aspose.pdf.facades/viewerpreference/pagelayouttwocolumnleft/_index.md create mode 100644 english/cpp/aspose.pdf.facades/viewerpreference/pagelayouttwocolumnright/_index.md create mode 100644 english/cpp/aspose.pdf.facades/viewerpreference/pagemodefullscreen/_index.md create mode 100644 english/cpp/aspose.pdf.facades/viewerpreference/pagemodeuseattachment/_index.md create mode 100644 english/cpp/aspose.pdf.facades/viewerpreference/pagemodeusenone/_index.md create mode 100644 english/cpp/aspose.pdf.facades/viewerpreference/pagemodeuseoc/_index.md create mode 100644 english/cpp/aspose.pdf.facades/viewerpreference/pagemodeuseoutlines/_index.md create mode 100644 english/cpp/aspose.pdf.facades/viewerpreference/pagemodeusethumbs/_index.md create mode 100644 english/cpp/aspose.pdf.facades/viewerpreference/picktraybypdfsize/_index.md create mode 100644 english/cpp/aspose.pdf.facades/viewerpreference/printscalingappdefault/_index.md create mode 100644 english/cpp/aspose.pdf.facades/viewerpreference/printscalingnone/_index.md create mode 100644 english/cpp/aspose.pdf.facades/viewerpreference/simplex/_index.md create mode 100644 english/cpp/aspose.pdf.facades/wordwrapmode/_index.md create mode 100644 english/cpp/aspose.pdf.forms/_index.md create mode 100644 english/cpp/aspose.pdf.forms/barcodefield/_index.md create mode 100644 english/cpp/aspose.pdf.forms/barcodefield/barcodefield/_index.md create mode 100644 english/cpp/aspose.pdf.forms/barcodefield/get_caption/_index.md create mode 100644 english/cpp/aspose.pdf.forms/barcodefield/get_ecc/_index.md create mode 100644 english/cpp/aspose.pdf.forms/barcodefield/get_resolution/_index.md create mode 100644 english/cpp/aspose.pdf.forms/barcodefield/get_symbology/_index.md create mode 100644 english/cpp/aspose.pdf.forms/barcodefield/get_xsymheight/_index.md create mode 100644 english/cpp/aspose.pdf.forms/barcodefield/get_xsymwidth/_index.md create mode 100644 english/cpp/aspose.pdf.forms/boxstyle/_index.md create mode 100644 english/cpp/aspose.pdf.forms/buttonfield/_index.md create mode 100644 english/cpp/aspose.pdf.forms/buttonfield/addimage/_index.md create mode 100644 english/cpp/aspose.pdf.forms/buttonfield/buttonfield/_index.md create mode 100644 english/cpp/aspose.pdf.forms/buttonfield/get_alternatecaption/_index.md create mode 100644 english/cpp/aspose.pdf.forms/buttonfield/get_alternateicon/_index.md create mode 100644 english/cpp/aspose.pdf.forms/buttonfield/get_iconfit/_index.md create mode 100644 english/cpp/aspose.pdf.forms/buttonfield/get_icposition/_index.md create mode 100644 english/cpp/aspose.pdf.forms/buttonfield/get_normalcaption/_index.md create mode 100644 english/cpp/aspose.pdf.forms/buttonfield/get_normalicon/_index.md create mode 100644 english/cpp/aspose.pdf.forms/buttonfield/get_rollovercaption/_index.md create mode 100644 english/cpp/aspose.pdf.forms/buttonfield/get_rollovericon/_index.md create mode 100644 english/cpp/aspose.pdf.forms/buttonfield/set_alternatecaption/_index.md create mode 100644 english/cpp/aspose.pdf.forms/buttonfield/set_alternateicon/_index.md create mode 100644 english/cpp/aspose.pdf.forms/buttonfield/set_icposition/_index.md create mode 100644 english/cpp/aspose.pdf.forms/buttonfield/set_normalcaption/_index.md create mode 100644 english/cpp/aspose.pdf.forms/buttonfield/set_normalicon/_index.md create mode 100644 english/cpp/aspose.pdf.forms/buttonfield/set_rollovercaption/_index.md create mode 100644 english/cpp/aspose.pdf.forms/buttonfield/set_rollovericon/_index.md create mode 100644 english/cpp/aspose.pdf.forms/checkboxfield/_index.md create mode 100644 english/cpp/aspose.pdf.forms/checkboxfield/addoption/_index.md create mode 100644 english/cpp/aspose.pdf.forms/checkboxfield/checkboxfield/_index.md create mode 100644 english/cpp/aspose.pdf.forms/checkboxfield/clone/_index.md create mode 100644 english/cpp/aspose.pdf.forms/checkboxfield/get_activestate/_index.md create mode 100644 english/cpp/aspose.pdf.forms/checkboxfield/get_allowedstates/_index.md create mode 100644 english/cpp/aspose.pdf.forms/checkboxfield/get_checked/_index.md create mode 100644 english/cpp/aspose.pdf.forms/checkboxfield/get_exportvalue/_index.md create mode 100644 english/cpp/aspose.pdf.forms/checkboxfield/get_style/_index.md create mode 100644 english/cpp/aspose.pdf.forms/checkboxfield/get_value/_index.md create mode 100644 english/cpp/aspose.pdf.forms/checkboxfield/set_activestate/_index.md create mode 100644 english/cpp/aspose.pdf.forms/checkboxfield/set_checked/_index.md create mode 100644 english/cpp/aspose.pdf.forms/checkboxfield/set_exportvalue/_index.md create mode 100644 english/cpp/aspose.pdf.forms/checkboxfield/set_style/_index.md create mode 100644 english/cpp/aspose.pdf.forms/checkboxfield/set_value/_index.md create mode 100644 english/cpp/aspose.pdf.forms/choicefield/_index.md create mode 100644 english/cpp/aspose.pdf.forms/choicefield/addoption/_index.md create mode 100644 english/cpp/aspose.pdf.forms/choicefield/choicefield/_index.md create mode 100644 english/cpp/aspose.pdf.forms/choicefield/deleteoption/_index.md create mode 100644 english/cpp/aspose.pdf.forms/choicefield/get_commitimmediately/_index.md create mode 100644 english/cpp/aspose.pdf.forms/choicefield/get_multiselect/_index.md create mode 100644 english/cpp/aspose.pdf.forms/choicefield/get_options/_index.md create mode 100644 english/cpp/aspose.pdf.forms/choicefield/get_selected/_index.md create mode 100644 english/cpp/aspose.pdf.forms/choicefield/get_selecteditems/_index.md create mode 100644 english/cpp/aspose.pdf.forms/choicefield/get_value/_index.md create mode 100644 english/cpp/aspose.pdf.forms/choicefield/set_commitimmediately/_index.md create mode 100644 english/cpp/aspose.pdf.forms/choicefield/set_multiselect/_index.md create mode 100644 english/cpp/aspose.pdf.forms/choicefield/set_selected/_index.md create mode 100644 english/cpp/aspose.pdf.forms/choicefield/set_selecteditems/_index.md create mode 100644 english/cpp/aspose.pdf.forms/choicefield/set_value/_index.md create mode 100644 english/cpp/aspose.pdf.forms/comboboxfield/_index.md create mode 100644 english/cpp/aspose.pdf.forms/comboboxfield/comboboxfield/_index.md create mode 100644 english/cpp/aspose.pdf.forms/comboboxfield/get_editable/_index.md create mode 100644 english/cpp/aspose.pdf.forms/comboboxfield/get_spellcheck/_index.md create mode 100644 english/cpp/aspose.pdf.forms/comboboxfield/set_editable/_index.md create mode 100644 english/cpp/aspose.pdf.forms/comboboxfield/set_spellcheck/_index.md create mode 100644 english/cpp/aspose.pdf.forms/datefield/_index.md create mode 100644 english/cpp/aspose.pdf.forms/datefield/addimage/_index.md create mode 100644 english/cpp/aspose.pdf.forms/datefield/datefield/_index.md create mode 100644 english/cpp/aspose.pdf.forms/datefield/get_dateformat/_index.md create mode 100644 english/cpp/aspose.pdf.forms/datefield/get_datetimevalue/_index.md create mode 100644 english/cpp/aspose.pdf.forms/datefield/init/_index.md create mode 100644 english/cpp/aspose.pdf.forms/datefield/set_dateformat/_index.md create mode 100644 english/cpp/aspose.pdf.forms/datefield/set_datetimevalue/_index.md create mode 100644 english/cpp/aspose.pdf.forms/docmdpaccesspermissions/_index.md create mode 100644 english/cpp/aspose.pdf.forms/docmdpsignature/_index.md create mode 100644 english/cpp/aspose.pdf.forms/docmdpsignature/docmdpsignature/_index.md create mode 100644 english/cpp/aspose.pdf.forms/docmdpsignature/get_accesspermissions/_index.md create mode 100644 english/cpp/aspose.pdf.forms/externalsignature/_index.md create mode 100644 english/cpp/aspose.pdf.forms/externalsignature/externalsignature/_index.md create mode 100644 english/cpp/aspose.pdf.forms/externalsignature/get_certificate/_index.md create mode 100644 english/cpp/aspose.pdf.forms/field/_index.md create mode 100644 english/cpp/aspose.pdf.forms/field/copyto/_index.md create mode 100644 english/cpp/aspose.pdf.forms/field/copytowidgetarray/_index.md create mode 100644 english/cpp/aspose.pdf.forms/field/executefieldjavascript/_index.md create mode 100644 english/cpp/aspose.pdf.forms/field/field/_index.md create mode 100644 english/cpp/aspose.pdf.forms/field/get_alternatename/_index.md create mode 100644 english/cpp/aspose.pdf.forms/field/get_annotationindex/_index.md create mode 100644 english/cpp/aspose.pdf.forms/field/get_count/_index.md create mode 100644 english/cpp/aspose.pdf.forms/field/get_fitintorectangle/_index.md create mode 100644 english/cpp/aspose.pdf.forms/field/get_isgroup/_index.md create mode 100644 english/cpp/aspose.pdf.forms/field/get_issharedfield/_index.md create mode 100644 english/cpp/aspose.pdf.forms/field/get_issynchronized/_index.md create mode 100644 english/cpp/aspose.pdf.forms/field/get_mappingname/_index.md create mode 100644 english/cpp/aspose.pdf.forms/field/get_maxfontsize/_index.md create mode 100644 english/cpp/aspose.pdf.forms/field/get_minfontsize/_index.md create mode 100644 english/cpp/aspose.pdf.forms/field/get_pageindex/_index.md create mode 100644 english/cpp/aspose.pdf.forms/field/get_partialname/_index.md create mode 100644 english/cpp/aspose.pdf.forms/field/get_rect/_index.md create mode 100644 english/cpp/aspose.pdf.forms/field/get_syncroot/_index.md create mode 100644 english/cpp/aspose.pdf.forms/field/get_taborder/_index.md create mode 100644 english/cpp/aspose.pdf.forms/field/get_value/_index.md create mode 100644 english/cpp/aspose.pdf.forms/field/getenumerator/_index.md create mode 100644 english/cpp/aspose.pdf.forms/field/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf.forms/field/recalculate/_index.md create mode 100644 english/cpp/aspose.pdf.forms/field/set_alternatename/_index.md create mode 100644 english/cpp/aspose.pdf.forms/field/set_annotationindex/_index.md create mode 100644 english/cpp/aspose.pdf.forms/field/set_fitintorectangle/_index.md create mode 100644 english/cpp/aspose.pdf.forms/field/set_issharedfield/_index.md create mode 100644 english/cpp/aspose.pdf.forms/field/set_mappingname/_index.md create mode 100644 english/cpp/aspose.pdf.forms/field/set_maxfontsize/_index.md create mode 100644 english/cpp/aspose.pdf.forms/field/set_minfontsize/_index.md create mode 100644 english/cpp/aspose.pdf.forms/field/set_partialname/_index.md create mode 100644 english/cpp/aspose.pdf.forms/field/set_rect/_index.md create mode 100644 english/cpp/aspose.pdf.forms/field/set_taborder/_index.md create mode 100644 english/cpp/aspose.pdf.forms/field/set_value/_index.md create mode 100644 english/cpp/aspose.pdf.forms/field/setposition/_index.md create mode 100644 english/cpp/aspose.pdf.forms/field/settemplateweakptr/_index.md create mode 100644 english/cpp/aspose.pdf.forms/fileselectboxfield/_index.md create mode 100644 english/cpp/aspose.pdf.forms/form/_index.md create mode 100644 english/cpp/aspose.pdf.forms/form/add/_index.md create mode 100644 english/cpp/aspose.pdf.forms/form/addfieldappearance/_index.md create mode 100644 english/cpp/aspose.pdf.forms/form/assignxfa/_index.md create mode 100644 english/cpp/aspose.pdf.forms/form/copyto/_index.md create mode 100644 english/cpp/aspose.pdf.forms/form/delete/_index.md create mode 100644 english/cpp/aspose.pdf.forms/form/flatten/_index.md create mode 100644 english/cpp/aspose.pdf.forms/form/get_autorecalculate/_index.md create mode 100644 english/cpp/aspose.pdf.forms/form/get_autorestoreform/_index.md create mode 100644 english/cpp/aspose.pdf.forms/form/get_count/_index.md create mode 100644 english/cpp/aspose.pdf.forms/form/get_defaultappearance/_index.md create mode 100644 english/cpp/aspose.pdf.forms/form/get_defaultresources/_index.md create mode 100644 english/cpp/aspose.pdf.forms/form/get_emulaterequierdgroups/_index.md create mode 100644 english/cpp/aspose.pdf.forms/form/get_fields/_index.md create mode 100644 english/cpp/aspose.pdf.forms/form/get_ignoreneedsrendering/_index.md create mode 100644 english/cpp/aspose.pdf.forms/form/get_issynchronized/_index.md create mode 100644 english/cpp/aspose.pdf.forms/form/get_removepermission/_index.md create mode 100644 english/cpp/aspose.pdf.forms/form/get_signaturesappendonly/_index.md create mode 100644 english/cpp/aspose.pdf.forms/form/get_signaturesexist/_index.md create mode 100644 english/cpp/aspose.pdf.forms/form/get_syncroot/_index.md create mode 100644 english/cpp/aspose.pdf.forms/form/get_type/_index.md create mode 100644 english/cpp/aspose.pdf.forms/form/get_xfa/_index.md create mode 100644 english/cpp/aspose.pdf.forms/form/getenumerator/_index.md create mode 100644 english/cpp/aspose.pdf.forms/form/getfieldsinrect/_index.md create mode 100644 english/cpp/aspose.pdf.forms/form/hasfield/_index.md create mode 100644 english/cpp/aspose.pdf.forms/form/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf.forms/form/makeformannotationsindependent/_index.md create mode 100644 english/cpp/aspose.pdf.forms/form/removefieldappearance/_index.md create mode 100644 english/cpp/aspose.pdf.forms/form/set_autorecalculate/_index.md create mode 100644 english/cpp/aspose.pdf.forms/form/set_autorestoreform/_index.md create mode 100644 english/cpp/aspose.pdf.forms/form/set_calculatedfields/_index.md create mode 100644 english/cpp/aspose.pdf.forms/form/set_defaultappearance/_index.md create mode 100644 english/cpp/aspose.pdf.forms/form/set_emulaterequierdgroups/_index.md create mode 100644 english/cpp/aspose.pdf.forms/form/set_ignoreneedsrendering/_index.md create mode 100644 english/cpp/aspose.pdf.forms/form/set_removepermission/_index.md create mode 100644 english/cpp/aspose.pdf.forms/form/set_signaturesappendonly/_index.md create mode 100644 english/cpp/aspose.pdf.forms/form/set_signaturesexist/_index.md create mode 100644 english/cpp/aspose.pdf.forms/form/set_type/_index.md create mode 100644 english/cpp/aspose.pdf.forms/formtype/_index.md create mode 100644 english/cpp/aspose.pdf.forms/iconcaptionposition/_index.md create mode 100644 english/cpp/aspose.pdf.forms/iconfit/_index.md create mode 100644 english/cpp/aspose.pdf.forms/iconfit/get_leftoverbottom/_index.md create mode 100644 english/cpp/aspose.pdf.forms/iconfit/get_leftoverleft/_index.md create mode 100644 english/cpp/aspose.pdf.forms/iconfit/get_scalingmode/_index.md create mode 100644 english/cpp/aspose.pdf.forms/iconfit/get_scalingreason/_index.md create mode 100644 english/cpp/aspose.pdf.forms/iconfit/get_spreadonborder/_index.md create mode 100644 english/cpp/aspose.pdf.forms/iconfit/nametoscalingmode/_index.md create mode 100644 english/cpp/aspose.pdf.forms/iconfit/nametoscalingreason/_index.md create mode 100644 english/cpp/aspose.pdf.forms/iconfit/scalingmodetoname/_index.md create mode 100644 english/cpp/aspose.pdf.forms/iconfit/scalingreasontoname/_index.md create mode 100644 english/cpp/aspose.pdf.forms/iconfit/set_leftoverbottom/_index.md create mode 100644 english/cpp/aspose.pdf.forms/iconfit/set_leftoverleft/_index.md create mode 100644 english/cpp/aspose.pdf.forms/iconfit/set_scalingmode/_index.md create mode 100644 english/cpp/aspose.pdf.forms/iconfit/set_scalingreason/_index.md create mode 100644 english/cpp/aspose.pdf.forms/iconfit/set_spreadonborder/_index.md create mode 100644 english/cpp/aspose.pdf.forms/listboxfield/_index.md create mode 100644 english/cpp/aspose.pdf.forms/listboxfield/get_topindex/_index.md create mode 100644 english/cpp/aspose.pdf.forms/listboxfield/listboxfield/_index.md create mode 100644 english/cpp/aspose.pdf.forms/listboxfield/set_selected/_index.md create mode 100644 english/cpp/aspose.pdf.forms/listboxfield/set_selecteditems/_index.md create mode 100644 english/cpp/aspose.pdf.forms/listboxfield/set_topindex/_index.md create mode 100644 english/cpp/aspose.pdf.forms/numberfield/_index.md create mode 100644 english/cpp/aspose.pdf.forms/numberfield/get_allowedchars/_index.md create mode 100644 english/cpp/aspose.pdf.forms/numberfield/numberfield/_index.md create mode 100644 english/cpp/aspose.pdf.forms/numberfield/set_allowedchars/_index.md create mode 100644 english/cpp/aspose.pdf.forms/option/_index.md create mode 100644 english/cpp/aspose.pdf.forms/option/get_index/_index.md create mode 100644 english/cpp/aspose.pdf.forms/option/get_name/_index.md create mode 100644 english/cpp/aspose.pdf.forms/option/get_selected/_index.md create mode 100644 english/cpp/aspose.pdf.forms/option/get_value/_index.md create mode 100644 english/cpp/aspose.pdf.forms/option/set_name/_index.md create mode 100644 english/cpp/aspose.pdf.forms/option/set_selected/_index.md create mode 100644 english/cpp/aspose.pdf.forms/option/set_value/_index.md create mode 100644 english/cpp/aspose.pdf.forms/optioncollection/_index.md create mode 100644 english/cpp/aspose.pdf.forms/optioncollection/add/_index.md create mode 100644 english/cpp/aspose.pdf.forms/optioncollection/clear/_index.md create mode 100644 english/cpp/aspose.pdf.forms/optioncollection/contains/_index.md create mode 100644 english/cpp/aspose.pdf.forms/optioncollection/copyto/_index.md create mode 100644 english/cpp/aspose.pdf.forms/optioncollection/get/_index.md create mode 100644 english/cpp/aspose.pdf.forms/optioncollection/get_count/_index.md create mode 100644 english/cpp/aspose.pdf.forms/optioncollection/get_isreadonly/_index.md create mode 100644 english/cpp/aspose.pdf.forms/optioncollection/get_issynchronized/_index.md create mode 100644 english/cpp/aspose.pdf.forms/optioncollection/get_syncroot/_index.md create mode 100644 english/cpp/aspose.pdf.forms/optioncollection/getenumerator/_index.md create mode 100644 english/cpp/aspose.pdf.forms/optioncollection/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf.forms/optioncollection/remove/_index.md create mode 100644 english/cpp/aspose.pdf.forms/passwordboxfield/_index.md create mode 100644 english/cpp/aspose.pdf.forms/pkcs1/_index.md create mode 100644 english/cpp/aspose.pdf.forms/pkcs1/pkcs1/_index.md create mode 100644 english/cpp/aspose.pdf.forms/pkcs7/_index.md create mode 100644 english/cpp/aspose.pdf.forms/pkcs7/pkcs7/_index.md create mode 100644 english/cpp/aspose.pdf.forms/pkcs7detached/_index.md create mode 100644 english/cpp/aspose.pdf.forms/pkcs7detached/pkcs7detached/_index.md create mode 100644 english/cpp/aspose.pdf.forms/radiobuttonfield/_index.md create mode 100644 english/cpp/aspose.pdf.forms/radiobuttonfield/add/_index.md create mode 100644 english/cpp/aspose.pdf.forms/radiobuttonfield/addoption/_index.md create mode 100644 english/cpp/aspose.pdf.forms/radiobuttonfield/get_notoggletooff/_index.md create mode 100644 english/cpp/aspose.pdf.forms/radiobuttonfield/get_options/_index.md create mode 100644 english/cpp/aspose.pdf.forms/radiobuttonfield/get_pageindex/_index.md create mode 100644 english/cpp/aspose.pdf.forms/radiobuttonfield/get_selected/_index.md create mode 100644 english/cpp/aspose.pdf.forms/radiobuttonfield/get_style/_index.md create mode 100644 english/cpp/aspose.pdf.forms/radiobuttonfield/get_value/_index.md create mode 100644 english/cpp/aspose.pdf.forms/radiobuttonfield/radiobuttonfield/_index.md create mode 100644 english/cpp/aspose.pdf.forms/radiobuttonfield/set_notoggletooff/_index.md create mode 100644 english/cpp/aspose.pdf.forms/radiobuttonfield/set_selected/_index.md create mode 100644 english/cpp/aspose.pdf.forms/radiobuttonfield/set_style/_index.md create mode 100644 english/cpp/aspose.pdf.forms/radiobuttonfield/set_value/_index.md create mode 100644 english/cpp/aspose.pdf.forms/radiobuttonfield/setposition/_index.md create mode 100644 english/cpp/aspose.pdf.forms/radiobuttonoptionfield/_index.md create mode 100644 english/cpp/aspose.pdf.forms/radiobuttonoptionfield/get_caption/_index.md create mode 100644 english/cpp/aspose.pdf.forms/radiobuttonoptionfield/get_optionname/_index.md create mode 100644 english/cpp/aspose.pdf.forms/radiobuttonoptionfield/get_style/_index.md create mode 100644 english/cpp/aspose.pdf.forms/radiobuttonoptionfield/radiobuttonoptionfield/_index.md create mode 100644 english/cpp/aspose.pdf.forms/radiobuttonoptionfield/set_caption/_index.md create mode 100644 english/cpp/aspose.pdf.forms/radiobuttonoptionfield/set_optionname/_index.md create mode 100644 english/cpp/aspose.pdf.forms/radiobuttonoptionfield/set_style/_index.md create mode 100644 english/cpp/aspose.pdf.forms/richtextboxfield/_index.md create mode 100644 english/cpp/aspose.pdf.forms/richtextboxfield/get_formattedvalue/_index.md create mode 100644 english/cpp/aspose.pdf.forms/richtextboxfield/get_justify/_index.md create mode 100644 english/cpp/aspose.pdf.forms/richtextboxfield/get_richtextvalue/_index.md create mode 100644 english/cpp/aspose.pdf.forms/richtextboxfield/get_style/_index.md create mode 100644 english/cpp/aspose.pdf.forms/richtextboxfield/get_value/_index.md create mode 100644 english/cpp/aspose.pdf.forms/richtextboxfield/richtextboxfield/_index.md create mode 100644 english/cpp/aspose.pdf.forms/richtextboxfield/set_formattedvalue/_index.md create mode 100644 english/cpp/aspose.pdf.forms/richtextboxfield/set_justify/_index.md create mode 100644 english/cpp/aspose.pdf.forms/richtextboxfield/set_richtextvalue/_index.md create mode 100644 english/cpp/aspose.pdf.forms/richtextboxfield/set_style/_index.md create mode 100644 english/cpp/aspose.pdf.forms/richtextboxfield/set_value/_index.md create mode 100644 english/cpp/aspose.pdf.forms/scalingmode/_index.md create mode 100644 english/cpp/aspose.pdf.forms/scalingreason/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signature/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signature/get_authority/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signature/get_byterange/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signature/get_contactinfo/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signature/get_customappearance/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signature/get_customsignhash/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signature/get_date/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signature/get_location/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signature/get_ocspsettings/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signature/get_reason/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signature/get_showproperties/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signature/get_timestampsettings/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signature/get_useltv/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signature/set_authority/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signature/set_contactinfo/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signature/set_customappearance/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signature/set_customsignhash/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signature/set_date/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signature/set_location/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signature/set_ocspsettings/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signature/set_reason/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signature/set_showproperties/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signature/set_timestampsettings/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signature/set_useltv/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signature/signature/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signature/verify/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturecustomappearance/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturecustomappearance/get_backgroundcolor/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturecustomappearance/get_contactinfolabel/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturecustomappearance/get_culture/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturecustomappearance/get_datesignedatlabel/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturecustomappearance/get_datetimeformat/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturecustomappearance/get_datetimelocalformat/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturecustomappearance/get_digitalsignedlabel/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturecustomappearance/get_digitalsubjectformat/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturecustomappearance/get_fontfamilyname/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturecustomappearance/get_fontsize/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturecustomappearance/get_foregroundcolor/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturecustomappearance/get_locationlabel/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturecustomappearance/get_reasonlabel/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturecustomappearance/get_rotation/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturecustomappearance/get_showcontactinfo/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturecustomappearance/get_showlocation/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturecustomappearance/get_showreason/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturecustomappearance/get_usedigitalsubjectformat/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturecustomappearance/set_backgroundcolor/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturecustomappearance/set_contactinfolabel/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturecustomappearance/set_culture/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturecustomappearance/set_datesignedatlabel/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturecustomappearance/set_datetimeformat/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturecustomappearance/set_datetimelocalformat/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturecustomappearance/set_digitalsignedlabel/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturecustomappearance/set_digitalsubjectformat/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturecustomappearance/set_fontfamilyname/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturecustomappearance/set_fontsize/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturecustomappearance/set_foregroundcolor/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturecustomappearance/set_locationlabel/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturecustomappearance/set_reasonlabel/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturecustomappearance/set_rotation/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturecustomappearance/set_showcontactinfo/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturecustomappearance/set_showlocation/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturecustomappearance/set_showreason/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturecustomappearance/set_usedigitalsubjectformat/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturecustomappearance/signaturecustomappearance/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturefield/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturefield/extractcertificate/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturefield/extractimage/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturefield/get_signature/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturefield/sign/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturefield/signaturefield/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturesubjectformatter/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturesubjectformatter/formatsubject/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signaturesubjectformatter/signaturesubjectformatter/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signhash/_index.md create mode 100644 english/cpp/aspose.pdf.forms/subjectnameelements/_index.md create mode 100644 english/cpp/aspose.pdf.forms/symbology/_index.md create mode 100644 english/cpp/aspose.pdf.forms/symbologyconverter/_index.md create mode 100644 english/cpp/aspose.pdf.forms/symbologyconverter/toenum/_index.md create mode 100644 english/cpp/aspose.pdf.forms/symbologyconverter/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.forms/textboxfield/_index.md create mode 100644 english/cpp/aspose.pdf.forms/textboxfield/addbarcode/_index.md create mode 100644 english/cpp/aspose.pdf.forms/textboxfield/addimage/_index.md create mode 100644 english/cpp/aspose.pdf.forms/textboxfield/get_forcecombs/_index.md create mode 100644 english/cpp/aspose.pdf.forms/textboxfield/get_maxlen/_index.md create mode 100644 english/cpp/aspose.pdf.forms/textboxfield/get_multiline/_index.md create mode 100644 english/cpp/aspose.pdf.forms/textboxfield/get_scrollable/_index.md create mode 100644 english/cpp/aspose.pdf.forms/textboxfield/get_spellcheck/_index.md create mode 100644 english/cpp/aspose.pdf.forms/textboxfield/get_textverticalalignment/_index.md create mode 100644 english/cpp/aspose.pdf.forms/textboxfield/get_value/_index.md create mode 100644 english/cpp/aspose.pdf.forms/textboxfield/set_forcecombs/_index.md create mode 100644 english/cpp/aspose.pdf.forms/textboxfield/set_maxlen/_index.md create mode 100644 english/cpp/aspose.pdf.forms/textboxfield/set_multiline/_index.md create mode 100644 english/cpp/aspose.pdf.forms/textboxfield/set_scrollable/_index.md create mode 100644 english/cpp/aspose.pdf.forms/textboxfield/set_spellcheck/_index.md create mode 100644 english/cpp/aspose.pdf.forms/textboxfield/set_textverticalalignment/_index.md create mode 100644 english/cpp/aspose.pdf.forms/textboxfield/set_value/_index.md create mode 100644 english/cpp/aspose.pdf.forms/textboxfield/textboxfield/_index.md create mode 100644 english/cpp/aspose.pdf.forms/xfa/_index.md create mode 100644 english/cpp/aspose.pdf.forms/xfa/get_config/_index.md create mode 100644 english/cpp/aspose.pdf.forms/xfa/get_datasets/_index.md create mode 100644 english/cpp/aspose.pdf.forms/xfa/get_fieldnames/_index.md create mode 100644 english/cpp/aspose.pdf.forms/xfa/get_form/_index.md create mode 100644 english/cpp/aspose.pdf.forms/xfa/get_namespacemanager/_index.md create mode 100644 english/cpp/aspose.pdf.forms/xfa/get_template/_index.md create mode 100644 english/cpp/aspose.pdf.forms/xfa/get_xdp/_index.md create mode 100644 english/cpp/aspose.pdf.forms/xfa/getfieldtemplate/_index.md create mode 100644 english/cpp/aspose.pdf.forms/xfa/getfieldtemplates/_index.md create mode 100644 english/cpp/aspose.pdf.forms/xfa/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf.forms/xfa/idx_set/_index.md create mode 100644 english/cpp/aspose.pdf.forms/xfa/setfieldimage/_index.md create mode 100644 english/cpp/aspose.pdf.groupprocessor.creators/_index.md create mode 100644 english/cpp/aspose.pdf.groupprocessor.creators/pdftypeobjectcreator/_index.md create mode 100644 english/cpp/aspose.pdf.groupprocessor.creators/pdftypeobjectcreator/createextractor/_index.md create mode 100644 english/cpp/aspose.pdf.groupprocessor/_index.md create mode 100644 english/cpp/aspose.pdf.groupprocessor/extractorfactory/_index.md create mode 100644 english/cpp/aspose.pdf.groupprocessor/extractorfactory/extractorfactory/_index.md create mode 100644 english/cpp/aspose.pdf.groupprocessor/extractorfactory/pdf/_index.md create mode 100644 english/cpp/aspose.pdf.groupprocessor/idocumentpagetextextractor/_index.md create mode 100644 english/cpp/aspose.pdf.groupprocessor/idocumentpagetextextractor/extractpagetext/_index.md create mode 100644 english/cpp/aspose.pdf.groupprocessor/idocumentpagetextextractor/get_pagecount/_index.md create mode 100644 english/cpp/aspose.pdf.groupprocessor/idocumenttextextractor/_index.md create mode 100644 english/cpp/aspose.pdf.groupprocessor/idocumenttextextractor/extractalltext/_index.md create mode 100644 english/cpp/aspose.pdf.groupprocessor/ipdftypeextractor/_index.md create mode 100644 english/cpp/aspose.pdf.groupprocessor/ipdftypeextractor/dispose/_index.md create mode 100644 english/cpp/aspose.pdf.groupprocessor/ipdftypeextractor/extractalltext/_index.md create mode 100644 english/cpp/aspose.pdf.groupprocessor/ipdftypeextractor/extractpagetext/_index.md create mode 100644 english/cpp/aspose.pdf.groupprocessor/ipdftypeextractor/get_isfastextractionused/_index.md create mode 100644 english/cpp/aspose.pdf.groupprocessor/ipdftypeextractor/get_pagecount/_index.md create mode 100644 english/cpp/aspose.pdf.groupprocessor/ipdftypeextractor/get_version/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/annotationelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/annotationelement/get_alternatedescriptions/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/annotationelement/set_alternatedescriptions/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/annotelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/artelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/backgroundcolor/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/baselineshift/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/bbox/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/blockalign/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/bordercolor/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/borderstyle/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/borderthickness/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/checked/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/color/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/colspan/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/columncount/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/columngap/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/columnwidths/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/desc/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/endindent/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/get_key/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/get_owner/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/glyphorientationvertical/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/headers/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/height/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/inlinealign/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/lineheight/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/listnumbering/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/padding/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/placement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/role/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/rowspan/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/rubyalign/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/rubyposition/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/scope/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/spaceafter/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/spacebefore/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/startindent/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/summary/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/tborderstyle/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/textalign/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/textdecorationcolor/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/textdecorationthickness/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/textdecorationtype/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/textindent/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/to_attributekey/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/tpadding/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/width/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributekey/writingmode/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/blockalign_after/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/blockalign_before/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/blockalign_justify/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/blockalign_middle/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/borderstyle_dashed/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/borderstyle_dotted/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/borderstyle_double/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/borderstyle_groove/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/borderstyle_hidden/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/borderstyle_inset/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/borderstyle_none/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/borderstyle_outset/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/borderstyle_ridge/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/borderstyle_solid/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/checked_neutral/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/checked_off/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/checked_on/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/fromnameattributekey/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/get_attributekey/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/get_name/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/glyphorientationvertical_auto/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/height_auto/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/inlinealign_center/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/inlinealign_end/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/inlinealign_start/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/lineheight_auto/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/lineheight_normal/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/listnumbering_circle/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/listnumbering_decimal/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/listnumbering_disc/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/listnumbering_loweralpha/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/listnumbering_lowerroman/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/listnumbering_none/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/listnumbering_square/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/listnumbering_upperalpha/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/listnumbering_upperroman/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/placement_before/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/placement_block/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/placement_end/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/placement_inline/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/placement_start/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/role_cb/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/role_pb/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/role_rb/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/role_tv/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/rubyalign_center/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/rubyalign_distribute/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/rubyalign_end/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/rubyalign_justify/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/rubyalign_start/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/rubyposition_after/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/rubyposition_before/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/rubyposition_inline/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/rubyposition_warichu/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/scope_both/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/scope_column/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/scope_row/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/textalign_center/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/textalign_end/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/textalign_justify/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/textalign_start/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/textdecorationtype_linethrough/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/textdecorationtype_none/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/textdecorationtype_overline/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/textdecorationtype_underline/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/width_auto/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/writingmode_lrtb/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/writingmode_rltb/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributename/writingmode_tbrl/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributeownerstandard/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributeownerstandard/css_100/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributeownerstandard/css_200/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributeownerstandard/get_owner/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributeownerstandard/html_320/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributeownerstandard/html_401/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributeownerstandard/layout/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributeownerstandard/list/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributeownerstandard/oeb_100/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributeownerstandard/printfield/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributeownerstandard/rtf_105/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributeownerstandard/table/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributeownerstandard/to_attributeownerstandard/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributeownerstandard/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/attributeownerstandard/xml_100/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/bibentryelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/blockquoteelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/blselement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/blstextelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/blstextelement/get_structuretextstate/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/blstextelement/settext/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/captionelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/codeelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/divelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/documentelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/element/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/element/appendchild/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/element/clearchilds/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/element/findelements/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/element/get_childelements/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/element/get_parentelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/element/insertchild/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/element/removechild/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/element/tag/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/element/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/elementlist/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/elementlist/get_count/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/elementlist/getenumerator/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/elementlist/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/elementlist/item/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/elementlistimplementation/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/elementlistimplementation/addelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/elementlistimplementation/elementlistimplementation/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/elementlistimplementation/get_count/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/elementlistimplementation/getenumerator/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/elementlistimplementation/insertelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/elementlistimplementation/item/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/elementlistimplementation/removeat/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/elementlistimplementation/removeelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/figureelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/formelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/formulaelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/groupingelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/headerelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/illustrationelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/illustrationelement/setimage/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/ilselement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/ilstextelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/ilstextelement/get_structuretextstate/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/ilstextelement/settext/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/indexelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/itextelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/itextelement/get_structuretextstate/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/itextelement/settext/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/linkelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/linkelement/get_hyperlink/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/linkelement/get_structuretextstate/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/linkelement/set_hyperlink/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/linkelement/settext/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/listchildelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/listelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/listlblelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/listlbodyelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/listlielement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/mcrelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/mcrelement/get_content/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/mcrelement/get_imagesrc/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/mcrelement/get_mcid/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/mcrelement/tag/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/mcrelement/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/nonstructelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/noteelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/objrelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/objrelement/tag/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/objrelement/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/paragraphelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/partelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/privateelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/quoteelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/referenceelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/rubychildelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/rubyelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/rubyrbelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/rubyrpelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/rubyrtelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/sectelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/spanelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structtreerootelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structtreerootelement/tag/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureattribute/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureattribute/get_isinitializedvalue/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureattribute/get_key/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureattribute/getarraynumbervalue/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureattribute/getarrayvalue/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureattribute/getnamevalue/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureattribute/getnumbervalue/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureattribute/getstringvalue/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureattribute/setarraynumbervalue/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureattribute/setarrayvalue/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureattribute/setcolorvalue/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureattribute/setnamevalue/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureattribute/setnumbervalue/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureattribute/setrectanglevalue/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureattribute/setstringvalue/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureattribute/structureattribute/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureattribute/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureattributecollection/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureattributecollection/createattributes/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureattributecollection/getattributes/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureattributes/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureattributes/get_owner/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureattributes/getattribute/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureattributes/setattribute/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureelement/changeparentelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureelement/clearid/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureelement/generateid/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureelement/get_actualtext/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureelement/get_alternativetext/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureelement/get_attributes/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureelement/get_defaultattributeowner/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureelement/get_expansiontext/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureelement/get_id/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureelement/get_language/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureelement/get_page/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureelement/get_structuretype/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureelement/get_title/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureelement/remove/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureelement/set_actualtext/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureelement/set_alternativetext/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureelement/set_expansiontext/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureelement/set_language/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureelement/set_title/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureelement/setid/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureelement/settag/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureelement/tag/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureelement/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretextstate/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretextstate/get_backgroundcolor/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretextstate/get_characterspacing/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretextstate/get_font/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretextstate/get_fontsize/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretextstate/get_fontstyle/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretextstate/get_foregroundcolor/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretextstate/get_horizontalscaling/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretextstate/get_linespacing/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretextstate/get_margininfo/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretextstate/get_strikeout/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretextstate/get_subscript/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretextstate/get_superscript/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretextstate/get_underline/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretextstate/get_wordspacing/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretextstate/set_backgroundcolor/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretextstate/set_characterspacing/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretextstate/set_font/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretextstate/set_fontsize/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretextstate/set_fontstyle/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretextstate/set_foregroundcolor/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretextstate/set_horizontalscaling/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretextstate/set_linespacing/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretextstate/set_margininfo/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretextstate/set_strikeout/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretextstate/set_subscript/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretextstate/set_superscript/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretextstate/set_underline/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretextstate/set_wordspacing/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypecategory/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypecategory/blses/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypecategory/groupingelements/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypecategory/illustrationelements/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypecategory/ilses/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypecategory/to_structuretypecategory/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypecategory/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/annot/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/art/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/bibentry/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/blockquote/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/caption/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/code/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/div/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/document/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/figure/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/form/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/formula/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/get_category/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/get_tag/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/h/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/h1/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/h2/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/h3/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/h4/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/h5/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/h6/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/index/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/l/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/lbl/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/lbody/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/li/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/link/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/nonstruct/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/note/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/p/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/part/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/private/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/quote/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/rb/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/reference/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/rp/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/rt/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/ruby/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/sect/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/span/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/table/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/tbody/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/td/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/tfoot/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/th/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/thead/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/to_structuretypestandard/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/toc/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/toci/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/tr/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/warichu/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/wp/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structuretypestandard/wt/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tablecellelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tablecellelement/get_alignment/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tablecellelement/get_backgroundcolor/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tablecellelement/get_border/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tablecellelement/get_colspan/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tablecellelement/get_defaultcelltextstate/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tablecellelement/get_isnoborder/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tablecellelement/get_iswordwrapped/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tablecellelement/get_margin/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tablecellelement/get_rowspan/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tablecellelement/get_structuretextstate/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tablecellelement/get_verticalalignment/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tablecellelement/set_alignment/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tablecellelement/set_backgroundcolor/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tablecellelement/set_border/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tablecellelement/set_colspan/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tablecellelement/set_defaultcelltextstate/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tablecellelement/set_isnoborder/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tablecellelement/set_iswordwrapped/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tablecellelement/set_margin/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tablecellelement/set_rowspan/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tablecellelement/set_verticalalignment/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tablecellelement/settext/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tablechildelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tableelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tableelement/createtbody/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tableelement/createtfoot/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tableelement/createthead/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tableelement/get_alignment/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tableelement/get_backgroundcolor/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tableelement/get_border/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tableelement/get_broken/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tableelement/get_columnadjustment/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tableelement/get_columnwidths/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tableelement/get_cornerstyle/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tableelement/get_defaultcellborder/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tableelement/get_defaultcellpadding/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tableelement/get_defaultcelltextstate/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tableelement/get_defaultcolumnwidth/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tableelement/get_isbordersincluded/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tableelement/get_isbroken/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tableelement/get_left/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tableelement/get_repeatingcolumnscount/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tableelement/get_repeatingrowscount/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tableelement/get_repeatingrowsstyle/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tableelement/get_top/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tableelement/set_alignment/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tableelement/set_backgroundcolor/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tableelement/set_border/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tableelement/set_broken/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tableelement/set_columnadjustment/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tableelement/set_columnwidths/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tableelement/set_cornerstyle/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tableelement/set_defaultcellborder/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tableelement/set_defaultcellpadding/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tableelement/set_defaultcelltextstate/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tableelement/set_defaultcolumnwidth/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tableelement/set_isbordersincluded/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tableelement/set_isbroken/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tableelement/set_left/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tableelement/set_repeatingcolumnscount/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tableelement/set_repeatingrowscount/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tableelement/set_repeatingrowsstyle/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tableelement/set_top/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tablerowcollectionelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tablerowcollectionelement/createtr/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tabletbodyelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tabletdelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tabletfootelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tabletheadelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tablethelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tabletrelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tabletrelement/createtd/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tabletrelement/createth/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tabletrelement/get_backgroundcolor/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tabletrelement/get_border/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tabletrelement/get_defaultcellborder/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tabletrelement/get_defaultcellpadding/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tabletrelement/get_defaultcelltextstate/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tabletrelement/get_fixedrowheight/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tabletrelement/get_isinnewpage/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tabletrelement/get_isrowbroken/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tabletrelement/get_minrowheight/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tabletrelement/get_verticalalignment/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tabletrelement/set_backgroundcolor/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tabletrelement/set_border/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tabletrelement/set_defaultcellborder/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tabletrelement/set_defaultcellpadding/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tabletrelement/set_defaultcelltextstate/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tabletrelement/set_fixedrowheight/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tabletrelement/set_isinnewpage/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tabletrelement/set_isrowbroken/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tabletrelement/set_minrowheight/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tabletrelement/set_verticalalignment/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tocelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/tocielement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/warichuchildelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/warichuelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/warichuwpelement/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/warichuwtelement/_index.md create mode 100644 english/cpp/aspose.pdf.multithreading/_index.md create mode 100644 english/cpp/aspose.pdf.multithreading/iinterruptmonitor/_index.md create mode 100644 english/cpp/aspose.pdf.multithreading/interruptmonitor/_index.md create mode 100644 english/cpp/aspose.pdf.operators/_index.md create mode 100644 english/cpp/aspose.pdf.operators/basicsetcolorandpatternoperator/_index.md create mode 100644 english/cpp/aspose.pdf.operators/basicsetcolorandpatternoperator/get_patternname/_index.md create mode 100644 english/cpp/aspose.pdf.operators/basicsetcoloroperator/_index.md create mode 100644 english/cpp/aspose.pdf.operators/basicsetcoloroperator/get_b/_index.md create mode 100644 english/cpp/aspose.pdf.operators/basicsetcoloroperator/get_c/_index.md create mode 100644 english/cpp/aspose.pdf.operators/basicsetcoloroperator/get_color/_index.md create mode 100644 english/cpp/aspose.pdf.operators/basicsetcoloroperator/get_g/_index.md create mode 100644 english/cpp/aspose.pdf.operators/basicsetcoloroperator/get_gray/_index.md create mode 100644 english/cpp/aspose.pdf.operators/basicsetcoloroperator/get_k/_index.md create mode 100644 english/cpp/aspose.pdf.operators/basicsetcoloroperator/get_m/_index.md create mode 100644 english/cpp/aspose.pdf.operators/basicsetcoloroperator/get_r/_index.md create mode 100644 english/cpp/aspose.pdf.operators/basicsetcoloroperator/get_y/_index.md create mode 100644 english/cpp/aspose.pdf.operators/bdc/_index.md create mode 100644 english/cpp/aspose.pdf.operators/bdc/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/bdc/bdc/_index.md create mode 100644 english/cpp/aspose.pdf.operators/bdc/get_properties/_index.md create mode 100644 english/cpp/aspose.pdf.operators/bdc/get_tag/_index.md create mode 100644 english/cpp/aspose.pdf.operators/bdc/set_tag/_index.md create mode 100644 english/cpp/aspose.pdf.operators/bdc/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.operators/bi/_index.md create mode 100644 english/cpp/aspose.pdf.operators/bi/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/bi/bi/_index.md create mode 100644 english/cpp/aspose.pdf.operators/blocktextoperator/_index.md create mode 100644 english/cpp/aspose.pdf.operators/blocktextoperator/blocktextoperator/_index.md create mode 100644 english/cpp/aspose.pdf.operators/bmc/_index.md create mode 100644 english/cpp/aspose.pdf.operators/bmc/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/bmc/bmc/_index.md create mode 100644 english/cpp/aspose.pdf.operators/bmc/get_tag/_index.md create mode 100644 english/cpp/aspose.pdf.operators/bmc/set_tag/_index.md create mode 100644 english/cpp/aspose.pdf.operators/bmc/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.operators/bt/_index.md create mode 100644 english/cpp/aspose.pdf.operators/bt/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/bt/bt/_index.md create mode 100644 english/cpp/aspose.pdf.operators/bt/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.operators/bx/_index.md create mode 100644 english/cpp/aspose.pdf.operators/bx/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/bx/bx/_index.md create mode 100644 english/cpp/aspose.pdf.operators/bx/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.operators/clip/_index.md create mode 100644 english/cpp/aspose.pdf.operators/clip/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/clip/clip/_index.md create mode 100644 english/cpp/aspose.pdf.operators/clip/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.operators/closepath/_index.md create mode 100644 english/cpp/aspose.pdf.operators/closepath/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/closepath/closepath/_index.md create mode 100644 english/cpp/aspose.pdf.operators/closepatheofillstroke/_index.md create mode 100644 english/cpp/aspose.pdf.operators/closepatheofillstroke/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/closepatheofillstroke/closepatheofillstroke/_index.md create mode 100644 english/cpp/aspose.pdf.operators/closepatheofillstroke/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.operators/closepathfillstroke/_index.md create mode 100644 english/cpp/aspose.pdf.operators/closepathfillstroke/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/closepathfillstroke/closepathfillstroke/_index.md create mode 100644 english/cpp/aspose.pdf.operators/closepathfillstroke/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.operators/closepathstroke/_index.md create mode 100644 english/cpp/aspose.pdf.operators/closepathstroke/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/closepathstroke/closepathstroke/_index.md create mode 100644 english/cpp/aspose.pdf.operators/closepathstroke/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.operators/concatenatematrix/_index.md create mode 100644 english/cpp/aspose.pdf.operators/concatenatematrix/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/concatenatematrix/concatenatematrix/_index.md create mode 100644 english/cpp/aspose.pdf.operators/concatenatematrix/get_matrix/_index.md create mode 100644 english/cpp/aspose.pdf.operators/concatenatematrix/set_matrix/_index.md create mode 100644 english/cpp/aspose.pdf.operators/concatenatematrix/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.operators/curveto/_index.md create mode 100644 english/cpp/aspose.pdf.operators/curveto/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/curveto/curveto/_index.md create mode 100644 english/cpp/aspose.pdf.operators/curveto/get_points/_index.md create mode 100644 english/cpp/aspose.pdf.operators/curveto/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.operators/curveto1/_index.md create mode 100644 english/cpp/aspose.pdf.operators/curveto1/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/curveto1/curveto1/_index.md create mode 100644 english/cpp/aspose.pdf.operators/curveto1/get_points/_index.md create mode 100644 english/cpp/aspose.pdf.operators/curveto2/_index.md create mode 100644 english/cpp/aspose.pdf.operators/curveto2/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/curveto2/curveto2/_index.md create mode 100644 english/cpp/aspose.pdf.operators/curveto2/get_points/_index.md create mode 100644 english/cpp/aspose.pdf.operators/do/_index.md create mode 100644 english/cpp/aspose.pdf.operators/do/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/do/do/_index.md create mode 100644 english/cpp/aspose.pdf.operators/do/get_name/_index.md create mode 100644 english/cpp/aspose.pdf.operators/do/set_name/_index.md create mode 100644 english/cpp/aspose.pdf.operators/do/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.operators/dp/_index.md create mode 100644 english/cpp/aspose.pdf.operators/dp/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/dp/dp/_index.md create mode 100644 english/cpp/aspose.pdf.operators/dp/get_tag/_index.md create mode 100644 english/cpp/aspose.pdf.operators/dp/set_tag/_index.md create mode 100644 english/cpp/aspose.pdf.operators/dp/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.operators/ei/_index.md create mode 100644 english/cpp/aspose.pdf.operators/ei/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/ei/ei/_index.md create mode 100644 english/cpp/aspose.pdf.operators/emc/_index.md create mode 100644 english/cpp/aspose.pdf.operators/emc/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/emc/emc/_index.md create mode 100644 english/cpp/aspose.pdf.operators/emc/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.operators/endpath/_index.md create mode 100644 english/cpp/aspose.pdf.operators/endpath/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/endpath/endpath/_index.md create mode 100644 english/cpp/aspose.pdf.operators/endpath/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.operators/eoclip/_index.md create mode 100644 english/cpp/aspose.pdf.operators/eoclip/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/eoclip/eoclip/_index.md create mode 100644 english/cpp/aspose.pdf.operators/eofill/_index.md create mode 100644 english/cpp/aspose.pdf.operators/eofill/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/eofill/eofill/_index.md create mode 100644 english/cpp/aspose.pdf.operators/eofillstroke/_index.md create mode 100644 english/cpp/aspose.pdf.operators/eofillstroke/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/eofillstroke/eofillstroke/_index.md create mode 100644 english/cpp/aspose.pdf.operators/et/_index.md create mode 100644 english/cpp/aspose.pdf.operators/et/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/et/et/_index.md create mode 100644 english/cpp/aspose.pdf.operators/et/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.operators/ex/_index.md create mode 100644 english/cpp/aspose.pdf.operators/ex/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/ex/ex/_index.md create mode 100644 english/cpp/aspose.pdf.operators/fill/_index.md create mode 100644 english/cpp/aspose.pdf.operators/fill/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/fill/fill/_index.md create mode 100644 english/cpp/aspose.pdf.operators/fill/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.operators/fillstroke/_index.md create mode 100644 english/cpp/aspose.pdf.operators/fillstroke/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/fillstroke/fillstroke/_index.md create mode 100644 english/cpp/aspose.pdf.operators/fillstroke/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.operators/glyphposition/_index.md create mode 100644 english/cpp/aspose.pdf.operators/glyphposition/get_position/_index.md create mode 100644 english/cpp/aspose.pdf.operators/glyphposition/get_text/_index.md create mode 100644 english/cpp/aspose.pdf.operators/glyphposition/glyphposition/_index.md create mode 100644 english/cpp/aspose.pdf.operators/grestore/_index.md create mode 100644 english/cpp/aspose.pdf.operators/grestore/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/grestore/grestore/_index.md create mode 100644 english/cpp/aspose.pdf.operators/grestore/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.operators/gs/_index.md create mode 100644 english/cpp/aspose.pdf.operators/gs/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/gs/get_name/_index.md create mode 100644 english/cpp/aspose.pdf.operators/gs/gs/_index.md create mode 100644 english/cpp/aspose.pdf.operators/gs/set_name/_index.md create mode 100644 english/cpp/aspose.pdf.operators/gs/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.operators/gsave/_index.md create mode 100644 english/cpp/aspose.pdf.operators/gsave/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/gsave/gsave/_index.md create mode 100644 english/cpp/aspose.pdf.operators/gsave/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.operators/id/_index.md create mode 100644 english/cpp/aspose.pdf.operators/id/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/id/id/_index.md create mode 100644 english/cpp/aspose.pdf.operators/linecap/_index.md create mode 100644 english/cpp/aspose.pdf.operators/linejoin/_index.md create mode 100644 english/cpp/aspose.pdf.operators/lineto/_index.md create mode 100644 english/cpp/aspose.pdf.operators/lineto/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/lineto/get_x/_index.md create mode 100644 english/cpp/aspose.pdf.operators/lineto/get_y/_index.md create mode 100644 english/cpp/aspose.pdf.operators/lineto/lineto/_index.md create mode 100644 english/cpp/aspose.pdf.operators/lineto/set_x/_index.md create mode 100644 english/cpp/aspose.pdf.operators/lineto/set_y/_index.md create mode 100644 english/cpp/aspose.pdf.operators/lineto/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.operators/movetextposition/_index.md create mode 100644 english/cpp/aspose.pdf.operators/movetextposition/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/movetextposition/get_x/_index.md create mode 100644 english/cpp/aspose.pdf.operators/movetextposition/get_y/_index.md create mode 100644 english/cpp/aspose.pdf.operators/movetextposition/movetextposition/_index.md create mode 100644 english/cpp/aspose.pdf.operators/movetextposition/set_x/_index.md create mode 100644 english/cpp/aspose.pdf.operators/movetextposition/set_y/_index.md create mode 100644 english/cpp/aspose.pdf.operators/movetextposition/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.operators/movetextpositionsetleading/_index.md create mode 100644 english/cpp/aspose.pdf.operators/movetextpositionsetleading/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/movetextpositionsetleading/get_x/_index.md create mode 100644 english/cpp/aspose.pdf.operators/movetextpositionsetleading/get_y/_index.md create mode 100644 english/cpp/aspose.pdf.operators/movetextpositionsetleading/movetextpositionsetleading/_index.md create mode 100644 english/cpp/aspose.pdf.operators/movetextpositionsetleading/set_x/_index.md create mode 100644 english/cpp/aspose.pdf.operators/movetextpositionsetleading/set_y/_index.md create mode 100644 english/cpp/aspose.pdf.operators/moveto/_index.md create mode 100644 english/cpp/aspose.pdf.operators/moveto/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/moveto/get_x/_index.md create mode 100644 english/cpp/aspose.pdf.operators/moveto/get_y/_index.md create mode 100644 english/cpp/aspose.pdf.operators/moveto/moveto/_index.md create mode 100644 english/cpp/aspose.pdf.operators/moveto/set_x/_index.md create mode 100644 english/cpp/aspose.pdf.operators/moveto/set_y/_index.md create mode 100644 english/cpp/aspose.pdf.operators/moveto/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.operators/movetonextline/_index.md create mode 100644 english/cpp/aspose.pdf.operators/movetonextline/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/movetonextline/movetonextline/_index.md create mode 100644 english/cpp/aspose.pdf.operators/movetonextline/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.operators/movetonextlineshowtext/_index.md create mode 100644 english/cpp/aspose.pdf.operators/movetonextlineshowtext/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/movetonextlineshowtext/get_text/_index.md create mode 100644 english/cpp/aspose.pdf.operators/movetonextlineshowtext/movetonextlineshowtext/_index.md create mode 100644 english/cpp/aspose.pdf.operators/mp/_index.md create mode 100644 english/cpp/aspose.pdf.operators/mp/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/mp/get_tag/_index.md create mode 100644 english/cpp/aspose.pdf.operators/mp/mp/_index.md create mode 100644 english/cpp/aspose.pdf.operators/mp/set_tag/_index.md create mode 100644 english/cpp/aspose.pdf.operators/obsoletefill/_index.md create mode 100644 english/cpp/aspose.pdf.operators/obsoletefill/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/obsoletefill/obsoletefill/_index.md create mode 100644 english/cpp/aspose.pdf.operators/re/_index.md create mode 100644 english/cpp/aspose.pdf.operators/re/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/re/get_height/_index.md create mode 100644 english/cpp/aspose.pdf.operators/re/get_width/_index.md create mode 100644 english/cpp/aspose.pdf.operators/re/get_x/_index.md create mode 100644 english/cpp/aspose.pdf.operators/re/get_y/_index.md create mode 100644 english/cpp/aspose.pdf.operators/re/re/_index.md create mode 100644 english/cpp/aspose.pdf.operators/re/set_height/_index.md create mode 100644 english/cpp/aspose.pdf.operators/re/set_width/_index.md create mode 100644 english/cpp/aspose.pdf.operators/re/set_x/_index.md create mode 100644 english/cpp/aspose.pdf.operators/re/set_y/_index.md create mode 100644 english/cpp/aspose.pdf.operators/re/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.operators/selectfont/_index.md create mode 100644 english/cpp/aspose.pdf.operators/selectfont/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/selectfont/get_name/_index.md create mode 100644 english/cpp/aspose.pdf.operators/selectfont/get_size/_index.md create mode 100644 english/cpp/aspose.pdf.operators/selectfont/selectfont/_index.md create mode 100644 english/cpp/aspose.pdf.operators/selectfont/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setadvancedcolor/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setadvancedcolor/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setadvancedcolor/getcolor/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setadvancedcolor/setadvancedcolor/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setadvancedcolorstroke/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setadvancedcolorstroke/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setadvancedcolorstroke/getcolor/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setadvancedcolorstroke/setadvancedcolorstroke/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcharacterspacing/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcharacterspacing/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcharacterspacing/get_charspacing/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcharacterspacing/set_charspacing/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcharacterspacing/setcharacterspacing/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcharwidth/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcharwidth/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcharwidth/get_wx/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcharwidth/get_wy/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcharwidth/setcharwidth/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcharwidth/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcharwidthboundingbox/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcharwidthboundingbox/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcharwidthboundingbox/get_llx/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcharwidthboundingbox/get_lly/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcharwidthboundingbox/get_urx/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcharwidthboundingbox/get_ury/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcharwidthboundingbox/get_wx/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcharwidthboundingbox/get_wy/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcharwidthboundingbox/setcharwidthboundingbox/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcharwidthboundingbox/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcmykcolor/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcmykcolor/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcmykcolor/get_c/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcmykcolor/get_k/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcmykcolor/get_m/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcmykcolor/get_y/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcmykcolor/getcolor/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcmykcolor/set_c/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcmykcolor/set_k/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcmykcolor/set_m/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcmykcolor/set_y/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcmykcolor/setcmykcolor/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcmykcolorstroke/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcmykcolorstroke/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcmykcolorstroke/get_c/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcmykcolorstroke/get_k/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcmykcolorstroke/get_m/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcmykcolorstroke/get_y/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcmykcolorstroke/getcolor/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcmykcolorstroke/set_c/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcmykcolorstroke/set_k/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcmykcolorstroke/set_m/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcmykcolorstroke/set_y/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcmykcolorstroke/setcmykcolorstroke/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolor/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolor/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolor/get_b/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolor/get_c/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolor/get_g/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolor/get_k/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolor/get_m/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolor/get_r/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolor/get_y/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolor/getcolor/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolor/set_b/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolor/set_c/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolor/set_g/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolor/set_k/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolor/set_m/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolor/set_r/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolor/set_y/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolor/setcolor/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolor/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcoloroperator/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcoloroperator/getcolor/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolorrenderingintent/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolorrenderingintent/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolorrenderingintent/get_intentname/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolorrenderingintent/set_intentname/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolorrenderingintent/setcolorrenderingintent/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolorspace/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolorspace/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolorspace/get_name/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolorspace/set_name/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolorspace/setcolorspace/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolorspacestroke/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolorspacestroke/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolorspacestroke/get_name/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolorspacestroke/set_name/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolorspacestroke/setcolorspacestroke/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolorstroke/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolorstroke/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolorstroke/get_b/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolorstroke/get_c/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolorstroke/get_g/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolorstroke/get_k/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolorstroke/get_m/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolorstroke/get_r/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolorstroke/get_y/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolorstroke/getcolor/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolorstroke/set_b/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolorstroke/set_c/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolorstroke/set_g/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolorstroke/set_k/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolorstroke/set_m/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolorstroke/set_r/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolorstroke/set_y/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setcolorstroke/setcolorstroke/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setdash/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setdash/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setdash/get_pattern/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setdash/get_phase/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setdash/set_pattern/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setdash/set_phase/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setdash/setdash/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setdash/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setflat/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setflat/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setflat/get_flatness/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setflat/set_flatness/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setflat/setflat/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setglyphspositionshowtext/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setglyphspositionshowtext/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setglyphspositionshowtext/get_glyphpositions/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setglyphspositionshowtext/get_text/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setglyphspositionshowtext/setglyphspositionshowtext/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setglyphspositionshowtext/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setgray/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setgray/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setgray/get_gray/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setgray/getcolor/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setgray/set_gray/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setgray/setgray/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setgray/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setgraystroke/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setgraystroke/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setgraystroke/get_gray/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setgraystroke/getcolor/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setgraystroke/set_gray/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setgraystroke/setgraystroke/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setgraystroke/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.operators/sethorizontaltextscaling/_index.md create mode 100644 english/cpp/aspose.pdf.operators/sethorizontaltextscaling/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/sethorizontaltextscaling/get_horizontalscaling/_index.md create mode 100644 english/cpp/aspose.pdf.operators/sethorizontaltextscaling/set_horizontalscaling/_index.md create mode 100644 english/cpp/aspose.pdf.operators/sethorizontaltextscaling/sethorizontaltextscaling/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setlinecap/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setlinecap/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setlinecap/get_cap/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setlinecap/set_cap/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setlinecap/setlinecap/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setlinejoin/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setlinejoin/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setlinejoin/get_join/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setlinejoin/set_join/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setlinejoin/setlinejoin/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setlinewidth/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setlinewidth/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setlinewidth/get_width/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setlinewidth/set_width/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setlinewidth/setlinewidth/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setlinewidth/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setmiterlimit/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setmiterlimit/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setmiterlimit/get_miterlimit/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setmiterlimit/set_miterlimit/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setmiterlimit/setmiterlimit/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setrgbcolor/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setrgbcolor/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setrgbcolor/get_b/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setrgbcolor/get_g/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setrgbcolor/get_r/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setrgbcolor/getcolor/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setrgbcolor/set_b/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setrgbcolor/set_g/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setrgbcolor/set_r/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setrgbcolor/setrgbcolor/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setrgbcolor/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setrgbcolorstroke/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setrgbcolorstroke/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setrgbcolorstroke/get_b/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setrgbcolorstroke/get_g/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setrgbcolorstroke/get_r/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setrgbcolorstroke/getcolor/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setrgbcolorstroke/set_b/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setrgbcolorstroke/set_g/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setrgbcolorstroke/set_r/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setrgbcolorstroke/setrgbcolorstroke/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setrgbcolorstroke/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setspacingmovetonextlineshowtext/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setspacingmovetonextlineshowtext/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setspacingmovetonextlineshowtext/get_ac/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setspacingmovetonextlineshowtext/get_aw/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setspacingmovetonextlineshowtext/get_text/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setspacingmovetonextlineshowtext/setspacingmovetonextlineshowtext/_index.md create mode 100644 english/cpp/aspose.pdf.operators/settextleading/_index.md create mode 100644 english/cpp/aspose.pdf.operators/settextleading/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/settextleading/get_leading/_index.md create mode 100644 english/cpp/aspose.pdf.operators/settextleading/set_leading/_index.md create mode 100644 english/cpp/aspose.pdf.operators/settextleading/settextleading/_index.md create mode 100644 english/cpp/aspose.pdf.operators/settextleading/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.operators/settextmatrix/_index.md create mode 100644 english/cpp/aspose.pdf.operators/settextmatrix/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/settextmatrix/get_matrix/_index.md create mode 100644 english/cpp/aspose.pdf.operators/settextmatrix/set_matrix/_index.md create mode 100644 english/cpp/aspose.pdf.operators/settextmatrix/settextmatrix/_index.md create mode 100644 english/cpp/aspose.pdf.operators/settextmatrix/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.operators/settextrenderingmode/_index.md create mode 100644 english/cpp/aspose.pdf.operators/settextrenderingmode/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/settextrenderingmode/settextrenderingmode/_index.md create mode 100644 english/cpp/aspose.pdf.operators/settextrise/_index.md create mode 100644 english/cpp/aspose.pdf.operators/settextrise/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/settextrise/get_textrise/_index.md create mode 100644 english/cpp/aspose.pdf.operators/settextrise/set_textrise/_index.md create mode 100644 english/cpp/aspose.pdf.operators/settextrise/settextrise/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setwordspacing/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setwordspacing/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setwordspacing/get_wordspacing/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setwordspacing/set_wordspacing/_index.md create mode 100644 english/cpp/aspose.pdf.operators/setwordspacing/setwordspacing/_index.md create mode 100644 english/cpp/aspose.pdf.operators/shfill/_index.md create mode 100644 english/cpp/aspose.pdf.operators/shfill/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/shfill/get_name/_index.md create mode 100644 english/cpp/aspose.pdf.operators/shfill/set_name/_index.md create mode 100644 english/cpp/aspose.pdf.operators/shfill/shfill/_index.md create mode 100644 english/cpp/aspose.pdf.operators/showtext/_index.md create mode 100644 english/cpp/aspose.pdf.operators/showtext/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/showtext/get_text/_index.md create mode 100644 english/cpp/aspose.pdf.operators/showtext/set_text/_index.md create mode 100644 english/cpp/aspose.pdf.operators/showtext/showtext/_index.md create mode 100644 english/cpp/aspose.pdf.operators/showtext/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.operators/stroke/_index.md create mode 100644 english/cpp/aspose.pdf.operators/stroke/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/stroke/stroke/_index.md create mode 100644 english/cpp/aspose.pdf.operators/stroke/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.operators/textoperator/_index.md create mode 100644 english/cpp/aspose.pdf.operators/textoperator/accept/_index.md create mode 100644 english/cpp/aspose.pdf.operators/textoperator/textoperator/_index.md create mode 100644 english/cpp/aspose.pdf.operators/textplaceoperator/_index.md create mode 100644 english/cpp/aspose.pdf.operators/textplaceoperator/textplaceoperator/_index.md create mode 100644 english/cpp/aspose.pdf.operators/textshowoperator/_index.md create mode 100644 english/cpp/aspose.pdf.operators/textshowoperator/get_text/_index.md create mode 100644 english/cpp/aspose.pdf.operators/textshowoperator/set_text/_index.md create mode 100644 english/cpp/aspose.pdf.operators/textshowoperator/textshowoperator/_index.md create mode 100644 english/cpp/aspose.pdf.operators/textstateoperator/_index.md create mode 100644 english/cpp/aspose.pdf.operators/textstateoperator/textstateoperator/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/imagecompressionoptions/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/imagecompressionoptions/get_compressimages/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/imagecompressionoptions/get_encoding/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/imagecompressionoptions/get_imagequality/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/imagecompressionoptions/get_maxresolution/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/imagecompressionoptions/get_resizeimages/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/imagecompressionoptions/get_version/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/imagecompressionoptions/imagecompressionoptions/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/imagecompressionoptions/set_compressimages/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/imagecompressionoptions/set_encoding/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/imagecompressionoptions/set_imagequality/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/imagecompressionoptions/set_maxresolution/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/imagecompressionoptions/set_resizeimages/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/imagecompressionoptions/set_version/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/imagecompressionversion/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/imageencoding/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/optimizationoptions/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/optimizationoptions/all/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/optimizationoptions/get_allowreusepagecontent/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/optimizationoptions/get_compressimages/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/optimizationoptions/get_compressobjects/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/optimizationoptions/get_imagecompressionoptions/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/optimizationoptions/get_imageencoding/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/optimizationoptions/get_imagequality/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/optimizationoptions/get_linkduplcatestreams/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/optimizationoptions/get_maxresoultion/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/optimizationoptions/get_removeprivateinfo/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/optimizationoptions/get_removeunusedobjects/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/optimizationoptions/get_removeunusedstreams/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/optimizationoptions/get_resizeimages/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/optimizationoptions/get_subsetfonts/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/optimizationoptions/get_unembedfonts/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/optimizationoptions/optimizationoptions/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/optimizationoptions/set_allowreusepagecontent/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/optimizationoptions/set_compressimages/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/optimizationoptions/set_compressobjects/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/optimizationoptions/set_imageencoding/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/optimizationoptions/set_imagequality/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/optimizationoptions/set_linkduplcatestreams/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/optimizationoptions/set_maxresoultion/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/optimizationoptions/set_removeprivateinfo/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/optimizationoptions/set_removeunusedobjects/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/optimizationoptions/set_removeunusedstreams/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/optimizationoptions/set_resizeimages/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/optimizationoptions/set_subsetfonts/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/optimizationoptions/set_unembedfonts/_index.md create mode 100644 english/cpp/aspose.pdf.pdfaoptionclasses/_index.md create mode 100644 english/cpp/aspose.pdf.pdfaoptionclasses/fontembeddingoptions/_index.md create mode 100644 english/cpp/aspose.pdf.pdfaoptionclasses/fontembeddingoptions/fontembeddingoptions/_index.md create mode 100644 english/cpp/aspose.pdf.pdfaoptionclasses/fontembeddingoptions/get_usedefaultsubstitution/_index.md create mode 100644 english/cpp/aspose.pdf.pdfaoptionclasses/fontembeddingoptions/set_usedefaultsubstitution/_index.md create mode 100644 english/cpp/aspose.pdf.pdfaoptionclasses/tounicodeprocessingrules/_index.md create mode 100644 english/cpp/aspose.pdf.pdfaoptionclasses/tounicodeprocessingrules/get_mapnonlinkedsymbolsonspace/_index.md create mode 100644 english/cpp/aspose.pdf.pdfaoptionclasses/tounicodeprocessingrules/get_removespacesfromcmapnames/_index.md create mode 100644 english/cpp/aspose.pdf.pdfaoptionclasses/tounicodeprocessingrules/set_mapnonlinkedsymbolsonspace/_index.md create mode 100644 english/cpp/aspose.pdf.pdfaoptionclasses/tounicodeprocessingrules/set_removespacesfromcmapnames/_index.md create mode 100644 english/cpp/aspose.pdf.pdfaoptionclasses/tounicodeprocessingrules/tounicodeprocessingrules/_index.md create mode 100644 english/cpp/aspose.pdf.pdftomarkdown/_index.md create mode 100644 english/cpp/aspose.pdf.pdftomarkdown/emphasisstyle/_index.md create mode 100644 english/cpp/aspose.pdf.pdftomarkdown/headinglevels/_index.md create mode 100644 english/cpp/aspose.pdf.pdftomarkdown/headinglevels/addlevels/_index.md create mode 100644 english/cpp/aspose.pdf.pdftomarkdown/headinglevels/get_alllevels/_index.md create mode 100644 english/cpp/aspose.pdf.pdftomarkdown/headinglevels/headinglevels/_index.md create mode 100644 english/cpp/aspose.pdf.pdftomarkdown/headingrecognitionstrategy/_index.md create mode 100644 english/cpp/aspose.pdf.pdftomarkdown/headingstyle/_index.md create mode 100644 english/cpp/aspose.pdf.pdftomarkdown/linebreakstyle/_index.md create mode 100644 english/cpp/aspose.pdf.pdftomarkdown/markdownsaveoptions/_index.md create mode 100644 english/cpp/aspose.pdf.pdftomarkdown/markdownsaveoptions/get_areatoextract/_index.md create mode 100644 english/cpp/aspose.pdf.pdftomarkdown/markdownsaveoptions/get_emphasisstyle/_index.md create mode 100644 english/cpp/aspose.pdf.pdftomarkdown/markdownsaveoptions/get_extractvectorgraphics/_index.md create mode 100644 english/cpp/aspose.pdf.pdftomarkdown/markdownsaveoptions/get_headinglevels/_index.md create mode 100644 english/cpp/aspose.pdf.pdftomarkdown/markdownsaveoptions/get_headingrecognitionstrategy/_index.md create mode 100644 english/cpp/aspose.pdf.pdftomarkdown/markdownsaveoptions/get_headingstyle/_index.md create mode 100644 english/cpp/aspose.pdf.pdftomarkdown/markdownsaveoptions/get_linebreakstyle/_index.md create mode 100644 english/cpp/aspose.pdf.pdftomarkdown/markdownsaveoptions/get_resourcesdirectoryname/_index.md create mode 100644 english/cpp/aspose.pdf.pdftomarkdown/markdownsaveoptions/get_subscriptandsuperscriptconversion/_index.md create mode 100644 english/cpp/aspose.pdf.pdftomarkdown/markdownsaveoptions/get_useimagehtmltag/_index.md create mode 100644 english/cpp/aspose.pdf.pdftomarkdown/markdownsaveoptions/markdownsaveoptions/_index.md create mode 100644 english/cpp/aspose.pdf.pdftomarkdown/markdownsaveoptions/set_areatoextract/_index.md create mode 100644 english/cpp/aspose.pdf.pdftomarkdown/markdownsaveoptions/set_emphasisstyle/_index.md create mode 100644 english/cpp/aspose.pdf.pdftomarkdown/markdownsaveoptions/set_extractvectorgraphics/_index.md create mode 100644 english/cpp/aspose.pdf.pdftomarkdown/markdownsaveoptions/set_headinglevels/_index.md create mode 100644 english/cpp/aspose.pdf.pdftomarkdown/markdownsaveoptions/set_headingrecognitionstrategy/_index.md create mode 100644 english/cpp/aspose.pdf.pdftomarkdown/markdownsaveoptions/set_headingstyle/_index.md create mode 100644 english/cpp/aspose.pdf.pdftomarkdown/markdownsaveoptions/set_linebreakstyle/_index.md create mode 100644 english/cpp/aspose.pdf.pdftomarkdown/markdownsaveoptions/set_resourcesdirectoryname/_index.md create mode 100644 english/cpp/aspose.pdf.pdftomarkdown/markdownsaveoptions/set_subscriptandsuperscriptconversion/_index.md create mode 100644 english/cpp/aspose.pdf.pdftomarkdown/markdownsaveoptions/set_useimagehtmltag/_index.md create mode 100644 english/cpp/aspose.pdf.sanitization/_index.md create mode 100644 english/cpp/aspose.pdf.sanitization/irecovery/_index.md create mode 100644 english/cpp/aspose.pdf.sanitization/irecovery/get_log/_index.md create mode 100644 english/cpp/aspose.pdf.sanitization/irecovery/recover/_index.md create mode 100644 english/cpp/aspose.pdf.sanitization/irecovery/trimbottom/_index.md create mode 100644 english/cpp/aspose.pdf.sanitization/irecovery/trimtop/_index.md create mode 100644 english/cpp/aspose.pdf.sanitization/sanitizationexception/_index.md create mode 100644 english/cpp/aspose.pdf.structure/_index.md create mode 100644 english/cpp/aspose.pdf.structure/element/_index.md create mode 100644 english/cpp/aspose.pdf.structure/element/get_actualtext/_index.md create mode 100644 english/cpp/aspose.pdf.structure/element/get_alt/_index.md create mode 100644 english/cpp/aspose.pdf.structure/element/get_children/_index.md create mode 100644 english/cpp/aspose.pdf.structure/element/get_e/_index.md create mode 100644 english/cpp/aspose.pdf.structure/element/get_lang/_index.md create mode 100644 english/cpp/aspose.pdf.structure/element/remove/_index.md create mode 100644 english/cpp/aspose.pdf.structure/element/set_actualtext/_index.md create mode 100644 english/cpp/aspose.pdf.structure/element/set_alt/_index.md create mode 100644 english/cpp/aspose.pdf.structure/element/set_e/_index.md create mode 100644 english/cpp/aspose.pdf.structure/element/set_lang/_index.md create mode 100644 english/cpp/aspose.pdf.structure/elementcollection/_index.md create mode 100644 english/cpp/aspose.pdf.structure/elementcollection/begin/_index.md create mode 100644 english/cpp/aspose.pdf.structure/elementcollection/cbegin/_index.md create mode 100644 english/cpp/aspose.pdf.structure/elementcollection/cend/_index.md create mode 100644 english/cpp/aspose.pdf.structure/elementcollection/const_iterator/_index.md create mode 100644 english/cpp/aspose.pdf.structure/elementcollection/end/_index.md create mode 100644 english/cpp/aspose.pdf.structure/elementcollection/get_count/_index.md create mode 100644 english/cpp/aspose.pdf.structure/elementcollection/getenumerator/_index.md create mode 100644 english/cpp/aspose.pdf.structure/elementcollection/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf.structure/elementcollection/iterator/_index.md create mode 100644 english/cpp/aspose.pdf.structure/elementcollection/iterator_holder_type/_index.md create mode 100644 english/cpp/aspose.pdf.structure/elementcollection/remove/_index.md create mode 100644 english/cpp/aspose.pdf.structure/elementcollection/virtualizebeginconstiterator/_index.md create mode 100644 english/cpp/aspose.pdf.structure/elementcollection/virtualizebeginiterator/_index.md create mode 100644 english/cpp/aspose.pdf.structure/elementcollection/virtualized_iterator/_index.md create mode 100644 english/cpp/aspose.pdf.structure/elementcollection/virtualized_iterator_element/_index.md create mode 100644 english/cpp/aspose.pdf.structure/elementcollection/virtualizeendconstiterator/_index.md create mode 100644 english/cpp/aspose.pdf.structure/elementcollection/virtualizeenditerator/_index.md create mode 100644 english/cpp/aspose.pdf.structure/figureelement/_index.md create mode 100644 english/cpp/aspose.pdf.structure/figureelement/get_image/_index.md create mode 100644 english/cpp/aspose.pdf.structure/rootelement/_index.md create mode 100644 english/cpp/aspose.pdf.structure/structelement/_index.md create mode 100644 english/cpp/aspose.pdf.structure/textelement/_index.md create mode 100644 english/cpp/aspose.pdf.structure/textelement/get_text/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/itaggedcontent/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/itaggedcontent/createannotelement/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/itaggedcontent/createartelement/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/itaggedcontent/createbibentryelement/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/itaggedcontent/createblockquoteelement/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/itaggedcontent/createcaptionelement/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/itaggedcontent/createcodeelement/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/itaggedcontent/createdivelement/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/itaggedcontent/createfigureelement/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/itaggedcontent/createformelement/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/itaggedcontent/createformulaelement/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/itaggedcontent/createheaderelement/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/itaggedcontent/createindexelement/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/itaggedcontent/createlinkelement/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/itaggedcontent/createlistelement/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/itaggedcontent/createnonstructelement/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/itaggedcontent/createnoteelement/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/itaggedcontent/createparagraphelement/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/itaggedcontent/createpartelement/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/itaggedcontent/createprivateelement/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/itaggedcontent/createquoteelement/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/itaggedcontent/createreferenceelement/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/itaggedcontent/createrubyelement/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/itaggedcontent/createsectelement/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/itaggedcontent/createspanelement/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/itaggedcontent/createtableelement/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/itaggedcontent/createtabletbodyelement/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/itaggedcontent/createtabletdelement/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/itaggedcontent/createtabletfootelement/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/itaggedcontent/createtabletheadelement/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/itaggedcontent/createtablethelement/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/itaggedcontent/createtabletrelement/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/itaggedcontent/createtocelement/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/itaggedcontent/createtocielement/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/itaggedcontent/createwarichuelement/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/itaggedcontent/get_rootelement/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/itaggedcontent/get_structtreerootelement/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/itaggedcontent/get_structuretextstate/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/itaggedcontent/setlanguage/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/itaggedcontent/settitle/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/taggedexception/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/taggedpdfexceptioncode/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/taggedpdfexceptioncode/element_appendingimpossible/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/taggedpdfexceptioncode/element_couldnotbemapped/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/taggedpdfexceptioncode/element_elementalreadyappended/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/taggedpdfexceptioncode/getmessage/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/taggedpdfexceptioncode/rolemap_nonstandardstructuretypealreadymapped/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/taggedpdfexceptioncode/rolemap_standardstructuretypecannotberemapped/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/taggedpdfexceptioncode/structureattribute_arraymustcontainxelements/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/taggedpdfexceptioncode/structureattribute_attributecollectionisabsent/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/taggedpdfexceptioncode/structureattribute_attributeownermustbe/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/taggedpdfexceptioncode/structureattribute_doesntallowvalue/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/taggedpdfexceptioncode/structureattribute_valuewasnotinitialized/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/taggedpdfexceptioncode/structureelement_structureelementidcannotbenullorempty/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/taggedpdfexceptioncode/structureelement_structureelementwithidalreadyexists/_index.md create mode 100644 english/cpp/aspose.pdf.tagged/taggedpdfexceptioncode/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.text/_index.md create mode 100644 english/cpp/aspose.pdf.text/absorbedcell/_index.md create mode 100644 english/cpp/aspose.pdf.text/absorbedcell/compareto/_index.md create mode 100644 english/cpp/aspose.pdf.text/absorbedcell/get_borderinfo/_index.md create mode 100644 english/cpp/aspose.pdf.text/absorbedcell/get_colspan/_index.md create mode 100644 english/cpp/aspose.pdf.text/absorbedcell/get_rectangle/_index.md create mode 100644 english/cpp/aspose.pdf.text/absorbedcell/get_textfragments/_index.md create mode 100644 english/cpp/aspose.pdf.text/absorbedrow/_index.md create mode 100644 english/cpp/aspose.pdf.text/absorbedrow/compareto/_index.md create mode 100644 english/cpp/aspose.pdf.text/absorbedrow/get_celllist/_index.md create mode 100644 english/cpp/aspose.pdf.text/absorbedrow/get_rectangle/_index.md create mode 100644 english/cpp/aspose.pdf.text/absorbedtable/_index.md create mode 100644 english/cpp/aspose.pdf.text/absorbedtable/compareto/_index.md create mode 100644 english/cpp/aspose.pdf.text/absorbedtable/get_pagenum/_index.md create mode 100644 english/cpp/aspose.pdf.text/absorbedtable/get_rectangle/_index.md create mode 100644 english/cpp/aspose.pdf.text/absorbedtable/get_rowlist/_index.md create mode 100644 english/cpp/aspose.pdf.text/charinfo/_index.md create mode 100644 english/cpp/aspose.pdf.text/charinfo/get_position/_index.md create mode 100644 english/cpp/aspose.pdf.text/charinfo/get_rectangle/_index.md create mode 100644 english/cpp/aspose.pdf.text/charinfocollection/_index.md create mode 100644 english/cpp/aspose.pdf.text/charinfocollection/add/_index.md create mode 100644 english/cpp/aspose.pdf.text/charinfocollection/clear/_index.md create mode 100644 english/cpp/aspose.pdf.text/charinfocollection/contains/_index.md create mode 100644 english/cpp/aspose.pdf.text/charinfocollection/copyto/_index.md create mode 100644 english/cpp/aspose.pdf.text/charinfocollection/get_count/_index.md create mode 100644 english/cpp/aspose.pdf.text/charinfocollection/get_isreadonly/_index.md create mode 100644 english/cpp/aspose.pdf.text/charinfocollection/get_issynchronized/_index.md create mode 100644 english/cpp/aspose.pdf.text/charinfocollection/get_syncroot/_index.md create mode 100644 english/cpp/aspose.pdf.text/charinfocollection/getenumerator/_index.md create mode 100644 english/cpp/aspose.pdf.text/charinfocollection/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf.text/charinfocollection/remove/_index.md create mode 100644 english/cpp/aspose.pdf.text/coordinateorigin/_index.md create mode 100644 english/cpp/aspose.pdf.text/customfontsubstitutionbase/_index.md create mode 100644 english/cpp/aspose.pdf.text/customfontsubstitutionbase/trysubstitute/_index.md create mode 100644 english/cpp/aspose.pdf.text/filefontsource/_index.md create mode 100644 english/cpp/aspose.pdf.text/filefontsource/equals/_index.md create mode 100644 english/cpp/aspose.pdf.text/filefontsource/filefontsource/_index.md create mode 100644 english/cpp/aspose.pdf.text/filefontsource/get_filepath/_index.md create mode 100644 english/cpp/aspose.pdf.text/filefontsource/set_filepath/_index.md create mode 100644 english/cpp/aspose.pdf.text/folderfontsource/_index.md create mode 100644 english/cpp/aspose.pdf.text/folderfontsource/equals/_index.md create mode 100644 english/cpp/aspose.pdf.text/folderfontsource/folderfontsource/_index.md create mode 100644 english/cpp/aspose.pdf.text/folderfontsource/get_folderpath/_index.md create mode 100644 english/cpp/aspose.pdf.text/folderfontsource/set_folderpath/_index.md create mode 100644 english/cpp/aspose.pdf.text/font/_index.md create mode 100644 english/cpp/aspose.pdf.text/font/cppissettrailerable/_index.md create mode 100644 english/cpp/aspose.pdf.text/font/get_basefont/_index.md create mode 100644 english/cpp/aspose.pdf.text/font/get_decodedfontname/_index.md create mode 100644 english/cpp/aspose.pdf.text/font/get_fontname/_index.md create mode 100644 english/cpp/aspose.pdf.text/font/get_fontoptions/_index.md create mode 100644 english/cpp/aspose.pdf.text/font/get_isaccessible/_index.md create mode 100644 english/cpp/aspose.pdf.text/font/get_isembedded/_index.md create mode 100644 english/cpp/aspose.pdf.text/font/get_issubset/_index.md create mode 100644 english/cpp/aspose.pdf.text/font/getlastfontembeddingerror/_index.md create mode 100644 english/cpp/aspose.pdf.text/font/measurestring/_index.md create mode 100644 english/cpp/aspose.pdf.text/font/save/_index.md create mode 100644 english/cpp/aspose.pdf.text/font/set_isembedded/_index.md create mode 100644 english/cpp/aspose.pdf.text/font/set_issubset/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontabsorber/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontabsorber/fontabsorber/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontabsorber/get_fonts/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontabsorber/visit/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontcollection/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontcollection/add/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontcollection/contains/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontcollection/copyto/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontcollection/get_count/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontcollection/get_isreadonly/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontcollection/get_issynchronized/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontcollection/get_syncroot/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontcollection/getenumerator/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontcollection/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontcollection/remove/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontrepository/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontrepository/findfont/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontrepository/get_sources/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontrepository/get_substitutions/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontrepository/loadfonts/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontrepository/openfont/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontrepository/reloadfonts/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontsource/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontsourcecollection/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontsourcecollection/add/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontsourcecollection/clear/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontsourcecollection/contains/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontsourcecollection/copyto/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontsourcecollection/delete/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontsourcecollection/get_count/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontsourcecollection/get_issynchronized/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontsourcecollection/get_syncroot/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontsourcecollection/getenumerator/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontsourcecollection/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontsourcecollection/remove/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontstyles/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontsubstitution/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontsubstitutioncollection/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontsubstitutioncollection/add/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontsubstitutioncollection/clear/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontsubstitutioncollection/contains/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontsubstitutioncollection/copyto/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontsubstitutioncollection/get_count/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontsubstitutioncollection/get_issynchronized/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontsubstitutioncollection/get_syncroot/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontsubstitutioncollection/getenumerator/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontsubstitutioncollection/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf.text/fontsubstitutioncollection/remove/_index.md create mode 100644 english/cpp/aspose.pdf.text/fonttypes/_index.md create mode 100644 english/cpp/aspose.pdf.text/ifontoptions/_index.md create mode 100644 english/cpp/aspose.pdf.text/ifontoptions/get_notifyaboutfontembeddingerror/_index.md create mode 100644 english/cpp/aspose.pdf.text/ifontoptions/set_notifyaboutfontembeddingerror/_index.md create mode 100644 english/cpp/aspose.pdf.text/ifontsubstitutioncallback/_index.md create mode 100644 english/cpp/aspose.pdf.text/ifontsubstitutioncallback/get_notifyaboutfontsubstitutions/_index.md create mode 100644 english/cpp/aspose.pdf.text/ifontsubstitutioncallback/get_registrar/_index.md create mode 100644 english/cpp/aspose.pdf.text/ifontsubstitutioncallback/notifyaboutsubstitution/_index.md create mode 100644 english/cpp/aspose.pdf.text/ifontsubstitutionregistrator/_index.md create mode 100644 english/cpp/aspose.pdf.text/ifontsubstitutionregistrator/getallsubstitutions/_index.md create mode 100644 english/cpp/aspose.pdf.text/ifontsubstitutionregistrator/registrysubstitution/_index.md create mode 100644 english/cpp/aspose.pdf.text/itableelement/_index.md create mode 100644 english/cpp/aspose.pdf.text/itableelement/get_rectangle/_index.md create mode 100644 english/cpp/aspose.pdf.text/markupparagraph/_index.md create mode 100644 english/cpp/aspose.pdf.text/markupparagraph/get_continuationpagenumbers/_index.md create mode 100644 english/cpp/aspose.pdf.text/markupparagraph/get_fragments/_index.md create mode 100644 english/cpp/aspose.pdf.text/markupparagraph/get_lines/_index.md create mode 100644 english/cpp/aspose.pdf.text/markupparagraph/get_points/_index.md create mode 100644 english/cpp/aspose.pdf.text/markupparagraph/get_secondarypoints/_index.md create mode 100644 english/cpp/aspose.pdf.text/markupparagraph/get_text/_index.md create mode 100644 english/cpp/aspose.pdf.text/markupparagraph/set_text/_index.md create mode 100644 english/cpp/aspose.pdf.text/markupsection/_index.md create mode 100644 english/cpp/aspose.pdf.text/markupsection/get_fragments/_index.md create mode 100644 english/cpp/aspose.pdf.text/markupsection/get_paragraphs/_index.md create mode 100644 english/cpp/aspose.pdf.text/markupsection/get_rectangle/_index.md create mode 100644 english/cpp/aspose.pdf.text/memoryfontsource/_index.md create mode 100644 english/cpp/aspose.pdf.text/memoryfontsource/dispose/_index.md create mode 100644 english/cpp/aspose.pdf.text/memoryfontsource/equals/_index.md create mode 100644 english/cpp/aspose.pdf.text/memoryfontsource/get_fontbytes/_index.md create mode 100644 english/cpp/aspose.pdf.text/memoryfontsource/memoryfontsource/_index.md create mode 100644 english/cpp/aspose.pdf.text/onsegmentchangedeventargs/_index.md create mode 100644 english/cpp/aspose.pdf.text/onsegmentchangedeventargs/get_initialsegmenttextlength/_index.md create mode 100644 english/cpp/aspose.pdf.text/onsegmentchangedeventargs/get_segmentafter/_index.md create mode 100644 english/cpp/aspose.pdf.text/onsegmentchangedeventargs/get_segmentchanged/_index.md create mode 100644 english/cpp/aspose.pdf.text/onsegmentchangedeventargs/onsegmentchangedeventargs/_index.md create mode 100644 english/cpp/aspose.pdf.text/pagemarkup/_index.md create mode 100644 english/cpp/aspose.pdf.text/pagemarkup/get_ismulticolumnparagraphsallowed/_index.md create mode 100644 english/cpp/aspose.pdf.text/pagemarkup/get_number/_index.md create mode 100644 english/cpp/aspose.pdf.text/pagemarkup/get_paragraphs/_index.md create mode 100644 english/cpp/aspose.pdf.text/pagemarkup/get_rectangle/_index.md create mode 100644 english/cpp/aspose.pdf.text/pagemarkup/get_sections/_index.md create mode 100644 english/cpp/aspose.pdf.text/pagemarkup/get_textfragments/_index.md create mode 100644 english/cpp/aspose.pdf.text/pagemarkup/set_ismulticolumnparagraphsallowed/_index.md create mode 100644 english/cpp/aspose.pdf.text/paragraphabsorber/_index.md create mode 100644 english/cpp/aspose.pdf.text/paragraphabsorber/get_ismulticolumnparagraphsallowed/_index.md create mode 100644 english/cpp/aspose.pdf.text/paragraphabsorber/get_pagemarkups/_index.md create mode 100644 english/cpp/aspose.pdf.text/paragraphabsorber/get_paragraphabsorberoptions/_index.md create mode 100644 english/cpp/aspose.pdf.text/paragraphabsorber/get_sectionssearchdepth/_index.md create mode 100644 english/cpp/aspose.pdf.text/paragraphabsorber/get_textreplaceoptions/_index.md create mode 100644 english/cpp/aspose.pdf.text/paragraphabsorber/paragraphabsorber/_index.md create mode 100644 english/cpp/aspose.pdf.text/paragraphabsorber/set_ismulticolumnparagraphsallowed/_index.md create mode 100644 english/cpp/aspose.pdf.text/paragraphabsorber/set_paragraphabsorberoptions/_index.md create mode 100644 english/cpp/aspose.pdf.text/paragraphabsorber/set_sectionssearchdepth/_index.md create mode 100644 english/cpp/aspose.pdf.text/paragraphabsorber/set_textreplaceoptions/_index.md create mode 100644 english/cpp/aspose.pdf.text/paragraphabsorber/visit/_index.md create mode 100644 english/cpp/aspose.pdf.text/paragraphabsorberoptions/_index.md create mode 100644 english/cpp/aspose.pdf.text/paragraphabsorberoptions/get_searchrectangle/_index.md create mode 100644 english/cpp/aspose.pdf.text/paragraphabsorberoptions/get_sectionunbreakinghorizontaloverride/_index.md create mode 100644 english/cpp/aspose.pdf.text/paragraphabsorberoptions/get_sectionunbreakingverticaloverride/_index.md create mode 100644 english/cpp/aspose.pdf.text/paragraphabsorberoptions/paragraphabsorberoptions/_index.md create mode 100644 english/cpp/aspose.pdf.text/paragraphabsorberoptions/set_searchrectangle/_index.md create mode 100644 english/cpp/aspose.pdf.text/paragraphabsorberoptions/set_sectionunbreakinghorizontaloverride/_index.md create mode 100644 english/cpp/aspose.pdf.text/paragraphabsorberoptions/set_sectionunbreakingverticaloverride/_index.md create mode 100644 english/cpp/aspose.pdf.text/position/_index.md create mode 100644 english/cpp/aspose.pdf.text/position/equals/_index.md create mode 100644 english/cpp/aspose.pdf.text/position/get_xindent/_index.md create mode 100644 english/cpp/aspose.pdf.text/position/get_yindent/_index.md create mode 100644 english/cpp/aspose.pdf.text/position/position/_index.md create mode 100644 english/cpp/aspose.pdf.text/position/set_xindent/_index.md create mode 100644 english/cpp/aspose.pdf.text/position/set_yindent/_index.md create mode 100644 english/cpp/aspose.pdf.text/position/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.text/simplefontsubstitution/_index.md create mode 100644 english/cpp/aspose.pdf.text/simplefontsubstitution/get_originalfontname/_index.md create mode 100644 english/cpp/aspose.pdf.text/simplefontsubstitution/get_substitutionfontname/_index.md create mode 100644 english/cpp/aspose.pdf.text/simplefontsubstitution/simplefontsubstitution/_index.md create mode 100644 english/cpp/aspose.pdf.text/substitutionfontcategories/_index.md create mode 100644 english/cpp/aspose.pdf.text/systemfontsource/_index.md create mode 100644 english/cpp/aspose.pdf.text/systemfontsource/equals/_index.md create mode 100644 english/cpp/aspose.pdf.text/systemfontsource/systemfontsource/_index.md create mode 100644 english/cpp/aspose.pdf.text/systemfontssubstitution/_index.md create mode 100644 english/cpp/aspose.pdf.text/systemfontssubstitution/get_defaultfont/_index.md create mode 100644 english/cpp/aspose.pdf.text/systemfontssubstitution/get_fontcategories/_index.md create mode 100644 english/cpp/aspose.pdf.text/systemfontssubstitution/set_defaultfont/_index.md create mode 100644 english/cpp/aspose.pdf.text/systemfontssubstitution/set_fontcategories/_index.md create mode 100644 english/cpp/aspose.pdf.text/systemfontssubstitution/systemfontssubstitution/_index.md create mode 100644 english/cpp/aspose.pdf.text/tabalignmenttype/_index.md create mode 100644 english/cpp/aspose.pdf.text/tableabsorber/_index.md create mode 100644 english/cpp/aspose.pdf.text/tableabsorber/get_tablelist/_index.md create mode 100644 english/cpp/aspose.pdf.text/tableabsorber/get_textsearchoptions/_index.md create mode 100644 english/cpp/aspose.pdf.text/tableabsorber/get_useflowengine/_index.md create mode 100644 english/cpp/aspose.pdf.text/tableabsorber/remove/_index.md create mode 100644 english/cpp/aspose.pdf.text/tableabsorber/replace/_index.md create mode 100644 english/cpp/aspose.pdf.text/tableabsorber/set_textsearchoptions/_index.md create mode 100644 english/cpp/aspose.pdf.text/tableabsorber/set_useflowengine/_index.md create mode 100644 english/cpp/aspose.pdf.text/tableabsorber/tableabsorber/_index.md create mode 100644 english/cpp/aspose.pdf.text/tableabsorber/visit/_index.md create mode 100644 english/cpp/aspose.pdf.text/tableadertype/_index.md create mode 100644 english/cpp/aspose.pdf.text/tabstop/_index.md create mode 100644 english/cpp/aspose.pdf.text/tabstop/get_alignmenttype/_index.md create mode 100644 english/cpp/aspose.pdf.text/tabstop/get_isreadonly/_index.md create mode 100644 english/cpp/aspose.pdf.text/tabstop/get_leadertype/_index.md create mode 100644 english/cpp/aspose.pdf.text/tabstop/get_position/_index.md create mode 100644 english/cpp/aspose.pdf.text/tabstop/set_alignmenttype/_index.md create mode 100644 english/cpp/aspose.pdf.text/tabstop/set_leadertype/_index.md create mode 100644 english/cpp/aspose.pdf.text/tabstop/set_position/_index.md create mode 100644 english/cpp/aspose.pdf.text/tabstop/tabstop/_index.md create mode 100644 english/cpp/aspose.pdf.text/tabstops/_index.md create mode 100644 english/cpp/aspose.pdf.text/tabstops/add/_index.md create mode 100644 english/cpp/aspose.pdf.text/tabstops/clone/_index.md create mode 100644 english/cpp/aspose.pdf.text/tabstops/get_count/_index.md create mode 100644 english/cpp/aspose.pdf.text/tabstops/get_isreadonly/_index.md create mode 100644 english/cpp/aspose.pdf.text/tabstops/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf.text/tabstops/idx_set/_index.md create mode 100644 english/cpp/aspose.pdf.text/tabstops/tabstops/_index.md create mode 100644 english/cpp/aspose.pdf.text/textabsorber/_index.md create mode 100644 english/cpp/aspose.pdf.text/textabsorber/get_errors/_index.md create mode 100644 english/cpp/aspose.pdf.text/textabsorber/get_extractionoptions/_index.md create mode 100644 english/cpp/aspose.pdf.text/textabsorber/get_haserrors/_index.md create mode 100644 english/cpp/aspose.pdf.text/textabsorber/get_text/_index.md create mode 100644 english/cpp/aspose.pdf.text/textabsorber/get_textsearchoptions/_index.md create mode 100644 english/cpp/aspose.pdf.text/textabsorber/set_extractionoptions/_index.md create mode 100644 english/cpp/aspose.pdf.text/textabsorber/set_textsearchoptions/_index.md create mode 100644 english/cpp/aspose.pdf.text/textabsorber/textabsorber/_index.md create mode 100644 english/cpp/aspose.pdf.text/textabsorber/visit/_index.md create mode 100644 english/cpp/aspose.pdf.text/textbuilder/_index.md create mode 100644 english/cpp/aspose.pdf.text/textbuilder/appendparagraph/_index.md create mode 100644 english/cpp/aspose.pdf.text/textbuilder/appendtext/_index.md create mode 100644 english/cpp/aspose.pdf.text/textbuilder/textbuilder/_index.md create mode 100644 english/cpp/aspose.pdf.text/texteditoptions/_index.md create mode 100644 english/cpp/aspose.pdf.text/texteditoptions/get_allowlanguagetransformation/_index.md create mode 100644 english/cpp/aspose.pdf.text/texteditoptions/get_clippingpathsprocessing/_index.md create mode 100644 english/cpp/aspose.pdf.text/texteditoptions/get_fontreplacebehavior/_index.md create mode 100644 english/cpp/aspose.pdf.text/texteditoptions/get_languagetransformationbehavior/_index.md create mode 100644 english/cpp/aspose.pdf.text/texteditoptions/get_nocharacterbehavior/_index.md create mode 100644 english/cpp/aspose.pdf.text/texteditoptions/get_replacementfont/_index.md create mode 100644 english/cpp/aspose.pdf.text/texteditoptions/get_toattemptgetunderlinefromsource/_index.md create mode 100644 english/cpp/aspose.pdf.text/texteditoptions/set_allowlanguagetransformation/_index.md create mode 100644 english/cpp/aspose.pdf.text/texteditoptions/set_clippingpathsprocessing/_index.md create mode 100644 english/cpp/aspose.pdf.text/texteditoptions/set_fontreplacebehavior/_index.md create mode 100644 english/cpp/aspose.pdf.text/texteditoptions/set_languagetransformationbehavior/_index.md create mode 100644 english/cpp/aspose.pdf.text/texteditoptions/set_nocharacterbehavior/_index.md create mode 100644 english/cpp/aspose.pdf.text/texteditoptions/set_replacementfont/_index.md create mode 100644 english/cpp/aspose.pdf.text/texteditoptions/set_toattemptgetunderlinefromsource/_index.md create mode 100644 english/cpp/aspose.pdf.text/texteditoptions/texteditoptions/_index.md create mode 100644 english/cpp/aspose.pdf.text/textextractionerror/_index.md create mode 100644 english/cpp/aspose.pdf.text/textextractionerror/get_description/_index.md create mode 100644 english/cpp/aspose.pdf.text/textextractionerror/get_extractedtext/_index.md create mode 100644 english/cpp/aspose.pdf.text/textextractionerror/get_fontkey/_index.md create mode 100644 english/cpp/aspose.pdf.text/textextractionerror/get_fontname/_index.md create mode 100644 english/cpp/aspose.pdf.text/textextractionerror/get_location/_index.md create mode 100644 english/cpp/aspose.pdf.text/textextractionerror/get_summary/_index.md create mode 100644 english/cpp/aspose.pdf.text/textextractionerror/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.text/textextractionerrorlocation/_index.md create mode 100644 english/cpp/aspose.pdf.text/textextractionerrorlocation/get_fontusedkey/_index.md create mode 100644 english/cpp/aspose.pdf.text/textextractionerrorlocation/get_formkey/_index.md create mode 100644 english/cpp/aspose.pdf.text/textextractionerrorlocation/get_objecttype/_index.md create mode 100644 english/cpp/aspose.pdf.text/textextractionerrorlocation/get_operatorindex/_index.md create mode 100644 english/cpp/aspose.pdf.text/textextractionerrorlocation/get_operatorstring/_index.md create mode 100644 english/cpp/aspose.pdf.text/textextractionerrorlocation/get_pagenumber/_index.md create mode 100644 english/cpp/aspose.pdf.text/textextractionerrorlocation/get_path/_index.md create mode 100644 english/cpp/aspose.pdf.text/textextractionerrorlocation/get_textstartpoint/_index.md create mode 100644 english/cpp/aspose.pdf.text/textextractionerrorlocation/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.text/textextractionoptions/_index.md create mode 100644 english/cpp/aspose.pdf.text/textextractionoptions/get_formattingmode/_index.md create mode 100644 english/cpp/aspose.pdf.text/textextractionoptions/get_scalefactor/_index.md create mode 100644 english/cpp/aspose.pdf.text/textextractionoptions/set_formattingmode/_index.md create mode 100644 english/cpp/aspose.pdf.text/textextractionoptions/set_scalefactor/_index.md create mode 100644 english/cpp/aspose.pdf.text/textextractionoptions/textextractionoptions/_index.md create mode 100644 english/cpp/aspose.pdf.text/textformattingoptions/_index.md create mode 100644 english/cpp/aspose.pdf.text/textformattingoptions/get_firstlineindent/_index.md create mode 100644 english/cpp/aspose.pdf.text/textformattingoptions/get_hyphensymbol/_index.md create mode 100644 english/cpp/aspose.pdf.text/textformattingoptions/get_linespacing/_index.md create mode 100644 english/cpp/aspose.pdf.text/textformattingoptions/get_subsequentlinesindent/_index.md create mode 100644 english/cpp/aspose.pdf.text/textformattingoptions/get_wrapmode/_index.md create mode 100644 english/cpp/aspose.pdf.text/textformattingoptions/set_firstlineindent/_index.md create mode 100644 english/cpp/aspose.pdf.text/textformattingoptions/set_hyphensymbol/_index.md create mode 100644 english/cpp/aspose.pdf.text/textformattingoptions/set_linespacing/_index.md create mode 100644 english/cpp/aspose.pdf.text/textformattingoptions/set_subsequentlinesindent/_index.md create mode 100644 english/cpp/aspose.pdf.text/textformattingoptions/set_wrapmode/_index.md create mode 100644 english/cpp/aspose.pdf.text/textformattingoptions/textformattingoptions/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragment/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragment/clone/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragment/clonewithsegments/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragment/get_baselineposition/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragment/get_endnote/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragment/get_footnote/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragment/get_form/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragment/get_horizontalalignment/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragment/get_page/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragment/get_position/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragment/get_rectangle/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragment/get_replaceoptions/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragment/get_segments/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragment/get_text/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragment/get_textstate/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragment/get_verticalalignment/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragment/get_wraplinescount/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragment/isolatetextsegments/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragment/set_baselineposition/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragment/set_endnote/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragment/set_footnote/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragment/set_horizontalalignment/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragment/set_hyperlink/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragment/set_position/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragment/set_segments/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragment/set_text/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragment/set_verticalalignment/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragment/set_wraplinescount/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragment/textfragment/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentabsorber/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentabsorber/applyforallfragments/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentabsorber/get_errors/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentabsorber/get_extractionoptions/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentabsorber/get_haserrors/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentabsorber/get_phrase/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentabsorber/get_regexresults/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentabsorber/get_text/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentabsorber/get_texteditoptions/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentabsorber/get_textfragments/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentabsorber/get_textreplaceoptions/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentabsorber/get_textsearchoptions/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentabsorber/removealltext/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentabsorber/reset/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentabsorber/set_extractionoptions/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentabsorber/set_phrase/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentabsorber/set_texteditoptions/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentabsorber/set_textfragments/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentabsorber/set_textreplaceoptions/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentabsorber/set_textsearchoptions/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentabsorber/textfragmentabsorber/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentabsorber/visit/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentcollection/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentcollection/add/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentcollection/clear/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentcollection/contains/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentcollection/copyto/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentcollection/get_count/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentcollection/get_isreadonly/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentcollection/get_issynchronized/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentcollection/get_syncroot/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentcollection/getenumerator/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentcollection/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentcollection/remove/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/applychangesfrom/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/get_backgroundcolor/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/get_characterspacing/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/get_coordinateorigin/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/get_drawtextrectangleborder/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/get_font/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/get_fontsize/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/get_fontstyle/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/get_foregroundcolor/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/get_formattingoptions/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/get_horizontalalignment/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/get_horizontalscaling/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/get_invisible/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/get_linespacing/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/get_renderingmode/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/get_rotation/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/get_strikeout/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/get_strokingcolor/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/get_subscript/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/get_superscript/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/get_tabstops/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/get_underline/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/get_wordspacing/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/isfitrectangle/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/measureheight/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/measurestring/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/set_backgroundcolor/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/set_characterspacing/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/set_coordinateorigin/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/set_drawtextrectangleborder/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/set_font/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/set_fontsize/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/set_fontstyle/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/set_foregroundcolor/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/set_formattingoptions/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/set_horizontalalignment/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/set_horizontalscaling/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/set_invisible/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/set_linespacing/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/set_renderingmode/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/set_rotation/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/set_strikeout/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/set_strokingcolor/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/set_subscript/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/set_superscript/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/set_underline/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/set_wordspacing/_index.md create mode 100644 english/cpp/aspose.pdf.text/textfragmentstate/textfragmentstate/_index.md create mode 100644 english/cpp/aspose.pdf.text/textoptions/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraph/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraph/appendline/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraph/beginedit/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraph/endedit/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraph/get_firstlineindent/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraph/get_formattingoptions/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraph/get_horizontalalignment/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraph/get_justify/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraph/get_margin/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraph/get_position/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraph/get_rectangle/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraph/get_rotation/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraph/get_subsequentlinesindent/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraph/get_textrectangle/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraph/get_verticalalignment/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraph/set_firstlineindent/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraph/set_formattingoptions/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraph/set_horizontalalignment/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraph/set_justify/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraph/set_margin/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraph/set_position/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraph/set_rectangle/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraph/set_rotation/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraph/set_subsequentlinesindent/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraph/set_verticalalignment/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraph/textparagraph/_index.md create mode 100644 english/cpp/aspose.pdf.text/textrenderingmode/_index.md create mode 100644 english/cpp/aspose.pdf.text/textreplaceoptions/_index.md create mode 100644 english/cpp/aspose.pdf.text/textreplaceoptions/get_adjustmentnewlinespacing/_index.md create mode 100644 english/cpp/aspose.pdf.text/textreplaceoptions/get_ignoreparagraphs/_index.md create mode 100644 english/cpp/aspose.pdf.text/textreplaceoptions/get_leftadjustment/_index.md create mode 100644 english/cpp/aspose.pdf.text/textreplaceoptions/get_replaceadjustmentaction/_index.md create mode 100644 english/cpp/aspose.pdf.text/textreplaceoptions/get_replacescope/_index.md create mode 100644 english/cpp/aspose.pdf.text/textreplaceoptions/get_rightadjustment/_index.md create mode 100644 english/cpp/aspose.pdf.text/textreplaceoptions/set_adjustmentnewlinespacing/_index.md create mode 100644 english/cpp/aspose.pdf.text/textreplaceoptions/set_ignoreparagraphs/_index.md create mode 100644 english/cpp/aspose.pdf.text/textreplaceoptions/set_leftadjustment/_index.md create mode 100644 english/cpp/aspose.pdf.text/textreplaceoptions/set_replaceadjustmentaction/_index.md create mode 100644 english/cpp/aspose.pdf.text/textreplaceoptions/set_replacescope/_index.md create mode 100644 english/cpp/aspose.pdf.text/textreplaceoptions/set_rightadjustment/_index.md create mode 100644 english/cpp/aspose.pdf.text/textreplaceoptions/textreplaceoptions/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsearchoptions/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsearchoptions/get_ignoreresourcefonterrors/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsearchoptions/get_ignoreshadowtext/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsearchoptions/get_isregularexpressionused/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsearchoptions/get_limittopagebounds/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsearchoptions/get_logtextextractionerrors/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsearchoptions/get_rectangle/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsearchoptions/get_searchfortextrelatedgraphics/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsearchoptions/get_searchinannotations/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsearchoptions/get_storedgraphicelementsmaxcount/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsearchoptions/get_usefontengineencoding/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsearchoptions/set_ignoreresourcefonterrors/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsearchoptions/set_ignoreshadowtext/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsearchoptions/set_isregularexpressionused/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsearchoptions/set_limittopagebounds/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsearchoptions/set_logtextextractionerrors/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsearchoptions/set_rectangle/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsearchoptions/set_searchfortextrelatedgraphics/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsearchoptions/set_searchinannotations/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsearchoptions/set_storedgraphicelementsmaxcount/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsearchoptions/set_usefontengineencoding/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsearchoptions/textsearchoptions/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsegment/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsegment/get_baselineposition/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsegment/get_characters/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsegment/get_endcharindex/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsegment/get_hyperlink/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsegment/get_position/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsegment/get_rectangle/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsegment/get_startcharindex/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsegment/get_text/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsegment/get_texteditoptions/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsegment/get_textstate/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsegment/myhtmlencode/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsegment/set_baselineposition/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsegment/set_hyperlink/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsegment/set_position/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsegment/set_text/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsegment/set_texteditoptions/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsegment/set_textstate/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsegment/textsegment/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsegmentcollection/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsegmentcollection/add/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsegmentcollection/clear/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsegmentcollection/contains/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsegmentcollection/copyto/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsegmentcollection/get_count/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsegmentcollection/get_isreadonly/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsegmentcollection/get_issynchronized/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsegmentcollection/get_syncroot/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsegmentcollection/getenumerator/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsegmentcollection/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf.text/textsegmentcollection/remove/_index.md create mode 100644 english/cpp/aspose.pdf.text/textstate/_index.md create mode 100644 english/cpp/aspose.pdf.text/textstate/applychangesfrom/_index.md create mode 100644 english/cpp/aspose.pdf.text/textstate/get_backgroundcolor/_index.md create mode 100644 english/cpp/aspose.pdf.text/textstate/get_characterspacing/_index.md create mode 100644 english/cpp/aspose.pdf.text/textstate/get_coordinateorigin/_index.md create mode 100644 english/cpp/aspose.pdf.text/textstate/get_font/_index.md create mode 100644 english/cpp/aspose.pdf.text/textstate/get_fontsize/_index.md create mode 100644 english/cpp/aspose.pdf.text/textstate/get_fontstyle/_index.md create mode 100644 english/cpp/aspose.pdf.text/textstate/get_foregroundcolor/_index.md create mode 100644 english/cpp/aspose.pdf.text/textstate/get_horizontalalignment/_index.md create mode 100644 english/cpp/aspose.pdf.text/textstate/get_horizontalscaling/_index.md create mode 100644 english/cpp/aspose.pdf.text/textstate/get_invisible/_index.md create mode 100644 english/cpp/aspose.pdf.text/textstate/get_linespacing/_index.md create mode 100644 english/cpp/aspose.pdf.text/textstate/get_renderingmode/_index.md create mode 100644 english/cpp/aspose.pdf.text/textstate/get_strikeout/_index.md create mode 100644 english/cpp/aspose.pdf.text/textstate/get_strokingcolor/_index.md create mode 100644 english/cpp/aspose.pdf.text/textstate/get_subscript/_index.md create mode 100644 english/cpp/aspose.pdf.text/textstate/get_superscript/_index.md create mode 100644 english/cpp/aspose.pdf.text/textstate/get_underline/_index.md create mode 100644 english/cpp/aspose.pdf.text/textstate/get_wordspacing/_index.md create mode 100644 english/cpp/aspose.pdf.text/textstate/measureheight/_index.md create mode 100644 english/cpp/aspose.pdf.text/textstate/measurestring/_index.md create mode 100644 english/cpp/aspose.pdf.text/textstate/set_backgroundcolor/_index.md create mode 100644 english/cpp/aspose.pdf.text/textstate/set_characterspacing/_index.md create mode 100644 english/cpp/aspose.pdf.text/textstate/set_coordinateorigin/_index.md create mode 100644 english/cpp/aspose.pdf.text/textstate/set_font/_index.md create mode 100644 english/cpp/aspose.pdf.text/textstate/set_fontsize/_index.md create mode 100644 english/cpp/aspose.pdf.text/textstate/set_fontstyle/_index.md create mode 100644 english/cpp/aspose.pdf.text/textstate/set_foregroundcolor/_index.md create mode 100644 english/cpp/aspose.pdf.text/textstate/set_horizontalalignment/_index.md create mode 100644 english/cpp/aspose.pdf.text/textstate/set_horizontalscaling/_index.md create mode 100644 english/cpp/aspose.pdf.text/textstate/set_invisible/_index.md create mode 100644 english/cpp/aspose.pdf.text/textstate/set_linespacing/_index.md create mode 100644 english/cpp/aspose.pdf.text/textstate/set_renderingmode/_index.md create mode 100644 english/cpp/aspose.pdf.text/textstate/set_strikeout/_index.md create mode 100644 english/cpp/aspose.pdf.text/textstate/set_strokingcolor/_index.md create mode 100644 english/cpp/aspose.pdf.text/textstate/set_subscript/_index.md create mode 100644 english/cpp/aspose.pdf.text/textstate/set_superscript/_index.md create mode 100644 english/cpp/aspose.pdf.text/textstate/set_underline/_index.md create mode 100644 english/cpp/aspose.pdf.text/textstate/set_wordspacing/_index.md create mode 100644 english/cpp/aspose.pdf.text/textstate/textstate/_index.md create mode 100644 english/cpp/aspose.pdf.text/unicodesubstitution/_index.md create mode 100644 english/cpp/aspose.pdf.text/unicodesubstitution/unicodesubstitution/_index.md create mode 100644 english/cpp/aspose.pdf.utils.publicdata/_index.md create mode 100644 english/cpp/aspose.pdf.utils.publicdata/cospdfboolean/_index.md create mode 100644 english/cpp/aspose.pdf.utils.publicdata/cospdfboolean/cospdfboolean/_index.md create mode 100644 english/cpp/aspose.pdf.utils.publicdata/cospdfboolean/equals/_index.md create mode 100644 english/cpp/aspose.pdf.utils.publicdata/cospdfboolean/get_value/_index.md create mode 100644 english/cpp/aspose.pdf.utils.publicdata/cospdfboolean/gethashcode/_index.md create mode 100644 english/cpp/aspose.pdf.utils.publicdata/cospdfboolean/tocospdfboolean/_index.md create mode 100644 english/cpp/aspose.pdf.utils.publicdata/cospdfboolean/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.utils.publicdata/cospdfname/_index.md create mode 100644 english/cpp/aspose.pdf.utils.publicdata/cospdfname/cospdfname/_index.md create mode 100644 english/cpp/aspose.pdf.utils.publicdata/cospdfname/equals/_index.md create mode 100644 english/cpp/aspose.pdf.utils.publicdata/cospdfname/get_value/_index.md create mode 100644 english/cpp/aspose.pdf.utils.publicdata/cospdfname/gethashcode/_index.md create mode 100644 english/cpp/aspose.pdf.utils.publicdata/cospdfname/tocospdfname/_index.md create mode 100644 english/cpp/aspose.pdf.utils.publicdata/cospdfname/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.utils.publicdata/cospdfnumber/_index.md create mode 100644 english/cpp/aspose.pdf.utils.publicdata/cospdfnumber/cospdfnumber/_index.md create mode 100644 english/cpp/aspose.pdf.utils.publicdata/cospdfnumber/equals/_index.md create mode 100644 english/cpp/aspose.pdf.utils.publicdata/cospdfnumber/get_value/_index.md create mode 100644 english/cpp/aspose.pdf.utils.publicdata/cospdfnumber/gethashcode/_index.md create mode 100644 english/cpp/aspose.pdf.utils.publicdata/cospdfnumber/tocospdfnumber/_index.md create mode 100644 english/cpp/aspose.pdf.utils.publicdata/cospdfnumber/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.utils.publicdata/cospdfprimitive/_index.md create mode 100644 english/cpp/aspose.pdf.utils.publicdata/cospdfprimitive/tocospdfboolean/_index.md create mode 100644 english/cpp/aspose.pdf.utils.publicdata/cospdfprimitive/tocospdfname/_index.md create mode 100644 english/cpp/aspose.pdf.utils.publicdata/cospdfprimitive/tocospdfnumber/_index.md create mode 100644 english/cpp/aspose.pdf.utils.publicdata/cospdfprimitive/tocospdfstring/_index.md create mode 100644 english/cpp/aspose.pdf.utils.publicdata/cospdfstring/_index.md create mode 100644 english/cpp/aspose.pdf.utils.publicdata/cospdfstring/cospdfstring/_index.md create mode 100644 english/cpp/aspose.pdf.utils.publicdata/cospdfstring/equals/_index.md create mode 100644 english/cpp/aspose.pdf.utils.publicdata/cospdfstring/get_ishexadecimal/_index.md create mode 100644 english/cpp/aspose.pdf.utils.publicdata/cospdfstring/get_value/_index.md create mode 100644 english/cpp/aspose.pdf.utils.publicdata/cospdfstring/gethashcode/_index.md create mode 100644 english/cpp/aspose.pdf.utils.publicdata/cospdfstring/tocospdfstring/_index.md create mode 100644 english/cpp/aspose.pdf.utils.publicdata/cospdfstring/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.utils.publicdata/icospdfprimitive/_index.md create mode 100644 english/cpp/aspose.pdf.utils.publicdata/icospdfprimitive/tocospdfboolean/_index.md create mode 100644 english/cpp/aspose.pdf.utils.publicdata/icospdfprimitive/tocospdfname/_index.md create mode 100644 english/cpp/aspose.pdf.utils.publicdata/icospdfprimitive/tocospdfnumber/_index.md create mode 100644 english/cpp/aspose.pdf.utils.publicdata/icospdfprimitive/tocospdfstring/_index.md create mode 100644 english/cpp/aspose.pdf.utils/_index.md create mode 100644 english/cpp/aspose.pdf.utils/dictionaryeditor/_index.md create mode 100644 english/cpp/aspose.pdf.utils/dictionaryeditor/add/_index.md create mode 100644 english/cpp/aspose.pdf.utils/dictionaryeditor/clear/_index.md create mode 100644 english/cpp/aspose.pdf.utils/dictionaryeditor/contains/_index.md create mode 100644 english/cpp/aspose.pdf.utils/dictionaryeditor/containskey/_index.md create mode 100644 english/cpp/aspose.pdf.utils/dictionaryeditor/copyto/_index.md create mode 100644 english/cpp/aspose.pdf.utils/dictionaryeditor/dictionaryeditor/_index.md create mode 100644 english/cpp/aspose.pdf.utils/dictionaryeditor/get_allkeys/_index.md create mode 100644 english/cpp/aspose.pdf.utils/dictionaryeditor/get_count/_index.md create mode 100644 english/cpp/aspose.pdf.utils/dictionaryeditor/get_isreadonly/_index.md create mode 100644 english/cpp/aspose.pdf.utils/dictionaryeditor/get_keys/_index.md create mode 100644 english/cpp/aspose.pdf.utils/dictionaryeditor/get_values/_index.md create mode 100644 english/cpp/aspose.pdf.utils/dictionaryeditor/getenumerator/_index.md create mode 100644 english/cpp/aspose.pdf.utils/dictionaryeditor/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf.utils/dictionaryeditor/idx_set/_index.md create mode 100644 english/cpp/aspose.pdf.utils/dictionaryeditor/remove/_index.md create mode 100644 english/cpp/aspose.pdf.utils/dictionaryeditor/trygetvalue/_index.md create mode 100644 english/cpp/aspose.pdf.vector.extraction/_index.md create mode 100644 english/cpp/aspose.pdf.vector.extraction/subpathgroup/_index.md create mode 100644 english/cpp/aspose.pdf.vector.extraction/svgextractionoptions/_index.md create mode 100644 english/cpp/aspose.pdf.vector.extraction/svgextractionoptions/get_autogrouping/_index.md create mode 100644 english/cpp/aspose.pdf.vector.extraction/svgextractionoptions/get_extracteverysubpathtosvg/_index.md create mode 100644 english/cpp/aspose.pdf.vector.extraction/svgextractionoptions/get_extractionareabound/_index.md create mode 100644 english/cpp/aspose.pdf.vector.extraction/svgextractionoptions/get_groupstrength/_index.md create mode 100644 english/cpp/aspose.pdf.vector.extraction/svgextractionoptions/get_minstrokewidth/_index.md create mode 100644 english/cpp/aspose.pdf.vector.extraction/svgextractionoptions/get_strictextractionareaboundcheck/_index.md create mode 100644 english/cpp/aspose.pdf.vector.extraction/svgextractionoptions/get_unpackpagecontentxform/_index.md create mode 100644 english/cpp/aspose.pdf.vector.extraction/svgextractionoptions/get_unpackxformpredicate/_index.md create mode 100644 english/cpp/aspose.pdf.vector.extraction/svgextractionoptions/set_autogrouping/_index.md create mode 100644 english/cpp/aspose.pdf.vector.extraction/svgextractionoptions/set_extracteverysubpathtosvg/_index.md create mode 100644 english/cpp/aspose.pdf.vector.extraction/svgextractionoptions/set_extractionareabound/_index.md create mode 100644 english/cpp/aspose.pdf.vector.extraction/svgextractionoptions/set_groupstrength/_index.md create mode 100644 english/cpp/aspose.pdf.vector.extraction/svgextractionoptions/set_minstrokewidth/_index.md create mode 100644 english/cpp/aspose.pdf.vector.extraction/svgextractionoptions/set_strictextractionareaboundcheck/_index.md create mode 100644 english/cpp/aspose.pdf.vector.extraction/svgextractionoptions/set_unpackpagecontentxform/_index.md create mode 100644 english/cpp/aspose.pdf.vector.extraction/svgextractionoptions/set_unpackxformpredicate/_index.md create mode 100644 english/cpp/aspose.pdf.vector.extraction/svgextractionoptions/svgextractionoptions/_index.md create mode 100644 english/cpp/aspose.pdf.vector.extraction/svgextractor/_index.md create mode 100644 english/cpp/aspose.pdf.vector.extraction/svgextractor/extract/_index.md create mode 100644 english/cpp/aspose.pdf.vector.extraction/svgextractor/svgextractor/_index.md create mode 100644 english/cpp/aspose.pdf.vector/_index.md create mode 100644 english/cpp/aspose.pdf.vector/graphicelement/_index.md create mode 100644 english/cpp/aspose.pdf.vector/graphicelement/addonpage/_index.md create mode 100644 english/cpp/aspose.pdf.vector/graphicelement/dispose/_index.md create mode 100644 english/cpp/aspose.pdf.vector/graphicelement/get_matrix/_index.md create mode 100644 english/cpp/aspose.pdf.vector/graphicelement/get_operators/_index.md create mode 100644 english/cpp/aspose.pdf.vector/graphicelement/get_parent/_index.md create mode 100644 english/cpp/aspose.pdf.vector/graphicelement/get_position/_index.md create mode 100644 english/cpp/aspose.pdf.vector/graphicelement/get_rectangle/_index.md create mode 100644 english/cpp/aspose.pdf.vector/graphicelement/get_sourcepage/_index.md create mode 100644 english/cpp/aspose.pdf.vector/graphicelement/remove/_index.md create mode 100644 english/cpp/aspose.pdf.vector/graphicelement/savetosvg/_index.md create mode 100644 english/cpp/aspose.pdf.vector/graphicelement/set_position/_index.md create mode 100644 english/cpp/aspose.pdf.vector/graphicelementcollection/_index.md create mode 100644 english/cpp/aspose.pdf.vector/graphicelementcollection/add/_index.md create mode 100644 english/cpp/aspose.pdf.vector/graphicelementcollection/clear/_index.md create mode 100644 english/cpp/aspose.pdf.vector/graphicelementcollection/contains/_index.md create mode 100644 english/cpp/aspose.pdf.vector/graphicelementcollection/copyto/_index.md create mode 100644 english/cpp/aspose.pdf.vector/graphicelementcollection/get_count/_index.md create mode 100644 english/cpp/aspose.pdf.vector/graphicelementcollection/getenumerator/_index.md create mode 100644 english/cpp/aspose.pdf.vector/graphicelementcollection/graphicelementcollection/_index.md create mode 100644 english/cpp/aspose.pdf.vector/graphicelementcollection/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf.vector/graphicelementcollection/remove/_index.md create mode 100644 english/cpp/aspose.pdf.vector/graphicelementcollection/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.vector/graphicsabsorber/_index.md create mode 100644 english/cpp/aspose.pdf.vector/graphicsabsorber/dispose/_index.md create mode 100644 english/cpp/aspose.pdf.vector/graphicsabsorber/get_elements/_index.md create mode 100644 english/cpp/aspose.pdf.vector/graphicsabsorber/graphicsabsorber/_index.md create mode 100644 english/cpp/aspose.pdf.vector/graphicsabsorber/resumeupdate/_index.md create mode 100644 english/cpp/aspose.pdf.vector/graphicsabsorber/suppressupdate/_index.md create mode 100644 english/cpp/aspose.pdf.vector/graphicsabsorber/visit/_index.md create mode 100644 english/cpp/aspose.pdf.vector/graphicstate/_index.md create mode 100644 english/cpp/aspose.pdf.vector/graphicstate/get_clipsandmatrices/_index.md create mode 100644 english/cpp/aspose.pdf.vector/graphicstate/get_colorsandstyles/_index.md create mode 100644 english/cpp/aspose.pdf.vector/graphicstate/get_matrix/_index.md create mode 100644 english/cpp/aspose.pdf.vector/graphicstate/set_matrix/_index.md create mode 100644 english/cpp/aspose.pdf.vector/namespacedoc/_index.md create mode 100644 english/cpp/aspose.pdf.vector/subpath/_index.md create mode 100644 english/cpp/aspose.pdf.vector/subpath/get_rectangle/_index.md create mode 100644 english/cpp/aspose.pdf.vector/xformplacement/_index.md create mode 100644 english/cpp/aspose.pdf.vector/xformplacement/addonpage/_index.md create mode 100644 english/cpp/aspose.pdf.vector/xformplacement/get_elements/_index.md create mode 100644 english/cpp/aspose.pdf.vector/xformplacement/get_name/_index.md create mode 100644 english/cpp/aspose.pdf.vector/xformplacement/get_rectangle/_index.md create mode 100644 english/cpp/aspose.pdf.vector/xformplacement/get_xform/_index.md create mode 100644 english/cpp/aspose.pdf.vector/xformplacement/set_position/_index.md create mode 100644 english/cpp/aspose.pdf.xfaconverter/_index.md create mode 100644 english/cpp/aspose.pdf.xfaconverter/xfaparseroptions/_index.md create mode 100644 english/cpp/aspose.pdf.xfaconverter/xfaparseroptions/get_basepath/_index.md create mode 100644 english/cpp/aspose.pdf.xfaconverter/xfaparseroptions/get_emulaterequierdgroups/_index.md create mode 100644 english/cpp/aspose.pdf.xfaconverter/xfaparseroptions/get_pagesize/_index.md create mode 100644 english/cpp/aspose.pdf.xfaconverter/xfaparseroptions/get_signed/_index.md create mode 100644 english/cpp/aspose.pdf.xfaconverter/xfaparseroptions/get_uriresolver/_index.md create mode 100644 english/cpp/aspose.pdf.xfaconverter/xfaparseroptions/set_basepath/_index.md create mode 100644 english/cpp/aspose.pdf.xfaconverter/xfaparseroptions/set_emulaterequierdgroups/_index.md create mode 100644 english/cpp/aspose.pdf.xfaconverter/xfaparseroptions/set_pagesize/_index.md create mode 100644 english/cpp/aspose.pdf.xfaconverter/xfaparseroptions/set_signed/_index.md create mode 100644 english/cpp/aspose.pdf.xfaconverter/xfaparseroptions/set_uriresolver/_index.md create mode 100644 english/cpp/aspose.pdf.xfaconverter/xfaparseroptions/xfaparseroptions/_index.md create mode 100644 english/cpp/aspose.pdf/_index.md create mode 100644 english/cpp/aspose.pdf/afrelationship/_index.md create mode 100644 english/cpp/aspose.pdf/apsloadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/apsloadoptions/apsloadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/apssaveoptions/_index.md create mode 100644 english/cpp/aspose.pdf/apssaveoptions/apssaveoptions/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/artifact/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/beginupdates/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/dispose/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/get_artifacthorizontalalignment/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/get_artifactverticalalignment/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/get_bottommargin/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/get_contents/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/get_customsubtype/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/get_customtype/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/get_form/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/get_image/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/get_isbackground/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/get_leftmargin/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/get_lines/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/get_opacity/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/get_position/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/get_rectangle/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/get_rightmargin/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/get_rotation/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/get_subtype/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/get_text/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/get_textstate/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/get_topmargin/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/get_type/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/getvalue/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/removevalue/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/saveupdates/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/set_artifacthorizontalalignment/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/set_artifactverticalalignment/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/set_bottommargin/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/set_customsubtype/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/set_customtype/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/set_isbackground/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/set_leftmargin/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/set_opacity/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/set_position/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/set_rightmargin/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/set_rotation/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/set_subtype/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/set_text/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/set_textstate/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/set_topmargin/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/set_type/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/setimage/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/setlinesandstate/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/setpagenumberreplacementstring/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/setpdfpage/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/settext/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/settextandstate/_index.md create mode 100644 english/cpp/aspose.pdf/artifact/setvalue/_index.md create mode 100644 english/cpp/aspose.pdf/artifactcollection/_index.md create mode 100644 english/cpp/aspose.pdf/artifactcollection/add/_index.md create mode 100644 english/cpp/aspose.pdf/artifactcollection/copyto/_index.md create mode 100644 english/cpp/aspose.pdf/artifactcollection/delete/_index.md create mode 100644 english/cpp/aspose.pdf/artifactcollection/findbyvalue/_index.md create mode 100644 english/cpp/aspose.pdf/artifactcollection/get_count/_index.md create mode 100644 english/cpp/aspose.pdf/artifactcollection/get_isreadonly/_index.md create mode 100644 english/cpp/aspose.pdf/artifactcollection/get_issynchronized/_index.md create mode 100644 english/cpp/aspose.pdf/artifactcollection/get_syncroot/_index.md create mode 100644 english/cpp/aspose.pdf/artifactcollection/getenumerator/_index.md create mode 100644 english/cpp/aspose.pdf/artifactcollection/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf/artifactcollection/update/_index.md create mode 100644 english/cpp/aspose.pdf/assemblyconstants/_index.md create mode 100644 english/cpp/aspose.pdf/assemblyconstants/family/_index.md create mode 100644 english/cpp/aspose.pdf/assemblyconstants/platform/_index.md create mode 100644 english/cpp/aspose.pdf/assemblyconstants/producer/_index.md create mode 100644 english/cpp/aspose.pdf/assemblyconstants/product/_index.md create mode 100644 english/cpp/aspose.pdf/assemblyconstants/releasedate/_index.md create mode 100644 english/cpp/aspose.pdf/assemblyconstants/title/_index.md create mode 100644 english/cpp/aspose.pdf/assemblyconstants/version/_index.md create mode 100644 english/cpp/aspose.pdf/backgroundartifact/_index.md create mode 100644 english/cpp/aspose.pdf/backgroundartifact/backgroundartifact/_index.md create mode 100644 english/cpp/aspose.pdf/backgroundartifact/get_backgroundcolor/_index.md create mode 100644 english/cpp/aspose.pdf/backgroundartifact/get_backgroundimage/_index.md create mode 100644 english/cpp/aspose.pdf/backgroundartifact/set_backgroundcolor/_index.md create mode 100644 english/cpp/aspose.pdf/backgroundartifact/set_backgroundimage/_index.md create mode 100644 english/cpp/aspose.pdf/baseactioncollection/_index.md create mode 100644 english/cpp/aspose.pdf/baseactioncollection/removeactions/_index.md create mode 100644 english/cpp/aspose.pdf/baseoperatorcollection/_index.md create mode 100644 english/cpp/aspose.pdf/baseoperatorcollection/add/_index.md create mode 100644 english/cpp/aspose.pdf/baseoperatorcollection/cancelupdate/_index.md create mode 100644 english/cpp/aspose.pdf/baseoperatorcollection/clear/_index.md create mode 100644 english/cpp/aspose.pdf/baseoperatorcollection/contains/_index.md create mode 100644 english/cpp/aspose.pdf/baseoperatorcollection/copyto/_index.md create mode 100644 english/cpp/aspose.pdf/baseoperatorcollection/get_count/_index.md create mode 100644 english/cpp/aspose.pdf/baseoperatorcollection/get_isfasttextextractionmode/_index.md create mode 100644 english/cpp/aspose.pdf/baseoperatorcollection/get_isreadonly/_index.md create mode 100644 english/cpp/aspose.pdf/baseoperatorcollection/getenumerator/_index.md create mode 100644 english/cpp/aspose.pdf/baseoperatorcollection/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf/baseoperatorcollection/idx_set/_index.md create mode 100644 english/cpp/aspose.pdf/baseoperatorcollection/insert/_index.md create mode 100644 english/cpp/aspose.pdf/baseoperatorcollection/remove/_index.md create mode 100644 english/cpp/aspose.pdf/baseoperatorcollection/resumeupdate/_index.md create mode 100644 english/cpp/aspose.pdf/baseoperatorcollection/suppressupdate/_index.md create mode 100644 english/cpp/aspose.pdf/baseparagraph/_index.md create mode 100644 english/cpp/aspose.pdf/baseparagraph/baseparagraph/_index.md create mode 100644 english/cpp/aspose.pdf/baseparagraph/clone/_index.md create mode 100644 english/cpp/aspose.pdf/baseparagraph/get_horizontalalignment/_index.md create mode 100644 english/cpp/aspose.pdf/baseparagraph/get_hyperlink/_index.md create mode 100644 english/cpp/aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/_index.md create mode 100644 english/cpp/aspose.pdf/baseparagraph/get_isinlineparagraph/_index.md create mode 100644 english/cpp/aspose.pdf/baseparagraph/get_isinnewpage/_index.md create mode 100644 english/cpp/aspose.pdf/baseparagraph/get_iskeptwithnext/_index.md create mode 100644 english/cpp/aspose.pdf/baseparagraph/get_margin/_index.md create mode 100644 english/cpp/aspose.pdf/baseparagraph/get_verticalalignment/_index.md create mode 100644 english/cpp/aspose.pdf/baseparagraph/get_zindex/_index.md create mode 100644 english/cpp/aspose.pdf/baseparagraph/set_horizontalalignment/_index.md create mode 100644 english/cpp/aspose.pdf/baseparagraph/set_hyperlink/_index.md create mode 100644 english/cpp/aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/_index.md create mode 100644 english/cpp/aspose.pdf/baseparagraph/set_isinlineparagraph/_index.md create mode 100644 english/cpp/aspose.pdf/baseparagraph/set_isinnewpage/_index.md create mode 100644 english/cpp/aspose.pdf/baseparagraph/set_iskeptwithnext/_index.md create mode 100644 english/cpp/aspose.pdf/baseparagraph/set_margin/_index.md create mode 100644 english/cpp/aspose.pdf/baseparagraph/set_verticalalignment/_index.md create mode 100644 english/cpp/aspose.pdf/baseparagraph/set_zindex/_index.md create mode 100644 english/cpp/aspose.pdf/bitmapinfo/_index.md create mode 100644 english/cpp/aspose.pdf/bitmapinfo/bitmapinfo/_index.md create mode 100644 english/cpp/aspose.pdf/bitmapinfo/get_format/_index.md create mode 100644 english/cpp/aspose.pdf/bitmapinfo/get_height/_index.md create mode 100644 english/cpp/aspose.pdf/bitmapinfo/get_pixelbytes/_index.md create mode 100644 english/cpp/aspose.pdf/bitmapinfo/get_width/_index.md create mode 100644 english/cpp/aspose.pdf/blendmode/_index.md create mode 100644 english/cpp/aspose.pdf/bordercornerstyle/_index.md create mode 100644 english/cpp/aspose.pdf/borderinfo/_index.md create mode 100644 english/cpp/aspose.pdf/borderinfo/borderinfo/_index.md create mode 100644 english/cpp/aspose.pdf/borderinfo/clone/_index.md create mode 100644 english/cpp/aspose.pdf/borderinfo/get_bottom/_index.md create mode 100644 english/cpp/aspose.pdf/borderinfo/get_left/_index.md create mode 100644 english/cpp/aspose.pdf/borderinfo/get_right/_index.md create mode 100644 english/cpp/aspose.pdf/borderinfo/get_roundedborderradius/_index.md create mode 100644 english/cpp/aspose.pdf/borderinfo/get_top/_index.md create mode 100644 english/cpp/aspose.pdf/borderinfo/set_bottom/_index.md create mode 100644 english/cpp/aspose.pdf/borderinfo/set_left/_index.md create mode 100644 english/cpp/aspose.pdf/borderinfo/set_right/_index.md create mode 100644 english/cpp/aspose.pdf/borderinfo/set_roundedborderradius/_index.md create mode 100644 english/cpp/aspose.pdf/borderinfo/set_top/_index.md create mode 100644 english/cpp/aspose.pdf/borderside/_index.md create mode 100644 english/cpp/aspose.pdf/buildversioninfo/_index.md create mode 100644 english/cpp/aspose.pdf/buildversioninfo/assemblyversion/_index.md create mode 100644 english/cpp/aspose.pdf/buildversioninfo/fileversion/_index.md create mode 100644 english/cpp/aspose.pdf/buildversioninfo/internalproducer/_index.md create mode 100644 english/cpp/aspose.pdf/buildversioninfo/producer/_index.md create mode 100644 english/cpp/aspose.pdf/buildversioninfo/product/_index.md create mode 100644 english/cpp/aspose.pdf/cdrloadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/cdrloadoptions/cdrloadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/cell/_index.md create mode 100644 english/cpp/aspose.pdf/cell/cell/_index.md create mode 100644 english/cpp/aspose.pdf/cell/clone/_index.md create mode 100644 english/cpp/aspose.pdf/cell/get_alignment/_index.md create mode 100644 english/cpp/aspose.pdf/cell/get_backgroundcolor/_index.md create mode 100644 english/cpp/aspose.pdf/cell/get_backgroundimage/_index.md create mode 100644 english/cpp/aspose.pdf/cell/get_backgroundimagefile/_index.md create mode 100644 english/cpp/aspose.pdf/cell/get_border/_index.md create mode 100644 english/cpp/aspose.pdf/cell/get_colspan/_index.md create mode 100644 english/cpp/aspose.pdf/cell/get_defaultcelltextstate/_index.md create mode 100644 english/cpp/aspose.pdf/cell/get_isnoborder/_index.md create mode 100644 english/cpp/aspose.pdf/cell/get_isoverridebyfragment/_index.md create mode 100644 english/cpp/aspose.pdf/cell/get_iswordwrapped/_index.md create mode 100644 english/cpp/aspose.pdf/cell/get_margin/_index.md create mode 100644 english/cpp/aspose.pdf/cell/get_paragraphs/_index.md create mode 100644 english/cpp/aspose.pdf/cell/get_rowspan/_index.md create mode 100644 english/cpp/aspose.pdf/cell/get_verticalalignment/_index.md create mode 100644 english/cpp/aspose.pdf/cell/get_width/_index.md create mode 100644 english/cpp/aspose.pdf/cell/set_alignment/_index.md create mode 100644 english/cpp/aspose.pdf/cell/set_backgroundcolor/_index.md create mode 100644 english/cpp/aspose.pdf/cell/set_backgroundimage/_index.md create mode 100644 english/cpp/aspose.pdf/cell/set_backgroundimagefile/_index.md create mode 100644 english/cpp/aspose.pdf/cell/set_border/_index.md create mode 100644 english/cpp/aspose.pdf/cell/set_colspan/_index.md create mode 100644 english/cpp/aspose.pdf/cell/set_defaultcelltextstate/_index.md create mode 100644 english/cpp/aspose.pdf/cell/set_isnoborder/_index.md create mode 100644 english/cpp/aspose.pdf/cell/set_isoverridebyfragment/_index.md create mode 100644 english/cpp/aspose.pdf/cell/set_iswordwrapped/_index.md create mode 100644 english/cpp/aspose.pdf/cell/set_margin/_index.md create mode 100644 english/cpp/aspose.pdf/cell/set_paragraphs/_index.md create mode 100644 english/cpp/aspose.pdf/cell/set_rowspan/_index.md create mode 100644 english/cpp/aspose.pdf/cell/set_verticalalignment/_index.md create mode 100644 english/cpp/aspose.pdf/cells/_index.md create mode 100644 english/cpp/aspose.pdf/cells/add/_index.md create mode 100644 english/cpp/aspose.pdf/cells/begin/_index.md create mode 100644 english/cpp/aspose.pdf/cells/cbegin/_index.md create mode 100644 english/cpp/aspose.pdf/cells/cells/_index.md create mode 100644 english/cpp/aspose.pdf/cells/cend/_index.md create mode 100644 english/cpp/aspose.pdf/cells/const_iterator/_index.md create mode 100644 english/cpp/aspose.pdf/cells/dispose/_index.md create mode 100644 english/cpp/aspose.pdf/cells/end/_index.md create mode 100644 english/cpp/aspose.pdf/cells/get_count/_index.md create mode 100644 english/cpp/aspose.pdf/cells/getenumerator/_index.md create mode 100644 english/cpp/aspose.pdf/cells/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf/cells/idx_set/_index.md create mode 100644 english/cpp/aspose.pdf/cells/insert/_index.md create mode 100644 english/cpp/aspose.pdf/cells/iterator/_index.md create mode 100644 english/cpp/aspose.pdf/cells/iterator_holder_type/_index.md create mode 100644 english/cpp/aspose.pdf/cells/remove/_index.md create mode 100644 english/cpp/aspose.pdf/cells/removerange/_index.md create mode 100644 english/cpp/aspose.pdf/cells/virtualizebeginconstiterator/_index.md create mode 100644 english/cpp/aspose.pdf/cells/virtualizebeginiterator/_index.md create mode 100644 english/cpp/aspose.pdf/cells/virtualized_iterator/_index.md create mode 100644 english/cpp/aspose.pdf/cells/virtualized_iterator_element/_index.md create mode 100644 english/cpp/aspose.pdf/cells/virtualizeendconstiterator/_index.md create mode 100644 english/cpp/aspose.pdf/cells/virtualizeenditerator/_index.md create mode 100644 english/cpp/aspose.pdf/cgmimportoptions/_index.md create mode 100644 english/cpp/aspose.pdf/cgmimportoptions/cgmimportoptions/_index.md create mode 100644 english/cpp/aspose.pdf/cgmimportoptions/get_pagesize/_index.md create mode 100644 english/cpp/aspose.pdf/cgmimportoptions/set_pagesize/_index.md create mode 100644 english/cpp/aspose.pdf/cgmloadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/cgmloadoptions/cgmloadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/cgmloadoptions/get_pagesize/_index.md create mode 100644 english/cpp/aspose.pdf/collection/_index.md create mode 100644 english/cpp/aspose.pdf/collection/collection/_index.md create mode 100644 english/cpp/aspose.pdf/collection/get_defaultentry/_index.md create mode 100644 english/cpp/aspose.pdf/collection/get_schema/_index.md create mode 100644 english/cpp/aspose.pdf/collection/getsortedcollection/_index.md create mode 100644 english/cpp/aspose.pdf/collectionfield/_index.md create mode 100644 english/cpp/aspose.pdf/collectionfield/get_e/_index.md create mode 100644 english/cpp/aspose.pdf/collectionfield/get_filedtype/_index.md create mode 100644 english/cpp/aspose.pdf/collectionfield/get_n/_index.md create mode 100644 english/cpp/aspose.pdf/collectionfield/get_o/_index.md create mode 100644 english/cpp/aspose.pdf/collectionfield/get_subtype/_index.md create mode 100644 english/cpp/aspose.pdf/collectionfield/get_v/_index.md create mode 100644 english/cpp/aspose.pdf/collectionfieldsubtype/_index.md create mode 100644 english/cpp/aspose.pdf/collectionfieldsubtypeconverter/_index.md create mode 100644 english/cpp/aspose.pdf/collectionfieldsubtypeconverter/convert/_index.md create mode 100644 english/cpp/aspose.pdf/collectionfieldsubtypeconverter/converttofieldtype/_index.md create mode 100644 english/cpp/aspose.pdf/collectionitem/_index.md create mode 100644 english/cpp/aspose.pdf/collectionitem/get_allnames/_index.md create mode 100644 english/cpp/aspose.pdf/collectionitem/get_isempty/_index.md create mode 100644 english/cpp/aspose.pdf/collectionitem/hasname/_index.md create mode 100644 english/cpp/aspose.pdf/collectionitem/trygetdatetimevalue/_index.md create mode 100644 english/cpp/aspose.pdf/collectionitem/trygetdoublevalue/_index.md create mode 100644 english/cpp/aspose.pdf/collectionitem/trygetintvalue/_index.md create mode 100644 english/cpp/aspose.pdf/collectionitem/trygettextvalue/_index.md create mode 100644 english/cpp/aspose.pdf/collectionschema/_index.md create mode 100644 english/cpp/aspose.pdf/collectionschema/get_allfields/_index.md create mode 100644 english/cpp/aspose.pdf/collectionschema/get_allnames/_index.md create mode 100644 english/cpp/aspose.pdf/collectionschema/getcollectionfield/_index.md create mode 100644 english/cpp/aspose.pdf/collectionschema/hasname/_index.md create mode 100644 english/cpp/aspose.pdf/collectionsort/_index.md create mode 100644 english/cpp/aspose.pdf/collectionsort/collectionsort/_index.md create mode 100644 english/cpp/aspose.pdf/collectionsort/get_a/_index.md create mode 100644 english/cpp/aspose.pdf/collectionsort/get_s/_index.md create mode 100644 english/cpp/aspose.pdf/color/_index.md create mode 100644 english/cpp/aspose.pdf/color/color/_index.md create mode 100644 english/cpp/aspose.pdf/color/empty/_index.md create mode 100644 english/cpp/aspose.pdf/color/equals/_index.md create mode 100644 english/cpp/aspose.pdf/color/fromargb/_index.md create mode 100644 english/cpp/aspose.pdf/color/fromcmyk/_index.md create mode 100644 english/cpp/aspose.pdf/color/fromgray/_index.md create mode 100644 english/cpp/aspose.pdf/color/fromrgb/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_a/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_aliceblue/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_antiquewhite/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_aqua/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_aquamarine/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_azure/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_beige/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_bisque/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_black/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_blanchedalmond/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_blue/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_blueviolet/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_brown/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_burlywood/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_cadetblue/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_chartreuse/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_chocolate/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_colorspace/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_coral/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_cornflowerblue/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_cornsilk/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_crimson/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_cyan/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_darkblue/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_darkcyan/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_darkgoldenrod/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_darkgray/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_darkgreen/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_darkkhaki/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_darkmagenta/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_darkolivegreen/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_darkorange/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_darkorchid/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_darkred/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_darksalmon/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_darkseagreen/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_darkslateblue/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_darkslategray/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_darkturquoise/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_darkviolet/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_data/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_deeppink/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_deepskyblue/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_dimgray/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_dodgerblue/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_firebrick/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_floralwhite/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_forestgreen/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_fuchsia/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_gainsboro/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_ghostwhite/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_gold/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_goldenrod/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_gray/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_green/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_greenyellow/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_honeydew/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_hotpink/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_indianred/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_indigo/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_ivory/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_khaki/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_lavender/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_lavenderblush/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_lawngreen/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_lemonchiffon/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_lightblue/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_lightcoral/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_lightcyan/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_lightgoldenrodyellow/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_lightgray/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_lightgreen/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_lightpink/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_lightsalmon/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_lightseagreen/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_lightskyblue/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_lightslategray/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_lightsteelblue/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_lightyellow/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_lime/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_limegreen/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_linen/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_magenta/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_maroon/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_mediumaquamarine/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_mediumblue/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_mediumorchid/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_mediumpurple/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_mediumseagreen/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_mediumslateblue/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_mediumspringgreen/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_mediumturquoise/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_mediumvioletred/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_midnightblue/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_mintcream/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_mistyrose/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_moccasin/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_navajowhite/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_navy/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_oldlace/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_olive/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_olivedrab/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_orange/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_orangered/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_orchid/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_palegoldenrod/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_palegreen/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_paleturquoise/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_palevioletred/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_papayawhip/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_patterncolorspace/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_peachpuff/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_peru/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_pink/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_plum/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_powderblue/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_purple/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_red/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_rosybrown/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_royalblue/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_saddlebrown/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_salmon/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_sandybrown/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_seagreen/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_seashell/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_sienna/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_silver/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_skyblue/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_slateblue/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_slategray/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_snow/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_springgreen/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_steelblue/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_tan/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_teal/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_thistle/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_tomato/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_transparent/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_turquoise/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_violet/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_wheat/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_white/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_whitesmoke/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_yellow/_index.md create mode 100644 english/cpp/aspose.pdf/color/get_yellowgreen/_index.md create mode 100644 english/cpp/aspose.pdf/color/parse/_index.md create mode 100644 english/cpp/aspose.pdf/color/set_patterncolorspace/_index.md create mode 100644 english/cpp/aspose.pdf/color/torgb/_index.md create mode 100644 english/cpp/aspose.pdf/color/tostring/_index.md create mode 100644 english/cpp/aspose.pdf/colorspace/_index.md create mode 100644 english/cpp/aspose.pdf/colorspaceconverter/_index.md create mode 100644 english/cpp/aspose.pdf/colorspaceconverter/toenum/_index.md create mode 100644 english/cpp/aspose.pdf/colorspaceconverter/tostring/_index.md create mode 100644 english/cpp/aspose.pdf/colortype/_index.md create mode 100644 english/cpp/aspose.pdf/columnadjustment/_index.md create mode 100644 english/cpp/aspose.pdf/columninfo/_index.md create mode 100644 english/cpp/aspose.pdf/columninfo/columninfo/_index.md create mode 100644 english/cpp/aspose.pdf/columninfo/get_columncount/_index.md create mode 100644 english/cpp/aspose.pdf/columninfo/get_columnspacing/_index.md create mode 100644 english/cpp/aspose.pdf/columninfo/get_columnwidths/_index.md create mode 100644 english/cpp/aspose.pdf/columninfo/set_columncount/_index.md create mode 100644 english/cpp/aspose.pdf/columninfo/set_columnspacing/_index.md create mode 100644 english/cpp/aspose.pdf/columninfo/set_columnwidths/_index.md create mode 100644 english/cpp/aspose.pdf/comhelper/_index.md create mode 100644 english/cpp/aspose.pdf/comhelper/openfile/_index.md create mode 100644 english/cpp/aspose.pdf/comhelper/openstream/_index.md create mode 100644 english/cpp/aspose.pdf/compositingparameters/_index.md create mode 100644 english/cpp/aspose.pdf/compositingparameters/compositingparameters/_index.md create mode 100644 english/cpp/aspose.pdf/compositingparameters/get_blendmode/_index.md create mode 100644 english/cpp/aspose.pdf/compositingparameters/get_filtertype/_index.md create mode 100644 english/cpp/aspose.pdf/compositingparameters/get_ismasked/_index.md create mode 100644 english/cpp/aspose.pdf/contentdisposition/_index.md create mode 100644 english/cpp/aspose.pdf/converterroraction/_index.md create mode 100644 english/cpp/aspose.pdf/convertsoftmaskaction/_index.md create mode 100644 english/cpp/aspose.pdf/converttransparencyaction/_index.md create mode 100644 english/cpp/aspose.pdf/crashreportoptions/_index.md create mode 100644 english/cpp/aspose.pdf/crashreportoptions/crashreportoptions/_index.md create mode 100644 english/cpp/aspose.pdf/crashreportoptions/get_applicationtitle/_index.md create mode 100644 english/cpp/aspose.pdf/crashreportoptions/get_crashreportdirectory/_index.md create mode 100644 english/cpp/aspose.pdf/crashreportoptions/get_crashreportfilename/_index.md create mode 100644 english/cpp/aspose.pdf/crashreportoptions/get_crashreportpath/_index.md create mode 100644 english/cpp/aspose.pdf/crashreportoptions/get_custommessage/_index.md create mode 100644 english/cpp/aspose.pdf/crashreportoptions/get_exception/_index.md create mode 100644 english/cpp/aspose.pdf/crashreportoptions/get_libraryversion/_index.md create mode 100644 english/cpp/aspose.pdf/crashreportoptions/set_crashreportdirectory/_index.md create mode 100644 english/cpp/aspose.pdf/crashreportoptions/set_crashreportfilename/_index.md create mode 100644 english/cpp/aspose.pdf/crashreportoptions/set_custommessage/_index.md create mode 100644 english/cpp/aspose.pdf/cryptoalgorithm/_index.md create mode 100644 english/cpp/aspose.pdf/deprecatedfeatureexception/_index.md create mode 100644 english/cpp/aspose.pdf/destinationcollection/_index.md create mode 100644 english/cpp/aspose.pdf/destinationcollection/add/_index.md create mode 100644 english/cpp/aspose.pdf/destinationcollection/clear/_index.md create mode 100644 english/cpp/aspose.pdf/destinationcollection/contains/_index.md create mode 100644 english/cpp/aspose.pdf/destinationcollection/copyto/_index.md create mode 100644 english/cpp/aspose.pdf/destinationcollection/get_count/_index.md create mode 100644 english/cpp/aspose.pdf/destinationcollection/get_isreadonly/_index.md create mode 100644 english/cpp/aspose.pdf/destinationcollection/getenumerator/_index.md create mode 100644 english/cpp/aspose.pdf/destinationcollection/getexplicitdestination/_index.md create mode 100644 english/cpp/aspose.pdf/destinationcollection/getpagenumber/_index.md create mode 100644 english/cpp/aspose.pdf/destinationcollection/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf/destinationcollection/indexof/_index.md create mode 100644 english/cpp/aspose.pdf/destinationcollection/remove/_index.md create mode 100644 english/cpp/aspose.pdf/digesthashalgorithm/_index.md create mode 100644 english/cpp/aspose.pdf/direction/_index.md create mode 100644 english/cpp/aspose.pdf/directionconverter/_index.md create mode 100644 english/cpp/aspose.pdf/directionconverter/toenum/_index.md create mode 100644 english/cpp/aspose.pdf/directionconverter/tostring/_index.md create mode 100644 english/cpp/aspose.pdf/djvuloadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/djvuloadoptions/djvuloadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/docsaveoptions/_index.md create mode 100644 english/cpp/aspose.pdf/docsaveoptions/docsaveoptions/_index.md create mode 100644 english/cpp/aspose.pdf/docsaveoptions/get_addreturntolineend/_index.md create mode 100644 english/cpp/aspose.pdf/docsaveoptions/get_batchsize/_index.md create mode 100644 english/cpp/aspose.pdf/docsaveoptions/get_converttype3fonts/_index.md create mode 100644 english/cpp/aspose.pdf/docsaveoptions/get_format/_index.md create mode 100644 english/cpp/aspose.pdf/docsaveoptions/get_imageresolutionx/_index.md create mode 100644 english/cpp/aspose.pdf/docsaveoptions/get_imageresolutiony/_index.md create mode 100644 english/cpp/aspose.pdf/docsaveoptions/get_maxdistancebetweentextlines/_index.md create mode 100644 english/cpp/aspose.pdf/docsaveoptions/get_memorysavemodepath/_index.md create mode 100644 english/cpp/aspose.pdf/docsaveoptions/get_mode/_index.md create mode 100644 english/cpp/aspose.pdf/docsaveoptions/get_recognizebullets/_index.md create mode 100644 english/cpp/aspose.pdf/docsaveoptions/get_relativehorizontalproximity/_index.md create mode 100644 english/cpp/aspose.pdf/docsaveoptions/get_resavefonts/_index.md create mode 100644 english/cpp/aspose.pdf/docsaveoptions/set_addreturntolineend/_index.md create mode 100644 english/cpp/aspose.pdf/docsaveoptions/set_batchsize/_index.md create mode 100644 english/cpp/aspose.pdf/docsaveoptions/set_converttype3fonts/_index.md create mode 100644 english/cpp/aspose.pdf/docsaveoptions/set_format/_index.md create mode 100644 english/cpp/aspose.pdf/docsaveoptions/set_imageresolutionx/_index.md create mode 100644 english/cpp/aspose.pdf/docsaveoptions/set_imageresolutiony/_index.md create mode 100644 english/cpp/aspose.pdf/docsaveoptions/set_maxdistancebetweentextlines/_index.md create mode 100644 english/cpp/aspose.pdf/docsaveoptions/set_memorysavemodepath/_index.md create mode 100644 english/cpp/aspose.pdf/docsaveoptions/set_mode/_index.md create mode 100644 english/cpp/aspose.pdf/docsaveoptions/set_recognizebullets/_index.md create mode 100644 english/cpp/aspose.pdf/docsaveoptions/set_relativehorizontalproximity/_index.md create mode 100644 english/cpp/aspose.pdf/docsaveoptions/set_resavefonts/_index.md create mode 100644 english/cpp/aspose.pdf/document/_index.md create mode 100644 english/cpp/aspose.pdf/document/bindxml/_index.md create mode 100644 english/cpp/aspose.pdf/document/callbackgethocr/_index.md create mode 100644 english/cpp/aspose.pdf/document/callbackgethocrwithpage/_index.md create mode 100644 english/cpp/aspose.pdf/document/changepasswords/_index.md create mode 100644 english/cpp/aspose.pdf/document/check/_index.md create mode 100644 english/cpp/aspose.pdf/document/convert/_index.md create mode 100644 english/cpp/aspose.pdf/document/convertpagetopngmemorystream/_index.md create mode 100644 english/cpp/aspose.pdf/document/decrypt/_index.md create mode 100644 english/cpp/aspose.pdf/document/defaultnodesnuminsubtrees/_index.md create mode 100644 english/cpp/aspose.pdf/document/dispose/_index.md create mode 100644 english/cpp/aspose.pdf/document/document/_index.md create mode 100644 english/cpp/aspose.pdf/document/encrypt/_index.md create mode 100644 english/cpp/aspose.pdf/document/exportannotationstoxfdf/_index.md create mode 100644 english/cpp/aspose.pdf/document/flatten/_index.md create mode 100644 english/cpp/aspose.pdf/document/flattentransparency/_index.md create mode 100644 english/cpp/aspose.pdf/document/fontsubstitutionhandler/_index.md create mode 100644 english/cpp/aspose.pdf/document/freememory/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_actions/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_allowreusepagecontent/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_background/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_centerwindow/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_collection/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_cryptoalgorithm/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_destinations/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_direction/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_disablefontlicenseverifications/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_displaydoctitle/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_duplex/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_embeddedfiles/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_embedstandardfonts/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_enableobjectunload/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_enablesignaturesanitization/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_filename/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_filesizelimittomemoryloading/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_fitwindow/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_fontutilities/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_form/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_handlesignaturechange/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_hidemenubar/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_hidetoolbar/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_hidewindowui/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_id/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_ignorecorruptedobjects/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_info/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_isencrypted/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_islicensed/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_islinearized/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_ispdfacompliant/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_ispdfuacompliant/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_isxrefgapsallowed/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_javascript/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_logicalstructure/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_metadata/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_nameddestinations/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_nonfullscreenpagemode/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_openaction/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_optimizesize/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_outlines/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_outputintents/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_pageinfo/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_pagelabels/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_pagelayout/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_pagemode/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_pages/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_pdfformat/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_permissions/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_picktraybypdfsize/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_printscaling/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_taggedcontent/_index.md create mode 100644 english/cpp/aspose.pdf/document/get_version/_index.md create mode 100644 english/cpp/aspose.pdf/document/getcatalogvalue/_index.md create mode 100644 english/cpp/aspose.pdf/document/getobjectbyid/_index.md create mode 100644 english/cpp/aspose.pdf/document/getxmpmetadata/_index.md create mode 100644 english/cpp/aspose.pdf/document/hasincrementalupdate/_index.md create mode 100644 english/cpp/aspose.pdf/document/importannotationsfromxfdf/_index.md create mode 100644 english/cpp/aspose.pdf/document/loadfrom/_index.md create mode 100644 english/cpp/aspose.pdf/document/merge/_index.md create mode 100644 english/cpp/aspose.pdf/document/mergedocuments/_index.md create mode 100644 english/cpp/aspose.pdf/document/optimize/_index.md create mode 100644 english/cpp/aspose.pdf/document/optimizeresources/_index.md create mode 100644 english/cpp/aspose.pdf/document/pagenodestobalancedtree/_index.md create mode 100644 english/cpp/aspose.pdf/document/processparagraphs/_index.md create mode 100644 english/cpp/aspose.pdf/document/removemetadata/_index.md create mode 100644 english/cpp/aspose.pdf/document/removepdfacompliance/_index.md create mode 100644 english/cpp/aspose.pdf/document/removepdfuacompliance/_index.md create mode 100644 english/cpp/aspose.pdf/document/repair/_index.md create mode 100644 english/cpp/aspose.pdf/document/save/_index.md create mode 100644 english/cpp/aspose.pdf/document/savexml/_index.md create mode 100644 english/cpp/aspose.pdf/document/sendto/_index.md create mode 100644 english/cpp/aspose.pdf/document/set_allowreusepagecontent/_index.md create mode 100644 english/cpp/aspose.pdf/document/set_background/_index.md create mode 100644 english/cpp/aspose.pdf/document/set_centerwindow/_index.md create mode 100644 english/cpp/aspose.pdf/document/set_collection/_index.md create mode 100644 english/cpp/aspose.pdf/document/set_direction/_index.md create mode 100644 english/cpp/aspose.pdf/document/set_disablefontlicenseverifications/_index.md create mode 100644 english/cpp/aspose.pdf/document/set_displaydoctitle/_index.md create mode 100644 english/cpp/aspose.pdf/document/set_duplex/_index.md create mode 100644 english/cpp/aspose.pdf/document/set_embedstandardfonts/_index.md create mode 100644 english/cpp/aspose.pdf/document/set_enableobjectunload/_index.md create mode 100644 english/cpp/aspose.pdf/document/set_enablesignaturesanitization/_index.md create mode 100644 english/cpp/aspose.pdf/document/set_filesizelimittomemoryloading/_index.md create mode 100644 english/cpp/aspose.pdf/document/set_fitwindow/_index.md create mode 100644 english/cpp/aspose.pdf/document/set_handlesignaturechange/_index.md create mode 100644 english/cpp/aspose.pdf/document/set_hidemenubar/_index.md create mode 100644 english/cpp/aspose.pdf/document/set_hidetoolbar/_index.md create mode 100644 english/cpp/aspose.pdf/document/set_hidewindowui/_index.md create mode 100644 english/cpp/aspose.pdf/document/set_ignorecorruptedobjects/_index.md create mode 100644 english/cpp/aspose.pdf/document/set_islinearized/_index.md create mode 100644 english/cpp/aspose.pdf/document/set_isxrefgapsallowed/_index.md create mode 100644 english/cpp/aspose.pdf/document/set_nonfullscreenpagemode/_index.md create mode 100644 english/cpp/aspose.pdf/document/set_openaction/_index.md create mode 100644 english/cpp/aspose.pdf/document/set_optimizesize/_index.md create mode 100644 english/cpp/aspose.pdf/document/set_pageinfo/_index.md create mode 100644 english/cpp/aspose.pdf/document/set_pagelayout/_index.md create mode 100644 english/cpp/aspose.pdf/document/set_pagemode/_index.md create mode 100644 english/cpp/aspose.pdf/document/set_picktraybypdfsize/_index.md create mode 100644 english/cpp/aspose.pdf/document/set_printscaling/_index.md create mode 100644 english/cpp/aspose.pdf/document/setdefaultfilesizelimittomemoryloading/_index.md create mode 100644 english/cpp/aspose.pdf/document/settitle/_index.md create mode 100644 english/cpp/aspose.pdf/document/setxmpmetadata/_index.md create mode 100644 english/cpp/aspose.pdf/document/validate/_index.md create mode 100644 english/cpp/aspose.pdf/documentextensions/_index.md create mode 100644 english/cpp/aspose.pdf/documentextensions/documentextensions/_index.md create mode 100644 english/cpp/aspose.pdf/documentextensions/splitsharedimages/_index.md create mode 100644 english/cpp/aspose.pdf/documentfactory/_index.md create mode 100644 english/cpp/aspose.pdf/documentfactory/createdocument/_index.md create mode 100644 english/cpp/aspose.pdf/documentfactory/documentfactory/_index.md create mode 100644 english/cpp/aspose.pdf/documentinfo/_index.md create mode 100644 english/cpp/aspose.pdf/documentinfo/add/_index.md create mode 100644 english/cpp/aspose.pdf/documentinfo/clear/_index.md create mode 100644 english/cpp/aspose.pdf/documentinfo/clearcustomdata/_index.md create mode 100644 english/cpp/aspose.pdf/documentinfo/documentinfo/_index.md create mode 100644 english/cpp/aspose.pdf/documentinfo/get_author/_index.md create mode 100644 english/cpp/aspose.pdf/documentinfo/get_creationdate/_index.md create mode 100644 english/cpp/aspose.pdf/documentinfo/get_creationtimezone/_index.md create mode 100644 english/cpp/aspose.pdf/documentinfo/get_creator/_index.md create mode 100644 english/cpp/aspose.pdf/documentinfo/get_keywords/_index.md create mode 100644 english/cpp/aspose.pdf/documentinfo/get_moddate/_index.md create mode 100644 english/cpp/aspose.pdf/documentinfo/get_modtimezone/_index.md create mode 100644 english/cpp/aspose.pdf/documentinfo/get_producer/_index.md create mode 100644 english/cpp/aspose.pdf/documentinfo/get_subject/_index.md create mode 100644 english/cpp/aspose.pdf/documentinfo/get_title/_index.md create mode 100644 english/cpp/aspose.pdf/documentinfo/get_trapped/_index.md create mode 100644 english/cpp/aspose.pdf/documentinfo/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf/documentinfo/idx_set/_index.md create mode 100644 english/cpp/aspose.pdf/documentinfo/ispredefinedkey/_index.md create mode 100644 english/cpp/aspose.pdf/documentinfo/remove/_index.md create mode 100644 english/cpp/aspose.pdf/documentinfo/set_author/_index.md create mode 100644 english/cpp/aspose.pdf/documentinfo/set_creationdate/_index.md create mode 100644 english/cpp/aspose.pdf/documentinfo/set_creationtimezone/_index.md create mode 100644 english/cpp/aspose.pdf/documentinfo/set_creator/_index.md create mode 100644 english/cpp/aspose.pdf/documentinfo/set_keywords/_index.md create mode 100644 english/cpp/aspose.pdf/documentinfo/set_moddate/_index.md create mode 100644 english/cpp/aspose.pdf/documentinfo/set_modtimezone/_index.md create mode 100644 english/cpp/aspose.pdf/documentinfo/set_producer/_index.md create mode 100644 english/cpp/aspose.pdf/documentinfo/set_subject/_index.md create mode 100644 english/cpp/aspose.pdf/documentinfo/set_title/_index.md create mode 100644 english/cpp/aspose.pdf/documentinfo/set_trapped/_index.md create mode 100644 english/cpp/aspose.pdf/documentinfo/settemplateweakptr/_index.md create mode 100644 english/cpp/aspose.pdf/editiontype/_index.md create mode 100644 english/cpp/aspose.pdf/embeddedfilecollection/_index.md create mode 100644 english/cpp/aspose.pdf/embeddedfilecollection/add/_index.md create mode 100644 english/cpp/aspose.pdf/embeddedfilecollection/copyto/_index.md create mode 100644 english/cpp/aspose.pdf/embeddedfilecollection/delete/_index.md create mode 100644 english/cpp/aspose.pdf/embeddedfilecollection/deletebykey/_index.md create mode 100644 english/cpp/aspose.pdf/embeddedfilecollection/findbyname/_index.md create mode 100644 english/cpp/aspose.pdf/embeddedfilecollection/get_count/_index.md create mode 100644 english/cpp/aspose.pdf/embeddedfilecollection/get_issynchronized/_index.md create mode 100644 english/cpp/aspose.pdf/embeddedfilecollection/get_keys/_index.md create mode 100644 english/cpp/aspose.pdf/embeddedfilecollection/get_syncroot/_index.md create mode 100644 english/cpp/aspose.pdf/embeddedfilecollection/getenumerator/_index.md create mode 100644 english/cpp/aspose.pdf/embeddedfilecollection/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf/embeddedfilesdoesnotexists/_index.md create mode 100644 english/cpp/aspose.pdf/emptyvalueexception/_index.md create mode 100644 english/cpp/aspose.pdf/encryptedpayload/_index.md create mode 100644 english/cpp/aspose.pdf/encryptedpayload/encryptedpayload/_index.md create mode 100644 english/cpp/aspose.pdf/encryptedpayload/get_subtype/_index.md create mode 100644 english/cpp/aspose.pdf/encryptedpayload/get_type/_index.md create mode 100644 english/cpp/aspose.pdf/encryptedpayload/get_version/_index.md create mode 100644 english/cpp/aspose.pdf/epubloadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/epubloadoptions/epubloadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/epubloadoptions/get_customcss/_index.md create mode 100644 english/cpp/aspose.pdf/epubloadoptions/get_margin/_index.md create mode 100644 english/cpp/aspose.pdf/epubloadoptions/get_pagesize/_index.md create mode 100644 english/cpp/aspose.pdf/epubloadoptions/set_customcss/_index.md create mode 100644 english/cpp/aspose.pdf/epubloadoptions/set_margin/_index.md create mode 100644 english/cpp/aspose.pdf/epubsaveoptions/_index.md create mode 100644 english/cpp/aspose.pdf/epubsaveoptions/epubsaveoptions/_index.md create mode 100644 english/cpp/aspose.pdf/epubsaveoptions/get_title/_index.md create mode 100644 english/cpp/aspose.pdf/epubsaveoptions/set_title/_index.md create mode 100644 english/cpp/aspose.pdf/excelsaveoptions/_index.md create mode 100644 english/cpp/aspose.pdf/excelsaveoptions/excelsaveoptions/_index.md create mode 100644 english/cpp/aspose.pdf/excelsaveoptions/get_format/_index.md create mode 100644 english/cpp/aspose.pdf/excelsaveoptions/get_insertblankcolumnatfirst/_index.md create mode 100644 english/cpp/aspose.pdf/excelsaveoptions/get_minimizethenumberofworksheets/_index.md create mode 100644 english/cpp/aspose.pdf/excelsaveoptions/get_uniformworksheets/_index.md create mode 100644 english/cpp/aspose.pdf/excelsaveoptions/set_format/_index.md create mode 100644 english/cpp/aspose.pdf/excelsaveoptions/set_insertblankcolumnatfirst/_index.md create mode 100644 english/cpp/aspose.pdf/excelsaveoptions/set_minimizethenumberofworksheets/_index.md create mode 100644 english/cpp/aspose.pdf/excelsaveoptions/set_uniformworksheets/_index.md create mode 100644 english/cpp/aspose.pdf/extendedboolean/_index.md create mode 100644 english/cpp/aspose.pdf/extractimagemode/_index.md create mode 100644 english/cpp/aspose.pdf/fieldvaluetype/_index.md create mode 100644 english/cpp/aspose.pdf/filechecker/_index.md create mode 100644 english/cpp/aspose.pdf/filechecker/filechecker/_index.md create mode 100644 english/cpp/aspose.pdf/filechecker/iscontentsafe/_index.md create mode 100644 english/cpp/aspose.pdf/filechecker/isfileextensionsafe/_index.md create mode 100644 english/cpp/aspose.pdf/fileencoding/_index.md create mode 100644 english/cpp/aspose.pdf/filehyperlink/_index.md create mode 100644 english/cpp/aspose.pdf/filehyperlink/filehyperlink/_index.md create mode 100644 english/cpp/aspose.pdf/filehyperlink/get_newwindow/_index.md create mode 100644 english/cpp/aspose.pdf/filehyperlink/get_path/_index.md create mode 100644 english/cpp/aspose.pdf/filehyperlink/set_newwindow/_index.md create mode 100644 english/cpp/aspose.pdf/filehyperlink/set_path/_index.md create mode 100644 english/cpp/aspose.pdf/fileparams/_index.md create mode 100644 english/cpp/aspose.pdf/fileparams/fileparams/_index.md create mode 100644 english/cpp/aspose.pdf/fileparams/get_checksum/_index.md create mode 100644 english/cpp/aspose.pdf/fileparams/get_creationdate/_index.md create mode 100644 english/cpp/aspose.pdf/fileparams/get_moddate/_index.md create mode 100644 english/cpp/aspose.pdf/fileparams/get_size/_index.md create mode 100644 english/cpp/aspose.pdf/fileparams/set_creationdate/_index.md create mode 100644 english/cpp/aspose.pdf/fileparams/set_moddate/_index.md create mode 100644 english/cpp/aspose.pdf/filespecification/_index.md create mode 100644 english/cpp/aspose.pdf/filespecification/dispose/_index.md create mode 100644 english/cpp/aspose.pdf/filespecification/filespecification/_index.md create mode 100644 english/cpp/aspose.pdf/filespecification/get_afrelationship/_index.md create mode 100644 english/cpp/aspose.pdf/filespecification/get_collectionitem/_index.md create mode 100644 english/cpp/aspose.pdf/filespecification/get_contents/_index.md create mode 100644 english/cpp/aspose.pdf/filespecification/get_description/_index.md create mode 100644 english/cpp/aspose.pdf/filespecification/get_encoding/_index.md create mode 100644 english/cpp/aspose.pdf/filespecification/get_encryptedpayload/_index.md create mode 100644 english/cpp/aspose.pdf/filespecification/get_filesystem/_index.md create mode 100644 english/cpp/aspose.pdf/filespecification/get_includecontents/_index.md create mode 100644 english/cpp/aspose.pdf/filespecification/get_mimetype/_index.md create mode 100644 english/cpp/aspose.pdf/filespecification/get_name/_index.md create mode 100644 english/cpp/aspose.pdf/filespecification/get_params/_index.md create mode 100644 english/cpp/aspose.pdf/filespecification/get_streamcontents/_index.md create mode 100644 english/cpp/aspose.pdf/filespecification/get_unicodename/_index.md create mode 100644 english/cpp/aspose.pdf/filespecification/getvalue/_index.md create mode 100644 english/cpp/aspose.pdf/filespecification/set_afrelationship/_index.md create mode 100644 english/cpp/aspose.pdf/filespecification/set_contents/_index.md create mode 100644 english/cpp/aspose.pdf/filespecification/set_description/_index.md create mode 100644 english/cpp/aspose.pdf/filespecification/set_encoding/_index.md create mode 100644 english/cpp/aspose.pdf/filespecification/set_filesystem/_index.md create mode 100644 english/cpp/aspose.pdf/filespecification/set_includecontents/_index.md create mode 100644 english/cpp/aspose.pdf/filespecification/set_mimetype/_index.md create mode 100644 english/cpp/aspose.pdf/filespecification/set_name/_index.md create mode 100644 english/cpp/aspose.pdf/filespecification/set_params/_index.md create mode 100644 english/cpp/aspose.pdf/filespecification/set_unicodename/_index.md create mode 100644 english/cpp/aspose.pdf/filespecification/setvalue/_index.md create mode 100644 english/cpp/aspose.pdf/filespecificationcomparer/_index.md create mode 100644 english/cpp/aspose.pdf/filespecificationcomparer/compare/_index.md create mode 100644 english/cpp/aspose.pdf/filespecificationcomparer/filespecificationcomparer/_index.md create mode 100644 english/cpp/aspose.pdf/fixup/_index.md create mode 100644 english/cpp/aspose.pdf/floatingbox/_index.md create mode 100644 english/cpp/aspose.pdf/floatingbox/clone/_index.md create mode 100644 english/cpp/aspose.pdf/floatingbox/floatingbox/_index.md create mode 100644 english/cpp/aspose.pdf/floatingbox/get_backgroundcolor/_index.md create mode 100644 english/cpp/aspose.pdf/floatingbox/get_backgroundimage/_index.md create mode 100644 english/cpp/aspose.pdf/floatingbox/get_border/_index.md create mode 100644 english/cpp/aspose.pdf/floatingbox/get_columninfo/_index.md create mode 100644 english/cpp/aspose.pdf/floatingbox/get_height/_index.md create mode 100644 english/cpp/aspose.pdf/floatingbox/get_isneedrepeating/_index.md create mode 100644 english/cpp/aspose.pdf/floatingbox/get_left/_index.md create mode 100644 english/cpp/aspose.pdf/floatingbox/get_padding/_index.md create mode 100644 english/cpp/aspose.pdf/floatingbox/get_paragraphs/_index.md create mode 100644 english/cpp/aspose.pdf/floatingbox/get_top/_index.md create mode 100644 english/cpp/aspose.pdf/floatingbox/get_width/_index.md create mode 100644 english/cpp/aspose.pdf/floatingbox/set_backgroundcolor/_index.md create mode 100644 english/cpp/aspose.pdf/floatingbox/set_backgroundimage/_index.md create mode 100644 english/cpp/aspose.pdf/floatingbox/set_border/_index.md create mode 100644 english/cpp/aspose.pdf/floatingbox/set_columninfo/_index.md create mode 100644 english/cpp/aspose.pdf/floatingbox/set_height/_index.md create mode 100644 english/cpp/aspose.pdf/floatingbox/set_isneedrepeating/_index.md create mode 100644 english/cpp/aspose.pdf/floatingbox/set_left/_index.md create mode 100644 english/cpp/aspose.pdf/floatingbox/set_padding/_index.md create mode 100644 english/cpp/aspose.pdf/floatingbox/set_paragraphs/_index.md create mode 100644 english/cpp/aspose.pdf/floatingbox/set_top/_index.md create mode 100644 english/cpp/aspose.pdf/floatingbox/set_width/_index.md create mode 100644 english/cpp/aspose.pdf/fontembeddingexception/_index.md create mode 100644 english/cpp/aspose.pdf/fontnotfoundexception/_index.md create mode 100644 english/cpp/aspose.pdf/fontsubsetstrategy/_index.md create mode 100644 english/cpp/aspose.pdf/footerartifact/_index.md create mode 100644 english/cpp/aspose.pdf/footerartifact/footerartifact/_index.md create mode 100644 english/cpp/aspose.pdf/formattedfragment/_index.md create mode 100644 english/cpp/aspose.pdf/graphinfo/_index.md create mode 100644 english/cpp/aspose.pdf/graphinfo/clone/_index.md create mode 100644 english/cpp/aspose.pdf/graphinfo/get_color/_index.md create mode 100644 english/cpp/aspose.pdf/graphinfo/get_dasharray/_index.md create mode 100644 english/cpp/aspose.pdf/graphinfo/get_dashphase/_index.md create mode 100644 english/cpp/aspose.pdf/graphinfo/get_fillcolor/_index.md create mode 100644 english/cpp/aspose.pdf/graphinfo/get_isdoubled/_index.md create mode 100644 english/cpp/aspose.pdf/graphinfo/get_linewidth/_index.md create mode 100644 english/cpp/aspose.pdf/graphinfo/get_rotationangle/_index.md create mode 100644 english/cpp/aspose.pdf/graphinfo/get_scalingratex/_index.md create mode 100644 english/cpp/aspose.pdf/graphinfo/get_scalingratey/_index.md create mode 100644 english/cpp/aspose.pdf/graphinfo/get_skewanglex/_index.md create mode 100644 english/cpp/aspose.pdf/graphinfo/get_skewangley/_index.md create mode 100644 english/cpp/aspose.pdf/graphinfo/graphinfo/_index.md create mode 100644 english/cpp/aspose.pdf/graphinfo/set_color/_index.md create mode 100644 english/cpp/aspose.pdf/graphinfo/set_dasharray/_index.md create mode 100644 english/cpp/aspose.pdf/graphinfo/set_dashphase/_index.md create mode 100644 english/cpp/aspose.pdf/graphinfo/set_fillcolor/_index.md create mode 100644 english/cpp/aspose.pdf/graphinfo/set_isdoubled/_index.md create mode 100644 english/cpp/aspose.pdf/graphinfo/set_linewidth/_index.md create mode 100644 english/cpp/aspose.pdf/graphinfo/set_rotationangle/_index.md create mode 100644 english/cpp/aspose.pdf/graphinfo/set_scalingratex/_index.md create mode 100644 english/cpp/aspose.pdf/graphinfo/set_scalingratey/_index.md create mode 100644 english/cpp/aspose.pdf/graphinfo/set_skewanglex/_index.md create mode 100644 english/cpp/aspose.pdf/graphinfo/set_skewangley/_index.md create mode 100644 english/cpp/aspose.pdf/group/_index.md create mode 100644 english/cpp/aspose.pdf/group/get_colorspace/_index.md create mode 100644 english/cpp/aspose.pdf/group/group/_index.md create mode 100644 english/cpp/aspose.pdf/group/set_colorspace/_index.md create mode 100644 english/cpp/aspose.pdf/headerartifact/_index.md create mode 100644 english/cpp/aspose.pdf/headerartifact/headerartifact/_index.md create mode 100644 english/cpp/aspose.pdf/headerfooter/_index.md create mode 100644 english/cpp/aspose.pdf/headerfooter/clone/_index.md create mode 100644 english/cpp/aspose.pdf/headerfooter/get_isclipextracontent/_index.md create mode 100644 english/cpp/aspose.pdf/headerfooter/get_margin/_index.md create mode 100644 english/cpp/aspose.pdf/headerfooter/get_paragraphs/_index.md create mode 100644 english/cpp/aspose.pdf/headerfooter/headerfooter/_index.md create mode 100644 english/cpp/aspose.pdf/headerfooter/set_isclipextracontent/_index.md create mode 100644 english/cpp/aspose.pdf/headerfooter/set_margin/_index.md create mode 100644 english/cpp/aspose.pdf/headerfooter/set_paragraphs/_index.md create mode 100644 english/cpp/aspose.pdf/heading/_index.md create mode 100644 english/cpp/aspose.pdf/heading/clone/_index.md create mode 100644 english/cpp/aspose.pdf/heading/clonewithsegments/_index.md create mode 100644 english/cpp/aspose.pdf/heading/get_destinationpage/_index.md create mode 100644 english/cpp/aspose.pdf/heading/get_isautosequence/_index.md create mode 100644 english/cpp/aspose.pdf/heading/get_isinlist/_index.md create mode 100644 english/cpp/aspose.pdf/heading/get_level/_index.md create mode 100644 english/cpp/aspose.pdf/heading/get_startnumber/_index.md create mode 100644 english/cpp/aspose.pdf/heading/get_style/_index.md create mode 100644 english/cpp/aspose.pdf/heading/get_tocpage/_index.md create mode 100644 english/cpp/aspose.pdf/heading/get_top/_index.md create mode 100644 english/cpp/aspose.pdf/heading/get_userlabel/_index.md create mode 100644 english/cpp/aspose.pdf/heading/heading/_index.md create mode 100644 english/cpp/aspose.pdf/heading/set_destinationpage/_index.md create mode 100644 english/cpp/aspose.pdf/heading/set_isautosequence/_index.md create mode 100644 english/cpp/aspose.pdf/heading/set_isinlist/_index.md create mode 100644 english/cpp/aspose.pdf/heading/set_level/_index.md create mode 100644 english/cpp/aspose.pdf/heading/set_startnumber/_index.md create mode 100644 english/cpp/aspose.pdf/heading/set_style/_index.md create mode 100644 english/cpp/aspose.pdf/heading/set_tocpage/_index.md create mode 100644 english/cpp/aspose.pdf/heading/set_top/_index.md create mode 100644 english/cpp/aspose.pdf/heading/set_userlabel/_index.md create mode 100644 english/cpp/aspose.pdf/horizontalalignment/_index.md create mode 100644 english/cpp/aspose.pdf/htmldocumenttype/_index.md create mode 100644 english/cpp/aspose.pdf/htmlfragment/_index.md create mode 100644 english/cpp/aspose.pdf/htmlfragment/clone/_index.md create mode 100644 english/cpp/aspose.pdf/htmlfragment/get_htmlloadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/htmlfragment/get_isbreakwords/_index.md create mode 100644 english/cpp/aspose.pdf/htmlfragment/get_isparagraphhasmargin/_index.md create mode 100644 english/cpp/aspose.pdf/htmlfragment/get_rectangle/_index.md create mode 100644 english/cpp/aspose.pdf/htmlfragment/get_textstate/_index.md create mode 100644 english/cpp/aspose.pdf/htmlfragment/htmlfragment/_index.md create mode 100644 english/cpp/aspose.pdf/htmlfragment/set_htmlloadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/htmlfragment/set_isbreakwords/_index.md create mode 100644 english/cpp/aspose.pdf/htmlfragment/set_isparagraphhasmargin/_index.md create mode 100644 english/cpp/aspose.pdf/htmlfragment/set_textstate/_index.md create mode 100644 english/cpp/aspose.pdf/htmlloadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/htmlloadoptions/get_basepath/_index.md create mode 100644 english/cpp/aspose.pdf/htmlloadoptions/get_htmlmediatype/_index.md create mode 100644 english/cpp/aspose.pdf/htmlloadoptions/get_inputencoding/_index.md create mode 100644 english/cpp/aspose.pdf/htmlloadoptions/get_isembedfonts/_index.md create mode 100644 english/cpp/aspose.pdf/htmlloadoptions/get_isprioritycsspagerule/_index.md create mode 100644 english/cpp/aspose.pdf/htmlloadoptions/get_isrendertosinglepage/_index.md create mode 100644 english/cpp/aspose.pdf/htmlloadoptions/get_pageinfo/_index.md create mode 100644 english/cpp/aspose.pdf/htmlloadoptions/get_pagelayoutoption/_index.md create mode 100644 english/cpp/aspose.pdf/htmlloadoptions/htmlloadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/htmlloadoptions/set_htmlmediatype/_index.md create mode 100644 english/cpp/aspose.pdf/htmlloadoptions/set_inputencoding/_index.md create mode 100644 english/cpp/aspose.pdf/htmlloadoptions/set_isembedfonts/_index.md create mode 100644 english/cpp/aspose.pdf/htmlloadoptions/set_isprioritycsspagerule/_index.md create mode 100644 english/cpp/aspose.pdf/htmlloadoptions/set_isrendertosinglepage/_index.md create mode 100644 english/cpp/aspose.pdf/htmlloadoptions/set_pageinfo/_index.md create mode 100644 english/cpp/aspose.pdf/htmlloadoptions/set_pagelayoutoption/_index.md create mode 100644 english/cpp/aspose.pdf/htmlmediatype/_index.md create mode 100644 english/cpp/aspose.pdf/htmlpagelayoutoption/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/csssavingstrategy/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/cssurlmakingstrategy/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/get_additionalmarginwidthinpoints/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/get_batchsize/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/get_compresssvggraphicsifany/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/get_convertmarkedcontenttolayers/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/get_defaultfontname/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/get_documenttype/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/get_explicitlistofsavedpages/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/get_fixedlayout/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/get_flowlayoutparagraphfullwidth/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/get_fontsources/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/get_ignoredtextfontsize/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/get_ignoreresourcefonterrors/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/get_imageresolution/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/get_minimallinewidth/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/get_preventglyphsgrouping/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/get_rendertextasimage/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/get_simpletextboxmodegrouping/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/get_splitcssintopages/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/get_splitintopages/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/get_title/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/get_trymergefragments/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/get_usezorder/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/htmlpagemarkupsavingstrategy/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/htmlsaveoptions/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/resourcesavingstrategy/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/set_additionalmarginwidthinpoints/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/set_batchsize/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/set_compresssvggraphicsifany/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/set_convertmarkedcontenttolayers/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/set_defaultfontname/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/set_documenttype/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/set_explicitlistofsavedpages/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/set_fixedlayout/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/set_flowlayoutparagraphfullwidth/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/set_ignoredtextfontsize/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/set_ignoreresourcefonterrors/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/set_imageresolution/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/set_minimallinewidth/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/set_preventglyphsgrouping/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/set_rendertextasimage/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/set_simpletextboxmodegrouping/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/set_splitcssintopages/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/set_splitintopages/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/set_title/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/set_trymergefragments/_index.md create mode 100644 english/cpp/aspose.pdf/htmlsaveoptions/set_usezorder/_index.md create mode 100644 english/cpp/aspose.pdf/hyperlink/_index.md create mode 100644 english/cpp/aspose.pdf/hyperlink/cpp_set_link_element_to_weak/_index.md create mode 100644 english/cpp/aspose.pdf/icolorspaceconversionstrategy/_index.md create mode 100644 english/cpp/aspose.pdf/icolorspaceconversionstrategy/convert/_index.md create mode 100644 english/cpp/aspose.pdf/id/_index.md create mode 100644 english/cpp/aspose.pdf/id/get_modified/_index.md create mode 100644 english/cpp/aspose.pdf/id/get_original/_index.md create mode 100644 english/cpp/aspose.pdf/iindexbitmapconverter/_index.md create mode 100644 english/cpp/aspose.pdf/iindexbitmapconverter/get1bppimage/_index.md create mode 100644 english/cpp/aspose.pdf/iindexbitmapconverter/get4bppimage/_index.md create mode 100644 english/cpp/aspose.pdf/iindexbitmapconverter/get8bppimage/_index.md create mode 100644 english/cpp/aspose.pdf/image/_index.md create mode 100644 english/cpp/aspose.pdf/image/clone/_index.md create mode 100644 english/cpp/aspose.pdf/image/get_bitmapinfo/_index.md create mode 100644 english/cpp/aspose.pdf/image/get_bitmapsize/_index.md create mode 100644 english/cpp/aspose.pdf/image/get_file/_index.md create mode 100644 english/cpp/aspose.pdf/image/get_filetype/_index.md create mode 100644 english/cpp/aspose.pdf/image/get_fixheight/_index.md create mode 100644 english/cpp/aspose.pdf/image/get_fixwidth/_index.md create mode 100644 english/cpp/aspose.pdf/image/get_imagescale/_index.md create mode 100644 english/cpp/aspose.pdf/image/get_imagestream/_index.md create mode 100644 english/cpp/aspose.pdf/image/get_isapplyresolution/_index.md create mode 100644 english/cpp/aspose.pdf/image/get_isblackwhite/_index.md create mode 100644 english/cpp/aspose.pdf/image/get_title/_index.md create mode 100644 english/cpp/aspose.pdf/image/getmimetype/_index.md create mode 100644 english/cpp/aspose.pdf/image/image/_index.md create mode 100644 english/cpp/aspose.pdf/image/set_bitmapinfo/_index.md create mode 100644 english/cpp/aspose.pdf/image/set_file/_index.md create mode 100644 english/cpp/aspose.pdf/image/set_filetype/_index.md create mode 100644 english/cpp/aspose.pdf/image/set_fixheight/_index.md create mode 100644 english/cpp/aspose.pdf/image/set_fixwidth/_index.md create mode 100644 english/cpp/aspose.pdf/image/set_imagescale/_index.md create mode 100644 english/cpp/aspose.pdf/image/set_imagestream/_index.md create mode 100644 english/cpp/aspose.pdf/image/set_isapplyresolution/_index.md create mode 100644 english/cpp/aspose.pdf/image/set_isblackwhite/_index.md create mode 100644 english/cpp/aspose.pdf/image/set_title/_index.md create mode 100644 english/cpp/aspose.pdf/imagedeleteaction/_index.md create mode 100644 english/cpp/aspose.pdf/imagefiletype/_index.md create mode 100644 english/cpp/aspose.pdf/imagefiltertype/_index.md create mode 100644 english/cpp/aspose.pdf/imageplacement/_index.md create mode 100644 english/cpp/aspose.pdf/imageplacement/get_compositingparameters/_index.md create mode 100644 english/cpp/aspose.pdf/imageplacement/get_image/_index.md create mode 100644 english/cpp/aspose.pdf/imageplacement/get_matrix/_index.md create mode 100644 english/cpp/aspose.pdf/imageplacement/get_operator/_index.md create mode 100644 english/cpp/aspose.pdf/imageplacement/get_page/_index.md create mode 100644 english/cpp/aspose.pdf/imageplacement/get_rectangle/_index.md create mode 100644 english/cpp/aspose.pdf/imageplacement/get_resolution/_index.md create mode 100644 english/cpp/aspose.pdf/imageplacement/get_rotation/_index.md create mode 100644 english/cpp/aspose.pdf/imageplacement/hide/_index.md create mode 100644 english/cpp/aspose.pdf/imageplacement/replace/_index.md create mode 100644 english/cpp/aspose.pdf/imageplacement/save/_index.md create mode 100644 english/cpp/aspose.pdf/imageplacementabsorber/_index.md create mode 100644 english/cpp/aspose.pdf/imageplacementabsorber/get_imageplacements/_index.md create mode 100644 english/cpp/aspose.pdf/imageplacementabsorber/get_isreadonlymode/_index.md create mode 100644 english/cpp/aspose.pdf/imageplacementabsorber/imageplacementabsorber/_index.md create mode 100644 english/cpp/aspose.pdf/imageplacementabsorber/set_isreadonlymode/_index.md create mode 100644 english/cpp/aspose.pdf/imageplacementabsorber/visit/_index.md create mode 100644 english/cpp/aspose.pdf/imageplacementcollection/_index.md create mode 100644 english/cpp/aspose.pdf/imageplacementcollection/add/_index.md create mode 100644 english/cpp/aspose.pdf/imageplacementcollection/clear/_index.md create mode 100644 english/cpp/aspose.pdf/imageplacementcollection/contains/_index.md create mode 100644 english/cpp/aspose.pdf/imageplacementcollection/copyto/_index.md create mode 100644 english/cpp/aspose.pdf/imageplacementcollection/get_count/_index.md create mode 100644 english/cpp/aspose.pdf/imageplacementcollection/get_isreadonly/_index.md create mode 100644 english/cpp/aspose.pdf/imageplacementcollection/get_issynchronized/_index.md create mode 100644 english/cpp/aspose.pdf/imageplacementcollection/get_syncroot/_index.md create mode 100644 english/cpp/aspose.pdf/imageplacementcollection/getenumerator/_index.md create mode 100644 english/cpp/aspose.pdf/imageplacementcollection/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf/imageplacementcollection/remove/_index.md create mode 100644 english/cpp/aspose.pdf/imagestamp/_index.md create mode 100644 english/cpp/aspose.pdf/imagestamp/get_alternativetext/_index.md create mode 100644 english/cpp/aspose.pdf/imagestamp/get_height/_index.md create mode 100644 english/cpp/aspose.pdf/imagestamp/get_image/_index.md create mode 100644 english/cpp/aspose.pdf/imagestamp/get_quality/_index.md create mode 100644 english/cpp/aspose.pdf/imagestamp/get_width/_index.md create mode 100644 english/cpp/aspose.pdf/imagestamp/imagestamp/_index.md create mode 100644 english/cpp/aspose.pdf/imagestamp/put/_index.md create mode 100644 english/cpp/aspose.pdf/imagestamp/set_alternativetext/_index.md create mode 100644 english/cpp/aspose.pdf/imagestamp/set_height/_index.md create mode 100644 english/cpp/aspose.pdf/imagestamp/set_quality/_index.md create mode 100644 english/cpp/aspose.pdf/imagestamp/set_width/_index.md create mode 100644 english/cpp/aspose.pdf/importformat/_index.md create mode 100644 english/cpp/aspose.pdf/importoptions/_index.md create mode 100644 english/cpp/aspose.pdf/importoptions/get_importformat/_index.md create mode 100644 english/cpp/aspose.pdf/inameddestinationcollection/_index.md create mode 100644 english/cpp/aspose.pdf/inameddestinationcollection/add/_index.md create mode 100644 english/cpp/aspose.pdf/inameddestinationcollection/get_count/_index.md create mode 100644 english/cpp/aspose.pdf/inameddestinationcollection/get_names/_index.md create mode 100644 english/cpp/aspose.pdf/inameddestinationcollection/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf/inameddestinationcollection/idx_set/_index.md create mode 100644 english/cpp/aspose.pdf/inameddestinationcollection/remove/_index.md create mode 100644 english/cpp/aspose.pdf/incorrectcmapusageexception/_index.md create mode 100644 english/cpp/aspose.pdf/incorrectfontusageexception/_index.md create mode 100644 english/cpp/aspose.pdf/invalidcgmfileformatexception/_index.md create mode 100644 english/cpp/aspose.pdf/invalidfileformatexception/_index.md create mode 100644 english/cpp/aspose.pdf/invalidformtypeoperationexception/_index.md create mode 100644 english/cpp/aspose.pdf/invalidpasswordexception/_index.md create mode 100644 english/cpp/aspose.pdf/invalidpdffileformatexception/_index.md create mode 100644 english/cpp/aspose.pdf/invalidvalueformatexception/_index.md create mode 100644 english/cpp/aspose.pdf/ioperatorcontainer/_index.md create mode 100644 english/cpp/aspose.pdf/ioperatorcontainer/get_contents/_index.md create mode 100644 english/cpp/aspose.pdf/ioperatorcontainer/get_resources/_index.md create mode 100644 english/cpp/aspose.pdf/ioperatorselector/_index.md create mode 100644 english/cpp/aspose.pdf/ioperatorselector/visit/_index.md create mode 100644 english/cpp/aspose.pdf/ipagesetoptions/_index.md create mode 100644 english/cpp/aspose.pdf/ipagesetoptions/get_explicitlistofsavedpages/_index.md create mode 100644 english/cpp/aspose.pdf/ipagesetoptions/set_explicitlistofsavedpages/_index.md create mode 100644 english/cpp/aspose.pdf/ipipelineoptions/_index.md create mode 100644 english/cpp/aspose.pdf/ipipelineoptions/get_batchsize/_index.md create mode 100644 english/cpp/aspose.pdf/ipipelineoptions/set_batchsize/_index.md create mode 100644 english/cpp/aspose.pdf/isupportsmemorycleanup/_index.md create mode 100644 english/cpp/aspose.pdf/isupportsmemorycleanup/freememory/_index.md create mode 100644 english/cpp/aspose.pdf/itexinputdirectory/_index.md create mode 100644 english/cpp/aspose.pdf/itexinputdirectory/getfile/_index.md create mode 100644 english/cpp/aspose.pdf/itexoutputdirectory/_index.md create mode 100644 english/cpp/aspose.pdf/itexoutputdirectory/getoutputfile/_index.md create mode 100644 english/cpp/aspose.pdf/iwarningcallback/_index.md create mode 100644 english/cpp/aspose.pdf/iwarningcallback/warning/_index.md create mode 100644 english/cpp/aspose.pdf/javascriptcollection/_index.md create mode 100644 english/cpp/aspose.pdf/javascriptcollection/get_keys/_index.md create mode 100644 english/cpp/aspose.pdf/javascriptcollection/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf/javascriptcollection/idx_set/_index.md create mode 100644 english/cpp/aspose.pdf/javascriptcollection/remove/_index.md create mode 100644 english/cpp/aspose.pdf/javascriptextensionsexception/_index.md create mode 100644 english/cpp/aspose.pdf/latexfragment/_index.md create mode 100644 english/cpp/aspose.pdf/latexfragment/latexfragment/_index.md create mode 100644 english/cpp/aspose.pdf/latexloadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/latexsaveoptions/_index.md create mode 100644 english/cpp/aspose.pdf/layer/_index.md create mode 100644 english/cpp/aspose.pdf/layer/delete/_index.md create mode 100644 english/cpp/aspose.pdf/layer/flatten/_index.md create mode 100644 english/cpp/aspose.pdf/layer/get_contents/_index.md create mode 100644 english/cpp/aspose.pdf/layer/get_id/_index.md create mode 100644 english/cpp/aspose.pdf/layer/get_locked/_index.md create mode 100644 english/cpp/aspose.pdf/layer/get_name/_index.md create mode 100644 english/cpp/aspose.pdf/layer/layer/_index.md create mode 100644 english/cpp/aspose.pdf/layer/lock/_index.md create mode 100644 english/cpp/aspose.pdf/layer/save/_index.md create mode 100644 english/cpp/aspose.pdf/layer/unlock/_index.md create mode 100644 english/cpp/aspose.pdf/levelformat/_index.md create mode 100644 english/cpp/aspose.pdf/levelformat/get_linedash/_index.md create mode 100644 english/cpp/aspose.pdf/levelformat/get_margin/_index.md create mode 100644 english/cpp/aspose.pdf/levelformat/get_subsequentlinesindent/_index.md create mode 100644 english/cpp/aspose.pdf/levelformat/get_textstate/_index.md create mode 100644 english/cpp/aspose.pdf/levelformat/levelformat/_index.md create mode 100644 english/cpp/aspose.pdf/levelformat/set_linedash/_index.md create mode 100644 english/cpp/aspose.pdf/levelformat/set_margin/_index.md create mode 100644 english/cpp/aspose.pdf/levelformat/set_subsequentlinesindent/_index.md create mode 100644 english/cpp/aspose.pdf/levelformat/set_textstate/_index.md create mode 100644 english/cpp/aspose.pdf/license/_index.md create mode 100644 english/cpp/aspose.pdf/license/get_embedded/_index.md create mode 100644 english/cpp/aspose.pdf/license/license/_index.md create mode 100644 english/cpp/aspose.pdf/license/set_embedded/_index.md create mode 100644 english/cpp/aspose.pdf/license/setlicense/_index.md create mode 100644 english/cpp/aspose.pdf/licensestate/_index.md create mode 100644 english/cpp/aspose.pdf/loadformat/_index.md create mode 100644 english/cpp/aspose.pdf/loadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/loadoptions/get_disablefontlicenseverifications/_index.md create mode 100644 english/cpp/aspose.pdf/loadoptions/get_loadformat/_index.md create mode 100644 english/cpp/aspose.pdf/loadoptions/get_warninghandler/_index.md create mode 100644 english/cpp/aspose.pdf/loadoptions/loadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/loadoptions/resourceloadingstrategy/_index.md create mode 100644 english/cpp/aspose.pdf/loadoptions/set_disablefontlicenseverifications/_index.md create mode 100644 english/cpp/aspose.pdf/loadoptions/set_warninghandler/_index.md create mode 100644 english/cpp/aspose.pdf/localhyperlink/_index.md create mode 100644 english/cpp/aspose.pdf/localhyperlink/get_target/_index.md create mode 100644 english/cpp/aspose.pdf/localhyperlink/get_targetpagenumber/_index.md create mode 100644 english/cpp/aspose.pdf/localhyperlink/localhyperlink/_index.md create mode 100644 english/cpp/aspose.pdf/localhyperlink/set_target/_index.md create mode 100644 english/cpp/aspose.pdf/localhyperlink/set_targetpagenumber/_index.md create mode 100644 english/cpp/aspose.pdf/margininfo/_index.md create mode 100644 english/cpp/aspose.pdf/margininfo/clone/_index.md create mode 100644 english/cpp/aspose.pdf/margininfo/get_bottom/_index.md create mode 100644 english/cpp/aspose.pdf/margininfo/get_left/_index.md create mode 100644 english/cpp/aspose.pdf/margininfo/get_right/_index.md create mode 100644 english/cpp/aspose.pdf/margininfo/get_top/_index.md create mode 100644 english/cpp/aspose.pdf/margininfo/margininfo/_index.md create mode 100644 english/cpp/aspose.pdf/margininfo/set_bottom/_index.md create mode 100644 english/cpp/aspose.pdf/margininfo/set_left/_index.md create mode 100644 english/cpp/aspose.pdf/margininfo/set_right/_index.md create mode 100644 english/cpp/aspose.pdf/margininfo/set_top/_index.md create mode 100644 english/cpp/aspose.pdf/matrix/_index.md create mode 100644 english/cpp/aspose.pdf/matrix/add/_index.md create mode 100644 english/cpp/aspose.pdf/matrix/equals/_index.md create mode 100644 english/cpp/aspose.pdf/matrix/get_a/_index.md create mode 100644 english/cpp/aspose.pdf/matrix/get_b/_index.md create mode 100644 english/cpp/aspose.pdf/matrix/get_c/_index.md create mode 100644 english/cpp/aspose.pdf/matrix/get_d/_index.md create mode 100644 english/cpp/aspose.pdf/matrix/get_data/_index.md create mode 100644 english/cpp/aspose.pdf/matrix/get_e/_index.md create mode 100644 english/cpp/aspose.pdf/matrix/get_elements/_index.md create mode 100644 english/cpp/aspose.pdf/matrix/get_f/_index.md create mode 100644 english/cpp/aspose.pdf/matrix/getangle/_index.md create mode 100644 english/cpp/aspose.pdf/matrix/getflipmatrix/_index.md create mode 100644 english/cpp/aspose.pdf/matrix/gethashcode/_index.md create mode 100644 english/cpp/aspose.pdf/matrix/matrix/_index.md create mode 100644 english/cpp/aspose.pdf/matrix/multiply/_index.md create mode 100644 english/cpp/aspose.pdf/matrix/reverse/_index.md create mode 100644 english/cpp/aspose.pdf/matrix/rotation/_index.md create mode 100644 english/cpp/aspose.pdf/matrix/scale/_index.md create mode 100644 english/cpp/aspose.pdf/matrix/set_a/_index.md create mode 100644 english/cpp/aspose.pdf/matrix/set_b/_index.md create mode 100644 english/cpp/aspose.pdf/matrix/set_c/_index.md create mode 100644 english/cpp/aspose.pdf/matrix/set_d/_index.md create mode 100644 english/cpp/aspose.pdf/matrix/set_e/_index.md create mode 100644 english/cpp/aspose.pdf/matrix/set_f/_index.md create mode 100644 english/cpp/aspose.pdf/matrix/skew/_index.md create mode 100644 english/cpp/aspose.pdf/matrix/tostring/_index.md create mode 100644 english/cpp/aspose.pdf/matrix/transform/_index.md create mode 100644 english/cpp/aspose.pdf/matrix/translate/_index.md create mode 100644 english/cpp/aspose.pdf/matrix/unscale/_index.md create mode 100644 english/cpp/aspose.pdf/matrix/untransform/_index.md create mode 100644 english/cpp/aspose.pdf/matrix3d/_index.md create mode 100644 english/cpp/aspose.pdf/matrix3d/add/_index.md create mode 100644 english/cpp/aspose.pdf/matrix3d/equals/_index.md create mode 100644 english/cpp/aspose.pdf/matrix3d/get_a/_index.md create mode 100644 english/cpp/aspose.pdf/matrix3d/get_b/_index.md create mode 100644 english/cpp/aspose.pdf/matrix3d/get_c/_index.md create mode 100644 english/cpp/aspose.pdf/matrix3d/get_d/_index.md create mode 100644 english/cpp/aspose.pdf/matrix3d/get_e/_index.md create mode 100644 english/cpp/aspose.pdf/matrix3d/get_f/_index.md create mode 100644 english/cpp/aspose.pdf/matrix3d/get_g/_index.md create mode 100644 english/cpp/aspose.pdf/matrix3d/get_h/_index.md create mode 100644 english/cpp/aspose.pdf/matrix3d/get_i/_index.md create mode 100644 english/cpp/aspose.pdf/matrix3d/get_tx/_index.md create mode 100644 english/cpp/aspose.pdf/matrix3d/get_ty/_index.md create mode 100644 english/cpp/aspose.pdf/matrix3d/get_tz/_index.md create mode 100644 english/cpp/aspose.pdf/matrix3d/getangle/_index.md create mode 100644 english/cpp/aspose.pdf/matrix3d/gethashcode/_index.md create mode 100644 english/cpp/aspose.pdf/matrix3d/matrix3d/_index.md create mode 100644 english/cpp/aspose.pdf/matrix3d/set_a/_index.md create mode 100644 english/cpp/aspose.pdf/matrix3d/set_b/_index.md create mode 100644 english/cpp/aspose.pdf/matrix3d/set_c/_index.md create mode 100644 english/cpp/aspose.pdf/matrix3d/set_d/_index.md create mode 100644 english/cpp/aspose.pdf/matrix3d/set_e/_index.md create mode 100644 english/cpp/aspose.pdf/matrix3d/set_f/_index.md create mode 100644 english/cpp/aspose.pdf/matrix3d/set_g/_index.md create mode 100644 english/cpp/aspose.pdf/matrix3d/set_h/_index.md create mode 100644 english/cpp/aspose.pdf/matrix3d/set_i/_index.md create mode 100644 english/cpp/aspose.pdf/matrix3d/set_tx/_index.md create mode 100644 english/cpp/aspose.pdf/matrix3d/set_ty/_index.md create mode 100644 english/cpp/aspose.pdf/matrix3d/set_tz/_index.md create mode 100644 english/cpp/aspose.pdf/matrix3d/tostring/_index.md create mode 100644 english/cpp/aspose.pdf/mdloadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/mdloadoptions/get_isprioritycsspagerule/_index.md create mode 100644 english/cpp/aspose.pdf/mdloadoptions/get_pageinfo/_index.md create mode 100644 english/cpp/aspose.pdf/mdloadoptions/mdloadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/mdloadoptions/set_isprioritycsspagerule/_index.md create mode 100644 english/cpp/aspose.pdf/mdloadoptions/set_pageinfo/_index.md create mode 100644 english/cpp/aspose.pdf/metadata/_index.md create mode 100644 english/cpp/aspose.pdf/metadata/add/_index.md create mode 100644 english/cpp/aspose.pdf/metadata/clear/_index.md create mode 100644 english/cpp/aspose.pdf/metadata/contains/_index.md create mode 100644 english/cpp/aspose.pdf/metadata/containskey/_index.md create mode 100644 english/cpp/aspose.pdf/metadata/copyto/_index.md create mode 100644 english/cpp/aspose.pdf/metadata/get_count/_index.md create mode 100644 english/cpp/aspose.pdf/metadata/get_extensionfields/_index.md create mode 100644 english/cpp/aspose.pdf/metadata/get_isfixedsize/_index.md create mode 100644 english/cpp/aspose.pdf/metadata/get_isreadonly/_index.md create mode 100644 english/cpp/aspose.pdf/metadata/get_issynchronized/_index.md create mode 100644 english/cpp/aspose.pdf/metadata/get_keys/_index.md create mode 100644 english/cpp/aspose.pdf/metadata/get_namespacemanager/_index.md create mode 100644 english/cpp/aspose.pdf/metadata/get_syncroot/_index.md create mode 100644 english/cpp/aspose.pdf/metadata/get_values/_index.md create mode 100644 english/cpp/aspose.pdf/metadata/getenumerator/_index.md create mode 100644 english/cpp/aspose.pdf/metadata/getnamespaceuribyprefix/_index.md create mode 100644 english/cpp/aspose.pdf/metadata/getprefixbynamespaceuri/_index.md create mode 100644 english/cpp/aspose.pdf/metadata/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf/metadata/idx_set/_index.md create mode 100644 english/cpp/aspose.pdf/metadata/registernamespaceuri/_index.md create mode 100644 english/cpp/aspose.pdf/metadata/remove/_index.md create mode 100644 english/cpp/aspose.pdf/metadata/trygetvalue/_index.md create mode 100644 english/cpp/aspose.pdf/metered/_index.md create mode 100644 english/cpp/aspose.pdf/metered/getconsumptioncredit/_index.md create mode 100644 english/cpp/aspose.pdf/metered/getconsumptionquantity/_index.md create mode 100644 english/cpp/aspose.pdf/metered/getproductname/_index.md create mode 100644 english/cpp/aspose.pdf/metered/ismeteredlicensed/_index.md create mode 100644 english/cpp/aspose.pdf/metered/metered/_index.md create mode 100644 english/cpp/aspose.pdf/metered/setmeteredkey/_index.md create mode 100644 english/cpp/aspose.pdf/mhtloadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/mhtloadoptions/get_pageinfo/_index.md create mode 100644 english/cpp/aspose.pdf/mhtloadoptions/mhtloadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/mobixmlsaveoptions/_index.md create mode 100644 english/cpp/aspose.pdf/mobixmlsaveoptions/mobixmlsaveoptions/_index.md create mode 100644 english/cpp/aspose.pdf/nameddestinationcollection/_index.md create mode 100644 english/cpp/aspose.pdf/nameddestinationcollection/add/_index.md create mode 100644 english/cpp/aspose.pdf/nameddestinationcollection/get_count/_index.md create mode 100644 english/cpp/aspose.pdf/nameddestinationcollection/get_names/_index.md create mode 100644 english/cpp/aspose.pdf/nameddestinationcollection/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf/nameddestinationcollection/idx_set/_index.md create mode 100644 english/cpp/aspose.pdf/nameddestinationcollection/remove/_index.md create mode 100644 english/cpp/aspose.pdf/note/_index.md create mode 100644 english/cpp/aspose.pdf/note/get_paragraphs/_index.md create mode 100644 english/cpp/aspose.pdf/note/get_text/_index.md create mode 100644 english/cpp/aspose.pdf/note/get_textstate/_index.md create mode 100644 english/cpp/aspose.pdf/note/note/_index.md create mode 100644 english/cpp/aspose.pdf/note/set_paragraphs/_index.md create mode 100644 english/cpp/aspose.pdf/note/set_text/_index.md create mode 100644 english/cpp/aspose.pdf/note/set_textstate/_index.md create mode 100644 english/cpp/aspose.pdf/numberingstyle/_index.md create mode 100644 english/cpp/aspose.pdf/ocspsettings/_index.md create mode 100644 english/cpp/aspose.pdf/ocspsettings/get_serverurl/_index.md create mode 100644 english/cpp/aspose.pdf/ocspsettings/ocspsettings/_index.md create mode 100644 english/cpp/aspose.pdf/ocspsettings/set_serverurl/_index.md create mode 100644 english/cpp/aspose.pdf/ofdloadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/ofdloadoptions/ofdloadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/operator/_index.md create mode 100644 english/cpp/aspose.pdf/operator/accept/_index.md create mode 100644 english/cpp/aspose.pdf/operator/get_index/_index.md create mode 100644 english/cpp/aspose.pdf/operator/istextshowoperator/_index.md create mode 100644 english/cpp/aspose.pdf/operator/set_index/_index.md create mode 100644 english/cpp/aspose.pdf/operator/tostring/_index.md create mode 100644 english/cpp/aspose.pdf/operator/valueequals/_index.md create mode 100644 english/cpp/aspose.pdf/operatorcollection/_index.md create mode 100644 english/cpp/aspose.pdf/operatorcollection/accept/_index.md create mode 100644 english/cpp/aspose.pdf/operatorcollection/add/_index.md create mode 100644 english/cpp/aspose.pdf/operatorcollection/cancelupdate/_index.md create mode 100644 english/cpp/aspose.pdf/operatorcollection/clear/_index.md create mode 100644 english/cpp/aspose.pdf/operatorcollection/contains/_index.md create mode 100644 english/cpp/aspose.pdf/operatorcollection/copyto/_index.md create mode 100644 english/cpp/aspose.pdf/operatorcollection/delete/_index.md create mode 100644 english/cpp/aspose.pdf/operatorcollection/dispose/_index.md create mode 100644 english/cpp/aspose.pdf/operatorcollection/get_count/_index.md create mode 100644 english/cpp/aspose.pdf/operatorcollection/get_isfasttextextractionmode/_index.md create mode 100644 english/cpp/aspose.pdf/operatorcollection/get_isreadonly/_index.md create mode 100644 english/cpp/aspose.pdf/operatorcollection/getenumerator/_index.md create mode 100644 english/cpp/aspose.pdf/operatorcollection/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf/operatorcollection/idx_set/_index.md create mode 100644 english/cpp/aspose.pdf/operatorcollection/insert/_index.md create mode 100644 english/cpp/aspose.pdf/operatorcollection/remove/_index.md create mode 100644 english/cpp/aspose.pdf/operatorcollection/replace/_index.md create mode 100644 english/cpp/aspose.pdf/operatorcollection/resumeupdate/_index.md create mode 100644 english/cpp/aspose.pdf/operatorcollection/suppressupdate/_index.md create mode 100644 english/cpp/aspose.pdf/operatorcollection/tostring/_index.md create mode 100644 english/cpp/aspose.pdf/operatorselector/_index.md create mode 100644 english/cpp/aspose.pdf/operatorselector/get_selected/_index.md create mode 100644 english/cpp/aspose.pdf/operatorselector/operatorselector/_index.md create mode 100644 english/cpp/aspose.pdf/operatorselector/visit/_index.md create mode 100644 english/cpp/aspose.pdf/opi/_index.md create mode 100644 english/cpp/aspose.pdf/opi/get_filespecification/_index.md create mode 100644 english/cpp/aspose.pdf/opi/get_position/_index.md create mode 100644 english/cpp/aspose.pdf/opi/get_version/_index.md create mode 100644 english/cpp/aspose.pdf/opi/opi/_index.md create mode 100644 english/cpp/aspose.pdf/optimizedmemorystream/_index.md create mode 100644 english/cpp/aspose.pdf/optimizedmemorystream/defaultbuffersize/_index.md create mode 100644 english/cpp/aspose.pdf/optimizedmemorystream/flush/_index.md create mode 100644 english/cpp/aspose.pdf/optimizedmemorystream/get_buffersize/_index.md create mode 100644 english/cpp/aspose.pdf/optimizedmemorystream/get_canread/_index.md create mode 100644 english/cpp/aspose.pdf/optimizedmemorystream/get_canseek/_index.md create mode 100644 english/cpp/aspose.pdf/optimizedmemorystream/get_canwrite/_index.md create mode 100644 english/cpp/aspose.pdf/optimizedmemorystream/get_freeondispose/_index.md create mode 100644 english/cpp/aspose.pdf/optimizedmemorystream/get_length/_index.md create mode 100644 english/cpp/aspose.pdf/optimizedmemorystream/get_position/_index.md create mode 100644 english/cpp/aspose.pdf/optimizedmemorystream/optimizedmemorystream/_index.md create mode 100644 english/cpp/aspose.pdf/optimizedmemorystream/read/_index.md create mode 100644 english/cpp/aspose.pdf/optimizedmemorystream/readbyte/_index.md create mode 100644 english/cpp/aspose.pdf/optimizedmemorystream/seek/_index.md create mode 100644 english/cpp/aspose.pdf/optimizedmemorystream/set_buffersize/_index.md create mode 100644 english/cpp/aspose.pdf/optimizedmemorystream/set_freeondispose/_index.md create mode 100644 english/cpp/aspose.pdf/optimizedmemorystream/set_position/_index.md create mode 100644 english/cpp/aspose.pdf/optimizedmemorystream/setlength/_index.md create mode 100644 english/cpp/aspose.pdf/optimizedmemorystream/toarray/_index.md create mode 100644 english/cpp/aspose.pdf/optimizedmemorystream/write/_index.md create mode 100644 english/cpp/aspose.pdf/optimizedmemorystream/writebyte/_index.md create mode 100644 english/cpp/aspose.pdf/optimizedmemorystream/writeto/_index.md create mode 100644 english/cpp/aspose.pdf/outlinecollection/_index.md create mode 100644 english/cpp/aspose.pdf/outlinecollection/add/_index.md create mode 100644 english/cpp/aspose.pdf/outlinecollection/clear/_index.md create mode 100644 english/cpp/aspose.pdf/outlinecollection/contains/_index.md create mode 100644 english/cpp/aspose.pdf/outlinecollection/copyto/_index.md create mode 100644 english/cpp/aspose.pdf/outlinecollection/delete/_index.md create mode 100644 english/cpp/aspose.pdf/outlinecollection/get_count/_index.md create mode 100644 english/cpp/aspose.pdf/outlinecollection/get_first/_index.md create mode 100644 english/cpp/aspose.pdf/outlinecollection/get_isreadonly/_index.md create mode 100644 english/cpp/aspose.pdf/outlinecollection/get_issynchronized/_index.md create mode 100644 english/cpp/aspose.pdf/outlinecollection/get_last/_index.md create mode 100644 english/cpp/aspose.pdf/outlinecollection/get_syncroot/_index.md create mode 100644 english/cpp/aspose.pdf/outlinecollection/get_visiblecount/_index.md create mode 100644 english/cpp/aspose.pdf/outlinecollection/getenumerator/_index.md create mode 100644 english/cpp/aspose.pdf/outlinecollection/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf/outlinecollection/remove/_index.md create mode 100644 english/cpp/aspose.pdf/outlineitemcollection/_index.md create mode 100644 english/cpp/aspose.pdf/outlineitemcollection/add/_index.md create mode 100644 english/cpp/aspose.pdf/outlineitemcollection/clear/_index.md create mode 100644 english/cpp/aspose.pdf/outlineitemcollection/contains/_index.md create mode 100644 english/cpp/aspose.pdf/outlineitemcollection/copyto/_index.md create mode 100644 english/cpp/aspose.pdf/outlineitemcollection/delete/_index.md create mode 100644 english/cpp/aspose.pdf/outlineitemcollection/get_action/_index.md create mode 100644 english/cpp/aspose.pdf/outlineitemcollection/get_bold/_index.md create mode 100644 english/cpp/aspose.pdf/outlineitemcollection/get_color/_index.md create mode 100644 english/cpp/aspose.pdf/outlineitemcollection/get_count/_index.md create mode 100644 english/cpp/aspose.pdf/outlineitemcollection/get_destination/_index.md create mode 100644 english/cpp/aspose.pdf/outlineitemcollection/get_first/_index.md create mode 100644 english/cpp/aspose.pdf/outlineitemcollection/get_hasnext/_index.md create mode 100644 english/cpp/aspose.pdf/outlineitemcollection/get_isreadonly/_index.md create mode 100644 english/cpp/aspose.pdf/outlineitemcollection/get_issynchronized/_index.md create mode 100644 english/cpp/aspose.pdf/outlineitemcollection/get_italic/_index.md create mode 100644 english/cpp/aspose.pdf/outlineitemcollection/get_last/_index.md create mode 100644 english/cpp/aspose.pdf/outlineitemcollection/get_level/_index.md create mode 100644 english/cpp/aspose.pdf/outlineitemcollection/get_next/_index.md create mode 100644 english/cpp/aspose.pdf/outlineitemcollection/get_open/_index.md create mode 100644 english/cpp/aspose.pdf/outlineitemcollection/get_parent/_index.md create mode 100644 english/cpp/aspose.pdf/outlineitemcollection/get_prev/_index.md create mode 100644 english/cpp/aspose.pdf/outlineitemcollection/get_syncroot/_index.md create mode 100644 english/cpp/aspose.pdf/outlineitemcollection/get_title/_index.md create mode 100644 english/cpp/aspose.pdf/outlineitemcollection/get_visiblecount/_index.md create mode 100644 english/cpp/aspose.pdf/outlineitemcollection/getenumerator/_index.md create mode 100644 english/cpp/aspose.pdf/outlineitemcollection/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf/outlineitemcollection/insert/_index.md create mode 100644 english/cpp/aspose.pdf/outlineitemcollection/outlineitemcollection/_index.md create mode 100644 english/cpp/aspose.pdf/outlineitemcollection/remove/_index.md create mode 100644 english/cpp/aspose.pdf/outlineitemcollection/set_action/_index.md create mode 100644 english/cpp/aspose.pdf/outlineitemcollection/set_bold/_index.md create mode 100644 english/cpp/aspose.pdf/outlineitemcollection/set_color/_index.md create mode 100644 english/cpp/aspose.pdf/outlineitemcollection/set_destination/_index.md create mode 100644 english/cpp/aspose.pdf/outlineitemcollection/set_italic/_index.md create mode 100644 english/cpp/aspose.pdf/outlineitemcollection/set_open/_index.md create mode 100644 english/cpp/aspose.pdf/outlineitemcollection/set_title/_index.md create mode 100644 english/cpp/aspose.pdf/outlines/_index.md create mode 100644 english/cpp/aspose.pdf/outlines/add/_index.md create mode 100644 english/cpp/aspose.pdf/outlines/clear/_index.md create mode 100644 english/cpp/aspose.pdf/outlines/contains/_index.md create mode 100644 english/cpp/aspose.pdf/outlines/copyto/_index.md create mode 100644 english/cpp/aspose.pdf/outlines/get_count/_index.md create mode 100644 english/cpp/aspose.pdf/outlines/get_isreadonly/_index.md create mode 100644 english/cpp/aspose.pdf/outlines/get_visiblecount/_index.md create mode 100644 english/cpp/aspose.pdf/outlines/getenumerator/_index.md create mode 100644 english/cpp/aspose.pdf/outlines/remove/_index.md create mode 100644 english/cpp/aspose.pdf/outputintent/_index.md create mode 100644 english/cpp/aspose.pdf/outputintent/get_info/_index.md create mode 100644 english/cpp/aspose.pdf/outputintent/get_outputcondition/_index.md create mode 100644 english/cpp/aspose.pdf/outputintent/get_outputconditionidentifier/_index.md create mode 100644 english/cpp/aspose.pdf/outputintent/get_registryname/_index.md create mode 100644 english/cpp/aspose.pdf/outputintent/get_subtype/_index.md create mode 100644 english/cpp/aspose.pdf/outputintents/_index.md create mode 100644 english/cpp/aspose.pdf/outputintents/add/_index.md create mode 100644 english/cpp/aspose.pdf/outputintents/clear/_index.md create mode 100644 english/cpp/aspose.pdf/outputintents/contains/_index.md create mode 100644 english/cpp/aspose.pdf/outputintents/copyto/_index.md create mode 100644 english/cpp/aspose.pdf/outputintents/get_count/_index.md create mode 100644 english/cpp/aspose.pdf/outputintents/get_isreadonly/_index.md create mode 100644 english/cpp/aspose.pdf/outputintents/getenumerator/_index.md create mode 100644 english/cpp/aspose.pdf/outputintents/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf/outputintents/remove/_index.md create mode 100644 english/cpp/aspose.pdf/page/_index.md create mode 100644 english/cpp/aspose.pdf/page/accept/_index.md create mode 100644 english/cpp/aspose.pdf/page/addgraphics/_index.md create mode 100644 english/cpp/aspose.pdf/page/addimage/_index.md create mode 100644 english/cpp/aspose.pdf/page/addstamp/_index.md create mode 100644 english/cpp/aspose.pdf/page/asbytearray/_index.md create mode 100644 english/cpp/aspose.pdf/page/asxml/_index.md create mode 100644 english/cpp/aspose.pdf/page/beforepagegenerate/_index.md create mode 100644 english/cpp/aspose.pdf/page/calculatecontentbbox/_index.md create mode 100644 english/cpp/aspose.pdf/page/converttopngmemorystream/_index.md create mode 100644 english/cpp/aspose.pdf/page/deletegraphics/_index.md create mode 100644 english/cpp/aspose.pdf/page/dispose/_index.md create mode 100644 english/cpp/aspose.pdf/page/flatten/_index.md create mode 100644 english/cpp/aspose.pdf/page/freememory/_index.md create mode 100644 english/cpp/aspose.pdf/page/get_actions/_index.md create mode 100644 english/cpp/aspose.pdf/page/get_annotations/_index.md create mode 100644 english/cpp/aspose.pdf/page/get_artbox/_index.md create mode 100644 english/cpp/aspose.pdf/page/get_artifacts/_index.md create mode 100644 english/cpp/aspose.pdf/page/get_background/_index.md create mode 100644 english/cpp/aspose.pdf/page/get_backgroundimage/_index.md create mode 100644 english/cpp/aspose.pdf/page/get_bleedbox/_index.md create mode 100644 english/cpp/aspose.pdf/page/get_colortype/_index.md create mode 100644 english/cpp/aspose.pdf/page/get_contents/_index.md create mode 100644 english/cpp/aspose.pdf/page/get_cropbox/_index.md create mode 100644 english/cpp/aspose.pdf/page/get_duration/_index.md create mode 100644 english/cpp/aspose.pdf/page/get_fieldsintaborder/_index.md create mode 100644 english/cpp/aspose.pdf/page/get_footer/_index.md create mode 100644 english/cpp/aspose.pdf/page/get_group/_index.md create mode 100644 english/cpp/aspose.pdf/page/get_header/_index.md create mode 100644 english/cpp/aspose.pdf/page/get_isaddparagraphsafterlast/_index.md create mode 100644 english/cpp/aspose.pdf/page/get_layers/_index.md create mode 100644 english/cpp/aspose.pdf/page/get_mediabox/_index.md create mode 100644 english/cpp/aspose.pdf/page/get_notelinestyle/_index.md create mode 100644 english/cpp/aspose.pdf/page/get_number/_index.md create mode 100644 english/cpp/aspose.pdf/page/get_pageinfo/_index.md create mode 100644 english/cpp/aspose.pdf/page/get_paragraphs/_index.md create mode 100644 english/cpp/aspose.pdf/page/get_rect/_index.md create mode 100644 english/cpp/aspose.pdf/page/get_resources/_index.md create mode 100644 english/cpp/aspose.pdf/page/get_rotate/_index.md create mode 100644 english/cpp/aspose.pdf/page/get_rotationmatrix/_index.md create mode 100644 english/cpp/aspose.pdf/page/get_taborder/_index.md create mode 100644 english/cpp/aspose.pdf/page/get_tocinfo/_index.md create mode 100644 english/cpp/aspose.pdf/page/get_trimbox/_index.md create mode 100644 english/cpp/aspose.pdf/page/get_userunit/_index.md create mode 100644 english/cpp/aspose.pdf/page/get_watermark/_index.md create mode 100644 english/cpp/aspose.pdf/page/getnotifications/_index.md create mode 100644 english/cpp/aspose.pdf/page/getpagerect/_index.md create mode 100644 english/cpp/aspose.pdf/page/hasvectorgraphics/_index.md create mode 100644 english/cpp/aspose.pdf/page/inttorotation/_index.md create mode 100644 english/cpp/aspose.pdf/page/isblank/_index.md create mode 100644 english/cpp/aspose.pdf/page/makegrayscale/_index.md create mode 100644 english/cpp/aspose.pdf/page/mergelayers/_index.md create mode 100644 english/cpp/aspose.pdf/page/resize/_index.md create mode 100644 english/cpp/aspose.pdf/page/rotationtoint/_index.md create mode 100644 english/cpp/aspose.pdf/page/sendto/_index.md create mode 100644 english/cpp/aspose.pdf/page/set_artbox/_index.md create mode 100644 english/cpp/aspose.pdf/page/set_background/_index.md create mode 100644 english/cpp/aspose.pdf/page/set_backgroundimage/_index.md create mode 100644 english/cpp/aspose.pdf/page/set_bleedbox/_index.md create mode 100644 english/cpp/aspose.pdf/page/set_cropbox/_index.md create mode 100644 english/cpp/aspose.pdf/page/set_duration/_index.md create mode 100644 english/cpp/aspose.pdf/page/set_footer/_index.md create mode 100644 english/cpp/aspose.pdf/page/set_group/_index.md create mode 100644 english/cpp/aspose.pdf/page/set_header/_index.md create mode 100644 english/cpp/aspose.pdf/page/set_isaddparagraphsafterlast/_index.md create mode 100644 english/cpp/aspose.pdf/page/set_layers/_index.md create mode 100644 english/cpp/aspose.pdf/page/set_mediabox/_index.md create mode 100644 english/cpp/aspose.pdf/page/set_notelinestyle/_index.md create mode 100644 english/cpp/aspose.pdf/page/set_pageinfo/_index.md create mode 100644 english/cpp/aspose.pdf/page/set_paragraphs/_index.md create mode 100644 english/cpp/aspose.pdf/page/set_rect/_index.md create mode 100644 english/cpp/aspose.pdf/page/set_rotate/_index.md create mode 100644 english/cpp/aspose.pdf/page/set_taborder/_index.md create mode 100644 english/cpp/aspose.pdf/page/set_tocinfo/_index.md create mode 100644 english/cpp/aspose.pdf/page/set_trimbox/_index.md create mode 100644 english/cpp/aspose.pdf/page/set_userunit/_index.md create mode 100644 english/cpp/aspose.pdf/page/set_watermark/_index.md create mode 100644 english/cpp/aspose.pdf/page/setpagesize/_index.md create mode 100644 english/cpp/aspose.pdf/page/trysavevectorgraphics/_index.md create mode 100644 english/cpp/aspose.pdf/pageactioncollection/_index.md create mode 100644 english/cpp/aspose.pdf/pageactioncollection/get_onclose/_index.md create mode 100644 english/cpp/aspose.pdf/pageactioncollection/get_onopen/_index.md create mode 100644 english/cpp/aspose.pdf/pageactioncollection/set_onclose/_index.md create mode 100644 english/cpp/aspose.pdf/pageactioncollection/set_onopen/_index.md create mode 100644 english/cpp/aspose.pdf/pagecollection/_index.md create mode 100644 english/cpp/aspose.pdf/pagecollection/accept/_index.md create mode 100644 english/cpp/aspose.pdf/pagecollection/add/_index.md create mode 100644 english/cpp/aspose.pdf/pagecollection/clear/_index.md create mode 100644 english/cpp/aspose.pdf/pagecollection/contains/_index.md create mode 100644 english/cpp/aspose.pdf/pagecollection/copypage/_index.md create mode 100644 english/cpp/aspose.pdf/pagecollection/copyto/_index.md create mode 100644 english/cpp/aspose.pdf/pagecollection/delete/_index.md create mode 100644 english/cpp/aspose.pdf/pagecollection/flatten/_index.md create mode 100644 english/cpp/aspose.pdf/pagecollection/freememory/_index.md create mode 100644 english/cpp/aspose.pdf/pagecollection/get_count/_index.md create mode 100644 english/cpp/aspose.pdf/pagecollection/get_isreadonly/_index.md create mode 100644 english/cpp/aspose.pdf/pagecollection/get_issynchronized/_index.md create mode 100644 english/cpp/aspose.pdf/pagecollection/get_syncroot/_index.md create mode 100644 english/cpp/aspose.pdf/pagecollection/getenumerator/_index.md create mode 100644 english/cpp/aspose.pdf/pagecollection/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf/pagecollection/indexof/_index.md create mode 100644 english/cpp/aspose.pdf/pagecollection/insert/_index.md create mode 100644 english/cpp/aspose.pdf/pagecollection/remove/_index.md create mode 100644 english/cpp/aspose.pdf/pagecoordinatetype/_index.md create mode 100644 english/cpp/aspose.pdf/pageinfo/_index.md create mode 100644 english/cpp/aspose.pdf/pageinfo/clone/_index.md create mode 100644 english/cpp/aspose.pdf/pageinfo/get_anymargin/_index.md create mode 100644 english/cpp/aspose.pdf/pageinfo/get_defaulttextstate/_index.md create mode 100644 english/cpp/aspose.pdf/pageinfo/get_height/_index.md create mode 100644 english/cpp/aspose.pdf/pageinfo/get_islandscape/_index.md create mode 100644 english/cpp/aspose.pdf/pageinfo/get_margin/_index.md create mode 100644 english/cpp/aspose.pdf/pageinfo/get_pureheight/_index.md create mode 100644 english/cpp/aspose.pdf/pageinfo/get_width/_index.md create mode 100644 english/cpp/aspose.pdf/pageinfo/pageinfo/_index.md create mode 100644 english/cpp/aspose.pdf/pageinfo/set_anymargin/_index.md create mode 100644 english/cpp/aspose.pdf/pageinfo/set_defaulttextstate/_index.md create mode 100644 english/cpp/aspose.pdf/pageinfo/set_height/_index.md create mode 100644 english/cpp/aspose.pdf/pageinfo/set_islandscape/_index.md create mode 100644 english/cpp/aspose.pdf/pageinfo/set_margin/_index.md create mode 100644 english/cpp/aspose.pdf/pageinfo/set_width/_index.md create mode 100644 english/cpp/aspose.pdf/pagelabel/_index.md create mode 100644 english/cpp/aspose.pdf/pagelabel/get_numberingstyle/_index.md create mode 100644 english/cpp/aspose.pdf/pagelabel/get_prefix/_index.md create mode 100644 english/cpp/aspose.pdf/pagelabel/get_startingvalue/_index.md create mode 100644 english/cpp/aspose.pdf/pagelabel/pagelabel/_index.md create mode 100644 english/cpp/aspose.pdf/pagelabel/set_numberingstyle/_index.md create mode 100644 english/cpp/aspose.pdf/pagelabel/set_prefix/_index.md create mode 100644 english/cpp/aspose.pdf/pagelabel/set_startingvalue/_index.md create mode 100644 english/cpp/aspose.pdf/pagelabelcollection/_index.md create mode 100644 english/cpp/aspose.pdf/pagelabelcollection/getlabel/_index.md create mode 100644 english/cpp/aspose.pdf/pagelabelcollection/getpages/_index.md create mode 100644 english/cpp/aspose.pdf/pagelabelcollection/removelabel/_index.md create mode 100644 english/cpp/aspose.pdf/pagelabelcollection/updatelabel/_index.md create mode 100644 english/cpp/aspose.pdf/pagelayout/_index.md create mode 100644 english/cpp/aspose.pdf/pagelayoutconverter/_index.md create mode 100644 english/cpp/aspose.pdf/pagelayoutconverter/toenum/_index.md create mode 100644 english/cpp/aspose.pdf/pagelayoutconverter/tostring/_index.md create mode 100644 english/cpp/aspose.pdf/pagemode/_index.md create mode 100644 english/cpp/aspose.pdf/pagemodeconverter/_index.md create mode 100644 english/cpp/aspose.pdf/pagemodeconverter/toenum/_index.md create mode 100644 english/cpp/aspose.pdf/pagemodeconverter/tostring/_index.md create mode 100644 english/cpp/aspose.pdf/pagenumberstamp/_index.md create mode 100644 english/cpp/aspose.pdf/pagenumberstamp/get_format/_index.md create mode 100644 english/cpp/aspose.pdf/pagenumberstamp/get_numberingstyle/_index.md create mode 100644 english/cpp/aspose.pdf/pagenumberstamp/get_startingnumber/_index.md create mode 100644 english/cpp/aspose.pdf/pagenumberstamp/pagenumberstamp/_index.md create mode 100644 english/cpp/aspose.pdf/pagenumberstamp/put/_index.md create mode 100644 english/cpp/aspose.pdf/pagenumberstamp/set_format/_index.md create mode 100644 english/cpp/aspose.pdf/pagenumberstamp/set_numberingstyle/_index.md create mode 100644 english/cpp/aspose.pdf/pagenumberstamp/set_startingnumber/_index.md create mode 100644 english/cpp/aspose.pdf/pagesize/_index.md create mode 100644 english/cpp/aspose.pdf/pagesize/get_a0/_index.md create mode 100644 english/cpp/aspose.pdf/pagesize/get_a1/_index.md create mode 100644 english/cpp/aspose.pdf/pagesize/get_a2/_index.md create mode 100644 english/cpp/aspose.pdf/pagesize/get_a3/_index.md create mode 100644 english/cpp/aspose.pdf/pagesize/get_a4/_index.md create mode 100644 english/cpp/aspose.pdf/pagesize/get_a5/_index.md create mode 100644 english/cpp/aspose.pdf/pagesize/get_a6/_index.md create mode 100644 english/cpp/aspose.pdf/pagesize/get_b5/_index.md create mode 100644 english/cpp/aspose.pdf/pagesize/get_height/_index.md create mode 100644 english/cpp/aspose.pdf/pagesize/get_islandscape/_index.md create mode 100644 english/cpp/aspose.pdf/pagesize/get_p11x17/_index.md create mode 100644 english/cpp/aspose.pdf/pagesize/get_pageledger/_index.md create mode 100644 english/cpp/aspose.pdf/pagesize/get_pagelegal/_index.md create mode 100644 english/cpp/aspose.pdf/pagesize/get_pageletter/_index.md create mode 100644 english/cpp/aspose.pdf/pagesize/get_width/_index.md create mode 100644 english/cpp/aspose.pdf/pagesize/pagesize/_index.md create mode 100644 english/cpp/aspose.pdf/pagesize/set_height/_index.md create mode 100644 english/cpp/aspose.pdf/pagesize/set_islandscape/_index.md create mode 100644 english/cpp/aspose.pdf/pagesize/set_width/_index.md create mode 100644 english/cpp/aspose.pdf/paragraphs/_anonymous_method_0/_index.md create mode 100644 english/cpp/aspose.pdf/paragraphs/_index.md create mode 100644 english/cpp/aspose.pdf/paragraphs/add/_index.md create mode 100644 english/cpp/aspose.pdf/paragraphs/begin/_index.md create mode 100644 english/cpp/aspose.pdf/paragraphs/cbegin/_index.md create mode 100644 english/cpp/aspose.pdf/paragraphs/cend/_index.md create mode 100644 english/cpp/aspose.pdf/paragraphs/clear/_index.md create mode 100644 english/cpp/aspose.pdf/paragraphs/clone/_index.md create mode 100644 english/cpp/aspose.pdf/paragraphs/const_iterator/_index.md create mode 100644 english/cpp/aspose.pdf/paragraphs/cpp_switch_last_paragraph_to_week/_index.md create mode 100644 english/cpp/aspose.pdf/paragraphs/end/_index.md create mode 100644 english/cpp/aspose.pdf/paragraphs/get_count/_index.md create mode 100644 english/cpp/aspose.pdf/paragraphs/getenumerator/_index.md create mode 100644 english/cpp/aspose.pdf/paragraphs/getrange/_index.md create mode 100644 english/cpp/aspose.pdf/paragraphs/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf/paragraphs/idx_set/_index.md create mode 100644 english/cpp/aspose.pdf/paragraphs/insert/_index.md create mode 100644 english/cpp/aspose.pdf/paragraphs/insertrange/_index.md create mode 100644 english/cpp/aspose.pdf/paragraphs/iterator/_index.md create mode 100644 english/cpp/aspose.pdf/paragraphs/iterator_holder_type/_index.md create mode 100644 english/cpp/aspose.pdf/paragraphs/paragraphs/_index.md create mode 100644 english/cpp/aspose.pdf/paragraphs/remove/_index.md create mode 100644 english/cpp/aspose.pdf/paragraphs/removerange/_index.md create mode 100644 english/cpp/aspose.pdf/paragraphs/virtualizebeginconstiterator/_index.md create mode 100644 english/cpp/aspose.pdf/paragraphs/virtualizebeginiterator/_index.md create mode 100644 english/cpp/aspose.pdf/paragraphs/virtualized_iterator/_index.md create mode 100644 english/cpp/aspose.pdf/paragraphs/virtualized_iterator_element/_index.md create mode 100644 english/cpp/aspose.pdf/paragraphs/virtualizeendconstiterator/_index.md create mode 100644 english/cpp/aspose.pdf/paragraphs/virtualizeenditerator/_index.md create mode 100644 english/cpp/aspose.pdf/passwordtype/_index.md create mode 100644 english/cpp/aspose.pdf/pclloadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/pclloadoptions/get_batchsize/_index.md create mode 100644 english/cpp/aspose.pdf/pclloadoptions/pclloadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/pclloadoptions/set_batchsize/_index.md create mode 100644 english/cpp/aspose.pdf/pdfanonspecificationflags/_index.md create mode 100644 english/cpp/aspose.pdf/pdfanonspecificationflags/get_checkdifferentnamesinfontdictionaries/_index.md create mode 100644 english/cpp/aspose.pdf/pdfanonspecificationflags/pdfanonspecificationflags/_index.md create mode 100644 english/cpp/aspose.pdf/pdfanonspecificationflags/set_checkdifferentnamesinfontdictionaries/_index.md create mode 100644 english/cpp/aspose.pdf/pdfasymbolicfontencodingstrategy/_index.md create mode 100644 english/cpp/aspose.pdf/pdfasymbolicfontencodingstrategy/get_cmapencodingtablespriorityqueue/_index.md create mode 100644 english/cpp/aspose.pdf/pdfasymbolicfontencodingstrategy/get_preferredcmapencodingtable/_index.md create mode 100644 english/cpp/aspose.pdf/pdfasymbolicfontencodingstrategy/pdfasymbolicfontencodingstrategy/_index.md create mode 100644 english/cpp/aspose.pdf/pdfasymbolicfontencodingstrategy/set_cmapencodingtablespriorityqueue/_index.md create mode 100644 english/cpp/aspose.pdf/pdfasymbolicfontencodingstrategy/set_preferredcmapencodingtable/_index.md create mode 100644 english/cpp/aspose.pdf/pdfexception/_index.md create mode 100644 english/cpp/aspose.pdf/pdfformat/_index.md create mode 100644 english/cpp/aspose.pdf/pdfformatconversionoptions/_index.md create mode 100644 english/cpp/aspose.pdf/pdfformatconversionoptions/get_aligntext/_index.md create mode 100644 english/cpp/aspose.pdf/pdfformatconversionoptions/get_convertsoftmaskaction/_index.md create mode 100644 english/cpp/aspose.pdf/pdfformatconversionoptions/get_default/_index.md create mode 100644 english/cpp/aspose.pdf/pdfformatconversionoptions/get_erroraction/_index.md create mode 100644 english/cpp/aspose.pdf/pdfformatconversionoptions/get_excludefontsstrategy/_index.md create mode 100644 english/cpp/aspose.pdf/pdfformatconversionoptions/get_fontembeddingoptions/_index.md create mode 100644 english/cpp/aspose.pdf/pdfformatconversionoptions/get_format/_index.md create mode 100644 english/cpp/aspose.pdf/pdfformatconversionoptions/get_iccprofilefilename/_index.md create mode 100644 english/cpp/aspose.pdf/pdfformatconversionoptions/get_isasyncimagestreamsconversionmode/_index.md create mode 100644 english/cpp/aspose.pdf/pdfformatconversionoptions/get_islowmemorymode/_index.md create mode 100644 english/cpp/aspose.pdf/pdfformatconversionoptions/get_istransferinfo/_index.md create mode 100644 english/cpp/aspose.pdf/pdfformatconversionoptions/get_logfilename/_index.md create mode 100644 english/cpp/aspose.pdf/pdfformatconversionoptions/get_logstream/_index.md create mode 100644 english/cpp/aspose.pdf/pdfformatconversionoptions/get_nonspecificationcases/_index.md create mode 100644 english/cpp/aspose.pdf/pdfformatconversionoptions/get_notaccessiblefonts/_index.md create mode 100644 english/cpp/aspose.pdf/pdfformatconversionoptions/get_optimizefilesize/_index.md create mode 100644 english/cpp/aspose.pdf/pdfformatconversionoptions/get_puatextprocessingstrategy/_index.md create mode 100644 english/cpp/aspose.pdf/pdfformatconversionoptions/get_symbolicfontencodingstrategy/_index.md create mode 100644 english/cpp/aspose.pdf/pdfformatconversionoptions/get_transparencyaction/_index.md create mode 100644 english/cpp/aspose.pdf/pdfformatconversionoptions/get_unicodeprocessingrules/_index.md create mode 100644 english/cpp/aspose.pdf/pdfformatconversionoptions/pdfformatconversionoptions/_index.md create mode 100644 english/cpp/aspose.pdf/pdfformatconversionoptions/set_aligntext/_index.md create mode 100644 english/cpp/aspose.pdf/pdfformatconversionoptions/set_convertsoftmaskaction/_index.md create mode 100644 english/cpp/aspose.pdf/pdfformatconversionoptions/set_erroraction/_index.md create mode 100644 english/cpp/aspose.pdf/pdfformatconversionoptions/set_excludefontsstrategy/_index.md create mode 100644 english/cpp/aspose.pdf/pdfformatconversionoptions/set_format/_index.md create mode 100644 english/cpp/aspose.pdf/pdfformatconversionoptions/set_iccprofilefilename/_index.md create mode 100644 english/cpp/aspose.pdf/pdfformatconversionoptions/set_isasyncimagestreamsconversionmode/_index.md create mode 100644 english/cpp/aspose.pdf/pdfformatconversionoptions/set_islowmemorymode/_index.md create mode 100644 english/cpp/aspose.pdf/pdfformatconversionoptions/set_istransferinfo/_index.md create mode 100644 english/cpp/aspose.pdf/pdfformatconversionoptions/set_logfilename/_index.md create mode 100644 english/cpp/aspose.pdf/pdfformatconversionoptions/set_logstream/_index.md create mode 100644 english/cpp/aspose.pdf/pdfformatconversionoptions/set_optimizefilesize/_index.md create mode 100644 english/cpp/aspose.pdf/pdfformatconversionoptions/set_puatextprocessingstrategy/_index.md create mode 100644 english/cpp/aspose.pdf/pdfformatconversionoptions/set_symbolicfontencodingstrategy/_index.md create mode 100644 english/cpp/aspose.pdf/pdfformatconversionoptions/set_transparencyaction/_index.md create mode 100644 english/cpp/aspose.pdf/pdfformatconversionoptions/set_unicodeprocessingrules/_index.md create mode 100644 english/cpp/aspose.pdf/pdfpagestamp/_index.md create mode 100644 english/cpp/aspose.pdf/pdfpagestamp/get_pdfpage/_index.md create mode 100644 english/cpp/aspose.pdf/pdfpagestamp/pdfpagestamp/_index.md create mode 100644 english/cpp/aspose.pdf/pdfpagestamp/put/_index.md create mode 100644 english/cpp/aspose.pdf/pdfpagestamp/set_pdfpage/_index.md create mode 100644 english/cpp/aspose.pdf/pdfsaveoptions/_index.md create mode 100644 english/cpp/aspose.pdf/pdfsaveoptions/get_defaultfontname/_index.md create mode 100644 english/cpp/aspose.pdf/pdfsaveoptions/get_temppath/_index.md create mode 100644 english/cpp/aspose.pdf/pdfsaveoptions/pdfsaveoptions/_index.md create mode 100644 english/cpp/aspose.pdf/pdfsaveoptions/set_defaultfontname/_index.md create mode 100644 english/cpp/aspose.pdf/pdfsaveoptions/set_temppath/_index.md create mode 100644 english/cpp/aspose.pdf/pdfversion/_index.md create mode 100644 english/cpp/aspose.pdf/pdfversionmethods/_index.md create mode 100644 english/cpp/aspose.pdf/pdfversionmethods/getstring/_index.md create mode 100644 english/cpp/aspose.pdf/pdfversionmethods/pdfversionmethods/_index.md create mode 100644 english/cpp/aspose.pdf/pdfxmlloadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/pdfxmlloadoptions/pdfxmlloadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/pdfxmlsaveoptions/_index.md create mode 100644 english/cpp/aspose.pdf/pdfxmlsaveoptions/pdfxmlsaveoptions/_index.md create mode 100644 english/cpp/aspose.pdf/permissions/_index.md create mode 100644 english/cpp/aspose.pdf/point/_index.md create mode 100644 english/cpp/aspose.pdf/point/distance/_index.md create mode 100644 english/cpp/aspose.pdf/point/get_trivial/_index.md create mode 100644 english/cpp/aspose.pdf/point/get_x/_index.md create mode 100644 english/cpp/aspose.pdf/point/get_y/_index.md create mode 100644 english/cpp/aspose.pdf/point/point/_index.md create mode 100644 english/cpp/aspose.pdf/point/set_x/_index.md create mode 100644 english/cpp/aspose.pdf/point/set_y/_index.md create mode 100644 english/cpp/aspose.pdf/point/topoint/_index.md create mode 100644 english/cpp/aspose.pdf/point/tostring/_index.md create mode 100644 english/cpp/aspose.pdf/point3d/_index.md create mode 100644 english/cpp/aspose.pdf/point3d/get_trivial/_index.md create mode 100644 english/cpp/aspose.pdf/point3d/get_x/_index.md create mode 100644 english/cpp/aspose.pdf/point3d/get_y/_index.md create mode 100644 english/cpp/aspose.pdf/point3d/get_z/_index.md create mode 100644 english/cpp/aspose.pdf/point3d/point3d/_index.md create mode 100644 english/cpp/aspose.pdf/point3d/set_x/_index.md create mode 100644 english/cpp/aspose.pdf/point3d/set_y/_index.md create mode 100644 english/cpp/aspose.pdf/point3d/set_z/_index.md create mode 100644 english/cpp/aspose.pdf/point3d/tostring/_index.md create mode 100644 english/cpp/aspose.pdf/pptxsaveoptions/_index.md create mode 100644 english/cpp/aspose.pdf/pptxsaveoptions/get_customprogresshandler/_index.md create mode 100644 english/cpp/aspose.pdf/pptxsaveoptions/get_imageresolution/_index.md create mode 100644 english/cpp/aspose.pdf/pptxsaveoptions/get_optimizetextboxes/_index.md create mode 100644 english/cpp/aspose.pdf/pptxsaveoptions/get_separateimages/_index.md create mode 100644 english/cpp/aspose.pdf/pptxsaveoptions/get_slidesasimages/_index.md create mode 100644 english/cpp/aspose.pdf/pptxsaveoptions/pptxsaveoptions/_index.md create mode 100644 english/cpp/aspose.pdf/pptxsaveoptions/set_customprogresshandler/_index.md create mode 100644 english/cpp/aspose.pdf/pptxsaveoptions/set_imageresolution/_index.md create mode 100644 english/cpp/aspose.pdf/pptxsaveoptions/set_optimizetextboxes/_index.md create mode 100644 english/cpp/aspose.pdf/pptxsaveoptions/set_separateimages/_index.md create mode 100644 english/cpp/aspose.pdf/pptxsaveoptions/set_slidesasimages/_index.md create mode 100644 english/cpp/aspose.pdf/printduplex/_index.md create mode 100644 english/cpp/aspose.pdf/printduplexconverter/_index.md create mode 100644 english/cpp/aspose.pdf/printduplexconverter/toenum/_index.md create mode 100644 english/cpp/aspose.pdf/printduplexconverter/tostring/_index.md create mode 100644 english/cpp/aspose.pdf/printscaling/_index.md create mode 100644 english/cpp/aspose.pdf/printscalingconverter/_index.md create mode 100644 english/cpp/aspose.pdf/printscalingconverter/printscalingconverter/_index.md create mode 100644 english/cpp/aspose.pdf/printscalingconverter/toenum/_index.md create mode 100644 english/cpp/aspose.pdf/printscalingconverter/tostring/_index.md create mode 100644 english/cpp/aspose.pdf/producttype/_index.md create mode 100644 english/cpp/aspose.pdf/progresseventtype/_index.md create mode 100644 english/cpp/aspose.pdf/psloadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/psloadoptions/get_fontsfolders/_index.md create mode 100644 english/cpp/aspose.pdf/psloadoptions/psloadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/psloadoptions/set_fontsfolders/_index.md create mode 100644 english/cpp/aspose.pdf/pssaveoptions/_index.md create mode 100644 english/cpp/aspose.pdf/pssaveoptions/get_embedfont/_index.md create mode 100644 english/cpp/aspose.pdf/pssaveoptions/get_embedfontas/_index.md create mode 100644 english/cpp/aspose.pdf/pssaveoptions/pssaveoptions/_index.md create mode 100644 english/cpp/aspose.pdf/pssaveoptions/set_embedfont/_index.md create mode 100644 english/cpp/aspose.pdf/pssaveoptions/set_embedfontas/_index.md create mode 100644 english/cpp/aspose.pdf/rectangle/_index.md create mode 100644 english/cpp/aspose.pdf/rectangle/center/_index.md create mode 100644 english/cpp/aspose.pdf/rectangle/clone/_index.md create mode 100644 english/cpp/aspose.pdf/rectangle/contains/_index.md create mode 100644 english/cpp/aspose.pdf/rectangle/containsline/_index.md create mode 100644 english/cpp/aspose.pdf/rectangle/containspoint/_index.md create mode 100644 english/cpp/aspose.pdf/rectangle/empty/_index.md create mode 100644 english/cpp/aspose.pdf/rectangle/equals/_index.md create mode 100644 english/cpp/aspose.pdf/rectangle/fromrect/_index.md create mode 100644 english/cpp/aspose.pdf/rectangle/get_height/_index.md create mode 100644 english/cpp/aspose.pdf/rectangle/get_isempty/_index.md create mode 100644 english/cpp/aspose.pdf/rectangle/get_ispoint/_index.md create mode 100644 english/cpp/aspose.pdf/rectangle/get_istrivial/_index.md create mode 100644 english/cpp/aspose.pdf/rectangle/get_llx/_index.md create mode 100644 english/cpp/aspose.pdf/rectangle/get_lly/_index.md create mode 100644 english/cpp/aspose.pdf/rectangle/get_trivial/_index.md create mode 100644 english/cpp/aspose.pdf/rectangle/get_urx/_index.md create mode 100644 english/cpp/aspose.pdf/rectangle/get_ury/_index.md create mode 100644 english/cpp/aspose.pdf/rectangle/get_width/_index.md create mode 100644 english/cpp/aspose.pdf/rectangle/intersect/_index.md create mode 100644 english/cpp/aspose.pdf/rectangle/isintersect/_index.md create mode 100644 english/cpp/aspose.pdf/rectangle/join/_index.md create mode 100644 english/cpp/aspose.pdf/rectangle/nearequals/_index.md create mode 100644 english/cpp/aspose.pdf/rectangle/parse/_index.md create mode 100644 english/cpp/aspose.pdf/rectangle/rectangle/_index.md create mode 100644 english/cpp/aspose.pdf/rectangle/rotate/_index.md create mode 100644 english/cpp/aspose.pdf/rectangle/set_llx/_index.md create mode 100644 english/cpp/aspose.pdf/rectangle/set_lly/_index.md create mode 100644 english/cpp/aspose.pdf/rectangle/set_urx/_index.md create mode 100644 english/cpp/aspose.pdf/rectangle/set_ury/_index.md create mode 100644 english/cpp/aspose.pdf/rectangle/topoints/_index.md create mode 100644 english/cpp/aspose.pdf/rectangle/torect/_index.md create mode 100644 english/cpp/aspose.pdf/rectangle/tostring/_index.md create mode 100644 english/cpp/aspose.pdf/renderingoptions/_index.md create mode 100644 english/cpp/aspose.pdf/renderingoptions/get_barcodeoptimization/_index.md create mode 100644 english/cpp/aspose.pdf/renderingoptions/get_convertfontstounicodettf/_index.md create mode 100644 english/cpp/aspose.pdf/renderingoptions/get_defaultfontname/_index.md create mode 100644 english/cpp/aspose.pdf/renderingoptions/get_heightextraunits/_index.md create mode 100644 english/cpp/aspose.pdf/renderingoptions/get_ignoreresourcefonterrors/_index.md create mode 100644 english/cpp/aspose.pdf/renderingoptions/get_interpolationhighquality/_index.md create mode 100644 english/cpp/aspose.pdf/renderingoptions/get_maxfontscachesize/_index.md create mode 100644 english/cpp/aspose.pdf/renderingoptions/get_maxsymbolscachesize/_index.md create mode 100644 english/cpp/aspose.pdf/renderingoptions/get_optimizedimensions/_index.md create mode 100644 english/cpp/aspose.pdf/renderingoptions/get_scaleimagestofitpagewidth/_index.md create mode 100644 english/cpp/aspose.pdf/renderingoptions/get_systemfontsnativerendering/_index.md create mode 100644 english/cpp/aspose.pdf/renderingoptions/get_usefonthinting/_index.md create mode 100644 english/cpp/aspose.pdf/renderingoptions/get_usenewimagingengine/_index.md create mode 100644 english/cpp/aspose.pdf/renderingoptions/get_widthextraunits/_index.md create mode 100644 english/cpp/aspose.pdf/renderingoptions/renderingoptions/_index.md create mode 100644 english/cpp/aspose.pdf/renderingoptions/set_barcodeoptimization/_index.md create mode 100644 english/cpp/aspose.pdf/renderingoptions/set_convertfontstounicodettf/_index.md create mode 100644 english/cpp/aspose.pdf/renderingoptions/set_defaultfontname/_index.md create mode 100644 english/cpp/aspose.pdf/renderingoptions/set_heightextraunits/_index.md create mode 100644 english/cpp/aspose.pdf/renderingoptions/set_ignoreresourcefonterrors/_index.md create mode 100644 english/cpp/aspose.pdf/renderingoptions/set_interpolationhighquality/_index.md create mode 100644 english/cpp/aspose.pdf/renderingoptions/set_maxfontscachesize/_index.md create mode 100644 english/cpp/aspose.pdf/renderingoptions/set_maxsymbolscachesize/_index.md create mode 100644 english/cpp/aspose.pdf/renderingoptions/set_optimizedimensions/_index.md create mode 100644 english/cpp/aspose.pdf/renderingoptions/set_scaleimagestofitpagewidth/_index.md create mode 100644 english/cpp/aspose.pdf/renderingoptions/set_systemfontsnativerendering/_index.md create mode 100644 english/cpp/aspose.pdf/renderingoptions/set_usefonthinting/_index.md create mode 100644 english/cpp/aspose.pdf/renderingoptions/set_usenewimagingengine/_index.md create mode 100644 english/cpp/aspose.pdf/renderingoptions/set_widthextraunits/_index.md create mode 100644 english/cpp/aspose.pdf/resources/_index.md create mode 100644 english/cpp/aspose.pdf/resources/cpp_set_xfrom_weak/_index.md create mode 100644 english/cpp/aspose.pdf/resources/freememory/_index.md create mode 100644 english/cpp/aspose.pdf/resources/get_fonts/_index.md create mode 100644 english/cpp/aspose.pdf/resources/get_forms/_index.md create mode 100644 english/cpp/aspose.pdf/resources/get_images/_index.md create mode 100644 english/cpp/aspose.pdf/resources/getextgstates/_index.md create mode 100644 english/cpp/aspose.pdf/resources/getfonts/_index.md create mode 100644 english/cpp/aspose.pdf/returnaction/_index.md create mode 100644 english/cpp/aspose.pdf/rgbtodevicegrayconversionstrategy/_index.md create mode 100644 english/cpp/aspose.pdf/rgbtodevicegrayconversionstrategy/convert/_index.md create mode 100644 english/cpp/aspose.pdf/rotation/_index.md create mode 100644 english/cpp/aspose.pdf/row/_index.md create mode 100644 english/cpp/aspose.pdf/row/clone/_index.md create mode 100644 english/cpp/aspose.pdf/row/get_backgroundcolor/_index.md create mode 100644 english/cpp/aspose.pdf/row/get_border/_index.md create mode 100644 english/cpp/aspose.pdf/row/get_cells/_index.md create mode 100644 english/cpp/aspose.pdf/row/get_defaultcellborder/_index.md create mode 100644 english/cpp/aspose.pdf/row/get_defaultcellpadding/_index.md create mode 100644 english/cpp/aspose.pdf/row/get_defaultcelltextstate/_index.md create mode 100644 english/cpp/aspose.pdf/row/get_fixedrowheight/_index.md create mode 100644 english/cpp/aspose.pdf/row/get_isinnewpage/_index.md create mode 100644 english/cpp/aspose.pdf/row/get_isrowbroken/_index.md create mode 100644 english/cpp/aspose.pdf/row/get_minrowheight/_index.md create mode 100644 english/cpp/aspose.pdf/row/get_verticalalignment/_index.md create mode 100644 english/cpp/aspose.pdf/row/row/_index.md create mode 100644 english/cpp/aspose.pdf/row/set_backgroundcolor/_index.md create mode 100644 english/cpp/aspose.pdf/row/set_border/_index.md create mode 100644 english/cpp/aspose.pdf/row/set_cells/_index.md create mode 100644 english/cpp/aspose.pdf/row/set_defaultcellborder/_index.md create mode 100644 english/cpp/aspose.pdf/row/set_defaultcellpadding/_index.md create mode 100644 english/cpp/aspose.pdf/row/set_defaultcelltextstate/_index.md create mode 100644 english/cpp/aspose.pdf/row/set_fixedrowheight/_index.md create mode 100644 english/cpp/aspose.pdf/row/set_isinnewpage/_index.md create mode 100644 english/cpp/aspose.pdf/row/set_isrowbroken/_index.md create mode 100644 english/cpp/aspose.pdf/row/set_minrowheight/_index.md create mode 100644 english/cpp/aspose.pdf/row/set_verticalalignment/_index.md create mode 100644 english/cpp/aspose.pdf/rows/_index.md create mode 100644 english/cpp/aspose.pdf/rows/add/_index.md create mode 100644 english/cpp/aspose.pdf/rows/begin/_index.md create mode 100644 english/cpp/aspose.pdf/rows/cbegin/_index.md create mode 100644 english/cpp/aspose.pdf/rows/cend/_index.md create mode 100644 english/cpp/aspose.pdf/rows/const_iterator/_index.md create mode 100644 english/cpp/aspose.pdf/rows/dispose/_index.md create mode 100644 english/cpp/aspose.pdf/rows/end/_index.md create mode 100644 english/cpp/aspose.pdf/rows/get_count/_index.md create mode 100644 english/cpp/aspose.pdf/rows/getenumerator/_index.md create mode 100644 english/cpp/aspose.pdf/rows/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf/rows/idx_set/_index.md create mode 100644 english/cpp/aspose.pdf/rows/indexof/_index.md create mode 100644 english/cpp/aspose.pdf/rows/iterator/_index.md create mode 100644 english/cpp/aspose.pdf/rows/iterator_holder_type/_index.md create mode 100644 english/cpp/aspose.pdf/rows/remove/_index.md create mode 100644 english/cpp/aspose.pdf/rows/removeat/_index.md create mode 100644 english/cpp/aspose.pdf/rows/removerange/_index.md create mode 100644 english/cpp/aspose.pdf/rows/rows/_index.md create mode 100644 english/cpp/aspose.pdf/rows/virtualizebeginconstiterator/_index.md create mode 100644 english/cpp/aspose.pdf/rows/virtualizebeginiterator/_index.md create mode 100644 english/cpp/aspose.pdf/rows/virtualized_iterator/_index.md create mode 100644 english/cpp/aspose.pdf/rows/virtualized_iterator_element/_index.md create mode 100644 english/cpp/aspose.pdf/rows/virtualizeendconstiterator/_index.md create mode 100644 english/cpp/aspose.pdf/rows/virtualizeenditerator/_index.md create mode 100644 english/cpp/aspose.pdf/saveformat/_index.md create mode 100644 english/cpp/aspose.pdf/saveoptions/_index.md create mode 100644 english/cpp/aspose.pdf/saveoptions/get_cacheglyphs/_index.md create mode 100644 english/cpp/aspose.pdf/saveoptions/get_closeresponse/_index.md create mode 100644 english/cpp/aspose.pdf/saveoptions/get_saveformat/_index.md create mode 100644 english/cpp/aspose.pdf/saveoptions/get_warninghandler/_index.md create mode 100644 english/cpp/aspose.pdf/saveoptions/set_cacheglyphs/_index.md create mode 100644 english/cpp/aspose.pdf/saveoptions/set_closeresponse/_index.md create mode 100644 english/cpp/aspose.pdf/saveoptions/set_warninghandler/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/get_background/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/get_bottommargin/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/get_height/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/get_horizontalalignment/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/get_leftmargin/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/get_opacity/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/get_outlineopacity/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/get_outlinewidth/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/get_rightmargin/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/get_rotate/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/get_rotateangle/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/get_topmargin/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/get_verticalalignment/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/get_width/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/get_xindent/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/get_yindent/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/get_zoom/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/get_zoomx/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/get_zoomy/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/getstampid/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/put/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/set_background/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/set_bottommargin/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/set_height/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/set_horizontalalignment/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/set_leftmargin/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/set_opacity/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/set_outlineopacity/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/set_outlinewidth/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/set_rightmargin/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/set_rotate/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/set_rotateangle/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/set_topmargin/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/set_verticalalignment/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/set_width/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/set_xindent/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/set_yindent/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/set_zoom/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/set_zoomx/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/set_zoomy/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/setstampid/_index.md create mode 100644 english/cpp/aspose.pdf/stamp/stamp/_index.md create mode 100644 english/cpp/aspose.pdf/svgloadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/svgloadoptions/get_adjustpagesize/_index.md create mode 100644 english/cpp/aspose.pdf/svgloadoptions/get_pageinfo/_index.md create mode 100644 english/cpp/aspose.pdf/svgloadoptions/set_adjustpagesize/_index.md create mode 100644 english/cpp/aspose.pdf/svgloadoptions/set_pageinfo/_index.md create mode 100644 english/cpp/aspose.pdf/svgloadoptions/svgloadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/svgsaveoptions/_index.md create mode 100644 english/cpp/aspose.pdf/svgsaveoptions/embeddedimagessavingstrategy/_index.md create mode 100644 english/cpp/aspose.pdf/svgsaveoptions/svgsaveoptions/_index.md create mode 100644 english/cpp/aspose.pdf/table/_index.md create mode 100644 english/cpp/aspose.pdf/table/clone/_index.md create mode 100644 english/cpp/aspose.pdf/table/get_alignment/_index.md create mode 100644 english/cpp/aspose.pdf/table/get_backgroundcolor/_index.md create mode 100644 english/cpp/aspose.pdf/table/get_border/_index.md create mode 100644 english/cpp/aspose.pdf/table/get_breaktext/_index.md create mode 100644 english/cpp/aspose.pdf/table/get_broken/_index.md create mode 100644 english/cpp/aspose.pdf/table/get_columnadjustment/_index.md create mode 100644 english/cpp/aspose.pdf/table/get_columnwidths/_index.md create mode 100644 english/cpp/aspose.pdf/table/get_cornerstyle/_index.md create mode 100644 english/cpp/aspose.pdf/table/get_defaultcellborder/_index.md create mode 100644 english/cpp/aspose.pdf/table/get_defaultcellpadding/_index.md create mode 100644 english/cpp/aspose.pdf/table/get_defaultcelltextstate/_index.md create mode 100644 english/cpp/aspose.pdf/table/get_defaultcolumnwidth/_index.md create mode 100644 english/cpp/aspose.pdf/table/get_isbordersincluded/_index.md create mode 100644 english/cpp/aspose.pdf/table/get_isbroken/_index.md create mode 100644 english/cpp/aspose.pdf/table/get_left/_index.md create mode 100644 english/cpp/aspose.pdf/table/get_repeatingcolumnscount/_index.md create mode 100644 english/cpp/aspose.pdf/table/get_repeatingrowscount/_index.md create mode 100644 english/cpp/aspose.pdf/table/get_repeatingrowsstyle/_index.md create mode 100644 english/cpp/aspose.pdf/table/get_rows/_index.md create mode 100644 english/cpp/aspose.pdf/table/get_top/_index.md create mode 100644 english/cpp/aspose.pdf/table/getheight/_index.md create mode 100644 english/cpp/aspose.pdf/table/getwidth/_index.md create mode 100644 english/cpp/aspose.pdf/table/set_alignment/_index.md create mode 100644 english/cpp/aspose.pdf/table/set_backgroundcolor/_index.md create mode 100644 english/cpp/aspose.pdf/table/set_border/_index.md create mode 100644 english/cpp/aspose.pdf/table/set_breaktext/_index.md create mode 100644 english/cpp/aspose.pdf/table/set_broken/_index.md create mode 100644 english/cpp/aspose.pdf/table/set_columnadjustment/_index.md create mode 100644 english/cpp/aspose.pdf/table/set_columnwidths/_index.md create mode 100644 english/cpp/aspose.pdf/table/set_cornerstyle/_index.md create mode 100644 english/cpp/aspose.pdf/table/set_defaultcellborder/_index.md create mode 100644 english/cpp/aspose.pdf/table/set_defaultcellpadding/_index.md create mode 100644 english/cpp/aspose.pdf/table/set_defaultcelltextstate/_index.md create mode 100644 english/cpp/aspose.pdf/table/set_defaultcolumnwidth/_index.md create mode 100644 english/cpp/aspose.pdf/table/set_isbordersincluded/_index.md create mode 100644 english/cpp/aspose.pdf/table/set_isbroken/_index.md create mode 100644 english/cpp/aspose.pdf/table/set_left/_index.md create mode 100644 english/cpp/aspose.pdf/table/set_repeatingcolumnscount/_index.md create mode 100644 english/cpp/aspose.pdf/table/set_repeatingrowscount/_index.md create mode 100644 english/cpp/aspose.pdf/table/set_repeatingrowsstyle/_index.md create mode 100644 english/cpp/aspose.pdf/table/set_top/_index.md create mode 100644 english/cpp/aspose.pdf/table/setcolumntextstate/_index.md create mode 100644 english/cpp/aspose.pdf/table/table/_index.md create mode 100644 english/cpp/aspose.pdf/tablebroken/_index.md create mode 100644 english/cpp/aspose.pdf/taborder/_index.md create mode 100644 english/cpp/aspose.pdf/texfilesysteminputdirectory/_index.md create mode 100644 english/cpp/aspose.pdf/texfilesysteminputdirectory/dispose/_index.md create mode 100644 english/cpp/aspose.pdf/texfilesysteminputdirectory/getfile/_index.md create mode 100644 english/cpp/aspose.pdf/texfilesysteminputdirectory/texfilesysteminputdirectory/_index.md create mode 100644 english/cpp/aspose.pdf/texfilesystemoutputdirectory/_index.md create mode 100644 english/cpp/aspose.pdf/texfilesystemoutputdirectory/getoutputfile/_index.md create mode 100644 english/cpp/aspose.pdf/texfilesystemoutputdirectory/texfilesystemoutputdirectory/_index.md create mode 100644 english/cpp/aspose.pdf/texfragment/_index.md create mode 100644 english/cpp/aspose.pdf/texfragment/clone/_index.md create mode 100644 english/cpp/aspose.pdf/texfragment/get_latexloadoptionsofinstance/_index.md create mode 100644 english/cpp/aspose.pdf/texfragment/get_texloadoptionsofinstance/_index.md create mode 100644 english/cpp/aspose.pdf/texfragment/set_latexloadoptionsofinstance/_index.md create mode 100644 english/cpp/aspose.pdf/texfragment/set_texloadoptionsofinstance/_index.md create mode 100644 english/cpp/aspose.pdf/texfragment/texfragment/_index.md create mode 100644 english/cpp/aspose.pdf/texloadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/texloadoptions/get_datetime/_index.md create mode 100644 english/cpp/aspose.pdf/texloadoptions/get_inputdirectory/_index.md create mode 100644 english/cpp/aspose.pdf/texloadoptions/get_jobname/_index.md create mode 100644 english/cpp/aspose.pdf/texloadoptions/get_noligatures/_index.md create mode 100644 english/cpp/aspose.pdf/texloadoptions/get_outputdirectory/_index.md create mode 100644 english/cpp/aspose.pdf/texloadoptions/get_rasterizeformulas/_index.md create mode 100644 english/cpp/aspose.pdf/texloadoptions/get_repeat/_index.md create mode 100644 english/cpp/aspose.pdf/texloadoptions/get_requiredinputdirectory/_index.md create mode 100644 english/cpp/aspose.pdf/texloadoptions/get_showterminaloutput/_index.md create mode 100644 english/cpp/aspose.pdf/texloadoptions/get_subsetfonts/_index.md create mode 100644 english/cpp/aspose.pdf/texloadoptions/getloadresult/_index.md create mode 100644 english/cpp/aspose.pdf/texloadoptions/set_datetime/_index.md create mode 100644 english/cpp/aspose.pdf/texloadoptions/set_inputdirectory/_index.md create mode 100644 english/cpp/aspose.pdf/texloadoptions/set_jobname/_index.md create mode 100644 english/cpp/aspose.pdf/texloadoptions/set_noligatures/_index.md create mode 100644 english/cpp/aspose.pdf/texloadoptions/set_outputdirectory/_index.md create mode 100644 english/cpp/aspose.pdf/texloadoptions/set_rasterizeformulas/_index.md create mode 100644 english/cpp/aspose.pdf/texloadoptions/set_repeat/_index.md create mode 100644 english/cpp/aspose.pdf/texloadoptions/set_requiredinputdirectory/_index.md create mode 100644 english/cpp/aspose.pdf/texloadoptions/set_showterminaloutput/_index.md create mode 100644 english/cpp/aspose.pdf/texloadoptions/set_subsetfonts/_index.md create mode 100644 english/cpp/aspose.pdf/texloadoptions/texloadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/texloadresult/_index.md create mode 100644 english/cpp/aspose.pdf/texmemoryoutputdirectory/_index.md create mode 100644 english/cpp/aspose.pdf/texmemoryoutputdirectory/dispose/_index.md create mode 100644 english/cpp/aspose.pdf/texmemoryoutputdirectory/getfile/_index.md create mode 100644 english/cpp/aspose.pdf/texmemoryoutputdirectory/getoutputfile/_index.md create mode 100644 english/cpp/aspose.pdf/texmemoryoutputdirectory/texmemoryoutputdirectory/_index.md create mode 100644 english/cpp/aspose.pdf/texsaveoptions/_index.md create mode 100644 english/cpp/aspose.pdf/texsaveoptions/addfontencs/_index.md create mode 100644 english/cpp/aspose.pdf/texsaveoptions/clearfontencs/_index.md create mode 100644 english/cpp/aspose.pdf/texsaveoptions/get_outdirectorypath/_index.md create mode 100644 english/cpp/aspose.pdf/texsaveoptions/get_pagescount/_index.md create mode 100644 english/cpp/aspose.pdf/texsaveoptions/set_outdirectorypath/_index.md create mode 100644 english/cpp/aspose.pdf/texsaveoptions/texsaveoptions/_index.md create mode 100644 english/cpp/aspose.pdf/textstamp/_index.md create mode 100644 english/cpp/aspose.pdf/textstamp/get_draw/_index.md create mode 100644 english/cpp/aspose.pdf/textstamp/get_height/_index.md create mode 100644 english/cpp/aspose.pdf/textstamp/get_justify/_index.md create mode 100644 english/cpp/aspose.pdf/textstamp/get_maxrowwidth/_index.md create mode 100644 english/cpp/aspose.pdf/textstamp/get_nocharacterbehavior/_index.md create mode 100644 english/cpp/aspose.pdf/textstamp/get_replacementfont/_index.md create mode 100644 english/cpp/aspose.pdf/textstamp/get_scale/_index.md create mode 100644 english/cpp/aspose.pdf/textstamp/get_textalignment/_index.md create mode 100644 english/cpp/aspose.pdf/textstamp/get_textstate/_index.md create mode 100644 english/cpp/aspose.pdf/textstamp/get_treatyindentasbaseline/_index.md create mode 100644 english/cpp/aspose.pdf/textstamp/get_value/_index.md create mode 100644 english/cpp/aspose.pdf/textstamp/get_width/_index.md create mode 100644 english/cpp/aspose.pdf/textstamp/get_wordwrap/_index.md create mode 100644 english/cpp/aspose.pdf/textstamp/get_wordwrapmode/_index.md create mode 100644 english/cpp/aspose.pdf/textstamp/put/_index.md create mode 100644 english/cpp/aspose.pdf/textstamp/set_draw/_index.md create mode 100644 english/cpp/aspose.pdf/textstamp/set_height/_index.md create mode 100644 english/cpp/aspose.pdf/textstamp/set_justify/_index.md create mode 100644 english/cpp/aspose.pdf/textstamp/set_maxrowwidth/_index.md create mode 100644 english/cpp/aspose.pdf/textstamp/set_nocharacterbehavior/_index.md create mode 100644 english/cpp/aspose.pdf/textstamp/set_replacementfont/_index.md create mode 100644 english/cpp/aspose.pdf/textstamp/set_scale/_index.md create mode 100644 english/cpp/aspose.pdf/textstamp/set_textalignment/_index.md create mode 100644 english/cpp/aspose.pdf/textstamp/set_treatyindentasbaseline/_index.md create mode 100644 english/cpp/aspose.pdf/textstamp/set_value/_index.md create mode 100644 english/cpp/aspose.pdf/textstamp/set_width/_index.md create mode 100644 english/cpp/aspose.pdf/textstamp/set_wordwrap/_index.md create mode 100644 english/cpp/aspose.pdf/textstamp/set_wordwrapmode/_index.md create mode 100644 english/cpp/aspose.pdf/textstamp/textstamp/_index.md create mode 100644 english/cpp/aspose.pdf/timestampsettings/_index.md create mode 100644 english/cpp/aspose.pdf/timestampsettings/get_basicauthcredentials/_index.md create mode 100644 english/cpp/aspose.pdf/timestampsettings/get_digesthashalgorithm/_index.md create mode 100644 english/cpp/aspose.pdf/timestampsettings/get_serverurl/_index.md create mode 100644 english/cpp/aspose.pdf/timestampsettings/set_basicauthcredentials/_index.md create mode 100644 english/cpp/aspose.pdf/timestampsettings/set_digesthashalgorithm/_index.md create mode 100644 english/cpp/aspose.pdf/timestampsettings/set_serverurl/_index.md create mode 100644 english/cpp/aspose.pdf/timestampsettings/timestampsettings/_index.md create mode 100644 english/cpp/aspose.pdf/tocinfo/_index.md create mode 100644 english/cpp/aspose.pdf/tocinfo/get_columninfo/_index.md create mode 100644 english/cpp/aspose.pdf/tocinfo/get_copytooutlines/_index.md create mode 100644 english/cpp/aspose.pdf/tocinfo/get_formatarray/_index.md create mode 100644 english/cpp/aspose.pdf/tocinfo/get_formatarraylength/_index.md create mode 100644 english/cpp/aspose.pdf/tocinfo/get_iscounttocpages/_index.md create mode 100644 english/cpp/aspose.pdf/tocinfo/get_isshowpagenumbers/_index.md create mode 100644 english/cpp/aspose.pdf/tocinfo/get_linedash/_index.md create mode 100644 english/cpp/aspose.pdf/tocinfo/get_pagenumbersprefix/_index.md create mode 100644 english/cpp/aspose.pdf/tocinfo/get_title/_index.md create mode 100644 english/cpp/aspose.pdf/tocinfo/set_columninfo/_index.md create mode 100644 english/cpp/aspose.pdf/tocinfo/set_copytooutlines/_index.md create mode 100644 english/cpp/aspose.pdf/tocinfo/set_formatarray/_index.md create mode 100644 english/cpp/aspose.pdf/tocinfo/set_formatarraylength/_index.md create mode 100644 english/cpp/aspose.pdf/tocinfo/set_iscounttocpages/_index.md create mode 100644 english/cpp/aspose.pdf/tocinfo/set_isshowpagenumbers/_index.md create mode 100644 english/cpp/aspose.pdf/tocinfo/set_linedash/_index.md create mode 100644 english/cpp/aspose.pdf/tocinfo/set_pagenumbersprefix/_index.md create mode 100644 english/cpp/aspose.pdf/tocinfo/set_title/_index.md create mode 100644 english/cpp/aspose.pdf/tocinfo/tocinfo/_index.md create mode 100644 english/cpp/aspose.pdf/txtloadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/txtloadoptions/txtloadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/unifiedsaveoptions/_index.md create mode 100644 english/cpp/aspose.pdf/unifiedsaveoptions/conversionprogresseventhandler/_index.md create mode 100644 english/cpp/aspose.pdf/unifiedsaveoptions/get_extractocrsublayeronly/_index.md create mode 100644 english/cpp/aspose.pdf/unifiedsaveoptions/set_extractocrsublayeronly/_index.md create mode 100644 english/cpp/aspose.pdf/unifiedsaveoptions/unifiedsaveoptions/_index.md create mode 100644 english/cpp/aspose.pdf/unsupportedfonttypeexception/_index.md create mode 100644 english/cpp/aspose.pdf/verticalalignment/_index.md create mode 100644 english/cpp/aspose.pdf/warninginfo/_index.md create mode 100644 english/cpp/aspose.pdf/warninginfo/get_warningmessage/_index.md create mode 100644 english/cpp/aspose.pdf/warninginfo/get_warningtypeproperty/_index.md create mode 100644 english/cpp/aspose.pdf/warninginfo/warninginfo/_index.md create mode 100644 english/cpp/aspose.pdf/warningtype/_index.md create mode 100644 english/cpp/aspose.pdf/watermark/_index.md create mode 100644 english/cpp/aspose.pdf/watermark/get_available/_index.md create mode 100644 english/cpp/aspose.pdf/watermark/get_image/_index.md create mode 100644 english/cpp/aspose.pdf/watermark/get_position/_index.md create mode 100644 english/cpp/aspose.pdf/watermark/watermark/_index.md create mode 100644 english/cpp/aspose.pdf/watermarkartifact/_index.md create mode 100644 english/cpp/aspose.pdf/watermarkartifact/watermarkartifact/_index.md create mode 100644 english/cpp/aspose.pdf/webhyperlink/_index.md create mode 100644 english/cpp/aspose.pdf/webhyperlink/get_url/_index.md create mode 100644 english/cpp/aspose.pdf/webhyperlink/set_url/_index.md create mode 100644 english/cpp/aspose.pdf/webhyperlink/webhyperlink/_index.md create mode 100644 english/cpp/aspose.pdf/xfatag/_index.md create mode 100644 english/cpp/aspose.pdf/xform/_index.md create mode 100644 english/cpp/aspose.pdf/xform/createnewform/_index.md create mode 100644 english/cpp/aspose.pdf/xform/dispose/_index.md create mode 100644 english/cpp/aspose.pdf/xform/freememory/_index.md create mode 100644 english/cpp/aspose.pdf/xform/get_bbox/_index.md create mode 100644 english/cpp/aspose.pdf/xform/get_contents/_index.md create mode 100644 english/cpp/aspose.pdf/xform/get_it/_index.md create mode 100644 english/cpp/aspose.pdf/xform/get_matrix/_index.md create mode 100644 english/cpp/aspose.pdf/xform/get_name/_index.md create mode 100644 english/cpp/aspose.pdf/xform/get_opi/_index.md create mode 100644 english/cpp/aspose.pdf/xform/get_rectangle/_index.md create mode 100644 english/cpp/aspose.pdf/xform/get_resources/_index.md create mode 100644 english/cpp/aspose.pdf/xform/get_subtype/_index.md create mode 100644 english/cpp/aspose.pdf/xform/getresources/_index.md create mode 100644 english/cpp/aspose.pdf/xform/set_bbox/_index.md create mode 100644 english/cpp/aspose.pdf/xform/set_matrix/_index.md create mode 100644 english/cpp/aspose.pdf/xform/set_name/_index.md create mode 100644 english/cpp/aspose.pdf/xformcollection/_index.md create mode 100644 english/cpp/aspose.pdf/xformcollection/add/_index.md create mode 100644 english/cpp/aspose.pdf/xformcollection/clear/_index.md create mode 100644 english/cpp/aspose.pdf/xformcollection/contains/_index.md create mode 100644 english/cpp/aspose.pdf/xformcollection/copyto/_index.md create mode 100644 english/cpp/aspose.pdf/xformcollection/cpp_set_xfrom_weak/_index.md create mode 100644 english/cpp/aspose.pdf/xformcollection/delete/_index.md create mode 100644 english/cpp/aspose.pdf/xformcollection/freememory/_index.md create mode 100644 english/cpp/aspose.pdf/xformcollection/get_count/_index.md create mode 100644 english/cpp/aspose.pdf/xformcollection/get_isreadonly/_index.md create mode 100644 english/cpp/aspose.pdf/xformcollection/get_issynchronized/_index.md create mode 100644 english/cpp/aspose.pdf/xformcollection/get_syncroot/_index.md create mode 100644 english/cpp/aspose.pdf/xformcollection/getenumerator/_index.md create mode 100644 english/cpp/aspose.pdf/xformcollection/getformname/_index.md create mode 100644 english/cpp/aspose.pdf/xformcollection/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf/xformcollection/remove/_index.md create mode 100644 english/cpp/aspose.pdf/ximage/_index.md create mode 100644 english/cpp/aspose.pdf/ximage/addstencilmask/_index.md create mode 100644 english/cpp/aspose.pdf/ximage/detectcolortype/_index.md create mode 100644 english/cpp/aspose.pdf/ximage/get_containstransparency/_index.md create mode 100644 english/cpp/aspose.pdf/ximage/get_filtertype/_index.md create mode 100644 english/cpp/aspose.pdf/ximage/get_grayscaled/_index.md create mode 100644 english/cpp/aspose.pdf/ximage/get_height/_index.md create mode 100644 english/cpp/aspose.pdf/ximage/get_imagemask/_index.md create mode 100644 english/cpp/aspose.pdf/ximage/get_metadata/_index.md create mode 100644 english/cpp/aspose.pdf/ximage/get_name/_index.md create mode 100644 english/cpp/aspose.pdf/ximage/get_width/_index.md create mode 100644 english/cpp/aspose.pdf/ximage/getcolortype/_index.md create mode 100644 english/cpp/aspose.pdf/ximage/getnameincollection/_index.md create mode 100644 english/cpp/aspose.pdf/ximage/isthesameobject/_index.md create mode 100644 english/cpp/aspose.pdf/ximage/rename/_index.md create mode 100644 english/cpp/aspose.pdf/ximage/save/_index.md create mode 100644 english/cpp/aspose.pdf/ximage/set_name/_index.md create mode 100644 english/cpp/aspose.pdf/ximage/tostream/_index.md create mode 100644 english/cpp/aspose.pdf/ximageaddingparams/_index.md create mode 100644 english/cpp/aspose.pdf/ximageaddingparams/get_bitmapinfo/_index.md create mode 100644 english/cpp/aspose.pdf/ximageaddingparams/get_bitmask/_index.md create mode 100644 english/cpp/aspose.pdf/ximageaddingparams/get_filtertype/_index.md create mode 100644 english/cpp/aspose.pdf/ximageaddingparams/get_image/_index.md create mode 100644 english/cpp/aspose.pdf/ximageaddingparams/get_imagestream/_index.md create mode 100644 english/cpp/aspose.pdf/ximageaddingparams/get_isblackwhite/_index.md create mode 100644 english/cpp/aspose.pdf/ximageaddingparams/get_isgrayscaled/_index.md create mode 100644 english/cpp/aspose.pdf/ximageaddingparams/get_isgrayscalesoftmasked/_index.md create mode 100644 english/cpp/aspose.pdf/ximageaddingparams/get_isstencilmasked/_index.md create mode 100644 english/cpp/aspose.pdf/ximageaddingparams/get_quality/_index.md create mode 100644 english/cpp/aspose.pdf/ximageaddingparams/get_type/_index.md create mode 100644 english/cpp/aspose.pdf/ximageaddingparams/set_bitmapinfo/_index.md create mode 100644 english/cpp/aspose.pdf/ximageaddingparams/set_bitmask/_index.md create mode 100644 english/cpp/aspose.pdf/ximageaddingparams/set_filtertype/_index.md create mode 100644 english/cpp/aspose.pdf/ximageaddingparams/set_image/_index.md create mode 100644 english/cpp/aspose.pdf/ximageaddingparams/set_imagestream/_index.md create mode 100644 english/cpp/aspose.pdf/ximageaddingparams/set_isblackwhite/_index.md create mode 100644 english/cpp/aspose.pdf/ximageaddingparams/set_isgrayscaled/_index.md create mode 100644 english/cpp/aspose.pdf/ximageaddingparams/set_isgrayscalesoftmasked/_index.md create mode 100644 english/cpp/aspose.pdf/ximageaddingparams/set_isstencilmasked/_index.md create mode 100644 english/cpp/aspose.pdf/ximageaddingparams/set_quality/_index.md create mode 100644 english/cpp/aspose.pdf/ximageaddingparams/ximageaddingparams/_index.md create mode 100644 english/cpp/aspose.pdf/ximagecollection/_index.md create mode 100644 english/cpp/aspose.pdf/ximagecollection/add/_index.md create mode 100644 english/cpp/aspose.pdf/ximagecollection/addwithname/_index.md create mode 100644 english/cpp/aspose.pdf/ximagecollection/clear/_index.md create mode 100644 english/cpp/aspose.pdf/ximagecollection/contains/_index.md create mode 100644 english/cpp/aspose.pdf/ximagecollection/copyto/_index.md create mode 100644 english/cpp/aspose.pdf/ximagecollection/delete/_index.md create mode 100644 english/cpp/aspose.pdf/ximagecollection/get_count/_index.md create mode 100644 english/cpp/aspose.pdf/ximagecollection/get_isreadonly/_index.md create mode 100644 english/cpp/aspose.pdf/ximagecollection/get_issynchronized/_index.md create mode 100644 english/cpp/aspose.pdf/ximagecollection/get_names/_index.md create mode 100644 english/cpp/aspose.pdf/ximagecollection/get_syncroot/_index.md create mode 100644 english/cpp/aspose.pdf/ximagecollection/getenumerator/_index.md create mode 100644 english/cpp/aspose.pdf/ximagecollection/getimagename/_index.md create mode 100644 english/cpp/aspose.pdf/ximagecollection/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf/ximagecollection/remove/_index.md create mode 100644 english/cpp/aspose.pdf/ximagecollection/replace/_index.md create mode 100644 english/cpp/aspose.pdf/xmlloadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/xmlloadoptions/get_xslstream/_index.md create mode 100644 english/cpp/aspose.pdf/xmlloadoptions/xmlloadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/xmlloadoptions/~xmlloadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/xmlsaveoptions/_index.md create mode 100644 english/cpp/aspose.pdf/xmlsaveoptions/xmlsaveoptions/_index.md create mode 100644 english/cpp/aspose.pdf/xmpfield/_index.md create mode 100644 english/cpp/aspose.pdf/xmpfield/equals/_index.md create mode 100644 english/cpp/aspose.pdf/xmpfield/get_empty/_index.md create mode 100644 english/cpp/aspose.pdf/xmpfield/get_fieldtype/_index.md create mode 100644 english/cpp/aspose.pdf/xmpfield/get_isempty/_index.md create mode 100644 english/cpp/aspose.pdf/xmpfield/get_lang/_index.md create mode 100644 english/cpp/aspose.pdf/xmpfield/get_localname/_index.md create mode 100644 english/cpp/aspose.pdf/xmpfield/get_name/_index.md create mode 100644 english/cpp/aspose.pdf/xmpfield/get_namespaceuri/_index.md create mode 100644 english/cpp/aspose.pdf/xmpfield/get_prefix/_index.md create mode 100644 english/cpp/aspose.pdf/xmpfield/get_value/_index.md create mode 100644 english/cpp/aspose.pdf/xmpfield/gethashcode/_index.md create mode 100644 english/cpp/aspose.pdf/xmpfield/set_localname/_index.md create mode 100644 english/cpp/aspose.pdf/xmpfield/set_namespaceuri/_index.md create mode 100644 english/cpp/aspose.pdf/xmpfield/set_prefix/_index.md create mode 100644 english/cpp/aspose.pdf/xmpfield/toarray/_index.md create mode 100644 english/cpp/aspose.pdf/xmpfield/tostructure/_index.md create mode 100644 english/cpp/aspose.pdf/xmpfieldtype/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensioncategorytype/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionfield/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionfield/get_name/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionfield/get_valuetype/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionfield/getxml/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionfield/xmppdfaextensionfield/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionobject/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionobject/get_description/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionobject/get_value/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionobject/getxml/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionobject/set_value/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionproperty/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionproperty/get_category/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionproperty/getxml/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionproperty/xmppdfaextensionproperty/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionschema/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionschema/add/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionschema/contains/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionschema/defaultextensionnamespaceprefix/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionschema/defaultextensionnamespaceuri/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionschema/defaultfieldnamespaceprefix/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionschema/defaultfieldnamespaceuri/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionschema/defaultpropertynamespaceprefix/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionschema/defaultpropertynamespaceuri/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionschema/defaultschemanamespaceprefix/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionschema/defaultschemanamespaceuri/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionschema/defaultvaluenamespaceuri/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionschema/defaultvaluetypenamespaceprefix/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionschema/get_description/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionschema/get_objects/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionschema/getproperty/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionschema/getschemaxml/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionschema/getvaluesxml/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionschema/rdfnamespaceuri/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionschema/rdfprefix/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionschema/remove/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionschema/xmppdfaextensionschema/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionschemadescription/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionschemadescription/get_description/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionschemadescription/get_namespaceuri/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionschemadescription/get_prefix/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionschemadescription/getxml/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionschemadescription/xmppdfaextensionschemadescription/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionvaluetype/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionvaluetype/add/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionvaluetype/addrange/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionvaluetype/clear/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionvaluetype/get_fields/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionvaluetype/get_namespaceuri/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionvaluetype/get_prefix/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionvaluetype/get_type/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionvaluetype/getxml/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionvaluetype/remove/_index.md create mode 100644 english/cpp/aspose.pdf/xmppdfaextensionvaluetype/xmppdfaextensionvaluetype/_index.md create mode 100644 english/cpp/aspose.pdf/xmpvalue/_index.md create mode 100644 english/cpp/aspose.pdf/xmpvalue/get_isarray/_index.md create mode 100644 english/cpp/aspose.pdf/xmpvalue/get_isdatetime/_index.md create mode 100644 english/cpp/aspose.pdf/xmpvalue/get_isdouble/_index.md create mode 100644 english/cpp/aspose.pdf/xmpvalue/get_isfield/_index.md create mode 100644 english/cpp/aspose.pdf/xmpvalue/get_isinteger/_index.md create mode 100644 english/cpp/aspose.pdf/xmpvalue/get_isnamedvalue/_index.md create mode 100644 english/cpp/aspose.pdf/xmpvalue/get_isnamedvalues/_index.md create mode 100644 english/cpp/aspose.pdf/xmpvalue/get_israw/_index.md create mode 100644 english/cpp/aspose.pdf/xmpvalue/get_isstring/_index.md create mode 100644 english/cpp/aspose.pdf/xmpvalue/get_isstructure/_index.md create mode 100644 english/cpp/aspose.pdf/xmpvalue/to_keyvaluepair/_index.md create mode 100644 english/cpp/aspose.pdf/xmpvalue/to_keyvaluepairarray/_index.md create mode 100644 english/cpp/aspose.pdf/xmpvalue/to_objectarray/_index.md create mode 100644 english/cpp/aspose.pdf/xmpvalue/to_string/_index.md create mode 100644 english/cpp/aspose.pdf/xmpvalue/to_xmpvalue/_index.md create mode 100644 english/cpp/aspose.pdf/xmpvalue/to_xmpvaluearray/_index.md create mode 100644 english/cpp/aspose.pdf/xmpvalue/toarray/_index.md create mode 100644 english/cpp/aspose.pdf/xmpvalue/todatetime/_index.md create mode 100644 english/cpp/aspose.pdf/xmpvalue/todictionary/_index.md create mode 100644 english/cpp/aspose.pdf/xmpvalue/todouble/_index.md create mode 100644 english/cpp/aspose.pdf/xmpvalue/tofield/_index.md create mode 100644 english/cpp/aspose.pdf/xmpvalue/tointeger/_index.md create mode 100644 english/cpp/aspose.pdf/xmpvalue/tonamedvalue/_index.md create mode 100644 english/cpp/aspose.pdf/xmpvalue/tonamedvalues/_index.md create mode 100644 english/cpp/aspose.pdf/xmpvalue/toraw/_index.md create mode 100644 english/cpp/aspose.pdf/xmpvalue/tostring/_index.md create mode 100644 english/cpp/aspose.pdf/xmpvalue/tostringvalue/_index.md create mode 100644 english/cpp/aspose.pdf/xmpvalue/tostructure/_index.md create mode 100644 english/cpp/aspose.pdf/xmpvalue/xmpvalue/_index.md create mode 100644 english/cpp/aspose.pdf/xpsloadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/xpsloadoptions/get_batchsize/_index.md create mode 100644 english/cpp/aspose.pdf/xpsloadoptions/set_batchsize/_index.md create mode 100644 english/cpp/aspose.pdf/xpsloadoptions/xpsloadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/xpssaveoptions/_index.md create mode 100644 english/cpp/aspose.pdf/xpssaveoptions/get_batchsize/_index.md create mode 100644 english/cpp/aspose.pdf/xpssaveoptions/get_savetransparenttexts/_index.md create mode 100644 english/cpp/aspose.pdf/xpssaveoptions/get_usenewimagingengine/_index.md create mode 100644 english/cpp/aspose.pdf/xpssaveoptions/set_batchsize/_index.md create mode 100644 english/cpp/aspose.pdf/xpssaveoptions/set_savetransparenttexts/_index.md create mode 100644 english/cpp/aspose.pdf/xpssaveoptions/set_usenewimagingengine/_index.md create mode 100644 english/cpp/aspose.pdf/xpssaveoptions/xpssaveoptions/_index.md create mode 100644 english/cpp/aspose.pdf/xslfoloadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/xslfoloadoptions/get_basepath/_index.md create mode 100644 english/cpp/aspose.pdf/xslfoloadoptions/get_xsltargumentlist/_index.md create mode 100644 english/cpp/aspose.pdf/xslfoloadoptions/set_basepath/_index.md create mode 100644 english/cpp/aspose.pdf/xslfoloadoptions/set_xsltargumentlist/_index.md create mode 100644 english/cpp/aspose.pdf/xslfoloadoptions/xslfoloadoptions/_index.md diff --git a/english/cpp/_index.md b/english/cpp/_index.md index c843fc19be..b2bcbc4092 100644 --- a/english/cpp/_index.md +++ b/english/cpp/_index.md @@ -1,10 +1,51 @@ --- title: Aspose.PDF for C++ +linktitle: Aspose.PDF for C++ type: docs weight: 10 url: /cpp/ -keywords: "Aspose.PDF for C++ API Reference" +keywords: "Aspose.PDF for C++, Aspose PDF, Aspose API Reference." description: Aspose.PDF for C++ is a native C++ library that enables developers to create, read and manipulate PDF documents programmatically. tags: ['pdf-to-jpg', 'pdf-to-png', 'pdf-convert'] is_root: true --- + +## Namespaces + +| Namespace | Description | +| --- | --- | +| [Aspose::Pdf](./aspose.pdf/) | | +| [Aspose::Pdf::Annotations](./aspose.pdf.annotations/) | | +| [Aspose::Pdf::Collections](./aspose.pdf.collections/) | | +| [Aspose::Pdf::Comparison](./aspose.pdf.comparison/) | | +| [Aspose::Pdf::Comparison::Diff](./aspose.pdf.comparison.diff/) | | +| [Aspose::Pdf::Comparison::GraphicalComparison](./aspose.pdf.comparison.graphicalcomparison/) | | +| [Aspose::Pdf::Comparison::OutputGenerator](./aspose.pdf.comparison.outputgenerator/) | | +| [Aspose::Pdf::Comparison::SideBySideComparison](./aspose.pdf.comparison.sidebysidecomparison/) | | +| [Aspose::Pdf::Devices](./aspose.pdf.devices/) | | +| [Aspose::Pdf::Drawing](./aspose.pdf.drawing/) | | +| [Aspose::Pdf::Engine::CommonData](./aspose.pdf.engine.commondata/) | | +| [Aspose::Pdf::Engine::CommonData::Text::CMaps](./aspose.pdf.engine.commondata.text.cmaps/) | | +| [Aspose::Pdf::Engine::CommonData::Text::Fonts::Utilities](./aspose.pdf.engine.commondata.text.fonts.utilities/) | | +| [Aspose::Pdf::Engine::Data](./aspose.pdf.engine.data/) | | +| [Aspose::Pdf::Engine::Filters](./aspose.pdf.engine.filters/) | | +| [Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers](./aspose.pdf.engine.io.convertstrategies.converthelpers/) | | +| [Aspose::Pdf::Facades](./aspose.pdf.facades/) | | +| [Aspose::Pdf::Forms](./aspose.pdf.forms/) | | +| [Aspose::Pdf::GroupProcessor](./aspose.pdf.groupprocessor/) | | +| [Aspose::Pdf::GroupProcessor::Creators](./aspose.pdf.groupprocessor.creators/) | | +| [Aspose::Pdf::LogicalStructure](./aspose.pdf.logicalstructure/) | | +| [Aspose::Pdf::Multithreading](./aspose.pdf.multithreading/) | | +| [Aspose::Pdf::Operators](./aspose.pdf.operators/) | | +| [Aspose::Pdf::Optimization](./aspose.pdf.optimization/) | | +| [Aspose::Pdf::PdfAOptionClasses](./aspose.pdf.pdfaoptionclasses/) | | +| [Aspose::Pdf::PdfToMarkdown](./aspose.pdf.pdftomarkdown/) | | +| [Aspose::Pdf::Sanitization](./aspose.pdf.sanitization/) | | +| [Aspose::Pdf::Structure](./aspose.pdf.structure/) | | +| [Aspose::Pdf::Tagged](./aspose.pdf.tagged/) | | +| [Aspose::Pdf::Text](./aspose.pdf.text/) | | +| [Aspose::Pdf::Utils](./aspose.pdf.utils/) | | +| [Aspose::Pdf::Utils::PublicData](./aspose.pdf.utils.publicdata/) | | +| [Aspose::Pdf::Vector](./aspose.pdf.vector/) | | +| [Aspose::Pdf::Vector::Extraction](./aspose.pdf.vector.extraction/) | | +| [Aspose::Pdf::XfaConverter](./aspose.pdf.xfaconverter/) | | diff --git a/english/cpp/aspose.pdf.annotations/_index.md b/english/cpp/aspose.pdf.annotations/_index.md new file mode 100644 index 0000000000..70bac60254 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/_index.md @@ -0,0 +1,175 @@ +--- +title: Aspose::Pdf::Annotations namespace +linktitle: Aspose::Pdf::Annotations +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Annotations namespace in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/ +--- + + + +## Classes + +| Class | Description | +| --- | --- | +| [ActionCollection](./actioncollection/) | [Collection](../aspose.pdf/collection/) of actions. | +| [Annotation](./annotation/) | Class representing annotation object. | +| [AnnotationActionCollection](./annotationactioncollection/) | Represents the collection of annotation actions. | +| [AnnotationCollection](./annotationcollection/) | Class representing annotation collection. | +| [AnnotationFlagsConverter](./annotationflagsconverter/) | | +| [AnnotationSelector](./annotationselector/) | This class is used for selecting annotations using Visitor template idea. | +| [AnnotationStateConverter](./annotationstateconverter/) | | +| [AnnotationStateModelConverter](./annotationstatemodelconverter/) | | +| [AppearanceDictionary](./appearancedictionary/) | [Annotation](./annotation/) appearance dictionary specifying how the annotation shall be presented visually on the page. | +| [BleedMarkAnnotation](./bleedmarkannotation/) | Represents a Bleed Mark annotation. | +| [Border](./border/) | Class representing characteristics of annotation border. | +| [BorderEffectConverter](./bordereffectconverter/) | | +| [BorderStyleConverter](./borderstyleconverter/) | | +| [CaptionPositionConverter](./captionpositionconverter/) | | +| [CaretAnnotation](./caretannotation/) | Class representing Caret annotation. | +| [CaretSymbolConverter](./caretsymbolconverter/) | | +| [Characteristics](./characteristics/) | Represents annotation characteristics. | +| [CircleAnnotation](./circleannotation/) | Class representing Circle annotation. | +| [ColorBarAnnotation](./colorbarannotation/) | Class representing [ColorBarAnnotation](./colorbarannotation/) annotation. Property [Color](../aspose.pdf/color/) ignored, instead used ColorsOfCMYK color. On creation, the ratio of width and height determines the orientation of the annotation - horizontal or vertical. Next, it checks that the annotation rectangle is outside the TrimBox, and if not, then it is shifted to the nearest location outside the TrimBox, taking into account the orientation of the annotation. It is possible to reduce the width (height) so that the annotation fits outside the TrimBox. If there is no space for the layout, the width/height can be set to zero (in this case, the annotation is present on the page, but not displayed). | +| [ColorsOfCMYKConverter](./colorsofcmykconverter/) | | +| [CommonFigureAnnotation](./commonfigureannotation/) | Abstract class representing common figure annotation. | +| [CornerPrinterMarkAnnotation](./cornerprintermarkannotation/) | Represents annotation types that are placed in the corners of the printed page. | +| [CustomExplicitDestination](./customexplicitdestination/) | Represents custom explicit destination. | +| [Dash](./dash/) | Class representing line dash pattern. | +| [DefaultAppearance](./defaultappearance/) | Describes default appearance of field (font, text size and color). | +| [DocumentActionCollection](./documentactioncollection/) | Class describes actions performed on some actions with document. | +| [ExplicitDestination](./explicitdestination/) | Represents the base class for explicit destinations in PDF document. | +| [ExplicitDestinationTypeConverter](./explicitdestinationtypeconverter/) | | +| [FdfReader](./fdfreader/) | Class which performes reading of FDF format. | +| [FileAttachmentAnnotation](./fileattachmentannotation/) | Class describes file attachment annotation. | +| [FileIconConverter](./fileiconconverter/) | | +| [FitBExplicitDestination](./fitbexplicitdestination/) | Represents explicit destination that displays the page with its contents magnified just enough to fit its bounding box entirely within the window both horizontally and vertically. If the required horizontal and vertical magnification factors are different, use the smaller of the two, centering the bounding box within the window in the other dimension. | +| [FitBHExplicitDestination](./fitbhexplicitdestination/) | Represents explicit destination that displays the page with the vertical coordinate top positioned at the top edge of the window and the contents of the page magnified just enough to fit the entire width of its bounding box within the window. A null value for top specifies that the current value of that parameter is to be retained unchanged. | +| [FitBVExplicitDestination](./fitbvexplicitdestination/) | Represents explicit destination that displays the page with the horizontal coordinate left positioned at the left edge of the window and the contents of the page magnified just enough to fit the entire height of its bounding box within the window. A null value for left specifies that the current value of that parameter is to be retained unchanged. | +| [FitExplicitDestination](./fitexplicitdestination/) | Represents explicit destination that displays the page with its contents magnified just enough to fit the entire page within the window both horizontally and vertically. If the required horizontal and vertical magnification factors are different, use the smaller of the two, centering the page within the window in the other dimension. | +| [FitHExplicitDestination](./fithexplicitdestination/) | Represents explicit destination that displays the page with the vertical coordinate top positioned at the top edge of the window and the contents of the page magnified just enough to fit the entire width of the page within the window. A null value for top specifies that the current value of that parameter is to be retained unchanged. | +| [FitRExplicitDestination](./fitrexplicitdestination/) | Represents explicit destination that displays the page with its contents magnified just enough to fit the rectangle specified by the coordinates left, bottom, right, and topentirely within the window both horizontally and vertically. If the required horizontal and vertical magnification factors are different, use the smaller of the two, centering the rectangle within the window in the other dimension. A null value for any of the parameters may result in unpredictable behavior. | +| [FitVExplicitDestination](./fitvexplicitdestination/) | Represents explicit destination that displays the page with the horizontal coordinate left positioned at the left edge of the window and the contents of the page magnified just enough to fit the entire height of the page within the window. A null value for left specifies that the current value of that parameter is to be retained unchanged. | +| [FixedPrint](./fixedprint/) | Represent Fixed print data of [Watermark](../aspose.pdf/watermark/)[Annotation](./annotation/). | +| [FreeTextAnnotation](./freetextannotation/) | Represents a free text annotation that displays text directly on the page. Unlike an ordinary text annotation, a free text annotation has no open or closed state; instead of being displayed in a pop-up window, the text is always visible. | +| [FreeTextIntentConverter](./freetextintentconverter/) | | +| [GenericAnnotation](./genericannotation/) | The class describes general annotation. | +| [GoToAction](./gotoaction/) | Represents a go-to action that changes the view to a specified destination (page, location, and magnification factor). | +| [GoToRemoteAction](./gotoremoteaction/) | Represents a remote go-to action that is similar to an ordinary go-to action but jumps to a destination in another PDF file instead of the current file. | +| [GoToURIAction](./gotouriaction/) | Represents a URI action causes a URI to be resolved. | +| [HideAction](./hideaction/) | Represents a hide action that hides or shows one or more annotations on the screen by setting or clearing their Hidden flags. | +| [HighlightAnnotation](./highlightannotation/) | Represents a highlight annotation that highlights a range of text in the document. | +| [HighlightingModeConverter](./highlightingmodeconverter/) | | +| [IAnnotationVisitor](./iannotationvisitor/) | Defines Visitor for visiting different document annotations. | +| [IAppointment](./iappointment/) | Represents general interface for actions and destinations. | +| [ImportDataAction](./importdataaction/) | Upon invocation of an import-data action, [Forms](../aspose.pdf.forms/) Data Format (FDF) data shall be imported into the document's interactive form from a specified file. | +| [InkAnnotation](./inkannotation/) | Represents a freehand "scribble" composed of one or more disjoint paths. | +| [JavascriptAction](./javascriptaction/) | Class representing javascript action. | +| [JustificationConverter](./justificationconverter/) | | +| [LaunchAction](./launchaction/) | Represents a launch action that launches an application or opens or prints a document. | +| [LaunchActionOperationConverter](./launchactionoperationconverter/) | | +| [LineAnnotation](./lineannotation/) | Class representing line annotation. | +| [LineEndingConverter](./lineendingconverter/) | | +| [LineIntentConverter](./lineintentconverter/) | | +| [LinkAnnotation](./linkannotation/) | Represents either a hypertext link to a destination elsewhere in the document or an action to be performed. | +| [MarkupAnnotation](./markupannotation/) | Abstract class representing markup annotation. | +| [Measure](./measure/) | Class which describes [Measure](./measure/) coordinate system. | +| [MediaClip](./mediaclip/) | Class describes media clip object of rendition. | +| [MediaClipData](./mediaclipdata/) | Class describes media clip data. | +| [MediaClipSection](./mediaclipsection/) | This class descibes Media clip section. | +| [MediaRendition](./mediarendition/) | Class describes media rendition. | +| [MovieAnnotation](./movieannotation/) | Represents a movie annotation that contains animated graphics and sound to be presented on the computer screen and through the speakers. When the annotation is activated, the movie is played. | +| [NamedAction](./namedaction/) | Represents named actions that PDF viewer applications are expected to support. | +| [NamedDestination](./nameddestination/) | Instead of being defined directly with the explicit syntax, a destination may be referred to indirectly by means of a name object or a byte string. | +| [PageInformationAnnotation](./pageinformationannotation/) | Represents a [Page](../aspose.pdf/page/) Information annotation in a PDF document. This annotation contains the file name, page number, and the date and time of the annotation creation. | +| [PDF3DAnnotation](./pdf3dannotation/) | Class [PDF3DAnnotation](./pdf3dannotation/). This class cannot be inherited. | +| [PDF3DArtwork](./pdf3dartwork/) | Class [PDF3DArtwork](./pdf3dartwork/). | +| [PDF3DContent](./pdf3dcontent/) | Class [PDF3DContent](./pdf3dcontent/). | +| [PDF3DCrossSection](./pdf3dcrosssection/) | Class [PDF3DCrossSection](./pdf3dcrosssection/). | +| [PDF3DCrossSectionArray](./pdf3dcrosssectionarray/) | Class [PDF3DCrossSectionArray](./pdf3dcrosssectionarray/). | +| [PDF3DCuttingPlaneOrientation](./pdf3dcuttingplaneorientation/) | Class [PDF3DCuttingPlaneOrientation](./pdf3dcuttingplaneorientation/). | +| [PDF3DLightingScheme](./pdf3dlightingscheme/) | Class [PDF3DLightingScheme](./pdf3dlightingscheme/). | +| [PDF3DRenderMode](./pdf3drendermode/) | Class [PDF3DRenderMode](./pdf3drendermode/). | +| [PDF3DStream](./pdf3dstream/) | Class [PDF3DStream](./pdf3dstream/). | +| [PDF3DView](./pdf3dview/) | Class [PDF3DView](./pdf3dview/). | +| [PDF3DViewArray](./pdf3dviewarray/) | Class [PDF3DViewArray](./pdf3dviewarray/). | +| [PdfAction](./pdfaction/) | Represents Action in PDF document. | +| [PdfActionCollection](./pdfactioncollection/) | Class describes list of actions. | +| [PolyAnnotation](./polyannotation/) | Abstract base class for poly- annotations. | +| [PolygonAnnotation](./polygonannotation/) | Class representing polygon annotation. | +| [PolyIntentConverter](./polyintentconverter/) | | +| [PolylineAnnotation](./polylineannotation/) | Represents polyline annotation that is similar to polygon, except that the first and last vertex are not implicitly connected. | +| [PopupAnnotation](./popupannotation/) | Represents the pop-up annotation that displays text in a pop-up window for entry and editing. | +| [PredefinedActionConverter](./predefinedactionconverter/) | | +| [PrinterMarkAnnotation](./printermarkannotation/) | Abstract class representing printer mark annotation. | +| [PrinterMarksKindExtensions](./printermarkskindextensions/) | Provides extension methods for the [PrinterMarksKind](./printermarkskind/) enumeration. | +| [RedactionAnnotation](./redactionannotation/) | Represents Redact annotation. | +| [RegistrationMarkAnnotation](./registrationmarkannotation/) | Represents a Registration Mark annotation. | +| [Rendition](./rendition/) | Class which describes rendition object of RendtionAnnotation. | +| [RenditionAction](./renditionaction/) | A rendition action that controls the playing of multimedia content. | +| [ReplyTypeConverter](./replytypeconverter/) | | +| [RichMediaAnnotation](./richmediaannotation/) | Class describes [RichMediaAnnotation](./richmediaannotation/) which allows embed video/audio data into PDF document. | +| [ScreenAnnotation](./screenannotation/) | A screen annotation that specifies a region of a page upon which media clips may be played. | +| [SelectorRendition](./selectorrendition/) | Class describes selector rendition. | +| [SoundAnnotation](./soundannotation/) | Represents a sound annotation that contains sound recorded from the computer's microphone or imported from a file. | +| [SoundData](./sounddata/) | Represents a sound data defining the sound to be played when the annotation is activated. | +| [SoundEncodingConverter](./soundencodingconverter/) | | +| [SoundIconConverter](./soundiconconverter/) | | +| [SoundSampleData](./soundsampledata/) | Represents additional entries specific to a sound object (Section 9.2 PDF1-7) | +| [SquareAnnotation](./squareannotation/) | Class representing square annotation. | +| [SquigglyAnnotation](./squigglyannotation/) | Represents the squiggly annotation that appears as a jagged underline in the text of a document. | +| [StampAnnotation](./stampannotation/) | Represents rubber stamp annotation. This type of annotation displays text or graphics intended to look as if they were stamped on the page with a rubber stamp. | +| [StampIconConverter](./stampiconconverter/) | | +| [StrikeOutAnnotation](./strikeoutannotation/) | Represents a strikeout annotation that appears as a strikeout in the text of the document. | +| [SubmitFormAction](./submitformaction/) | Class which describes submit-form action. | +| [TextAnnotation](./textannotation/) | Represents a text annotation that is a 'sticky note' attached to a point in the PDF document. | +| [TextIconConverter](./texticonconverter/) | | +| [TextMarkupAnnotation](./textmarkupannotation/) | Abstract base class for text markup annotations. | +| [TextStyle](./textstyle/) | Class represents style of text in annotation. | +| [TrimMarkAnnotation](./trimmarkannotation/) | Represents a Trim Mark annotation. | +| [UnderlineAnnotation](./underlineannotation/) | Represents an underline annotation that appears as an underline in the text of the document. | +| [WatermarkAnnotation](./watermarkannotation/) | Class describes [Watermark](../aspose.pdf/watermark/) annotation object. | +| [WidgetAnnotation](./widgetannotation/) | Class representing widget annotation. | +| [XfdfReader](./xfdfreader/) | Class which peroformes reading of XFDF format. | +| [XYZExplicitDestination](./xyzexplicitdestination/) | Represents explicit destination that displays the page with the coordinates (left, top) positioned at the upper-left corner of the window and the contents of the page magnified by the factor zoom. A null value for any of the parameters left, top, or zoom specifies that the current value of that parameter is to be retained unchanged. A zoom value of 0 has the same meaning as a null value. | +## Enums + +| Enum | Description | +| --- | --- | +| [AnnotationFlags](./annotationflags/) | A set of flags specifying various characteristics of the annotation. | +| [AnnotationState](./annotationstate/) | The enumeration of states to which the original annotation can be set. | +| [AnnotationStateModel](./annotationstatemodel/) | The state model corresponding to state of annotation. | +| [AnnotationType](./annotationtype/) | Enumeration of annotation types. | +| [BorderEffect](./bordereffect/) | Describes effect which should be applied to the border of the annotations. | +| [BorderStyle](./borderstyle/) | Describes style of the annotation border. | +| [CapStyle](./capstyle/) | Style of line ending of Ink annotation line. | +| [CaptionPosition](./captionposition/) | Enumeration of the annotation's caption positioning. | +| [CaretSymbol](./caretsymbol/) | A symbol to be associated with the caret. | +| [ColorsOfCMYK](./colorsofcmyk/) | Colors included in the CMYK color model. | +| [FileIcon](./fileicon/) | An icon to be used in displaying the annotation. | +| [FreeTextIntent](./freetextintent/) | Enumerates the intents of the free text annotation. | +| [LineEnding](./lineending/) | Enumerates the line ending styles to be used in drawing the line. | +| [LineIntent](./lineintent/) | Enumerates the intents of the line annotation. | +| [PDF3DActivation](./pdf3dactivation/) | Enum PDF3DActivation: set of 3D annotation activation mode. | +| [LightingSchemeType](./lightingschemetype/) | Enum LightingSchemeType: set of lighting scheme types. | +| [RenderModeType](./rendermodetype/) | Enum RenderModeType: set of render mode types. | +| [PolyIntent](./polyintent/) | Enumerates the intents of the polygon or polyline annotation. | +| [PrinterMarkCornerPosition](./printermarkcornerposition/) | Represents a position of a mark in a corner of a page. | +| [PrinterMarkSidePosition](./printermarksideposition/) | Represents a position of a registration mark on a page. | +| [PrinterMarksKind](./printermarkskind/) | Specifies the types of printer's marks to be added to a document. | +| [RenditionOperation](./renditionoperation/) | The operation to perform when the action is triggered. | +| [RenditionType](./renditiontype/) | Enumeration describes possible types of [Rendition](./rendition/). | +| [ReplyType](./replytype/) | Enumerates the kinds of the relationships (the "reply type") between the annotation and one specified by InReplyTo. | +| [SoundEncoding](./soundencoding/) | The encoding format for the sample data. | +| [SoundIcon](./soundicon/) | Enumerates the icons to be used in displaying the annotation. | +| [SoundSampleDataEncodingFormat](./soundsampledataencodingformat/) | The encoding format for the sound sample data. | +| [StampIcon](./stampicon/) | Enumerates the icons to be used in displaying the annotation. | +| [TextAlignment](./textalignment/) | Alignment of text in annotation. | +| [TextIcon](./texticon/) | Enumerates the icons to be used in displaying the annotation. | +| [ExplicitDestinationType](./explicitdestinationtype/) | Enumerates the types of explicit destinations. | +| [HighlightingMode](./highlightingmode/) | Enumerates the annotation's highlighting mode, the visual effect to be used when the mouse button is pressed or held down inside its active area. | +| [Justification](./justification/) | Enumerates the forms of quadding (justification) to be used in displaying the annotation's text. | +| [LaunchActionOperation](./launchactionoperation/) | Enumerates the operations to perform with document during launch action executing. | +| [PredefinedAction](./predefinedaction/) | Defines different actions which can be triggered from a PDF file. | diff --git a/english/cpp/aspose.pdf.annotations/actioncollection/_index.md b/english/cpp/aspose.pdf.annotations/actioncollection/_index.md new file mode 100644 index 0000000000..d8277d578c --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/actioncollection/_index.md @@ -0,0 +1,39 @@ +--- +title: Aspose::Pdf::Annotations::ActionCollection class +linktitle: ActionCollection +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::ActionCollection class. Collection of actions in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/actioncollection/ +--- +## ActionCollection class + + +[Collection](../../aspose.pdf/collection/) of actions. + +```cpp +class ActionCollection : public System::Collections::Generic::ICollection> +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Add](./add/)(const System::SharedPtr\\&) override | Adds new action into colleciton. | +| [Clear](./clear/)() override | Clear collection. | +| [Contains](./contains/)(const System::SharedPtr\\&) const override | Returns true if give item presents in the collection. | +| [CopyTo](./copyto/)(System::ArrayPtr\\>, int32_t) override | Copies actions array into collection. | +| [Delete](./delete/)(int32_t) | Removes action from collection by index. | +| [Delete](./delete/)() | Delete all actions. | +| [get_Count](./get_count/)() const override | Count of actions on the collection. | +| [get_IsReadOnly](./get_isreadonly/)() const override | Returns true if collection is readonly. | +| [get_IsSynchronized](./get_issynchronized/)() | Returns true if object is synchronized. | +| [get_SyncRoot](./get_syncroot/)() const | Gets synchronization object. | +| [GetEnumerator](./getenumerator/)() override | Returns enumerator for collection. | +| [idx_get](./idx_get/)(int32_t) | Gets action by its index. | +| [Remove](./remove/)(const System::SharedPtr\\&) override | Removes item from collection. | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/actioncollection/add/_index.md b/english/cpp/aspose.pdf.annotations/actioncollection/add/_index.md new file mode 100644 index 0000000000..5f30cb726a --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/actioncollection/add/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Annotations::ActionCollection::Add method +linktitle: Add +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::ActionCollection::Add method. Adds new action into colleciton in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/actioncollection/add/ +--- +## ActionCollection::Add method + + +Adds new action into colleciton. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::ActionCollection::Add(const System::SharedPtr &action) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| action | const System::SharedPtr\\& | Action which should be added. | +## Remarks + + + + + + action + + + Action which should be added. + + + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [ActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/actioncollection/clear/_index.md b/english/cpp/aspose.pdf.annotations/actioncollection/clear/_index.md new file mode 100644 index 0000000000..63df311a30 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/actioncollection/clear/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::ActionCollection::Clear method +linktitle: Clear +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::ActionCollection::Clear method. Clear collection in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.annotations/actioncollection/clear/ +--- +## ActionCollection::Clear method + + +Clear collection. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::ActionCollection::Clear() override +``` + +## See Also + +* Class [ActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/actioncollection/contains/_index.md b/english/cpp/aspose.pdf.annotations/actioncollection/contains/_index.md new file mode 100644 index 0000000000..fca93e5e25 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/actioncollection/contains/_index.md @@ -0,0 +1,45 @@ +--- +title: Aspose::Pdf::Annotations::ActionCollection::Contains method +linktitle: Contains +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::ActionCollection::Contains method. Returns true if give item presents in the collection in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.annotations/actioncollection/contains/ +--- +## ActionCollection::Contains method + + +Returns true if give item presents in the collection. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Annotations::ActionCollection::Contains(const System::SharedPtr &item) const override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| item | const System::SharedPtr\\& | Item to find. | + +### ReturnValue + +Not implemented. +## Remarks + + + + + + item + + + Item to find. + + + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [ActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/actioncollection/copyto/_index.md b/english/cpp/aspose.pdf.annotations/actioncollection/copyto/_index.md new file mode 100644 index 0000000000..9950b22a03 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/actioncollection/copyto/_index.md @@ -0,0 +1,50 @@ +--- +title: Aspose::Pdf::Annotations::ActionCollection::CopyTo method +linktitle: CopyTo +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::ActionCollection::CopyTo method. Copies actions array into collection in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.annotations/actioncollection/copyto/ +--- +## ActionCollection::CopyTo method + + +Copies actions array into collection. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::ActionCollection::CopyTo(System::ArrayPtr> array, int32_t index) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| array | System::ArrayPtr\\> | Array of actions which must be copied into collection. | +| index | int32_t | Index starting from which array will be copied. | +## Remarks + + + + + + array + + + Array of actions which must be copied into collection. + + + + + index + + + Index starting from which array will be copied. + + + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [ActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/actioncollection/delete/_index.md b/english/cpp/aspose.pdf.annotations/actioncollection/delete/_index.md new file mode 100644 index 0000000000..3086eb8dad --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/actioncollection/delete/_index.md @@ -0,0 +1,54 @@ +--- +title: Aspose::Pdf::Annotations::ActionCollection::Delete method +linktitle: Delete +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::ActionCollection::Delete method. Removes action from collection by index in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/actioncollection/delete/ +--- +## ActionCollection::Delete(int32_t) method + + +Removes action from collection by index. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::ActionCollection::Delete(int32_t index) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| index | int32_t | Index of action to remove. | +## Remarks + + + + + + index + + + Index of action to remove. + + + +## See Also + +* Class [ActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## ActionCollection::Delete() method + + +Delete all actions. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::ActionCollection::Delete() +``` + +## See Also + +* Class [ActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/actioncollection/get_count/_index.md b/english/cpp/aspose.pdf.annotations/actioncollection/get_count/_index.md new file mode 100644 index 0000000000..024b507cd0 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/actioncollection/get_count/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::ActionCollection::get_Count method +linktitle: get_Count +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::ActionCollection::get_Count method. Count of actions on the collection in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/actioncollection/get_count/ +--- +## ActionCollection::get_Count method + + +Count of actions on the collection. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Annotations::ActionCollection::get_Count() const override +``` + +## See Also + +* Class [ActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/actioncollection/get_isreadonly/_index.md b/english/cpp/aspose.pdf.annotations/actioncollection/get_isreadonly/_index.md new file mode 100644 index 0000000000..c05ea137c7 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/actioncollection/get_isreadonly/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::ActionCollection::get_IsReadOnly method +linktitle: get_IsReadOnly +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::ActionCollection::get_IsReadOnly method. Returns true if collection is readonly in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/actioncollection/get_isreadonly/ +--- +## ActionCollection::get_IsReadOnly method + + +Returns true if collection is readonly. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Annotations::ActionCollection::get_IsReadOnly() const override +``` + +## See Also + +* Class [ActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/actioncollection/get_issynchronized/_index.md b/english/cpp/aspose.pdf.annotations/actioncollection/get_issynchronized/_index.md new file mode 100644 index 0000000000..2344389af3 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/actioncollection/get_issynchronized/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::ActionCollection::get_IsSynchronized method +linktitle: get_IsSynchronized +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::ActionCollection::get_IsSynchronized method. Returns true if object is synchronized in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/actioncollection/get_issynchronized/ +--- +## ActionCollection::get_IsSynchronized method + + +Returns true if object is synchronized. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Annotations::ActionCollection::get_IsSynchronized() +``` + +## See Also + +* Class [ActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/actioncollection/get_syncroot/_index.md b/english/cpp/aspose.pdf.annotations/actioncollection/get_syncroot/_index.md new file mode 100644 index 0000000000..db76f83d9c --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/actioncollection/get_syncroot/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::ActionCollection::get_SyncRoot method +linktitle: get_SyncRoot +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::ActionCollection::get_SyncRoot method. Gets synchronization object in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/actioncollection/get_syncroot/ +--- +## ActionCollection::get_SyncRoot method + + +Gets synchronization object. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::ActionCollection::get_SyncRoot() const +``` + +## See Also + +* Class [ActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/actioncollection/getenumerator/_index.md b/english/cpp/aspose.pdf.annotations/actioncollection/getenumerator/_index.md new file mode 100644 index 0000000000..39b4c176a5 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/actioncollection/getenumerator/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Annotations::ActionCollection::GetEnumerator method +linktitle: GetEnumerator +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::ActionCollection::GetEnumerator method. Returns enumerator for collection in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.annotations/actioncollection/getenumerator/ +--- +## ActionCollection::GetEnumerator method + + +Returns enumerator for collection. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr>> Aspose::Pdf::Annotations::ActionCollection::GetEnumerator() override +``` + + +### ReturnValue + +[Collection](../../../aspose.pdf/collection/) enumerator. + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [ActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/actioncollection/idx_get/_index.md b/english/cpp/aspose.pdf.annotations/actioncollection/idx_get/_index.md new file mode 100644 index 0000000000..7506938eef --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/actioncollection/idx_get/_index.md @@ -0,0 +1,45 @@ +--- +title: Aspose::Pdf::Annotations::ActionCollection::idx_get method +linktitle: idx_get +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::ActionCollection::idx_get method. Gets action by its index in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.annotations/actioncollection/idx_get/ +--- +## ActionCollection::idx_get method + + +Gets action by its index. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::ActionCollection::idx_get(int32_t index) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| index | int32_t | Index of action. | + +### ReturnValue + +Retreived action. +## Remarks + + + + + + index + + + Index of action. + + + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [ActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/actioncollection/remove/_index.md b/english/cpp/aspose.pdf.annotations/actioncollection/remove/_index.md new file mode 100644 index 0000000000..97beb8c1fc --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/actioncollection/remove/_index.md @@ -0,0 +1,45 @@ +--- +title: Aspose::Pdf::Annotations::ActionCollection::Remove method +linktitle: Remove +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::ActionCollection::Remove method. Removes item from collection in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.annotations/actioncollection/remove/ +--- +## ActionCollection::Remove method + + +Removes item from collection. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Annotations::ActionCollection::Remove(const System::SharedPtr &item) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| item | const System::SharedPtr\\& | Item to delete. | + +### ReturnValue + +Not implemented. +## Remarks + + + + + + item + + + Item to delete. + + + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [ActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotation/_index.md b/english/cpp/aspose.pdf.annotations/annotation/_index.md new file mode 100644 index 0000000000..70cc10dbb9 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotation/_index.md @@ -0,0 +1,86 @@ +--- +title: Aspose::Pdf::Annotations::Annotation class +linktitle: Annotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Annotation class. Class representing annotation object in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/annotation/ +--- +## Annotation class + + +Class representing annotation object. + +```cpp +class Annotation : public Aspose::Pdf::BaseParagraph +``` + +## Methods + +| Method | Description | +| --- | --- | +| virtual [Accept](./accept/)(System::SharedPtr\) | Accepts visitor for annotation processing. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| virtual [ChangeAfterResize](./changeafterresize/)(System::SharedPtr\) | Update parameters and appearance, according to the matrix transform. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [Flatten](./flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](./get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](./get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](./get_alignment/)() | [Annotation](./) alignment. This property is obsolete. Use HorizontalAligment instead. | +| virtual [get_AnnotationType](./get_annotationtype/)() | Gets type of annotation. | +| [get_Appearance](./get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](./get_border/)() const | Gets annotation border characteristics. [Border](../border/) | +| [get_Characteristics](./get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](./get_color/)() | Gets annotation color. | +| [get_Contents](./get_contents/)() | Gets annotation text. | +| [get_Flags](./get_flags/)() | Flags of the annotation. | +| [get_FullName](./get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](./get_height/)() | Gets height of the annotation. | +| [get_HorizontalAlignment](./get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| [get_Modified](./get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Name](./get_name/)() | Gets annotation name on the page. | +| virtual [get_PageIndex](./get_pageindex/)() | Gets index of page which contains annotation. | +| virtual [get_Rect](./get_rect/)() | Gets annotation rectangle. | +| [get_States](./get_states/)() | Gets appearance dictionary of annotation. | +| [get_TextHorizontalAlignment](./get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| static [get_UpdateAppearanceOnConvert](./get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](./get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](./get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetRectangle](./getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| virtual [set_ActiveState](./set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](./set_alignment/)(TextAlignment) | [Annotation](./) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_Border](./set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../border/) | +| [set_Color](./set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](./set_contents/)(System::String) | Sets annotation text. | +| [set_Flags](./set_flags/)(AnnotationFlags) | Flags of the annotation. | +| virtual [set_Height](./set_height/)(double) | Sets height of the annotation. | +| [set_HorizontalAlignment](./set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| [set_Modified](./set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Name](./set_name/)(System::String) | Sets annotation name on the page. | +| virtual [set_Rect](./set_rect/)(System::SharedPtr\) | Sets annotation rectangle. | +| [set_TextHorizontalAlignment](./set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| static [set_UpdateAppearanceOnConvert](./set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](./set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](./set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +## See Also + +* Class [BaseParagraph](../../aspose.pdf/baseparagraph/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/annotation/accept/_index.md b/english/cpp/aspose.pdf.annotations/annotation/accept/_index.md new file mode 100644 index 0000000000..38f1143f95 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotation/accept/_index.md @@ -0,0 +1,42 @@ +--- +title: Aspose::Pdf::Annotations::Annotation::Accept method +linktitle: Accept +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Annotation::Accept method. Accepts visitor for annotation processing in C++.' +type: docs +weight: 3900 +url: /cpp/aspose.pdf.annotations/annotation/accept/ +--- +## Annotation::Accept method + + +Accepts visitor for annotation processing. + +```cpp +virtual ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::Annotation::Accept(System::SharedPtr visitor)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| visitor | System::SharedPtr\ | [AnnotationSelector](../../annotationselector/) object. | +## Remarks + + + + + + visitor + + + + AnnotationSelector object. + + + +## See Also + +* Class [AnnotationSelector](../../annotationselector/) +* Class [Annotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotation/changeafterresize/_index.md b/english/cpp/aspose.pdf.annotations/annotation/changeafterresize/_index.md new file mode 100644 index 0000000000..bc5940a616 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotation/changeafterresize/_index.md @@ -0,0 +1,42 @@ +--- +title: Aspose::Pdf::Annotations::Annotation::ChangeAfterResize method +linktitle: ChangeAfterResize +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Annotation::ChangeAfterResize method. Update parameters and appearance, according to the matrix transform in C++.' +type: docs +weight: 4100 +url: /cpp/aspose.pdf.annotations/annotation/changeafterresize/ +--- +## Annotation::ChangeAfterResize method + + +Update parameters and appearance, according to the matrix transform. + +```cpp +virtual ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::Annotation::ChangeAfterResize(System::SharedPtr transform) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| transform | System::SharedPtr\ | [Matrix](../../../aspose.pdf/matrix/) that use for transformation (resize). | +## Remarks + + + + + + transform + + + + Matrix that use for transformation (resize). + + + +## See Also + +* Class [Matrix](../../../aspose.pdf/matrix/) +* Class [Annotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotation/flatten/_index.md b/english/cpp/aspose.pdf.annotations/annotation/flatten/_index.md new file mode 100644 index 0000000000..b7256b18a9 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotation/flatten/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Annotation::Flatten method +linktitle: Flatten +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Annotation::Flatten method. Places annotation contents directly on the page, annotation object will be removed in C++.' +type: docs +weight: 4000 +url: /cpp/aspose.pdf.annotations/annotation/flatten/ +--- +## Annotation::Flatten method + + +Places annotation contents directly on the page, annotation object will be removed. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::Annotation::Flatten() +``` + +## See Also + +* Class [Annotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotation/get_actions/_index.md b/english/cpp/aspose.pdf.annotations/annotation/get_actions/_index.md new file mode 100644 index 0000000000..8d7aef9ddf --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotation/get_actions/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::Annotation::get_Actions method +linktitle: get_Actions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Annotation::get_Actions method. Gets list of annotatation actions in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.annotations/annotation/get_actions/ +--- +## Annotation::get_Actions method + + +Gets list of annotatation actions. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::Annotation::get_Actions() +``` + +## See Also + +* Class [PdfActionCollection](../../pdfactioncollection/) +* Class [Annotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotation/get_activestate/_index.md b/english/cpp/aspose.pdf.annotations/annotation/get_activestate/_index.md new file mode 100644 index 0000000000..6403b98c36 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotation/get_activestate/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Annotation::get_ActiveState method +linktitle: get_ActiveState +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Annotation::get_ActiveState method. Gets current annotation appearance state in C++.' +type: docs +weight: 2500 +url: /cpp/aspose.pdf.annotations/annotation/get_activestate/ +--- +## Annotation::get_ActiveState method + + +Gets current annotation appearance state. + +```cpp +virtual ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::Annotation::get_ActiveState() +``` + +## See Also + +* Class [Annotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotation/get_alignment/_index.md b/english/cpp/aspose.pdf.annotations/annotation/get_alignment/_index.md new file mode 100644 index 0000000000..c5112d3fc1 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotation/get_alignment/_index.md @@ -0,0 +1,33 @@ +--- +title: Aspose::Pdf::Annotations::Annotation::get_Alignment method +linktitle: get_Alignment +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Annotation::get_Alignment method. Annotation alignment. This property is obsolete. Use HorizontalAligment instead in C++.' +type: docs +weight: 2900 +url: /cpp/aspose.pdf.annotations/annotation/get_alignment/ +--- +## Annotation::get_Alignment method + + +[Annotation](../) alignment. This property is obsolete. Use HorizontalAligment instead. + +```cpp +ASPOSE_PDF_SHARED_API TextAlignment Aspose::Pdf::Annotations::Annotation::get_Alignment() +``` + +## Remarks + + + + Deprecated + + Use TextHorizontalAlignment property + + +## See Also + +* Enum [TextAlignment](../../textalignment/) +* Class [Annotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotation/get_annotationtype/_index.md b/english/cpp/aspose.pdf.annotations/annotation/get_annotationtype/_index.md new file mode 100644 index 0000000000..d05bede3ef --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotation/get_annotationtype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::Annotation::get_AnnotationType method +linktitle: get_AnnotationType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Annotation::get_AnnotationType method. Gets type of annotation in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.annotations/annotation/get_annotationtype/ +--- +## Annotation::get_AnnotationType method + + +Gets type of annotation. + +```cpp +virtual ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::AnnotationType Aspose::Pdf::Annotations::Annotation::get_AnnotationType()=0 +``` + +## See Also + +* Enum [AnnotationType](../../annotationtype/) +* Class [Annotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotation/get_appearance/_index.md b/english/cpp/aspose.pdf.annotations/annotation/get_appearance/_index.md new file mode 100644 index 0000000000..2db6328815 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotation/get_appearance/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::Annotation::get_Appearance method +linktitle: get_Appearance +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Annotation::get_Appearance method. Gets appearance dictionary of the annotation in C++.' +type: docs +weight: 3600 +url: /cpp/aspose.pdf.annotations/annotation/get_appearance/ +--- +## Annotation::get_Appearance method + + +Gets appearance dictionary of the annotation. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::Annotation::get_Appearance() +``` + +## See Also + +* Class [AppearanceDictionary](../../appearancedictionary/) +* Class [Annotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotation/get_border/_index.md b/english/cpp/aspose.pdf.annotations/annotation/get_border/_index.md new file mode 100644 index 0000000000..fab750e4e5 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotation/get_border/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::Annotation::get_Border method +linktitle: get_Border +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Annotation::get_Border method. Gets annotation border characteristics. Border in C++.' +type: docs +weight: 2300 +url: /cpp/aspose.pdf.annotations/annotation/get_border/ +--- +## Annotation::get_Border method + + +Gets annotation border characteristics. [Border](../../border/) + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::Annotation::get_Border() const +``` + +## See Also + +* Class [Border](../../border/) +* Class [Annotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotation/get_characteristics/_index.md b/english/cpp/aspose.pdf.annotations/annotation/get_characteristics/_index.md new file mode 100644 index 0000000000..80dbf3efdf --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotation/get_characteristics/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::Annotation::get_Characteristics method +linktitle: get_Characteristics +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Annotation::get_Characteristics method. Gets annotation characteristics in C++.' +type: docs +weight: 2700 +url: /cpp/aspose.pdf.annotations/annotation/get_characteristics/ +--- +## Annotation::get_Characteristics method + + +Gets annotation characteristics. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::Annotation::get_Characteristics() +``` + +## See Also + +* Class [Characteristics](../../characteristics/) +* Class [Annotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotation/get_color/_index.md b/english/cpp/aspose.pdf.annotations/annotation/get_color/_index.md new file mode 100644 index 0000000000..00e9264044 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotation/get_color/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::Annotation::get_Color method +linktitle: get_Color +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Annotation::get_Color method. Gets annotation color in C++.' +type: docs +weight: 2100 +url: /cpp/aspose.pdf.annotations/annotation/get_color/ +--- +## Annotation::get_Color method + + +Gets annotation color. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::Annotation::get_Color() +``` + +## See Also + +* Class [Color](../../../aspose.pdf/color/) +* Class [Annotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotation/get_contents/_index.md b/english/cpp/aspose.pdf.annotations/annotation/get_contents/_index.md new file mode 100644 index 0000000000..bbe38aa199 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotation/get_contents/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Annotation::get_Contents method +linktitle: get_Contents +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Annotation::get_Contents method. Gets annotation text in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.annotations/annotation/get_contents/ +--- +## Annotation::get_Contents method + + +Gets annotation text. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::Annotation::get_Contents() +``` + +## See Also + +* Class [Annotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotation/get_flags/_index.md b/english/cpp/aspose.pdf.annotations/annotation/get_flags/_index.md new file mode 100644 index 0000000000..7e89e18068 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotation/get_flags/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::Annotation::get_Flags method +linktitle: get_Flags +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Annotation::get_Flags method. Flags of the annotation in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/annotation/get_flags/ +--- +## Annotation::get_Flags method + + +Flags of the annotation. + +```cpp +ASPOSE_PDF_SHARED_API AnnotationFlags Aspose::Pdf::Annotations::Annotation::get_Flags() +``` + +## See Also + +* Enum [AnnotationFlags](../../annotationflags/) +* Class [Annotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotation/get_fullname/_index.md b/english/cpp/aspose.pdf.annotations/annotation/get_fullname/_index.md new file mode 100644 index 0000000000..41960dc6ec --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotation/get_fullname/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::Annotation::get_FullName method +linktitle: get_FullName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Annotation::get_FullName method. Gets full qualified name of the annotation in C++.' +type: docs +weight: 3500 +url: /cpp/aspose.pdf.annotations/annotation/get_fullname/ +--- +## Annotation::get_FullName method + + +Gets full qualified name of the annotation. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::Annotation::get_FullName() +``` + + +### ReturnValue + + + +## See Also + +* Class [Annotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotation/get_height/_index.md b/english/cpp/aspose.pdf.annotations/annotation/get_height/_index.md new file mode 100644 index 0000000000..c3710e167b --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotation/get_height/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Annotation::get_Height method +linktitle: get_Height +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Annotation::get_Height method. Gets height of the annotation in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.annotations/annotation/get_height/ +--- +## Annotation::get_Height method + + +Gets height of the annotation. + +```cpp +virtual ASPOSE_PDF_SHARED_API double Aspose::Pdf::Annotations::Annotation::get_Height() +``` + +## See Also + +* Class [Annotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotation/get_horizontalalignment/_index.md b/english/cpp/aspose.pdf.annotations/annotation/get_horizontalalignment/_index.md new file mode 100644 index 0000000000..aaf24b6e37 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotation/get_horizontalalignment/_index.md @@ -0,0 +1,33 @@ +--- +title: Aspose::Pdf::Annotations::Annotation::get_HorizontalAlignment method +linktitle: get_HorizontalAlignment +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Annotation::get_HorizontalAlignment method. Gets text alignment for annotation in C++.' +type: docs +weight: 3100 +url: /cpp/aspose.pdf.annotations/annotation/get_horizontalalignment/ +--- +## Annotation::get_HorizontalAlignment method + + +Gets text alignment for annotation. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::HorizontalAlignment Aspose::Pdf::Annotations::Annotation::get_HorizontalAlignment() override +``` + +## Remarks + + + + Deprecated + + Use TextHorizontalAlignment property + + +## See Also + +* Enum [HorizontalAlignment](../../../aspose.pdf/horizontalalignment/) +* Class [Annotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotation/get_modified/_index.md b/english/cpp/aspose.pdf.annotations/annotation/get_modified/_index.md new file mode 100644 index 0000000000..5bfb57595a --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotation/get_modified/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Annotation::get_Modified method +linktitle: get_Modified +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Annotation::get_Modified method. Gets date and time when annotation was recently modified in C++.' +type: docs +weight: 1900 +url: /cpp/aspose.pdf.annotations/annotation/get_modified/ +--- +## Annotation::get_Modified method + + +Gets date and time when annotation was recently modified. + +```cpp +ASPOSE_PDF_SHARED_API System::DateTime Aspose::Pdf::Annotations::Annotation::get_Modified() +``` + +## See Also + +* Class [Annotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotation/get_name/_index.md b/english/cpp/aspose.pdf.annotations/annotation/get_name/_index.md new file mode 100644 index 0000000000..46abf7645f --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotation/get_name/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Annotation::get_Name method +linktitle: get_Name +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Annotation::get_Name method. Gets annotation name on the page in C++.' +type: docs +weight: 1700 +url: /cpp/aspose.pdf.annotations/annotation/get_name/ +--- +## Annotation::get_Name method + + +Gets annotation name on the page. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::Annotation::get_Name() +``` + +## See Also + +* Class [Annotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotation/get_pageindex/_index.md b/english/cpp/aspose.pdf.annotations/annotation/get_pageindex/_index.md new file mode 100644 index 0000000000..b85a048222 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotation/get_pageindex/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Annotation::get_PageIndex method +linktitle: get_PageIndex +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Annotation::get_PageIndex method. Gets index of page which contains annotation in C++.' +type: docs +weight: 3700 +url: /cpp/aspose.pdf.annotations/annotation/get_pageindex/ +--- +## Annotation::get_PageIndex method + + +Gets index of page which contains annotation. + +```cpp +virtual ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Annotations::Annotation::get_PageIndex() +``` + +## See Also + +* Class [Annotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotation/get_rect/_index.md b/english/cpp/aspose.pdf.annotations/annotation/get_rect/_index.md new file mode 100644 index 0000000000..ecf3ef1606 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotation/get_rect/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::Annotation::get_Rect method +linktitle: get_Rect +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Annotation::get_Rect method. Gets annotation rectangle in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.annotations/annotation/get_rect/ +--- +## Annotation::get_Rect method + + +Gets annotation rectangle. + +```cpp +virtual ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::Annotation::get_Rect() +``` + +## See Also + +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [Annotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotation/get_states/_index.md b/english/cpp/aspose.pdf.annotations/annotation/get_states/_index.md new file mode 100644 index 0000000000..d6bfec006d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotation/get_states/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::Annotation::get_States method +linktitle: get_States +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Annotation::get_States method. Gets appearance dictionary of annotation in C++.' +type: docs +weight: 2800 +url: /cpp/aspose.pdf.annotations/annotation/get_states/ +--- +## Annotation::get_States method + + +Gets appearance dictionary of annotation. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::Annotation::get_States() +``` + +## See Also + +* Class [AppearanceDictionary](../../appearancedictionary/) +* Class [Annotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotation/get_texthorizontalalignment/_index.md b/english/cpp/aspose.pdf.annotations/annotation/get_texthorizontalalignment/_index.md new file mode 100644 index 0000000000..e06a32235f --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotation/get_texthorizontalalignment/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::Annotation::get_TextHorizontalAlignment method +linktitle: get_TextHorizontalAlignment +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Annotation::get_TextHorizontalAlignment method. Gets text alignment for annotation in C++.' +type: docs +weight: 3300 +url: /cpp/aspose.pdf.annotations/annotation/get_texthorizontalalignment/ +--- +## Annotation::get_TextHorizontalAlignment method + + +Gets text alignment for annotation. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::HorizontalAlignment Aspose::Pdf::Annotations::Annotation::get_TextHorizontalAlignment() +``` + +## See Also + +* Enum [HorizontalAlignment](../../../aspose.pdf/horizontalalignment/) +* Class [Annotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotation/get_updateappearanceonconvert/_index.md b/english/cpp/aspose.pdf.annotations/annotation/get_updateappearanceonconvert/_index.md new file mode 100644 index 0000000000..c47d5827e7 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotation/get_updateappearanceonconvert/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Annotation::get_UpdateAppearanceOnConvert method +linktitle: get_UpdateAppearanceOnConvert +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Annotation::get_UpdateAppearanceOnConvert method. If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/annotation/get_updateappearanceonconvert/ +--- +## Annotation::get_UpdateAppearanceOnConvert method + + +If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. + +```cpp +static ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Annotations::Annotation::get_UpdateAppearanceOnConvert() +``` + +## See Also + +* Class [Annotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotation/get_usefontsubset/_index.md b/english/cpp/aspose.pdf.annotations/annotation/get_usefontsubset/_index.md new file mode 100644 index 0000000000..e9dd055e9e --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotation/get_usefontsubset/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Annotation::get_UseFontSubset method +linktitle: get_UseFontSubset +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Annotation::get_UseFontSubset method. If this property set to true, fonts will be added to document as subsets. Default value is true in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/annotation/get_usefontsubset/ +--- +## Annotation::get_UseFontSubset method + + +If this property set to true, fonts will be added to document as subsets. Default value is true. + +```cpp +static ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Annotations::Annotation::get_UseFontSubset() +``` + +## See Also + +* Class [Annotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotation/get_width/_index.md b/english/cpp/aspose.pdf.annotations/annotation/get_width/_index.md new file mode 100644 index 0000000000..5722b10df5 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotation/get_width/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Annotation::get_Width method +linktitle: get_Width +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Annotation::get_Width method. Gets width of the annotation in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.annotations/annotation/get_width/ +--- +## Annotation::get_Width method + + +Gets width of the annotation. + +```cpp +virtual ASPOSE_PDF_SHARED_API double Aspose::Pdf::Annotations::Annotation::get_Width() +``` + +## See Also + +* Class [Annotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotation/getrectangle/_index.md b/english/cpp/aspose.pdf.annotations/annotation/getrectangle/_index.md new file mode 100644 index 0000000000..dfc3a73027 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotation/getrectangle/_index.md @@ -0,0 +1,45 @@ +--- +title: Aspose::Pdf::Annotations::Annotation::GetRectangle method +linktitle: GetRectangle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Annotation::GetRectangle method. Returns rectangle of annotation taking into consideration page rotation in C++.' +type: docs +weight: 3800 +url: /cpp/aspose.pdf.annotations/annotation/getrectangle/ +--- +## Annotation::GetRectangle method + + +Returns rectangle of annotation taking into consideration page rotation. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::Annotation::GetRectangle(bool considerRotation) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| considerRotation | bool | If true, page rotation is takein into consideration. | + +### ReturnValue + +True - if rectangle found; otherwise, false. +## Remarks + + + + + + considerRotation + + + If true, page rotation is takein into consideration. + + + +## See Also + +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [Annotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotation/set_activestate/_index.md b/english/cpp/aspose.pdf.annotations/annotation/set_activestate/_index.md new file mode 100644 index 0000000000..00cd4ddb8a --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotation/set_activestate/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Annotation::set_ActiveState method +linktitle: set_ActiveState +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Annotation::set_ActiveState method. Sets current annotation appearance state in C++.' +type: docs +weight: 2600 +url: /cpp/aspose.pdf.annotations/annotation/set_activestate/ +--- +## Annotation::set_ActiveState method + + +Sets current annotation appearance state. + +```cpp +virtual ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::Annotation::set_ActiveState(System::String value) +``` + +## See Also + +* Class [Annotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotation/set_alignment/_index.md b/english/cpp/aspose.pdf.annotations/annotation/set_alignment/_index.md new file mode 100644 index 0000000000..a0e9800f5d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotation/set_alignment/_index.md @@ -0,0 +1,33 @@ +--- +title: Aspose::Pdf::Annotations::Annotation::set_Alignment method +linktitle: set_Alignment +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Annotation::set_Alignment method. Annotation alignment. This property is obsolete. Use HorizontalAligment instead in C++.' +type: docs +weight: 3000 +url: /cpp/aspose.pdf.annotations/annotation/set_alignment/ +--- +## Annotation::set_Alignment method + + +[Annotation](../) alignment. This property is obsolete. Use HorizontalAligment instead. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::Annotation::set_Alignment(TextAlignment value) +``` + +## Remarks + + + + Deprecated + + Use TextHorizontalAlignment property + + +## See Also + +* Enum [TextAlignment](../../textalignment/) +* Class [Annotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotation/set_border/_index.md b/english/cpp/aspose.pdf.annotations/annotation/set_border/_index.md new file mode 100644 index 0000000000..02f71bc637 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotation/set_border/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::Annotation::set_Border method +linktitle: set_Border +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Annotation::set_Border method. Sets annotation border characteristics. Border in C++.' +type: docs +weight: 2400 +url: /cpp/aspose.pdf.annotations/annotation/set_border/ +--- +## Annotation::set_Border method + + +Sets annotation border characteristics. [Border](../../border/) + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::Annotation::set_Border(System::SharedPtr value) +``` + +## See Also + +* Class [Border](../../border/) +* Class [Annotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotation/set_color/_index.md b/english/cpp/aspose.pdf.annotations/annotation/set_color/_index.md new file mode 100644 index 0000000000..e4600a3f9f --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotation/set_color/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::Annotation::set_Color method +linktitle: set_Color +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Annotation::set_Color method. Sets annotation color in C++.' +type: docs +weight: 2200 +url: /cpp/aspose.pdf.annotations/annotation/set_color/ +--- +## Annotation::set_Color method + + +Sets annotation color. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::Annotation::set_Color(System::SharedPtr value) +``` + +## See Also + +* Class [Color](../../../aspose.pdf/color/) +* Class [Annotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotation/set_contents/_index.md b/english/cpp/aspose.pdf.annotations/annotation/set_contents/_index.md new file mode 100644 index 0000000000..3cc4328163 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotation/set_contents/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Annotation::set_Contents method +linktitle: set_Contents +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Annotation::set_Contents method. Sets annotation text in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf.annotations/annotation/set_contents/ +--- +## Annotation::set_Contents method + + +Sets annotation text. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::Annotation::set_Contents(System::String value) +``` + +## See Also + +* Class [Annotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotation/set_flags/_index.md b/english/cpp/aspose.pdf.annotations/annotation/set_flags/_index.md new file mode 100644 index 0000000000..b81404b0ff --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotation/set_flags/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::Annotation::set_Flags method +linktitle: set_Flags +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Annotation::set_Flags method. Flags of the annotation in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/annotation/set_flags/ +--- +## Annotation::set_Flags method + + +Flags of the annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::Annotation::set_Flags(AnnotationFlags value) +``` + +## See Also + +* Enum [AnnotationFlags](../../annotationflags/) +* Class [Annotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotation/set_height/_index.md b/english/cpp/aspose.pdf.annotations/annotation/set_height/_index.md new file mode 100644 index 0000000000..5e5b6e0dc7 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotation/set_height/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Annotation::set_Height method +linktitle: set_Height +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Annotation::set_Height method. Sets height of the annotation in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.annotations/annotation/set_height/ +--- +## Annotation::set_Height method + + +Sets height of the annotation. + +```cpp +virtual ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::Annotation::set_Height(double value) +``` + +## See Also + +* Class [Annotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotation/set_horizontalalignment/_index.md b/english/cpp/aspose.pdf.annotations/annotation/set_horizontalalignment/_index.md new file mode 100644 index 0000000000..77d18b8755 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotation/set_horizontalalignment/_index.md @@ -0,0 +1,33 @@ +--- +title: Aspose::Pdf::Annotations::Annotation::set_HorizontalAlignment method +linktitle: set_HorizontalAlignment +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Annotation::set_HorizontalAlignment method. Sets text alignment for annotation in C++.' +type: docs +weight: 3200 +url: /cpp/aspose.pdf.annotations/annotation/set_horizontalalignment/ +--- +## Annotation::set_HorizontalAlignment method + + +Sets text alignment for annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::Annotation::set_HorizontalAlignment(Aspose::Pdf::HorizontalAlignment value) override +``` + +## Remarks + + + + Deprecated + + Use TextHorizontalAlignment property + + +## See Also + +* Enum [HorizontalAlignment](../../../aspose.pdf/horizontalalignment/) +* Class [Annotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotation/set_modified/_index.md b/english/cpp/aspose.pdf.annotations/annotation/set_modified/_index.md new file mode 100644 index 0000000000..7ff2e9af8c --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotation/set_modified/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Annotation::set_Modified method +linktitle: set_Modified +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Annotation::set_Modified method. Sets date and time when annotation was recently modified in C++.' +type: docs +weight: 2000 +url: /cpp/aspose.pdf.annotations/annotation/set_modified/ +--- +## Annotation::set_Modified method + + +Sets date and time when annotation was recently modified. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::Annotation::set_Modified(System::DateTime value) +``` + +## See Also + +* Class [Annotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotation/set_name/_index.md b/english/cpp/aspose.pdf.annotations/annotation/set_name/_index.md new file mode 100644 index 0000000000..28ffe0971c --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotation/set_name/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Annotation::set_Name method +linktitle: set_Name +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Annotation::set_Name method. Sets annotation name on the page in C++.' +type: docs +weight: 1800 +url: /cpp/aspose.pdf.annotations/annotation/set_name/ +--- +## Annotation::set_Name method + + +Sets annotation name on the page. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::Annotation::set_Name(System::String value) +``` + +## See Also + +* Class [Annotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotation/set_rect/_index.md b/english/cpp/aspose.pdf.annotations/annotation/set_rect/_index.md new file mode 100644 index 0000000000..b29932d9d0 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotation/set_rect/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::Annotation::set_Rect method +linktitle: set_Rect +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Annotation::set_Rect method. Sets annotation rectangle in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.annotations/annotation/set_rect/ +--- +## Annotation::set_Rect method + + +Sets annotation rectangle. + +```cpp +virtual ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::Annotation::set_Rect(System::SharedPtr value) +``` + +## See Also + +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [Annotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotation/set_texthorizontalalignment/_index.md b/english/cpp/aspose.pdf.annotations/annotation/set_texthorizontalalignment/_index.md new file mode 100644 index 0000000000..798cb0aa42 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotation/set_texthorizontalalignment/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::Annotation::set_TextHorizontalAlignment method +linktitle: set_TextHorizontalAlignment +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Annotation::set_TextHorizontalAlignment method. Sets text alignment for annotation in C++.' +type: docs +weight: 3400 +url: /cpp/aspose.pdf.annotations/annotation/set_texthorizontalalignment/ +--- +## Annotation::set_TextHorizontalAlignment method + + +Sets text alignment for annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::Annotation::set_TextHorizontalAlignment(Aspose::Pdf::HorizontalAlignment value) +``` + +## See Also + +* Enum [HorizontalAlignment](../../../aspose.pdf/horizontalalignment/) +* Class [Annotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotation/set_updateappearanceonconvert/_index.md b/english/cpp/aspose.pdf.annotations/annotation/set_updateappearanceonconvert/_index.md new file mode 100644 index 0000000000..64756d5d5f --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotation/set_updateappearanceonconvert/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Annotation::set_UpdateAppearanceOnConvert method +linktitle: set_UpdateAppearanceOnConvert +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Annotation::set_UpdateAppearanceOnConvert method. If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/annotation/set_updateappearanceonconvert/ +--- +## Annotation::set_UpdateAppearanceOnConvert method + + +If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. + +```cpp +static ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::Annotation::set_UpdateAppearanceOnConvert(bool value) +``` + +## See Also + +* Class [Annotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotation/set_usefontsubset/_index.md b/english/cpp/aspose.pdf.annotations/annotation/set_usefontsubset/_index.md new file mode 100644 index 0000000000..b6cac81731 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotation/set_usefontsubset/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Annotation::set_UseFontSubset method +linktitle: set_UseFontSubset +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Annotation::set_UseFontSubset method. If this property set to true, fonts will be added to document as subsets. Default value is true in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/annotation/set_usefontsubset/ +--- +## Annotation::set_UseFontSubset method + + +If this property set to true, fonts will be added to document as subsets. Default value is true. + +```cpp +static ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::Annotation::set_UseFontSubset(bool value) +``` + +## See Also + +* Class [Annotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotation/set_width/_index.md b/english/cpp/aspose.pdf.annotations/annotation/set_width/_index.md new file mode 100644 index 0000000000..22fa3eec5b --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotation/set_width/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Annotation::set_Width method +linktitle: set_Width +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Annotation::set_Width method. Sets width of the annotation in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.annotations/annotation/set_width/ +--- +## Annotation::set_Width method + + +Sets width of the annotation. + +```cpp +virtual ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::Annotation::set_Width(double value) +``` + +## See Also + +* Class [Annotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationactioncollection/_index.md b/english/cpp/aspose.pdf.annotations/annotationactioncollection/_index.md new file mode 100644 index 0000000000..d8f6f7baf7 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationactioncollection/_index.md @@ -0,0 +1,56 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationActionCollection class +linktitle: AnnotationActionCollection +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationActionCollection class. Represents the collection of annotation actions in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/annotationactioncollection/ +--- +## AnnotationActionCollection class + + +Represents the collection of annotation actions. + +```cpp +class AnnotationActionCollection : public Aspose::Pdf::BaseActionCollection +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_OnCalculate](./get_oncalculate/)() | Gets an action to calculate field value. | +| [get_OnClosePage](./get_onclosepage/)() | Gets an action to be performed when the page containing the annotation is closed. | +| [get_OnEnter](./get_onenter/)() | Gets an action to be performed when the cursor enters the annotation's active area. | +| [get_OnExit](./get_onexit/)() | Gets an action to be performed when the cursor exits the annotation's active area. | +| [get_OnFormat](./get_onformat/)() | Gets an action to be performed to format field value. | +| [get_OnHidePage](./get_onhidepage/)() | Gets an action to be performed when the page containing the annotation is no longer visible in the viewer application's user interface. | +| [get_OnLostFocus](./get_onlostfocus/)() | Gets an action to be performed when the annotation loses the input focus. | +| [get_OnModifyCharacter](./get_onmodifycharacter/)() | Gets an action to be performed when user modifies character of the field. | +| [get_OnOpenPage](./get_onopenpage/)() | Gets an action to be performed when the page containing the annotation is opened. | +| [get_OnPressMouseBtn](./get_onpressmousebtn/)() | Gets an action to be performed when the mouse button is pressed inside the annotation's active area. | +| [get_OnReceiveFocus](./get_onreceivefocus/)() | Gets an action to be performed when the annotation receives the input focus. | +| [get_OnReleaseMouseBtn](./get_onreleasemousebtn/)() | Gets an action to be performed when the mouse button is released inside the annotation's active area. | +| [get_OnShowPage](./get_onshowpage/)() | Gets an action to be performed when the page containing the annotation becomes visible in the viewer application's user interface. | +| [get_OnValidate](./get_onvalidate/)() | Gets an action to be performed when user changes contents of the field. | +| [RemoveActions](../../aspose.pdf/baseactioncollection/removeactions/)() | Removes all actions of the annotation. | +| [set_OnCalculate](./set_oncalculate/)(System::SharedPtr\) | Sets an action to calculate field value. | +| [set_OnClosePage](./set_onclosepage/)(System::SharedPtr\) | Sets an action to be performed when the page containing the annotation is closed. | +| [set_OnEnter](./set_onenter/)(System::SharedPtr\) | Sets an action to be performed when the cursor enters the annotation's active area. | +| [set_OnExit](./set_onexit/)(System::SharedPtr\) | Sets an action to be performed when the cursor exits the annotation's active area. | +| [set_OnFormat](./set_onformat/)(System::SharedPtr\) | Sets an action to be performed to format field value. | +| [set_OnHidePage](./set_onhidepage/)(System::SharedPtr\) | Sets an action to be performed when the page containing the annotation is no longer visible in the viewer application's user interface. | +| [set_OnLostFocus](./set_onlostfocus/)(System::SharedPtr\) | Sets an action to be performed when the annotation loses the input focus. | +| [set_OnModifyCharacter](./set_onmodifycharacter/)(System::SharedPtr\) | Sets an action to be performed when user modifies character of the field. | +| [set_OnOpenPage](./set_onopenpage/)(System::SharedPtr\) | Sets an action to be performed when the page containing the annotation is opened. | +| [set_OnPressMouseBtn](./set_onpressmousebtn/)(System::SharedPtr\) | Sets an action to be performed when the mouse button is pressed inside the annotation's active area. | +| [set_OnReceiveFocus](./set_onreceivefocus/)(System::SharedPtr\) | Sets an action to be performed when the annotation receives the input focus. | +| [set_OnReleaseMouseBtn](./set_onreleasemousebtn/)(System::SharedPtr\) | Sets an action to be performed when the mouse button is released inside the annotation's active area. | +| [set_OnShowPage](./set_onshowpage/)(System::SharedPtr\) | Sets an action to be performed when the page containing the annotation becomes visible in the viewer application's user interface. | +| [set_OnValidate](./set_onvalidate/)(System::SharedPtr\) | Sets an action to be performed when user changes contents of the field. | +## See Also + +* Class [BaseActionCollection](../../aspose.pdf/baseactioncollection/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationactioncollection/get_oncalculate/_index.md b/english/cpp/aspose.pdf.annotations/annotationactioncollection/get_oncalculate/_index.md new file mode 100644 index 0000000000..63bec0868a --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationactioncollection/get_oncalculate/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationActionCollection::get_OnCalculate method +linktitle: get_OnCalculate +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationActionCollection::get_OnCalculate method. Gets an action to calculate field value in C++.' +type: docs +weight: 2700 +url: /cpp/aspose.pdf.annotations/annotationactioncollection/get_oncalculate/ +--- +## AnnotationActionCollection::get_OnCalculate method + + +Gets an action to calculate field value. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::AnnotationActionCollection::get_OnCalculate() +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [AnnotationActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onclosepage/_index.md b/english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onclosepage/_index.md new file mode 100644 index 0000000000..20194e8305 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onclosepage/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationActionCollection::get_OnClosePage method +linktitle: get_OnClosePage +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationActionCollection::get_OnClosePage method. Gets an action to be performed when the page containing the annotation is closed in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.annotations/annotationactioncollection/get_onclosepage/ +--- +## AnnotationActionCollection::get_OnClosePage method + + +Gets an action to be performed when the page containing the annotation is closed. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::AnnotationActionCollection::get_OnClosePage() +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [AnnotationActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onenter/_index.md b/english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onenter/_index.md new file mode 100644 index 0000000000..43130afaf6 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onenter/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationActionCollection::get_OnEnter method +linktitle: get_OnEnter +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationActionCollection::get_OnEnter method. Gets an action to be performed when the cursor enters the annotation''s active area in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/annotationactioncollection/get_onenter/ +--- +## AnnotationActionCollection::get_OnEnter method + + +Gets an action to be performed when the cursor enters the annotation's active area. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::AnnotationActionCollection::get_OnEnter() +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [AnnotationActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onexit/_index.md b/english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onexit/_index.md new file mode 100644 index 0000000000..e81aa82f9c --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onexit/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationActionCollection::get_OnExit method +linktitle: get_OnExit +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationActionCollection::get_OnExit method. Gets an action to be performed when the cursor exits the annotation''s active area in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/annotationactioncollection/get_onexit/ +--- +## AnnotationActionCollection::get_OnExit method + + +Gets an action to be performed when the cursor exits the annotation's active area. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::AnnotationActionCollection::get_OnExit() +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [AnnotationActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onformat/_index.md b/english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onformat/_index.md new file mode 100644 index 0000000000..6f60b8aeac --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onformat/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationActionCollection::get_OnFormat method +linktitle: get_OnFormat +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationActionCollection::get_OnFormat method. Gets an action to be performed to format field value in C++.' +type: docs +weight: 2500 +url: /cpp/aspose.pdf.annotations/annotationactioncollection/get_onformat/ +--- +## AnnotationActionCollection::get_OnFormat method + + +Gets an action to be performed to format field value. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::AnnotationActionCollection::get_OnFormat() +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [AnnotationActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onhidepage/_index.md b/english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onhidepage/_index.md new file mode 100644 index 0000000000..d51ae9adf7 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onhidepage/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationActionCollection::get_OnHidePage method +linktitle: get_OnHidePage +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationActionCollection::get_OnHidePage method. Gets an action to be performed when the page containing the annotation is no longer visible in the viewer application''s user interface in C++.' +type: docs +weight: 1700 +url: /cpp/aspose.pdf.annotations/annotationactioncollection/get_onhidepage/ +--- +## AnnotationActionCollection::get_OnHidePage method + + +Gets an action to be performed when the page containing the annotation is no longer visible in the viewer application's user interface. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::AnnotationActionCollection::get_OnHidePage() +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [AnnotationActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onlostfocus/_index.md b/english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onlostfocus/_index.md new file mode 100644 index 0000000000..7052d7efcc --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onlostfocus/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationActionCollection::get_OnLostFocus method +linktitle: get_OnLostFocus +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationActionCollection::get_OnLostFocus method. Gets an action to be performed when the annotation loses the input focus in C++.' +type: docs +weight: 1900 +url: /cpp/aspose.pdf.annotations/annotationactioncollection/get_onlostfocus/ +--- +## AnnotationActionCollection::get_OnLostFocus method + + +Gets an action to be performed when the annotation loses the input focus. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::AnnotationActionCollection::get_OnLostFocus() +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [AnnotationActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onmodifycharacter/_index.md b/english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onmodifycharacter/_index.md new file mode 100644 index 0000000000..57a5bcdd3d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onmodifycharacter/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationActionCollection::get_OnModifyCharacter method +linktitle: get_OnModifyCharacter +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationActionCollection::get_OnModifyCharacter method. Gets an action to be performed when user modifies character of the field in C++.' +type: docs +weight: 2100 +url: /cpp/aspose.pdf.annotations/annotationactioncollection/get_onmodifycharacter/ +--- +## AnnotationActionCollection::get_OnModifyCharacter method + + +Gets an action to be performed when user modifies character of the field. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::AnnotationActionCollection::get_OnModifyCharacter() +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [AnnotationActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onopenpage/_index.md b/english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onopenpage/_index.md new file mode 100644 index 0000000000..97fcb5846b --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onopenpage/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationActionCollection::get_OnOpenPage method +linktitle: get_OnOpenPage +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationActionCollection::get_OnOpenPage method. Gets an action to be performed when the page containing the annotation is opened in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.annotations/annotationactioncollection/get_onopenpage/ +--- +## AnnotationActionCollection::get_OnOpenPage method + + +Gets an action to be performed when the page containing the annotation is opened. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::AnnotationActionCollection::get_OnOpenPage() +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [AnnotationActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onpressmousebtn/_index.md b/english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onpressmousebtn/_index.md new file mode 100644 index 0000000000..6e895b5671 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onpressmousebtn/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationActionCollection::get_OnPressMouseBtn method +linktitle: get_OnPressMouseBtn +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationActionCollection::get_OnPressMouseBtn method. Gets an action to be performed when the mouse button is pressed inside the annotation''s active area in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/annotationactioncollection/get_onpressmousebtn/ +--- +## AnnotationActionCollection::get_OnPressMouseBtn method + + +Gets an action to be performed when the mouse button is pressed inside the annotation's active area. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::AnnotationActionCollection::get_OnPressMouseBtn() +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [AnnotationActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onreceivefocus/_index.md b/english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onreceivefocus/_index.md new file mode 100644 index 0000000000..449acef787 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onreceivefocus/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationActionCollection::get_OnReceiveFocus method +linktitle: get_OnReceiveFocus +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationActionCollection::get_OnReceiveFocus method. Gets an action to be performed when the annotation receives the input focus in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.annotations/annotationactioncollection/get_onreceivefocus/ +--- +## AnnotationActionCollection::get_OnReceiveFocus method + + +Gets an action to be performed when the annotation receives the input focus. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::AnnotationActionCollection::get_OnReceiveFocus() +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [AnnotationActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onreleasemousebtn/_index.md b/english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onreleasemousebtn/_index.md new file mode 100644 index 0000000000..534605c712 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onreleasemousebtn/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationActionCollection::get_OnReleaseMouseBtn method +linktitle: get_OnReleaseMouseBtn +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationActionCollection::get_OnReleaseMouseBtn method. Gets an action to be performed when the mouse button is released inside the annotation''s active area in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.annotations/annotationactioncollection/get_onreleasemousebtn/ +--- +## AnnotationActionCollection::get_OnReleaseMouseBtn method + + +Gets an action to be performed when the mouse button is released inside the annotation's active area. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::AnnotationActionCollection::get_OnReleaseMouseBtn() +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [AnnotationActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onshowpage/_index.md b/english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onshowpage/_index.md new file mode 100644 index 0000000000..767b4f755c --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onshowpage/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationActionCollection::get_OnShowPage method +linktitle: get_OnShowPage +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationActionCollection::get_OnShowPage method. Gets an action to be performed when the page containing the annotation becomes visible in the viewer application''s user interface in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.annotations/annotationactioncollection/get_onshowpage/ +--- +## AnnotationActionCollection::get_OnShowPage method + + +Gets an action to be performed when the page containing the annotation becomes visible in the viewer application's user interface. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::AnnotationActionCollection::get_OnShowPage() +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [AnnotationActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onvalidate/_index.md b/english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onvalidate/_index.md new file mode 100644 index 0000000000..235e85db83 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationactioncollection/get_onvalidate/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationActionCollection::get_OnValidate method +linktitle: get_OnValidate +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationActionCollection::get_OnValidate method. Gets an action to be performed when user changes contents of the field in C++.' +type: docs +weight: 2300 +url: /cpp/aspose.pdf.annotations/annotationactioncollection/get_onvalidate/ +--- +## AnnotationActionCollection::get_OnValidate method + + +Gets an action to be performed when user changes contents of the field. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::AnnotationActionCollection::get_OnValidate() +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [AnnotationActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationactioncollection/set_oncalculate/_index.md b/english/cpp/aspose.pdf.annotations/annotationactioncollection/set_oncalculate/_index.md new file mode 100644 index 0000000000..7477634727 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationactioncollection/set_oncalculate/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationActionCollection::set_OnCalculate method +linktitle: set_OnCalculate +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationActionCollection::set_OnCalculate method. Sets an action to calculate field value in C++.' +type: docs +weight: 2800 +url: /cpp/aspose.pdf.annotations/annotationactioncollection/set_oncalculate/ +--- +## AnnotationActionCollection::set_OnCalculate method + + +Sets an action to calculate field value. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationActionCollection::set_OnCalculate(System::SharedPtr value) +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [AnnotationActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onclosepage/_index.md b/english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onclosepage/_index.md new file mode 100644 index 0000000000..264559bf5e --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onclosepage/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationActionCollection::set_OnClosePage method +linktitle: set_OnClosePage +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationActionCollection::set_OnClosePage method. Sets an action to be performed when the page containing the annotation is closed in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.annotations/annotationactioncollection/set_onclosepage/ +--- +## AnnotationActionCollection::set_OnClosePage method + + +Sets an action to be performed when the page containing the annotation is closed. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationActionCollection::set_OnClosePage(System::SharedPtr value) +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [AnnotationActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onenter/_index.md b/english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onenter/_index.md new file mode 100644 index 0000000000..76dcdd5e83 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onenter/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationActionCollection::set_OnEnter method +linktitle: set_OnEnter +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationActionCollection::set_OnEnter method. Sets an action to be performed when the cursor enters the annotation''s active area in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/annotationactioncollection/set_onenter/ +--- +## AnnotationActionCollection::set_OnEnter method + + +Sets an action to be performed when the cursor enters the annotation's active area. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationActionCollection::set_OnEnter(System::SharedPtr value) +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [AnnotationActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onexit/_index.md b/english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onexit/_index.md new file mode 100644 index 0000000000..26c740f838 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onexit/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationActionCollection::set_OnExit method +linktitle: set_OnExit +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationActionCollection::set_OnExit method. Sets an action to be performed when the cursor exits the annotation''s active area in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/annotationactioncollection/set_onexit/ +--- +## AnnotationActionCollection::set_OnExit method + + +Sets an action to be performed when the cursor exits the annotation's active area. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationActionCollection::set_OnExit(System::SharedPtr value) +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [AnnotationActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onformat/_index.md b/english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onformat/_index.md new file mode 100644 index 0000000000..b4b749c7cc --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onformat/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationActionCollection::set_OnFormat method +linktitle: set_OnFormat +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationActionCollection::set_OnFormat method. Sets an action to be performed to format field value in C++.' +type: docs +weight: 2600 +url: /cpp/aspose.pdf.annotations/annotationactioncollection/set_onformat/ +--- +## AnnotationActionCollection::set_OnFormat method + + +Sets an action to be performed to format field value. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationActionCollection::set_OnFormat(System::SharedPtr value) +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [AnnotationActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onhidepage/_index.md b/english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onhidepage/_index.md new file mode 100644 index 0000000000..23a26f33a2 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onhidepage/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationActionCollection::set_OnHidePage method +linktitle: set_OnHidePage +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationActionCollection::set_OnHidePage method. Sets an action to be performed when the page containing the annotation is no longer visible in the viewer application''s user interface in C++.' +type: docs +weight: 1800 +url: /cpp/aspose.pdf.annotations/annotationactioncollection/set_onhidepage/ +--- +## AnnotationActionCollection::set_OnHidePage method + + +Sets an action to be performed when the page containing the annotation is no longer visible in the viewer application's user interface. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationActionCollection::set_OnHidePage(System::SharedPtr value) +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [AnnotationActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onlostfocus/_index.md b/english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onlostfocus/_index.md new file mode 100644 index 0000000000..2b819d44d8 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onlostfocus/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationActionCollection::set_OnLostFocus method +linktitle: set_OnLostFocus +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationActionCollection::set_OnLostFocus method. Sets an action to be performed when the annotation loses the input focus in C++.' +type: docs +weight: 2000 +url: /cpp/aspose.pdf.annotations/annotationactioncollection/set_onlostfocus/ +--- +## AnnotationActionCollection::set_OnLostFocus method + + +Sets an action to be performed when the annotation loses the input focus. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationActionCollection::set_OnLostFocus(System::SharedPtr value) +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [AnnotationActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onmodifycharacter/_index.md b/english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onmodifycharacter/_index.md new file mode 100644 index 0000000000..31116dbc86 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onmodifycharacter/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationActionCollection::set_OnModifyCharacter method +linktitle: set_OnModifyCharacter +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationActionCollection::set_OnModifyCharacter method. Sets an action to be performed when user modifies character of the field in C++.' +type: docs +weight: 2200 +url: /cpp/aspose.pdf.annotations/annotationactioncollection/set_onmodifycharacter/ +--- +## AnnotationActionCollection::set_OnModifyCharacter method + + +Sets an action to be performed when user modifies character of the field. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationActionCollection::set_OnModifyCharacter(System::SharedPtr value) +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [AnnotationActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onopenpage/_index.md b/english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onopenpage/_index.md new file mode 100644 index 0000000000..6b5d5c1964 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onopenpage/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationActionCollection::set_OnOpenPage method +linktitle: set_OnOpenPage +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationActionCollection::set_OnOpenPage method. Sets an action to be performed when the page containing the annotation is opened in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.annotations/annotationactioncollection/set_onopenpage/ +--- +## AnnotationActionCollection::set_OnOpenPage method + + +Sets an action to be performed when the page containing the annotation is opened. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationActionCollection::set_OnOpenPage(System::SharedPtr value) +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [AnnotationActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onpressmousebtn/_index.md b/english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onpressmousebtn/_index.md new file mode 100644 index 0000000000..104ddab5de --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onpressmousebtn/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationActionCollection::set_OnPressMouseBtn method +linktitle: set_OnPressMouseBtn +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationActionCollection::set_OnPressMouseBtn method. Sets an action to be performed when the mouse button is pressed inside the annotation''s active area in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/annotationactioncollection/set_onpressmousebtn/ +--- +## AnnotationActionCollection::set_OnPressMouseBtn method + + +Sets an action to be performed when the mouse button is pressed inside the annotation's active area. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationActionCollection::set_OnPressMouseBtn(System::SharedPtr value) +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [AnnotationActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onreceivefocus/_index.md b/english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onreceivefocus/_index.md new file mode 100644 index 0000000000..0948905263 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onreceivefocus/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationActionCollection::set_OnReceiveFocus method +linktitle: set_OnReceiveFocus +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationActionCollection::set_OnReceiveFocus method. Sets an action to be performed when the annotation receives the input focus in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.annotations/annotationactioncollection/set_onreceivefocus/ +--- +## AnnotationActionCollection::set_OnReceiveFocus method + + +Sets an action to be performed when the annotation receives the input focus. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationActionCollection::set_OnReceiveFocus(System::SharedPtr value) +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [AnnotationActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onreleasemousebtn/_index.md b/english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onreleasemousebtn/_index.md new file mode 100644 index 0000000000..28599d16d4 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onreleasemousebtn/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationActionCollection::set_OnReleaseMouseBtn method +linktitle: set_OnReleaseMouseBtn +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationActionCollection::set_OnReleaseMouseBtn method. Sets an action to be performed when the mouse button is released inside the annotation''s active area in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.annotations/annotationactioncollection/set_onreleasemousebtn/ +--- +## AnnotationActionCollection::set_OnReleaseMouseBtn method + + +Sets an action to be performed when the mouse button is released inside the annotation's active area. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationActionCollection::set_OnReleaseMouseBtn(System::SharedPtr value) +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [AnnotationActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onshowpage/_index.md b/english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onshowpage/_index.md new file mode 100644 index 0000000000..3ccdefab41 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onshowpage/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationActionCollection::set_OnShowPage method +linktitle: set_OnShowPage +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationActionCollection::set_OnShowPage method. Sets an action to be performed when the page containing the annotation becomes visible in the viewer application''s user interface in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf.annotations/annotationactioncollection/set_onshowpage/ +--- +## AnnotationActionCollection::set_OnShowPage method + + +Sets an action to be performed when the page containing the annotation becomes visible in the viewer application's user interface. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationActionCollection::set_OnShowPage(System::SharedPtr value) +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [AnnotationActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onvalidate/_index.md b/english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onvalidate/_index.md new file mode 100644 index 0000000000..ba5caaae3d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationactioncollection/set_onvalidate/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationActionCollection::set_OnValidate method +linktitle: set_OnValidate +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationActionCollection::set_OnValidate method. Sets an action to be performed when user changes contents of the field in C++.' +type: docs +weight: 2400 +url: /cpp/aspose.pdf.annotations/annotationactioncollection/set_onvalidate/ +--- +## AnnotationActionCollection::set_OnValidate method + + +Sets an action to be performed when user changes contents of the field. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationActionCollection::set_OnValidate(System::SharedPtr value) +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [AnnotationActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationcollection/_index.md b/english/cpp/aspose.pdf.annotations/annotationcollection/_index.md new file mode 100644 index 0000000000..56d45b2b9e --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationcollection/_index.md @@ -0,0 +1,43 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationCollection class +linktitle: AnnotationCollection +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationCollection class. Class representing annotation collection in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/annotationcollection/ +--- +## AnnotationCollection class + + +Class representing annotation collection. + +```cpp +class AnnotationCollection : public System::Collections::Generic::ICollection> +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Accept](./accept/)(System::SharedPtr\) | Accepts visitor to process annotation. | +| [Add](./add/)(System::SharedPtr\, bool) | Adds annotation to the collection. If page is rotated then annotation rectangle will be recalculated accordingly. | +| [Add](./add/)(const System::SharedPtr\\&) override | Adds annotation to the collection. | +| [Clear](./clear/)() override | Deletes all annotations from the collection. | +| [Contains](./contains/)(const System::SharedPtr\\&) const override | Checks if specified annotation belong to collection. | +| [CopyTo](./copyto/)(System::ArrayPtr\\>, int32_t) override | Copies array of annotations into collection. | +| [Delete](./delete/)(int32_t) | Deletes annotation from the collection by index. | +| [Delete](./delete/)() | Deletes all annotations from the collection. | +| [Delete](./delete/)(System::SharedPtr\) | Deletes specified annotation from the collection. | +| [FindByName](./findbyname/)(System::String) | Returns annotation by its name. | +| [get_Count](./get_count/)() const override | Gets count of annotations in collection. | +| [get_IsReadOnly](./get_isreadonly/)() const override | Gets a value indicating if collection is readonly. | +| [get_IsSynchronized](./get_issynchronized/)() | Gets a value indicating whether access to the [Aspose.Pdf.Annotations.AnnotationCollection](./) is synchronized (thread safe). | +| [get_SyncRoot](./get_syncroot/)() const | Gets an object that can be used to synchronize access to [Aspose.Pdf.Annotations.AnnotationCollection](./). | +| [GetEnumerator](./getenumerator/)() override | Returns collection enumerator. | +| [idx_get](./idx_get/)(int32_t) | The index of the element to get. | +| [Remove](./remove/)(const System::SharedPtr\\&) override | Deletes specified annotation from the collection. | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationcollection/accept/_index.md b/english/cpp/aspose.pdf.annotations/annotationcollection/accept/_index.md new file mode 100644 index 0000000000..32dcf87ef9 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationcollection/accept/_index.md @@ -0,0 +1,42 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationCollection::Accept method +linktitle: Accept +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationCollection::Accept method. Accepts visitor to process annotation in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.annotations/annotationcollection/accept/ +--- +## AnnotationCollection::Accept method + + +Accepts visitor to process annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationCollection::Accept(System::SharedPtr visitor) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| visitor | System::SharedPtr\ | [Annotation](../../annotation/) selector object. | +## Remarks + + + + + + visitor + + + + Annotation selector object. + + + +## See Also + +* Class [AnnotationSelector](../../annotationselector/) +* Class [AnnotationCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationcollection/add/_index.md b/english/cpp/aspose.pdf.annotations/annotationcollection/add/_index.md new file mode 100644 index 0000000000..de5f8de84f --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationcollection/add/_index.md @@ -0,0 +1,84 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationCollection::Add method +linktitle: Add +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationCollection::Add method. Adds annotation to the collection. If page is rotated then annotation rectangle will be recalculated accordingly in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/annotationcollection/add/ +--- +## AnnotationCollection::Add(System::SharedPtr\, bool) method + + +Adds annotation to the collection. If page is rotated then annotation rectangle will be recalculated accordingly. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationCollection::Add(System::SharedPtr annotation, bool considerRotation) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| annotation | System::SharedPtr\ | [Annotation](../../annotation/) which shall be added. | +| considerRotation | bool | If true and if page is rotated then annotation position will be recaculated accroding to page rotation. | +## Remarks + + + + + + annotation + + + + Annotation which shall be added. + + + + + considerRotation + + + If true and if page is rotated then annotation position will be recaculated accroding to page rotation. + + + +## See Also + +* Class [Annotation](../../annotation/) +* Class [AnnotationCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## AnnotationCollection::Add(const System::SharedPtr\\&) method + + +Adds annotation to the collection. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationCollection::Add(const System::SharedPtr &annotation) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| annotation | const System::SharedPtr\\& | [Annotation](../../annotation/) which shall be added. | +## Remarks + + + + + + annotation + + + + Annotation which shall be added. + + + +## See Also + +* Class [Annotation](../../annotation/) +* Class [AnnotationCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationcollection/clear/_index.md b/english/cpp/aspose.pdf.annotations/annotationcollection/clear/_index.md new file mode 100644 index 0000000000..0abe71ccc9 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationcollection/clear/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationCollection::Clear method +linktitle: Clear +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationCollection::Clear method. Deletes all annotations from the collection in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.annotations/annotationcollection/clear/ +--- +## AnnotationCollection::Clear method + + +Deletes all annotations from the collection. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationCollection::Clear() override +``` + +## See Also + +* Class [AnnotationCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationcollection/contains/_index.md b/english/cpp/aspose.pdf.annotations/annotationcollection/contains/_index.md new file mode 100644 index 0000000000..5782fe5adc --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationcollection/contains/_index.md @@ -0,0 +1,46 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationCollection::Contains method +linktitle: Contains +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationCollection::Contains method. Checks if specified annotation belong to collection in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.annotations/annotationcollection/contains/ +--- +## AnnotationCollection::Contains method + + +Checks if specified annotation belong to collection. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Annotations::AnnotationCollection::Contains(const System::SharedPtr &annotation) const override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| annotation | const System::SharedPtr\\& | [Annotation](../../annotation/) to be searched. | + +### ReturnValue + +True - if annotation found; otherwise, false. +## Remarks + + + + + + annotation + + + + Annotation to be searched. + + + +## See Also + +* Class [Annotation](../../annotation/) +* Class [AnnotationCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationcollection/copyto/_index.md b/english/cpp/aspose.pdf.annotations/annotationcollection/copyto/_index.md new file mode 100644 index 0000000000..85ff976c2d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationcollection/copyto/_index.md @@ -0,0 +1,50 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationCollection::CopyTo method +linktitle: CopyTo +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationCollection::CopyTo method. Copies array of annotations into collection in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.annotations/annotationcollection/copyto/ +--- +## AnnotationCollection::CopyTo method + + +Copies array of annotations into collection. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationCollection::CopyTo(System::ArrayPtr> array, int32_t index) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| array | System::ArrayPtr\\> | Array to copy into collection. | +| index | int32_t | Starting index where colleciton wil lbe copied. | +## Remarks + + + + + + array + + + Array to copy into collection. + + + + + index + + + Starting index where colleciton wil lbe copied. + + + +## See Also + +* Class [Annotation](../../annotation/) +* Class [AnnotationCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationcollection/delete/_index.md b/english/cpp/aspose.pdf.annotations/annotationcollection/delete/_index.md new file mode 100644 index 0000000000..75491080b6 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationcollection/delete/_index.md @@ -0,0 +1,87 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationCollection::Delete method +linktitle: Delete +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationCollection::Delete method. Deletes annotation from the collection by index in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/annotationcollection/delete/ +--- +## AnnotationCollection::Delete(int32_t) method + + +Deletes annotation from the collection by index. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationCollection::Delete(int32_t index) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| index | int32_t | Index of annotation which shall be deleted. | +## Remarks + + + + + + index + + + Index of annotation which shall be deleted. + + + +## See Also + +* Class [AnnotationCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## AnnotationCollection::Delete() method + + +Deletes all annotations from the collection. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationCollection::Delete() +``` + +## See Also + +* Class [AnnotationCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## AnnotationCollection::Delete(System::SharedPtr\) method + + +Deletes specified annotation from the collection. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationCollection::Delete(System::SharedPtr annotation) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| annotation | System::SharedPtr\ | [Annotation](../../annotation/) which shall be deleted. | +## Remarks + + + + + + annotation + + + + Annotation which shall be deleted. + + + +## See Also + +* Class [Annotation](../../annotation/) +* Class [AnnotationCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationcollection/findbyname/_index.md b/english/cpp/aspose.pdf.annotations/annotationcollection/findbyname/_index.md new file mode 100644 index 0000000000..f026410a85 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationcollection/findbyname/_index.md @@ -0,0 +1,45 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationCollection::FindByName method +linktitle: FindByName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationCollection::FindByName method. Returns annotation by its name in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.annotations/annotationcollection/findbyname/ +--- +## AnnotationCollection::FindByName method + + +Returns annotation by its name. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::AnnotationCollection::FindByName(System::String name) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| name | System::String | Name of the annotation | + +### ReturnValue + +[Annotation](../../annotation/) object if found; otherwise, null. +## Remarks + + + + + + name + + + Name of the annotation + + + +## See Also + +* Class [Annotation](../../annotation/) +* Class [AnnotationCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationcollection/get_count/_index.md b/english/cpp/aspose.pdf.annotations/annotationcollection/get_count/_index.md new file mode 100644 index 0000000000..4e8b9fe9b8 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationcollection/get_count/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationCollection::get_Count method +linktitle: get_Count +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationCollection::get_Count method. Gets count of annotations in collection in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/annotationcollection/get_count/ +--- +## AnnotationCollection::get_Count method + + +Gets count of annotations in collection. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Annotations::AnnotationCollection::get_Count() const override +``` + +## See Also + +* Class [AnnotationCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationcollection/get_isreadonly/_index.md b/english/cpp/aspose.pdf.annotations/annotationcollection/get_isreadonly/_index.md new file mode 100644 index 0000000000..da4ab27c20 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationcollection/get_isreadonly/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationCollection::get_IsReadOnly method +linktitle: get_IsReadOnly +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationCollection::get_IsReadOnly method. Gets a value indicating if collection is readonly in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/annotationcollection/get_isreadonly/ +--- +## AnnotationCollection::get_IsReadOnly method + + +Gets a value indicating if collection is readonly. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Annotations::AnnotationCollection::get_IsReadOnly() const override +``` + +## See Also + +* Class [AnnotationCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationcollection/get_issynchronized/_index.md b/english/cpp/aspose.pdf.annotations/annotationcollection/get_issynchronized/_index.md new file mode 100644 index 0000000000..b7dcc8b117 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationcollection/get_issynchronized/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationCollection::get_IsSynchronized method +linktitle: get_IsSynchronized +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationCollection::get_IsSynchronized method. Gets a value indicating whether access to the Aspose.Pdf.Annotations.AnnotationCollection is synchronized (thread safe) in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/annotationcollection/get_issynchronized/ +--- +## AnnotationCollection::get_IsSynchronized method + + +Gets a value indicating whether access to the [Aspose.Pdf.Annotations.AnnotationCollection](../) is synchronized (thread safe). + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Annotations::AnnotationCollection::get_IsSynchronized() +``` + +## See Also + +* Class [AnnotationCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationcollection/get_syncroot/_index.md b/english/cpp/aspose.pdf.annotations/annotationcollection/get_syncroot/_index.md new file mode 100644 index 0000000000..4b537dbdb1 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationcollection/get_syncroot/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationCollection::get_SyncRoot method +linktitle: get_SyncRoot +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationCollection::get_SyncRoot method. Gets an object that can be used to synchronize access to Aspose.Pdf.Annotations.AnnotationCollection in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/annotationcollection/get_syncroot/ +--- +## AnnotationCollection::get_SyncRoot method + + +Gets an object that can be used to synchronize access to [Aspose.Pdf.Annotations.AnnotationCollection](../). + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::AnnotationCollection::get_SyncRoot() const +``` + +## See Also + +* Class [AnnotationCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationcollection/getenumerator/_index.md b/english/cpp/aspose.pdf.annotations/annotationcollection/getenumerator/_index.md new file mode 100644 index 0000000000..fd33683cc9 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationcollection/getenumerator/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationCollection::GetEnumerator method +linktitle: GetEnumerator +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationCollection::GetEnumerator method. Returns collection enumerator in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.annotations/annotationcollection/getenumerator/ +--- +## AnnotationCollection::GetEnumerator method + + +Returns collection enumerator. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr>> Aspose::Pdf::Annotations::AnnotationCollection::GetEnumerator() override +``` + + +### ReturnValue + +Enumerator object + +## See Also + +* Class [Annotation](../../annotation/) +* Class [AnnotationCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationcollection/idx_get/_index.md b/english/cpp/aspose.pdf.annotations/annotationcollection/idx_get/_index.md new file mode 100644 index 0000000000..903f63767c --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationcollection/idx_get/_index.md @@ -0,0 +1,45 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationCollection::idx_get method +linktitle: idx_get +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationCollection::idx_get method. The index of the element to get in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.annotations/annotationcollection/idx_get/ +--- +## AnnotationCollection::idx_get method + + +The index of the element to get. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::AnnotationCollection::idx_get(int32_t index) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| index | int32_t | The index value started from one. | + +### ReturnValue + +[Annotation](../../annotation/) object +## Remarks + + + + + + index + + + The index value started from one. + + + +## See Also + +* Class [Annotation](../../annotation/) +* Class [AnnotationCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationcollection/remove/_index.md b/english/cpp/aspose.pdf.annotations/annotationcollection/remove/_index.md new file mode 100644 index 0000000000..35469400a8 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationcollection/remove/_index.md @@ -0,0 +1,46 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationCollection::Remove method +linktitle: Remove +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationCollection::Remove method. Deletes specified annotation from the collection in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.annotations/annotationcollection/remove/ +--- +## AnnotationCollection::Remove method + + +Deletes specified annotation from the collection. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Annotations::AnnotationCollection::Remove(const System::SharedPtr &annotation) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| annotation | const System::SharedPtr\\& | [Annotation](../../annotation/) which shall be deleted. | + +### ReturnValue + +True - if annotation removed; otherwise, false. +## Remarks + + + + + + annotation + + + + Annotation which shall be deleted. + + + +## See Also + +* Class [Annotation](../../annotation/) +* Class [AnnotationCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationflags/_index.md b/english/cpp/aspose.pdf.annotations/annotationflags/_index.md new file mode 100644 index 0000000000..d910f9e457 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationflags/_index.md @@ -0,0 +1,38 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationFlags enum +linktitle: AnnotationFlags +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationFlags enum. A set of flags specifying various characteristics of the annotation in C++.' +type: docs +weight: 12100 +url: /cpp/aspose.pdf.annotations/annotationflags/ +--- +## AnnotationFlags enum + + +A set of flags specifying various characteristics of the annotation. + +```cpp +enum class AnnotationFlags +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Default | 0 | Default value. | +| Invisible | 1 | If set, do not display the annotation if it does not belong to one of the standard annotation types and no annotation handler is available. If clear, display such an unknown annotation using an appearance stream specified by its appearance dictionary, if any. | +| Hidden | 2 | If set, do not display or print the annotation or allow it to interact with the user, regardless of its annotation type or whether an annotation handler is available. In cases where screen space is limited, the ability to hide and show annotations selectively can be used in combination with appearance streams to display auxiliary pop-up information similar in function to online help systems. | +| Print | 4 | If set, print the annotation when the page is printed. If clear, never print the annotation, regardless of whether it is displayed on the screen. This can be useful, for example, for annotations representing interactive pushbuttons, which would serve no meaningful purpose on the printed page. | +| NoZoom | 8 | If set, do not scale the annotation's appearance to match the magnification of the page. The location of the annotation on the page (defined by the upper-left corner of its annotation rectangle) remains fixed, regardless of the page magnification. | +| NoRotate | 16 | If set, do not rotate the annotation's appearance to match the rotation of the page. The upper-left corner of the annotation rectangle remains in a fixed location on the page, regardless of the page rotation. | +| NoView | 32 | If set, do not display the annotation on the screen or allow it to interact with the user. The annotation may be printed (depending on the setting of the Print flag) but should be considered hidden for purposes of on-screen display and user interaction. | +| ReadOnly | 64 | If set, do not allow the annotation to interact with the user. The annotation may be displayed or printed (depending on the settings of the NoView and Print flags) but should not respond to mouse clicks or change its appearance in response to mouse motions. This flag is ignored for widget annotations; its function is subsumed by the ReadOnly flag of the associated form field. | +| Locked | 128 | If set, do not allow the annotation to be deleted or its properties (including position and size) to be modified by the user. However, this flag does not restrict changes to the annotation's contents, such as the value of a form field. | +| ToggleNoView | 256 | If set, invert the interpretation of the NoView flag for certain events. A typical use is to have an annotation that appears only when a mouse cursor is held over it. | +| LockedContents | 512 | If set, do not allow the contents of the annotation to be modified by the user. This flag does not restrict deletion of the annotation or changes to other annotation properties, such as position and size. | + +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationflagsconverter/_index.md b/english/cpp/aspose.pdf.annotations/annotationflagsconverter/_index.md new file mode 100644 index 0000000000..b490426d50 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationflagsconverter/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationFlagsConverter class +linktitle: AnnotationFlagsConverter +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Annotations::AnnotationFlagsConverter class in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/annotationflagsconverter/ +--- +## AnnotationFlagsConverter class + + + + +```cpp +class AnnotationFlagsConverter : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [ToEnum](./toenum/)(System::String) | | +| static [ToString](./tostring/)(AnnotationFlags) | | +| static [ToXfdfString](./toxfdfstring/)(AnnotationFlags) | | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationflagsconverter/toenum/_index.md b/english/cpp/aspose.pdf.annotations/annotationflagsconverter/toenum/_index.md new file mode 100644 index 0000000000..fedb37cd80 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationflagsconverter/toenum/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationFlagsConverter::ToEnum method +linktitle: ToEnum +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToEnum method of Aspose::Pdf::Annotations::AnnotationFlagsConverter class in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/annotationflagsconverter/toenum/ +--- +## AnnotationFlagsConverter::ToEnum method + + + + +```cpp +static AnnotationFlags Aspose::Pdf::Annotations::AnnotationFlagsConverter::ToEnum(System::String value) +``` + +## See Also + +* Enum [AnnotationFlags](../../annotationflags/) +* Class [AnnotationFlagsConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationflagsconverter/tostring/_index.md b/english/cpp/aspose.pdf.annotations/annotationflagsconverter/tostring/_index.md new file mode 100644 index 0000000000..312634d342 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationflagsconverter/tostring/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationFlagsConverter::ToString method +linktitle: ToString +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToString method of Aspose::Pdf::Annotations::AnnotationFlagsConverter class in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/annotationflagsconverter/tostring/ +--- +## AnnotationFlagsConverter::ToString method + + + + +```cpp +static System::String Aspose::Pdf::Annotations::AnnotationFlagsConverter::ToString(AnnotationFlags value) +``` + +## See Also + +* Enum [AnnotationFlags](../../annotationflags/) +* Class [AnnotationFlagsConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationflagsconverter/toxfdfstring/_index.md b/english/cpp/aspose.pdf.annotations/annotationflagsconverter/toxfdfstring/_index.md new file mode 100644 index 0000000000..250c78826a --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationflagsconverter/toxfdfstring/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationFlagsConverter::ToXfdfString method +linktitle: ToXfdfString +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToXfdfString method of Aspose::Pdf::Annotations::AnnotationFlagsConverter class in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/annotationflagsconverter/toxfdfstring/ +--- +## AnnotationFlagsConverter::ToXfdfString method + + + + +```cpp +static System::String Aspose::Pdf::Annotations::AnnotationFlagsConverter::ToXfdfString(AnnotationFlags value) +``` + +## See Also + +* Enum [AnnotationFlags](../../annotationflags/) +* Class [AnnotationFlagsConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationselector/_index.md b/english/cpp/aspose.pdf.annotations/annotationselector/_index.md new file mode 100644 index 0000000000..50eabe87e0 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationselector/_index.md @@ -0,0 +1,59 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationSelector class +linktitle: AnnotationSelector +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationSelector class. This class is used for selecting annotations using Visitor template idea in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/annotationselector/ +--- +## AnnotationSelector class + + +This class is used for selecting annotations using Visitor template idea. + +```cpp +class AnnotationSelector : public Aspose::Pdf::Annotations::IAnnotationVisitor +``` + +## Methods + +| Method | Description | +| --- | --- | +| [AnnotationSelector](./annotationselector/)() | Initializes new instance of the [AnnotationSelector](./) class. | +| [AnnotationSelector](./annotationselector/)(System::SharedPtr\) | Initializes new [AnnotationSelector](./) object. | +| [get_Selected](./get_selected/)() const | The list of selected objects. | +| [Visit](./visit/)(System::SharedPtr\) override | Select link annotation if [AnnotationSelector](./) was initialized with [LinkAnnotation](../linkannotation/) object. | +| [Visit](./visit/)(System::SharedPtr\) override | Select attachment annotation if [AnnotationSelector](./) was initialized with [FileAttachmentAnnotation](../fileattachmentannotation/) object. | +| [Visit](./visit/)(System::SharedPtr\) override | Select text annotation if [AnnotationSelector](./) was initialized with [TextAnnotation](../textannotation/) object. | +| [Visit](./visit/)(System::SharedPtr\) | Select redact annotation if [AnnotationSelector](./) was initialized with RedactAnnotation object. | +| [Visit](./visit/)(System::SharedPtr\) override | Select freetext annotation if [AnnotationSelector](./) was initialized with [FreeTextAnnotation](../freetextannotation/) object. | +| [Visit](./visit/)(System::SharedPtr\) override | Select attachment annotation if [AnnotationSelector](./) was initialized with [FreeTextAnnotation](../freetextannotation/) object. | +| [Visit](./visit/)(System::SharedPtr\) override | Select underline annotation if [AnnotationSelector](./) was initialized with [UnderlineAnnotation](../underlineannotation/) object. | +| [Visit](./visit/)(System::SharedPtr\) override | Select strikeOut annotation if [AnnotationSelector](./) was initialized with [StrikeOutAnnotation](../strikeoutannotation/) object. | +| [Visit](./visit/)(System::SharedPtr\) override | Select squiggly annotation if [AnnotationSelector](./) was initialized with [SquigglyAnnotation](../squigglyannotation/) object. | +| [Visit](./visit/)(System::SharedPtr\) override | Select popup annotation if [AnnotationSelector](./) was initialized with [PopupAnnotation](../popupannotation/) object. | +| [Visit](./visit/)(System::SharedPtr\) override | Select line annotation if [AnnotationSelector](./) was initialized with [LineAnnotation](../lineannotation/) object. | +| [Visit](./visit/)(System::SharedPtr\) override | Select circle annotation if [AnnotationSelector](./) was initialized with [CircleAnnotation](../circleannotation/) object. | +| [Visit](./visit/)(System::SharedPtr\) override | Select square annotation if [AnnotationSelector](./) was initialized with [SquareAnnotation](../squareannotation/) object. | +| [Visit](./visit/)(System::SharedPtr\) override | Select ink annotation if [AnnotationSelector](./) was initialized with [InkAnnotation](../inkannotation/) object. | +| [Visit](./visit/)(System::SharedPtr\) override | Select polyline annotation if [AnnotationSelector](./) was initialized with [PolylineAnnotation](../polylineannotation/) object. | +| [Visit](./visit/)(System::SharedPtr\) override | Select polygon annotation if [AnnotationSelector](./) was initialized with [PolygonAnnotation](../polygonannotation/) object. | +| [Visit](./visit/)(System::SharedPtr\) override | Select caret annotation if [AnnotationSelector](./) was initialized with [CaretAnnotation](../caretannotation/) object. | +| [Visit](./visit/)(System::SharedPtr\) override | Select stamp annotation if [AnnotationSelector](./) was initialized with [StampAnnotation](../stampannotation/) object. | +| [Visit](./visit/)(System::SharedPtr\) override | Select widget annotation if [AnnotationSelector](./) was initialized with [WidgetAnnotation](../widgetannotation/) object. | +| [Visit](./visit/)(System::SharedPtr\) | Select watermark annotation if [AnnotationSelector](./) was initialized with [WatermarkAnnotation](../watermarkannotation/) object. | +| [Visit](./visit/)(System::SharedPtr\) override | Select movie annotation if [AnnotationSelector](./) was initialized with [MovieAnnotation](../movieannotation/) object. | +| [Visit](./visit/)(System::SharedPtr\) | Select movie annotation if [AnnotationSelector](./) was initialized with RichMedia annotation object. | +| [Visit](./visit/)(System::SharedPtr\) override | Select screen annotation if [AnnotationSelector](./) was initialized with [ScreenAnnotation](../screenannotation/) object. | +| [Visit](./visit/)(System::SharedPtr\) | Select PDF3D annotation if [AnnotationSelector](./) was initialized with [PDF3DAnnotation](../pdf3dannotation/) object. | +| [Visit](./visit/)(System::SharedPtr\) | Select ColorBar annotation if [AnnotationSelector](./) was initialized with ColorBar object. | +| [Visit](./visit/)(System::SharedPtr\) override | Selects the *trimMark* if the [AnnotationSelector](./) was initialized with a [TrimMarkAnnotation](../trimmarkannotation/) object. | +| [Visit](./visit/)(System::SharedPtr\) override | Selects the *bleedMark* if the [AnnotationSelector](./) was initialized with a [BleedMarkAnnotation](../bleedmarkannotation/) object. | +| [Visit](./visit/)(System::SharedPtr\) override | Selects the *registrationMark* if the [AnnotationSelector](./) was initialized with a [RegistrationMarkAnnotation](../registrationmarkannotation/) object. | +| [Visit](./visit/)(System::SharedPtr\) override | Selects the *pageInformation* if the [AnnotationSelector](./) was initialized with a [PageInformationAnnotation](../pageinformationannotation/) object. | +## See Also + +* Class [IAnnotationVisitor](../iannotationvisitor/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationselector/annotationselector/_index.md b/english/cpp/aspose.pdf.annotations/annotationselector/annotationselector/_index.md new file mode 100644 index 0000000000..6164fe88ab --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationselector/annotationselector/_index.md @@ -0,0 +1,56 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationSelector::AnnotationSelector constructor +linktitle: AnnotationSelector +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationSelector::AnnotationSelector constructor. Initializes new instance of the AnnotationSelector class in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/annotationselector/annotationselector/ +--- +## AnnotationSelector::AnnotationSelector() constructor + + +Initializes new instance of the [AnnotationSelector](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::AnnotationSelector::AnnotationSelector() +``` + +## See Also + +* Class [AnnotationSelector](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## AnnotationSelector::AnnotationSelector(System::SharedPtr\) constructor + + +Initializes new [AnnotationSelector](../) object. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::AnnotationSelector::AnnotationSelector(System::SharedPtr annotation) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| annotation | System::SharedPtr\ | [Annotation](../../annotation/) to be selected. This object only describes some characteristics we want found annotations to have, e.g. the type of annotation. | +## Remarks + + + + + + annotation + + + + Annotation to be selected. This object only describes some characteristics we want found annotations to have, e.g. the type of annotation. + + + +## See Also + +* Class [Annotation](../../annotation/) +* Class [AnnotationSelector](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationselector/get_selected/_index.md b/english/cpp/aspose.pdf.annotations/annotationselector/get_selected/_index.md new file mode 100644 index 0000000000..5353ce7aba --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationselector/get_selected/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationSelector::get_Selected method +linktitle: get_Selected +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationSelector::get_Selected method. The list of selected objects in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/annotationselector/get_selected/ +--- +## AnnotationSelector::get_Selected method + + +The list of selected objects. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr>> Aspose::Pdf::Annotations::AnnotationSelector::get_Selected() const +``` + +## See Also + +* Class [Annotation](../../annotation/) +* Class [AnnotationSelector](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationselector/visit/_index.md b/english/cpp/aspose.pdf.annotations/annotationselector/visit/_index.md new file mode 100644 index 0000000000..ed3dc90b21 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationselector/visit/_index.md @@ -0,0 +1,960 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationSelector::Visit method +linktitle: Visit +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationSelector::Visit method. Select link annotation if AnnotationSelector was initialized with LinkAnnotation object in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/annotationselector/visit/ +--- +## AnnotationSelector::Visit(System::SharedPtr\) method + + +Select link annotation if [AnnotationSelector](../) was initialized with [LinkAnnotation](../../linkannotation/) object. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationSelector::Visit(System::SharedPtr link) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| link | System::SharedPtr\ | [LinkAnnotation](../../linkannotation/) object for selecting. | +## Remarks + + + + + + link + + + + LinkAnnotation object for selecting. + + + +## See Also + +* Class [LinkAnnotation](../../linkannotation/) +* Class [AnnotationSelector](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## AnnotationSelector::Visit(System::SharedPtr\) method + + +Select attachment annotation if [AnnotationSelector](../) was initialized with [FileAttachmentAnnotation](../../fileattachmentannotation/) object. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationSelector::Visit(System::SharedPtr attachment) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| attachment | System::SharedPtr\ | [FileAttachmentAnnotation](../../fileattachmentannotation/) object for selecting. | +## Remarks + + + + + + attachment + + + + FileAttachmentAnnotation object for selecting. + + + +## See Also + +* Class [FileAttachmentAnnotation](../../fileattachmentannotation/) +* Class [AnnotationSelector](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## AnnotationSelector::Visit(System::SharedPtr\) method + + +Select text annotation if [AnnotationSelector](../) was initialized with [TextAnnotation](../../textannotation/) object. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationSelector::Visit(System::SharedPtr text) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| text | System::SharedPtr\ | [TextAnnotation](../../textannotation/) object for selecting. | +## Remarks + + + + + + text + + + + TextAnnotation object for selecting. + + + +## See Also + +* Class [TextAnnotation](../../textannotation/) +* Class [AnnotationSelector](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## AnnotationSelector::Visit(System::SharedPtr\) method + + +Select redact annotation if [AnnotationSelector](../) was initialized with RedactAnnotation object. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationSelector::Visit(System::SharedPtr redact) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| redact | System::SharedPtr\ | RedactAnnotation object for selecting. | +## Remarks + + + + + + redact + + + RedactAnnotation object for selecting. + + + +## See Also + +* Class [RedactionAnnotation](../../redactionannotation/) +* Class [AnnotationSelector](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## AnnotationSelector::Visit(System::SharedPtr\) method + + +Select freetext annotation if [AnnotationSelector](../) was initialized with [FreeTextAnnotation](../../freetextannotation/) object. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationSelector::Visit(System::SharedPtr freetext) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| freetext | System::SharedPtr\ | [FreeTextAnnotation](../../freetextannotation/) object for selecting. | +## Remarks + + + + + + freetext + + + + FreeTextAnnotation object for selecting. + + + +## See Also + +* Class [FreeTextAnnotation](../../freetextannotation/) +* Class [AnnotationSelector](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## AnnotationSelector::Visit(System::SharedPtr\) method + + +Select attachment annotation if [AnnotationSelector](../) was initialized with [FreeTextAnnotation](../../freetextannotation/) object. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationSelector::Visit(System::SharedPtr highlight) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| highlight | System::SharedPtr\ | [HighlightAnnotation](../../highlightannotation/) object for selecting. | +## Remarks + + + + + + highlight + + + + HighlightAnnotation object for selecting. + + + +## See Also + +* Class [HighlightAnnotation](../../highlightannotation/) +* Class [AnnotationSelector](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## AnnotationSelector::Visit(System::SharedPtr\) method + + +Select underline annotation if [AnnotationSelector](../) was initialized with [UnderlineAnnotation](../../underlineannotation/) object. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationSelector::Visit(System::SharedPtr underline) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| underline | System::SharedPtr\ | [UnderlineAnnotation](../../underlineannotation/) object for selecting. | +## Remarks + + + + + + underline + + + + UnderlineAnnotation object for selecting. + + + +## See Also + +* Class [UnderlineAnnotation](../../underlineannotation/) +* Class [AnnotationSelector](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## AnnotationSelector::Visit(System::SharedPtr\) method + + +Select strikeOut annotation if [AnnotationSelector](../) was initialized with [StrikeOutAnnotation](../../strikeoutannotation/) object. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationSelector::Visit(System::SharedPtr strikeOut) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| strikeOut | System::SharedPtr\ | [StrikeOutAnnotation](../../strikeoutannotation/) object for selecting. | +## Remarks + + + + + + strikeOut + + + + StrikeOutAnnotation object for selecting. + + + +## See Also + +* Class [StrikeOutAnnotation](../../strikeoutannotation/) +* Class [AnnotationSelector](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## AnnotationSelector::Visit(System::SharedPtr\) method + + +Select squiggly annotation if [AnnotationSelector](../) was initialized with [SquigglyAnnotation](../../squigglyannotation/) object. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationSelector::Visit(System::SharedPtr squiggly) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| squiggly | System::SharedPtr\ | [SquigglyAnnotation](../../squigglyannotation/) object for selecting. | +## Remarks + + + + + + squiggly + + + + SquigglyAnnotation object for selecting. + + + +## See Also + +* Class [SquigglyAnnotation](../../squigglyannotation/) +* Class [AnnotationSelector](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## AnnotationSelector::Visit(System::SharedPtr\) method + + +Select popup annotation if [AnnotationSelector](../) was initialized with [PopupAnnotation](../../popupannotation/) object. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationSelector::Visit(System::SharedPtr popup) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| popup | System::SharedPtr\ | [PopupAnnotation](../../popupannotation/) object for selecting. | +## Remarks + + + + + + popup + + + + PopupAnnotation object for selecting. + + + +## See Also + +* Class [PopupAnnotation](../../popupannotation/) +* Class [AnnotationSelector](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## AnnotationSelector::Visit(System::SharedPtr\) method + + +Select line annotation if [AnnotationSelector](../) was initialized with [LineAnnotation](../../lineannotation/) object. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationSelector::Visit(System::SharedPtr line) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| line | System::SharedPtr\ | [LineAnnotation](../../lineannotation/) object for selecting. | +## Remarks + + + + + + line + + + + LineAnnotation object for selecting. + + + +## See Also + +* Class [LineAnnotation](../../lineannotation/) +* Class [AnnotationSelector](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## AnnotationSelector::Visit(System::SharedPtr\) method + + +Select circle annotation if [AnnotationSelector](../) was initialized with [CircleAnnotation](../../circleannotation/) object. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationSelector::Visit(System::SharedPtr circle) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| circle | System::SharedPtr\ | [CircleAnnotation](../../circleannotation/) object for selecting. | +## Remarks + + + + + + circle + + + + CircleAnnotation object for selecting. + + + +## See Also + +* Class [CircleAnnotation](../../circleannotation/) +* Class [AnnotationSelector](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## AnnotationSelector::Visit(System::SharedPtr\) method + + +Select square annotation if [AnnotationSelector](../) was initialized with [SquareAnnotation](../../squareannotation/) object. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationSelector::Visit(System::SharedPtr square) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| square | System::SharedPtr\ | [SquareAnnotation](../../squareannotation/) object for selecting. | +## Remarks + + + + + + square + + + + SquareAnnotation object for selecting. + + + +## See Also + +* Class [SquareAnnotation](../../squareannotation/) +* Class [AnnotationSelector](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## AnnotationSelector::Visit(System::SharedPtr\) method + + +Select ink annotation if [AnnotationSelector](../) was initialized with [InkAnnotation](../../inkannotation/) object. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationSelector::Visit(System::SharedPtr ink) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| ink | System::SharedPtr\ | [InkAnnotation](../../inkannotation/) object for selecting. | +## Remarks + + + + + + ink + + + + InkAnnotation object for selecting. + + + +## See Also + +* Class [InkAnnotation](../../inkannotation/) +* Class [AnnotationSelector](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## AnnotationSelector::Visit(System::SharedPtr\) method + + +Select polyline annotation if [AnnotationSelector](../) was initialized with [PolylineAnnotation](../../polylineannotation/) object. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationSelector::Visit(System::SharedPtr polyline) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| polyline | System::SharedPtr\ | [PolylineAnnotation](../../polylineannotation/) object for selecting. | +## Remarks + + + + + + polyline + + + + PolylineAnnotation object for selecting. + + + +## See Also + +* Class [PolylineAnnotation](../../polylineannotation/) +* Class [AnnotationSelector](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## AnnotationSelector::Visit(System::SharedPtr\) method + + +Select polygon annotation if [AnnotationSelector](../) was initialized with [PolygonAnnotation](../../polygonannotation/) object. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationSelector::Visit(System::SharedPtr polygon) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| polygon | System::SharedPtr\ | [PolygonAnnotation](../../polygonannotation/) object for selecting. | +## Remarks + + + + + + polygon + + + + PolygonAnnotation object for selecting. + + + +## See Also + +* Class [PolygonAnnotation](../../polygonannotation/) +* Class [AnnotationSelector](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## AnnotationSelector::Visit(System::SharedPtr\) method + + +Select caret annotation if [AnnotationSelector](../) was initialized with [CaretAnnotation](../../caretannotation/) object. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationSelector::Visit(System::SharedPtr caret) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| caret | System::SharedPtr\ | [CaretAnnotation](../../caretannotation/) object for selecting. | +## Remarks + + + + + + caret + + + + CaretAnnotation object for selecting. + + + +## See Also + +* Class [CaretAnnotation](../../caretannotation/) +* Class [AnnotationSelector](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## AnnotationSelector::Visit(System::SharedPtr\) method + + +Select stamp annotation if [AnnotationSelector](../) was initialized with [StampAnnotation](../../stampannotation/) object. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationSelector::Visit(System::SharedPtr stamp) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| stamp | System::SharedPtr\ | [StampAnnotation](../../stampannotation/) object for selecting. | +## Remarks + + + + + + stamp + + + + StampAnnotation object for selecting. + + + +## See Also + +* Class [StampAnnotation](../../stampannotation/) +* Class [AnnotationSelector](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## AnnotationSelector::Visit(System::SharedPtr\) method + + +Select widget annotation if [AnnotationSelector](../) was initialized with [WidgetAnnotation](../../widgetannotation/) object. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationSelector::Visit(System::SharedPtr widget) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| widget | System::SharedPtr\ | [WidgetAnnotation](../../widgetannotation/) object for selecting. | +## Remarks + + + + + + widget + + + + WidgetAnnotation object for selecting. + + + +## See Also + +* Class [WidgetAnnotation](../../widgetannotation/) +* Class [AnnotationSelector](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## AnnotationSelector::Visit(System::SharedPtr\) method + + +Select watermark annotation if [AnnotationSelector](../) was initialized with [WatermarkAnnotation](../../watermarkannotation/) object. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationSelector::Visit(System::SharedPtr watermark) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| watermark | System::SharedPtr\ | [WatermarkAnnotation](../../watermarkannotation/) for selecting. | +## Remarks + + + + + + watermark + + + + WatermarkAnnotation for selecting. + + + +## See Also + +* Class [WatermarkAnnotation](../../watermarkannotation/) +* Class [AnnotationSelector](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## AnnotationSelector::Visit(System::SharedPtr\) method + + +Select movie annotation if [AnnotationSelector](../) was initialized with [MovieAnnotation](../../movieannotation/) object. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationSelector::Visit(System::SharedPtr movie) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| movie | System::SharedPtr\ | [MovieAnnotation](../../movieannotation/) object for selecting. | +## Remarks + + + + + + movie + + + + MovieAnnotation object for selecting. + + + +## See Also + +* Class [MovieAnnotation](../../movieannotation/) +* Class [AnnotationSelector](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## AnnotationSelector::Visit(System::SharedPtr\) method + + +Select movie annotation if [AnnotationSelector](../) was initialized with RichMedia annotation object. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationSelector::Visit(System::SharedPtr richMedia) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| richMedia | System::SharedPtr\ | RichMedia annotation. | +## Remarks + + + + + + richMedia + + + RichMedia annotation. + + + +## See Also + +* Class [RichMediaAnnotation](../../richmediaannotation/) +* Class [AnnotationSelector](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## AnnotationSelector::Visit(System::SharedPtr\) method + + +Select screen annotation if [AnnotationSelector](../) was initialized with [ScreenAnnotation](../../screenannotation/) object. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationSelector::Visit(System::SharedPtr screen) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| screen | System::SharedPtr\ | [ScreenAnnotation](../../screenannotation/) object for selecting. | +## Remarks + + + + + + screen + + + + ScreenAnnotation object for selecting. + + + +## See Also + +* Class [ScreenAnnotation](../../screenannotation/) +* Class [AnnotationSelector](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## AnnotationSelector::Visit(System::SharedPtr\) method + + +Select PDF3D annotation if [AnnotationSelector](../) was initialized with [PDF3DAnnotation](../../pdf3dannotation/) object. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationSelector::Visit(System::SharedPtr pdf3D) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pdf3D | System::SharedPtr\ | [PDF3DAnnotation](../../pdf3dannotation/) object for selecting. | +## Remarks + + + + + + pdf3D + + + + PDF3DAnnotation object for selecting. + + + +## See Also + +* Class [PDF3DAnnotation](../../pdf3dannotation/) +* Class [AnnotationSelector](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## AnnotationSelector::Visit(System::SharedPtr\) method + + +Select ColorBar annotation if [AnnotationSelector](../) was initialized with ColorBar object. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationSelector::Visit(System::SharedPtr colorBar) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| colorBar | System::SharedPtr\ | [PDF3DAnnotation](../../pdf3dannotation/) object for selecting. | +## Remarks + + + + + + colorBar + + + + PDF3DAnnotation object for selecting. + + + +## See Also + +* Class [ColorBarAnnotation](../../colorbarannotation/) +* Class [AnnotationSelector](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## AnnotationSelector::Visit(System::SharedPtr\) method + + +Selects the *trimMark* if the [AnnotationSelector](../) was initialized with a [TrimMarkAnnotation](../../trimmarkannotation/) object. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationSelector::Visit(System::SharedPtr trimMark) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| trimMark | System::SharedPtr\ | The [TrimMarkAnnotation](../../trimmarkannotation/) object for selection. | +## Remarks + + + + + + trimMark + + + The TrimMarkAnnotation object for selection. + + + +## See Also + +* Class [TrimMarkAnnotation](../../trimmarkannotation/) +* Class [AnnotationSelector](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## AnnotationSelector::Visit(System::SharedPtr\) method + + +Selects the *bleedMark* if the [AnnotationSelector](../) was initialized with a [BleedMarkAnnotation](../../bleedmarkannotation/) object. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationSelector::Visit(System::SharedPtr bleedMark) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| bleedMark | System::SharedPtr\ | The [BleedMarkAnnotation](../../bleedmarkannotation/) object for selection. | +## Remarks + + + + + + bleedMark + + + The BleedMarkAnnotation object for selection. + + + +## See Also + +* Class [BleedMarkAnnotation](../../bleedmarkannotation/) +* Class [AnnotationSelector](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## AnnotationSelector::Visit(System::SharedPtr\) method + + +Selects the *registrationMark* if the [AnnotationSelector](../) was initialized with a [RegistrationMarkAnnotation](../../registrationmarkannotation/) object. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationSelector::Visit(System::SharedPtr registrationMark) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| registrationMark | System::SharedPtr\ | The [RegistrationMarkAnnotation](../../registrationmarkannotation/) object for selection. | +## Remarks + + + + + + registrationMark + + + The RegistrationMarkAnnotation object for selection. + + + +## See Also + +* Class [RegistrationMarkAnnotation](../../registrationmarkannotation/) +* Class [AnnotationSelector](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## AnnotationSelector::Visit(System::SharedPtr\) method + + +Selects the *pageInformation* if the [AnnotationSelector](../) was initialized with a [PageInformationAnnotation](../../pageinformationannotation/) object. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AnnotationSelector::Visit(System::SharedPtr pageInformation) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageInformation | System::SharedPtr\ | The [PageInformationAnnotation](../../pageinformationannotation/) object for selection. | +## Remarks + + + + + + pageInformation + + + The PageInformationAnnotation object for selection. + + + +## See Also + +* Class [PageInformationAnnotation](../../pageinformationannotation/) +* Class [AnnotationSelector](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationstate/_index.md b/english/cpp/aspose.pdf.annotations/annotationstate/_index.md new file mode 100644 index 0000000000..014a36445a --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationstate/_index.md @@ -0,0 +1,35 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationState enum +linktitle: AnnotationState +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationState enum. The enumeration of states to which the original annotation can be set in C++.' +type: docs +weight: 12200 +url: /cpp/aspose.pdf.annotations/annotationstate/ +--- +## AnnotationState enum + + +The enumeration of states to which the original annotation can be set. + +```cpp +enum class AnnotationState +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Undefined | 0 | Not defined state. | +| Marked | 1 | The annotation has been marked by the user. | +| Unmarked | 2 | The annotation has not been marked by the user. | +| Accepted | 3 | The user agrees with the change. | +| Rejected | 4 | The user disagrees with the change. | +| Cancelled | 5 | The change has been cancelled. | +| Completed | 6 | The change has been completed. | +| None | 7 | The user has indicated nothing about the change. | + +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationstateconverter/_index.md b/english/cpp/aspose.pdf.annotations/annotationstateconverter/_index.md new file mode 100644 index 0000000000..360970a47c --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationstateconverter/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationStateConverter class +linktitle: AnnotationStateConverter +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Annotations::AnnotationStateConverter class in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.annotations/annotationstateconverter/ +--- +## AnnotationStateConverter class + + + + +```cpp +class AnnotationStateConverter : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [ToEnum](./toenum/)(System::String) | | +| static [ToString](./tostring/)(AnnotationState) | | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationstateconverter/toenum/_index.md b/english/cpp/aspose.pdf.annotations/annotationstateconverter/toenum/_index.md new file mode 100644 index 0000000000..c2e22a4afa --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationstateconverter/toenum/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationStateConverter::ToEnum method +linktitle: ToEnum +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToEnum method of Aspose::Pdf::Annotations::AnnotationStateConverter class in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/annotationstateconverter/toenum/ +--- +## AnnotationStateConverter::ToEnum method + + + + +```cpp +static ASPOSE_PDF_SHARED_API AnnotationState Aspose::Pdf::Annotations::AnnotationStateConverter::ToEnum(System::String value) +``` + +## See Also + +* Enum [AnnotationState](../../annotationstate/) +* Class [AnnotationStateConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationstateconverter/tostring/_index.md b/english/cpp/aspose.pdf.annotations/annotationstateconverter/tostring/_index.md new file mode 100644 index 0000000000..3b0895e49d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationstateconverter/tostring/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationStateConverter::ToString method +linktitle: ToString +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToString method of Aspose::Pdf::Annotations::AnnotationStateConverter class in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/annotationstateconverter/tostring/ +--- +## AnnotationStateConverter::ToString method + + + + +```cpp +static ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::AnnotationStateConverter::ToString(AnnotationState value) +``` + +## See Also + +* Enum [AnnotationState](../../annotationstate/) +* Class [AnnotationStateConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationstatemodel/_index.md b/english/cpp/aspose.pdf.annotations/annotationstatemodel/_index.md new file mode 100644 index 0000000000..f829083a46 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationstatemodel/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationStateModel enum +linktitle: AnnotationStateModel +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationStateModel enum. The state model corresponding to state of annotation in C++.' +type: docs +weight: 12300 +url: /cpp/aspose.pdf.annotations/annotationstatemodel/ +--- +## AnnotationStateModel enum + + +The state model corresponding to state of annotation. + +```cpp +enum class AnnotationStateModel +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Undefined | 0 | Not defined state model. | +| Marked | 1 | The annotation has been marked (or unmarked) by the user. | +| Review | 2 | The annotation has been reviewed (accepted, rejected, cancelled, completed, none) by the user. | + +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationstatemodelconverter/_index.md b/english/cpp/aspose.pdf.annotations/annotationstatemodelconverter/_index.md new file mode 100644 index 0000000000..6d9f6fd8a5 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationstatemodelconverter/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationStateModelConverter class +linktitle: AnnotationStateModelConverter +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Annotations::AnnotationStateModelConverter class in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.annotations/annotationstatemodelconverter/ +--- +## AnnotationStateModelConverter class + + + + +```cpp +class AnnotationStateModelConverter : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [ToEnum](./toenum/)(System::String) | | +| static [ToString](./tostring/)(AnnotationStateModel) | | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationstatemodelconverter/toenum/_index.md b/english/cpp/aspose.pdf.annotations/annotationstatemodelconverter/toenum/_index.md new file mode 100644 index 0000000000..45ff48c0f5 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationstatemodelconverter/toenum/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationStateModelConverter::ToEnum method +linktitle: ToEnum +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToEnum method of Aspose::Pdf::Annotations::AnnotationStateModelConverter class in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/annotationstatemodelconverter/toenum/ +--- +## AnnotationStateModelConverter::ToEnum method + + + + +```cpp +static ASPOSE_PDF_SHARED_API AnnotationStateModel Aspose::Pdf::Annotations::AnnotationStateModelConverter::ToEnum(System::String value) +``` + +## See Also + +* Enum [AnnotationStateModel](../../annotationstatemodel/) +* Class [AnnotationStateModelConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationstatemodelconverter/tostring/_index.md b/english/cpp/aspose.pdf.annotations/annotationstatemodelconverter/tostring/_index.md new file mode 100644 index 0000000000..e77bbdcc78 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationstatemodelconverter/tostring/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationStateModelConverter::ToString method +linktitle: ToString +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToString method of Aspose::Pdf::Annotations::AnnotationStateModelConverter class in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/annotationstatemodelconverter/tostring/ +--- +## AnnotationStateModelConverter::ToString method + + + + +```cpp +static ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::AnnotationStateModelConverter::ToString(AnnotationStateModel value) +``` + +## See Also + +* Enum [AnnotationStateModel](../../annotationstatemodel/) +* Class [AnnotationStateModelConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/annotationtype/_index.md b/english/cpp/aspose.pdf.annotations/annotationtype/_index.md new file mode 100644 index 0000000000..fe42252d90 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/annotationtype/_index.md @@ -0,0 +1,60 @@ +--- +title: Aspose::Pdf::Annotations::AnnotationType enum +linktitle: AnnotationType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AnnotationType enum. Enumeration of annotation types in C++.' +type: docs +weight: 12400 +url: /cpp/aspose.pdf.annotations/annotationtype/ +--- +## AnnotationType enum + + +Enumeration of annotation types. + +```cpp +enum class AnnotationType +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Text | 0 | [Text](../../aspose.pdf.text/) annotation type. | +| Circle | 1 | Circle annotation type. | +| Polygon | 2 | Polygon annotation type. | +| PolyLine | 3 | Plyline annotation type. | +| Line | 4 | Line annotation type. | +| Square | 5 | Square annotatotion type. | +| FreeText | 6 | Free text annotation type. | +| Highlight | 7 | Highlight annotation type. | +| Underline | 8 | Underline annotation type. | +| Squiggly | 9 | Squiggle annotation type. | +| StrikeOut | 10 | Strikeout annotation type. | +| Caret | 11 | Caret annotation type. | +| Ink | 12 | Ink annotation type. | +| Link | 13 | Link annotation type. | +| Popup | 14 | Popup annotation type. | +| FileAttachment | 15 | File attachment annotation type. | +| Sound | 16 | Sound annotation type. | +| Movie | 17 | Movie annotation type. | +| Screen | 18 | Screen annotation type. | +| Widget | 19 | Widget annotation type. | +| Watermark | 20 | [Watermark](../../aspose.pdf/watermark/) annotation type. | +| TrapNet | 21 | Trap network annotation type. | +| PrinterMark | 22 | Printer mark annotation type. | +| Redaction | 23 | Redaction annotation type. | +| Stamp | 24 | Rubber stamp annotation type. | +| RichMedia | 25 | Rich media annotation type. | +| Unknown | 26 | Unknown annotation. | +| PDF3D | 27 | 3D annotation. | +| ColorBar | 28 | ColorBar annotation. | +| TrimMark | 29 | Trim mark annotation. | +| BleedMark | 30 | Bleed mark annotation. | +| RegistrationMark | 31 | Registration mark annotation. | +| PageInformation | 32 | [Page](../../aspose.pdf/page/) information annotation. | + +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/appearancedictionary/_index.md b/english/cpp/aspose.pdf.annotations/appearancedictionary/_index.md new file mode 100644 index 0000000000..f6b46d58dd --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/appearancedictionary/_index.md @@ -0,0 +1,46 @@ +--- +title: Aspose::Pdf::Annotations::AppearanceDictionary class +linktitle: AppearanceDictionary +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AppearanceDictionary class. Annotation appearance dictionary specifying how the annotation shall be presented visually on the page in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.annotations/appearancedictionary/ +--- +## AppearanceDictionary class + + +[Annotation](../annotation/) appearance dictionary specifying how the annotation shall be presented visually on the page. + +```cpp +class AppearanceDictionary : public System::Collections::Generic::IDictionary> +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Add](./add/)(const System::String\&, const System::SharedPtr\\&) override | Add X form for specifed key. | +| [Add](./add/)(const System::Collections::Generic::KeyValuePair\\>\&) override | Adds pair with key and value into the dictionary. | +| [Clear](./clear/)() override | Removes all elements from the dictionary. | +| [Contains](./contains/)(const System::Collections::Generic::KeyValuePair\\>\&) const override | Checks does specified key-value pair is contained in the dictionary. | +| [ContainsKey](./containskey/)(const System::String\&) const override | Determines does this dictionary contasins specified key. | +| [CopyTo](./copyto/)(System::ArrayPtr\\>, int32_t) | Copies the elements of the dictionary to an Array, starting at a particular Array index. | +| [CopyTo](./copyto/)(System::ArrayPtr\\>\>, int32_t) override | Copies the elements of the ICollection to an Array, starting at a particular Array index. | +| [get_Count](./get_count/)() const override | Gets the number of elements contained in the dictionary. | +| [get_IsFixedSize](./get_isfixedsize/)() const | Gets a value indicating whether dictionary has a fixed size. | +| [get_IsReadOnly](./get_isreadonly/)() const override | Gets a value indicating whether dictionary is read-only. | +| [get_IsSynchronized](./get_issynchronized/)() | Gets a value indicating whether access to the dictionary is synchronized (thread safe). | +| [get_Keys](./get_keys/)() const override | Gets keys of the dictionary. If appearance dictionary has subditionaries, then [Keys](../) contains (N|R|D).state values, where N - normal appearance, R - rollover appearance, D - down appearance and state - the name of the state (e.g. On, Off for checkboxes). | +| [get_SyncRoot](./get_syncroot/)() const | Gets an object that can be used to synchronize access to the dictionary. | +| [get_Values](./get_values/)() const override | Gets the list of the dictionary values. Result collection contains the list of [XForm](../../aspose.pdf/xform/) objects. | +| [GetEnumerator](./getenumerator/)() override | Returns an IDictionaryEnumerator object for the dictionary. | +| [idx_get](./idx_get/)(const System::String\&) const override | Represents convenient form for getting appearance streams. | +| [idx_set](./idx_set/)(const System::String\&, System::SharedPtr\) override | Represents convenient form for getting appearance streams. | +| [Remove](./remove/)(const System::String\&) override | Removes key from the dictionary. | +| [Remove](./remove/)(const System::Collections::Generic::KeyValuePair\\>\&) override | Removes key/value pair from the collection. | +| [TryGetValue](./trygetvalue/)(const System::String\&, System::SharedPtr\\&) const override | Tries to find key in the dictionary and retreives value if found. | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/appearancedictionary/add/_index.md b/english/cpp/aspose.pdf.annotations/appearancedictionary/add/_index.md new file mode 100644 index 0000000000..45315edf65 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/appearancedictionary/add/_index.md @@ -0,0 +1,83 @@ +--- +title: Aspose::Pdf::Annotations::AppearanceDictionary::Add method +linktitle: Add +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AppearanceDictionary::Add method. Add X form for specifed key in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.annotations/appearancedictionary/add/ +--- +## AppearanceDictionary::Add(const System::String\&, const System::SharedPtr\\&) method + + +Add X form for specifed key. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AppearanceDictionary::Add(const System::String &key, const System::SharedPtr &value) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| key | const System::String\& | Element key. | +| value | const System::SharedPtr\\& | [XForm](../../../aspose.pdf/xform/) object value. | +## Remarks + + + + + + key + + + Element key. + + + + + value + + + + XForm object value. + + + +## See Also + +* Class [XForm](../../../aspose.pdf/xform/) +* Class [AppearanceDictionary](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## AppearanceDictionary::Add(const System::Collections::Generic::KeyValuePair\\>\&) method + + +Adds pair with key and value into the dictionary. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AppearanceDictionary::Add(const System::Collections::Generic::KeyValuePair> &item) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| item | const System::Collections::Generic::KeyValuePair\\>\& | Item to be added. | +## Remarks + + + + + + item + + + Item to be added. + + + +## See Also + +* Class [XForm](../../../aspose.pdf/xform/) +* Class [AppearanceDictionary](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/appearancedictionary/clear/_index.md b/english/cpp/aspose.pdf.annotations/appearancedictionary/clear/_index.md new file mode 100644 index 0000000000..e5b783f67f --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/appearancedictionary/clear/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::AppearanceDictionary::Clear method +linktitle: Clear +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AppearanceDictionary::Clear method. Removes all elements from the dictionary in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.annotations/appearancedictionary/clear/ +--- +## AppearanceDictionary::Clear method + + +Removes all elements from the dictionary. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AppearanceDictionary::Clear() override +``` + +## See Also + +* Class [AppearanceDictionary](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/appearancedictionary/contains/_index.md b/english/cpp/aspose.pdf.annotations/appearancedictionary/contains/_index.md new file mode 100644 index 0000000000..048058424b --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/appearancedictionary/contains/_index.md @@ -0,0 +1,45 @@ +--- +title: Aspose::Pdf::Annotations::AppearanceDictionary::Contains method +linktitle: Contains +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AppearanceDictionary::Contains method. Checks does specified key-value pair is contained in the dictionary in C++.' +type: docs +weight: 1700 +url: /cpp/aspose.pdf.annotations/appearancedictionary/contains/ +--- +## AppearanceDictionary::Contains method + + +Checks does specified key-value pair is contained in the dictionary. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Annotations::AppearanceDictionary::Contains(const System::Collections::Generic::KeyValuePair> &item) const override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| item | const System::Collections::Generic::KeyValuePair\\>\& | Key-value pair. | + +### ReturnValue + +true if this pauir was found. +## Remarks + + + + + + item + + + Key-value pair. + + + +## See Also + +* Class [XForm](../../../aspose.pdf/xform/) +* Class [AppearanceDictionary](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/appearancedictionary/containskey/_index.md b/english/cpp/aspose.pdf.annotations/appearancedictionary/containskey/_index.md new file mode 100644 index 0000000000..dab5e581b1 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/appearancedictionary/containskey/_index.md @@ -0,0 +1,44 @@ +--- +title: Aspose::Pdf::Annotations::AppearanceDictionary::ContainsKey method +linktitle: ContainsKey +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AppearanceDictionary::ContainsKey method. Determines does this dictionary contasins specified key in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.annotations/appearancedictionary/containskey/ +--- +## AppearanceDictionary::ContainsKey method + + +Determines does this dictionary contasins specified key. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Annotations::AppearanceDictionary::ContainsKey(const System::String &key) const override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| key | const System::String\& | Key to search in the dictionary. | + +### ReturnValue + +true if key is found. +## Remarks + + + + + + key + + + Key to search in the dictionary. + + + +## See Also + +* Class [AppearanceDictionary](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/appearancedictionary/copyto/_index.md b/english/cpp/aspose.pdf.annotations/appearancedictionary/copyto/_index.md new file mode 100644 index 0000000000..e943db277d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/appearancedictionary/copyto/_index.md @@ -0,0 +1,91 @@ +--- +title: Aspose::Pdf::Annotations::AppearanceDictionary::CopyTo method +linktitle: CopyTo +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AppearanceDictionary::CopyTo method. Copies the elements of the dictionary to an Array, starting at a particular Array index in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.annotations/appearancedictionary/copyto/ +--- +## AppearanceDictionary::CopyTo(System::ArrayPtr\\>, int32_t) method + + +Copies the elements of the dictionary to an Array, starting at a particular Array index. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AppearanceDictionary::CopyTo(System::ArrayPtr> array, int32_t index) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| array | System::ArrayPtr\\> | Array where items must be copied. | +| index | int32_t | Index where items must be copied. | +## Remarks + + + + + + array + + + Array where items must be copied. + + + + + index + + + Index where items must be copied. + + + +## See Also + +* Class [XForm](../../../aspose.pdf/xform/) +* Class [AppearanceDictionary](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## AppearanceDictionary::CopyTo(System::ArrayPtr\\>\>, int32_t) method + + +Copies the elements of the ICollection to an Array, starting at a particular Array index. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AppearanceDictionary::CopyTo(System::ArrayPtr>> array, int32_t arrayIndex) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| array | System::ArrayPtr\\>\> | The one-dimensional Array that is the destination of the elements copied from ICollection. The Array must have zero-based indexing. | +| arrayIndex | int32_t | The zero-based index in array at which copying begins. | +## Remarks + + + + + + array + + + The one-dimensional Array that is the destination of the elements copied from ICollection. The Array must have zero-based indexing. + + + + + arrayIndex + + + The zero-based index in array at which copying begins. + + + +## See Also + +* Class [XForm](../../../aspose.pdf/xform/) +* Class [AppearanceDictionary](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/appearancedictionary/get_count/_index.md b/english/cpp/aspose.pdf.annotations/appearancedictionary/get_count/_index.md new file mode 100644 index 0000000000..b33166941c --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/appearancedictionary/get_count/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::AppearanceDictionary::get_Count method +linktitle: get_Count +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AppearanceDictionary::get_Count method. Gets the number of elements contained in the dictionary in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.annotations/appearancedictionary/get_count/ +--- +## AppearanceDictionary::get_Count method + + +Gets the number of elements contained in the dictionary. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Annotations::AppearanceDictionary::get_Count() const override +``` + +## See Also + +* Class [AppearanceDictionary](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/appearancedictionary/get_isfixedsize/_index.md b/english/cpp/aspose.pdf.annotations/appearancedictionary/get_isfixedsize/_index.md new file mode 100644 index 0000000000..b53fbcdb0a --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/appearancedictionary/get_isfixedsize/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::AppearanceDictionary::get_IsFixedSize method +linktitle: get_IsFixedSize +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AppearanceDictionary::get_IsFixedSize method. Gets a value indicating whether dictionary has a fixed size in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/appearancedictionary/get_isfixedsize/ +--- +## AppearanceDictionary::get_IsFixedSize method + + +Gets a value indicating whether dictionary has a fixed size. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Annotations::AppearanceDictionary::get_IsFixedSize() const +``` + +## See Also + +* Class [AppearanceDictionary](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/appearancedictionary/get_isreadonly/_index.md b/english/cpp/aspose.pdf.annotations/appearancedictionary/get_isreadonly/_index.md new file mode 100644 index 0000000000..b4632dc8dd --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/appearancedictionary/get_isreadonly/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::AppearanceDictionary::get_IsReadOnly method +linktitle: get_IsReadOnly +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AppearanceDictionary::get_IsReadOnly method. Gets a value indicating whether dictionary is read-only in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/appearancedictionary/get_isreadonly/ +--- +## AppearanceDictionary::get_IsReadOnly method + + +Gets a value indicating whether dictionary is read-only. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Annotations::AppearanceDictionary::get_IsReadOnly() const override +``` + +## See Also + +* Class [AppearanceDictionary](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/appearancedictionary/get_issynchronized/_index.md b/english/cpp/aspose.pdf.annotations/appearancedictionary/get_issynchronized/_index.md new file mode 100644 index 0000000000..39e989ad30 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/appearancedictionary/get_issynchronized/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::AppearanceDictionary::get_IsSynchronized method +linktitle: get_IsSynchronized +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AppearanceDictionary::get_IsSynchronized method. Gets a value indicating whether access to the dictionary is synchronized (thread safe) in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/appearancedictionary/get_issynchronized/ +--- +## AppearanceDictionary::get_IsSynchronized method + + +Gets a value indicating whether access to the dictionary is synchronized (thread safe). + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Annotations::AppearanceDictionary::get_IsSynchronized() +``` + +## See Also + +* Class [AppearanceDictionary](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/appearancedictionary/get_keys/_index.md b/english/cpp/aspose.pdf.annotations/appearancedictionary/get_keys/_index.md new file mode 100644 index 0000000000..7943764686 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/appearancedictionary/get_keys/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::AppearanceDictionary::get_Keys method +linktitle: get_Keys +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AppearanceDictionary::get_Keys method. Gets keys of the dictionary. If appearance dictionary has subditionaries, then Keys contains (N|R|D).state values, where N - normal appearance, R - rollover appearance, D - down appearance and state - the name of the state (e.g. On, Off for checkboxes) in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/appearancedictionary/get_keys/ +--- +## AppearanceDictionary::get_Keys method + + +Gets keys of the dictionary. If appearance dictionary has subditionaries, then [Keys](../) contains (N|R|D).state values, where N - normal appearance, R - rollover appearance, D - down appearance and state - the name of the state (e.g. On, Off for checkboxes). + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr> Aspose::Pdf::Annotations::AppearanceDictionary::get_Keys() const override +``` + +## See Also + +* Class [AppearanceDictionary](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/appearancedictionary/get_syncroot/_index.md b/english/cpp/aspose.pdf.annotations/appearancedictionary/get_syncroot/_index.md new file mode 100644 index 0000000000..a6ec05ae67 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/appearancedictionary/get_syncroot/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::AppearanceDictionary::get_SyncRoot method +linktitle: get_SyncRoot +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AppearanceDictionary::get_SyncRoot method. Gets an object that can be used to synchronize access to the dictionary in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/appearancedictionary/get_syncroot/ +--- +## AppearanceDictionary::get_SyncRoot method + + +Gets an object that can be used to synchronize access to the dictionary. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::AppearanceDictionary::get_SyncRoot() const +``` + +## See Also + +* Class [AppearanceDictionary](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/appearancedictionary/get_values/_index.md b/english/cpp/aspose.pdf.annotations/appearancedictionary/get_values/_index.md new file mode 100644 index 0000000000..8f8f230a55 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/appearancedictionary/get_values/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::AppearanceDictionary::get_Values method +linktitle: get_Values +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AppearanceDictionary::get_Values method. Gets the list of the dictionary values. Result collection contains the list of XForm objects in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/appearancedictionary/get_values/ +--- +## AppearanceDictionary::get_Values method + + +Gets the list of the dictionary values. Result collection contains the list of [XForm](../../../aspose.pdf/xform/) objects. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr>> Aspose::Pdf::Annotations::AppearanceDictionary::get_Values() const override +``` + +## See Also + +* Class [XForm](../../../aspose.pdf/xform/) +* Class [AppearanceDictionary](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/appearancedictionary/getenumerator/_index.md b/english/cpp/aspose.pdf.annotations/appearancedictionary/getenumerator/_index.md new file mode 100644 index 0000000000..4d73f7f260 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/appearancedictionary/getenumerator/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Annotations::AppearanceDictionary::GetEnumerator method +linktitle: GetEnumerator +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AppearanceDictionary::GetEnumerator method. Returns an IDictionaryEnumerator object for the dictionary in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.annotations/appearancedictionary/getenumerator/ +--- +## AppearanceDictionary::GetEnumerator method + + +Returns an IDictionaryEnumerator object for the dictionary. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr>>> Aspose::Pdf::Annotations::AppearanceDictionary::GetEnumerator() override +``` + + +### ReturnValue + +Enumerator of the dictionary. + +## See Also + +* Class [XForm](../../../aspose.pdf/xform/) +* Class [AppearanceDictionary](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/appearancedictionary/idx_get/_index.md b/english/cpp/aspose.pdf.annotations/appearancedictionary/idx_get/_index.md new file mode 100644 index 0000000000..72fb93f905 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/appearancedictionary/idx_get/_index.md @@ -0,0 +1,45 @@ +--- +title: Aspose::Pdf::Annotations::AppearanceDictionary::idx_get method +linktitle: idx_get +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AppearanceDictionary::idx_get method. Represents convenient form for getting appearance streams in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.annotations/appearancedictionary/idx_get/ +--- +## AppearanceDictionary::idx_get method + + +Represents convenient form for getting appearance streams. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::AppearanceDictionary::idx_get(const System::String &key) const override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| key | const System::String\& | Represents path to appearance stream. If appearance dictionary has subdictionaries, then path must contain 2 parts ([Keys](../)), else path has only one part. | + +### ReturnValue + +[XForm](../../../aspose.pdf/xform/) object (appearance stream) which corresponds to the given key. +## Remarks + + + + + + key + + + Represents path to appearance stream. If appearance dictionary has subdictionaries, then path must contain 2 parts (Keys), else path has only one part. + + + +## See Also + +* Class [XForm](../../../aspose.pdf/xform/) +* Class [AppearanceDictionary](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/appearancedictionary/idx_set/_index.md b/english/cpp/aspose.pdf.annotations/appearancedictionary/idx_set/_index.md new file mode 100644 index 0000000000..feb12a9884 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/appearancedictionary/idx_set/_index.md @@ -0,0 +1,45 @@ +--- +title: Aspose::Pdf::Annotations::AppearanceDictionary::idx_set method +linktitle: idx_set +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AppearanceDictionary::idx_set method. Represents convenient form for getting appearance streams in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.annotations/appearancedictionary/idx_set/ +--- +## AppearanceDictionary::idx_set method + + +Represents convenient form for getting appearance streams. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::AppearanceDictionary::idx_set(const System::String &key, System::SharedPtr value) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| key | const System::String\& | Represents path to appearance stream. If appearance dictionary has subdictionaries, then path must contain 2 parts ([Keys](../)), else path has only one part. | + +### ReturnValue + +[XForm](../../../aspose.pdf/xform/) object (appearance stream) which corresponds to the given key. +## Remarks + + + + + + key + + + Represents path to appearance stream. If appearance dictionary has subdictionaries, then path must contain 2 parts (Keys), else path has only one part. + + + +## See Also + +* Class [XForm](../../../aspose.pdf/xform/) +* Class [AppearanceDictionary](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/appearancedictionary/remove/_index.md b/english/cpp/aspose.pdf.annotations/appearancedictionary/remove/_index.md new file mode 100644 index 0000000000..3fb52d8624 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/appearancedictionary/remove/_index.md @@ -0,0 +1,80 @@ +--- +title: Aspose::Pdf::Annotations::AppearanceDictionary::Remove method +linktitle: Remove +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AppearanceDictionary::Remove method. Removes key from the dictionary in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.annotations/appearancedictionary/remove/ +--- +## AppearanceDictionary::Remove(const System::String\&) method + + +Removes key from the dictionary. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Annotations::AppearanceDictionary::Remove(const System::String &key) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| key | const System::String\& | Key to be removed from the dictionary. | + +### ReturnValue + +true if key was successfully removed. +## Remarks + + + + + + key + + + Key to be removed from the dictionary. + + + +## See Also + +* Class [AppearanceDictionary](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## AppearanceDictionary::Remove(const System::Collections::Generic::KeyValuePair\\>\&) method + + +Removes key/value pair from the collection. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Annotations::AppearanceDictionary::Remove(const System::Collections::Generic::KeyValuePair> &item) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| item | const System::Collections::Generic::KeyValuePair\\>\& | Key/value pair to be removed. | + +### ReturnValue + +true if pair was found and removed. +## Remarks + + + + + + item + + + Key/value pair to be removed. + + + +## See Also + +* Class [XForm](../../../aspose.pdf/xform/) +* Class [AppearanceDictionary](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/appearancedictionary/trygetvalue/_index.md b/english/cpp/aspose.pdf.annotations/appearancedictionary/trygetvalue/_index.md new file mode 100644 index 0000000000..684874a1e1 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/appearancedictionary/trygetvalue/_index.md @@ -0,0 +1,54 @@ +--- +title: Aspose::Pdf::Annotations::AppearanceDictionary::TryGetValue method +linktitle: TryGetValue +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::AppearanceDictionary::TryGetValue method. Tries to find key in the dictionary and retreives value if found in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf.annotations/appearancedictionary/trygetvalue/ +--- +## AppearanceDictionary::TryGetValue method + + +Tries to find key in the dictionary and retreives value if found. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Annotations::AppearanceDictionary::TryGetValue(const System::String &key, System::SharedPtr &value) const override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| key | const System::String\& | Key to search in the dictionary. | +| value | System::SharedPtr\\& | Retreived value. | + +### ReturnValue + +true if key was found. +## Remarks + + + + + + key + + + Key to search in the dictionary. + + + + + value + + + Retreived value. + + + +## See Also + +* Class [XForm](../../../aspose.pdf/xform/) +* Class [AppearanceDictionary](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/bleedmarkannotation/_index.md b/english/cpp/aspose.pdf.annotations/bleedmarkannotation/_index.md new file mode 100644 index 0000000000..b22da70048 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/bleedmarkannotation/_index.md @@ -0,0 +1,95 @@ +--- +title: Aspose::Pdf::Annotations::BleedMarkAnnotation class +linktitle: BleedMarkAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::BleedMarkAnnotation class. Represents a Bleed Mark annotation in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.annotations/bleedmarkannotation/ +--- +## BleedMarkAnnotation class + + +Represents a Bleed Mark annotation. + +```cpp +class BleedMarkAnnotation : public Aspose::Pdf::Annotations::CornerPrinterMarkAnnotation +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Accept](./accept/)(System::SharedPtr\) override | Accepts visitor for annotation processing. | +| static [AddPrinterMarks](../printermarkannotation/addprintermarks/)(System::SharedPtr\, PrinterMarksKind) | Adds printer's marks to all pages in the specified document. | +| static [AddPrinterMarks](../printermarkannotation/addprintermarks/)(System::SharedPtr\, PrinterMarksKind) | Adds printer's marks to the specified page. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| [BleedMarkAnnotation](./bleedmarkannotation/)(System::SharedPtr\, PrinterMarkCornerPosition) | Initializes a new instance of the [BleedMarkAnnotation](./) class. | +| virtual [ChangeAfterResize](../annotation/changeafterresize/)(System::SharedPtr\) | Update parameters and appearance, according to the matrix transform. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [Flatten](../annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](../annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../annotation/get_alignment/)() | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [get_AnnotationType](./get_annotationtype/)() override | Gets type of annotation. | +| [get_Appearance](../annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../annotation/get_border/)() const | Gets annotation border characteristics. [Border](../border/) | +| [get_Characteristics](../annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../annotation/get_color/)() | Gets annotation color. | +| [get_Contents](../annotation/get_contents/)() | Gets annotation text. | +| [get_Flags](../annotation/get_flags/)() | Flags of the annotation. | +| [get_FullName](../annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../annotation/get_height/)() | Gets height of the annotation. | +| [get_HorizontalAlignment](../annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| [get_Modified](../annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Name](../annotation/get_name/)() | Gets annotation name on the page. | +| virtual [get_PageIndex](../annotation/get_pageindex/)() | Gets index of page which contains annotation. | +| [get_Position](../cornerprintermarkannotation/get_position/)() const | Get or sets the position of the mark on the page. | +| virtual [get_Rect](../annotation/get_rect/)() | Gets annotation rectangle. | +| [get_States](../annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_TextHorizontalAlignment](../annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| static [get_UpdateAppearanceOnConvert](../annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetRectangle](../annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| virtual [set_ActiveState](../annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../annotation/set_alignment/)(TextAlignment) | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_Border](../annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../border/) | +| [set_Color](../annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](../annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_Flags](../annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| virtual [set_Height](../annotation/set_height/)(double) | Sets height of the annotation. | +| [set_HorizontalAlignment](../annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| [set_Modified](../annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Name](../annotation/set_name/)(System::String) | Sets annotation name on the page. | +| [set_Position](../cornerprintermarkannotation/set_position/)(PrinterMarkCornerPosition) | Get or sets the position of the mark on the page. | +| virtual [set_Rect](../annotation/set_rect/)(System::SharedPtr\) | Sets annotation rectangle. | +| [set_TextHorizontalAlignment](../annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| static [set_UpdateAppearanceOnConvert](../annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +## Remarks + + +Bleed marks are placed at the corners of a printed page to indicate where the page is to be trimmed and how far it is allowed to deviate from the trim marks. +## See Also + +* Class [CornerPrinterMarkAnnotation](../cornerprintermarkannotation/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/bleedmarkannotation/accept/_index.md b/english/cpp/aspose.pdf.annotations/bleedmarkannotation/accept/_index.md new file mode 100644 index 0000000000..f66fb9f129 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/bleedmarkannotation/accept/_index.md @@ -0,0 +1,42 @@ +--- +title: Aspose::Pdf::Annotations::BleedMarkAnnotation::Accept method +linktitle: Accept +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::BleedMarkAnnotation::Accept method. Accepts visitor for annotation processing in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/bleedmarkannotation/accept/ +--- +## BleedMarkAnnotation::Accept method + + +Accepts visitor for annotation processing. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::BleedMarkAnnotation::Accept(System::SharedPtr visitor) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| visitor | System::SharedPtr\ | [AnnotationSelector](../../annotationselector/) object. | +## Remarks + + + + + + visitor + + + + AnnotationSelector object. + + + +## See Also + +* Class [AnnotationSelector](../../annotationselector/) +* Class [BleedMarkAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/bleedmarkannotation/bleedmarkannotation/_index.md b/english/cpp/aspose.pdf.annotations/bleedmarkannotation/bleedmarkannotation/_index.md new file mode 100644 index 0000000000..ab6e8bc9d6 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/bleedmarkannotation/bleedmarkannotation/_index.md @@ -0,0 +1,53 @@ +--- +title: Aspose::Pdf::Annotations::BleedMarkAnnotation::BleedMarkAnnotation constructor +linktitle: BleedMarkAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::BleedMarkAnnotation::BleedMarkAnnotation constructor. Initializes a new instance of the BleedMarkAnnotation class in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/bleedmarkannotation/bleedmarkannotation/ +--- +## BleedMarkAnnotation::BleedMarkAnnotation constructor + + +Initializes a new instance of the [BleedMarkAnnotation](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::BleedMarkAnnotation::BleedMarkAnnotation(System::SharedPtr page, PrinterMarkCornerPosition position) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The page where the annotation will be added. | +| position | PrinterMarkCornerPosition | The position of the bleed mark on the page. | +## Remarks + + + + + + page + + + The page where the annotation will be added. + + + + + position + + + The position of the bleed mark on the page. + + + + +This constructor creates a [BleedMarkAnnotation](../) and adds it to the specified page at the specified position. +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Enum [PrinterMarkCornerPosition](../../printermarkcornerposition/) +* Class [BleedMarkAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/bleedmarkannotation/get_annotationtype/_index.md b/english/cpp/aspose.pdf.annotations/bleedmarkannotation/get_annotationtype/_index.md new file mode 100644 index 0000000000..cbffeab5e4 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/bleedmarkannotation/get_annotationtype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::BleedMarkAnnotation::get_AnnotationType method +linktitle: get_AnnotationType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::BleedMarkAnnotation::get_AnnotationType method. Gets type of annotation in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/bleedmarkannotation/get_annotationtype/ +--- +## BleedMarkAnnotation::get_AnnotationType method + + +Gets type of annotation. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::AnnotationType Aspose::Pdf::Annotations::BleedMarkAnnotation::get_AnnotationType() override +``` + +## See Also + +* Enum [AnnotationType](../../annotationtype/) +* Class [BleedMarkAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/border/_index.md b/english/cpp/aspose.pdf.annotations/border/_index.md new file mode 100644 index 0000000000..09f1c5c69e --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/border/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Annotations::Border class +linktitle: Border +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Border class. Class representing characteristics of annotation border in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.annotations/border/ +--- +## Border class + + +Class representing characteristics of annotation border. + +```cpp +class Border : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Border](./border/)(System::SharedPtr\) | Constructor for border object. | +| [get_Dash](./get_dash/)() const | Gets dash pattern. | +| [get_Effect](./get_effect/)() const | Gets border effect. | +| [get_EffectIntensity](./get_effectintensity/)() const | Gets effect intencity. Valid range of value is [0..2]. | +| [get_HCornerRadius](./get_hcornerradius/)() | Gets horizontal corner radius. | +| [get_Style](./get_style/)() | Gets border style. | +| [get_VCornerRadius](./get_vcornerradius/)() | Gets vertical corner radius. | +| [get_Width](./get_width/)() | Gets border width. | +| [set_Dash](./set_dash/)(System::SharedPtr\) | Sets dash pattern. | +| [set_Effect](./set_effect/)(BorderEffect) | Sets border effect. | +| [set_EffectIntensity](./set_effectintensity/)(int32_t) | Sets effect intencity. Valid range of value is [0..2]. | +| [set_HCornerRadius](./set_hcornerradius/)(double) | Sets horizontal corner radius. | +| [set_Style](./set_style/)(BorderStyle) | Sets border style. | +| [set_VCornerRadius](./set_vcornerradius/)(double) | Sets vertical corner radius. | +| [set_Width](./set_width/)(int32_t) | Sets border width. | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/border/border/_index.md b/english/cpp/aspose.pdf.annotations/border/border/_index.md new file mode 100644 index 0000000000..e55ea81484 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/border/border/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Annotations::Border::Border constructor +linktitle: Border +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Border::Border constructor. Constructor for border object in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.annotations/border/border/ +--- +## Border::Border constructor + + +Constructor for border object. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::Border::Border(System::SharedPtr parent) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| parent | System::SharedPtr\ | Parent annotation. | +## Remarks + + + + + + parent + + + Parent annotation. + + + +## See Also + +* Class [Annotation](../../annotation/) +* Class [Border](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/border/get_dash/_index.md b/english/cpp/aspose.pdf.annotations/border/get_dash/_index.md new file mode 100644 index 0000000000..6163d08202 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/border/get_dash/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::Border::get_Dash method +linktitle: get_Dash +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Border::get_Dash method. Gets dash pattern in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.annotations/border/get_dash/ +--- +## Border::get_Dash method + + +Gets dash pattern. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::Border::get_Dash() const +``` + +## See Also + +* Class [Dash](../../dash/) +* Class [Border](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/border/get_effect/_index.md b/english/cpp/aspose.pdf.annotations/border/get_effect/_index.md new file mode 100644 index 0000000000..91b24aa066 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/border/get_effect/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::Border::get_Effect method +linktitle: get_Effect +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Border::get_Effect method. Gets border effect in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.annotations/border/get_effect/ +--- +## Border::get_Effect method + + +Gets border effect. + +```cpp +ASPOSE_PDF_SHARED_API BorderEffect Aspose::Pdf::Annotations::Border::get_Effect() const +``` + +## Remarks + + +[BorderEffect](../../bordereffect/) +## See Also + +* Enum [BorderEffect](../../bordereffect/) +* Class [Border](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/border/get_effectintensity/_index.md b/english/cpp/aspose.pdf.annotations/border/get_effectintensity/_index.md new file mode 100644 index 0000000000..050cf5ad52 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/border/get_effectintensity/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Border::get_EffectIntensity method +linktitle: get_EffectIntensity +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Border::get_EffectIntensity method. Gets effect intencity. Valid range of value is [0..2] in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.annotations/border/get_effectintensity/ +--- +## Border::get_EffectIntensity method + + +Gets effect intencity. Valid range of value is [0..2]. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Annotations::Border::get_EffectIntensity() const +``` + +## See Also + +* Class [Border](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/border/get_hcornerradius/_index.md b/english/cpp/aspose.pdf.annotations/border/get_hcornerradius/_index.md new file mode 100644 index 0000000000..48b4f5fe72 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/border/get_hcornerradius/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Border::get_HCornerRadius method +linktitle: get_HCornerRadius +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Border::get_HCornerRadius method. Gets horizontal corner radius in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/border/get_hcornerradius/ +--- +## Border::get_HCornerRadius method + + +Gets horizontal corner radius. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Annotations::Border::get_HCornerRadius() +``` + +## See Also + +* Class [Border](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/border/get_style/_index.md b/english/cpp/aspose.pdf.annotations/border/get_style/_index.md new file mode 100644 index 0000000000..90e9bacc56 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/border/get_style/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::Border::get_Style method +linktitle: get_Style +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Border::get_Style method. Gets border style in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.annotations/border/get_style/ +--- +## Border::get_Style method + + +Gets border style. + +```cpp +ASPOSE_PDF_SHARED_API BorderStyle Aspose::Pdf::Annotations::Border::get_Style() +``` + +## Remarks + + +[BorderStyle](../../borderstyle/) +## See Also + +* Enum [BorderStyle](../../borderstyle/) +* Class [Border](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/border/get_vcornerradius/_index.md b/english/cpp/aspose.pdf.annotations/border/get_vcornerradius/_index.md new file mode 100644 index 0000000000..4db08b2b8a --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/border/get_vcornerradius/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Border::get_VCornerRadius method +linktitle: get_VCornerRadius +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Border::get_VCornerRadius method. Gets vertical corner radius in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/border/get_vcornerradius/ +--- +## Border::get_VCornerRadius method + + +Gets vertical corner radius. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Annotations::Border::get_VCornerRadius() +``` + +## See Also + +* Class [Border](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/border/get_width/_index.md b/english/cpp/aspose.pdf.annotations/border/get_width/_index.md new file mode 100644 index 0000000000..3d9838a962 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/border/get_width/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Border::get_Width method +linktitle: get_Width +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Border::get_Width method. Gets border width in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/border/get_width/ +--- +## Border::get_Width method + + +Gets border width. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Annotations::Border::get_Width() +``` + +## See Also + +* Class [Border](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/border/set_dash/_index.md b/english/cpp/aspose.pdf.annotations/border/set_dash/_index.md new file mode 100644 index 0000000000..8089a0039e --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/border/set_dash/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::Border::set_Dash method +linktitle: set_Dash +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Border::set_Dash method. Sets dash pattern in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.annotations/border/set_dash/ +--- +## Border::set_Dash method + + +Sets dash pattern. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::Border::set_Dash(System::SharedPtr value) +``` + +## See Also + +* Class [Dash](../../dash/) +* Class [Border](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/border/set_effect/_index.md b/english/cpp/aspose.pdf.annotations/border/set_effect/_index.md new file mode 100644 index 0000000000..bca62c6cae --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/border/set_effect/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::Border::set_Effect method +linktitle: set_Effect +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Border::set_Effect method. Sets border effect in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.annotations/border/set_effect/ +--- +## Border::set_Effect method + + +Sets border effect. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::Border::set_Effect(BorderEffect value) +``` + +## Remarks + + +[BorderEffect](../../bordereffect/) +## See Also + +* Enum [BorderEffect](../../bordereffect/) +* Class [Border](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/border/set_effectintensity/_index.md b/english/cpp/aspose.pdf.annotations/border/set_effectintensity/_index.md new file mode 100644 index 0000000000..15e0e438ac --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/border/set_effectintensity/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Border::set_EffectIntensity method +linktitle: set_EffectIntensity +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Border::set_EffectIntensity method. Sets effect intencity. Valid range of value is [0..2] in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.annotations/border/set_effectintensity/ +--- +## Border::set_EffectIntensity method + + +Sets effect intencity. Valid range of value is [0..2]. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::Border::set_EffectIntensity(int32_t value) +``` + +## See Also + +* Class [Border](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/border/set_hcornerradius/_index.md b/english/cpp/aspose.pdf.annotations/border/set_hcornerradius/_index.md new file mode 100644 index 0000000000..5c3bf6320d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/border/set_hcornerradius/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Border::set_HCornerRadius method +linktitle: set_HCornerRadius +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Border::set_HCornerRadius method. Sets horizontal corner radius in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/border/set_hcornerradius/ +--- +## Border::set_HCornerRadius method + + +Sets horizontal corner radius. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::Border::set_HCornerRadius(double value) +``` + +## See Also + +* Class [Border](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/border/set_style/_index.md b/english/cpp/aspose.pdf.annotations/border/set_style/_index.md new file mode 100644 index 0000000000..9a3dd1925b --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/border/set_style/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::Border::set_Style method +linktitle: set_Style +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Border::set_Style method. Sets border style in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.annotations/border/set_style/ +--- +## Border::set_Style method + + +Sets border style. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::Border::set_Style(BorderStyle value) +``` + +## Remarks + + +[BorderStyle](../../borderstyle/) +## See Also + +* Enum [BorderStyle](../../borderstyle/) +* Class [Border](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/border/set_vcornerradius/_index.md b/english/cpp/aspose.pdf.annotations/border/set_vcornerradius/_index.md new file mode 100644 index 0000000000..5678cc6e20 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/border/set_vcornerradius/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Border::set_VCornerRadius method +linktitle: set_VCornerRadius +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Border::set_VCornerRadius method. Sets vertical corner radius in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/border/set_vcornerradius/ +--- +## Border::set_VCornerRadius method + + +Sets vertical corner radius. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::Border::set_VCornerRadius(double value) +``` + +## See Also + +* Class [Border](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/border/set_width/_index.md b/english/cpp/aspose.pdf.annotations/border/set_width/_index.md new file mode 100644 index 0000000000..0b80dff49b --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/border/set_width/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Border::set_Width method +linktitle: set_Width +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Border::set_Width method. Sets border width in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/border/set_width/ +--- +## Border::set_Width method + + +Sets border width. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::Border::set_Width(int32_t value) +``` + +## See Also + +* Class [Border](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/bordereffect/_index.md b/english/cpp/aspose.pdf.annotations/bordereffect/_index.md new file mode 100644 index 0000000000..5bb21406ff --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/bordereffect/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Annotations::BorderEffect enum +linktitle: BorderEffect +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::BorderEffect enum. Describes effect which should be applied to the border of the annotations in C++.' +type: docs +weight: 12500 +url: /cpp/aspose.pdf.annotations/bordereffect/ +--- +## BorderEffect enum + + +Describes effect which should be applied to the border of the annotations. + +```cpp +enum class BorderEffect +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| None | 0 | No effect. | +| Cloudy | 1 | The border will appear "cloudly". | + +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/bordereffectconverter/_index.md b/english/cpp/aspose.pdf.annotations/bordereffectconverter/_index.md new file mode 100644 index 0000000000..58b4d6a255 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/bordereffectconverter/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Annotations::BorderEffectConverter class +linktitle: BorderEffectConverter +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Annotations::BorderEffectConverter class in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.annotations/bordereffectconverter/ +--- +## BorderEffectConverter class + + + + +```cpp +class BorderEffectConverter : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [ToEnum](./toenum/)(System::String) | | +| static [ToString](./tostring/)(BorderEffect) | | +| static [ToXfdfString](./toxfdfstring/)(BorderEffect) | | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/bordereffectconverter/toenum/_index.md b/english/cpp/aspose.pdf.annotations/bordereffectconverter/toenum/_index.md new file mode 100644 index 0000000000..9648ed0c74 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/bordereffectconverter/toenum/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::BorderEffectConverter::ToEnum method +linktitle: ToEnum +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToEnum method of Aspose::Pdf::Annotations::BorderEffectConverter class in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/bordereffectconverter/toenum/ +--- +## BorderEffectConverter::ToEnum method + + + + +```cpp +static ASPOSE_PDF_SHARED_API BorderEffect Aspose::Pdf::Annotations::BorderEffectConverter::ToEnum(System::String value) +``` + +## See Also + +* Enum [BorderEffect](../../bordereffect/) +* Class [BorderEffectConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/bordereffectconverter/tostring/_index.md b/english/cpp/aspose.pdf.annotations/bordereffectconverter/tostring/_index.md new file mode 100644 index 0000000000..a866720de0 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/bordereffectconverter/tostring/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::BorderEffectConverter::ToString method +linktitle: ToString +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToString method of Aspose::Pdf::Annotations::BorderEffectConverter class in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/bordereffectconverter/tostring/ +--- +## BorderEffectConverter::ToString method + + + + +```cpp +static ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::BorderEffectConverter::ToString(BorderEffect value) +``` + +## See Also + +* Enum [BorderEffect](../../bordereffect/) +* Class [BorderEffectConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/bordereffectconverter/toxfdfstring/_index.md b/english/cpp/aspose.pdf.annotations/bordereffectconverter/toxfdfstring/_index.md new file mode 100644 index 0000000000..e5e23f5492 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/bordereffectconverter/toxfdfstring/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::BorderEffectConverter::ToXfdfString method +linktitle: ToXfdfString +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToXfdfString method of Aspose::Pdf::Annotations::BorderEffectConverter class in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/bordereffectconverter/toxfdfstring/ +--- +## BorderEffectConverter::ToXfdfString method + + + + +```cpp +static ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::BorderEffectConverter::ToXfdfString(BorderEffect value) +``` + +## See Also + +* Enum [BorderEffect](../../bordereffect/) +* Class [BorderEffectConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/borderstyle/_index.md b/english/cpp/aspose.pdf.annotations/borderstyle/_index.md new file mode 100644 index 0000000000..c7247a993a --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/borderstyle/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Annotations::BorderStyle enum +linktitle: BorderStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::BorderStyle enum. Describes style of the annotation border in C++.' +type: docs +weight: 12600 +url: /cpp/aspose.pdf.annotations/borderstyle/ +--- +## BorderStyle enum + + +Describes style of the annotation border. + +```cpp +enum class BorderStyle +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Solid | 0 | Solid border. | +| Dashed | 1 | Dashed border. | +| Beveled | 2 | Bevelled border. | +| Inset | 3 | Inset border. | +| Underline | 4 | Underlined border. | + +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/borderstyleconverter/_index.md b/english/cpp/aspose.pdf.annotations/borderstyleconverter/_index.md new file mode 100644 index 0000000000..a91b4add5e --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/borderstyleconverter/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Annotations::BorderStyleConverter class +linktitle: BorderStyleConverter +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Annotations::BorderStyleConverter class in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.annotations/borderstyleconverter/ +--- +## BorderStyleConverter class + + + + +```cpp +class BorderStyleConverter : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [ToEnum](./toenum/)(System::String) | | +| static [ToString](./tostring/)(BorderStyle) | | +| static [ToXfdfString](./toxfdfstring/)(BorderStyle) | | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/borderstyleconverter/toenum/_index.md b/english/cpp/aspose.pdf.annotations/borderstyleconverter/toenum/_index.md new file mode 100644 index 0000000000..9ff9d83d31 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/borderstyleconverter/toenum/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::BorderStyleConverter::ToEnum method +linktitle: ToEnum +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToEnum method of Aspose::Pdf::Annotations::BorderStyleConverter class in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/borderstyleconverter/toenum/ +--- +## BorderStyleConverter::ToEnum method + + + + +```cpp +static ASPOSE_PDF_SHARED_API BorderStyle Aspose::Pdf::Annotations::BorderStyleConverter::ToEnum(System::String value) +``` + +## See Also + +* Enum [BorderStyle](../../borderstyle/) +* Class [BorderStyleConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/borderstyleconverter/tostring/_index.md b/english/cpp/aspose.pdf.annotations/borderstyleconverter/tostring/_index.md new file mode 100644 index 0000000000..a2da5b1b2b --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/borderstyleconverter/tostring/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::BorderStyleConverter::ToString method +linktitle: ToString +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToString method of Aspose::Pdf::Annotations::BorderStyleConverter class in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/borderstyleconverter/tostring/ +--- +## BorderStyleConverter::ToString method + + + + +```cpp +static ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::BorderStyleConverter::ToString(BorderStyle value) +``` + +## See Also + +* Enum [BorderStyle](../../borderstyle/) +* Class [BorderStyleConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/borderstyleconverter/toxfdfstring/_index.md b/english/cpp/aspose.pdf.annotations/borderstyleconverter/toxfdfstring/_index.md new file mode 100644 index 0000000000..07ba1043aa --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/borderstyleconverter/toxfdfstring/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::BorderStyleConverter::ToXfdfString method +linktitle: ToXfdfString +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToXfdfString method of Aspose::Pdf::Annotations::BorderStyleConverter class in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/borderstyleconverter/toxfdfstring/ +--- +## BorderStyleConverter::ToXfdfString method + + + + +```cpp +static ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::BorderStyleConverter::ToXfdfString(BorderStyle value) +``` + +## See Also + +* Enum [BorderStyle](../../borderstyle/) +* Class [BorderStyleConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/capstyle/_index.md b/english/cpp/aspose.pdf.annotations/capstyle/_index.md new file mode 100644 index 0000000000..245adc0ba0 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/capstyle/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Annotations::CapStyle enum +linktitle: CapStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::CapStyle enum. Style of line ending of Ink annotation line in C++.' +type: docs +weight: 12700 +url: /cpp/aspose.pdf.annotations/capstyle/ +--- +## CapStyle enum + + +Style of line ending of Ink annotation line. + +```cpp +enum class CapStyle +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Rectangular | 1 | End is rectangular. | +| Rounded | 2 | End is rounded. | + +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/captionposition/_index.md b/english/cpp/aspose.pdf.annotations/captionposition/_index.md new file mode 100644 index 0000000000..fc10fd2a7f --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/captionposition/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Annotations::CaptionPosition enum +linktitle: CaptionPosition +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::CaptionPosition enum. Enumeration of the annotation''s caption positioning in C++.' +type: docs +weight: 12800 +url: /cpp/aspose.pdf.annotations/captionposition/ +--- +## CaptionPosition enum + + +Enumeration of the annotation's caption positioning. + +```cpp +enum class CaptionPosition +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Inline | 0 | The caption will be centered inside the line (default value). | +| Top | 1 | The caption will be on top of the line. | + +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/captionpositionconverter/_index.md b/english/cpp/aspose.pdf.annotations/captionpositionconverter/_index.md new file mode 100644 index 0000000000..e441ce107e --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/captionpositionconverter/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::CaptionPositionConverter class +linktitle: CaptionPositionConverter +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Annotations::CaptionPositionConverter class in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.annotations/captionpositionconverter/ +--- +## CaptionPositionConverter class + + + + +```cpp +class CaptionPositionConverter : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [ToEnum](./toenum/)(System::String) | | +| static [ToString](./tostring/)(CaptionPosition) | | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/captionpositionconverter/toenum/_index.md b/english/cpp/aspose.pdf.annotations/captionpositionconverter/toenum/_index.md new file mode 100644 index 0000000000..5ad445e17d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/captionpositionconverter/toenum/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::CaptionPositionConverter::ToEnum method +linktitle: ToEnum +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToEnum method of Aspose::Pdf::Annotations::CaptionPositionConverter class in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/captionpositionconverter/toenum/ +--- +## CaptionPositionConverter::ToEnum method + + + + +```cpp +static ASPOSE_PDF_SHARED_API CaptionPosition Aspose::Pdf::Annotations::CaptionPositionConverter::ToEnum(System::String value) +``` + +## See Also + +* Enum [CaptionPosition](../../captionposition/) +* Class [CaptionPositionConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/captionpositionconverter/tostring/_index.md b/english/cpp/aspose.pdf.annotations/captionpositionconverter/tostring/_index.md new file mode 100644 index 0000000000..2a7f923cc2 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/captionpositionconverter/tostring/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::CaptionPositionConverter::ToString method +linktitle: ToString +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToString method of Aspose::Pdf::Annotations::CaptionPositionConverter class in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/captionpositionconverter/tostring/ +--- +## CaptionPositionConverter::ToString method + + + + +```cpp +static ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::CaptionPositionConverter::ToString(CaptionPosition value) +``` + +## See Also + +* Enum [CaptionPosition](../../captionposition/) +* Class [CaptionPositionConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/caretannotation/_index.md b/english/cpp/aspose.pdf.annotations/caretannotation/_index.md new file mode 100644 index 0000000000..5b02f52242 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/caretannotation/_index.md @@ -0,0 +1,114 @@ +--- +title: Aspose::Pdf::Annotations::CaretAnnotation class +linktitle: CaretAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::CaretAnnotation class. Class representing Caret annotation in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.annotations/caretannotation/ +--- +## CaretAnnotation class + + +Class representing Caret annotation. + +```cpp +class CaretAnnotation : public Aspose::Pdf::Annotations::MarkupAnnotation +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Accept](./accept/)(System::SharedPtr\) override | Accepts visitor object to process the annotation. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| [CaretAnnotation](./caretannotation/)(System::SharedPtr\) | Constructor for usign in Generator. | +| [CaretAnnotation](./caretannotation/)(System::SharedPtr\, System::SharedPtr\) | Creates new Caret annotation on the specified page. | +| virtual [ChangeAfterResize](../annotation/changeafterresize/)(System::SharedPtr\) | Update parameters and appearance, according to the matrix transform. | +| [ClearState](../markupannotation/clearstate/)() | Clears state and state model for the annotation. For example, clears the review status for an annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [Flatten](../annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](../annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../annotation/get_alignment/)() | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [get_AnnotationType](./get_annotationtype/)() override | Gets type of annotation. | +| [get_Appearance](../annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../annotation/get_border/)() const | Gets annotation border characteristics. [Border](../border/) | +| [get_Characteristics](../annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../annotation/get_color/)() | Gets annotation color. | +| [get_Contents](../annotation/get_contents/)() | Gets annotation text. | +| [get_CreationDate](../markupannotation/get_creationdate/)() | Gets date and time when annotation was created. | +| [get_Flags](../annotation/get_flags/)() | Flags of the annotation. | +| [get_Frame](./get_frame/)() | Gets caret rectangle. | +| [get_FullName](../annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../annotation/get_height/)() | Gets height of the annotation. | +| [get_HorizontalAlignment](../annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_InReplyTo](../markupannotation/get_inreplyto/)() | A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| [get_Modified](../annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Name](../annotation/get_name/)() | Gets annotation name on the page. | +| [get_Opacity](../markupannotation/get_opacity/)() | Gets the constant opacity value to be used in painting the annotation. | +| virtual [get_PageIndex](../annotation/get_pageindex/)() | Gets index of page which contains annotation. | +| [get_Popup](../markupannotation/get_popup/)() | Pop-up annotation for entering or editing the text associated with this annotation. | +| virtual [get_Rect](../annotation/get_rect/)() | Gets annotation rectangle. | +| [get_ReplyType](../markupannotation/get_replytype/)() | A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. | +| [get_RichText](../markupannotation/get_richtext/)() | Gets a rich text string to be displayed in the pop-up window when the annotation is opened. | +| [get_States](../annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_Subject](../markupannotation/get_subject/)() | Gets text representing desciption of the object. | +| [get_Symbol](./get_symbol/)() | Gets symbol associated with caret. | +| [get_TextHorizontalAlignment](../annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| [get_Title](../markupannotation/get_title/)() override | Gets a text that shall be displayed in title bar of annotation. | +| static [get_UpdateAppearanceOnConvert](../annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetRectangle](../annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| [GetState](../markupannotation/getstate/)() | Gets the state of the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [GetStateModel](../markupannotation/getstatemodel/)() | Gets the state model of the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [MarkupAnnotation](../markupannotation/markupannotation/)(System::SharedPtr\) | Constructor for markup annotation. | +| virtual [set_ActiveState](../annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../annotation/set_alignment/)(TextAlignment) | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_Border](../annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../border/) | +| [set_Color](../annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](../annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_Flags](../annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| [set_Frame](./set_frame/)(System::SharedPtr\) | Sets caret rectangle. | +| virtual [set_Height](../annotation/set_height/)(double) | Sets height of the annotation. | +| [set_HorizontalAlignment](../annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_InReplyTo](../markupannotation/set_inreplyto/)(System::SharedPtr\) | A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| [set_Modified](../annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Name](../annotation/set_name/)(System::String) | Sets annotation name on the page. | +| [set_Opacity](../markupannotation/set_opacity/)(double) | Sets the constant opacity value to be used in painting the annotation. | +| [set_Popup](../markupannotation/set_popup/)(System::SharedPtr\) | Pop-up annotation for entering or editing the text associated with this annotation. | +| virtual [set_Rect](../annotation/set_rect/)(System::SharedPtr\) | Sets annotation rectangle. | +| [set_ReplyType](../markupannotation/set_replytype/)(Aspose::Pdf::Annotations::ReplyType) | A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. | +| [set_RichText](../markupannotation/set_richtext/)(System::String) | Sets a rich text string to be displayed in the pop-up window when the annotation is opened. | +| [set_Subject](../markupannotation/set_subject/)(System::String) | Gets text representing desciption of the object. | +| [set_Symbol](./set_symbol/)(CaretSymbol) | Sets symbol associated with caret. | +| [set_TextHorizontalAlignment](../annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| [set_Title](../markupannotation/set_title/)(System::String) override | Sets a text that shall be displayed in title bar of annotation. | +| static [set_UpdateAppearanceOnConvert](../annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [SetMarkedState](../markupannotation/setmarkedstate/)(bool) | Sets Marked and Unmarked state for the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SetReviewState](../markupannotation/setreviewstate/)(AnnotationState, System::String) | Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SetReviewState](../markupannotation/setreviewstate/)(AnnotationState) | Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. The state is set by the user who created the target annotation. The value is taken from the Title property of the target annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +## See Also + +* Class [MarkupAnnotation](../markupannotation/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/caretannotation/accept/_index.md b/english/cpp/aspose.pdf.annotations/caretannotation/accept/_index.md new file mode 100644 index 0000000000..196e9f8688 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/caretannotation/accept/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Annotations::CaretAnnotation::Accept method +linktitle: Accept +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::CaretAnnotation::Accept method. Accepts visitor object to process the annotation in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/caretannotation/accept/ +--- +## CaretAnnotation::Accept method + + +Accepts visitor object to process the annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::CaretAnnotation::Accept(System::SharedPtr visitor) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| visitor | System::SharedPtr\ | Visitor object. | +## Remarks + + + + + + visitor + + + Visitor object. + + + +## See Also + +* Class [AnnotationSelector](../../annotationselector/) +* Class [CaretAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/caretannotation/caretannotation/_index.md b/english/cpp/aspose.pdf.annotations/caretannotation/caretannotation/_index.md new file mode 100644 index 0000000000..37cf1f7f03 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/caretannotation/caretannotation/_index.md @@ -0,0 +1,85 @@ +--- +title: Aspose::Pdf::Annotations::CaretAnnotation::CaretAnnotation constructor +linktitle: CaretAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::CaretAnnotation::CaretAnnotation constructor. Constructor for usign in Generator in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.annotations/caretannotation/caretannotation/ +--- +## CaretAnnotation::CaretAnnotation(System::SharedPtr\) constructor + + +Constructor for usign in Generator. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::CaretAnnotation::CaretAnnotation(System::SharedPtr document) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | [Document](../../../aspose.pdf/document/) where annotation will be created. | +## Remarks + + + + + + document + + + + Document where annotation will be created. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [CaretAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## CaretAnnotation::CaretAnnotation(System::SharedPtr\, System::SharedPtr\) constructor + + +Creates new Caret annotation on the specified page. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::CaretAnnotation::CaretAnnotation(System::SharedPtr page, System::SharedPtr rect) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | [Document](../../../aspose.pdf/document/)'s page where annotation should be created. | +| rect | System::SharedPtr\ | Required rectangle that sets annotation's border. | +## Remarks + + + + + + page + + + + Document's page where annotation should be created. + + + + + rect + + + Required rectangle that sets annotation's border. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [CaretAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/caretannotation/get_annotationtype/_index.md b/english/cpp/aspose.pdf.annotations/caretannotation/get_annotationtype/_index.md new file mode 100644 index 0000000000..8a6e97f6a4 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/caretannotation/get_annotationtype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::CaretAnnotation::get_AnnotationType method +linktitle: get_AnnotationType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::CaretAnnotation::get_AnnotationType method. Gets type of annotation in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/caretannotation/get_annotationtype/ +--- +## CaretAnnotation::get_AnnotationType method + + +Gets type of annotation. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::AnnotationType Aspose::Pdf::Annotations::CaretAnnotation::get_AnnotationType() override +``` + +## See Also + +* Enum [AnnotationType](../../annotationtype/) +* Class [CaretAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/caretannotation/get_frame/_index.md b/english/cpp/aspose.pdf.annotations/caretannotation/get_frame/_index.md new file mode 100644 index 0000000000..4668bceb32 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/caretannotation/get_frame/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::CaretAnnotation::get_Frame method +linktitle: get_Frame +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::CaretAnnotation::get_Frame method. Gets caret rectangle in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/caretannotation/get_frame/ +--- +## CaretAnnotation::get_Frame method + + +Gets caret rectangle. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::CaretAnnotation::get_Frame() +``` + +## See Also + +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [CaretAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/caretannotation/get_symbol/_index.md b/english/cpp/aspose.pdf.annotations/caretannotation/get_symbol/_index.md new file mode 100644 index 0000000000..4bbb90797e --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/caretannotation/get_symbol/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::CaretAnnotation::get_Symbol method +linktitle: get_Symbol +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::CaretAnnotation::get_Symbol method. Gets symbol associated with caret in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/caretannotation/get_symbol/ +--- +## CaretAnnotation::get_Symbol method + + +Gets symbol associated with caret. + +```cpp +ASPOSE_PDF_SHARED_API CaretSymbol Aspose::Pdf::Annotations::CaretAnnotation::get_Symbol() +``` + +## Remarks + + +[CaretSymbol](../../caretsymbol/) +## See Also + +* Enum [CaretSymbol](../../caretsymbol/) +* Class [CaretAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/caretannotation/set_frame/_index.md b/english/cpp/aspose.pdf.annotations/caretannotation/set_frame/_index.md new file mode 100644 index 0000000000..650517bd05 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/caretannotation/set_frame/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::CaretAnnotation::set_Frame method +linktitle: set_Frame +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::CaretAnnotation::set_Frame method. Sets caret rectangle in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/caretannotation/set_frame/ +--- +## CaretAnnotation::set_Frame method + + +Sets caret rectangle. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::CaretAnnotation::set_Frame(System::SharedPtr value) +``` + +## See Also + +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [CaretAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/caretannotation/set_symbol/_index.md b/english/cpp/aspose.pdf.annotations/caretannotation/set_symbol/_index.md new file mode 100644 index 0000000000..fbe01463c1 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/caretannotation/set_symbol/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::CaretAnnotation::set_Symbol method +linktitle: set_Symbol +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::CaretAnnotation::set_Symbol method. Sets symbol associated with caret in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/caretannotation/set_symbol/ +--- +## CaretAnnotation::set_Symbol method + + +Sets symbol associated with caret. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::CaretAnnotation::set_Symbol(CaretSymbol value) +``` + +## Remarks + + +[CaretSymbol](../../caretsymbol/) +## See Also + +* Enum [CaretSymbol](../../caretsymbol/) +* Class [CaretAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/caretsymbol/_index.md b/english/cpp/aspose.pdf.annotations/caretsymbol/_index.md new file mode 100644 index 0000000000..f353666bfe --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/caretsymbol/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Annotations::CaretSymbol enum +linktitle: CaretSymbol +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::CaretSymbol enum. A symbol to be associated with the caret in C++.' +type: docs +weight: 12900 +url: /cpp/aspose.pdf.annotations/caretsymbol/ +--- +## CaretSymbol enum + + +A symbol to be associated with the caret. + +```cpp +enum class CaretSymbol +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| None | 0 | No symbol should be associated with the caret. | +| Paragraph | 1 | A new paragraph symbol should be associated with the caret. | + +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/caretsymbolconverter/_index.md b/english/cpp/aspose.pdf.annotations/caretsymbolconverter/_index.md new file mode 100644 index 0000000000..d51f5817aa --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/caretsymbolconverter/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Annotations::CaretSymbolConverter class +linktitle: CaretSymbolConverter +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Annotations::CaretSymbolConverter class in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf.annotations/caretsymbolconverter/ +--- +## CaretSymbolConverter class + + + + +```cpp +class CaretSymbolConverter : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [ToEnum](./toenum/)(System::String) | | +| static [ToString](./tostring/)(CaretSymbol) | | +| static [ToXfdfString](./toxfdfstring/)(CaretSymbol) | | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/caretsymbolconverter/toenum/_index.md b/english/cpp/aspose.pdf.annotations/caretsymbolconverter/toenum/_index.md new file mode 100644 index 0000000000..64b52ea017 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/caretsymbolconverter/toenum/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::CaretSymbolConverter::ToEnum method +linktitle: ToEnum +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToEnum method of Aspose::Pdf::Annotations::CaretSymbolConverter class in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/caretsymbolconverter/toenum/ +--- +## CaretSymbolConverter::ToEnum method + + + + +```cpp +static ASPOSE_PDF_SHARED_API CaretSymbol Aspose::Pdf::Annotations::CaretSymbolConverter::ToEnum(System::String value) +``` + +## See Also + +* Enum [CaretSymbol](../../caretsymbol/) +* Class [CaretSymbolConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/caretsymbolconverter/tostring/_index.md b/english/cpp/aspose.pdf.annotations/caretsymbolconverter/tostring/_index.md new file mode 100644 index 0000000000..4ebc236dc9 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/caretsymbolconverter/tostring/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::CaretSymbolConverter::ToString method +linktitle: ToString +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToString method of Aspose::Pdf::Annotations::CaretSymbolConverter class in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/caretsymbolconverter/tostring/ +--- +## CaretSymbolConverter::ToString method + + + + +```cpp +static ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::CaretSymbolConverter::ToString(CaretSymbol value) +``` + +## See Also + +* Enum [CaretSymbol](../../caretsymbol/) +* Class [CaretSymbolConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/caretsymbolconverter/toxfdfstring/_index.md b/english/cpp/aspose.pdf.annotations/caretsymbolconverter/toxfdfstring/_index.md new file mode 100644 index 0000000000..00144c7b99 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/caretsymbolconverter/toxfdfstring/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::CaretSymbolConverter::ToXfdfString method +linktitle: ToXfdfString +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToXfdfString method of Aspose::Pdf::Annotations::CaretSymbolConverter class in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/caretsymbolconverter/toxfdfstring/ +--- +## CaretSymbolConverter::ToXfdfString method + + + + +```cpp +static ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::CaretSymbolConverter::ToXfdfString(CaretSymbol value) +``` + +## See Also + +* Enum [CaretSymbol](../../caretsymbol/) +* Class [CaretSymbolConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/characteristics/_index.md b/english/cpp/aspose.pdf.annotations/characteristics/_index.md new file mode 100644 index 0000000000..c1f82ce407 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/characteristics/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Annotations::Characteristics class +linktitle: Characteristics +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Characteristics class. Represents annotation characteristics in C++.' +type: docs +weight: 1700 +url: /cpp/aspose.pdf.annotations/characteristics/ +--- +## Characteristics class + + +Represents annotation characteristics. + +```cpp +class Characteristics : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_Background](./get_background/)() | Gets color of the background. | +| [get_Border](./get_border/)() | Gets color of the border. | +| [get_Rotate](./get_rotate/)() | Gets rotation of the annotation. | +| [set_Background](./set_background/)(System::Drawing::Color) | Sets color of the background. | +| [set_Border](./set_border/)(System::Drawing::Color) | Sets color of the border. | +| [set_Rotate](./set_rotate/)(Rotation) | Sets rotation of the annotation. | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/characteristics/get_background/_index.md b/english/cpp/aspose.pdf.annotations/characteristics/get_background/_index.md new file mode 100644 index 0000000000..654ca5bd21 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/characteristics/get_background/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Characteristics::get_Background method +linktitle: get_Background +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Characteristics::get_Background method. Gets color of the background in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/characteristics/get_background/ +--- +## Characteristics::get_Background method + + +Gets color of the background. + +```cpp +ASPOSE_PDF_SHARED_API System::Drawing::Color Aspose::Pdf::Annotations::Characteristics::get_Background() +``` + +## See Also + +* Class [Characteristics](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/characteristics/get_border/_index.md b/english/cpp/aspose.pdf.annotations/characteristics/get_border/_index.md new file mode 100644 index 0000000000..31763e843f --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/characteristics/get_border/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Characteristics::get_Border method +linktitle: get_Border +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Characteristics::get_Border method. Gets color of the border in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/characteristics/get_border/ +--- +## Characteristics::get_Border method + + +Gets color of the border. + +```cpp +ASPOSE_PDF_SHARED_API System::Drawing::Color Aspose::Pdf::Annotations::Characteristics::get_Border() +``` + +## See Also + +* Class [Characteristics](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/characteristics/get_rotate/_index.md b/english/cpp/aspose.pdf.annotations/characteristics/get_rotate/_index.md new file mode 100644 index 0000000000..5357df1392 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/characteristics/get_rotate/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::Characteristics::get_Rotate method +linktitle: get_Rotate +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Characteristics::get_Rotate method. Gets rotation of the annotation in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/characteristics/get_rotate/ +--- +## Characteristics::get_Rotate method + + +Gets rotation of the annotation. + +```cpp +ASPOSE_PDF_SHARED_API Rotation Aspose::Pdf::Annotations::Characteristics::get_Rotate() +``` + +## See Also + +* Enum [Rotation](../../../aspose.pdf/rotation/) +* Class [Characteristics](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/characteristics/set_background/_index.md b/english/cpp/aspose.pdf.annotations/characteristics/set_background/_index.md new file mode 100644 index 0000000000..8a69eeab8b --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/characteristics/set_background/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Characteristics::set_Background method +linktitle: set_Background +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Characteristics::set_Background method. Sets color of the background in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/characteristics/set_background/ +--- +## Characteristics::set_Background method + + +Sets color of the background. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::Characteristics::set_Background(System::Drawing::Color value) +``` + +## See Also + +* Class [Characteristics](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/characteristics/set_border/_index.md b/english/cpp/aspose.pdf.annotations/characteristics/set_border/_index.md new file mode 100644 index 0000000000..c16d53d212 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/characteristics/set_border/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Characteristics::set_Border method +linktitle: set_Border +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Characteristics::set_Border method. Sets color of the border in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/characteristics/set_border/ +--- +## Characteristics::set_Border method + + +Sets color of the border. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::Characteristics::set_Border(System::Drawing::Color value) +``` + +## See Also + +* Class [Characteristics](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/characteristics/set_rotate/_index.md b/english/cpp/aspose.pdf.annotations/characteristics/set_rotate/_index.md new file mode 100644 index 0000000000..3688f7a2a2 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/characteristics/set_rotate/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::Characteristics::set_Rotate method +linktitle: set_Rotate +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Characteristics::set_Rotate method. Sets rotation of the annotation in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/characteristics/set_rotate/ +--- +## Characteristics::set_Rotate method + + +Sets rotation of the annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::Characteristics::set_Rotate(Rotation value) +``` + +## See Also + +* Enum [Rotation](../../../aspose.pdf/rotation/) +* Class [Characteristics](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/circleannotation/_index.md b/english/cpp/aspose.pdf.annotations/circleannotation/_index.md new file mode 100644 index 0000000000..827f7b01f3 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/circleannotation/_index.md @@ -0,0 +1,115 @@ +--- +title: Aspose::Pdf::Annotations::CircleAnnotation class +linktitle: CircleAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::CircleAnnotation class. Class representing Circle annotation in C++.' +type: docs +weight: 1800 +url: /cpp/aspose.pdf.annotations/circleannotation/ +--- +## CircleAnnotation class + + +Class representing Circle annotation. + +```cpp +class CircleAnnotation : public Aspose::Pdf::Annotations::CommonFigureAnnotation +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Accept](./accept/)(System::SharedPtr\) override | Accepts visitor object to process the annotation. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| virtual [ChangeAfterResize](../annotation/changeafterresize/)(System::SharedPtr\) | Update parameters and appearance, according to the matrix transform. | +| [CircleAnnotation](./circleannotation/)(System::SharedPtr\) | Constructor for Circle annotation. | +| [CircleAnnotation](./circleannotation/)(System::SharedPtr\, System::SharedPtr\) | Creates new Circle annotation on the specified page. | +| [ClearState](../markupannotation/clearstate/)() | Clears state and state model for the annotation. For example, clears the review status for an annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [CommonFigureAnnotation](../commonfigureannotation/commonfigureannotation/)(System::SharedPtr\) | Constructor for using in Generator. | +| [Flatten](../annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](../annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../annotation/get_alignment/)() | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [get_AnnotationType](./get_annotationtype/)() override | Gets type of annotation. | +| [get_Appearance](../annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../annotation/get_border/)() const | Gets annotation border characteristics. [Border](../border/) | +| [get_Characteristics](../annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../annotation/get_color/)() | Gets annotation color. | +| [get_Contents](../annotation/get_contents/)() | Gets annotation text. | +| [get_CreationDate](../markupannotation/get_creationdate/)() | Gets date and time when annotation was created. | +| [get_Flags](../annotation/get_flags/)() | Flags of the annotation. | +| [get_Frame](../commonfigureannotation/get_frame/)() | The rectangle describing the numerical differences between two rectangles: the Rect entry of the annotation and the actual boundaries of the underlying square or circle. | +| [get_FullName](../annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../annotation/get_height/)() | Gets height of the annotation. | +| [get_HorizontalAlignment](../annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_InReplyTo](../markupannotation/get_inreplyto/)() | A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. | +| [get_InteriorColor](../commonfigureannotation/get_interiorcolor/)() | Interior color with which to fill the annotation's rectangle or ellipse. | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| [get_Modified](../annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Name](../annotation/get_name/)() | Gets annotation name on the page. | +| [get_Opacity](../markupannotation/get_opacity/)() | Gets the constant opacity value to be used in painting the annotation. | +| virtual [get_PageIndex](../annotation/get_pageindex/)() | Gets index of page which contains annotation. | +| [get_Popup](../markupannotation/get_popup/)() | Pop-up annotation for entering or editing the text associated with this annotation. | +| virtual [get_Rect](../annotation/get_rect/)() | Gets annotation rectangle. | +| [get_ReplyType](../markupannotation/get_replytype/)() | A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. | +| [get_RichText](../markupannotation/get_richtext/)() | Gets a rich text string to be displayed in the pop-up window when the annotation is opened. | +| [get_States](../annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_Subject](../markupannotation/get_subject/)() | Gets text representing desciption of the object. | +| [get_TextHorizontalAlignment](../annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| [get_Title](../markupannotation/get_title/)() override | Gets a text that shall be displayed in title bar of annotation. | +| static [get_UpdateAppearanceOnConvert](../annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetRectangle](../annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| [GetState](../markupannotation/getstate/)() | Gets the state of the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [GetStateModel](../markupannotation/getstatemodel/)() | Gets the state model of the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [MarkupAnnotation](../markupannotation/markupannotation/)(System::SharedPtr\) | Constructor for markup annotation. | +| virtual [set_ActiveState](../annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../annotation/set_alignment/)(TextAlignment) | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_Border](../annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../border/) | +| [set_Color](../annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](../annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_Flags](../annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| [set_Frame](../commonfigureannotation/set_frame/)(System::SharedPtr\) | The rectangle describing the numerical differences between two rectangles: the Rect entry of the annotation and the actual boundaries of the underlying square or circle. | +| virtual [set_Height](../annotation/set_height/)(double) | Sets height of the annotation. | +| [set_HorizontalAlignment](../annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_InReplyTo](../markupannotation/set_inreplyto/)(System::SharedPtr\) | A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. | +| [set_InteriorColor](../commonfigureannotation/set_interiorcolor/)(System::SharedPtr\) | Interior color with which to fill the annotation's rectangle or ellipse. | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| [set_Modified](../annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Name](../annotation/set_name/)(System::String) | Sets annotation name on the page. | +| [set_Opacity](../markupannotation/set_opacity/)(double) | Sets the constant opacity value to be used in painting the annotation. | +| [set_Popup](../markupannotation/set_popup/)(System::SharedPtr\) | Pop-up annotation for entering or editing the text associated with this annotation. | +| virtual [set_Rect](../annotation/set_rect/)(System::SharedPtr\) | Sets annotation rectangle. | +| [set_ReplyType](../markupannotation/set_replytype/)(Aspose::Pdf::Annotations::ReplyType) | A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. | +| [set_RichText](../markupannotation/set_richtext/)(System::String) | Sets a rich text string to be displayed in the pop-up window when the annotation is opened. | +| [set_Subject](../markupannotation/set_subject/)(System::String) | Gets text representing desciption of the object. | +| [set_TextHorizontalAlignment](../annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| [set_Title](../markupannotation/set_title/)(System::String) override | Sets a text that shall be displayed in title bar of annotation. | +| static [set_UpdateAppearanceOnConvert](../annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [SetMarkedState](../markupannotation/setmarkedstate/)(bool) | Sets Marked and Unmarked state for the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SetReviewState](../markupannotation/setreviewstate/)(AnnotationState, System::String) | Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SetReviewState](../markupannotation/setreviewstate/)(AnnotationState) | Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. The state is set by the user who created the target annotation. The value is taken from the Title property of the target annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +## See Also + +* Class [CommonFigureAnnotation](../commonfigureannotation/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/circleannotation/accept/_index.md b/english/cpp/aspose.pdf.annotations/circleannotation/accept/_index.md new file mode 100644 index 0000000000..42a301b76d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/circleannotation/accept/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Annotations::CircleAnnotation::Accept method +linktitle: Accept +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::CircleAnnotation::Accept method. Accepts visitor object to process the annotation in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/circleannotation/accept/ +--- +## CircleAnnotation::Accept method + + +Accepts visitor object to process the annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::CircleAnnotation::Accept(System::SharedPtr visitor) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| visitor | System::SharedPtr\ | Visitor object. | +## Remarks + + + + + + visitor + + + Visitor object. + + + +## See Also + +* Class [AnnotationSelector](../../annotationselector/) +* Class [CircleAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/circleannotation/circleannotation/_index.md b/english/cpp/aspose.pdf.annotations/circleannotation/circleannotation/_index.md new file mode 100644 index 0000000000..8fdce81afc --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/circleannotation/circleannotation/_index.md @@ -0,0 +1,85 @@ +--- +title: Aspose::Pdf::Annotations::CircleAnnotation::CircleAnnotation constructor +linktitle: CircleAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::CircleAnnotation::CircleAnnotation constructor. Constructor for Circle annotation in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/circleannotation/circleannotation/ +--- +## CircleAnnotation::CircleAnnotation(System::SharedPtr\) constructor + + +Constructor for Circle annotation. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::CircleAnnotation::CircleAnnotation(System::SharedPtr document) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | [Document](../../../aspose.pdf/document/) where annotation will be created. | +## Remarks + + + + + + document + + + + Document where annotation will be created. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [CircleAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## CircleAnnotation::CircleAnnotation(System::SharedPtr\, System::SharedPtr\) constructor + + +Creates new Circle annotation on the specified page. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::CircleAnnotation::CircleAnnotation(System::SharedPtr page, System::SharedPtr rect) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | [Document](../../../aspose.pdf/document/)'s page where annotation should be created. | +| rect | System::SharedPtr\ | Required rectangle that sets annotation's border. | +## Remarks + + + + + + page + + + + Document's page where annotation should be created. + + + + + rect + + + Required rectangle that sets annotation's border. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [CircleAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/circleannotation/get_annotationtype/_index.md b/english/cpp/aspose.pdf.annotations/circleannotation/get_annotationtype/_index.md new file mode 100644 index 0000000000..f5d7d7f5c0 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/circleannotation/get_annotationtype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::CircleAnnotation::get_AnnotationType method +linktitle: get_AnnotationType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::CircleAnnotation::get_AnnotationType method. Gets type of annotation in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/circleannotation/get_annotationtype/ +--- +## CircleAnnotation::get_AnnotationType method + + +Gets type of annotation. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::AnnotationType Aspose::Pdf::Annotations::CircleAnnotation::get_AnnotationType() override +``` + +## See Also + +* Enum [AnnotationType](../../annotationtype/) +* Class [CircleAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/colorbarannotation/_index.md b/english/cpp/aspose.pdf.annotations/colorbarannotation/_index.md new file mode 100644 index 0000000000..9d8263631c --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/colorbarannotation/_index.md @@ -0,0 +1,91 @@ +--- +title: Aspose::Pdf::Annotations::ColorBarAnnotation class +linktitle: ColorBarAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::ColorBarAnnotation class. Class representing ColorBarAnnotation annotation. Property Color ignored, instead used ColorsOfCMYK color. On creation, the ratio of width and height determines the orientation of the annotation - horizontal or vertical. Next, it checks that the annotation rectangle is outside the TrimBox, and if not, then it is shifted to the nearest location outside the TrimBox, taking into account the orientation of the annotation. It is possible to reduce the width (height) so that the annotation fits outside the TrimBox. If there is no space for the layout, the width/height can be set to zero (in this case, the annotation is present on the page, but not displayed) in C++.' +type: docs +weight: 1900 +url: /cpp/aspose.pdf.annotations/colorbarannotation/ +--- +## ColorBarAnnotation class + + +Class representing [ColorBarAnnotation](./) annotation. Property [Color](../../aspose.pdf/color/) ignored, instead used ColorsOfCMYK color. On creation, the ratio of width and height determines the orientation of the annotation - horizontal or vertical. Next, it checks that the annotation rectangle is outside the TrimBox, and if not, then it is shifted to the nearest location outside the TrimBox, taking into account the orientation of the annotation. It is possible to reduce the width (height) so that the annotation fits outside the TrimBox. If there is no space for the layout, the width/height can be set to zero (in this case, the annotation is present on the page, but not displayed). + +```cpp +class ColorBarAnnotation : public Aspose::Pdf::Annotations::PrinterMarkAnnotation +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Accept](./accept/)(System::SharedPtr\) override | Accepts visitor object to process the annotation. | +| static [AddPrinterMarks](../printermarkannotation/addprintermarks/)(System::SharedPtr\, PrinterMarksKind) | Adds printer's marks to all pages in the specified document. | +| static [AddPrinterMarks](../printermarkannotation/addprintermarks/)(System::SharedPtr\, PrinterMarksKind) | Adds printer's marks to the specified page. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| [ChangeAfterResize](./changeafterresize/)(System::SharedPtr\) override | Update parameters and appearance, according to the matrix transform and moving outside of TrimBox if nesseary. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [ColorBarAnnotation](./colorbarannotation/)(System::SharedPtr\, System::SharedPtr\, ColorsOfCMYK) | Creates new ColorBar annotation on the specified page. | +| [Flatten](../annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](../annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../annotation/get_alignment/)() | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [get_AnnotationType](./get_annotationtype/)() override | Gets type of annotation. | +| [get_Appearance](../annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../annotation/get_border/)() const | Gets annotation border characteristics. [Border](../border/) | +| [get_Characteristics](../annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../annotation/get_color/)() | Gets annotation color. | +| [get_ColorOfCMYK](./get_colorofcmyk/)() const | Gets color (one of cyan, magenta, yellow, black) for which the annotation is drawing. | +| [get_Contents](../annotation/get_contents/)() | Gets annotation text. | +| [get_Flags](../annotation/get_flags/)() | Flags of the annotation. | +| [get_FullName](../annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../annotation/get_height/)() | Gets height of the annotation. | +| [get_HorizontalAlignment](../annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| [get_Modified](../annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Name](../annotation/get_name/)() | Gets annotation name on the page. | +| virtual [get_PageIndex](../annotation/get_pageindex/)() | Gets index of page which contains annotation. | +| virtual [get_Rect](../annotation/get_rect/)() | Gets annotation rectangle. | +| [get_States](../annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_TextHorizontalAlignment](../annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| static [get_UpdateAppearanceOnConvert](../annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetRectangle](../annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| virtual [set_ActiveState](../annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../annotation/set_alignment/)(TextAlignment) | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_Border](../annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../border/) | +| [set_Color](../annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_ColorOfCMYK](./set_colorofcmyk/)(ColorsOfCMYK) | Sets color (one of cyan, magenta, yellow, black) for which the annotation is drawing. | +| [set_Contents](../annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_Flags](../annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| virtual [set_Height](../annotation/set_height/)(double) | Sets height of the annotation. | +| [set_HorizontalAlignment](../annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| [set_Modified](../annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Name](../annotation/set_name/)(System::String) | Sets annotation name on the page. | +| virtual [set_Rect](../annotation/set_rect/)(System::SharedPtr\) | Sets annotation rectangle. | +| [set_TextHorizontalAlignment](../annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| static [set_UpdateAppearanceOnConvert](../annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +## See Also + +* Class [PrinterMarkAnnotation](../printermarkannotation/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/colorbarannotation/accept/_index.md b/english/cpp/aspose.pdf.annotations/colorbarannotation/accept/_index.md new file mode 100644 index 0000000000..0eaeec188c --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/colorbarannotation/accept/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Annotations::ColorBarAnnotation::Accept method +linktitle: Accept +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::ColorBarAnnotation::Accept method. Accepts visitor object to process the annotation in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/colorbarannotation/accept/ +--- +## ColorBarAnnotation::Accept method + + +Accepts visitor object to process the annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::ColorBarAnnotation::Accept(System::SharedPtr visitor) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| visitor | System::SharedPtr\ | Visitor object. | +## Remarks + + + + + + visitor + + + Visitor object. + + + +## See Also + +* Class [AnnotationSelector](../../annotationselector/) +* Class [ColorBarAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/colorbarannotation/changeafterresize/_index.md b/english/cpp/aspose.pdf.annotations/colorbarannotation/changeafterresize/_index.md new file mode 100644 index 0000000000..1b555ded36 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/colorbarannotation/changeafterresize/_index.md @@ -0,0 +1,42 @@ +--- +title: Aspose::Pdf::Annotations::ColorBarAnnotation::ChangeAfterResize method +linktitle: ChangeAfterResize +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::ColorBarAnnotation::ChangeAfterResize method. Update parameters and appearance, according to the matrix transform and moving outside of TrimBox if nesseary in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/colorbarannotation/changeafterresize/ +--- +## ColorBarAnnotation::ChangeAfterResize method + + +Update parameters and appearance, according to the matrix transform and moving outside of TrimBox if nesseary. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::ColorBarAnnotation::ChangeAfterResize(System::SharedPtr transform) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| transform | System::SharedPtr\ | [Matrix](../../../aspose.pdf/matrix/) specifying the transformation. | +## Remarks + + + + + + transform + + + + Matrix specifying the transformation. + + + +## See Also + +* Class [Matrix](../../../aspose.pdf/matrix/) +* Class [ColorBarAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/colorbarannotation/colorbarannotation/_index.md b/english/cpp/aspose.pdf.annotations/colorbarannotation/colorbarannotation/_index.md new file mode 100644 index 0000000000..bc07e7ef5c --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/colorbarannotation/colorbarannotation/_index.md @@ -0,0 +1,63 @@ +--- +title: Aspose::Pdf::Annotations::ColorBarAnnotation::ColorBarAnnotation constructor +linktitle: ColorBarAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::ColorBarAnnotation::ColorBarAnnotation constructor. Creates new ColorBar annotation on the specified page in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/colorbarannotation/colorbarannotation/ +--- +## ColorBarAnnotation::ColorBarAnnotation constructor + + +Creates new ColorBar annotation on the specified page. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::ColorBarAnnotation::ColorBarAnnotation(System::SharedPtr page, System::SharedPtr rect, ColorsOfCMYK colorOfCMYK=Aspose::Pdf::Annotations::ColorsOfCMYK::Black) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | [Document](../../../aspose.pdf/document/)'s page where annotation should be created. | +| rect | System::SharedPtr\ | Required rectangle that sets annotation's drawing area. | +| colorOfCMYK | ColorsOfCMYK | [Color](../../../aspose.pdf/color/) for which annotation drawing. | +## Remarks + + + + + + page + + + + Document's page where annotation should be created. + + + + + rect + + + Required rectangle that sets annotation's drawing area. + + + + + colorOfCMYK + + + + Color for which annotation drawing. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Enum [ColorsOfCMYK](../../colorsofcmyk/) +* Class [ColorBarAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/colorbarannotation/get_annotationtype/_index.md b/english/cpp/aspose.pdf.annotations/colorbarannotation/get_annotationtype/_index.md new file mode 100644 index 0000000000..bcfd677c98 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/colorbarannotation/get_annotationtype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::ColorBarAnnotation::get_AnnotationType method +linktitle: get_AnnotationType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::ColorBarAnnotation::get_AnnotationType method. Gets type of annotation in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/colorbarannotation/get_annotationtype/ +--- +## ColorBarAnnotation::get_AnnotationType method + + +Gets type of annotation. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::AnnotationType Aspose::Pdf::Annotations::ColorBarAnnotation::get_AnnotationType() override +``` + +## See Also + +* Enum [AnnotationType](../../annotationtype/) +* Class [ColorBarAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/colorbarannotation/get_colorofcmyk/_index.md b/english/cpp/aspose.pdf.annotations/colorbarannotation/get_colorofcmyk/_index.md new file mode 100644 index 0000000000..66f36bfb56 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/colorbarannotation/get_colorofcmyk/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Annotations::ColorBarAnnotation::get_ColorOfCMYK method +linktitle: get_ColorOfCMYK +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::ColorBarAnnotation::get_ColorOfCMYK method. Gets color (one of cyan, magenta, yellow, black) for which the annotation is drawing in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/colorbarannotation/get_colorofcmyk/ +--- +## ColorBarAnnotation::get_ColorOfCMYK method + + +Gets color (one of cyan, magenta, yellow, black) for which the annotation is drawing. + +```cpp +ASPOSE_PDF_SHARED_API ColorsOfCMYK Aspose::Pdf::Annotations::ColorBarAnnotation::get_ColorOfCMYK() const +``` + + + + +## See Also + +* Enum [ColorsOfCMYK](../../colorsofcmyk/) +* Class [ColorBarAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/colorbarannotation/set_colorofcmyk/_index.md b/english/cpp/aspose.pdf.annotations/colorbarannotation/set_colorofcmyk/_index.md new file mode 100644 index 0000000000..57a9571903 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/colorbarannotation/set_colorofcmyk/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Annotations::ColorBarAnnotation::set_ColorOfCMYK method +linktitle: set_ColorOfCMYK +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::ColorBarAnnotation::set_ColorOfCMYK method. Sets color (one of cyan, magenta, yellow, black) for which the annotation is drawing in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/colorbarannotation/set_colorofcmyk/ +--- +## ColorBarAnnotation::set_ColorOfCMYK method + + +Sets color (one of cyan, magenta, yellow, black) for which the annotation is drawing. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::ColorBarAnnotation::set_ColorOfCMYK(ColorsOfCMYK value) +``` + + + + +## See Also + +* Enum [ColorsOfCMYK](../../colorsofcmyk/) +* Class [ColorBarAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/colorsofcmyk/_index.md b/english/cpp/aspose.pdf.annotations/colorsofcmyk/_index.md new file mode 100644 index 0000000000..4387d33a55 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/colorsofcmyk/_index.md @@ -0,0 +1,31 @@ +--- +title: Aspose::Pdf::Annotations::ColorsOfCMYK enum +linktitle: ColorsOfCMYK +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::ColorsOfCMYK enum. Colors included in the CMYK color model in C++.' +type: docs +weight: 13000 +url: /cpp/aspose.pdf.annotations/colorsofcmyk/ +--- +## ColorsOfCMYK enum + + +Colors included in the CMYK color model. + +```cpp +enum class ColorsOfCMYK +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Cyan | 0 | Cyan color. | +| Magenta | 1 | Magenta color. | +| Yellow | 2 | Yellow color. | +| Black | 3 | Black color. | + +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/colorsofcmykconverter/_index.md b/english/cpp/aspose.pdf.annotations/colorsofcmykconverter/_index.md new file mode 100644 index 0000000000..ea9348490a --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/colorsofcmykconverter/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::ColorsOfCMYKConverter class +linktitle: ColorsOfCMYKConverter +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Annotations::ColorsOfCMYKConverter class in C++.' +type: docs +weight: 2000 +url: /cpp/aspose.pdf.annotations/colorsofcmykconverter/ +--- +## ColorsOfCMYKConverter class + + + + +```cpp +class ColorsOfCMYKConverter : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [ToEnum](./toenum/)(System::String) | | +| static [ToXfdfString](./toxfdfstring/)(ColorsOfCMYK) | | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/colorsofcmykconverter/toenum/_index.md b/english/cpp/aspose.pdf.annotations/colorsofcmykconverter/toenum/_index.md new file mode 100644 index 0000000000..5afa9af91a --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/colorsofcmykconverter/toenum/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::ColorsOfCMYKConverter::ToEnum method +linktitle: ToEnum +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToEnum method of Aspose::Pdf::Annotations::ColorsOfCMYKConverter class in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/colorsofcmykconverter/toenum/ +--- +## ColorsOfCMYKConverter::ToEnum method + + + + +```cpp +static ASPOSE_PDF_SHARED_API ColorsOfCMYK Aspose::Pdf::Annotations::ColorsOfCMYKConverter::ToEnum(System::String color) +``` + +## See Also + +* Enum [ColorsOfCMYK](../../colorsofcmyk/) +* Class [ColorsOfCMYKConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/colorsofcmykconverter/toxfdfstring/_index.md b/english/cpp/aspose.pdf.annotations/colorsofcmykconverter/toxfdfstring/_index.md new file mode 100644 index 0000000000..2d6a5c4ce0 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/colorsofcmykconverter/toxfdfstring/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::ColorsOfCMYKConverter::ToXfdfString method +linktitle: ToXfdfString +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToXfdfString method of Aspose::Pdf::Annotations::ColorsOfCMYKConverter class in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/colorsofcmykconverter/toxfdfstring/ +--- +## ColorsOfCMYKConverter::ToXfdfString method + + + + +```cpp +static ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::ColorsOfCMYKConverter::ToXfdfString(ColorsOfCMYK color) +``` + +## See Also + +* Enum [ColorsOfCMYK](../../colorsofcmyk/) +* Class [ColorsOfCMYKConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/commonfigureannotation/_index.md b/english/cpp/aspose.pdf.annotations/commonfigureannotation/_index.md new file mode 100644 index 0000000000..14ef2199aa --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/commonfigureannotation/_index.md @@ -0,0 +1,113 @@ +--- +title: Aspose::Pdf::Annotations::CommonFigureAnnotation class +linktitle: CommonFigureAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::CommonFigureAnnotation class. Abstract class representing common figure annotation in C++.' +type: docs +weight: 2100 +url: /cpp/aspose.pdf.annotations/commonfigureannotation/ +--- +## CommonFigureAnnotation class + + +Abstract class representing common figure annotation. + +```cpp +class CommonFigureAnnotation : public Aspose::Pdf::Annotations::MarkupAnnotation +``` + +## Methods + +| Method | Description | +| --- | --- | +| virtual [Accept](../annotation/accept/)(System::SharedPtr\) | Accepts visitor for annotation processing. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| virtual [ChangeAfterResize](../annotation/changeafterresize/)(System::SharedPtr\) | Update parameters and appearance, according to the matrix transform. | +| [ClearState](../markupannotation/clearstate/)() | Clears state and state model for the annotation. For example, clears the review status for an annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [CommonFigureAnnotation](./commonfigureannotation/)(System::SharedPtr\) | Constructor for using in Generator. | +| [Flatten](../annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](../annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../annotation/get_alignment/)() | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| virtual [get_AnnotationType](../annotation/get_annotationtype/)() | Gets type of annotation. | +| [get_Appearance](../annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../annotation/get_border/)() const | Gets annotation border characteristics. [Border](../border/) | +| [get_Characteristics](../annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../annotation/get_color/)() | Gets annotation color. | +| [get_Contents](../annotation/get_contents/)() | Gets annotation text. | +| [get_CreationDate](../markupannotation/get_creationdate/)() | Gets date and time when annotation was created. | +| [get_Flags](../annotation/get_flags/)() | Flags of the annotation. | +| [get_Frame](./get_frame/)() | The rectangle describing the numerical differences between two rectangles: the Rect entry of the annotation and the actual boundaries of the underlying square or circle. | +| [get_FullName](../annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../annotation/get_height/)() | Gets height of the annotation. | +| [get_HorizontalAlignment](../annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_InReplyTo](../markupannotation/get_inreplyto/)() | A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. | +| [get_InteriorColor](./get_interiorcolor/)() | Interior color with which to fill the annotation's rectangle or ellipse. | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| [get_Modified](../annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Name](../annotation/get_name/)() | Gets annotation name on the page. | +| [get_Opacity](../markupannotation/get_opacity/)() | Gets the constant opacity value to be used in painting the annotation. | +| virtual [get_PageIndex](../annotation/get_pageindex/)() | Gets index of page which contains annotation. | +| [get_Popup](../markupannotation/get_popup/)() | Pop-up annotation for entering or editing the text associated with this annotation. | +| virtual [get_Rect](../annotation/get_rect/)() | Gets annotation rectangle. | +| [get_ReplyType](../markupannotation/get_replytype/)() | A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. | +| [get_RichText](../markupannotation/get_richtext/)() | Gets a rich text string to be displayed in the pop-up window when the annotation is opened. | +| [get_States](../annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_Subject](../markupannotation/get_subject/)() | Gets text representing desciption of the object. | +| [get_TextHorizontalAlignment](../annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| [get_Title](../markupannotation/get_title/)() override | Gets a text that shall be displayed in title bar of annotation. | +| static [get_UpdateAppearanceOnConvert](../annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetRectangle](../annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| [GetState](../markupannotation/getstate/)() | Gets the state of the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [GetStateModel](../markupannotation/getstatemodel/)() | Gets the state model of the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [MarkupAnnotation](../markupannotation/markupannotation/)(System::SharedPtr\) | Constructor for markup annotation. | +| virtual [set_ActiveState](../annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../annotation/set_alignment/)(TextAlignment) | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_Border](../annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../border/) | +| [set_Color](../annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](../annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_Flags](../annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| [set_Frame](./set_frame/)(System::SharedPtr\) | The rectangle describing the numerical differences between two rectangles: the Rect entry of the annotation and the actual boundaries of the underlying square or circle. | +| virtual [set_Height](../annotation/set_height/)(double) | Sets height of the annotation. | +| [set_HorizontalAlignment](../annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_InReplyTo](../markupannotation/set_inreplyto/)(System::SharedPtr\) | A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. | +| [set_InteriorColor](./set_interiorcolor/)(System::SharedPtr\) | Interior color with which to fill the annotation's rectangle or ellipse. | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| [set_Modified](../annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Name](../annotation/set_name/)(System::String) | Sets annotation name on the page. | +| [set_Opacity](../markupannotation/set_opacity/)(double) | Sets the constant opacity value to be used in painting the annotation. | +| [set_Popup](../markupannotation/set_popup/)(System::SharedPtr\) | Pop-up annotation for entering or editing the text associated with this annotation. | +| virtual [set_Rect](../annotation/set_rect/)(System::SharedPtr\) | Sets annotation rectangle. | +| [set_ReplyType](../markupannotation/set_replytype/)(Aspose::Pdf::Annotations::ReplyType) | A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. | +| [set_RichText](../markupannotation/set_richtext/)(System::String) | Sets a rich text string to be displayed in the pop-up window when the annotation is opened. | +| [set_Subject](../markupannotation/set_subject/)(System::String) | Gets text representing desciption of the object. | +| [set_TextHorizontalAlignment](../annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| [set_Title](../markupannotation/set_title/)(System::String) override | Sets a text that shall be displayed in title bar of annotation. | +| static [set_UpdateAppearanceOnConvert](../annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [SetMarkedState](../markupannotation/setmarkedstate/)(bool) | Sets Marked and Unmarked state for the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SetReviewState](../markupannotation/setreviewstate/)(AnnotationState, System::String) | Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SetReviewState](../markupannotation/setreviewstate/)(AnnotationState) | Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. The state is set by the user who created the target annotation. The value is taken from the Title property of the target annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +## See Also + +* Class [MarkupAnnotation](../markupannotation/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/commonfigureannotation/commonfigureannotation/_index.md b/english/cpp/aspose.pdf.annotations/commonfigureannotation/commonfigureannotation/_index.md new file mode 100644 index 0000000000..2a47d14d09 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/commonfigureannotation/commonfigureannotation/_index.md @@ -0,0 +1,42 @@ +--- +title: Aspose::Pdf::Annotations::CommonFigureAnnotation::CommonFigureAnnotation constructor +linktitle: CommonFigureAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::CommonFigureAnnotation::CommonFigureAnnotation constructor. Constructor for using in Generator in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/commonfigureannotation/commonfigureannotation/ +--- +## CommonFigureAnnotation::CommonFigureAnnotation constructor + + +Constructor for using in Generator. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::CommonFigureAnnotation::CommonFigureAnnotation(System::SharedPtr document) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | [Document](../../../aspose.pdf/document/) where annotation will be placed. | +## Remarks + + + + + + document + + + + Document where annotation will be placed. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [CommonFigureAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/commonfigureannotation/get_frame/_index.md b/english/cpp/aspose.pdf.annotations/commonfigureannotation/get_frame/_index.md new file mode 100644 index 0000000000..dd13fab89a --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/commonfigureannotation/get_frame/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::CommonFigureAnnotation::get_Frame method +linktitle: get_Frame +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::CommonFigureAnnotation::get_Frame method. The rectangle describing the numerical differences between two rectangles: the Rect entry of the annotation and the actual boundaries of the underlying square or circle in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/commonfigureannotation/get_frame/ +--- +## CommonFigureAnnotation::get_Frame method + + +The rectangle describing the numerical differences between two rectangles: the Rect entry of the annotation and the actual boundaries of the underlying square or circle. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::CommonFigureAnnotation::get_Frame() +``` + +## See Also + +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [CommonFigureAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/commonfigureannotation/get_interiorcolor/_index.md b/english/cpp/aspose.pdf.annotations/commonfigureannotation/get_interiorcolor/_index.md new file mode 100644 index 0000000000..474587858a --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/commonfigureannotation/get_interiorcolor/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::CommonFigureAnnotation::get_InteriorColor method +linktitle: get_InteriorColor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::CommonFigureAnnotation::get_InteriorColor method. Interior color with which to fill the annotation''s rectangle or ellipse in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/commonfigureannotation/get_interiorcolor/ +--- +## CommonFigureAnnotation::get_InteriorColor method + + +Interior color with which to fill the annotation's rectangle or ellipse. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::CommonFigureAnnotation::get_InteriorColor() +``` + +## See Also + +* Class [Color](../../../aspose.pdf/color/) +* Class [CommonFigureAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/commonfigureannotation/set_frame/_index.md b/english/cpp/aspose.pdf.annotations/commonfigureannotation/set_frame/_index.md new file mode 100644 index 0000000000..b418371877 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/commonfigureannotation/set_frame/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::CommonFigureAnnotation::set_Frame method +linktitle: set_Frame +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::CommonFigureAnnotation::set_Frame method. The rectangle describing the numerical differences between two rectangles: the Rect entry of the annotation and the actual boundaries of the underlying square or circle in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/commonfigureannotation/set_frame/ +--- +## CommonFigureAnnotation::set_Frame method + + +The rectangle describing the numerical differences between two rectangles: the Rect entry of the annotation and the actual boundaries of the underlying square or circle. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::CommonFigureAnnotation::set_Frame(System::SharedPtr value) +``` + +## See Also + +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [CommonFigureAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/commonfigureannotation/set_interiorcolor/_index.md b/english/cpp/aspose.pdf.annotations/commonfigureannotation/set_interiorcolor/_index.md new file mode 100644 index 0000000000..abc1f23d7e --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/commonfigureannotation/set_interiorcolor/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::CommonFigureAnnotation::set_InteriorColor method +linktitle: set_InteriorColor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::CommonFigureAnnotation::set_InteriorColor method. Interior color with which to fill the annotation''s rectangle or ellipse in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/commonfigureannotation/set_interiorcolor/ +--- +## CommonFigureAnnotation::set_InteriorColor method + + +Interior color with which to fill the annotation's rectangle or ellipse. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::CommonFigureAnnotation::set_InteriorColor(System::SharedPtr value) +``` + +## See Also + +* Class [Color](../../../aspose.pdf/color/) +* Class [CommonFigureAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/cornerprintermarkannotation/_index.md b/english/cpp/aspose.pdf.annotations/cornerprintermarkannotation/_index.md new file mode 100644 index 0000000000..298194cee0 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/cornerprintermarkannotation/_index.md @@ -0,0 +1,90 @@ +--- +title: Aspose::Pdf::Annotations::CornerPrinterMarkAnnotation class +linktitle: CornerPrinterMarkAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::CornerPrinterMarkAnnotation class. Represents annotation types that are placed in the corners of the printed page in C++.' +type: docs +weight: 2200 +url: /cpp/aspose.pdf.annotations/cornerprintermarkannotation/ +--- +## CornerPrinterMarkAnnotation class + + +Represents annotation types that are placed in the corners of the printed page. + +```cpp +class CornerPrinterMarkAnnotation : public Aspose::Pdf::Annotations::PrinterMarkAnnotation +``` + +## Methods + +| Method | Description | +| --- | --- | +| virtual [Accept](../annotation/accept/)(System::SharedPtr\) | Accepts visitor for annotation processing. | +| static [AddPrinterMarks](../printermarkannotation/addprintermarks/)(System::SharedPtr\, PrinterMarksKind) | Adds printer's marks to all pages in the specified document. | +| static [AddPrinterMarks](../printermarkannotation/addprintermarks/)(System::SharedPtr\, PrinterMarksKind) | Adds printer's marks to the specified page. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| virtual [ChangeAfterResize](../annotation/changeafterresize/)(System::SharedPtr\) | Update parameters and appearance, according to the matrix transform. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [Flatten](../annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](../annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../annotation/get_alignment/)() | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| virtual [get_AnnotationType](../annotation/get_annotationtype/)() | Gets type of annotation. | +| [get_Appearance](../annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../annotation/get_border/)() const | Gets annotation border characteristics. [Border](../border/) | +| [get_Characteristics](../annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../annotation/get_color/)() | Gets annotation color. | +| [get_Contents](../annotation/get_contents/)() | Gets annotation text. | +| [get_Flags](../annotation/get_flags/)() | Flags of the annotation. | +| [get_FullName](../annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../annotation/get_height/)() | Gets height of the annotation. | +| [get_HorizontalAlignment](../annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| [get_Modified](../annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Name](../annotation/get_name/)() | Gets annotation name on the page. | +| virtual [get_PageIndex](../annotation/get_pageindex/)() | Gets index of page which contains annotation. | +| [get_Position](./get_position/)() const | Get or sets the position of the mark on the page. | +| virtual [get_Rect](../annotation/get_rect/)() | Gets annotation rectangle. | +| [get_States](../annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_TextHorizontalAlignment](../annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| static [get_UpdateAppearanceOnConvert](../annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetRectangle](../annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| virtual [set_ActiveState](../annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../annotation/set_alignment/)(TextAlignment) | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_Border](../annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../border/) | +| [set_Color](../annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](../annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_Flags](../annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| virtual [set_Height](../annotation/set_height/)(double) | Sets height of the annotation. | +| [set_HorizontalAlignment](../annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| [set_Modified](../annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Name](../annotation/set_name/)(System::String) | Sets annotation name on the page. | +| [set_Position](./set_position/)(PrinterMarkCornerPosition) | Get or sets the position of the mark on the page. | +| virtual [set_Rect](../annotation/set_rect/)(System::SharedPtr\) | Sets annotation rectangle. | +| [set_TextHorizontalAlignment](../annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| static [set_UpdateAppearanceOnConvert](../annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +## See Also + +* Class [PrinterMarkAnnotation](../printermarkannotation/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/cornerprintermarkannotation/get_position/_index.md b/english/cpp/aspose.pdf.annotations/cornerprintermarkannotation/get_position/_index.md new file mode 100644 index 0000000000..8f35ac0167 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/cornerprintermarkannotation/get_position/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::CornerPrinterMarkAnnotation::get_Position method +linktitle: get_Position +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::CornerPrinterMarkAnnotation::get_Position method. Get or sets the position of the mark on the page in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/cornerprintermarkannotation/get_position/ +--- +## CornerPrinterMarkAnnotation::get_Position method + + +Get or sets the position of the mark on the page. + +```cpp +ASPOSE_PDF_SHARED_API PrinterMarkCornerPosition Aspose::Pdf::Annotations::CornerPrinterMarkAnnotation::get_Position() const +``` + +## See Also + +* Enum [PrinterMarkCornerPosition](../../printermarkcornerposition/) +* Class [CornerPrinterMarkAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/cornerprintermarkannotation/set_position/_index.md b/english/cpp/aspose.pdf.annotations/cornerprintermarkannotation/set_position/_index.md new file mode 100644 index 0000000000..156eadfbc7 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/cornerprintermarkannotation/set_position/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::CornerPrinterMarkAnnotation::set_Position method +linktitle: set_Position +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::CornerPrinterMarkAnnotation::set_Position method. Get or sets the position of the mark on the page in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/cornerprintermarkannotation/set_position/ +--- +## CornerPrinterMarkAnnotation::set_Position method + + +Get or sets the position of the mark on the page. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::CornerPrinterMarkAnnotation::set_Position(PrinterMarkCornerPosition value) +``` + +## See Also + +* Enum [PrinterMarkCornerPosition](../../printermarkcornerposition/) +* Class [CornerPrinterMarkAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/customexplicitdestination/_index.md b/english/cpp/aspose.pdf.annotations/customexplicitdestination/_index.md new file mode 100644 index 0000000000..7db883bb33 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/customexplicitdestination/_index.md @@ -0,0 +1,33 @@ +--- +title: Aspose::Pdf::Annotations::CustomExplicitDestination class +linktitle: CustomExplicitDestination +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::CustomExplicitDestination class. Represents custom explicit destination in C++.' +type: docs +weight: 2300 +url: /cpp/aspose.pdf.annotations/customexplicitdestination/ +--- +## CustomExplicitDestination class + + +Represents custom explicit destination. + +```cpp +class CustomExplicitDestination : public Aspose::Pdf::Annotations::ExplicitDestination +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [CreateDestination](../explicitdestination/createdestination/)(System::SharedPtr\, ExplicitDestinationType, const System::ArrayPtr\\&) | Creates instances of [ExplicitDestination](../explicitdestination/) descendant classes. | +| static [CreateDestination](../explicitdestination/createdestination/)(System::SharedPtr\, int32_t, ExplicitDestinationType, const System::ArrayPtr\\&) | Creates instances of [ExplicitDestination](../explicitdestination/) descendant classes. | +| static [CreateDestination](../explicitdestination/createdestination/)(int32_t, ExplicitDestinationType, const System::ArrayPtr\\&) | Creates instances of [ExplicitDestination](../explicitdestination/) descendant classes. | +| [get_Page](../explicitdestination/get_page/)() const | Gets the destination page object. | +| [get_PageNumber](../explicitdestination/get_pagenumber/)() const | Gets the destination page number. | +| [ToString](./tostring/)() const override | Converts to page number. | +## See Also + +* Class [ExplicitDestination](../explicitdestination/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/customexplicitdestination/tostring/_index.md b/english/cpp/aspose.pdf.annotations/customexplicitdestination/tostring/_index.md new file mode 100644 index 0000000000..a626f10cca --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/customexplicitdestination/tostring/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::CustomExplicitDestination::ToString method +linktitle: ToString +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::CustomExplicitDestination::ToString method. Converts to page number in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/customexplicitdestination/tostring/ +--- +## CustomExplicitDestination::ToString method + + +Converts to page number. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::CustomExplicitDestination::ToString() const override +``` + + +### ReturnValue + +[Page](../../../aspose.pdf/page/) number. + +## See Also + +* Class [CustomExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/dash/_index.md b/english/cpp/aspose.pdf.annotations/dash/_index.md new file mode 100644 index 0000000000..83948f025c --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/dash/_index.md @@ -0,0 +1,33 @@ +--- +title: Aspose::Pdf::Annotations::Dash class +linktitle: Dash +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Dash class. Class representing line dash pattern in C++.' +type: docs +weight: 2400 +url: /cpp/aspose.pdf.annotations/dash/ +--- +## Dash class + + +Class representing line dash pattern. + +```cpp +class Dash : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Dash](./dash/)(int32_t, int32_t) | Constructor for [Dash](./). Defines dashed border with specified dash and gap, which are unchanged for the entire dashed border. | +| [Dash](./dash/)(System::ArrayPtr\) | Constructor for [Dash](./). Defines a pattern of dashes and gaps that shall be used in drawing a dashed border. | +| [get_Off](./get_off/)() | Gets length of first gap between dashes. | +| [get_On](./get_on/)() | Gets length of first dash. | +| [get_Pattern](./get_pattern/)() const | Gets dash array defining a pattern of dashes and gaps that shall be used in drawing a dashed border. | +| [set_Off](./set_off/)(int32_t) | Sets length of first gap between dashes. | +| [set_On](./set_on/)(int32_t) | Sets length of first dash. | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/dash/dash/_index.md b/english/cpp/aspose.pdf.annotations/dash/dash/_index.md new file mode 100644 index 0000000000..d2b17fa2df --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/dash/dash/_index.md @@ -0,0 +1,80 @@ +--- +title: Aspose::Pdf::Annotations::Dash::Dash constructor +linktitle: Dash +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Dash::Dash constructor. Constructor for Dash. Defines dashed border with specified dash and gap, which are unchanged for the entire dashed border in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/dash/dash/ +--- +## Dash::Dash(int32_t, int32_t) constructor + + +Constructor for [Dash](../). Defines dashed border with specified dash and gap, which are unchanged for the entire dashed border. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::Dash::Dash(int32_t on, int32_t off) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| on | int32_t | Length of the dash. | +| off | int32_t | Length of the gap. | +## Remarks + + + + + + on + + + Length of the dash. + + + + + off + + + Length of the gap. + + + +## See Also + +* Class [Dash](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## Dash::Dash(System::ArrayPtr\) constructor + + +Constructor for [Dash](../). Defines a pattern of dashes and gaps that shall be used in drawing a dashed border. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::Dash::Dash(System::ArrayPtr pattern) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pattern | System::ArrayPtr\ | A dash array (of two values minimum) defining a pattern of dashes and gaps that shall be used in drawing a dashed border. | +## Remarks + + + + + + pattern + + + A dash array (of two values minimum) defining a pattern of dashes and gaps that shall be used in drawing a dashed border. + + + +## See Also + +* Class [Dash](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/dash/get_off/_index.md b/english/cpp/aspose.pdf.annotations/dash/get_off/_index.md new file mode 100644 index 0000000000..b64e51d9e3 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/dash/get_off/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Dash::get_Off method +linktitle: get_Off +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Dash::get_Off method. Gets length of first gap between dashes in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/dash/get_off/ +--- +## Dash::get_Off method + + +Gets length of first gap between dashes. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Annotations::Dash::get_Off() +``` + +## See Also + +* Class [Dash](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/dash/get_on/_index.md b/english/cpp/aspose.pdf.annotations/dash/get_on/_index.md new file mode 100644 index 0000000000..8e4372a31a --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/dash/get_on/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Dash::get_On method +linktitle: get_On +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Dash::get_On method. Gets length of first dash in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/dash/get_on/ +--- +## Dash::get_On method + + +Gets length of first dash. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Annotations::Dash::get_On() +``` + +## See Also + +* Class [Dash](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/dash/get_pattern/_index.md b/english/cpp/aspose.pdf.annotations/dash/get_pattern/_index.md new file mode 100644 index 0000000000..06de1759a2 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/dash/get_pattern/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Dash::get_Pattern method +linktitle: get_Pattern +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Dash::get_Pattern method. Gets dash array defining a pattern of dashes and gaps that shall be used in drawing a dashed border in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/dash/get_pattern/ +--- +## Dash::get_Pattern method + + +Gets dash array defining a pattern of dashes and gaps that shall be used in drawing a dashed border. + +```cpp +ASPOSE_PDF_SHARED_API System::ArrayPtr Aspose::Pdf::Annotations::Dash::get_Pattern() const +``` + +## See Also + +* Class [Dash](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/dash/set_off/_index.md b/english/cpp/aspose.pdf.annotations/dash/set_off/_index.md new file mode 100644 index 0000000000..3663eed658 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/dash/set_off/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Dash::set_Off method +linktitle: set_Off +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Dash::set_Off method. Sets length of first gap between dashes in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/dash/set_off/ +--- +## Dash::set_Off method + + +Sets length of first gap between dashes. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::Dash::set_Off(int32_t value) +``` + +## See Also + +* Class [Dash](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/dash/set_on/_index.md b/english/cpp/aspose.pdf.annotations/dash/set_on/_index.md new file mode 100644 index 0000000000..d63c24e5c5 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/dash/set_on/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Dash::set_On method +linktitle: set_On +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Dash::set_On method. Sets length of first dash in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/dash/set_on/ +--- +## Dash::set_On method + + +Sets length of first dash. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::Dash::set_On(int32_t value) +``` + +## See Also + +* Class [Dash](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/defaultappearance/_index.md b/english/cpp/aspose.pdf.annotations/defaultappearance/_index.md new file mode 100644 index 0000000000..2765bed75a --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/defaultappearance/_index.md @@ -0,0 +1,39 @@ +--- +title: Aspose::Pdf::Annotations::DefaultAppearance class +linktitle: DefaultAppearance +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::DefaultAppearance class. Describes default appearance of field (font, text size and color) in C++.' +type: docs +weight: 2500 +url: /cpp/aspose.pdf.annotations/defaultappearance/ +--- +## DefaultAppearance class + + +Describes default appearance of field (font, text size and color). + +```cpp +class DefaultAppearance : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [DefaultAppearance](./defaultappearance/)() | Constructor of [DefaultAppearance](./). | +| [DefaultAppearance](./defaultappearance/)(System::String, double, System::Drawing::Color) | Constructor of [DefaultAppearance](./). | +| [DefaultAppearance](./defaultappearance/)(System::SharedPtr\, double, System::Drawing::Color) | Constructor of Default Appearance. Previously created font may be specified as default font. | +| [get_Font](./get_font/)() const | Gets font specified as default for text. | +| [get_FontName](./get_fontname/)() | Gets font name in the default appearance. | +| [get_FontResourceName](./get_fontresourcename/)() const | Gets font name in the default appearance. | +| [get_FontSize](./get_fontsize/)() const | Gets font size in default apperance. | +| [get_Text](./get_text/)() | Gets the list of pdf operators which represent appearence. | +| [get_TextColor](./get_textcolor/)() const | Gets the color of text in the default appearance. | +| [set_FontName](./set_fontname/)(System::String) | Gets font name in the default appearance. | +| [set_FontResourceName](./set_fontresourcename/)(System::String) | Gets font name in the default appearance. | +| [set_FontSize](./set_fontsize/)(double) | Gets font size in default apperance. | +| [set_TextColor](./set_textcolor/)(System::Drawing::Color) | Sets the color of text in the default appearance. | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/defaultappearance/defaultappearance/_index.md b/english/cpp/aspose.pdf.annotations/defaultappearance/defaultappearance/_index.md new file mode 100644 index 0000000000..5485712723 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/defaultappearance/defaultappearance/_index.md @@ -0,0 +1,124 @@ +--- +title: Aspose::Pdf::Annotations::DefaultAppearance::DefaultAppearance constructor +linktitle: DefaultAppearance +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::DefaultAppearance::DefaultAppearance constructor. Constructor of DefaultAppearance in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.annotations/defaultappearance/defaultappearance/ +--- +## DefaultAppearance::DefaultAppearance() constructor + + +Constructor of [DefaultAppearance](../). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::DefaultAppearance::DefaultAppearance() +``` + +## See Also + +* Class [DefaultAppearance](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## DefaultAppearance::DefaultAppearance(System::String, double, System::Drawing::Color) constructor + + +Constructor of [DefaultAppearance](../). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::DefaultAppearance::DefaultAppearance(System::String fontName, double fontSize, System::Drawing::Color textColor) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fontName | System::String | Font name. | +| fontSize | double | Font size. | +| textColor | System::Drawing::Color | [Color](../../../aspose.pdf/color/) of text. | +## Remarks + + + + + + fontName + + + Font name. + + + + + fontSize + + + Font size. + + + + + textColor + + + + Color of text. + + + +## See Also + +* Class [DefaultAppearance](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## DefaultAppearance::DefaultAppearance(System::SharedPtr\, double, System::Drawing::Color) constructor + + +Constructor of Default Appearance. Previously created font may be specified as default font. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::DefaultAppearance::DefaultAppearance(System::SharedPtr font, double fontSize, System::Drawing::Color textColor) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| font | System::SharedPtr\ | Font which will be used as default. | +| fontSize | double | Font size. | +| textColor | System::Drawing::Color | [Color](../../../aspose.pdf/color/) of text. | +## Remarks + + + + + + font + + + Font which will be used as default. + + + + + fontSize + + + Font size. + + + + + textColor + + + + Color of text. + + + +## See Also + +* Class [Font](../../../aspose.pdf.text/font/) +* Class [DefaultAppearance](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/defaultappearance/get_font/_index.md b/english/cpp/aspose.pdf.annotations/defaultappearance/get_font/_index.md new file mode 100644 index 0000000000..75ce9de17a --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/defaultappearance/get_font/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::DefaultAppearance::get_Font method +linktitle: get_Font +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::DefaultAppearance::get_Font method. Gets font specified as default for text in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.annotations/defaultappearance/get_font/ +--- +## DefaultAppearance::get_Font method + + +Gets font specified as default for text. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::DefaultAppearance::get_Font() const +``` + +## See Also + +* Class [Font](../../../aspose.pdf.text/font/) +* Class [DefaultAppearance](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/defaultappearance/get_fontname/_index.md b/english/cpp/aspose.pdf.annotations/defaultappearance/get_fontname/_index.md new file mode 100644 index 0000000000..adb7aef7ff --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/defaultappearance/get_fontname/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::DefaultAppearance::get_FontName method +linktitle: get_FontName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::DefaultAppearance::get_FontName method. Gets font name in the default appearance in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/defaultappearance/get_fontname/ +--- +## DefaultAppearance::get_FontName method + + +Gets font name in the default appearance. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::DefaultAppearance::get_FontName() +``` + +## See Also + +* Class [DefaultAppearance](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/defaultappearance/get_fontresourcename/_index.md b/english/cpp/aspose.pdf.annotations/defaultappearance/get_fontresourcename/_index.md new file mode 100644 index 0000000000..3911ac73e6 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/defaultappearance/get_fontresourcename/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::DefaultAppearance::get_FontResourceName method +linktitle: get_FontResourceName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::DefaultAppearance::get_FontResourceName method. Gets font name in the default appearance in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.annotations/defaultappearance/get_fontresourcename/ +--- +## DefaultAppearance::get_FontResourceName method + + +Gets font name in the default appearance. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::DefaultAppearance::get_FontResourceName() const +``` + +## See Also + +* Class [DefaultAppearance](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/defaultappearance/get_fontsize/_index.md b/english/cpp/aspose.pdf.annotations/defaultappearance/get_fontsize/_index.md new file mode 100644 index 0000000000..02d7d5fa09 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/defaultappearance/get_fontsize/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::DefaultAppearance::get_FontSize method +linktitle: get_FontSize +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::DefaultAppearance::get_FontSize method. Gets font size in default apperance in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/defaultappearance/get_fontsize/ +--- +## DefaultAppearance::get_FontSize method + + +Gets font size in default apperance. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Annotations::DefaultAppearance::get_FontSize() const +``` + +## See Also + +* Class [DefaultAppearance](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/defaultappearance/get_text/_index.md b/english/cpp/aspose.pdf.annotations/defaultappearance/get_text/_index.md new file mode 100644 index 0000000000..fc0d2a87ce --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/defaultappearance/get_text/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::DefaultAppearance::get_Text method +linktitle: get_Text +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::DefaultAppearance::get_Text method. Gets the list of pdf operators which represent appearence in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.annotations/defaultappearance/get_text/ +--- +## DefaultAppearance::get_Text method + + +Gets the list of pdf operators which represent appearence. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::DefaultAppearance::get_Text() +``` + +## See Also + +* Class [DefaultAppearance](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/defaultappearance/get_textcolor/_index.md b/english/cpp/aspose.pdf.annotations/defaultappearance/get_textcolor/_index.md new file mode 100644 index 0000000000..4ad4b5ba3d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/defaultappearance/get_textcolor/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::DefaultAppearance::get_TextColor method +linktitle: get_TextColor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::DefaultAppearance::get_TextColor method. Gets the color of text in the default appearance in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/defaultappearance/get_textcolor/ +--- +## DefaultAppearance::get_TextColor method + + +Gets the color of text in the default appearance. + +```cpp +ASPOSE_PDF_SHARED_API System::Drawing::Color Aspose::Pdf::Annotations::DefaultAppearance::get_TextColor() const +``` + +## See Also + +* Class [DefaultAppearance](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/defaultappearance/set_fontname/_index.md b/english/cpp/aspose.pdf.annotations/defaultappearance/set_fontname/_index.md new file mode 100644 index 0000000000..d1cd173f65 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/defaultappearance/set_fontname/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::DefaultAppearance::set_FontName method +linktitle: set_FontName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::DefaultAppearance::set_FontName method. Gets font name in the default appearance in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/defaultappearance/set_fontname/ +--- +## DefaultAppearance::set_FontName method + + +Gets font name in the default appearance. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::DefaultAppearance::set_FontName(System::String value) +``` + +## See Also + +* Class [DefaultAppearance](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/defaultappearance/set_fontresourcename/_index.md b/english/cpp/aspose.pdf.annotations/defaultappearance/set_fontresourcename/_index.md new file mode 100644 index 0000000000..f2d5c44584 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/defaultappearance/set_fontresourcename/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::DefaultAppearance::set_FontResourceName method +linktitle: set_FontResourceName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::DefaultAppearance::set_FontResourceName method. Gets font name in the default appearance in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.annotations/defaultappearance/set_fontresourcename/ +--- +## DefaultAppearance::set_FontResourceName method + + +Gets font name in the default appearance. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::DefaultAppearance::set_FontResourceName(System::String value) +``` + +## See Also + +* Class [DefaultAppearance](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/defaultappearance/set_fontsize/_index.md b/english/cpp/aspose.pdf.annotations/defaultappearance/set_fontsize/_index.md new file mode 100644 index 0000000000..a7ee8aa9cc --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/defaultappearance/set_fontsize/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::DefaultAppearance::set_FontSize method +linktitle: set_FontSize +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::DefaultAppearance::set_FontSize method. Gets font size in default apperance in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/defaultappearance/set_fontsize/ +--- +## DefaultAppearance::set_FontSize method + + +Gets font size in default apperance. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::DefaultAppearance::set_FontSize(double value) +``` + +## See Also + +* Class [DefaultAppearance](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/defaultappearance/set_textcolor/_index.md b/english/cpp/aspose.pdf.annotations/defaultappearance/set_textcolor/_index.md new file mode 100644 index 0000000000..f4dc0e33b8 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/defaultappearance/set_textcolor/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::DefaultAppearance::set_TextColor method +linktitle: set_TextColor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::DefaultAppearance::set_TextColor method. Sets the color of text in the default appearance in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/defaultappearance/set_textcolor/ +--- +## DefaultAppearance::set_TextColor method + + +Sets the color of text in the default appearance. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::DefaultAppearance::set_TextColor(System::Drawing::Color value) +``` + +## See Also + +* Class [DefaultAppearance](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/documentactioncollection/_index.md b/english/cpp/aspose.pdf.annotations/documentactioncollection/_index.md new file mode 100644 index 0000000000..7b59b4c4dd --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/documentactioncollection/_index.md @@ -0,0 +1,37 @@ +--- +title: Aspose::Pdf::Annotations::DocumentActionCollection class +linktitle: DocumentActionCollection +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::DocumentActionCollection class. Class describes actions performed on some actions with document in C++.' +type: docs +weight: 2600 +url: /cpp/aspose.pdf.annotations/documentactioncollection/ +--- +## DocumentActionCollection class + + +Class describes actions performed on some actions with document. + +```cpp +class DocumentActionCollection : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [DocumentActionCollection](./documentactioncollection/)(System::SharedPtr\) | Constructor for [DocumentActionCollection](./). Constructs [DocumentActionCollection](./) objects from Pdf.Kit.Engine [Document](../../aspose.pdf/document/) object. | +| [get_AfterPrinting](./get_afterprinting/)() const | Action that will be performed after document printing. | +| [get_AfterSaving](./get_aftersaving/)() const | Gets action that will be performed after document saving. | +| [get_BeforeClosing](./get_beforeclosing/)() const | Gets action that will be performed before documetn closing. | +| [get_BeforePrinting](./get_beforeprinting/)() const | Action that will be performed before document printing. | +| [get_BeforeSaving](./get_beforesaving/)() const | Gets action performed before document saving. | +| [set_AfterPrinting](./set_afterprinting/)(System::SharedPtr\) | Action that will be performed after document printing. | +| [set_AfterSaving](./set_aftersaving/)(System::SharedPtr\) | Sets action that will be performed after document saving. | +| [set_BeforeClosing](./set_beforeclosing/)(System::SharedPtr\) | Sets action that will be performed before documetn closing. | +| [set_BeforePrinting](./set_beforeprinting/)(System::SharedPtr\) | Action that will be performed before document printing. | +| [set_BeforeSaving](./set_beforesaving/)(System::SharedPtr\) | Sets action performed before document saving. | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/documentactioncollection/documentactioncollection/_index.md b/english/cpp/aspose.pdf.annotations/documentactioncollection/documentactioncollection/_index.md new file mode 100644 index 0000000000..7d199f7485 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/documentactioncollection/documentactioncollection/_index.md @@ -0,0 +1,42 @@ +--- +title: Aspose::Pdf::Annotations::DocumentActionCollection::DocumentActionCollection constructor +linktitle: DocumentActionCollection +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::DocumentActionCollection::DocumentActionCollection constructor. Constructor for DocumentActionCollection. Constructs DocumentActionCollection objects from Pdf.Kit.Engine Document object in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.annotations/documentactioncollection/documentactioncollection/ +--- +## DocumentActionCollection::DocumentActionCollection constructor + + +Constructor for [DocumentActionCollection](../). Constructs [DocumentActionCollection](../) objects from Pdf.Kit.Engine [Document](../../../aspose.pdf/document/) object. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::DocumentActionCollection::DocumentActionCollection(System::SharedPtr document) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | [Document](../../../aspose.pdf/document/) for which action colleciton is created. | +## Remarks + + + + + + document + + + + Document for which action colleciton is created. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [DocumentActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/documentactioncollection/get_afterprinting/_index.md b/english/cpp/aspose.pdf.annotations/documentactioncollection/get_afterprinting/_index.md new file mode 100644 index 0000000000..3bde4aee66 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/documentactioncollection/get_afterprinting/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::DocumentActionCollection::get_AfterPrinting method +linktitle: get_AfterPrinting +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::DocumentActionCollection::get_AfterPrinting method. Action that will be performed after document printing in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.annotations/documentactioncollection/get_afterprinting/ +--- +## DocumentActionCollection::get_AfterPrinting method + + +Action that will be performed after document printing. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::DocumentActionCollection::get_AfterPrinting() const +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [DocumentActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/documentactioncollection/get_aftersaving/_index.md b/english/cpp/aspose.pdf.annotations/documentactioncollection/get_aftersaving/_index.md new file mode 100644 index 0000000000..01dcd05f38 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/documentactioncollection/get_aftersaving/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::DocumentActionCollection::get_AfterSaving method +linktitle: get_AfterSaving +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::DocumentActionCollection::get_AfterSaving method. Gets action that will be performed after document saving in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/documentactioncollection/get_aftersaving/ +--- +## DocumentActionCollection::get_AfterSaving method + + +Gets action that will be performed after document saving. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::DocumentActionCollection::get_AfterSaving() const +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [DocumentActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/documentactioncollection/get_beforeclosing/_index.md b/english/cpp/aspose.pdf.annotations/documentactioncollection/get_beforeclosing/_index.md new file mode 100644 index 0000000000..0623dd9a38 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/documentactioncollection/get_beforeclosing/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::DocumentActionCollection::get_BeforeClosing method +linktitle: get_BeforeClosing +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::DocumentActionCollection::get_BeforeClosing method. Gets action that will be performed before documetn closing in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/documentactioncollection/get_beforeclosing/ +--- +## DocumentActionCollection::get_BeforeClosing method + + +Gets action that will be performed before documetn closing. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::DocumentActionCollection::get_BeforeClosing() const +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [DocumentActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/documentactioncollection/get_beforeprinting/_index.md b/english/cpp/aspose.pdf.annotations/documentactioncollection/get_beforeprinting/_index.md new file mode 100644 index 0000000000..c66c785b76 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/documentactioncollection/get_beforeprinting/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::DocumentActionCollection::get_BeforePrinting method +linktitle: get_BeforePrinting +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::DocumentActionCollection::get_BeforePrinting method. Action that will be performed before document printing in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.annotations/documentactioncollection/get_beforeprinting/ +--- +## DocumentActionCollection::get_BeforePrinting method + + +Action that will be performed before document printing. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::DocumentActionCollection::get_BeforePrinting() const +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [DocumentActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/documentactioncollection/get_beforesaving/_index.md b/english/cpp/aspose.pdf.annotations/documentactioncollection/get_beforesaving/_index.md new file mode 100644 index 0000000000..dc3f78efd0 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/documentactioncollection/get_beforesaving/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::DocumentActionCollection::get_BeforeSaving method +linktitle: get_BeforeSaving +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::DocumentActionCollection::get_BeforeSaving method. Gets action performed before document saving in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/documentactioncollection/get_beforesaving/ +--- +## DocumentActionCollection::get_BeforeSaving method + + +Gets action performed before document saving. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::DocumentActionCollection::get_BeforeSaving() const +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [DocumentActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/documentactioncollection/set_afterprinting/_index.md b/english/cpp/aspose.pdf.annotations/documentactioncollection/set_afterprinting/_index.md new file mode 100644 index 0000000000..ffb76f1b84 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/documentactioncollection/set_afterprinting/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::DocumentActionCollection::set_AfterPrinting method +linktitle: set_AfterPrinting +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::DocumentActionCollection::set_AfterPrinting method. Action that will be performed after document printing in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.annotations/documentactioncollection/set_afterprinting/ +--- +## DocumentActionCollection::set_AfterPrinting method + + +Action that will be performed after document printing. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::DocumentActionCollection::set_AfterPrinting(System::SharedPtr value) +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [DocumentActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/documentactioncollection/set_aftersaving/_index.md b/english/cpp/aspose.pdf.annotations/documentactioncollection/set_aftersaving/_index.md new file mode 100644 index 0000000000..510995112d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/documentactioncollection/set_aftersaving/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::DocumentActionCollection::set_AfterSaving method +linktitle: set_AfterSaving +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::DocumentActionCollection::set_AfterSaving method. Sets action that will be performed after document saving in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/documentactioncollection/set_aftersaving/ +--- +## DocumentActionCollection::set_AfterSaving method + + +Sets action that will be performed after document saving. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::DocumentActionCollection::set_AfterSaving(System::SharedPtr value) +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [DocumentActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/documentactioncollection/set_beforeclosing/_index.md b/english/cpp/aspose.pdf.annotations/documentactioncollection/set_beforeclosing/_index.md new file mode 100644 index 0000000000..7453bf6955 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/documentactioncollection/set_beforeclosing/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::DocumentActionCollection::set_BeforeClosing method +linktitle: set_BeforeClosing +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::DocumentActionCollection::set_BeforeClosing method. Sets action that will be performed before documetn closing in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/documentactioncollection/set_beforeclosing/ +--- +## DocumentActionCollection::set_BeforeClosing method + + +Sets action that will be performed before documetn closing. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::DocumentActionCollection::set_BeforeClosing(System::SharedPtr value) +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [DocumentActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/documentactioncollection/set_beforeprinting/_index.md b/english/cpp/aspose.pdf.annotations/documentactioncollection/set_beforeprinting/_index.md new file mode 100644 index 0000000000..ced8fd0b63 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/documentactioncollection/set_beforeprinting/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::DocumentActionCollection::set_BeforePrinting method +linktitle: set_BeforePrinting +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::DocumentActionCollection::set_BeforePrinting method. Action that will be performed before document printing in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.annotations/documentactioncollection/set_beforeprinting/ +--- +## DocumentActionCollection::set_BeforePrinting method + + +Action that will be performed before document printing. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::DocumentActionCollection::set_BeforePrinting(System::SharedPtr value) +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [DocumentActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/documentactioncollection/set_beforesaving/_index.md b/english/cpp/aspose.pdf.annotations/documentactioncollection/set_beforesaving/_index.md new file mode 100644 index 0000000000..8e7c5aa3e4 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/documentactioncollection/set_beforesaving/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::DocumentActionCollection::set_BeforeSaving method +linktitle: set_BeforeSaving +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::DocumentActionCollection::set_BeforeSaving method. Sets action performed before document saving in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/documentactioncollection/set_beforesaving/ +--- +## DocumentActionCollection::set_BeforeSaving method + + +Sets action performed before document saving. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::DocumentActionCollection::set_BeforeSaving(System::SharedPtr value) +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [DocumentActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/explicitdestination/_index.md b/english/cpp/aspose.pdf.annotations/explicitdestination/_index.md new file mode 100644 index 0000000000..22717f2dff --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/explicitdestination/_index.md @@ -0,0 +1,33 @@ +--- +title: Aspose::Pdf::Annotations::ExplicitDestination class +linktitle: ExplicitDestination +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::ExplicitDestination class. Represents the base class for explicit destinations in PDF document in C++.' +type: docs +weight: 2700 +url: /cpp/aspose.pdf.annotations/explicitdestination/ +--- +## ExplicitDestination class + + +Represents the base class for explicit destinations in PDF document. + +```cpp +class ExplicitDestination : public Aspose::Pdf::Annotations::IAppointment +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [CreateDestination](./createdestination/)(System::SharedPtr\, ExplicitDestinationType, const System::ArrayPtr\\&) | Creates instances of [ExplicitDestination](./) descendant classes. | +| static [CreateDestination](./createdestination/)(System::SharedPtr\, int32_t, ExplicitDestinationType, const System::ArrayPtr\\&) | Creates instances of [ExplicitDestination](./) descendant classes. | +| static [CreateDestination](./createdestination/)(int32_t, ExplicitDestinationType, const System::ArrayPtr\\&) | Creates instances of [ExplicitDestination](./) descendant classes. | +| [get_Page](./get_page/)() const | Gets the destination page object. | +| [get_PageNumber](./get_pagenumber/)() const | Gets the destination page number. | +| virtual [ToString](./tostring/)() const | Returns string representation of [ExplicitDestination](./) object. | +## See Also + +* Class [IAppointment](../iappointment/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/explicitdestination/createdestination/_index.md b/english/cpp/aspose.pdf.annotations/explicitdestination/createdestination/_index.md new file mode 100644 index 0000000000..98c02b25b0 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/explicitdestination/createdestination/_index.md @@ -0,0 +1,191 @@ +--- +title: Aspose::Pdf::Annotations::ExplicitDestination::CreateDestination method +linktitle: CreateDestination +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::ExplicitDestination::CreateDestination method. Creates instances of ExplicitDestination descendant classes in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/explicitdestination/createdestination/ +--- +## ExplicitDestination::CreateDestination(System::SharedPtr\, ExplicitDestinationType, const System::ArrayPtr\\&) method + + +Creates instances of [ExplicitDestination](../) descendant classes. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::ExplicitDestination::CreateDestination(System::SharedPtr page, ExplicitDestinationType type, const System::ArrayPtr &values) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The object of destination page. | +| type | ExplicitDestinationType | The type of explicit destination. | +| values | const System::ArrayPtr\\& | Array of double values. | + +### ReturnValue + +The explicit destination object. +## Remarks + + + + + + page + + + The object of destination page. + + + + + type + + + The type of explicit destination. + + + + + values + + + Array of double values. + + + +## See Also + +* Class [ExplicitDestination](../) +* Class [Page](../../../aspose.pdf/page/) +* Enum [ExplicitDestinationType](../../explicitdestinationtype/) +* Class [ExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## ExplicitDestination::CreateDestination(System::SharedPtr\, int32_t, ExplicitDestinationType, const System::ArrayPtr\\&) method + + +Creates instances of [ExplicitDestination](../) descendant classes. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::ExplicitDestination::CreateDestination(System::SharedPtr doc, int32_t pageNumber, ExplicitDestinationType type, const System::ArrayPtr &values) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| doc | System::SharedPtr\ | [Document](../../../aspose.pdf/document/) where destination will be created. | +| pageNumber | int32_t | Number of the page. | +| type | ExplicitDestinationType | Destionatyion type. | +| values | const System::ArrayPtr\\& | Array of destination specific values. | + +### ReturnValue + +The explicit destination object. +## Remarks + + + + Deprecated + + Use the method without Document argument. + + + + + doc + + + + Document where destination will be created. + + + + + pageNumber + + + Number of the page. + + + + + type + + + Destionatyion type. + + + + + values + + + Array of destination specific values. + + + +## See Also + +* Class [ExplicitDestination](../) +* Class [Document](../../../aspose.pdf/document/) +* Enum [ExplicitDestinationType](../../explicitdestinationtype/) +* Class [ExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## ExplicitDestination::CreateDestination(int32_t, ExplicitDestinationType, const System::ArrayPtr\\&) method + + +Creates instances of [ExplicitDestination](../) descendant classes. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::ExplicitDestination::CreateDestination(int32_t pageNumber, ExplicitDestinationType type, const System::ArrayPtr &values) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageNumber | int32_t | The destination page number. | +| type | ExplicitDestinationType | The type of explicit destination. | +| values | const System::ArrayPtr\\& | Array of double values. | + +### ReturnValue + +The explicit destination object. +## Remarks + + + + + + pageNumber + + + The destination page number. + + + + + type + + + The type of explicit destination. + + + + + values + + + Array of double values. + + + +## See Also + +* Class [ExplicitDestination](../) +* Enum [ExplicitDestinationType](../../explicitdestinationtype/) +* Class [ExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/explicitdestination/get_page/_index.md b/english/cpp/aspose.pdf.annotations/explicitdestination/get_page/_index.md new file mode 100644 index 0000000000..78fef33c4c --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/explicitdestination/get_page/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::ExplicitDestination::get_Page method +linktitle: get_Page +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::ExplicitDestination::get_Page method. Gets the destination page object in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/explicitdestination/get_page/ +--- +## ExplicitDestination::get_Page method + + +Gets the destination page object. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::ExplicitDestination::get_Page() const +``` + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [ExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/explicitdestination/get_pagenumber/_index.md b/english/cpp/aspose.pdf.annotations/explicitdestination/get_pagenumber/_index.md new file mode 100644 index 0000000000..485114f8fb --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/explicitdestination/get_pagenumber/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::ExplicitDestination::get_PageNumber method +linktitle: get_PageNumber +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::ExplicitDestination::get_PageNumber method. Gets the destination page number in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/explicitdestination/get_pagenumber/ +--- +## ExplicitDestination::get_PageNumber method + + +Gets the destination page number. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Annotations::ExplicitDestination::get_PageNumber() const +``` + +## See Also + +* Class [ExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/explicitdestination/tostring/_index.md b/english/cpp/aspose.pdf.annotations/explicitdestination/tostring/_index.md new file mode 100644 index 0000000000..154cb87d0c --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/explicitdestination/tostring/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::ExplicitDestination::ToString method +linktitle: ToString +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::ExplicitDestination::ToString method. Returns string representation of ExplicitDestination object in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/explicitdestination/tostring/ +--- +## ExplicitDestination::ToString method + + +Returns string representation of [ExplicitDestination](../) object. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::ExplicitDestination::ToString() const override=0 +``` + + +### ReturnValue + +String representation. + +## See Also + +* Class [ExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/explicitdestinationtype/_index.md b/english/cpp/aspose.pdf.annotations/explicitdestinationtype/_index.md new file mode 100644 index 0000000000..48ea5bbc6c --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/explicitdestinationtype/_index.md @@ -0,0 +1,35 @@ +--- +title: Aspose::Pdf::Annotations::ExplicitDestinationType enum +linktitle: ExplicitDestinationType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::ExplicitDestinationType enum. Enumerates the types of explicit destinations in C++.' +type: docs +weight: 15100 +url: /cpp/aspose.pdf.annotations/explicitdestinationtype/ +--- +## ExplicitDestinationType enum + + +Enumerates the types of explicit destinations. + +```cpp +enum class ExplicitDestinationType +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| XYZ | 0 | Display the page with the coordinates (left, top) positioned at the upper-left corner of the window and the contents of the page magnified by the factor zoom. A null value for any of the parameters left, top, or zoom specifies that the current value of that parameter is to be retained unchanged. A zoom value of 0 has the same meaning as a null value. | +| Fit | 1 | Display the page with its contents magnified just enough to fit the entire page within the window both horizontally and vertically. If the required horizontal and vertical magnification factors are different, use the smaller of the two, centering the page within the window in the other dimension. | +| FitH | 2 | Display the page with the vertical coordinate top positioned at the top edge of the window and the contents of the page magnified just enough to fit the entire width of the page within the window. A null value for top specifies that the current value of that parameter is to be retained unchanged. | +| FitV | 3 | Display the page with the horizontal coordinate left positioned at the left edge of the window and the contents of the page magnified just enough to fit the entire height of the page within the window. A null value for left specifies that the current value of that parameter is to be retained unchanged. | +| FitR | 4 | Display the page with its contents magnified just enough to fit the rectangle specified by the coordinates left, bottom, right, and topentirely within the window both horizontally and vertically. If the required horizontal and vertical magnification factors are different, use the smaller of the two, centering the rectangle within the window in the other dimension. A null value for any of the parameters may result in unpredictable behavior. | +| FitB | 5 | Display the page with its contents magnified just enough to fit its bounding box entirely within the window both horizontally and vertically. If the required horizontal and vertical magnification factors are different, use the smaller of the two, centering the bounding box within the window in the other dimension. | +| FitBH | 6 | Display the page with the vertical coordinate top positioned at the top edge of the window and the contents of the page magnified just enough to fit the entire width of its bounding box within the window. A null value for top specifies that the current value of that parameter is to be retained unchanged. | +| FitBV | 7 | Display the page with the horizontal coordinate left positioned at the left edge of the window and the contents of the page magnified just enough to fit the entire height of its bounding box within the window. A null value for left specifies that the current value of that parameter is to be retained unchanged. | + +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/explicitdestinationtypeconverter/_index.md b/english/cpp/aspose.pdf.annotations/explicitdestinationtypeconverter/_index.md new file mode 100644 index 0000000000..1e9274cf99 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/explicitdestinationtypeconverter/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::ExplicitDestinationTypeConverter class +linktitle: ExplicitDestinationTypeConverter +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Annotations::ExplicitDestinationTypeConverter class in C++.' +type: docs +weight: 2800 +url: /cpp/aspose.pdf.annotations/explicitdestinationtypeconverter/ +--- +## ExplicitDestinationTypeConverter class + + + + +```cpp +class ExplicitDestinationTypeConverter : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [ToEnum](./toenum/)(System::String) | | +| static [ToString](./tostring/)(ExplicitDestinationType) | | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/explicitdestinationtypeconverter/toenum/_index.md b/english/cpp/aspose.pdf.annotations/explicitdestinationtypeconverter/toenum/_index.md new file mode 100644 index 0000000000..10ced4cd25 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/explicitdestinationtypeconverter/toenum/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::ExplicitDestinationTypeConverter::ToEnum method +linktitle: ToEnum +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToEnum method of Aspose::Pdf::Annotations::ExplicitDestinationTypeConverter class in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/explicitdestinationtypeconverter/toenum/ +--- +## ExplicitDestinationTypeConverter::ToEnum method + + + + +```cpp +static ASPOSE_PDF_SHARED_API ExplicitDestinationType Aspose::Pdf::Annotations::ExplicitDestinationTypeConverter::ToEnum(System::String value) +``` + +## See Also + +* Enum [ExplicitDestinationType](../../explicitdestinationtype/) +* Class [ExplicitDestinationTypeConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/explicitdestinationtypeconverter/tostring/_index.md b/english/cpp/aspose.pdf.annotations/explicitdestinationtypeconverter/tostring/_index.md new file mode 100644 index 0000000000..39c74ae0ac --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/explicitdestinationtypeconverter/tostring/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::ExplicitDestinationTypeConverter::ToString method +linktitle: ToString +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToString method of Aspose::Pdf::Annotations::ExplicitDestinationTypeConverter class in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/explicitdestinationtypeconverter/tostring/ +--- +## ExplicitDestinationTypeConverter::ToString method + + + + +```cpp +static ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::ExplicitDestinationTypeConverter::ToString(ExplicitDestinationType value) +``` + +## See Also + +* Enum [ExplicitDestinationType](../../explicitdestinationtype/) +* Class [ExplicitDestinationTypeConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/fdfreader/_index.md b/english/cpp/aspose.pdf.annotations/fdfreader/_index.md new file mode 100644 index 0000000000..60df993561 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fdfreader/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Annotations::FdfReader class +linktitle: FdfReader +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FdfReader class. Class which performes reading of FDF format in C++.' +type: docs +weight: 2900 +url: /cpp/aspose.pdf.annotations/fdfreader/ +--- +## FdfReader class + + +Class which performes reading of FDF format. + +```cpp +class FdfReader : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [ReadAnnotations](./readannotations/)(System::SharedPtr\, System::SharedPtr\) | Import annotations from FDF file and put them into document. | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/fdfreader/readannotations/_index.md b/english/cpp/aspose.pdf.annotations/fdfreader/readannotations/_index.md new file mode 100644 index 0000000000..d3d37b958d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fdfreader/readannotations/_index.md @@ -0,0 +1,51 @@ +--- +title: Aspose::Pdf::Annotations::FdfReader::ReadAnnotations method +linktitle: ReadAnnotations +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FdfReader::ReadAnnotations method. Import annotations from FDF file and put them into document in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/fdfreader/readannotations/ +--- +## FdfReader::ReadAnnotations method + + +Import annotations from FDF file and put them into document. + +```cpp +static ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::FdfReader::ReadAnnotations(System::SharedPtr stream, System::SharedPtr document) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| stream | System::SharedPtr\ | Source stream containing FDF file. | +| document | System::SharedPtr\ | [Document](../../../aspose.pdf/document/) where annotations will be added. | +## Remarks + + + + + + stream + + + Source stream containing FDF file. + + + + + document + + + + Document where annotations will be added. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [FdfReader](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/fileattachmentannotation/_index.md b/english/cpp/aspose.pdf.annotations/fileattachmentannotation/_index.md new file mode 100644 index 0000000000..3d5b751cf4 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fileattachmentannotation/_index.md @@ -0,0 +1,113 @@ +--- +title: Aspose::Pdf::Annotations::FileAttachmentAnnotation class +linktitle: FileAttachmentAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FileAttachmentAnnotation class. Class describes file attachment annotation in C++.' +type: docs +weight: 3000 +url: /cpp/aspose.pdf.annotations/fileattachmentannotation/ +--- +## FileAttachmentAnnotation class + + +Class describes file attachment annotation. + +```cpp +class FileAttachmentAnnotation : public Aspose::Pdf::Annotations::MarkupAnnotation +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Accept](./accept/)(System::SharedPtr\) override | Accepts visitor object to process annotation. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| virtual [ChangeAfterResize](../annotation/changeafterresize/)(System::SharedPtr\) | Update parameters and appearance, according to the matrix transform. | +| [ClearState](../markupannotation/clearstate/)() | Clears state and state model for the annotation. For example, clears the review status for an annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [FileAttachmentAnnotation](./fileattachmentannotation/)(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) | Creates new FileAttachment annotation on the specified page. | +| [Flatten](../annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](../annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../annotation/get_alignment/)() | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [get_AnnotationType](./get_annotationtype/)() override | Gets type of annotation. | +| [get_Appearance](../annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../annotation/get_border/)() const | Gets annotation border characteristics. [Border](../border/) | +| [get_Characteristics](../annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../annotation/get_color/)() | Gets annotation color. | +| [get_Contents](../annotation/get_contents/)() | Gets annotation text. | +| [get_CreationDate](../markupannotation/get_creationdate/)() | Gets date and time when annotation was created. | +| [get_File](./get_file/)() const | The specification of the file associated with this annotation. | +| [get_Flags](../annotation/get_flags/)() | Flags of the annotation. | +| [get_FullName](../annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../annotation/get_height/)() | Gets height of the annotation. | +| [get_HorizontalAlignment](../annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_Icon](./get_icon/)() | Gets icon that shall be used in displaying annotation. | +| [get_InReplyTo](../markupannotation/get_inreplyto/)() | A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| [get_Modified](../annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Name](../annotation/get_name/)() | Gets annotation name on the page. | +| [get_Opacity](./get_opacity/)() | Gets icon's opacity from 0 to 1: 0 - completely transparant, 1 - completely opaque. | +| virtual [get_PageIndex](../annotation/get_pageindex/)() | Gets index of page which contains annotation. | +| [get_Popup](../markupannotation/get_popup/)() | Pop-up annotation for entering or editing the text associated with this annotation. | +| virtual [get_Rect](../annotation/get_rect/)() | Gets annotation rectangle. | +| [get_ReplyType](../markupannotation/get_replytype/)() | A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. | +| [get_RichText](../markupannotation/get_richtext/)() | Gets a rich text string to be displayed in the pop-up window when the annotation is opened. | +| [get_States](../annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_Subject](../markupannotation/get_subject/)() | Gets text representing desciption of the object. | +| [get_TextHorizontalAlignment](../annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| [get_Title](../markupannotation/get_title/)() override | Gets a text that shall be displayed in title bar of annotation. | +| static [get_UpdateAppearanceOnConvert](../annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetRectangle](../annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| [GetState](../markupannotation/getstate/)() | Gets the state of the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [GetStateModel](../markupannotation/getstatemodel/)() | Gets the state model of the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [MarkupAnnotation](../markupannotation/markupannotation/)(System::SharedPtr\) | Constructor for markup annotation. | +| virtual [set_ActiveState](../annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../annotation/set_alignment/)(TextAlignment) | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_Border](../annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../border/) | +| [set_Color](../annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](../annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_File](./set_file/)(System::SharedPtr\) | The specification of the file associated with this annotation. | +| [set_Flags](../annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| virtual [set_Height](../annotation/set_height/)(double) | Sets height of the annotation. | +| [set_HorizontalAlignment](../annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_Icon](./set_icon/)(FileIcon) | Sets icon that shall be used in displaying annotation. | +| [set_InReplyTo](../markupannotation/set_inreplyto/)(System::SharedPtr\) | A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| [set_Modified](../annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Name](../annotation/set_name/)(System::String) | Sets annotation name on the page. | +| [set_Opacity](./set_opacity/)(double) | Sets icon's opacity from 0 to 1: 0 - completely transparant, 1 - completely opaque. | +| [set_Popup](../markupannotation/set_popup/)(System::SharedPtr\) | Pop-up annotation for entering or editing the text associated with this annotation. | +| virtual [set_Rect](../annotation/set_rect/)(System::SharedPtr\) | Sets annotation rectangle. | +| [set_ReplyType](../markupannotation/set_replytype/)(Aspose::Pdf::Annotations::ReplyType) | A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. | +| [set_RichText](../markupannotation/set_richtext/)(System::String) | Sets a rich text string to be displayed in the pop-up window when the annotation is opened. | +| [set_Subject](../markupannotation/set_subject/)(System::String) | Gets text representing desciption of the object. | +| [set_TextHorizontalAlignment](../annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| [set_Title](../markupannotation/set_title/)(System::String) override | Sets a text that shall be displayed in title bar of annotation. | +| static [set_UpdateAppearanceOnConvert](../annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [SetMarkedState](../markupannotation/setmarkedstate/)(bool) | Sets Marked and Unmarked state for the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SetReviewState](../markupannotation/setreviewstate/)(AnnotationState, System::String) | Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SetReviewState](../markupannotation/setreviewstate/)(AnnotationState) | Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. The state is set by the user who created the target annotation. The value is taken from the Title property of the target annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +## See Also + +* Class [MarkupAnnotation](../markupannotation/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/fileattachmentannotation/accept/_index.md b/english/cpp/aspose.pdf.annotations/fileattachmentannotation/accept/_index.md new file mode 100644 index 0000000000..ec3545bdb7 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fileattachmentannotation/accept/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Annotations::FileAttachmentAnnotation::Accept method +linktitle: Accept +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FileAttachmentAnnotation::Accept method. Accepts visitor object to process annotation in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.annotations/fileattachmentannotation/accept/ +--- +## FileAttachmentAnnotation::Accept method + + +Accepts visitor object to process annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::FileAttachmentAnnotation::Accept(System::SharedPtr visitor) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| visitor | System::SharedPtr\ | Visitor object. | +## Remarks + + + + + + visitor + + + Visitor object. + + + +## See Also + +* Class [AnnotationSelector](../../annotationselector/) +* Class [FileAttachmentAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/fileattachmentannotation/fileattachmentannotation/_index.md b/english/cpp/aspose.pdf.annotations/fileattachmentannotation/fileattachmentannotation/_index.md new file mode 100644 index 0000000000..24d95f65b6 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fileattachmentannotation/fileattachmentannotation/_index.md @@ -0,0 +1,62 @@ +--- +title: Aspose::Pdf::Annotations::FileAttachmentAnnotation::FileAttachmentAnnotation constructor +linktitle: FileAttachmentAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FileAttachmentAnnotation::FileAttachmentAnnotation constructor. Creates new FileAttachment annotation on the specified page in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.annotations/fileattachmentannotation/fileattachmentannotation/ +--- +## FileAttachmentAnnotation::FileAttachmentAnnotation constructor + + +Creates new FileAttachment annotation on the specified page. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::FileAttachmentAnnotation::FileAttachmentAnnotation(System::SharedPtr page, System::SharedPtr rect, System::SharedPtr fileSpec) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | [Document](../../../aspose.pdf/document/)'s page where annotation should be created. | +| rect | System::SharedPtr\ | Required rectangle that sets annotation's border. | +| fileSpec | System::SharedPtr\ | Describes the file that shoud be bound with the annotation. | +## Remarks + + + + + + page + + + + Document's page where annotation should be created. + + + + + rect + + + Required rectangle that sets annotation's border. + + + + + fileSpec + + + Describes the file that shoud be bound with the annotation. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [FileSpecification](../../../aspose.pdf/filespecification/) +* Class [FileAttachmentAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/fileattachmentannotation/get_annotationtype/_index.md b/english/cpp/aspose.pdf.annotations/fileattachmentannotation/get_annotationtype/_index.md new file mode 100644 index 0000000000..7e2245f3c0 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fileattachmentannotation/get_annotationtype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::FileAttachmentAnnotation::get_AnnotationType method +linktitle: get_AnnotationType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FileAttachmentAnnotation::get_AnnotationType method. Gets type of annotation in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/fileattachmentannotation/get_annotationtype/ +--- +## FileAttachmentAnnotation::get_AnnotationType method + + +Gets type of annotation. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::AnnotationType Aspose::Pdf::Annotations::FileAttachmentAnnotation::get_AnnotationType() override +``` + +## See Also + +* Enum [AnnotationType](../../annotationtype/) +* Class [FileAttachmentAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/fileattachmentannotation/get_file/_index.md b/english/cpp/aspose.pdf.annotations/fileattachmentannotation/get_file/_index.md new file mode 100644 index 0000000000..f1e7b7e50b --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fileattachmentannotation/get_file/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::FileAttachmentAnnotation::get_File method +linktitle: get_File +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FileAttachmentAnnotation::get_File method. The specification of the file associated with this annotation in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/fileattachmentannotation/get_file/ +--- +## FileAttachmentAnnotation::get_File method + + +The specification of the file associated with this annotation. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::FileAttachmentAnnotation::get_File() const +``` + +## See Also + +* Class [FileSpecification](../../../aspose.pdf/filespecification/) +* Class [FileAttachmentAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/fileattachmentannotation/get_icon/_index.md b/english/cpp/aspose.pdf.annotations/fileattachmentannotation/get_icon/_index.md new file mode 100644 index 0000000000..c1a7d9716c --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fileattachmentannotation/get_icon/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::FileAttachmentAnnotation::get_Icon method +linktitle: get_Icon +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FileAttachmentAnnotation::get_Icon method. Gets icon that shall be used in displaying annotation in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/fileattachmentannotation/get_icon/ +--- +## FileAttachmentAnnotation::get_Icon method + + +Gets icon that shall be used in displaying annotation. + +```cpp +ASPOSE_PDF_SHARED_API FileIcon Aspose::Pdf::Annotations::FileAttachmentAnnotation::get_Icon() +``` + +## See Also + +* Enum [FileIcon](../../fileicon/) +* Class [FileAttachmentAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/fileattachmentannotation/get_opacity/_index.md b/english/cpp/aspose.pdf.annotations/fileattachmentannotation/get_opacity/_index.md new file mode 100644 index 0000000000..fc5c89abab --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fileattachmentannotation/get_opacity/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::FileAttachmentAnnotation::get_Opacity method +linktitle: get_Opacity +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FileAttachmentAnnotation::get_Opacity method. Gets icon''s opacity from 0 to 1: 0 - completely transparant, 1 - completely opaque in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/fileattachmentannotation/get_opacity/ +--- +## FileAttachmentAnnotation::get_Opacity method + + +Gets icon's opacity from 0 to 1: 0 - completely transparant, 1 - completely opaque. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Annotations::FileAttachmentAnnotation::get_Opacity() +``` + +## See Also + +* Class [FileAttachmentAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/fileattachmentannotation/set_file/_index.md b/english/cpp/aspose.pdf.annotations/fileattachmentannotation/set_file/_index.md new file mode 100644 index 0000000000..c57bc5d571 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fileattachmentannotation/set_file/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::FileAttachmentAnnotation::set_File method +linktitle: set_File +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FileAttachmentAnnotation::set_File method. The specification of the file associated with this annotation in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/fileattachmentannotation/set_file/ +--- +## FileAttachmentAnnotation::set_File method + + +The specification of the file associated with this annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::FileAttachmentAnnotation::set_File(System::SharedPtr value) +``` + +## See Also + +* Class [FileSpecification](../../../aspose.pdf/filespecification/) +* Class [FileAttachmentAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/fileattachmentannotation/set_icon/_index.md b/english/cpp/aspose.pdf.annotations/fileattachmentannotation/set_icon/_index.md new file mode 100644 index 0000000000..88f3a98ca8 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fileattachmentannotation/set_icon/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::FileAttachmentAnnotation::set_Icon method +linktitle: set_Icon +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FileAttachmentAnnotation::set_Icon method. Sets icon that shall be used in displaying annotation in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/fileattachmentannotation/set_icon/ +--- +## FileAttachmentAnnotation::set_Icon method + + +Sets icon that shall be used in displaying annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::FileAttachmentAnnotation::set_Icon(FileIcon value) +``` + +## See Also + +* Enum [FileIcon](../../fileicon/) +* Class [FileAttachmentAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/fileattachmentannotation/set_opacity/_index.md b/english/cpp/aspose.pdf.annotations/fileattachmentannotation/set_opacity/_index.md new file mode 100644 index 0000000000..2912193b98 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fileattachmentannotation/set_opacity/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::FileAttachmentAnnotation::set_Opacity method +linktitle: set_Opacity +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FileAttachmentAnnotation::set_Opacity method. Sets icon''s opacity from 0 to 1: 0 - completely transparant, 1 - completely opaque in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.annotations/fileattachmentannotation/set_opacity/ +--- +## FileAttachmentAnnotation::set_Opacity method + + +Sets icon's opacity from 0 to 1: 0 - completely transparant, 1 - completely opaque. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::FileAttachmentAnnotation::set_Opacity(double value) +``` + +## See Also + +* Class [FileAttachmentAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/fileicon/_index.md b/english/cpp/aspose.pdf.annotations/fileicon/_index.md new file mode 100644 index 0000000000..06fbc221c8 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fileicon/_index.md @@ -0,0 +1,31 @@ +--- +title: Aspose::Pdf::Annotations::FileIcon enum +linktitle: FileIcon +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FileIcon enum. An icon to be used in displaying the annotation in C++.' +type: docs +weight: 13100 +url: /cpp/aspose.pdf.annotations/fileicon/ +--- +## FileIcon enum + + +An icon to be used in displaying the annotation. + +```cpp +enum class FileIcon +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| PushPin | 0 | PushPin icon (default value). | +| Graph | 1 | Graph icon. | +| Paperclip | 2 | Paperclip icon. | +| Tag | 3 | This is tag icon. | + +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/fileiconconverter/_index.md b/english/cpp/aspose.pdf.annotations/fileiconconverter/_index.md new file mode 100644 index 0000000000..8471fbb3f6 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fileiconconverter/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::FileIconConverter class +linktitle: FileIconConverter +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Annotations::FileIconConverter class in C++.' +type: docs +weight: 3100 +url: /cpp/aspose.pdf.annotations/fileiconconverter/ +--- +## FileIconConverter class + + + + +```cpp +class FileIconConverter : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [ToEnum](./toenum/)(System::String) | | +| static [ToString](./tostring/)(FileIcon) | | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/fileiconconverter/toenum/_index.md b/english/cpp/aspose.pdf.annotations/fileiconconverter/toenum/_index.md new file mode 100644 index 0000000000..347c230103 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fileiconconverter/toenum/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::FileIconConverter::ToEnum method +linktitle: ToEnum +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToEnum method of Aspose::Pdf::Annotations::FileIconConverter class in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/fileiconconverter/toenum/ +--- +## FileIconConverter::ToEnum method + + + + +```cpp +static ASPOSE_PDF_SHARED_API FileIcon Aspose::Pdf::Annotations::FileIconConverter::ToEnum(System::String value) +``` + +## See Also + +* Enum [FileIcon](../../fileicon/) +* Class [FileIconConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/fileiconconverter/tostring/_index.md b/english/cpp/aspose.pdf.annotations/fileiconconverter/tostring/_index.md new file mode 100644 index 0000000000..b529a67d57 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fileiconconverter/tostring/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::FileIconConverter::ToString method +linktitle: ToString +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToString method of Aspose::Pdf::Annotations::FileIconConverter class in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/fileiconconverter/tostring/ +--- +## FileIconConverter::ToString method + + + + +```cpp +static ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::FileIconConverter::ToString(FileIcon value) +``` + +## See Also + +* Enum [FileIcon](../../fileicon/) +* Class [FileIconConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/fitbexplicitdestination/_index.md b/english/cpp/aspose.pdf.annotations/fitbexplicitdestination/_index.md new file mode 100644 index 0000000000..225e367b3a --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fitbexplicitdestination/_index.md @@ -0,0 +1,36 @@ +--- +title: Aspose::Pdf::Annotations::FitBExplicitDestination class +linktitle: FitBExplicitDestination +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FitBExplicitDestination class. Represents explicit destination that displays the page with its contents magnified just enough to fit its bounding box entirely within the window both horizontally and vertically. If the required horizontal and vertical magnification factors are different, use the smaller of the two, centering the bounding box within the window in the other dimension in C++.' +type: docs +weight: 3200 +url: /cpp/aspose.pdf.annotations/fitbexplicitdestination/ +--- +## FitBExplicitDestination class + + +Represents explicit destination that displays the page with its contents magnified just enough to fit its bounding box entirely within the window both horizontally and vertically. If the required horizontal and vertical magnification factors are different, use the smaller of the two, centering the bounding box within the window in the other dimension. + +```cpp +class FitBExplicitDestination : public Aspose::Pdf::Annotations::ExplicitDestination +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [CreateDestination](../explicitdestination/createdestination/)(System::SharedPtr\, ExplicitDestinationType, const System::ArrayPtr\\&) | Creates instances of [ExplicitDestination](../explicitdestination/) descendant classes. | +| static [CreateDestination](../explicitdestination/createdestination/)(System::SharedPtr\, int32_t, ExplicitDestinationType, const System::ArrayPtr\\&) | Creates instances of [ExplicitDestination](../explicitdestination/) descendant classes. | +| static [CreateDestination](../explicitdestination/createdestination/)(int32_t, ExplicitDestinationType, const System::ArrayPtr\\&) | Creates instances of [ExplicitDestination](../explicitdestination/) descendant classes. | +| [FitBExplicitDestination](./fitbexplicitdestination/)(System::SharedPtr\) | Creates local explicit destination. | +| [FitBExplicitDestination](./fitbexplicitdestination/)(System::SharedPtr\, int32_t) | Creates remote explicit destination. | +| [FitBExplicitDestination](./fitbexplicitdestination/)(int32_t) | Creates remote explicit destination. | +| [get_Page](../explicitdestination/get_page/)() const | Gets the destination page object. | +| [get_PageNumber](../explicitdestination/get_pagenumber/)() const | Gets the destination page number. | +| [ToString](./tostring/)() const override | Converts the object state into string value. Example: "1 FitB". | +## See Also + +* Class [ExplicitDestination](../explicitdestination/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/fitbexplicitdestination/fitbexplicitdestination/_index.md b/english/cpp/aspose.pdf.annotations/fitbexplicitdestination/fitbexplicitdestination/_index.md new file mode 100644 index 0000000000..50d3efde00 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fitbexplicitdestination/fitbexplicitdestination/_index.md @@ -0,0 +1,118 @@ +--- +title: Aspose::Pdf::Annotations::FitBExplicitDestination::FitBExplicitDestination constructor +linktitle: FitBExplicitDestination +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FitBExplicitDestination::FitBExplicitDestination constructor. Creates local explicit destination in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/fitbexplicitdestination/fitbexplicitdestination/ +--- +## FitBExplicitDestination::FitBExplicitDestination(System::SharedPtr\) constructor + + +Creates local explicit destination. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::FitBExplicitDestination::FitBExplicitDestination(System::SharedPtr page) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The destination page object. | +## Remarks + + + + + + page + + + The destination page object. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [FitBExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## FitBExplicitDestination::FitBExplicitDestination(System::SharedPtr\, int32_t) constructor + + +Creates remote explicit destination. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::FitBExplicitDestination::FitBExplicitDestination(System::SharedPtr document, int32_t pageNumber) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | The parent document that contains this object. | +| pageNumber | int32_t | The destination page number of remote document. | +## Remarks + + + + Deprecated + + Use constructor without Document argument. + + + + + document + + + The parent document that contains this object. + + + + + pageNumber + + + The destination page number of remote document. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [FitBExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## FitBExplicitDestination::FitBExplicitDestination(int32_t) constructor + + +Creates remote explicit destination. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::FitBExplicitDestination::FitBExplicitDestination(int32_t pageNumber) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageNumber | int32_t | The destination page number of remote document. | +## Remarks + + + + + + pageNumber + + + The destination page number of remote document. + + + +## See Also + +* Class [FitBExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/fitbexplicitdestination/tostring/_index.md b/english/cpp/aspose.pdf.annotations/fitbexplicitdestination/tostring/_index.md new file mode 100644 index 0000000000..8adaceeb1d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fitbexplicitdestination/tostring/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::FitBExplicitDestination::ToString method +linktitle: ToString +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FitBExplicitDestination::ToString method. Converts the object state into string value. Example: "1 FitB" in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/fitbexplicitdestination/tostring/ +--- +## FitBExplicitDestination::ToString method + + +Converts the object state into string value. Example: "1 FitB". + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::FitBExplicitDestination::ToString() const override +``` + + +### ReturnValue + +String value representing object state. + +## See Also + +* Class [FitBExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/fitbhexplicitdestination/_index.md b/english/cpp/aspose.pdf.annotations/fitbhexplicitdestination/_index.md new file mode 100644 index 0000000000..1637be0764 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fitbhexplicitdestination/_index.md @@ -0,0 +1,37 @@ +--- +title: Aspose::Pdf::Annotations::FitBHExplicitDestination class +linktitle: FitBHExplicitDestination +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FitBHExplicitDestination class. Represents explicit destination that displays the page with the vertical coordinate top positioned at the top edge of the window and the contents of the page magnified just enough to fit the entire width of its bounding box within the window. A null value for top specifies that the current value of that parameter is to be retained unchanged in C++.' +type: docs +weight: 3300 +url: /cpp/aspose.pdf.annotations/fitbhexplicitdestination/ +--- +## FitBHExplicitDestination class + + +Represents explicit destination that displays the page with the vertical coordinate top positioned at the top edge of the window and the contents of the page magnified just enough to fit the entire width of its bounding box within the window. A null value for top specifies that the current value of that parameter is to be retained unchanged. + +```cpp +class FitBHExplicitDestination : public Aspose::Pdf::Annotations::ExplicitDestination +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [CreateDestination](../explicitdestination/createdestination/)(System::SharedPtr\, ExplicitDestinationType, const System::ArrayPtr\\&) | Creates instances of [ExplicitDestination](../explicitdestination/) descendant classes. | +| static [CreateDestination](../explicitdestination/createdestination/)(System::SharedPtr\, int32_t, ExplicitDestinationType, const System::ArrayPtr\\&) | Creates instances of [ExplicitDestination](../explicitdestination/) descendant classes. | +| static [CreateDestination](../explicitdestination/createdestination/)(int32_t, ExplicitDestinationType, const System::ArrayPtr\\&) | Creates instances of [ExplicitDestination](../explicitdestination/) descendant classes. | +| [FitBHExplicitDestination](./fitbhexplicitdestination/)(System::SharedPtr\, double) | Creates local explicit destination. | +| [FitBHExplicitDestination](./fitbhexplicitdestination/)(System::SharedPtr\, int32_t, double) | Creates remote explicit destination. | +| [FitBHExplicitDestination](./fitbhexplicitdestination/)(int32_t, double) | Creates remote explicit destination. | +| [get_Page](../explicitdestination/get_page/)() const | Gets the destination page object. | +| [get_PageNumber](../explicitdestination/get_pagenumber/)() const | Gets the destination page number. | +| [get_Top](./get_top/)() | Gets the vertical coordinate top positioned at the top edge of the window. | +| [ToString](./tostring/)() const override | Converts the object state into string value. Example: "1 FitBH 100". | +## See Also + +* Class [ExplicitDestination](../explicitdestination/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/fitbhexplicitdestination/fitbhexplicitdestination/_index.md b/english/cpp/aspose.pdf.annotations/fitbhexplicitdestination/fitbhexplicitdestination/_index.md new file mode 100644 index 0000000000..6c6154a6db --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fitbhexplicitdestination/fitbhexplicitdestination/_index.md @@ -0,0 +1,145 @@ +--- +title: Aspose::Pdf::Annotations::FitBHExplicitDestination::FitBHExplicitDestination constructor +linktitle: FitBHExplicitDestination +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FitBHExplicitDestination::FitBHExplicitDestination constructor. Creates local explicit destination in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/fitbhexplicitdestination/fitbhexplicitdestination/ +--- +## FitBHExplicitDestination::FitBHExplicitDestination(System::SharedPtr\, double) constructor + + +Creates local explicit destination. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::FitBHExplicitDestination::FitBHExplicitDestination(System::SharedPtr page, double top) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The destination page object. | +| top | double | The vertical coordinate top positioned at the top edge of the window. | +## Remarks + + + + + + page + + + The destination page object. + + + + + top + + + The vertical coordinate top positioned at the top edge of the window. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [FitBHExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## FitBHExplicitDestination::FitBHExplicitDestination(System::SharedPtr\, int32_t, double) constructor + + +Creates remote explicit destination. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::FitBHExplicitDestination::FitBHExplicitDestination(System::SharedPtr document, int32_t pageNumber, double top) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | The parent document that contains this object. | +| pageNumber | int32_t | The destination page number of remote document. | +| top | double | The vertical coordinate top positioned at the top edge of the window. | +## Remarks + + + + Deprecated + + Use constructor without Document argument. + + + + + document + + + The parent document that contains this object. + + + + + pageNumber + + + The destination page number of remote document. + + + + + top + + + The vertical coordinate top positioned at the top edge of the window. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [FitBHExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## FitBHExplicitDestination::FitBHExplicitDestination(int32_t, double) constructor + + +Creates remote explicit destination. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::FitBHExplicitDestination::FitBHExplicitDestination(int32_t pageNumber, double top) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageNumber | int32_t | The destination page number of remote document. | +| top | double | The vertical coordinate top positioned at the top edge of the window. | +## Remarks + + + + + + pageNumber + + + The destination page number of remote document. + + + + + top + + + The vertical coordinate top positioned at the top edge of the window. + + + +## See Also + +* Class [FitBHExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/fitbhexplicitdestination/get_top/_index.md b/english/cpp/aspose.pdf.annotations/fitbhexplicitdestination/get_top/_index.md new file mode 100644 index 0000000000..dd69fea307 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fitbhexplicitdestination/get_top/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::FitBHExplicitDestination::get_Top method +linktitle: get_Top +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FitBHExplicitDestination::get_Top method. Gets the vertical coordinate top positioned at the top edge of the window in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/fitbhexplicitdestination/get_top/ +--- +## FitBHExplicitDestination::get_Top method + + +Gets the vertical coordinate top positioned at the top edge of the window. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Annotations::FitBHExplicitDestination::get_Top() +``` + +## See Also + +* Class [FitBHExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/fitbhexplicitdestination/tostring/_index.md b/english/cpp/aspose.pdf.annotations/fitbhexplicitdestination/tostring/_index.md new file mode 100644 index 0000000000..1d3ba9a377 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fitbhexplicitdestination/tostring/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::FitBHExplicitDestination::ToString method +linktitle: ToString +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FitBHExplicitDestination::ToString method. Converts the object state into string value. Example: "1 FitBH 100" in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/fitbhexplicitdestination/tostring/ +--- +## FitBHExplicitDestination::ToString method + + +Converts the object state into string value. Example: "1 FitBH 100". + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::FitBHExplicitDestination::ToString() const override +``` + + +### ReturnValue + +String value representing object state. + +## See Also + +* Class [FitBHExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/fitbvexplicitdestination/_index.md b/english/cpp/aspose.pdf.annotations/fitbvexplicitdestination/_index.md new file mode 100644 index 0000000000..c8da19d774 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fitbvexplicitdestination/_index.md @@ -0,0 +1,37 @@ +--- +title: Aspose::Pdf::Annotations::FitBVExplicitDestination class +linktitle: FitBVExplicitDestination +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FitBVExplicitDestination class. Represents explicit destination that displays the page with the horizontal coordinate left positioned at the left edge of the window and the contents of the page magnified just enough to fit the entire height of its bounding box within the window. A null value for left specifies that the current value of that parameter is to be retained unchanged in C++.' +type: docs +weight: 3400 +url: /cpp/aspose.pdf.annotations/fitbvexplicitdestination/ +--- +## FitBVExplicitDestination class + + +Represents explicit destination that displays the page with the horizontal coordinate left positioned at the left edge of the window and the contents of the page magnified just enough to fit the entire height of its bounding box within the window. A null value for left specifies that the current value of that parameter is to be retained unchanged. + +```cpp +class FitBVExplicitDestination : public Aspose::Pdf::Annotations::ExplicitDestination +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [CreateDestination](../explicitdestination/createdestination/)(System::SharedPtr\, ExplicitDestinationType, const System::ArrayPtr\\&) | Creates instances of [ExplicitDestination](../explicitdestination/) descendant classes. | +| static [CreateDestination](../explicitdestination/createdestination/)(System::SharedPtr\, int32_t, ExplicitDestinationType, const System::ArrayPtr\\&) | Creates instances of [ExplicitDestination](../explicitdestination/) descendant classes. | +| static [CreateDestination](../explicitdestination/createdestination/)(int32_t, ExplicitDestinationType, const System::ArrayPtr\\&) | Creates instances of [ExplicitDestination](../explicitdestination/) descendant classes. | +| [FitBVExplicitDestination](./fitbvexplicitdestination/)(System::SharedPtr\, double) | Creates local explicit destination. | +| [FitBVExplicitDestination](./fitbvexplicitdestination/)(System::SharedPtr\, int32_t, double) | Creates remote explicit destination. | +| [FitBVExplicitDestination](./fitbvexplicitdestination/)(int32_t, double) | Creates remote explicit destination. | +| [get_Left](./get_left/)() | Gets the horizontal coordinate left positioned at the left edge of the window. | +| [get_Page](../explicitdestination/get_page/)() const | Gets the destination page object. | +| [get_PageNumber](../explicitdestination/get_pagenumber/)() const | Gets the destination page number. | +| [ToString](./tostring/)() const override | Converts the object state into string value. Example: "1 FitBV 100". | +## See Also + +* Class [ExplicitDestination](../explicitdestination/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/fitbvexplicitdestination/fitbvexplicitdestination/_index.md b/english/cpp/aspose.pdf.annotations/fitbvexplicitdestination/fitbvexplicitdestination/_index.md new file mode 100644 index 0000000000..68501354bd --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fitbvexplicitdestination/fitbvexplicitdestination/_index.md @@ -0,0 +1,145 @@ +--- +title: Aspose::Pdf::Annotations::FitBVExplicitDestination::FitBVExplicitDestination constructor +linktitle: FitBVExplicitDestination +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FitBVExplicitDestination::FitBVExplicitDestination constructor. Creates local explicit destination in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/fitbvexplicitdestination/fitbvexplicitdestination/ +--- +## FitBVExplicitDestination::FitBVExplicitDestination(System::SharedPtr\, double) constructor + + +Creates local explicit destination. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::FitBVExplicitDestination::FitBVExplicitDestination(System::SharedPtr page, double left) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The destination page object. | +| left | double | The horizontal coordinate left positioned at the left edge of the window. | +## Remarks + + + + + + page + + + The destination page object. + + + + + left + + + The horizontal coordinate left positioned at the left edge of the window. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [FitBVExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## FitBVExplicitDestination::FitBVExplicitDestination(System::SharedPtr\, int32_t, double) constructor + + +Creates remote explicit destination. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::FitBVExplicitDestination::FitBVExplicitDestination(System::SharedPtr document, int32_t pageNumber, double left) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | The parent document that contains this object. | +| pageNumber | int32_t | The destination page number of remote document. | +| left | double | The horizontal coordinate left positioned at the left edge of the window. | +## Remarks + + + + Deprecated + + Use constructor without Document argument. + + + + + document + + + The parent document that contains this object. + + + + + pageNumber + + + The destination page number of remote document. + + + + + left + + + The horizontal coordinate left positioned at the left edge of the window. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [FitBVExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## FitBVExplicitDestination::FitBVExplicitDestination(int32_t, double) constructor + + +Creates remote explicit destination. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::FitBVExplicitDestination::FitBVExplicitDestination(int32_t pageNumber, double left) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageNumber | int32_t | The destination page number of remote document. | +| left | double | The horizontal coordinate left positioned at the left edge of the window. | +## Remarks + + + + + + pageNumber + + + The destination page number of remote document. + + + + + left + + + The horizontal coordinate left positioned at the left edge of the window. + + + +## See Also + +* Class [FitBVExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/fitbvexplicitdestination/get_left/_index.md b/english/cpp/aspose.pdf.annotations/fitbvexplicitdestination/get_left/_index.md new file mode 100644 index 0000000000..6413d4e4af --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fitbvexplicitdestination/get_left/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::FitBVExplicitDestination::get_Left method +linktitle: get_Left +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FitBVExplicitDestination::get_Left method. Gets the horizontal coordinate left positioned at the left edge of the window in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/fitbvexplicitdestination/get_left/ +--- +## FitBVExplicitDestination::get_Left method + + +Gets the horizontal coordinate left positioned at the left edge of the window. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Annotations::FitBVExplicitDestination::get_Left() +``` + +## See Also + +* Class [FitBVExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/fitbvexplicitdestination/tostring/_index.md b/english/cpp/aspose.pdf.annotations/fitbvexplicitdestination/tostring/_index.md new file mode 100644 index 0000000000..b14ba6306b --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fitbvexplicitdestination/tostring/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::FitBVExplicitDestination::ToString method +linktitle: ToString +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FitBVExplicitDestination::ToString method. Converts the object state into string value. Example: "1 FitBV 100" in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/fitbvexplicitdestination/tostring/ +--- +## FitBVExplicitDestination::ToString method + + +Converts the object state into string value. Example: "1 FitBV 100". + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::FitBVExplicitDestination::ToString() const override +``` + + +### ReturnValue + +String value representing object state. + +## See Also + +* Class [FitBVExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/fitexplicitdestination/_index.md b/english/cpp/aspose.pdf.annotations/fitexplicitdestination/_index.md new file mode 100644 index 0000000000..47546d82f6 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fitexplicitdestination/_index.md @@ -0,0 +1,36 @@ +--- +title: Aspose::Pdf::Annotations::FitExplicitDestination class +linktitle: FitExplicitDestination +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FitExplicitDestination class. Represents explicit destination that displays the page with its contents magnified just enough to fit the entire page within the window both horizontally and vertically. If the required horizontal and vertical magnification factors are different, use the smaller of the two, centering the page within the window in the other dimension in C++.' +type: docs +weight: 3500 +url: /cpp/aspose.pdf.annotations/fitexplicitdestination/ +--- +## FitExplicitDestination class + + +Represents explicit destination that displays the page with its contents magnified just enough to fit the entire page within the window both horizontally and vertically. If the required horizontal and vertical magnification factors are different, use the smaller of the two, centering the page within the window in the other dimension. + +```cpp +class FitExplicitDestination : public Aspose::Pdf::Annotations::ExplicitDestination +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [CreateDestination](../explicitdestination/createdestination/)(System::SharedPtr\, ExplicitDestinationType, const System::ArrayPtr\\&) | Creates instances of [ExplicitDestination](../explicitdestination/) descendant classes. | +| static [CreateDestination](../explicitdestination/createdestination/)(System::SharedPtr\, int32_t, ExplicitDestinationType, const System::ArrayPtr\\&) | Creates instances of [ExplicitDestination](../explicitdestination/) descendant classes. | +| static [CreateDestination](../explicitdestination/createdestination/)(int32_t, ExplicitDestinationType, const System::ArrayPtr\\&) | Creates instances of [ExplicitDestination](../explicitdestination/) descendant classes. | +| [FitExplicitDestination](./fitexplicitdestination/)(System::SharedPtr\) | Creates local explicit destination. | +| [FitExplicitDestination](./fitexplicitdestination/)(System::SharedPtr\, int32_t) | Creates remote explicit destination. | +| [FitExplicitDestination](./fitexplicitdestination/)(int32_t) | Creates remote explicit destination. | +| [get_Page](../explicitdestination/get_page/)() const | Gets the destination page object. | +| [get_PageNumber](../explicitdestination/get_pagenumber/)() const | Gets the destination page number. | +| [ToString](./tostring/)() const override | Converts the object state into string value. Example: "1 Fit". | +## See Also + +* Class [ExplicitDestination](../explicitdestination/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/fitexplicitdestination/fitexplicitdestination/_index.md b/english/cpp/aspose.pdf.annotations/fitexplicitdestination/fitexplicitdestination/_index.md new file mode 100644 index 0000000000..81de7d5102 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fitexplicitdestination/fitexplicitdestination/_index.md @@ -0,0 +1,118 @@ +--- +title: Aspose::Pdf::Annotations::FitExplicitDestination::FitExplicitDestination constructor +linktitle: FitExplicitDestination +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FitExplicitDestination::FitExplicitDestination constructor. Creates local explicit destination in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/fitexplicitdestination/fitexplicitdestination/ +--- +## FitExplicitDestination::FitExplicitDestination(System::SharedPtr\) constructor + + +Creates local explicit destination. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::FitExplicitDestination::FitExplicitDestination(System::SharedPtr page) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The destination page object. | +## Remarks + + + + + + page + + + The destination page object. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [FitExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## FitExplicitDestination::FitExplicitDestination(System::SharedPtr\, int32_t) constructor + + +Creates remote explicit destination. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::FitExplicitDestination::FitExplicitDestination(System::SharedPtr document, int32_t pageNumber) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | The [Aspose.Pdf.Document](../../../aspose.pdf/document/) object. | +| pageNumber | int32_t | The destination page number. | +## Remarks + + + + Deprecated + + Use constructor without Document argument. + + + + + document + + + The Aspose.Pdf.Document object. + + + + + pageNumber + + + The destination page number. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [FitExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## FitExplicitDestination::FitExplicitDestination(int32_t) constructor + + +Creates remote explicit destination. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::FitExplicitDestination::FitExplicitDestination(int32_t pageNumber) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageNumber | int32_t | The destination page number of remote document. | +## Remarks + + + + + + pageNumber + + + The destination page number of remote document. + + + +## See Also + +* Class [FitExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/fitexplicitdestination/tostring/_index.md b/english/cpp/aspose.pdf.annotations/fitexplicitdestination/tostring/_index.md new file mode 100644 index 0000000000..e1d127f9c2 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fitexplicitdestination/tostring/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::FitExplicitDestination::ToString method +linktitle: ToString +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FitExplicitDestination::ToString method. Converts the object state into string value. Example: "1 Fit" in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/fitexplicitdestination/tostring/ +--- +## FitExplicitDestination::ToString method + + +Converts the object state into string value. Example: "1 Fit". + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::FitExplicitDestination::ToString() const override +``` + + +### ReturnValue + +String value representing object state. + +## See Also + +* Class [FitExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/fithexplicitdestination/_index.md b/english/cpp/aspose.pdf.annotations/fithexplicitdestination/_index.md new file mode 100644 index 0000000000..cef32cbb6d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fithexplicitdestination/_index.md @@ -0,0 +1,37 @@ +--- +title: Aspose::Pdf::Annotations::FitHExplicitDestination class +linktitle: FitHExplicitDestination +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FitHExplicitDestination class. Represents explicit destination that displays the page with the vertical coordinate top positioned at the top edge of the window and the contents of the page magnified just enough to fit the entire width of the page within the window. A null value for top specifies that the current value of that parameter is to be retained unchanged in C++.' +type: docs +weight: 3600 +url: /cpp/aspose.pdf.annotations/fithexplicitdestination/ +--- +## FitHExplicitDestination class + + +Represents explicit destination that displays the page with the vertical coordinate top positioned at the top edge of the window and the contents of the page magnified just enough to fit the entire width of the page within the window. A null value for top specifies that the current value of that parameter is to be retained unchanged. + +```cpp +class FitHExplicitDestination : public Aspose::Pdf::Annotations::ExplicitDestination +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [CreateDestination](../explicitdestination/createdestination/)(System::SharedPtr\, ExplicitDestinationType, const System::ArrayPtr\\&) | Creates instances of [ExplicitDestination](../explicitdestination/) descendant classes. | +| static [CreateDestination](../explicitdestination/createdestination/)(System::SharedPtr\, int32_t, ExplicitDestinationType, const System::ArrayPtr\\&) | Creates instances of [ExplicitDestination](../explicitdestination/) descendant classes. | +| static [CreateDestination](../explicitdestination/createdestination/)(int32_t, ExplicitDestinationType, const System::ArrayPtr\\&) | Creates instances of [ExplicitDestination](../explicitdestination/) descendant classes. | +| [FitHExplicitDestination](./fithexplicitdestination/)(System::SharedPtr\, double) | Creates local explicit destination. | +| [FitHExplicitDestination](./fithexplicitdestination/)(System::SharedPtr\, int32_t, double) | Creates remote explicit destination. | +| [FitHExplicitDestination](./fithexplicitdestination/)(int32_t, double) | Creates remote explicit destination. | +| [get_Page](../explicitdestination/get_page/)() const | Gets the destination page object. | +| [get_PageNumber](../explicitdestination/get_pagenumber/)() const | Gets the destination page number. | +| [get_Top](./get_top/)() | Gets the vertical coordinate top positioned at the top edge of the window. | +| [ToString](./tostring/)() const override | Converts the object state into string value. Example: "1 FitH 100". | +## See Also + +* Class [ExplicitDestination](../explicitdestination/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/fithexplicitdestination/fithexplicitdestination/_index.md b/english/cpp/aspose.pdf.annotations/fithexplicitdestination/fithexplicitdestination/_index.md new file mode 100644 index 0000000000..408ce5bb15 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fithexplicitdestination/fithexplicitdestination/_index.md @@ -0,0 +1,145 @@ +--- +title: Aspose::Pdf::Annotations::FitHExplicitDestination::FitHExplicitDestination constructor +linktitle: FitHExplicitDestination +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FitHExplicitDestination::FitHExplicitDestination constructor. Creates local explicit destination in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/fithexplicitdestination/fithexplicitdestination/ +--- +## FitHExplicitDestination::FitHExplicitDestination(System::SharedPtr\, double) constructor + + +Creates local explicit destination. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::FitHExplicitDestination::FitHExplicitDestination(System::SharedPtr page, double top) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The destination page object. | +| top | double | The vertical coordinate top positioned at the top edge of the window. | +## Remarks + + + + + + page + + + The destination page object. + + + + + top + + + The vertical coordinate top positioned at the top edge of the window. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [FitHExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## FitHExplicitDestination::FitHExplicitDestination(System::SharedPtr\, int32_t, double) constructor + + +Creates remote explicit destination. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::FitHExplicitDestination::FitHExplicitDestination(System::SharedPtr document, int32_t pageNumber, double top) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | The parent document that contains this object. | +| pageNumber | int32_t | The destination page number of remote document. | +| top | double | The vertical coordinate top positioned at the top edge of the window. | +## Remarks + + + + Deprecated + + Use constructor without Document argument. + + + + + document + + + The parent document that contains this object. + + + + + pageNumber + + + The destination page number of remote document. + + + + + top + + + The vertical coordinate top positioned at the top edge of the window. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [FitHExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## FitHExplicitDestination::FitHExplicitDestination(int32_t, double) constructor + + +Creates remote explicit destination. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::FitHExplicitDestination::FitHExplicitDestination(int32_t pageNumber, double top) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageNumber | int32_t | The destination page number of remote document. | +| top | double | The vertical coordinate top positioned at the top edge of the window. | +## Remarks + + + + + + pageNumber + + + The destination page number of remote document. + + + + + top + + + The vertical coordinate top positioned at the top edge of the window. + + + +## See Also + +* Class [FitHExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/fithexplicitdestination/get_top/_index.md b/english/cpp/aspose.pdf.annotations/fithexplicitdestination/get_top/_index.md new file mode 100644 index 0000000000..93bd8080cb --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fithexplicitdestination/get_top/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::FitHExplicitDestination::get_Top method +linktitle: get_Top +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FitHExplicitDestination::get_Top method. Gets the vertical coordinate top positioned at the top edge of the window in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/fithexplicitdestination/get_top/ +--- +## FitHExplicitDestination::get_Top method + + +Gets the vertical coordinate top positioned at the top edge of the window. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Annotations::FitHExplicitDestination::get_Top() +``` + +## See Also + +* Class [FitHExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/fithexplicitdestination/tostring/_index.md b/english/cpp/aspose.pdf.annotations/fithexplicitdestination/tostring/_index.md new file mode 100644 index 0000000000..902c9ec6ad --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fithexplicitdestination/tostring/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::FitHExplicitDestination::ToString method +linktitle: ToString +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FitHExplicitDestination::ToString method. Converts the object state into string value. Example: "1 FitH 100" in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/fithexplicitdestination/tostring/ +--- +## FitHExplicitDestination::ToString method + + +Converts the object state into string value. Example: "1 FitH 100". + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::FitHExplicitDestination::ToString() const override +``` + + +### ReturnValue + +String value representing object state. + +## See Also + +* Class [FitHExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/fitrexplicitdestination/_index.md b/english/cpp/aspose.pdf.annotations/fitrexplicitdestination/_index.md new file mode 100644 index 0000000000..9e56332883 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fitrexplicitdestination/_index.md @@ -0,0 +1,40 @@ +--- +title: Aspose::Pdf::Annotations::FitRExplicitDestination class +linktitle: FitRExplicitDestination +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FitRExplicitDestination class. Represents explicit destination that displays the page with its contents magnified just enough to fit the rectangle specified by the coordinates left, bottom, right, and topentirely within the window both horizontally and vertically. If the required horizontal and vertical magnification factors are different, use the smaller of the two, centering the rectangle within the window in the other dimension. A null value for any of the parameters may result in unpredictable behavior in C++.' +type: docs +weight: 3700 +url: /cpp/aspose.pdf.annotations/fitrexplicitdestination/ +--- +## FitRExplicitDestination class + + +Represents explicit destination that displays the page with its contents magnified just enough to fit the rectangle specified by the coordinates left, bottom, right, and topentirely within the window both horizontally and vertically. If the required horizontal and vertical magnification factors are different, use the smaller of the two, centering the rectangle within the window in the other dimension. A null value for any of the parameters may result in unpredictable behavior. + +```cpp +class FitRExplicitDestination : public Aspose::Pdf::Annotations::ExplicitDestination +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [CreateDestination](../explicitdestination/createdestination/)(System::SharedPtr\, ExplicitDestinationType, const System::ArrayPtr\\&) | Creates instances of [ExplicitDestination](../explicitdestination/) descendant classes. | +| static [CreateDestination](../explicitdestination/createdestination/)(System::SharedPtr\, int32_t, ExplicitDestinationType, const System::ArrayPtr\\&) | Creates instances of [ExplicitDestination](../explicitdestination/) descendant classes. | +| static [CreateDestination](../explicitdestination/createdestination/)(int32_t, ExplicitDestinationType, const System::ArrayPtr\\&) | Creates instances of [ExplicitDestination](../explicitdestination/) descendant classes. | +| [FitRExplicitDestination](./fitrexplicitdestination/)(System::SharedPtr\, double, double, double, double) | Creates local explicit destination. | +| [FitRExplicitDestination](./fitrexplicitdestination/)(System::SharedPtr\, int32_t, double, double, double, double) | Creates remote explicit destination. | +| [FitRExplicitDestination](./fitrexplicitdestination/)(int32_t, double, double, double, double) | Creates remote explicit destination. | +| [get_Bottom](./get_bottom/)() | Gets bottom vertical coordinate of visible rectangle. | +| [get_Left](./get_left/)() | Gets left horizontal coordinate of visible rectangle. | +| [get_Page](../explicitdestination/get_page/)() const | Gets the destination page object. | +| [get_PageNumber](../explicitdestination/get_pagenumber/)() const | Gets the destination page number. | +| [get_Right](./get_right/)() | Gets right horizontal coordinate of visible rectangle. | +| [get_Top](./get_top/)() | Gets top vertical coordinate of visible rectangle. | +| [ToString](./tostring/)() const override | Converts the object state into string value. Example: "1 FitR 100 200 300 400". | +## See Also + +* Class [ExplicitDestination](../explicitdestination/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/fitrexplicitdestination/fitrexplicitdestination/_index.md b/english/cpp/aspose.pdf.annotations/fitrexplicitdestination/fitrexplicitdestination/_index.md new file mode 100644 index 0000000000..73a632b52d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fitrexplicitdestination/fitrexplicitdestination/_index.md @@ -0,0 +1,226 @@ +--- +title: Aspose::Pdf::Annotations::FitRExplicitDestination::FitRExplicitDestination constructor +linktitle: FitRExplicitDestination +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FitRExplicitDestination::FitRExplicitDestination constructor. Creates local explicit destination in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/fitrexplicitdestination/fitrexplicitdestination/ +--- +## FitRExplicitDestination::FitRExplicitDestination(System::SharedPtr\, double, double, double, double) constructor + + +Creates local explicit destination. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::FitRExplicitDestination::FitRExplicitDestination(System::SharedPtr page, double left, double bottom, double right, double top) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The destination page object. | +| left | double | Left horizontal coordinate of visible rectangle. | +| bottom | double | Bottom vertical coordinate of visible rectangle. | +| right | double | Right horizontal coordinate of visible rectangle. | +| top | double | Top vertical coordinate of visible rectangle. | +## Remarks + + + + + + page + + + The destination page object. + + + + + left + + + Left horizontal coordinate of visible rectangle. + + + + + bottom + + + Bottom vertical coordinate of visible rectangle. + + + + + right + + + Right horizontal coordinate of visible rectangle. + + + + + top + + + Top vertical coordinate of visible rectangle. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [FitRExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## FitRExplicitDestination::FitRExplicitDestination(System::SharedPtr\, int32_t, double, double, double, double) constructor + + +Creates remote explicit destination. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::FitRExplicitDestination::FitRExplicitDestination(System::SharedPtr document, int32_t pageNumber, double left, double bottom, double right, double top) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | The parent document that contains this object. | +| pageNumber | int32_t | The destination page number of remote document. | +| left | double | Left horizontal coordinate of visible rectangle. | +| bottom | double | Bottom vertical coordinate of visible rectangle. | +| right | double | Right horizontal coordinate of visible rectangle. | +| top | double | Top vertical coordinate of visible rectangle. | +## Remarks + + + + Deprecated + + Use constructor without Document argument. + + + + + document + + + The parent document that contains this object. + + + + + pageNumber + + + The destination page number of remote document. + + + + + left + + + Left horizontal coordinate of visible rectangle. + + + + + bottom + + + Bottom vertical coordinate of visible rectangle. + + + + + right + + + Right horizontal coordinate of visible rectangle. + + + + + top + + + Top vertical coordinate of visible rectangle. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [FitRExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## FitRExplicitDestination::FitRExplicitDestination(int32_t, double, double, double, double) constructor + + +Creates remote explicit destination. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::FitRExplicitDestination::FitRExplicitDestination(int32_t pageNumber, double left, double bottom, double right, double top) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageNumber | int32_t | The destination page number of remote document. | +| left | double | Left horizontal coordinate of visible rectangle. | +| bottom | double | Bottom vertical coordinate of visible rectangle. | +| right | double | Right horizontal coordinate of visible rectangle. | +| top | double | Top vertical coordinate of visible rectangle. | +## Remarks + + + + + + pageNumber + + + The destination page number of remote document. + + + + + left + + + Left horizontal coordinate of visible rectangle. + + + + + bottom + + + Bottom vertical coordinate of visible rectangle. + + + + + right + + + Right horizontal coordinate of visible rectangle. + + + + + top + + + Top vertical coordinate of visible rectangle. + + + +## See Also + +* Class [FitRExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/fitrexplicitdestination/get_bottom/_index.md b/english/cpp/aspose.pdf.annotations/fitrexplicitdestination/get_bottom/_index.md new file mode 100644 index 0000000000..ecdbb78e1d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fitrexplicitdestination/get_bottom/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::FitRExplicitDestination::get_Bottom method +linktitle: get_Bottom +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FitRExplicitDestination::get_Bottom method. Gets bottom vertical coordinate of visible rectangle in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/fitrexplicitdestination/get_bottom/ +--- +## FitRExplicitDestination::get_Bottom method + + +Gets bottom vertical coordinate of visible rectangle. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Annotations::FitRExplicitDestination::get_Bottom() +``` + +## See Also + +* Class [FitRExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/fitrexplicitdestination/get_left/_index.md b/english/cpp/aspose.pdf.annotations/fitrexplicitdestination/get_left/_index.md new file mode 100644 index 0000000000..9067263ede --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fitrexplicitdestination/get_left/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::FitRExplicitDestination::get_Left method +linktitle: get_Left +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FitRExplicitDestination::get_Left method. Gets left horizontal coordinate of visible rectangle in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/fitrexplicitdestination/get_left/ +--- +## FitRExplicitDestination::get_Left method + + +Gets left horizontal coordinate of visible rectangle. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Annotations::FitRExplicitDestination::get_Left() +``` + +## See Also + +* Class [FitRExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/fitrexplicitdestination/get_right/_index.md b/english/cpp/aspose.pdf.annotations/fitrexplicitdestination/get_right/_index.md new file mode 100644 index 0000000000..2b2810b9e5 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fitrexplicitdestination/get_right/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::FitRExplicitDestination::get_Right method +linktitle: get_Right +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FitRExplicitDestination::get_Right method. Gets right horizontal coordinate of visible rectangle in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/fitrexplicitdestination/get_right/ +--- +## FitRExplicitDestination::get_Right method + + +Gets right horizontal coordinate of visible rectangle. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Annotations::FitRExplicitDestination::get_Right() +``` + +## See Also + +* Class [FitRExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/fitrexplicitdestination/get_top/_index.md b/english/cpp/aspose.pdf.annotations/fitrexplicitdestination/get_top/_index.md new file mode 100644 index 0000000000..ce47ed7a67 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fitrexplicitdestination/get_top/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::FitRExplicitDestination::get_Top method +linktitle: get_Top +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FitRExplicitDestination::get_Top method. Gets top vertical coordinate of visible rectangle in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/fitrexplicitdestination/get_top/ +--- +## FitRExplicitDestination::get_Top method + + +Gets top vertical coordinate of visible rectangle. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Annotations::FitRExplicitDestination::get_Top() +``` + +## See Also + +* Class [FitRExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/fitrexplicitdestination/tostring/_index.md b/english/cpp/aspose.pdf.annotations/fitrexplicitdestination/tostring/_index.md new file mode 100644 index 0000000000..ff5302e4cc --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fitrexplicitdestination/tostring/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::FitRExplicitDestination::ToString method +linktitle: ToString +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FitRExplicitDestination::ToString method. Converts the object state into string value. Example: "1 FitR 100 200 300 400" in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/fitrexplicitdestination/tostring/ +--- +## FitRExplicitDestination::ToString method + + +Converts the object state into string value. Example: "1 FitR 100 200 300 400". + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::FitRExplicitDestination::ToString() const override +``` + + +### ReturnValue + +String value representing object state. + +## See Also + +* Class [FitRExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/fitvexplicitdestination/_index.md b/english/cpp/aspose.pdf.annotations/fitvexplicitdestination/_index.md new file mode 100644 index 0000000000..16b2abaf01 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fitvexplicitdestination/_index.md @@ -0,0 +1,37 @@ +--- +title: Aspose::Pdf::Annotations::FitVExplicitDestination class +linktitle: FitVExplicitDestination +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FitVExplicitDestination class. Represents explicit destination that displays the page with the horizontal coordinate left positioned at the left edge of the window and the contents of the page magnified just enough to fit the entire height of the page within the window. A null value for left specifies that the current value of that parameter is to be retained unchanged in C++.' +type: docs +weight: 3800 +url: /cpp/aspose.pdf.annotations/fitvexplicitdestination/ +--- +## FitVExplicitDestination class + + +Represents explicit destination that displays the page with the horizontal coordinate left positioned at the left edge of the window and the contents of the page magnified just enough to fit the entire height of the page within the window. A null value for left specifies that the current value of that parameter is to be retained unchanged. + +```cpp +class FitVExplicitDestination : public Aspose::Pdf::Annotations::ExplicitDestination +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [CreateDestination](../explicitdestination/createdestination/)(System::SharedPtr\, ExplicitDestinationType, const System::ArrayPtr\\&) | Creates instances of [ExplicitDestination](../explicitdestination/) descendant classes. | +| static [CreateDestination](../explicitdestination/createdestination/)(System::SharedPtr\, int32_t, ExplicitDestinationType, const System::ArrayPtr\\&) | Creates instances of [ExplicitDestination](../explicitdestination/) descendant classes. | +| static [CreateDestination](../explicitdestination/createdestination/)(int32_t, ExplicitDestinationType, const System::ArrayPtr\\&) | Creates instances of [ExplicitDestination](../explicitdestination/) descendant classes. | +| [FitVExplicitDestination](./fitvexplicitdestination/)(System::SharedPtr\, double) | Creates local explicit destination. | +| [FitVExplicitDestination](./fitvexplicitdestination/)(System::SharedPtr\, int32_t, double) | Creates remote explicit destination. | +| [FitVExplicitDestination](./fitvexplicitdestination/)(int32_t, double) | Creates remote explicit destination. | +| [get_Left](./get_left/)() | Gets the horizontal coordinate left positioned at the left edge of the window. | +| [get_Page](../explicitdestination/get_page/)() const | Gets the destination page object. | +| [get_PageNumber](../explicitdestination/get_pagenumber/)() const | Gets the destination page number. | +| [ToString](./tostring/)() const override | Converts the object state into string value. Example: "1 FitV 100". | +## See Also + +* Class [ExplicitDestination](../explicitdestination/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/fitvexplicitdestination/fitvexplicitdestination/_index.md b/english/cpp/aspose.pdf.annotations/fitvexplicitdestination/fitvexplicitdestination/_index.md new file mode 100644 index 0000000000..36ec32eaea --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fitvexplicitdestination/fitvexplicitdestination/_index.md @@ -0,0 +1,145 @@ +--- +title: Aspose::Pdf::Annotations::FitVExplicitDestination::FitVExplicitDestination constructor +linktitle: FitVExplicitDestination +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FitVExplicitDestination::FitVExplicitDestination constructor. Creates local explicit destination in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/fitvexplicitdestination/fitvexplicitdestination/ +--- +## FitVExplicitDestination::FitVExplicitDestination(System::SharedPtr\, double) constructor + + +Creates local explicit destination. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::FitVExplicitDestination::FitVExplicitDestination(System::SharedPtr page, double left) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The destination page object. | +| left | double | The horizontal coordinate left positioned at the left edge of the window. | +## Remarks + + + + + + page + + + The destination page object. + + + + + left + + + The horizontal coordinate left positioned at the left edge of the window. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [FitVExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## FitVExplicitDestination::FitVExplicitDestination(System::SharedPtr\, int32_t, double) constructor + + +Creates remote explicit destination. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::FitVExplicitDestination::FitVExplicitDestination(System::SharedPtr document, int32_t pageNumber, double left) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | The parent document that contains this object. | +| pageNumber | int32_t | The destination page number of remote document. | +| left | double | The horizontal coordinate left positioned at the left edge of the window. | +## Remarks + + + + Deprecated + + Use constructor without Document argument. + + + + + document + + + The parent document that contains this object. + + + + + pageNumber + + + The destination page number of remote document. + + + + + left + + + The horizontal coordinate left positioned at the left edge of the window. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [FitVExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## FitVExplicitDestination::FitVExplicitDestination(int32_t, double) constructor + + +Creates remote explicit destination. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::FitVExplicitDestination::FitVExplicitDestination(int32_t pageNumber, double left) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageNumber | int32_t | The destination page number of remote document. | +| left | double | The horizontal coordinate left positioned at the left edge of the window. | +## Remarks + + + + + + pageNumber + + + The destination page number of remote document. + + + + + left + + + The horizontal coordinate left positioned at the left edge of the window. + + + +## See Also + +* Class [FitVExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/fitvexplicitdestination/get_left/_index.md b/english/cpp/aspose.pdf.annotations/fitvexplicitdestination/get_left/_index.md new file mode 100644 index 0000000000..3e16773c54 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fitvexplicitdestination/get_left/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::FitVExplicitDestination::get_Left method +linktitle: get_Left +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FitVExplicitDestination::get_Left method. Gets the horizontal coordinate left positioned at the left edge of the window in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/fitvexplicitdestination/get_left/ +--- +## FitVExplicitDestination::get_Left method + + +Gets the horizontal coordinate left positioned at the left edge of the window. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Annotations::FitVExplicitDestination::get_Left() +``` + +## See Also + +* Class [FitVExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/fitvexplicitdestination/tostring/_index.md b/english/cpp/aspose.pdf.annotations/fitvexplicitdestination/tostring/_index.md new file mode 100644 index 0000000000..f95703f85e --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fitvexplicitdestination/tostring/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::FitVExplicitDestination::ToString method +linktitle: ToString +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FitVExplicitDestination::ToString method. Converts the object state into string value. Example: "1 FitV 100" in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/fitvexplicitdestination/tostring/ +--- +## FitVExplicitDestination::ToString method + + +Converts the object state into string value. Example: "1 FitV 100". + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::FitVExplicitDestination::ToString() const override +``` + + +### ReturnValue + +String value representing object state. + +## See Also + +* Class [FitVExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/fixedprint/_index.md b/english/cpp/aspose.pdf.annotations/fixedprint/_index.md new file mode 100644 index 0000000000..2bd245b61a --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fixedprint/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Annotations::FixedPrint class +linktitle: FixedPrint +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FixedPrint class. Represent Fixed print data of WatermarkAnnotation in C++.' +type: docs +weight: 3900 +url: /cpp/aspose.pdf.annotations/fixedprint/ +--- +## FixedPrint class + + +Represent Fixed print data of [Watermark](../../aspose.pdf/watermark/)[Annotation](../annotation/). + +```cpp +class FixedPrint : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_HorizontalTranslation](./get_horizontaltranslation/)() const | Gets horizontal translation. | +| [get_Matrix](./get_matrix/)() | Gets matrix value. | +| [get_VerticalTranslation](./get_verticaltranslation/)() const | Gets vertical translation. | +| [set_HorizontalTranslation](./set_horizontaltranslation/)(double) | Sets horizontal translation. | +| [set_Matrix](./set_matrix/)(System::SharedPtr\) | Sets matrix value. | +| [set_VerticalTranslation](./set_verticaltranslation/)(double) | Sets vertical translation. | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/fixedprint/get_horizontaltranslation/_index.md b/english/cpp/aspose.pdf.annotations/fixedprint/get_horizontaltranslation/_index.md new file mode 100644 index 0000000000..fa0fa03ed9 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fixedprint/get_horizontaltranslation/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::FixedPrint::get_HorizontalTranslation method +linktitle: get_HorizontalTranslation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FixedPrint::get_HorizontalTranslation method. Gets horizontal translation in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/fixedprint/get_horizontaltranslation/ +--- +## FixedPrint::get_HorizontalTranslation method + + +Gets horizontal translation. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Annotations::FixedPrint::get_HorizontalTranslation() const +``` + +## See Also + +* Class [FixedPrint](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/fixedprint/get_matrix/_index.md b/english/cpp/aspose.pdf.annotations/fixedprint/get_matrix/_index.md new file mode 100644 index 0000000000..0ed5d69168 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fixedprint/get_matrix/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::FixedPrint::get_Matrix method +linktitle: get_Matrix +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FixedPrint::get_Matrix method. Gets matrix value in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/fixedprint/get_matrix/ +--- +## FixedPrint::get_Matrix method + + +Gets matrix value. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::FixedPrint::get_Matrix() +``` + +## See Also + +* Class [Matrix](../../../aspose.pdf/matrix/) +* Class [FixedPrint](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/fixedprint/get_verticaltranslation/_index.md b/english/cpp/aspose.pdf.annotations/fixedprint/get_verticaltranslation/_index.md new file mode 100644 index 0000000000..2ae538d852 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fixedprint/get_verticaltranslation/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::FixedPrint::get_VerticalTranslation method +linktitle: get_VerticalTranslation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FixedPrint::get_VerticalTranslation method. Gets vertical translation in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/fixedprint/get_verticaltranslation/ +--- +## FixedPrint::get_VerticalTranslation method + + +Gets vertical translation. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Annotations::FixedPrint::get_VerticalTranslation() const +``` + +## See Also + +* Class [FixedPrint](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/fixedprint/set_horizontaltranslation/_index.md b/english/cpp/aspose.pdf.annotations/fixedprint/set_horizontaltranslation/_index.md new file mode 100644 index 0000000000..dec2420963 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fixedprint/set_horizontaltranslation/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::FixedPrint::set_HorizontalTranslation method +linktitle: set_HorizontalTranslation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FixedPrint::set_HorizontalTranslation method. Sets horizontal translation in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/fixedprint/set_horizontaltranslation/ +--- +## FixedPrint::set_HorizontalTranslation method + + +Sets horizontal translation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::FixedPrint::set_HorizontalTranslation(double value) +``` + +## See Also + +* Class [FixedPrint](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/fixedprint/set_matrix/_index.md b/english/cpp/aspose.pdf.annotations/fixedprint/set_matrix/_index.md new file mode 100644 index 0000000000..6816fd5428 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fixedprint/set_matrix/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::FixedPrint::set_Matrix method +linktitle: set_Matrix +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FixedPrint::set_Matrix method. Sets matrix value in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/fixedprint/set_matrix/ +--- +## FixedPrint::set_Matrix method + + +Sets matrix value. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::FixedPrint::set_Matrix(System::SharedPtr value) +``` + +## See Also + +* Class [Matrix](../../../aspose.pdf/matrix/) +* Class [FixedPrint](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/fixedprint/set_verticaltranslation/_index.md b/english/cpp/aspose.pdf.annotations/fixedprint/set_verticaltranslation/_index.md new file mode 100644 index 0000000000..0229ddede8 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/fixedprint/set_verticaltranslation/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::FixedPrint::set_VerticalTranslation method +linktitle: set_VerticalTranslation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FixedPrint::set_VerticalTranslation method. Sets vertical translation in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/fixedprint/set_verticaltranslation/ +--- +## FixedPrint::set_VerticalTranslation method + + +Sets vertical translation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::FixedPrint::set_VerticalTranslation(double value) +``` + +## See Also + +* Class [FixedPrint](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/freetextannotation/_index.md b/english/cpp/aspose.pdf.annotations/freetextannotation/_index.md new file mode 100644 index 0000000000..d7fdbf37ba --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/freetextannotation/_index.md @@ -0,0 +1,131 @@ +--- +title: Aspose::Pdf::Annotations::FreeTextAnnotation class +linktitle: FreeTextAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FreeTextAnnotation class. Represents a free text annotation that displays text directly on the page. Unlike an ordinary text annotation, a free text annotation has no open or closed state; instead of being displayed in a pop-up window, the text is always visible in C++.' +type: docs +weight: 4000 +url: /cpp/aspose.pdf.annotations/freetextannotation/ +--- +## FreeTextAnnotation class + + +Represents a free text annotation that displays text directly on the page. Unlike an ordinary text annotation, a free text annotation has no open or closed state; instead of being displayed in a pop-up window, the text is always visible. + +```cpp +class FreeTextAnnotation : public Aspose::Pdf::Annotations::MarkupAnnotation +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Accept](./accept/)(System::SharedPtr\) override | Accepts visitor object to process the annotation. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| virtual [ChangeAfterResize](../annotation/changeafterresize/)(System::SharedPtr\) | Update parameters and appearance, according to the matrix transform. | +| [ClearState](../markupannotation/clearstate/)() | Clears state and state model for the annotation. For example, clears the review status for an annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [Flatten](../annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [FreeTextAnnotation](./freetextannotation/)(System::SharedPtr\, System::SharedPtr\) | Constructor to use with Generator. | +| [FreeTextAnnotation](./freetextannotation/)(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) | Creates new FreeText annotation on the specified page. | +| [get_Actions](../annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../annotation/get_alignment/)() | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [get_AnnotationType](./get_annotationtype/)() override | Gets type of annotation. | +| [get_Appearance](../annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../annotation/get_border/)() const | Gets annotation border characteristics. [Border](../border/) | +| [get_Callout](./get_callout/)() | Array of point specifying callout line. | +| [get_Characteristics](../annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../annotation/get_color/)() | Gets annotation color. | +| [get_Contents](../annotation/get_contents/)() | Gets annotation text. | +| [get_CreationDate](../markupannotation/get_creationdate/)() | Gets date and time when annotation was created. | +| [get_DefaultAppearance](./get_defaultappearance/)() | Gets the default appearance string to be used in formatting the text. | +| [get_DefaultAppearanceObject](./get_defaultappearanceobject/)() | Object which represents default appearance of FreeText annotation. | +| [get_DefaultStyle](./get_defaultstyle/)() | Gets a default style string. | +| [get_EndingStyle](./get_endingstyle/)() | Gets line ending style for line ending point. | +| [get_Flags](../annotation/get_flags/)() | Flags of the annotation. | +| [get_FullName](../annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../annotation/get_height/)() | Gets height of the annotation. | +| [get_HorizontalAlignment](../annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_InReplyTo](../markupannotation/get_inreplyto/)() | A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. | +| [get_Intent](./get_intent/)() | Gets the intent of the free text annotation. | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_Justification](./get_justification/)() | Gets or set a code specifying the form of quadding (justification) to be used in displaying the annotation's text. | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| [get_Modified](../annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Name](../annotation/get_name/)() | Gets annotation name on the page. | +| [get_Opacity](../markupannotation/get_opacity/)() | Gets the constant opacity value to be used in painting the annotation. | +| virtual [get_PageIndex](../annotation/get_pageindex/)() | Gets index of page which contains annotation. | +| [get_Popup](../markupannotation/get_popup/)() | Pop-up annotation for entering or editing the text associated with this annotation. | +| virtual [get_Rect](../annotation/get_rect/)() | Gets annotation rectangle. | +| [get_ReplyType](../markupannotation/get_replytype/)() | A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. | +| [get_RichText](../markupannotation/get_richtext/)() | Gets a rich text string to be displayed in the pop-up window when the annotation is opened. | +| [get_Rotate](./get_rotate/)() | Angle of annotation rotation. | +| [get_StartingStyle](./get_startingstyle/)() | Gets line ending style for line ending point. OThis property is obsolete, please use EndingStyle. | +| [get_States](../annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_Subject](../markupannotation/get_subject/)() | Gets text representing desciption of the object. | +| [get_TextHorizontalAlignment](../annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| [get_TextRectangle](./get_textrectangle/)() | [Rectangle](../../aspose.pdf/rectangle/) describing the numerical differences between two rectangles: the Rect entry of the annotation and a rectangle contained within that rectangle. The inner rectangle is where the annotation's text should be displayed. | +| [get_TextStyle](./get_textstyle/)() | Gets style of the text in appearance. when text style is changed, text appearance is updated. | +| [get_Title](../markupannotation/get_title/)() override | Gets a text that shall be displayed in title bar of annotation. | +| static [get_UpdateAppearanceOnConvert](../annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetRectangle](../annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| [GetState](../markupannotation/getstate/)() | Gets the state of the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [GetStateModel](../markupannotation/getstatemodel/)() | Gets the state model of the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [MarkupAnnotation](../markupannotation/markupannotation/)(System::SharedPtr\) | Constructor for markup annotation. | +| virtual [set_ActiveState](../annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../annotation/set_alignment/)(TextAlignment) | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_Border](../annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../border/) | +| [set_Callout](./set_callout/)(System::ArrayPtr\\>) | Array of point specifying callout line. | +| [set_Color](../annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](../annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_DefaultAppearance](./set_defaultappearance/)(System::String) | Sets the default appearance string to be used in formatting the text. | +| [set_DefaultStyle](./set_defaultstyle/)(System::String) | Sets a default style string. | +| [set_EndingStyle](./set_endingstyle/)(LineEnding) | Sets line ending style for line ending point. | +| [set_Flags](../annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| virtual [set_Height](../annotation/set_height/)(double) | Sets height of the annotation. | +| [set_HorizontalAlignment](../annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_InReplyTo](../markupannotation/set_inreplyto/)(System::SharedPtr\) | A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. | +| [set_Intent](./set_intent/)(FreeTextIntent) | Sets the intent of the free text annotation. | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_Justification](./set_justification/)(Aspose::Pdf::Annotations::Justification) | Gets or set a code specifying the form of quadding (justification) to be used in displaying the annotation's text. | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| [set_Modified](../annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Name](../annotation/set_name/)(System::String) | Sets annotation name on the page. | +| [set_Opacity](../markupannotation/set_opacity/)(double) | Sets the constant opacity value to be used in painting the annotation. | +| [set_Popup](../markupannotation/set_popup/)(System::SharedPtr\) | Pop-up annotation for entering or editing the text associated with this annotation. | +| virtual [set_Rect](../annotation/set_rect/)(System::SharedPtr\) | Sets annotation rectangle. | +| [set_ReplyType](../markupannotation/set_replytype/)(Aspose::Pdf::Annotations::ReplyType) | A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. | +| [set_RichText](../markupannotation/set_richtext/)(System::String) | Sets a rich text string to be displayed in the pop-up window when the annotation is opened. | +| [set_Rotate](./set_rotate/)(Rotation) | Angle of annotation rotation. | +| [set_StartingStyle](./set_startingstyle/)(LineEnding) | Sets line ending style for line ending point. OThis property is obsolete, please use EndingStyle. | +| [set_Subject](../markupannotation/set_subject/)(System::String) | Gets text representing desciption of the object. | +| [set_TextHorizontalAlignment](../annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| [set_TextRectangle](./set_textrectangle/)(System::SharedPtr\) | [Rectangle](../../aspose.pdf/rectangle/) describing the numerical differences between two rectangles: the Rect entry of the annotation and a rectangle contained within that rectangle. The inner rectangle is where the annotation's text should be displayed. | +| [set_TextStyle](./set_textstyle/)(System::SharedPtr\) | Sets style of the text in appearance. when text style is changed, text appearance is updated. | +| [set_Title](../markupannotation/set_title/)(System::String) override | Sets a text that shall be displayed in title bar of annotation. | +| static [set_UpdateAppearanceOnConvert](../annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [SetMarkedState](../markupannotation/setmarkedstate/)(bool) | Sets Marked and Unmarked state for the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SetReviewState](../markupannotation/setreviewstate/)(AnnotationState, System::String) | Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SetReviewState](../markupannotation/setreviewstate/)(AnnotationState) | Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. The state is set by the user who created the target annotation. The value is taken from the Title property of the target annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +## See Also + +* Class [MarkupAnnotation](../markupannotation/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/freetextannotation/accept/_index.md b/english/cpp/aspose.pdf.annotations/freetextannotation/accept/_index.md new file mode 100644 index 0000000000..92165c6192 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/freetextannotation/accept/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Annotations::FreeTextAnnotation::Accept method +linktitle: Accept +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FreeTextAnnotation::Accept method. Accepts visitor object to process the annotation in C++.' +type: docs +weight: 2400 +url: /cpp/aspose.pdf.annotations/freetextannotation/accept/ +--- +## FreeTextAnnotation::Accept method + + +Accepts visitor object to process the annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::FreeTextAnnotation::Accept(System::SharedPtr visitor) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| visitor | System::SharedPtr\ | Visitor object. | +## Remarks + + + + + + visitor + + + Visitor object. + + + +## See Also + +* Class [AnnotationSelector](../../annotationselector/) +* Class [FreeTextAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/freetextannotation/freetextannotation/_index.md b/english/cpp/aspose.pdf.annotations/freetextannotation/freetextannotation/_index.md new file mode 100644 index 0000000000..deb17272c5 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/freetextannotation/freetextannotation/_index.md @@ -0,0 +1,104 @@ +--- +title: Aspose::Pdf::Annotations::FreeTextAnnotation::FreeTextAnnotation constructor +linktitle: FreeTextAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FreeTextAnnotation::FreeTextAnnotation constructor. Constructor to use with Generator in C++.' +type: docs +weight: 2300 +url: /cpp/aspose.pdf.annotations/freetextannotation/freetextannotation/ +--- +## FreeTextAnnotation::FreeTextAnnotation(System::SharedPtr\, System::SharedPtr\) constructor + + +Constructor to use with Generator. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::FreeTextAnnotation::FreeTextAnnotation(System::SharedPtr document, System::SharedPtr appearance) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | [Document](../../../aspose.pdf/document/) where annotation will be created. | +| appearance | System::SharedPtr\ | Default Appearance | +## Remarks + + + + + + document + + + + Document where annotation will be created. + + + + + appearance + + + Default Appearance + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [DefaultAppearance](../../defaultappearance/) +* Class [FreeTextAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## FreeTextAnnotation::FreeTextAnnotation(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) constructor + + +Creates new FreeText annotation on the specified page. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::FreeTextAnnotation::FreeTextAnnotation(System::SharedPtr page, System::SharedPtr rect, System::SharedPtr appearance) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The document's page where annotation should be created. | +| rect | System::SharedPtr\ | The annotation rectangle, defining the location of the annotation on the page. | +| appearance | System::SharedPtr\ | The default appearance to be used in formatting the text. | +## Remarks + + + + + + page + + + The document's page where annotation should be created. + + + + + rect + + + The annotation rectangle, defining the location of the annotation on the page. + + + + + appearance + + + The default appearance to be used in formatting the text. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [DefaultAppearance](../../defaultappearance/) +* Class [FreeTextAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/freetextannotation/get_annotationtype/_index.md b/english/cpp/aspose.pdf.annotations/freetextannotation/get_annotationtype/_index.md new file mode 100644 index 0000000000..d023a03399 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/freetextannotation/get_annotationtype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::FreeTextAnnotation::get_AnnotationType method +linktitle: get_AnnotationType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FreeTextAnnotation::get_AnnotationType method. Gets type of annotation in C++.' +type: docs +weight: 1800 +url: /cpp/aspose.pdf.annotations/freetextannotation/get_annotationtype/ +--- +## FreeTextAnnotation::get_AnnotationType method + + +Gets type of annotation. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::AnnotationType Aspose::Pdf::Annotations::FreeTextAnnotation::get_AnnotationType() override +``` + +## See Also + +* Enum [AnnotationType](../../annotationtype/) +* Class [FreeTextAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/freetextannotation/get_callout/_index.md b/english/cpp/aspose.pdf.annotations/freetextannotation/get_callout/_index.md new file mode 100644 index 0000000000..974eb1e662 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/freetextannotation/get_callout/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::FreeTextAnnotation::get_Callout method +linktitle: get_Callout +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FreeTextAnnotation::get_Callout method. Array of point specifying callout line in C++.' +type: docs +weight: 1900 +url: /cpp/aspose.pdf.annotations/freetextannotation/get_callout/ +--- +## FreeTextAnnotation::get_Callout method + + +Array of point specifying callout line. + +```cpp +ASPOSE_PDF_SHARED_API System::ArrayPtr> Aspose::Pdf::Annotations::FreeTextAnnotation::get_Callout() +``` + +## See Also + +* Class [Point](../../../aspose.pdf/point/) +* Class [FreeTextAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/freetextannotation/get_defaultappearance/_index.md b/english/cpp/aspose.pdf.annotations/freetextannotation/get_defaultappearance/_index.md new file mode 100644 index 0000000000..b6aa0a11f6 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/freetextannotation/get_defaultappearance/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::FreeTextAnnotation::get_DefaultAppearance method +linktitle: get_DefaultAppearance +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FreeTextAnnotation::get_DefaultAppearance method. Gets the default appearance string to be used in formatting the text in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.annotations/freetextannotation/get_defaultappearance/ +--- +## FreeTextAnnotation::get_DefaultAppearance method + + +Gets the default appearance string to be used in formatting the text. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::FreeTextAnnotation::get_DefaultAppearance() +``` + +## See Also + +* Class [FreeTextAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/freetextannotation/get_defaultappearanceobject/_index.md b/english/cpp/aspose.pdf.annotations/freetextannotation/get_defaultappearanceobject/_index.md new file mode 100644 index 0000000000..bfd83e4f6b --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/freetextannotation/get_defaultappearanceobject/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::FreeTextAnnotation::get_DefaultAppearanceObject method +linktitle: get_DefaultAppearanceObject +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FreeTextAnnotation::get_DefaultAppearanceObject method. Object which represents default appearance of FreeText annotation in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.annotations/freetextannotation/get_defaultappearanceobject/ +--- +## FreeTextAnnotation::get_DefaultAppearanceObject method + + +Object which represents default appearance of FreeText annotation. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::FreeTextAnnotation::get_DefaultAppearanceObject() +``` + +## See Also + +* Class [DefaultAppearance](../../defaultappearance/) +* Class [FreeTextAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/freetextannotation/get_defaultstyle/_index.md b/english/cpp/aspose.pdf.annotations/freetextannotation/get_defaultstyle/_index.md new file mode 100644 index 0000000000..9621dd314a --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/freetextannotation/get_defaultstyle/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::FreeTextAnnotation::get_DefaultStyle method +linktitle: get_DefaultStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FreeTextAnnotation::get_DefaultStyle method. Gets a default style string in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.annotations/freetextannotation/get_defaultstyle/ +--- +## FreeTextAnnotation::get_DefaultStyle method + + +Gets a default style string. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::FreeTextAnnotation::get_DefaultStyle() +``` + +## See Also + +* Class [FreeTextAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/freetextannotation/get_endingstyle/_index.md b/english/cpp/aspose.pdf.annotations/freetextannotation/get_endingstyle/_index.md new file mode 100644 index 0000000000..73173157ed --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/freetextannotation/get_endingstyle/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::FreeTextAnnotation::get_EndingStyle method +linktitle: get_EndingStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FreeTextAnnotation::get_EndingStyle method. Gets line ending style for line ending point in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/freetextannotation/get_endingstyle/ +--- +## FreeTextAnnotation::get_EndingStyle method + + +Gets line ending style for line ending point. + +```cpp +ASPOSE_PDF_SHARED_API LineEnding Aspose::Pdf::Annotations::FreeTextAnnotation::get_EndingStyle() +``` + +## See Also + +* Enum [LineEnding](../../lineending/) +* Class [FreeTextAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/freetextannotation/get_intent/_index.md b/english/cpp/aspose.pdf.annotations/freetextannotation/get_intent/_index.md new file mode 100644 index 0000000000..98f07ddddb --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/freetextannotation/get_intent/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::FreeTextAnnotation::get_Intent method +linktitle: get_Intent +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FreeTextAnnotation::get_Intent method. Gets the intent of the free text annotation in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.annotations/freetextannotation/get_intent/ +--- +## FreeTextAnnotation::get_Intent method + + +Gets the intent of the free text annotation. + +```cpp +ASPOSE_PDF_SHARED_API FreeTextIntent Aspose::Pdf::Annotations::FreeTextAnnotation::get_Intent() +``` + +## See Also + +* Enum [FreeTextIntent](../../freetextintent/) +* Class [FreeTextAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/freetextannotation/get_justification/_index.md b/english/cpp/aspose.pdf.annotations/freetextannotation/get_justification/_index.md new file mode 100644 index 0000000000..c54db9bfd2 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/freetextannotation/get_justification/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::FreeTextAnnotation::get_Justification method +linktitle: get_Justification +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FreeTextAnnotation::get_Justification method. Gets or set a code specifying the form of quadding (justification) to be used in displaying the annotation''s text in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/freetextannotation/get_justification/ +--- +## FreeTextAnnotation::get_Justification method + + +Gets or set a code specifying the form of quadding (justification) to be used in displaying the annotation's text. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::Justification Aspose::Pdf::Annotations::FreeTextAnnotation::get_Justification() +``` + +## See Also + +* Enum [Justification](../../justification/) +* Class [FreeTextAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/freetextannotation/get_rotate/_index.md b/english/cpp/aspose.pdf.annotations/freetextannotation/get_rotate/_index.md new file mode 100644 index 0000000000..1f9fbf99a1 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/freetextannotation/get_rotate/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::FreeTextAnnotation::get_Rotate method +linktitle: get_Rotate +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FreeTextAnnotation::get_Rotate method. Angle of annotation rotation in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf.annotations/freetextannotation/get_rotate/ +--- +## FreeTextAnnotation::get_Rotate method + + +Angle of annotation rotation. + +```cpp +ASPOSE_PDF_SHARED_API Rotation Aspose::Pdf::Annotations::FreeTextAnnotation::get_Rotate() +``` + +## See Also + +* Enum [Rotation](../../../aspose.pdf/rotation/) +* Class [FreeTextAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/freetextannotation/get_startingstyle/_index.md b/english/cpp/aspose.pdf.annotations/freetextannotation/get_startingstyle/_index.md new file mode 100644 index 0000000000..7685004503 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/freetextannotation/get_startingstyle/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::FreeTextAnnotation::get_StartingStyle method +linktitle: get_StartingStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FreeTextAnnotation::get_StartingStyle method. Gets line ending style for line ending point. OThis property is obsolete, please use EndingStyle in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/freetextannotation/get_startingstyle/ +--- +## FreeTextAnnotation::get_StartingStyle method + + +Gets line ending style for line ending point. OThis property is obsolete, please use EndingStyle. + +```cpp +ASPOSE_PDF_SHARED_API LineEnding Aspose::Pdf::Annotations::FreeTextAnnotation::get_StartingStyle() +``` + +## See Also + +* Enum [LineEnding](../../lineending/) +* Class [FreeTextAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/freetextannotation/get_textrectangle/_index.md b/english/cpp/aspose.pdf.annotations/freetextannotation/get_textrectangle/_index.md new file mode 100644 index 0000000000..73e7da59a6 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/freetextannotation/get_textrectangle/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::FreeTextAnnotation::get_TextRectangle method +linktitle: get_TextRectangle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FreeTextAnnotation::get_TextRectangle method. Rectangle describing the numerical differences between two rectangles: the Rect entry of the annotation and a rectangle contained within that rectangle. The inner rectangle is where the annotation''s text should be displayed in C++.' +type: docs +weight: 2100 +url: /cpp/aspose.pdf.annotations/freetextannotation/get_textrectangle/ +--- +## FreeTextAnnotation::get_TextRectangle method + + +[Rectangle](../../../aspose.pdf/rectangle/) describing the numerical differences between two rectangles: the Rect entry of the annotation and a rectangle contained within that rectangle. The inner rectangle is where the annotation's text should be displayed. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::FreeTextAnnotation::get_TextRectangle() +``` + +## See Also + +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [FreeTextAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/freetextannotation/get_textstyle/_index.md b/english/cpp/aspose.pdf.annotations/freetextannotation/get_textstyle/_index.md new file mode 100644 index 0000000000..f791992d0d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/freetextannotation/get_textstyle/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::FreeTextAnnotation::get_TextStyle method +linktitle: get_TextStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FreeTextAnnotation::get_TextStyle method. Gets style of the text in appearance. when text style is changed, text appearance is updated in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.annotations/freetextannotation/get_textstyle/ +--- +## FreeTextAnnotation::get_TextStyle method + + +Gets style of the text in appearance. when text style is changed, text appearance is updated. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::FreeTextAnnotation::get_TextStyle() +``` + +## See Also + +* Class [TextStyle](../../textstyle/) +* Class [FreeTextAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/freetextannotation/set_callout/_index.md b/english/cpp/aspose.pdf.annotations/freetextannotation/set_callout/_index.md new file mode 100644 index 0000000000..248f51dbd8 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/freetextannotation/set_callout/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::FreeTextAnnotation::set_Callout method +linktitle: set_Callout +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FreeTextAnnotation::set_Callout method. Array of point specifying callout line in C++.' +type: docs +weight: 2000 +url: /cpp/aspose.pdf.annotations/freetextannotation/set_callout/ +--- +## FreeTextAnnotation::set_Callout method + + +Array of point specifying callout line. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::FreeTextAnnotation::set_Callout(System::ArrayPtr> value) +``` + +## See Also + +* Class [Point](../../../aspose.pdf/point/) +* Class [FreeTextAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/freetextannotation/set_defaultappearance/_index.md b/english/cpp/aspose.pdf.annotations/freetextannotation/set_defaultappearance/_index.md new file mode 100644 index 0000000000..cf696212fa --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/freetextannotation/set_defaultappearance/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::FreeTextAnnotation::set_DefaultAppearance method +linktitle: set_DefaultAppearance +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FreeTextAnnotation::set_DefaultAppearance method. Sets the default appearance string to be used in formatting the text in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.annotations/freetextannotation/set_defaultappearance/ +--- +## FreeTextAnnotation::set_DefaultAppearance method + + +Sets the default appearance string to be used in formatting the text. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::FreeTextAnnotation::set_DefaultAppearance(System::String value) +``` + +## See Also + +* Class [FreeTextAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/freetextannotation/set_defaultstyle/_index.md b/english/cpp/aspose.pdf.annotations/freetextannotation/set_defaultstyle/_index.md new file mode 100644 index 0000000000..506b2a7b57 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/freetextannotation/set_defaultstyle/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::FreeTextAnnotation::set_DefaultStyle method +linktitle: set_DefaultStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FreeTextAnnotation::set_DefaultStyle method. Sets a default style string in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.annotations/freetextannotation/set_defaultstyle/ +--- +## FreeTextAnnotation::set_DefaultStyle method + + +Sets a default style string. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::FreeTextAnnotation::set_DefaultStyle(System::String value) +``` + +## See Also + +* Class [FreeTextAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/freetextannotation/set_endingstyle/_index.md b/english/cpp/aspose.pdf.annotations/freetextannotation/set_endingstyle/_index.md new file mode 100644 index 0000000000..70e236cbc4 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/freetextannotation/set_endingstyle/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::FreeTextAnnotation::set_EndingStyle method +linktitle: set_EndingStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FreeTextAnnotation::set_EndingStyle method. Sets line ending style for line ending point in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/freetextannotation/set_endingstyle/ +--- +## FreeTextAnnotation::set_EndingStyle method + + +Sets line ending style for line ending point. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::FreeTextAnnotation::set_EndingStyle(LineEnding value) +``` + +## See Also + +* Enum [LineEnding](../../lineending/) +* Class [FreeTextAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/freetextannotation/set_intent/_index.md b/english/cpp/aspose.pdf.annotations/freetextannotation/set_intent/_index.md new file mode 100644 index 0000000000..8b25cac80f --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/freetextannotation/set_intent/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::FreeTextAnnotation::set_Intent method +linktitle: set_Intent +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FreeTextAnnotation::set_Intent method. Sets the intent of the free text annotation in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.annotations/freetextannotation/set_intent/ +--- +## FreeTextAnnotation::set_Intent method + + +Sets the intent of the free text annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::FreeTextAnnotation::set_Intent(FreeTextIntent value) +``` + +## See Also + +* Enum [FreeTextIntent](../../freetextintent/) +* Class [FreeTextAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/freetextannotation/set_justification/_index.md b/english/cpp/aspose.pdf.annotations/freetextannotation/set_justification/_index.md new file mode 100644 index 0000000000..234357848b --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/freetextannotation/set_justification/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::FreeTextAnnotation::set_Justification method +linktitle: set_Justification +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FreeTextAnnotation::set_Justification method. Gets or set a code specifying the form of quadding (justification) to be used in displaying the annotation''s text in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/freetextannotation/set_justification/ +--- +## FreeTextAnnotation::set_Justification method + + +Gets or set a code specifying the form of quadding (justification) to be used in displaying the annotation's text. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::FreeTextAnnotation::set_Justification(Aspose::Pdf::Annotations::Justification value) +``` + +## See Also + +* Enum [Justification](../../justification/) +* Class [FreeTextAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/freetextannotation/set_rotate/_index.md b/english/cpp/aspose.pdf.annotations/freetextannotation/set_rotate/_index.md new file mode 100644 index 0000000000..af80c9ee59 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/freetextannotation/set_rotate/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::FreeTextAnnotation::set_Rotate method +linktitle: set_Rotate +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FreeTextAnnotation::set_Rotate method. Angle of annotation rotation in C++.' +type: docs +weight: 1700 +url: /cpp/aspose.pdf.annotations/freetextannotation/set_rotate/ +--- +## FreeTextAnnotation::set_Rotate method + + +Angle of annotation rotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::FreeTextAnnotation::set_Rotate(Rotation value) +``` + +## See Also + +* Enum [Rotation](../../../aspose.pdf/rotation/) +* Class [FreeTextAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/freetextannotation/set_startingstyle/_index.md b/english/cpp/aspose.pdf.annotations/freetextannotation/set_startingstyle/_index.md new file mode 100644 index 0000000000..3127f128a8 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/freetextannotation/set_startingstyle/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::FreeTextAnnotation::set_StartingStyle method +linktitle: set_StartingStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FreeTextAnnotation::set_StartingStyle method. Sets line ending style for line ending point. OThis property is obsolete, please use EndingStyle in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/freetextannotation/set_startingstyle/ +--- +## FreeTextAnnotation::set_StartingStyle method + + +Sets line ending style for line ending point. OThis property is obsolete, please use EndingStyle. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::FreeTextAnnotation::set_StartingStyle(LineEnding value) +``` + +## See Also + +* Enum [LineEnding](../../lineending/) +* Class [FreeTextAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/freetextannotation/set_textrectangle/_index.md b/english/cpp/aspose.pdf.annotations/freetextannotation/set_textrectangle/_index.md new file mode 100644 index 0000000000..f0aebbced1 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/freetextannotation/set_textrectangle/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::FreeTextAnnotation::set_TextRectangle method +linktitle: set_TextRectangle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FreeTextAnnotation::set_TextRectangle method. Rectangle describing the numerical differences between two rectangles: the Rect entry of the annotation and a rectangle contained within that rectangle. The inner rectangle is where the annotation''s text should be displayed in C++.' +type: docs +weight: 2200 +url: /cpp/aspose.pdf.annotations/freetextannotation/set_textrectangle/ +--- +## FreeTextAnnotation::set_TextRectangle method + + +[Rectangle](../../../aspose.pdf/rectangle/) describing the numerical differences between two rectangles: the Rect entry of the annotation and a rectangle contained within that rectangle. The inner rectangle is where the annotation's text should be displayed. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::FreeTextAnnotation::set_TextRectangle(System::SharedPtr value) +``` + +## See Also + +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [FreeTextAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/freetextannotation/set_textstyle/_index.md b/english/cpp/aspose.pdf.annotations/freetextannotation/set_textstyle/_index.md new file mode 100644 index 0000000000..f1d927815b --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/freetextannotation/set_textstyle/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::FreeTextAnnotation::set_TextStyle method +linktitle: set_TextStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FreeTextAnnotation::set_TextStyle method. Sets style of the text in appearance. when text style is changed, text appearance is updated in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.annotations/freetextannotation/set_textstyle/ +--- +## FreeTextAnnotation::set_TextStyle method + + +Sets style of the text in appearance. when text style is changed, text appearance is updated. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::FreeTextAnnotation::set_TextStyle(System::SharedPtr value) +``` + +## See Also + +* Class [TextStyle](../../textstyle/) +* Class [FreeTextAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/freetextintent/_index.md b/english/cpp/aspose.pdf.annotations/freetextintent/_index.md new file mode 100644 index 0000000000..3ecbbb0493 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/freetextintent/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Annotations::FreeTextIntent enum +linktitle: FreeTextIntent +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::FreeTextIntent enum. Enumerates the intents of the free text annotation in C++.' +type: docs +weight: 13200 +url: /cpp/aspose.pdf.annotations/freetextintent/ +--- +## FreeTextIntent enum + + +Enumerates the intents of the free text annotation. + +```cpp +enum class FreeTextIntent +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Undefined | 0 | Not defined state. | +| FreeTextCallout | 1 | Means that the annotation is intended to function as a callout. | +| FreeTextTypeWriter | 2 | Means that the annotation is intended to function as a click-to-type or typewriter object. | + +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/freetextintentconverter/_index.md b/english/cpp/aspose.pdf.annotations/freetextintentconverter/_index.md new file mode 100644 index 0000000000..4ce0d71f16 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/freetextintentconverter/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Annotations::FreeTextIntentConverter class +linktitle: FreeTextIntentConverter +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Annotations::FreeTextIntentConverter class in C++.' +type: docs +weight: 4100 +url: /cpp/aspose.pdf.annotations/freetextintentconverter/ +--- +## FreeTextIntentConverter class + + + + +```cpp +class FreeTextIntentConverter : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [ToEnum](./toenum/)(System::String) | | +| static [ToString](./tostring/)(FreeTextIntent) | | +| static [ToXfdfString](./toxfdfstring/)(FreeTextIntent) | | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/freetextintentconverter/toenum/_index.md b/english/cpp/aspose.pdf.annotations/freetextintentconverter/toenum/_index.md new file mode 100644 index 0000000000..eabc39a390 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/freetextintentconverter/toenum/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::FreeTextIntentConverter::ToEnum method +linktitle: ToEnum +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToEnum method of Aspose::Pdf::Annotations::FreeTextIntentConverter class in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/freetextintentconverter/toenum/ +--- +## FreeTextIntentConverter::ToEnum method + + + + +```cpp +static ASPOSE_PDF_SHARED_API FreeTextIntent Aspose::Pdf::Annotations::FreeTextIntentConverter::ToEnum(System::String value) +``` + +## See Also + +* Enum [FreeTextIntent](../../freetextintent/) +* Class [FreeTextIntentConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/freetextintentconverter/tostring/_index.md b/english/cpp/aspose.pdf.annotations/freetextintentconverter/tostring/_index.md new file mode 100644 index 0000000000..dc0ea2de02 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/freetextintentconverter/tostring/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::FreeTextIntentConverter::ToString method +linktitle: ToString +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToString method of Aspose::Pdf::Annotations::FreeTextIntentConverter class in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/freetextintentconverter/tostring/ +--- +## FreeTextIntentConverter::ToString method + + + + +```cpp +static ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::FreeTextIntentConverter::ToString(FreeTextIntent value) +``` + +## See Also + +* Enum [FreeTextIntent](../../freetextintent/) +* Class [FreeTextIntentConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/freetextintentconverter/toxfdfstring/_index.md b/english/cpp/aspose.pdf.annotations/freetextintentconverter/toxfdfstring/_index.md new file mode 100644 index 0000000000..36f41c5c3d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/freetextintentconverter/toxfdfstring/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::FreeTextIntentConverter::ToXfdfString method +linktitle: ToXfdfString +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToXfdfString method of Aspose::Pdf::Annotations::FreeTextIntentConverter class in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/freetextintentconverter/toxfdfstring/ +--- +## FreeTextIntentConverter::ToXfdfString method + + + + +```cpp +static ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::FreeTextIntentConverter::ToXfdfString(FreeTextIntent value) +``` + +## See Also + +* Enum [FreeTextIntent](../../freetextintent/) +* Class [FreeTextIntentConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/genericannotation/_index.md b/english/cpp/aspose.pdf.annotations/genericannotation/_index.md new file mode 100644 index 0000000000..3821a7a6e1 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/genericannotation/_index.md @@ -0,0 +1,87 @@ +--- +title: Aspose::Pdf::Annotations::GenericAnnotation class +linktitle: GenericAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::GenericAnnotation class. The class describes general annotation in C++.' +type: docs +weight: 4200 +url: /cpp/aspose.pdf.annotations/genericannotation/ +--- +## GenericAnnotation class + + +The class describes general annotation. + +```cpp +class GenericAnnotation : public Aspose::Pdf::Annotations::Annotation +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Accept](./accept/)(System::SharedPtr\) override | Accepts visitor for annotation processing. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| virtual [ChangeAfterResize](../annotation/changeafterresize/)(System::SharedPtr\) | Update parameters and appearance, according to the matrix transform. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [Flatten](../annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [GenericAnnotation](./genericannotation/)(System::SharedPtr\, System::SharedPtr\) | | +| [get_Actions](../annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../annotation/get_alignment/)() | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [get_AnnotationType](./get_annotationtype/)() override | Gets type of annotation. | +| [get_Appearance](../annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../annotation/get_border/)() const | Gets annotation border characteristics. [Border](../border/) | +| [get_Characteristics](../annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../annotation/get_color/)() | Gets annotation color. | +| [get_Contents](../annotation/get_contents/)() | Gets annotation text. | +| [get_Flags](../annotation/get_flags/)() | Flags of the annotation. | +| [get_FullName](../annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../annotation/get_height/)() | Gets height of the annotation. | +| [get_HorizontalAlignment](../annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| [get_Modified](../annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Name](../annotation/get_name/)() | Gets annotation name on the page. | +| virtual [get_PageIndex](../annotation/get_pageindex/)() | Gets index of page which contains annotation. | +| virtual [get_Rect](../annotation/get_rect/)() | Gets annotation rectangle. | +| [get_States](../annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_TextHorizontalAlignment](../annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| static [get_UpdateAppearanceOnConvert](../annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetRectangle](../annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| virtual [set_ActiveState](../annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../annotation/set_alignment/)(TextAlignment) | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_Border](../annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../border/) | +| [set_Color](../annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](../annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_Flags](../annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| virtual [set_Height](../annotation/set_height/)(double) | Sets height of the annotation. | +| [set_HorizontalAlignment](../annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| [set_Modified](../annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Name](../annotation/set_name/)(System::String) | Sets annotation name on the page. | +| virtual [set_Rect](../annotation/set_rect/)(System::SharedPtr\) | Sets annotation rectangle. | +| [set_TextHorizontalAlignment](../annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| static [set_UpdateAppearanceOnConvert](../annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +## See Also + +* Class [Annotation](../annotation/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/genericannotation/accept/_index.md b/english/cpp/aspose.pdf.annotations/genericannotation/accept/_index.md new file mode 100644 index 0000000000..0d10e4eb46 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/genericannotation/accept/_index.md @@ -0,0 +1,42 @@ +--- +title: Aspose::Pdf::Annotations::GenericAnnotation::Accept method +linktitle: Accept +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::GenericAnnotation::Accept method. Accepts visitor for annotation processing in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/genericannotation/accept/ +--- +## GenericAnnotation::Accept method + + +Accepts visitor for annotation processing. + +```cpp +void Aspose::Pdf::Annotations::GenericAnnotation::Accept(System::SharedPtr visitor) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| visitor | System::SharedPtr\ | [AnnotationSelector](../../annotationselector/) object. | +## Remarks + + + + + + visitor + + + + AnnotationSelector object. + + + +## See Also + +* Class [AnnotationSelector](../../annotationselector/) +* Class [GenericAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/genericannotation/genericannotation/_index.md b/english/cpp/aspose.pdf.annotations/genericannotation/genericannotation/_index.md new file mode 100644 index 0000000000..f62be915b8 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/genericannotation/genericannotation/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::GenericAnnotation::GenericAnnotation constructor +linktitle: GenericAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'How to use GenericAnnotation constructor of Aspose::Pdf::Annotations::GenericAnnotation class in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/genericannotation/genericannotation/ +--- +## GenericAnnotation::GenericAnnotation constructor + + + + +```cpp +Aspose::Pdf::Annotations::GenericAnnotation::GenericAnnotation(System::SharedPtr engineAnnot, System::SharedPtr document) +``` + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [GenericAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/genericannotation/get_annotationtype/_index.md b/english/cpp/aspose.pdf.annotations/genericannotation/get_annotationtype/_index.md new file mode 100644 index 0000000000..5e3e2c2b80 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/genericannotation/get_annotationtype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::GenericAnnotation::get_AnnotationType method +linktitle: get_AnnotationType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::GenericAnnotation::get_AnnotationType method. Gets type of annotation in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/genericannotation/get_annotationtype/ +--- +## GenericAnnotation::get_AnnotationType method + + +Gets type of annotation. + +```cpp +Aspose::Pdf::Annotations::AnnotationType Aspose::Pdf::Annotations::GenericAnnotation::get_AnnotationType() override +``` + +## See Also + +* Enum [AnnotationType](../../annotationtype/) +* Class [GenericAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/gotoaction/_index.md b/english/cpp/aspose.pdf.annotations/gotoaction/_index.md new file mode 100644 index 0000000000..d9e844f76b --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/gotoaction/_index.md @@ -0,0 +1,38 @@ +--- +title: Aspose::Pdf::Annotations::GoToAction class +linktitle: GoToAction +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::GoToAction class. Represents a go-to action that changes the view to a specified destination (page, location, and magnification factor) in C++.' +type: docs +weight: 4300 +url: /cpp/aspose.pdf.annotations/gotoaction/ +--- +## GoToAction class + + +Represents a go-to action that changes the view to a specified destination (page, location, and magnification factor). + +```cpp +class GoToAction : public Aspose::Pdf::Annotations::PdfAction +``` + +## Methods + +| Method | Description | +| --- | --- | +| virtual [get_Destination](./get_destination/)() | Gets the destination to jump to. | +| [get_Next](../pdfaction/get_next/)() | Next actions in sequence. | +| [GetECMAScriptString](../pdfaction/getecmascriptstring/)() | Gets string for ECMAScript Action. | +| [GoToAction](./gotoaction/)(int32_t) | Constructor for [GoToAction](./) class. | +| [GoToAction](./gotoaction/)(System::SharedPtr\) | Constructor for [GoToAction](./) class. | +| [GoToAction](./gotoaction/)(System::SharedPtr\, ExplicitDestinationType, const System::ArrayPtr\\&) | Constructor for [GoToAction](./) class. | +| [GoToAction](./gotoaction/)(System::SharedPtr\) | Constructor. | +| [GoToAction](./gotoaction/)() | Constructor. | +| [GoToAction](./gotoaction/)(System::SharedPtr\, System::String) | Action which linked with Named Destination. | +| virtual [set_Destination](./set_destination/)(System::SharedPtr\) | Sets the destination to jump to. | +| [ToString](../pdfaction/tostring/)() const override | Returns string representation of [ExplicitDestination](../explicitdestination/) object. | +## See Also + +* Class [PdfAction](../pdfaction/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/gotoaction/get_destination/_index.md b/english/cpp/aspose.pdf.annotations/gotoaction/get_destination/_index.md new file mode 100644 index 0000000000..017cf714a3 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/gotoaction/get_destination/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::GoToAction::get_Destination method +linktitle: get_Destination +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::GoToAction::get_Destination method. Gets the destination to jump to in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/gotoaction/get_destination/ +--- +## GoToAction::get_Destination method + + +Gets the destination to jump to. + +```cpp +virtual ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::GoToAction::get_Destination() +``` + +## See Also + +* Class [IAppointment](../../iappointment/) +* Class [GoToAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/gotoaction/gotoaction/_index.md b/english/cpp/aspose.pdf.annotations/gotoaction/gotoaction/_index.md new file mode 100644 index 0000000000..0fa3905865 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/gotoaction/gotoaction/_index.md @@ -0,0 +1,226 @@ +--- +title: Aspose::Pdf::Annotations::GoToAction::GoToAction constructor +linktitle: GoToAction +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::GoToAction::GoToAction constructor. Constructor for GoToAction class in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/gotoaction/gotoaction/ +--- +## GoToAction::GoToAction(int32_t) constructor + + +Constructor for [GoToAction](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::GoToAction::GoToAction(int32_t page) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | int32_t | The destination page number to jump to. | +## Remarks + + + + Deprecated + + Use constructor with Aspose.Pdf.Page parameter instead of this one. Reason: if to use this constructor there is the problem with the document when to resave it in Adobe Acrobat. + + + + + page + + + The destination page number to jump to. + + + +## See Also + +* Class [GoToAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## GoToAction::GoToAction(System::SharedPtr\) constructor + + +Constructor for [GoToAction](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::GoToAction::GoToAction(System::SharedPtr page) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | [Aspose.Pdf.Page](../../../aspose.pdf/page/) destination object to jump to. | +## Remarks + + + + + + page + + + + Aspose.Pdf.Page destination object to jump to. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [GoToAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## GoToAction::GoToAction(System::SharedPtr\, ExplicitDestinationType, const System::ArrayPtr\\&) constructor + + +Constructor for [GoToAction](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::GoToAction::GoToAction(System::SharedPtr page, ExplicitDestinationType type, const System::ArrayPtr &values) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | Destination page. | +| type | ExplicitDestinationType | Destination type. | +| values | const System::ArrayPtr\\& | Action parameters. | +## Remarks + + + + + + page + + + Destination page. + + + + + type + + + Destination type. + + + + + values + + + Action parameters. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Enum [ExplicitDestinationType](../../explicitdestinationtype/) +* Class [GoToAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## GoToAction::GoToAction(System::SharedPtr\) constructor + + +Constructor. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::GoToAction::GoToAction(System::SharedPtr destination) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| destination | System::SharedPtr\ | Explicit destination. | +## Remarks + + + + + + destination + + + Explicit destination. + + + +## See Also + +* Class [ExplicitDestination](../../explicitdestination/) +* Class [GoToAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## GoToAction::GoToAction() constructor + + +Constructor. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::GoToAction::GoToAction() +``` + +## Remarks + + + + Deprecated + + Use constructors with parameters. + + +## See Also + +* Class [GoToAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## GoToAction::GoToAction(System::SharedPtr\, System::String) constructor + + +Action which linked with Named Destination. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::GoToAction::GoToAction(System::SharedPtr doc, System::String name) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| doc | System::SharedPtr\ | [Document](../../../aspose.pdf/document/) where action will be created. | +| name | System::String | Name of the destination. | +## Remarks + + + + + + doc + + + + Document where action will be created. + + + + + name + + + Name of the destination. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [GoToAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/gotoaction/set_destination/_index.md b/english/cpp/aspose.pdf.annotations/gotoaction/set_destination/_index.md new file mode 100644 index 0000000000..038ab12257 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/gotoaction/set_destination/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::GoToAction::set_Destination method +linktitle: set_Destination +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::GoToAction::set_Destination method. Sets the destination to jump to in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/gotoaction/set_destination/ +--- +## GoToAction::set_Destination method + + +Sets the destination to jump to. + +```cpp +virtual ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::GoToAction::set_Destination(System::SharedPtr value) +``` + +## See Also + +* Class [IAppointment](../../iappointment/) +* Class [GoToAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/gotoremoteaction/_index.md b/english/cpp/aspose.pdf.annotations/gotoremoteaction/_index.md new file mode 100644 index 0000000000..1e1926d664 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/gotoremoteaction/_index.md @@ -0,0 +1,44 @@ +--- +title: Aspose::Pdf::Annotations::GoToRemoteAction class +linktitle: GoToRemoteAction +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::GoToRemoteAction class. Represents a remote go-to action that is similar to an ordinary go-to action but jumps to a destination in another PDF file instead of the current file in C++.' +type: docs +weight: 4400 +url: /cpp/aspose.pdf.annotations/gotoremoteaction/ +--- +## GoToRemoteAction class + + +Represents a remote go-to action that is similar to an ordinary go-to action but jumps to a destination in another PDF file instead of the current file. + +```cpp +class GoToRemoteAction : public Aspose::Pdf::Annotations::GoToAction +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_Destination](./get_destination/)() override | Gets the destination to jump to. | +| [get_File](./get_file/)() | Gets the specification of the file in which the destination is located. | +| [get_NewWindow](./get_newwindow/)() | Gets a flag specifying whether to open the destination document in a new window. | +| [get_Next](../pdfaction/get_next/)() | Next actions in sequence. | +| [GetECMAScriptString](../pdfaction/getecmascriptstring/)() | Gets string for ECMAScript Action. | +| [GoToAction](../gotoaction/gotoaction/)(int32_t) | Constructor for [GoToAction](../gotoaction/) class. | +| [GoToAction](../gotoaction/gotoaction/)(System::SharedPtr\) | Constructor for [GoToAction](../gotoaction/) class. | +| [GoToAction](../gotoaction/gotoaction/)(System::SharedPtr\, ExplicitDestinationType, const System::ArrayPtr\\&) | Constructor for [GoToAction](../gotoaction/) class. | +| [GoToAction](../gotoaction/gotoaction/)(System::SharedPtr\) | Constructor. | +| [GoToAction](../gotoaction/gotoaction/)() | Constructor. | +| [GoToAction](../gotoaction/gotoaction/)(System::SharedPtr\, System::String) | Action which linked with Named Destination. | +| [GoToRemoteAction](./gotoremoteaction/)(System::String, int32_t) | Initializes [GoToRemoteAction](./) object. | +| [GoToRemoteAction](./gotoremoteaction/)(System::String, System::SharedPtr\) | Initializes [GoToRemoteAction](./) object. | +| [set_Destination](./set_destination/)(System::SharedPtr\) override | Sets the destination to jump to. | +| [set_File](./set_file/)(System::SharedPtr\) | Sets the specification of the file in which the destination is located. | +| [set_NewWindow](./set_newwindow/)(ExtendedBoolean) | Sets a flag specifying whether to open the destination document in a new window. | +| [ToString](../pdfaction/tostring/)() const override | Returns string representation of [ExplicitDestination](../explicitdestination/) object. | +## See Also + +* Class [GoToAction](../gotoaction/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/gotoremoteaction/get_destination/_index.md b/english/cpp/aspose.pdf.annotations/gotoremoteaction/get_destination/_index.md new file mode 100644 index 0000000000..8cbb01d05f --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/gotoremoteaction/get_destination/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::GoToRemoteAction::get_Destination method +linktitle: get_Destination +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::GoToRemoteAction::get_Destination method. Gets the destination to jump to in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/gotoremoteaction/get_destination/ +--- +## GoToRemoteAction::get_Destination method + + +Gets the destination to jump to. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::GoToRemoteAction::get_Destination() override +``` + +## See Also + +* Class [IAppointment](../../iappointment/) +* Class [GoToRemoteAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/gotoremoteaction/get_file/_index.md b/english/cpp/aspose.pdf.annotations/gotoremoteaction/get_file/_index.md new file mode 100644 index 0000000000..6593252085 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/gotoremoteaction/get_file/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::GoToRemoteAction::get_File method +linktitle: get_File +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::GoToRemoteAction::get_File method. Gets the specification of the file in which the destination is located in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/gotoremoteaction/get_file/ +--- +## GoToRemoteAction::get_File method + + +Gets the specification of the file in which the destination is located. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::GoToRemoteAction::get_File() +``` + +## See Also + +* Class [FileSpecification](../../../aspose.pdf/filespecification/) +* Class [GoToRemoteAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/gotoremoteaction/get_newwindow/_index.md b/english/cpp/aspose.pdf.annotations/gotoremoteaction/get_newwindow/_index.md new file mode 100644 index 0000000000..d7a5593786 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/gotoremoteaction/get_newwindow/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::GoToRemoteAction::get_NewWindow method +linktitle: get_NewWindow +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::GoToRemoteAction::get_NewWindow method. Gets a flag specifying whether to open the destination document in a new window in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/gotoremoteaction/get_newwindow/ +--- +## GoToRemoteAction::get_NewWindow method + + +Gets a flag specifying whether to open the destination document in a new window. + +```cpp +ASPOSE_PDF_SHARED_API ExtendedBoolean Aspose::Pdf::Annotations::GoToRemoteAction::get_NewWindow() +``` + +## See Also + +* Enum [ExtendedBoolean](../../../aspose.pdf/extendedboolean/) +* Class [GoToRemoteAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/gotoremoteaction/gotoremoteaction/_index.md b/english/cpp/aspose.pdf.annotations/gotoremoteaction/gotoremoteaction/_index.md new file mode 100644 index 0000000000..0370646249 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/gotoremoteaction/gotoremoteaction/_index.md @@ -0,0 +1,90 @@ +--- +title: Aspose::Pdf::Annotations::GoToRemoteAction::GoToRemoteAction constructor +linktitle: GoToRemoteAction +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::GoToRemoteAction::GoToRemoteAction constructor. Initializes GoToRemoteAction object in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.annotations/gotoremoteaction/gotoremoteaction/ +--- +## GoToRemoteAction::GoToRemoteAction(System::String, int32_t) constructor + + +Initializes [GoToRemoteAction](../) object. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::GoToRemoteAction::GoToRemoteAction(System::String remotePdf, int32_t remotePageNumber) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| remotePdf | System::String | Destination PDF document. | +| remotePageNumber | int32_t | Destination page number. | +## Remarks + + + + + + remotePdf + + + Destination PDF document. + + + + + remotePageNumber + + + Destination page number. + + + +## See Also + +* Class [GoToRemoteAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## GoToRemoteAction::GoToRemoteAction(System::String, System::SharedPtr\) constructor + + +Initializes [GoToRemoteAction](../) object. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::GoToRemoteAction::GoToRemoteAction(System::String remotePdf, System::SharedPtr destination) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| remotePdf | System::String | Destination PDF document. | +| destination | System::SharedPtr\ | Destination in the PDF document. | +## Remarks + + + + + + remotePdf + + + Destination PDF document. + + + + + destination + + + Destination in the PDF document. + + + +## See Also + +* Class [ExplicitDestination](../../explicitdestination/) +* Class [GoToRemoteAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/gotoremoteaction/set_destination/_index.md b/english/cpp/aspose.pdf.annotations/gotoremoteaction/set_destination/_index.md new file mode 100644 index 0000000000..d0c42d06f0 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/gotoremoteaction/set_destination/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::GoToRemoteAction::set_Destination method +linktitle: set_Destination +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::GoToRemoteAction::set_Destination method. Sets the destination to jump to in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/gotoremoteaction/set_destination/ +--- +## GoToRemoteAction::set_Destination method + + +Sets the destination to jump to. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::GoToRemoteAction::set_Destination(System::SharedPtr value) override +``` + +## See Also + +* Class [IAppointment](../../iappointment/) +* Class [GoToRemoteAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/gotoremoteaction/set_file/_index.md b/english/cpp/aspose.pdf.annotations/gotoremoteaction/set_file/_index.md new file mode 100644 index 0000000000..2d02b92e0c --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/gotoremoteaction/set_file/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::GoToRemoteAction::set_File method +linktitle: set_File +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::GoToRemoteAction::set_File method. Sets the specification of the file in which the destination is located in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/gotoremoteaction/set_file/ +--- +## GoToRemoteAction::set_File method + + +Sets the specification of the file in which the destination is located. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::GoToRemoteAction::set_File(System::SharedPtr value) +``` + +## See Also + +* Class [FileSpecification](../../../aspose.pdf/filespecification/) +* Class [GoToRemoteAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/gotoremoteaction/set_newwindow/_index.md b/english/cpp/aspose.pdf.annotations/gotoremoteaction/set_newwindow/_index.md new file mode 100644 index 0000000000..f4d69d3578 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/gotoremoteaction/set_newwindow/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::GoToRemoteAction::set_NewWindow method +linktitle: set_NewWindow +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::GoToRemoteAction::set_NewWindow method. Sets a flag specifying whether to open the destination document in a new window in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/gotoremoteaction/set_newwindow/ +--- +## GoToRemoteAction::set_NewWindow method + + +Sets a flag specifying whether to open the destination document in a new window. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::GoToRemoteAction::set_NewWindow(ExtendedBoolean value) +``` + +## See Also + +* Enum [ExtendedBoolean](../../../aspose.pdf/extendedboolean/) +* Class [GoToRemoteAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/gotouriaction/_index.md b/english/cpp/aspose.pdf.annotations/gotouriaction/_index.md new file mode 100644 index 0000000000..b4ff0f90ce --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/gotouriaction/_index.md @@ -0,0 +1,33 @@ +--- +title: Aspose::Pdf::Annotations::GoToURIAction class +linktitle: GoToURIAction +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::GoToURIAction class. Represents a URI action causes a URI to be resolved in C++.' +type: docs +weight: 4500 +url: /cpp/aspose.pdf.annotations/gotouriaction/ +--- +## GoToURIAction class + + +Represents a URI action causes a URI to be resolved. + +```cpp +class GoToURIAction : public Aspose::Pdf::Annotations::PdfAction +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_Next](../pdfaction/get_next/)() | Next actions in sequence. | +| [get_URI](./get_uri/)() | Gets the uniform resource identifier to resolve. | +| [GetECMAScriptString](../pdfaction/getecmascriptstring/)() | Gets string for ECMAScript Action. | +| [GoToURIAction](./gotouriaction/)(System::String) | Constructor. | +| [set_URI](./set_uri/)(System::String) | Sets the uniform resource identifier to resolve. | +| [ToString](../pdfaction/tostring/)() const override | Returns string representation of [ExplicitDestination](../explicitdestination/) object. | +## See Also + +* Class [PdfAction](../pdfaction/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/gotouriaction/get_uri/_index.md b/english/cpp/aspose.pdf.annotations/gotouriaction/get_uri/_index.md new file mode 100644 index 0000000000..0aef2bffb6 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/gotouriaction/get_uri/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::GoToURIAction::get_URI method +linktitle: get_URI +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::GoToURIAction::get_URI method. Gets the uniform resource identifier to resolve in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/gotouriaction/get_uri/ +--- +## GoToURIAction::get_URI method + + +Gets the uniform resource identifier to resolve. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::GoToURIAction::get_URI() +``` + +## See Also + +* Class [GoToURIAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/gotouriaction/gotouriaction/_index.md b/english/cpp/aspose.pdf.annotations/gotouriaction/gotouriaction/_index.md new file mode 100644 index 0000000000..8ee0364128 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/gotouriaction/gotouriaction/_index.md @@ -0,0 +1,40 @@ +--- +title: Aspose::Pdf::Annotations::GoToURIAction::GoToURIAction constructor +linktitle: GoToURIAction +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::GoToURIAction::GoToURIAction constructor. Constructor in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/gotouriaction/gotouriaction/ +--- +## GoToURIAction::GoToURIAction constructor + + +Constructor. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::GoToURIAction::GoToURIAction(System::String uri) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| uri | System::String | The uniform resource identifier to resolve. | +## Remarks + + + + + + uri + + + The uniform resource identifier to resolve. + + + +## See Also + +* Class [GoToURIAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/gotouriaction/set_uri/_index.md b/english/cpp/aspose.pdf.annotations/gotouriaction/set_uri/_index.md new file mode 100644 index 0000000000..92a37df645 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/gotouriaction/set_uri/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::GoToURIAction::set_URI method +linktitle: set_URI +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::GoToURIAction::set_URI method. Sets the uniform resource identifier to resolve in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/gotouriaction/set_uri/ +--- +## GoToURIAction::set_URI method + + +Sets the uniform resource identifier to resolve. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::GoToURIAction::set_URI(System::String value) +``` + +## See Also + +* Class [GoToURIAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/hideaction/_index.md b/english/cpp/aspose.pdf.annotations/hideaction/_index.md new file mode 100644 index 0000000000..1629503d0e --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/hideaction/_index.md @@ -0,0 +1,40 @@ +--- +title: Aspose::Pdf::Annotations::HideAction class +linktitle: HideAction +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::HideAction class. Represents a hide action that hides or shows one or more annotations on the screen by setting or clearing their Hidden flags in C++.' +type: docs +weight: 4600 +url: /cpp/aspose.pdf.annotations/hideaction/ +--- +## HideAction class + + +Represents a hide action that hides or shows one or more annotations on the screen by setting or clearing their Hidden flags. + +```cpp +class HideAction : public Aspose::Pdf::Annotations::PdfAction +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_IsHidden](./get_ishidden/)() | Gets status of the annotation(s) to hide/display. | +| [get_Next](../pdfaction/get_next/)() | Next actions in sequence. | +| [GetECMAScriptString](../pdfaction/getecmascriptstring/)() | Gets string for ECMAScript Action. | +| [HideAction](./hideaction/)(System::SharedPtr\) | Initializes a new instance of the [HideAction](./) class for the specified annotation. | +| [HideAction](./hideaction/)(System::SharedPtr\, bool) | Initializes a new instance of the [HideAction](./) class for the specified annotation and invisibility flag. | +| [HideAction](./hideaction/)(System::String) | Initializes a new instance of the [HideAction](./) class for the specified field name. | +| [HideAction](./hideaction/)(System::String, bool) | Initializes a new instance of the [HideAction](./) class for the specified field name and invisibility flag. | +| [HideAction](./hideaction/)(System::ArrayPtr\\>) | Initializes a new instance of the [HideAction](./) class for the specified annotations. | +| [HideAction](./hideaction/)(System::ArrayPtr\\>, bool) | Initializes a new instance of the [HideAction](./) class for the specified annotations and for invisibility flag. | +| [HideAction](./hideaction/)(System::ArrayPtr\) | Initializes a new instance of the [HideAction](./) class for the specified field names. | +| [HideAction](./hideaction/)(System::ArrayPtr\, bool) | Initializes a new instance of the [HideAction](./) class for the specified field names and for invisibility flag. | +| [set_IsHidden](./set_ishidden/)(bool) | Sets status of the annotation(s) to hide/display. | +| [ToString](../pdfaction/tostring/)() const override | Returns string representation of [ExplicitDestination](../explicitdestination/) object. | +## See Also + +* Class [PdfAction](../pdfaction/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/hideaction/get_ishidden/_index.md b/english/cpp/aspose.pdf.annotations/hideaction/get_ishidden/_index.md new file mode 100644 index 0000000000..108073f329 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/hideaction/get_ishidden/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::HideAction::get_IsHidden method +linktitle: get_IsHidden +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::HideAction::get_IsHidden method. Gets status of the annotation(s) to hide/display in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/hideaction/get_ishidden/ +--- +## HideAction::get_IsHidden method + + +Gets status of the annotation(s) to hide/display. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Annotations::HideAction::get_IsHidden() +``` + +## See Also + +* Class [HideAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/hideaction/hideaction/_index.md b/english/cpp/aspose.pdf.annotations/hideaction/hideaction/_index.md new file mode 100644 index 0000000000..76e9e60094 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/hideaction/hideaction/_index.md @@ -0,0 +1,297 @@ +--- +title: Aspose::Pdf::Annotations::HideAction::HideAction constructor +linktitle: HideAction +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::HideAction::HideAction constructor. Initializes a new instance of the HideAction class for the specified annotation in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/hideaction/hideaction/ +--- +## HideAction::HideAction(System::SharedPtr\) constructor + + +Initializes a new instance of the [HideAction](../) class for the specified annotation. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::HideAction::HideAction(System::SharedPtr annotation) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| annotation | System::SharedPtr\ | An annotation to be hidden. | +## Remarks + + + + + + annotation + + + An annotation to be hidden. + + + +## See Also + +* Class [Annotation](../../annotation/) +* Class [HideAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## HideAction::HideAction(System::SharedPtr\, bool) constructor + + +Initializes a new instance of the [HideAction](../) class for the specified annotation and invisibility flag. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::HideAction::HideAction(System::SharedPtr annotation, bool isHidden) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| annotation | System::SharedPtr\ | An annotation to be hidden or shown. | +| isHidden | bool | A flag indicating whether to hide the annotation (true) or show it (false). | +## Remarks + + + + + + annotation + + + An annotation to be hidden or shown. + + + + + isHidden + + + A flag indicating whether to hide the annotation (true) or show it (false). + + + +## See Also + +* Class [Annotation](../../annotation/) +* Class [HideAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## HideAction::HideAction(System::String) constructor + + +Initializes a new instance of the [HideAction](../) class for the specified field name. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::HideAction::HideAction(System::String fieldName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | A text string giving the fully qualified field name of an interactive form field. | +## Remarks + + + + + + fieldName + + + A text string giving the fully qualified field name of an interactive form field. + + + +## See Also + +* Class [HideAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## HideAction::HideAction(System::String, bool) constructor + + +Initializes a new instance of the [HideAction](../) class for the specified field name and invisibility flag. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::HideAction::HideAction(System::String fieldName, bool isHidden) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | A text string giving the fully qualified field name of an interactive form field. | +| isHidden | bool | A flag indicating whether to hide the field (true) or show it (false). | +## Remarks + + + + + + fieldName + + + A text string giving the fully qualified field name of an interactive form field. + + + + + isHidden + + + A flag indicating whether to hide the field (true) or show it (false). + + + +## See Also + +* Class [HideAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## HideAction::HideAction(System::ArrayPtr\\>) constructor + + +Initializes a new instance of the [HideAction](../) class for the specified annotations. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::HideAction::HideAction(System::ArrayPtr> annotations) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| annotations | System::ArrayPtr\\> | An array of annotations to be hidden. | +## Remarks + + + + + + annotations + + + An array of annotations to be hidden. + + + +## See Also + +* Class [Annotation](../../annotation/) +* Class [HideAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## HideAction::HideAction(System::ArrayPtr\\>, bool) constructor + + +Initializes a new instance of the [HideAction](../) class for the specified annotations and for invisibility flag. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::HideAction::HideAction(System::ArrayPtr> annotations, bool isHidden) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| annotations | System::ArrayPtr\\> | An array of annotations to be hidden or shown. | +| isHidden | bool | A flag indicating whether to hide the annotations (true) or show it (false). | +## Remarks + + + + + + annotations + + + An array of annotations to be hidden or shown. + + + + + isHidden + + + A flag indicating whether to hide the annotations (true) or show it (false). + + + +## See Also + +* Class [Annotation](../../annotation/) +* Class [HideAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## HideAction::HideAction(System::ArrayPtr\) constructor + + +Initializes a new instance of the [HideAction](../) class for the specified field names. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::HideAction::HideAction(System::ArrayPtr names) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| names | System::ArrayPtr\ | An array of strings giving the fully qualified field names of an interactive form fields. | +## Remarks + + + + + + names + + + An array of strings giving the fully qualified field names of an interactive form fields. + + + +## See Also + +* Class [HideAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## HideAction::HideAction(System::ArrayPtr\, bool) constructor + + +Initializes a new instance of the [HideAction](../) class for the specified field names and for invisibility flag. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::HideAction::HideAction(System::ArrayPtr names, bool isHidden) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| names | System::ArrayPtr\ | An array of strings giving the fully qualified field names of an interactive form fields. | +| isHidden | bool | A flag indicating whether to hide the fields (true) or show it (false). | +## Remarks + + + + + + names + + + An array of strings giving the fully qualified field names of an interactive form fields. + + + + + isHidden + + + A flag indicating whether to hide the fields (true) or show it (false). + + + +## See Also + +* Class [HideAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/hideaction/set_ishidden/_index.md b/english/cpp/aspose.pdf.annotations/hideaction/set_ishidden/_index.md new file mode 100644 index 0000000000..cf13c2072b --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/hideaction/set_ishidden/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::HideAction::set_IsHidden method +linktitle: set_IsHidden +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::HideAction::set_IsHidden method. Sets status of the annotation(s) to hide/display in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/hideaction/set_ishidden/ +--- +## HideAction::set_IsHidden method + + +Sets status of the annotation(s) to hide/display. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::HideAction::set_IsHidden(bool value) +``` + +## See Also + +* Class [HideAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/highlightannotation/_index.md b/english/cpp/aspose.pdf.annotations/highlightannotation/_index.md new file mode 100644 index 0000000000..f24a3cd427 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/highlightannotation/_index.md @@ -0,0 +1,113 @@ +--- +title: Aspose::Pdf::Annotations::HighlightAnnotation class +linktitle: HighlightAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::HighlightAnnotation class. Represents a highlight annotation that highlights a range of text in the document in C++.' +type: docs +weight: 4700 +url: /cpp/aspose.pdf.annotations/highlightannotation/ +--- +## HighlightAnnotation class + + +Represents a highlight annotation that highlights a range of text in the document. + +```cpp +class HighlightAnnotation : public Aspose::Pdf::Annotations::TextMarkupAnnotation +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Accept](./accept/)(System::SharedPtr\) override | Accepts visitor object to process the annotation. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| [ChangeAfterResize](../textmarkupannotation/changeafterresize/)(System::SharedPtr\) override | Updates the QuadPoints, according to the matrix transform. | +| [ClearState](../markupannotation/clearstate/)() | Clears state and state model for the annotation. For example, clears the review status for an annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [Flatten](../annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](../annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../annotation/get_alignment/)() | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [get_AnnotationType](./get_annotationtype/)() override | Gets type of annotation. | +| [get_Appearance](../annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../annotation/get_border/)() const | Gets annotation border characteristics. [Border](../border/) | +| [get_Characteristics](../annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../annotation/get_color/)() | Gets annotation color. | +| [get_Contents](../annotation/get_contents/)() | Gets annotation text. | +| [get_CreationDate](../markupannotation/get_creationdate/)() | Gets date and time when annotation was created. | +| [get_Flags](../annotation/get_flags/)() | Flags of the annotation. | +| [get_FullName](../annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../annotation/get_height/)() | Gets height of the annotation. | +| [get_HorizontalAlignment](../annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_InReplyTo](../markupannotation/get_inreplyto/)() | A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| [get_Modified](../annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Name](../annotation/get_name/)() | Gets annotation name on the page. | +| [get_Opacity](../markupannotation/get_opacity/)() | Gets the constant opacity value to be used in painting the annotation. | +| virtual [get_PageIndex](../annotation/get_pageindex/)() | Gets index of page which contains annotation. | +| [get_Popup](../markupannotation/get_popup/)() | Pop-up annotation for entering or editing the text associated with this annotation. | +| [get_QuadPoints](../textmarkupannotation/get_quadpoints/)() | Gets an array of points specifying the coordinates of n quadrilaterals. Each quadrilateral encompasses a word or group of contiguous words in the text underlying the annotation. | +| virtual [get_Rect](../annotation/get_rect/)() | Gets annotation rectangle. | +| [get_ReplyType](../markupannotation/get_replytype/)() | A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. | +| [get_RichText](../markupannotation/get_richtext/)() | Gets a rich text string to be displayed in the pop-up window when the annotation is opened. | +| [get_States](../annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_Subject](../markupannotation/get_subject/)() | Gets text representing desciption of the object. | +| [get_TextHorizontalAlignment](../annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| [get_Title](../markupannotation/get_title/)() override | Gets a text that shall be displayed in title bar of annotation. | +| static [get_UpdateAppearanceOnConvert](../annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetMarkedText](../textmarkupannotation/getmarkedtext/)() | Gets text under markup annotation as string. | +| [GetMarkedTextFragments](../textmarkupannotation/getmarkedtextfragments/)() | Gets text under markup annotation as [TextFragmentCollection](../). | +| [GetRectangle](../annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| [GetState](../markupannotation/getstate/)() | Gets the state of the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [GetStateModel](../markupannotation/getstatemodel/)() | Gets the state model of the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [HighlightAnnotation](./highlightannotation/)(System::SharedPtr\, System::SharedPtr\) | Creates new Highlight annotation on the specified page. | +| [MarkupAnnotation](../markupannotation/markupannotation/)(System::SharedPtr\) | Constructor for markup annotation. | +| virtual [set_ActiveState](../annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../annotation/set_alignment/)(TextAlignment) | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_Border](../annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../border/) | +| [set_Color](../annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](../annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_Flags](../annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| virtual [set_Height](../annotation/set_height/)(double) | Sets height of the annotation. | +| [set_HorizontalAlignment](../annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_InReplyTo](../markupannotation/set_inreplyto/)(System::SharedPtr\) | A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| [set_Modified](../annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Name](../annotation/set_name/)(System::String) | Sets annotation name on the page. | +| [set_Opacity](../markupannotation/set_opacity/)(double) | Sets the constant opacity value to be used in painting the annotation. | +| [set_Popup](../markupannotation/set_popup/)(System::SharedPtr\) | Pop-up annotation for entering or editing the text associated with this annotation. | +| [set_QuadPoints](../textmarkupannotation/set_quadpoints/)(System::ArrayPtr\\>) | Sets an array of points specifying the coordinates of n quadrilaterals. Each quadrilateral encompasses a word or group of contiguous words in the text underlying the annotation. | +| virtual [set_Rect](../annotation/set_rect/)(System::SharedPtr\) | Sets annotation rectangle. | +| [set_ReplyType](../markupannotation/set_replytype/)(Aspose::Pdf::Annotations::ReplyType) | A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. | +| [set_RichText](../markupannotation/set_richtext/)(System::String) | Sets a rich text string to be displayed in the pop-up window when the annotation is opened. | +| [set_Subject](../markupannotation/set_subject/)(System::String) | Gets text representing desciption of the object. | +| [set_TextHorizontalAlignment](../annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| [set_Title](../markupannotation/set_title/)(System::String) override | Sets a text that shall be displayed in title bar of annotation. | +| static [set_UpdateAppearanceOnConvert](../annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [SetMarkedState](../markupannotation/setmarkedstate/)(bool) | Sets Marked and Unmarked state for the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SetReviewState](../markupannotation/setreviewstate/)(AnnotationState, System::String) | Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SetReviewState](../markupannotation/setreviewstate/)(AnnotationState) | Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. The state is set by the user who created the target annotation. The value is taken from the Title property of the target annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +## See Also + +* Class [TextMarkupAnnotation](../textmarkupannotation/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/highlightannotation/accept/_index.md b/english/cpp/aspose.pdf.annotations/highlightannotation/accept/_index.md new file mode 100644 index 0000000000..583875dfd0 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/highlightannotation/accept/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Annotations::HighlightAnnotation::Accept method +linktitle: Accept +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::HighlightAnnotation::Accept method. Accepts visitor object to process the annotation in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/highlightannotation/accept/ +--- +## HighlightAnnotation::Accept method + + +Accepts visitor object to process the annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::HighlightAnnotation::Accept(System::SharedPtr visitor) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| visitor | System::SharedPtr\ | Visitor object. | +## Remarks + + + + + + visitor + + + Visitor object. + + + +## See Also + +* Class [AnnotationSelector](../../annotationselector/) +* Class [HighlightAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/highlightannotation/get_annotationtype/_index.md b/english/cpp/aspose.pdf.annotations/highlightannotation/get_annotationtype/_index.md new file mode 100644 index 0000000000..4f34e6ff33 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/highlightannotation/get_annotationtype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::HighlightAnnotation::get_AnnotationType method +linktitle: get_AnnotationType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::HighlightAnnotation::get_AnnotationType method. Gets type of annotation in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/highlightannotation/get_annotationtype/ +--- +## HighlightAnnotation::get_AnnotationType method + + +Gets type of annotation. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::AnnotationType Aspose::Pdf::Annotations::HighlightAnnotation::get_AnnotationType() override +``` + +## See Also + +* Enum [AnnotationType](../../annotationtype/) +* Class [HighlightAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/highlightannotation/highlightannotation/_index.md b/english/cpp/aspose.pdf.annotations/highlightannotation/highlightannotation/_index.md new file mode 100644 index 0000000000..d08ab39a3d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/highlightannotation/highlightannotation/_index.md @@ -0,0 +1,51 @@ +--- +title: Aspose::Pdf::Annotations::HighlightAnnotation::HighlightAnnotation constructor +linktitle: HighlightAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::HighlightAnnotation::HighlightAnnotation constructor. Creates new Highlight annotation on the specified page in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/highlightannotation/highlightannotation/ +--- +## HighlightAnnotation::HighlightAnnotation constructor + + +Creates new Highlight annotation on the specified page. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::HighlightAnnotation::HighlightAnnotation(System::SharedPtr page, System::SharedPtr rect) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The document's page where annotation should be created. | +| rect | System::SharedPtr\ | The annotation rectangle, defining the location of the annotation on the page. | +## Remarks + + + + + + page + + + The document's page where annotation should be created. + + + + + rect + + + The annotation rectangle, defining the location of the annotation on the page. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [HighlightAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/highlightingmode/_index.md b/english/cpp/aspose.pdf.annotations/highlightingmode/_index.md new file mode 100644 index 0000000000..6757ee7502 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/highlightingmode/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Annotations::HighlightingMode enum +linktitle: HighlightingMode +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::HighlightingMode enum. Enumerates the annotation''s highlighting mode, the visual effect to be used when the mouse button is pressed or held down inside its active area in C++.' +type: docs +weight: 15200 +url: /cpp/aspose.pdf.annotations/highlightingmode/ +--- +## HighlightingMode enum + + +Enumerates the annotation's highlighting mode, the visual effect to be used when the mouse button is pressed or held down inside its active area. + +```cpp +enum class HighlightingMode +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| None | 0 | No highlighting. | +| Invert | 1 | Invert the contents of the annotation rectangle. | +| Outline | 2 | Invert the annotation's border. | +| Push | 3 | Display the annotation's down appearance, if any. If no down appearance is defined, offset the contents of the annotation rectangle to appear as if it were being pushed below the surface of the page. | +| Toggle | 4 | Same as Push (which is preferred). | + +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/highlightingmodeconverter/_index.md b/english/cpp/aspose.pdf.annotations/highlightingmodeconverter/_index.md new file mode 100644 index 0000000000..516650a2f2 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/highlightingmodeconverter/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::HighlightingModeConverter class +linktitle: HighlightingModeConverter +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Annotations::HighlightingModeConverter class in C++.' +type: docs +weight: 4800 +url: /cpp/aspose.pdf.annotations/highlightingmodeconverter/ +--- +## HighlightingModeConverter class + + + + +```cpp +class HighlightingModeConverter : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [ToEnum](./toenum/)(System::String) | | +| static [ToString](./tostring/)(HighlightingMode) | | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/highlightingmodeconverter/toenum/_index.md b/english/cpp/aspose.pdf.annotations/highlightingmodeconverter/toenum/_index.md new file mode 100644 index 0000000000..f957534b12 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/highlightingmodeconverter/toenum/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::HighlightingModeConverter::ToEnum method +linktitle: ToEnum +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToEnum method of Aspose::Pdf::Annotations::HighlightingModeConverter class in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/highlightingmodeconverter/toenum/ +--- +## HighlightingModeConverter::ToEnum method + + + + +```cpp +static ASPOSE_PDF_SHARED_API HighlightingMode Aspose::Pdf::Annotations::HighlightingModeConverter::ToEnum(System::String value) +``` + +## See Also + +* Enum [HighlightingMode](../../highlightingmode/) +* Class [HighlightingModeConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/highlightingmodeconverter/tostring/_index.md b/english/cpp/aspose.pdf.annotations/highlightingmodeconverter/tostring/_index.md new file mode 100644 index 0000000000..fc0125a8fe --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/highlightingmodeconverter/tostring/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::HighlightingModeConverter::ToString method +linktitle: ToString +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToString method of Aspose::Pdf::Annotations::HighlightingModeConverter class in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/highlightingmodeconverter/tostring/ +--- +## HighlightingModeConverter::ToString method + + + + +```cpp +static ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::HighlightingModeConverter::ToString(HighlightingMode value) +``` + +## See Also + +* Enum [HighlightingMode](../../highlightingmode/) +* Class [HighlightingModeConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/iannotationvisitor/_index.md b/english/cpp/aspose.pdf.annotations/iannotationvisitor/_index.md new file mode 100644 index 0000000000..101957258f --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/iannotationvisitor/_index.md @@ -0,0 +1,50 @@ +--- +title: Aspose::Pdf::Annotations::IAnnotationVisitor class +linktitle: IAnnotationVisitor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::IAnnotationVisitor class. Defines Visitor for visiting different document annotations in C++.' +type: docs +weight: 4900 +url: /cpp/aspose.pdf.annotations/iannotationvisitor/ +--- +## IAnnotationVisitor class + + +Defines Visitor for visiting different document annotations. + +```cpp +class IAnnotationVisitor : public virtual System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| virtual [Visit](./visit/)(System::SharedPtr\) | Visit/select link annotation. | +| virtual [Visit](./visit/)(System::SharedPtr\) | Visit/select attachment annotation. | +| virtual [Visit](./visit/)(System::SharedPtr\) | Visit/select text annotation. | +| virtual [Visit](./visit/)(System::SharedPtr\) | Visit/select freetext annotation. | +| virtual [Visit](./visit/)(System::SharedPtr\) | Visit/select highlight annotation. | +| virtual [Visit](./visit/)(System::SharedPtr\) | Visit/select underline annotation. | +| virtual [Visit](./visit/)(System::SharedPtr\) | Visit/select strikeOut annotation. | +| virtual [Visit](./visit/)(System::SharedPtr\) | Visit/select squiggly annotation. | +| virtual [Visit](./visit/)(System::SharedPtr\) | Visit/select popup annotation. | +| virtual [Visit](./visit/)(System::SharedPtr\) | Visit/select line annotation. | +| virtual [Visit](./visit/)(System::SharedPtr\) | Visit/select circle annotation. | +| virtual [Visit](./visit/)(System::SharedPtr\) | Visit/select square annotation. | +| virtual [Visit](./visit/)(System::SharedPtr\) | Visit/select ink annotation. | +| virtual [Visit](./visit/)(System::SharedPtr\) | Visit/select polyline annotation. | +| virtual [Visit](./visit/)(System::SharedPtr\) | Visit/select polygon annotation. | +| virtual [Visit](./visit/)(System::SharedPtr\) | Visit/select caret annotation. | +| virtual [Visit](./visit/)(System::SharedPtr\) | Visit/select stamp annotation. | +| virtual [Visit](./visit/)(System::SharedPtr\) | Visit/select widget annotation. | +| virtual [Visit](./visit/)(System::SharedPtr\) | Visit/select movie annotation. | +| virtual [Visit](./visit/)(System::SharedPtr\) | Visit/select screen annotation. | +| virtual [Visit](./visit/)(System::SharedPtr\) | Visit/select a trim mark annotation. | +| virtual [Visit](./visit/)(System::SharedPtr\) | Visit/select a bleed mark annotation. | +| virtual [Visit](./visit/)(System::SharedPtr\) | Visit/select a registration mark annotation. | +| virtual [Visit](./visit/)(System::SharedPtr\) | Visit/select a page information annotation. | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/iannotationvisitor/visit/_index.md b/english/cpp/aspose.pdf.annotations/iannotationvisitor/visit/_index.md new file mode 100644 index 0000000000..1499615f7d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/iannotationvisitor/visit/_index.md @@ -0,0 +1,797 @@ +--- +title: Aspose::Pdf::Annotations::IAnnotationVisitor::Visit method +linktitle: Visit +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::IAnnotationVisitor::Visit method. Visit/select link annotation in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/iannotationvisitor/visit/ +--- +## IAnnotationVisitor::Visit(System::SharedPtr\) method + + +Visit/select link annotation. + +```cpp +virtual void Aspose::Pdf::Annotations::IAnnotationVisitor::Visit(System::SharedPtr link)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| link | System::SharedPtr\ | [LinkAnnotation](../../linkannotation/) object example/template. | +## Remarks + + + + + + link + + + + LinkAnnotation object example/template. + + + +## See Also + +* Class [LinkAnnotation](../../linkannotation/) +* Class [IAnnotationVisitor](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## IAnnotationVisitor::Visit(System::SharedPtr\) method + + +Visit/select attachment annotation. + +```cpp +virtual void Aspose::Pdf::Annotations::IAnnotationVisitor::Visit(System::SharedPtr attachment)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| attachment | System::SharedPtr\ | [FileAttachmentAnnotation](../../fileattachmentannotation/) object example/template. | +## Remarks + + + + + + attachment + + + + FileAttachmentAnnotation object example/template. + + + +## See Also + +* Class [FileAttachmentAnnotation](../../fileattachmentannotation/) +* Class [IAnnotationVisitor](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## IAnnotationVisitor::Visit(System::SharedPtr\) method + + +Visit/select text annotation. + +```cpp +virtual void Aspose::Pdf::Annotations::IAnnotationVisitor::Visit(System::SharedPtr text)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| text | System::SharedPtr\ | [TextAnnotation](../../textannotation/) object example/template. | +## Remarks + + + + + + text + + + + TextAnnotation object example/template. + + + +## See Also + +* Class [TextAnnotation](../../textannotation/) +* Class [IAnnotationVisitor](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## IAnnotationVisitor::Visit(System::SharedPtr\) method + + +Visit/select freetext annotation. + +```cpp +virtual void Aspose::Pdf::Annotations::IAnnotationVisitor::Visit(System::SharedPtr freetext)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| freetext | System::SharedPtr\ | [FreeTextAnnotation](../../freetextannotation/) object example/template. | +## Remarks + + + + + + freetext + + + + FreeTextAnnotation object example/template. + + + +## See Also + +* Class [FreeTextAnnotation](../../freetextannotation/) +* Class [IAnnotationVisitor](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## IAnnotationVisitor::Visit(System::SharedPtr\) method + + +Visit/select highlight annotation. + +```cpp +virtual void Aspose::Pdf::Annotations::IAnnotationVisitor::Visit(System::SharedPtr highlight)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| highlight | System::SharedPtr\ | [HighlightAnnotation](../../highlightannotation/) object example/template. | +## Remarks + + + + + + highlight + + + + HighlightAnnotation object example/template. + + + +## See Also + +* Class [HighlightAnnotation](../../highlightannotation/) +* Class [IAnnotationVisitor](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## IAnnotationVisitor::Visit(System::SharedPtr\) method + + +Visit/select underline annotation. + +```cpp +virtual void Aspose::Pdf::Annotations::IAnnotationVisitor::Visit(System::SharedPtr underline)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| underline | System::SharedPtr\ | [UnderlineAnnotation](../../underlineannotation/) object example/template. | +## Remarks + + + + + + underline + + + + UnderlineAnnotation object example/template. + + + +## See Also + +* Class [UnderlineAnnotation](../../underlineannotation/) +* Class [IAnnotationVisitor](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## IAnnotationVisitor::Visit(System::SharedPtr\) method + + +Visit/select strikeOut annotation. + +```cpp +virtual void Aspose::Pdf::Annotations::IAnnotationVisitor::Visit(System::SharedPtr strikeOut)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| strikeOut | System::SharedPtr\ | [StrikeOutAnnotation](../../strikeoutannotation/) object example/template. | +## Remarks + + + + + + strikeOut + + + + StrikeOutAnnotation object example/template. + + + +## See Also + +* Class [StrikeOutAnnotation](../../strikeoutannotation/) +* Class [IAnnotationVisitor](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## IAnnotationVisitor::Visit(System::SharedPtr\) method + + +Visit/select squiggly annotation. + +```cpp +virtual void Aspose::Pdf::Annotations::IAnnotationVisitor::Visit(System::SharedPtr squiggly)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| squiggly | System::SharedPtr\ | [SquigglyAnnotation](../../squigglyannotation/) object example/template. | +## Remarks + + + + + + squiggly + + + + SquigglyAnnotation object example/template. + + + +## See Also + +* Class [SquigglyAnnotation](../../squigglyannotation/) +* Class [IAnnotationVisitor](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## IAnnotationVisitor::Visit(System::SharedPtr\) method + + +Visit/select popup annotation. + +```cpp +virtual void Aspose::Pdf::Annotations::IAnnotationVisitor::Visit(System::SharedPtr popup)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| popup | System::SharedPtr\ | [PopupAnnotation](../../popupannotation/) object example/template. | +## Remarks + + + + + + popup + + + + PopupAnnotation object example/template. + + + +## See Also + +* Class [PopupAnnotation](../../popupannotation/) +* Class [IAnnotationVisitor](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## IAnnotationVisitor::Visit(System::SharedPtr\) method + + +Visit/select line annotation. + +```cpp +virtual void Aspose::Pdf::Annotations::IAnnotationVisitor::Visit(System::SharedPtr line)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| line | System::SharedPtr\ | [LineAnnotation](../../lineannotation/) object example/template. | +## Remarks + + + + + + line + + + + LineAnnotation object example/template. + + + +## See Also + +* Class [LineAnnotation](../../lineannotation/) +* Class [IAnnotationVisitor](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## IAnnotationVisitor::Visit(System::SharedPtr\) method + + +Visit/select circle annotation. + +```cpp +virtual void Aspose::Pdf::Annotations::IAnnotationVisitor::Visit(System::SharedPtr circle)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| circle | System::SharedPtr\ | [CircleAnnotation](../../circleannotation/) object example/template. | +## Remarks + + + + + + circle + + + + CircleAnnotation object example/template. + + + +## See Also + +* Class [CircleAnnotation](../../circleannotation/) +* Class [IAnnotationVisitor](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## IAnnotationVisitor::Visit(System::SharedPtr\) method + + +Visit/select square annotation. + +```cpp +virtual void Aspose::Pdf::Annotations::IAnnotationVisitor::Visit(System::SharedPtr square)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| square | System::SharedPtr\ | [SquareAnnotation](../../squareannotation/) object example/template. | +## Remarks + + + + + + square + + + + SquareAnnotation object example/template. + + + +## See Also + +* Class [SquareAnnotation](../../squareannotation/) +* Class [IAnnotationVisitor](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## IAnnotationVisitor::Visit(System::SharedPtr\) method + + +Visit/select ink annotation. + +```cpp +virtual void Aspose::Pdf::Annotations::IAnnotationVisitor::Visit(System::SharedPtr ink)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| ink | System::SharedPtr\ | [InkAnnotation](../../inkannotation/) object example/template. | +## Remarks + + + + + + ink + + + + InkAnnotation object example/template. + + + +## See Also + +* Class [InkAnnotation](../../inkannotation/) +* Class [IAnnotationVisitor](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## IAnnotationVisitor::Visit(System::SharedPtr\) method + + +Visit/select polyline annotation. + +```cpp +virtual void Aspose::Pdf::Annotations::IAnnotationVisitor::Visit(System::SharedPtr polyline)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| polyline | System::SharedPtr\ | [PolylineAnnotation](../../polylineannotation/) object example/template. | +## Remarks + + + + + + polyline + + + + PolylineAnnotation object example/template. + + + +## See Also + +* Class [PolylineAnnotation](../../polylineannotation/) +* Class [IAnnotationVisitor](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## IAnnotationVisitor::Visit(System::SharedPtr\) method + + +Visit/select polygon annotation. + +```cpp +virtual void Aspose::Pdf::Annotations::IAnnotationVisitor::Visit(System::SharedPtr polygon)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| polygon | System::SharedPtr\ | [PolygonAnnotation](../../polygonannotation/) object example/template. | +## Remarks + + + + + + polygon + + + + PolygonAnnotation object example/template. + + + +## See Also + +* Class [PolygonAnnotation](../../polygonannotation/) +* Class [IAnnotationVisitor](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## IAnnotationVisitor::Visit(System::SharedPtr\) method + + +Visit/select caret annotation. + +```cpp +virtual void Aspose::Pdf::Annotations::IAnnotationVisitor::Visit(System::SharedPtr caret)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| caret | System::SharedPtr\ | [CaretAnnotation](../../caretannotation/) object example/template. | +## Remarks + + + + + + caret + + + + CaretAnnotation object example/template. + + + +## See Also + +* Class [CaretAnnotation](../../caretannotation/) +* Class [IAnnotationVisitor](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## IAnnotationVisitor::Visit(System::SharedPtr\) method + + +Visit/select stamp annotation. + +```cpp +virtual void Aspose::Pdf::Annotations::IAnnotationVisitor::Visit(System::SharedPtr stamp)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| stamp | System::SharedPtr\ | [StampAnnotation](../../stampannotation/) object example/template. | +## Remarks + + + + + + stamp + + + + StampAnnotation object example/template. + + + +## See Also + +* Class [StampAnnotation](../../stampannotation/) +* Class [IAnnotationVisitor](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## IAnnotationVisitor::Visit(System::SharedPtr\) method + + +Visit/select widget annotation. + +```cpp +virtual void Aspose::Pdf::Annotations::IAnnotationVisitor::Visit(System::SharedPtr widget)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| widget | System::SharedPtr\ | [WidgetAnnotation](../../widgetannotation/) object example/template. | +## Remarks + + + + + + widget + + + + WidgetAnnotation object example/template. + + + +## See Also + +* Class [WidgetAnnotation](../../widgetannotation/) +* Class [IAnnotationVisitor](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## IAnnotationVisitor::Visit(System::SharedPtr\) method + + +Visit/select movie annotation. + +```cpp +virtual void Aspose::Pdf::Annotations::IAnnotationVisitor::Visit(System::SharedPtr movie)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| movie | System::SharedPtr\ | [MovieAnnotation](../../movieannotation/) object example/template. | +## Remarks + + + + + + movie + + + + MovieAnnotation object example/template. + + + +## See Also + +* Class [MovieAnnotation](../../movieannotation/) +* Class [IAnnotationVisitor](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## IAnnotationVisitor::Visit(System::SharedPtr\) method + + +Visit/select screen annotation. + +```cpp +virtual void Aspose::Pdf::Annotations::IAnnotationVisitor::Visit(System::SharedPtr screen)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| screen | System::SharedPtr\ | [ScreenAnnotation](../../screenannotation/) object example/template. | +## Remarks + + + + + + screen + + + + ScreenAnnotation object example/template. + + + +## See Also + +* Class [ScreenAnnotation](../../screenannotation/) +* Class [IAnnotationVisitor](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## IAnnotationVisitor::Visit(System::SharedPtr\) method + + +Visit/select a trim mark annotation. + +```cpp +virtual void Aspose::Pdf::Annotations::IAnnotationVisitor::Visit(System::SharedPtr trimMark)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| trimMark | System::SharedPtr\ | The [TrimMarkAnnotation](../../trimmarkannotation/) object example/template. | +## Remarks + + + + + + trimMark + + + The TrimMarkAnnotation object example/template. + + + +## See Also + +* Class [TrimMarkAnnotation](../../trimmarkannotation/) +* Class [IAnnotationVisitor](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## IAnnotationVisitor::Visit(System::SharedPtr\) method + + +Visit/select a bleed mark annotation. + +```cpp +virtual void Aspose::Pdf::Annotations::IAnnotationVisitor::Visit(System::SharedPtr bleedMark)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| bleedMark | System::SharedPtr\ | The [BleedMarkAnnotation](../../bleedmarkannotation/) object example/template. | +## Remarks + + + + + + bleedMark + + + The BleedMarkAnnotation object example/template. + + + +## See Also + +* Class [BleedMarkAnnotation](../../bleedmarkannotation/) +* Class [IAnnotationVisitor](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## IAnnotationVisitor::Visit(System::SharedPtr\) method + + +Visit/select a registration mark annotation. + +```cpp +virtual void Aspose::Pdf::Annotations::IAnnotationVisitor::Visit(System::SharedPtr registrationMark)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| registrationMark | System::SharedPtr\ | The [RegistrationMarkAnnotation](../../registrationmarkannotation/) object example/template. | +## Remarks + + + + + + registrationMark + + + The RegistrationMarkAnnotation object example/template. + + + +## See Also + +* Class [RegistrationMarkAnnotation](../../registrationmarkannotation/) +* Class [IAnnotationVisitor](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## IAnnotationVisitor::Visit(System::SharedPtr\) method + + +Visit/select a page information annotation. + +```cpp +virtual void Aspose::Pdf::Annotations::IAnnotationVisitor::Visit(System::SharedPtr pageInformation)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageInformation | System::SharedPtr\ | The [PageInformationAnnotation](../../pageinformationannotation/) object example/template. | +## Remarks + + + + + + pageInformation + + + The PageInformationAnnotation object example/template. + + + +## See Also + +* Class [PageInformationAnnotation](../../pageinformationannotation/) +* Class [IAnnotationVisitor](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/iappointment/_index.md b/english/cpp/aspose.pdf.annotations/iappointment/_index.md new file mode 100644 index 0000000000..f3b6fbcdfd --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/iappointment/_index.md @@ -0,0 +1,22 @@ +--- +title: Aspose::Pdf::Annotations::IAppointment class +linktitle: IAppointment +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::IAppointment class. Represents general interface for actions and destinations in C++.' +type: docs +weight: 5000 +url: /cpp/aspose.pdf.annotations/iappointment/ +--- +## IAppointment class + + +Represents general interface for actions and destinations. + +```cpp +class IAppointment : public virtual System::Object +``` + +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/importdataaction/_index.md b/english/cpp/aspose.pdf.annotations/importdataaction/_index.md new file mode 100644 index 0000000000..5f7557c902 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/importdataaction/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Annotations::ImportDataAction class +linktitle: ImportDataAction +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::ImportDataAction class. Upon invocation of an import-data action, Forms Data Format (FDF) data shall be imported into the document''s interactive form from a specified file in C++.' +type: docs +weight: 5100 +url: /cpp/aspose.pdf.annotations/importdataaction/ +--- +## ImportDataAction class + + +Upon invocation of an import-data action, [Forms](../../aspose.pdf.forms/) Data Format (FDF) data shall be imported into the document's interactive form from a specified file. + +```cpp +class ImportDataAction : public Aspose::Pdf::Annotations::PdfAction +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_Data](./get_data/)() | The FDF file from which to import the data. | +| [get_Next](../pdfaction/get_next/)() | Next actions in sequence. | +| [GetECMAScriptString](../pdfaction/getecmascriptstring/)() | Gets string for ECMAScript Action. | +| [set_Data](./set_data/)(System::SharedPtr\) | The FDF file from which to import the data. | +| [ToString](../pdfaction/tostring/)() const override | Returns string representation of [ExplicitDestination](../explicitdestination/) object. | +## See Also + +* Class [PdfAction](../pdfaction/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/importdataaction/get_data/_index.md b/english/cpp/aspose.pdf.annotations/importdataaction/get_data/_index.md new file mode 100644 index 0000000000..0b4826c258 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/importdataaction/get_data/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::ImportDataAction::get_Data method +linktitle: get_Data +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::ImportDataAction::get_Data method. The FDF file from which to import the data in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/importdataaction/get_data/ +--- +## ImportDataAction::get_Data method + + +The FDF file from which to import the data. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::ImportDataAction::get_Data() +``` + +## See Also + +* Class [FileSpecification](../../../aspose.pdf/filespecification/) +* Class [ImportDataAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/importdataaction/set_data/_index.md b/english/cpp/aspose.pdf.annotations/importdataaction/set_data/_index.md new file mode 100644 index 0000000000..ac0558c176 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/importdataaction/set_data/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::ImportDataAction::set_Data method +linktitle: set_Data +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::ImportDataAction::set_Data method. The FDF file from which to import the data in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/importdataaction/set_data/ +--- +## ImportDataAction::set_Data method + + +The FDF file from which to import the data. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::ImportDataAction::set_Data(System::SharedPtr value) +``` + +## See Also + +* Class [FileSpecification](../../../aspose.pdf/filespecification/) +* Class [ImportDataAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/inkannotation/_index.md b/english/cpp/aspose.pdf.annotations/inkannotation/_index.md new file mode 100644 index 0000000000..f35c6b9db6 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/inkannotation/_index.md @@ -0,0 +1,114 @@ +--- +title: Aspose::Pdf::Annotations::InkAnnotation class +linktitle: InkAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::InkAnnotation class. Represents a freehand "scribble" composed of one or more disjoint paths in C++.' +type: docs +weight: 5200 +url: /cpp/aspose.pdf.annotations/inkannotation/ +--- +## InkAnnotation class + + +Represents a freehand "scribble" composed of one or more disjoint paths. + +```cpp +class InkAnnotation : public Aspose::Pdf::Annotations::MarkupAnnotation +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Accept](./accept/)(System::SharedPtr\) override | Accepts visitor object to process the annotation. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| [ChangeAfterResize](./changeafterresize/)(System::SharedPtr\) override | Updates the points in InkList, according to the matrix transform. | +| [ClearState](../markupannotation/clearstate/)() | Clears state and state model for the annotation. For example, clears the review status for an annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [Flatten](../annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](../annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../annotation/get_alignment/)() | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [get_AnnotationType](./get_annotationtype/)() override | Gets type of annotation. | +| [get_Appearance](../annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../annotation/get_border/)() const | Gets annotation border characteristics. [Border](../border/) | +| [get_CapStyle](./get_capstyle/)() | Style of ink annotation line endings. | +| [get_Characteristics](../annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../annotation/get_color/)() | Gets annotation color. | +| [get_Contents](../annotation/get_contents/)() | Gets annotation text. | +| [get_CreationDate](../markupannotation/get_creationdate/)() | Gets date and time when annotation was created. | +| [get_Flags](../annotation/get_flags/)() | Flags of the annotation. | +| [get_FullName](../annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../annotation/get_height/)() | Gets height of the annotation. | +| [get_HorizontalAlignment](../annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_InkList](./get_inklist/)() | Gets list of gestures that are independent lines which are represented by [Point](../../aspose.pdf/point/)[] arrays. | +| [get_InReplyTo](../markupannotation/get_inreplyto/)() | A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| [get_Modified](../annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Name](../annotation/get_name/)() | Gets annotation name on the page. | +| [get_Opacity](../markupannotation/get_opacity/)() | Gets the constant opacity value to be used in painting the annotation. | +| virtual [get_PageIndex](../annotation/get_pageindex/)() | Gets index of page which contains annotation. | +| [get_Popup](../markupannotation/get_popup/)() | Pop-up annotation for entering or editing the text associated with this annotation. | +| virtual [get_Rect](../annotation/get_rect/)() | Gets annotation rectangle. | +| [get_ReplyType](../markupannotation/get_replytype/)() | A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. | +| [get_RichText](../markupannotation/get_richtext/)() | Gets a rich text string to be displayed in the pop-up window when the annotation is opened. | +| [get_States](../annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_Subject](../markupannotation/get_subject/)() | Gets text representing desciption of the object. | +| [get_TextHorizontalAlignment](../annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| [get_Title](../markupannotation/get_title/)() override | Gets a text that shall be displayed in title bar of annotation. | +| static [get_UpdateAppearanceOnConvert](../annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetRectangle](../annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| [GetState](../markupannotation/getstate/)() | Gets the state of the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [GetStateModel](../markupannotation/getstatemodel/)() | Gets the state model of the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [InkAnnotation](./inkannotation/)(System::SharedPtr\, System::SharedPtr\\>\>\>) | Constructor for Ink annotation for Generator. | +| [InkAnnotation](./inkannotation/)(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\\>\>\>) | Creates new Ink annotation on the specified page. | +| [MarkupAnnotation](../markupannotation/markupannotation/)(System::SharedPtr\) | Constructor for markup annotation. | +| virtual [set_ActiveState](../annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../annotation/set_alignment/)(TextAlignment) | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_Border](../annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../border/) | +| [set_CapStyle](./set_capstyle/)(Aspose::Pdf::Annotations::CapStyle) | Style of ink annotation line endings. | +| [set_Color](../annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](../annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_Flags](../annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| virtual [set_Height](../annotation/set_height/)(double) | Sets height of the annotation. | +| [set_HorizontalAlignment](../annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_InkList](./set_inklist/)(System::SharedPtr\\>\>\>) | Sets list of gestures that are independent lines which are represented by [Point](../../aspose.pdf/point/)[] arrays. | +| [set_InReplyTo](../markupannotation/set_inreplyto/)(System::SharedPtr\) | A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| [set_Modified](../annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Name](../annotation/set_name/)(System::String) | Sets annotation name on the page. | +| [set_Opacity](../markupannotation/set_opacity/)(double) | Sets the constant opacity value to be used in painting the annotation. | +| [set_Popup](../markupannotation/set_popup/)(System::SharedPtr\) | Pop-up annotation for entering or editing the text associated with this annotation. | +| virtual [set_Rect](../annotation/set_rect/)(System::SharedPtr\) | Sets annotation rectangle. | +| [set_ReplyType](../markupannotation/set_replytype/)(Aspose::Pdf::Annotations::ReplyType) | A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. | +| [set_RichText](../markupannotation/set_richtext/)(System::String) | Sets a rich text string to be displayed in the pop-up window when the annotation is opened. | +| [set_Subject](../markupannotation/set_subject/)(System::String) | Gets text representing desciption of the object. | +| [set_TextHorizontalAlignment](../annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| [set_Title](../markupannotation/set_title/)(System::String) override | Sets a text that shall be displayed in title bar of annotation. | +| static [set_UpdateAppearanceOnConvert](../annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [SetMarkedState](../markupannotation/setmarkedstate/)(bool) | Sets Marked and Unmarked state for the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SetReviewState](../markupannotation/setreviewstate/)(AnnotationState, System::String) | Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SetReviewState](../markupannotation/setreviewstate/)(AnnotationState) | Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. The state is set by the user who created the target annotation. The value is taken from the Title property of the target annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +## See Also + +* Class [MarkupAnnotation](../markupannotation/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/inkannotation/accept/_index.md b/english/cpp/aspose.pdf.annotations/inkannotation/accept/_index.md new file mode 100644 index 0000000000..a07a220f15 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/inkannotation/accept/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Annotations::InkAnnotation::Accept method +linktitle: Accept +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::InkAnnotation::Accept method. Accepts visitor object to process the annotation in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/inkannotation/accept/ +--- +## InkAnnotation::Accept method + + +Accepts visitor object to process the annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::InkAnnotation::Accept(System::SharedPtr visitor) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| visitor | System::SharedPtr\ | Visitor object. | +## Remarks + + + + + + visitor + + + Visitor object. + + + +## See Also + +* Class [AnnotationSelector](../../annotationselector/) +* Class [InkAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/inkannotation/changeafterresize/_index.md b/english/cpp/aspose.pdf.annotations/inkannotation/changeafterresize/_index.md new file mode 100644 index 0000000000..18a9431342 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/inkannotation/changeafterresize/_index.md @@ -0,0 +1,42 @@ +--- +title: Aspose::Pdf::Annotations::InkAnnotation::ChangeAfterResize method +linktitle: ChangeAfterResize +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::InkAnnotation::ChangeAfterResize method. Updates the points in InkList, according to the matrix transform in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.annotations/inkannotation/changeafterresize/ +--- +## InkAnnotation::ChangeAfterResize method + + +Updates the points in InkList, according to the matrix transform. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::InkAnnotation::ChangeAfterResize(System::SharedPtr transform) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| transform | System::SharedPtr\ | [Matrix](../../../aspose.pdf/matrix/) specifying the transformation. | +## Remarks + + + + + + transform + + + + Matrix specifying the transformation. + + + +## See Also + +* Class [Matrix](../../../aspose.pdf/matrix/) +* Class [InkAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/inkannotation/get_annotationtype/_index.md b/english/cpp/aspose.pdf.annotations/inkannotation/get_annotationtype/_index.md new file mode 100644 index 0000000000..2232b43aae --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/inkannotation/get_annotationtype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::InkAnnotation::get_AnnotationType method +linktitle: get_AnnotationType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::InkAnnotation::get_AnnotationType method. Gets type of annotation in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/inkannotation/get_annotationtype/ +--- +## InkAnnotation::get_AnnotationType method + + +Gets type of annotation. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::AnnotationType Aspose::Pdf::Annotations::InkAnnotation::get_AnnotationType() override +``` + +## See Also + +* Enum [AnnotationType](../../annotationtype/) +* Class [InkAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/inkannotation/get_capstyle/_index.md b/english/cpp/aspose.pdf.annotations/inkannotation/get_capstyle/_index.md new file mode 100644 index 0000000000..b7e08606e3 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/inkannotation/get_capstyle/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::InkAnnotation::get_CapStyle method +linktitle: get_CapStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::InkAnnotation::get_CapStyle method. Style of ink annotation line endings in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/inkannotation/get_capstyle/ +--- +## InkAnnotation::get_CapStyle method + + +Style of ink annotation line endings. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::CapStyle Aspose::Pdf::Annotations::InkAnnotation::get_CapStyle() +``` + +## See Also + +* Enum [CapStyle](../../capstyle/) +* Class [InkAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/inkannotation/get_inklist/_index.md b/english/cpp/aspose.pdf.annotations/inkannotation/get_inklist/_index.md new file mode 100644 index 0000000000..b87f84f448 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/inkannotation/get_inklist/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::InkAnnotation::get_InkList method +linktitle: get_InkList +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::InkAnnotation::get_InkList method. Gets list of gestures that are independent lines which are represented by Point[] arrays in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/inkannotation/get_inklist/ +--- +## InkAnnotation::get_InkList method + + +Gets list of gestures that are independent lines which are represented by [Point](../../../aspose.pdf/point/)[] arrays. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr>>> Aspose::Pdf::Annotations::InkAnnotation::get_InkList() +``` + +## See Also + +* Class [Point](../../../aspose.pdf/point/) +* Class [InkAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/inkannotation/inkannotation/_index.md b/english/cpp/aspose.pdf.annotations/inkannotation/inkannotation/_index.md new file mode 100644 index 0000000000..0a5ec414ea --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/inkannotation/inkannotation/_index.md @@ -0,0 +1,104 @@ +--- +title: Aspose::Pdf::Annotations::InkAnnotation::InkAnnotation constructor +linktitle: InkAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::InkAnnotation::InkAnnotation constructor. Constructor for Ink annotation for Generator in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.annotations/inkannotation/inkannotation/ +--- +## InkAnnotation::InkAnnotation(System::SharedPtr\, System::SharedPtr\\>\>\>) constructor + + +Constructor for Ink annotation for Generator. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::InkAnnotation::InkAnnotation(System::SharedPtr document, System::SharedPtr>>> inkList) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | [Document](../../../aspose.pdf/document/) where ink annotation will be created. | +| inkList | System::SharedPtr\\>\>\> | An array of [Point](../../../aspose.pdf/point/)[] arrays, each representing a stroked path. | +## Remarks + + + + + + document + + + + Document where ink annotation will be created. + + + + + inkList + + + An array of Point[] arrays, each representing a stroked path. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [Point](../../../aspose.pdf/point/) +* Class [InkAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## InkAnnotation::InkAnnotation(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\\>\>\>) constructor + + +Creates new Ink annotation on the specified page. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::InkAnnotation::InkAnnotation(System::SharedPtr page, System::SharedPtr rect, System::SharedPtr>>> inkList) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The document's page where annotation should be created. | +| rect | System::SharedPtr\ | The annotation rectangle, defining the location of the annotation on the page. | +| inkList | System::SharedPtr\\>\>\> | An array of [Point](../../../aspose.pdf/point/)[] arrays, each representing a stroked path. | +## Remarks + + + + + + page + + + The document's page where annotation should be created. + + + + + rect + + + The annotation rectangle, defining the location of the annotation on the page. + + + + + inkList + + + An array of Point[] arrays, each representing a stroked path. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [Point](../../../aspose.pdf/point/) +* Class [InkAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/inkannotation/set_capstyle/_index.md b/english/cpp/aspose.pdf.annotations/inkannotation/set_capstyle/_index.md new file mode 100644 index 0000000000..d44836548d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/inkannotation/set_capstyle/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::InkAnnotation::set_CapStyle method +linktitle: set_CapStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::InkAnnotation::set_CapStyle method. Style of ink annotation line endings in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/inkannotation/set_capstyle/ +--- +## InkAnnotation::set_CapStyle method + + +Style of ink annotation line endings. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::InkAnnotation::set_CapStyle(Aspose::Pdf::Annotations::CapStyle value) +``` + +## See Also + +* Enum [CapStyle](../../capstyle/) +* Class [InkAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/inkannotation/set_inklist/_index.md b/english/cpp/aspose.pdf.annotations/inkannotation/set_inklist/_index.md new file mode 100644 index 0000000000..76cf03f154 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/inkannotation/set_inklist/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::InkAnnotation::set_InkList method +linktitle: set_InkList +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::InkAnnotation::set_InkList method. Sets list of gestures that are independent lines which are represented by Point[] arrays in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/inkannotation/set_inklist/ +--- +## InkAnnotation::set_InkList method + + +Sets list of gestures that are independent lines which are represented by [Point](../../../aspose.pdf/point/)[] arrays. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::InkAnnotation::set_InkList(System::SharedPtr>>> value) +``` + +## See Also + +* Class [Point](../../../aspose.pdf/point/) +* Class [InkAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/javascriptaction/_index.md b/english/cpp/aspose.pdf.annotations/javascriptaction/_index.md new file mode 100644 index 0000000000..7ca9f0cea8 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/javascriptaction/_index.md @@ -0,0 +1,33 @@ +--- +title: Aspose::Pdf::Annotations::JavascriptAction class +linktitle: JavascriptAction +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::JavascriptAction class. Class representing javascript action in C++.' +type: docs +weight: 5300 +url: /cpp/aspose.pdf.annotations/javascriptaction/ +--- +## JavascriptAction class + + +Class representing javascript action. + +```cpp +class JavascriptAction : public Aspose::Pdf::Annotations::PdfAction +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_Next](../pdfaction/get_next/)() | Next actions in sequence. | +| [get_Script](./get_script/)() | Gets javascript code. | +| [GetECMAScriptString](../pdfaction/getecmascriptstring/)() | Gets string for ECMAScript Action. | +| [JavascriptAction](./javascriptaction/)(System::String) | Constructor. | +| [set_Script](./set_script/)(System::String) | Sets javascript code. | +| [ToString](../pdfaction/tostring/)() const override | Returns string representation of [ExplicitDestination](../explicitdestination/) object. | +## See Also + +* Class [PdfAction](../pdfaction/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/javascriptaction/get_script/_index.md b/english/cpp/aspose.pdf.annotations/javascriptaction/get_script/_index.md new file mode 100644 index 0000000000..a7fec3f91b --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/javascriptaction/get_script/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::JavascriptAction::get_Script method +linktitle: get_Script +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::JavascriptAction::get_Script method. Gets javascript code in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/javascriptaction/get_script/ +--- +## JavascriptAction::get_Script method + + +Gets javascript code. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::JavascriptAction::get_Script() +``` + +## See Also + +* Class [JavascriptAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/javascriptaction/javascriptaction/_index.md b/english/cpp/aspose.pdf.annotations/javascriptaction/javascriptaction/_index.md new file mode 100644 index 0000000000..289741d093 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/javascriptaction/javascriptaction/_index.md @@ -0,0 +1,40 @@ +--- +title: Aspose::Pdf::Annotations::JavascriptAction::JavascriptAction constructor +linktitle: JavascriptAction +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::JavascriptAction::JavascriptAction constructor. Constructor in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/javascriptaction/javascriptaction/ +--- +## JavascriptAction::JavascriptAction constructor + + +Constructor. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::JavascriptAction::JavascriptAction(System::String javaScript) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| javaScript | System::String | JavaScript code. | +## Remarks + + + + + + javaScript + + + JavaScript code. + + + +## See Also + +* Class [JavascriptAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/javascriptaction/set_script/_index.md b/english/cpp/aspose.pdf.annotations/javascriptaction/set_script/_index.md new file mode 100644 index 0000000000..19ca8f89ef --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/javascriptaction/set_script/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::JavascriptAction::set_Script method +linktitle: set_Script +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::JavascriptAction::set_Script method. Sets javascript code in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/javascriptaction/set_script/ +--- +## JavascriptAction::set_Script method + + +Sets javascript code. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::JavascriptAction::set_Script(System::String value) +``` + +## See Also + +* Class [JavascriptAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/justification/_index.md b/english/cpp/aspose.pdf.annotations/justification/_index.md new file mode 100644 index 0000000000..1316943b10 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/justification/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Annotations::Justification enum +linktitle: Justification +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Justification enum. Enumerates the forms of quadding (justification) to be used in displaying the annotation''s text in C++.' +type: docs +weight: 15300 +url: /cpp/aspose.pdf.annotations/justification/ +--- +## Justification enum + + +Enumerates the forms of quadding (justification) to be used in displaying the annotation's text. + +```cpp +enum class Justification +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Left | 0 | Left justification. | +| Center | 1 | Center justification. | +| Right | 2 | Right justification. | + +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/justificationconverter/_index.md b/english/cpp/aspose.pdf.annotations/justificationconverter/_index.md new file mode 100644 index 0000000000..33e77fd7a8 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/justificationconverter/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::JustificationConverter class +linktitle: JustificationConverter +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Annotations::JustificationConverter class in C++.' +type: docs +weight: 5400 +url: /cpp/aspose.pdf.annotations/justificationconverter/ +--- +## JustificationConverter class + + + + +```cpp +class JustificationConverter : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [ToEnum](./toenum/)(System::String) | | +| static [ToXfdfString](./toxfdfstring/)(Justification) | | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/justificationconverter/toenum/_index.md b/english/cpp/aspose.pdf.annotations/justificationconverter/toenum/_index.md new file mode 100644 index 0000000000..8228fdc3a0 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/justificationconverter/toenum/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::JustificationConverter::ToEnum method +linktitle: ToEnum +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToEnum method of Aspose::Pdf::Annotations::JustificationConverter class in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/justificationconverter/toenum/ +--- +## JustificationConverter::ToEnum method + + + + +```cpp +static ASPOSE_PDF_SHARED_API Justification Aspose::Pdf::Annotations::JustificationConverter::ToEnum(System::String value) +``` + +## See Also + +* Enum [Justification](../../justification/) +* Class [JustificationConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/justificationconverter/toxfdfstring/_index.md b/english/cpp/aspose.pdf.annotations/justificationconverter/toxfdfstring/_index.md new file mode 100644 index 0000000000..5781615acb --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/justificationconverter/toxfdfstring/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::JustificationConverter::ToXfdfString method +linktitle: ToXfdfString +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToXfdfString method of Aspose::Pdf::Annotations::JustificationConverter class in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/justificationconverter/toxfdfstring/ +--- +## JustificationConverter::ToXfdfString method + + + + +```cpp +static ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::JustificationConverter::ToXfdfString(Justification value) +``` + +## See Also + +* Enum [Justification](../../justification/) +* Class [JustificationConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/launchaction/_index.md b/english/cpp/aspose.pdf.annotations/launchaction/_index.md new file mode 100644 index 0000000000..fb44cbef53 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/launchaction/_index.md @@ -0,0 +1,36 @@ +--- +title: Aspose::Pdf::Annotations::LaunchAction class +linktitle: LaunchAction +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LaunchAction class. Represents a launch action that launches an application or opens or prints a document in C++.' +type: docs +weight: 5500 +url: /cpp/aspose.pdf.annotations/launchaction/ +--- +## LaunchAction class + + +Represents a launch action that launches an application or opens or prints a document. + +```cpp +class LaunchAction : public Aspose::Pdf::Annotations::PdfAction +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_File](./get_file/)() | Gets the application to be launched or the document to be opened or printed. | +| [get_NewWindow](./get_newwindow/)() | Gets a flag specifying whether to open the destination document in a new window (affect PDF documents only). | +| [get_Next](../pdfaction/get_next/)() | Next actions in sequence. | +| [GetECMAScriptString](../pdfaction/getecmascriptstring/)() | Gets string for ECMAScript Action. | +| [LaunchAction](./launchaction/)(System::String) | Creates a launch action. | +| [LaunchAction](./launchaction/)(System::SharedPtr\, System::String) | Creates a launch action. | +| [set_File](./set_file/)(System::String) | Sets the application to be launched or the document to be opened or printed. | +| [set_NewWindow](./set_newwindow/)(ExtendedBoolean) | Sets a flag specifying whether to open the destination document in a new window (affect PDF documents only). | +| [ToString](../pdfaction/tostring/)() const override | Returns string representation of [ExplicitDestination](../explicitdestination/) object. | +## See Also + +* Class [PdfAction](../pdfaction/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/launchaction/get_file/_index.md b/english/cpp/aspose.pdf.annotations/launchaction/get_file/_index.md new file mode 100644 index 0000000000..6a48c93b10 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/launchaction/get_file/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::LaunchAction::get_File method +linktitle: get_File +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LaunchAction::get_File method. Gets the application to be launched or the document to be opened or printed in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/launchaction/get_file/ +--- +## LaunchAction::get_File method + + +Gets the application to be launched or the document to be opened or printed. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::LaunchAction::get_File() +``` + +## See Also + +* Class [LaunchAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/launchaction/get_newwindow/_index.md b/english/cpp/aspose.pdf.annotations/launchaction/get_newwindow/_index.md new file mode 100644 index 0000000000..053b38ee92 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/launchaction/get_newwindow/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::LaunchAction::get_NewWindow method +linktitle: get_NewWindow +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LaunchAction::get_NewWindow method. Gets a flag specifying whether to open the destination document in a new window (affect PDF documents only) in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/launchaction/get_newwindow/ +--- +## LaunchAction::get_NewWindow method + + +Gets a flag specifying whether to open the destination document in a new window (affect PDF documents only). + +```cpp +ASPOSE_PDF_SHARED_API ExtendedBoolean Aspose::Pdf::Annotations::LaunchAction::get_NewWindow() +``` + +## See Also + +* Enum [ExtendedBoolean](../../../aspose.pdf/extendedboolean/) +* Class [LaunchAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/launchaction/launchaction/_index.md b/english/cpp/aspose.pdf.annotations/launchaction/launchaction/_index.md new file mode 100644 index 0000000000..cdc5db5271 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/launchaction/launchaction/_index.md @@ -0,0 +1,82 @@ +--- +title: Aspose::Pdf::Annotations::LaunchAction::LaunchAction constructor +linktitle: LaunchAction +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LaunchAction::LaunchAction constructor. Creates a launch action in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/launchaction/launchaction/ +--- +## LaunchAction::LaunchAction(System::String) constructor + + +Creates a launch action. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::LaunchAction::LaunchAction(System::String file) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| file | System::String | The file to be launched. | +## Remarks + + + + + + file + + + The file to be launched. + + + +## See Also + +* Class [LaunchAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## LaunchAction::LaunchAction(System::SharedPtr\, System::String) constructor + + +Creates a launch action. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::LaunchAction::LaunchAction(System::SharedPtr document, System::String file) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | [Document](../../../aspose.pdf/document/) where action will be created. | +| file | System::String | The file to be launched. | +## Remarks + + + + + + document + + + + Document where action will be created. + + + + + file + + + The file to be launched. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [LaunchAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/launchaction/set_file/_index.md b/english/cpp/aspose.pdf.annotations/launchaction/set_file/_index.md new file mode 100644 index 0000000000..88d007fba1 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/launchaction/set_file/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::LaunchAction::set_File method +linktitle: set_File +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LaunchAction::set_File method. Sets the application to be launched or the document to be opened or printed in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/launchaction/set_file/ +--- +## LaunchAction::set_File method + + +Sets the application to be launched or the document to be opened or printed. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::LaunchAction::set_File(System::String value) +``` + +## See Also + +* Class [LaunchAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/launchaction/set_newwindow/_index.md b/english/cpp/aspose.pdf.annotations/launchaction/set_newwindow/_index.md new file mode 100644 index 0000000000..2caaf07754 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/launchaction/set_newwindow/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::LaunchAction::set_NewWindow method +linktitle: set_NewWindow +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LaunchAction::set_NewWindow method. Sets a flag specifying whether to open the destination document in a new window (affect PDF documents only) in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/launchaction/set_newwindow/ +--- +## LaunchAction::set_NewWindow method + + +Sets a flag specifying whether to open the destination document in a new window (affect PDF documents only). + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::LaunchAction::set_NewWindow(ExtendedBoolean value) +``` + +## See Also + +* Enum [ExtendedBoolean](../../../aspose.pdf/extendedboolean/) +* Class [LaunchAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/launchactionoperation/_index.md b/english/cpp/aspose.pdf.annotations/launchactionoperation/_index.md new file mode 100644 index 0000000000..89f530cf90 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/launchactionoperation/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Annotations::LaunchActionOperation enum +linktitle: LaunchActionOperation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LaunchActionOperation enum. Enumerates the operations to perform with document during launch action executing in C++.' +type: docs +weight: 15400 +url: /cpp/aspose.pdf.annotations/launchactionoperation/ +--- +## LaunchActionOperation enum + + +Enumerates the operations to perform with document during launch action executing. + +```cpp +enum class LaunchActionOperation +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Undefined | 0 | Undefined state. | +| Open | 1 | Open a document. | +| Print | 2 | Print a document. | + +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/launchactionoperationconverter/_index.md b/english/cpp/aspose.pdf.annotations/launchactionoperationconverter/_index.md new file mode 100644 index 0000000000..fce2ff92e4 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/launchactionoperationconverter/_index.md @@ -0,0 +1,34 @@ +--- +title: Aspose::Pdf::Annotations::LaunchActionOperationConverter class +linktitle: LaunchActionOperationConverter +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Annotations::LaunchActionOperationConverter class in C++.' +type: docs +weight: 5600 +url: /cpp/aspose.pdf.annotations/launchactionoperationconverter/ +--- +## LaunchActionOperationConverter class + + + + +```cpp +class LaunchActionOperationConverter : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [ToEnum](./toenum/)(System::String) | | +| static [ToString](./tostring/)(LaunchActionOperation) | | +## Fields + +| Field | Description | +| --- | --- | +| static [strOpen](./stropen/) | | +| static [strPrint](./strprint/) | | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/launchactionoperationconverter/stropen/_index.md b/english/cpp/aspose.pdf.annotations/launchactionoperationconverter/stropen/_index.md new file mode 100644 index 0000000000..47d4dd7b98 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/launchactionoperationconverter/stropen/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::LaunchActionOperationConverter::strOpen field +linktitle: strOpen +second_title: Aspose.PDF for C++ API Reference +description: 'How to use strOpen field of Aspose::Pdf::Annotations::LaunchActionOperationConverter class in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/launchactionoperationconverter/stropen/ +--- +## strOpen field + + + + +```cpp +static const System::String Aspose::Pdf::Annotations::LaunchActionOperationConverter::strOpen +``` + +## See Also + +* Class [LaunchActionOperationConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/launchactionoperationconverter/strprint/_index.md b/english/cpp/aspose.pdf.annotations/launchactionoperationconverter/strprint/_index.md new file mode 100644 index 0000000000..b54cd73469 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/launchactionoperationconverter/strprint/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::LaunchActionOperationConverter::strPrint field +linktitle: strPrint +second_title: Aspose.PDF for C++ API Reference +description: 'How to use strPrint field of Aspose::Pdf::Annotations::LaunchActionOperationConverter class in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/launchactionoperationconverter/strprint/ +--- +## strPrint field + + + + +```cpp +static const System::String Aspose::Pdf::Annotations::LaunchActionOperationConverter::strPrint +``` + +## See Also + +* Class [LaunchActionOperationConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/launchactionoperationconverter/toenum/_index.md b/english/cpp/aspose.pdf.annotations/launchactionoperationconverter/toenum/_index.md new file mode 100644 index 0000000000..b640c6333d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/launchactionoperationconverter/toenum/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::LaunchActionOperationConverter::ToEnum method +linktitle: ToEnum +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToEnum method of Aspose::Pdf::Annotations::LaunchActionOperationConverter class in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/launchactionoperationconverter/toenum/ +--- +## LaunchActionOperationConverter::ToEnum method + + + + +```cpp +static LaunchActionOperation Aspose::Pdf::Annotations::LaunchActionOperationConverter::ToEnum(System::String value) +``` + +## See Also + +* Enum [LaunchActionOperation](../../launchactionoperation/) +* Class [LaunchActionOperationConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/launchactionoperationconverter/tostring/_index.md b/english/cpp/aspose.pdf.annotations/launchactionoperationconverter/tostring/_index.md new file mode 100644 index 0000000000..50576af1ae --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/launchactionoperationconverter/tostring/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::LaunchActionOperationConverter::ToString method +linktitle: ToString +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToString method of Aspose::Pdf::Annotations::LaunchActionOperationConverter class in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/launchactionoperationconverter/tostring/ +--- +## LaunchActionOperationConverter::ToString method + + + + +```cpp +static System::String Aspose::Pdf::Annotations::LaunchActionOperationConverter::ToString(LaunchActionOperation value) +``` + +## See Also + +* Enum [LaunchActionOperation](../../launchactionoperation/) +* Class [LaunchActionOperationConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/lightingschemetype/_index.md b/english/cpp/aspose.pdf.annotations/lightingschemetype/_index.md new file mode 100644 index 0000000000..b2269a003e --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/lightingschemetype/_index.md @@ -0,0 +1,39 @@ +--- +title: Aspose::Pdf::Annotations::LightingSchemeType enum +linktitle: LightingSchemeType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LightingSchemeType enum. Enum LightingSchemeType: set of lighting scheme types in C++.' +type: docs +weight: 13600 +url: /cpp/aspose.pdf.annotations/lightingschemetype/ +--- +## LightingSchemeType enum + + +Enum LightingSchemeType: set of lighting scheme types. + +```cpp +enum class LightingSchemeType +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Artwork | 0 | The "Artwork" lighting scheme. | +| None | 1 | The "None" lighting scheme. | +| White | 2 | The "White" lighting scheme. | +| Day | 3 | The "Day" lighting scheme. | +| Night | 4 | The "Night" lighting scheme. | +| Hard | 5 | The "Hard" lighting scheme. | +| Primary | 6 | The "Primary" lighting scheme. | +| Blue | 7 | The "Blue" lighting scheme. | +| Red | 8 | The "Red" lighting scheme. | +| Cube | 9 | The "Cube" lighting scheme. | +| CAD | 10 | The "Cad" lighting scheme. | +| Headlamp | 11 | The "Headlamp" lighting scheme. | + +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/lineannotation/_index.md b/english/cpp/aspose.pdf.annotations/lineannotation/_index.md new file mode 100644 index 0000000000..53378eec84 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/lineannotation/_index.md @@ -0,0 +1,136 @@ +--- +title: Aspose::Pdf::Annotations::LineAnnotation class +linktitle: LineAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LineAnnotation class. Class representing line annotation in C++.' +type: docs +weight: 5700 +url: /cpp/aspose.pdf.annotations/lineannotation/ +--- +## LineAnnotation class + + +Class representing line annotation. + +```cpp +class LineAnnotation : public Aspose::Pdf::Annotations::MarkupAnnotation +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Accept](./accept/)(System::SharedPtr\) override | Accepts visitor to annotation processing. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| [ChangeAfterResize](./changeafterresize/)(System::SharedPtr\) override | Updates the Starting and Ending points, according to the matrix transform. | +| [ClearState](../markupannotation/clearstate/)() | Clears state and state model for the annotation. For example, clears the review status for an annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [Flatten](../annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](../annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../annotation/get_alignment/)() | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [get_AnnotationType](./get_annotationtype/)() override | Gets type of annotation. | +| [get_Appearance](../annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../annotation/get_border/)() const | Gets annotation border characteristics. [Border](../border/) | +| [get_CaptionOffset](./get_captionoffset/)() | Gets caption text offset from its normal position. | +| [get_CaptionPosition](./get_captionposition/)() | Gets annotation caption position. | +| [get_Characteristics](../annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../annotation/get_color/)() | Gets annotation color. | +| [get_Contents](../annotation/get_contents/)() | Gets annotation text. | +| [get_CreationDate](../markupannotation/get_creationdate/)() | Gets date and time when annotation was created. | +| [get_Ending](./get_ending/)() | Gets line ending point. | +| [get_EndingStyle](./get_endingstyle/)() | Gets ending style for end point of line. | +| [get_Flags](../annotation/get_flags/)() | Flags of the annotation. | +| [get_FullName](../annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../annotation/get_height/)() | Gets height of the annotation. | +| [get_HorizontalAlignment](../annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_InReplyTo](../markupannotation/get_inreplyto/)() | A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. | +| [get_Intent](./get_intent/)() | Gets the intent of the line annotation. | +| [get_InteriorColor](./get_interiorcolor/)() | Gets interior color of the annotation. | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_LeaderLine](./get_leaderline/)() | Gets leader line length. | +| [get_LeaderLineExtension](./get_leaderlineextension/)() | Gets length of leader line extension. | +| [get_LeaderLineOffset](./get_leaderlineoffset/)() | Gets leader line offset. | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| [get_Measure](./get_measure/)() | [Measure](../measure/) units specifed for this annotation. | +| [get_Modified](../annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Name](../annotation/get_name/)() | Gets annotation name on the page. | +| [get_Opacity](../markupannotation/get_opacity/)() | Gets the constant opacity value to be used in painting the annotation. | +| virtual [get_PageIndex](../annotation/get_pageindex/)() | Gets index of page which contains annotation. | +| [get_Popup](../markupannotation/get_popup/)() | Pop-up annotation for entering or editing the text associated with this annotation. | +| virtual [get_Rect](../annotation/get_rect/)() | Gets annotation rectangle. | +| [get_ReplyType](../markupannotation/get_replytype/)() | A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. | +| [get_RichText](../markupannotation/get_richtext/)() | Gets a rich text string to be displayed in the pop-up window when the annotation is opened. | +| [get_ShowCaption](./get_showcaption/)() | Gets boolean flag which determinies is contents must be shown as caption. | +| [get_Starting](./get_starting/)() | Gets starting point of line. | +| [get_StartingStyle](./get_startingstyle/)() | Gets line ending style for line starting point. | +| [get_States](../annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_Subject](../markupannotation/get_subject/)() | Gets text representing desciption of the object. | +| [get_TextHorizontalAlignment](../annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| [get_Title](../markupannotation/get_title/)() override | Gets a text that shall be displayed in title bar of annotation. | +| static [get_UpdateAppearanceOnConvert](../annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetRectangle](../annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| [GetState](../markupannotation/getstate/)() | Gets the state of the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [GetStateModel](../markupannotation/getstatemodel/)() | Gets the state model of the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [LineAnnotation](./lineannotation/)(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) | Constructor for using with Generator. | +| [LineAnnotation](./lineannotation/)(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) | Creates new Line annotation on the specified page. | +| [MarkupAnnotation](../markupannotation/markupannotation/)(System::SharedPtr\) | Constructor for markup annotation. | +| virtual [set_ActiveState](../annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../annotation/set_alignment/)(TextAlignment) | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_Border](../annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../border/) | +| [set_CaptionOffset](./set_captionoffset/)(System::SharedPtr\) | Sets caption text offset from its normal position. | +| [set_CaptionPosition](./set_captionposition/)(Aspose::Pdf::Annotations::CaptionPosition) | Sets annotation caption position. | +| [set_Color](../annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](../annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_Ending](./set_ending/)(System::SharedPtr\) | Sets line ending point. | +| [set_EndingStyle](./set_endingstyle/)(LineEnding) | Sets ending style for end point of line. | +| [set_Flags](../annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| virtual [set_Height](../annotation/set_height/)(double) | Sets height of the annotation. | +| [set_HorizontalAlignment](../annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_InReplyTo](../markupannotation/set_inreplyto/)(System::SharedPtr\) | A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. | +| [set_Intent](./set_intent/)(LineIntent) | Sets the intent of the line annotation. | +| [set_InteriorColor](./set_interiorcolor/)(System::SharedPtr\) | Sets interior color of the annotation. | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_LeaderLine](./set_leaderline/)(double) | Sets leader line length. | +| [set_LeaderLineExtension](./set_leaderlineextension/)(double) | Sets length of leader line extension. | +| [set_LeaderLineOffset](./set_leaderlineoffset/)(double) | Sets leader line offset. | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| [set_Measure](./set_measure/)(System::SharedPtr\) | [Measure](../measure/) units specifed for this annotation. | +| [set_Modified](../annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Name](../annotation/set_name/)(System::String) | Sets annotation name on the page. | +| [set_Opacity](../markupannotation/set_opacity/)(double) | Sets the constant opacity value to be used in painting the annotation. | +| [set_Popup](../markupannotation/set_popup/)(System::SharedPtr\) | Pop-up annotation for entering or editing the text associated with this annotation. | +| virtual [set_Rect](../annotation/set_rect/)(System::SharedPtr\) | Sets annotation rectangle. | +| [set_ReplyType](../markupannotation/set_replytype/)(Aspose::Pdf::Annotations::ReplyType) | A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. | +| [set_RichText](../markupannotation/set_richtext/)(System::String) | Sets a rich text string to be displayed in the pop-up window when the annotation is opened. | +| [set_ShowCaption](./set_showcaption/)(bool) | Sets boolean flag which determinies is contents must be shown as caption. | +| [set_Starting](./set_starting/)(System::SharedPtr\) | Sets starting point of line. | +| [set_StartingStyle](./set_startingstyle/)(LineEnding) | Sets line ending style for line starting point. | +| [set_Subject](../markupannotation/set_subject/)(System::String) | Gets text representing desciption of the object. | +| [set_TextHorizontalAlignment](../annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| [set_Title](../markupannotation/set_title/)(System::String) override | Sets a text that shall be displayed in title bar of annotation. | +| static [set_UpdateAppearanceOnConvert](../annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [SetMarkedState](../markupannotation/setmarkedstate/)(bool) | Sets Marked and Unmarked state for the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SetReviewState](../markupannotation/setreviewstate/)(AnnotationState, System::String) | Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SetReviewState](../markupannotation/setreviewstate/)(AnnotationState) | Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. The state is set by the user who created the target annotation. The value is taken from the Title property of the target annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +## See Also + +* Class [MarkupAnnotation](../markupannotation/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/lineannotation/accept/_index.md b/english/cpp/aspose.pdf.annotations/lineannotation/accept/_index.md new file mode 100644 index 0000000000..97770bf19d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/lineannotation/accept/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Annotations::LineAnnotation::Accept method +linktitle: Accept +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LineAnnotation::Accept method. Accepts visitor to annotation processing in C++.' +type: docs +weight: 2800 +url: /cpp/aspose.pdf.annotations/lineannotation/accept/ +--- +## LineAnnotation::Accept method + + +Accepts visitor to annotation processing. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::LineAnnotation::Accept(System::SharedPtr visitor) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| visitor | System::SharedPtr\ | Visitor object | +## Remarks + + + + + + visitor + + + Visitor object + + + +## See Also + +* Class [AnnotationSelector](../../annotationselector/) +* Class [LineAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/lineannotation/changeafterresize/_index.md b/english/cpp/aspose.pdf.annotations/lineannotation/changeafterresize/_index.md new file mode 100644 index 0000000000..1e5154cfe8 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/lineannotation/changeafterresize/_index.md @@ -0,0 +1,42 @@ +--- +title: Aspose::Pdf::Annotations::LineAnnotation::ChangeAfterResize method +linktitle: ChangeAfterResize +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LineAnnotation::ChangeAfterResize method. Updates the Starting and Ending points, according to the matrix transform in C++.' +type: docs +weight: 3000 +url: /cpp/aspose.pdf.annotations/lineannotation/changeafterresize/ +--- +## LineAnnotation::ChangeAfterResize method + + +Updates the Starting and Ending points, according to the matrix transform. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::LineAnnotation::ChangeAfterResize(System::SharedPtr transform) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| transform | System::SharedPtr\ | [Matrix](../../../aspose.pdf/matrix/) specifying the transformation. | +## Remarks + + + + + + transform + + + + Matrix specifying the transformation. + + + +## See Also + +* Class [Matrix](../../../aspose.pdf/matrix/) +* Class [LineAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/lineannotation/get_annotationtype/_index.md b/english/cpp/aspose.pdf.annotations/lineannotation/get_annotationtype/_index.md new file mode 100644 index 0000000000..2ea44d55ea --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/lineannotation/get_annotationtype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::LineAnnotation::get_AnnotationType method +linktitle: get_AnnotationType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LineAnnotation::get_AnnotationType method. Gets type of annotation in C++.' +type: docs +weight: 2700 +url: /cpp/aspose.pdf.annotations/lineannotation/get_annotationtype/ +--- +## LineAnnotation::get_AnnotationType method + + +Gets type of annotation. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::AnnotationType Aspose::Pdf::Annotations::LineAnnotation::get_AnnotationType() override +``` + +## See Also + +* Enum [AnnotationType](../../annotationtype/) +* Class [LineAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/lineannotation/get_captionoffset/_index.md b/english/cpp/aspose.pdf.annotations/lineannotation/get_captionoffset/_index.md new file mode 100644 index 0000000000..b5e6395738 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/lineannotation/get_captionoffset/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::LineAnnotation::get_CaptionOffset method +linktitle: get_CaptionOffset +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LineAnnotation::get_CaptionOffset method. Gets caption text offset from its normal position in C++.' +type: docs +weight: 1900 +url: /cpp/aspose.pdf.annotations/lineannotation/get_captionoffset/ +--- +## LineAnnotation::get_CaptionOffset method + + +Gets caption text offset from its normal position. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::LineAnnotation::get_CaptionOffset() +``` + +## See Also + +* Class [Point](../../../aspose.pdf/point/) +* Class [LineAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/lineannotation/get_captionposition/_index.md b/english/cpp/aspose.pdf.annotations/lineannotation/get_captionposition/_index.md new file mode 100644 index 0000000000..76de41ff5d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/lineannotation/get_captionposition/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::LineAnnotation::get_CaptionPosition method +linktitle: get_CaptionPosition +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LineAnnotation::get_CaptionPosition method. Gets annotation caption position in C++.' +type: docs +weight: 2100 +url: /cpp/aspose.pdf.annotations/lineannotation/get_captionposition/ +--- +## LineAnnotation::get_CaptionPosition method + + +Gets annotation caption position. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::CaptionPosition Aspose::Pdf::Annotations::LineAnnotation::get_CaptionPosition() +``` + +## See Also + +* Enum [CaptionPosition](../../captionposition/) +* Class [LineAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/lineannotation/get_ending/_index.md b/english/cpp/aspose.pdf.annotations/lineannotation/get_ending/_index.md new file mode 100644 index 0000000000..0716e8a00e --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/lineannotation/get_ending/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::LineAnnotation::get_Ending method +linktitle: get_Ending +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LineAnnotation::get_Ending method. Gets line ending point in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/lineannotation/get_ending/ +--- +## LineAnnotation::get_Ending method + + +Gets line ending point. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::LineAnnotation::get_Ending() +``` + +## See Also + +* Class [Point](../../../aspose.pdf/point/) +* Class [LineAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/lineannotation/get_endingstyle/_index.md b/english/cpp/aspose.pdf.annotations/lineannotation/get_endingstyle/_index.md new file mode 100644 index 0000000000..c386cae50b --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/lineannotation/get_endingstyle/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::LineAnnotation::get_EndingStyle method +linktitle: get_EndingStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LineAnnotation::get_EndingStyle method. Gets ending style for end point of line in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.annotations/lineannotation/get_endingstyle/ +--- +## LineAnnotation::get_EndingStyle method + + +Gets ending style for end point of line. + +```cpp +ASPOSE_PDF_SHARED_API LineEnding Aspose::Pdf::Annotations::LineAnnotation::get_EndingStyle() +``` + +## See Also + +* Enum [LineEnding](../../lineending/) +* Class [LineAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/lineannotation/get_intent/_index.md b/english/cpp/aspose.pdf.annotations/lineannotation/get_intent/_index.md new file mode 100644 index 0000000000..951b93326d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/lineannotation/get_intent/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::LineAnnotation::get_Intent method +linktitle: get_Intent +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LineAnnotation::get_Intent method. Gets the intent of the line annotation in C++.' +type: docs +weight: 2500 +url: /cpp/aspose.pdf.annotations/lineannotation/get_intent/ +--- +## LineAnnotation::get_Intent method + + +Gets the intent of the line annotation. + +```cpp +ASPOSE_PDF_SHARED_API LineIntent Aspose::Pdf::Annotations::LineAnnotation::get_Intent() +``` + +## See Also + +* Enum [LineIntent](../../lineintent/) +* Class [LineAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/lineannotation/get_interiorcolor/_index.md b/english/cpp/aspose.pdf.annotations/lineannotation/get_interiorcolor/_index.md new file mode 100644 index 0000000000..6014de19f6 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/lineannotation/get_interiorcolor/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::LineAnnotation::get_InteriorColor method +linktitle: get_InteriorColor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LineAnnotation::get_InteriorColor method. Gets interior color of the annotation in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.annotations/lineannotation/get_interiorcolor/ +--- +## LineAnnotation::get_InteriorColor method + + +Gets interior color of the annotation. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::LineAnnotation::get_InteriorColor() +``` + +## See Also + +* Class [Color](../../../aspose.pdf/color/) +* Class [LineAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/lineannotation/get_leaderline/_index.md b/english/cpp/aspose.pdf.annotations/lineannotation/get_leaderline/_index.md new file mode 100644 index 0000000000..a99e7ba61c --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/lineannotation/get_leaderline/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::LineAnnotation::get_LeaderLine method +linktitle: get_LeaderLine +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LineAnnotation::get_LeaderLine method. Gets leader line length in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.annotations/lineannotation/get_leaderline/ +--- +## LineAnnotation::get_LeaderLine method + + +Gets leader line length. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Annotations::LineAnnotation::get_LeaderLine() +``` + +## See Also + +* Class [LineAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/lineannotation/get_leaderlineextension/_index.md b/english/cpp/aspose.pdf.annotations/lineannotation/get_leaderlineextension/_index.md new file mode 100644 index 0000000000..fce858c7ef --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/lineannotation/get_leaderlineextension/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::LineAnnotation::get_LeaderLineExtension method +linktitle: get_LeaderLineExtension +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LineAnnotation::get_LeaderLineExtension method. Gets length of leader line extension in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.annotations/lineannotation/get_leaderlineextension/ +--- +## LineAnnotation::get_LeaderLineExtension method + + +Gets length of leader line extension. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Annotations::LineAnnotation::get_LeaderLineExtension() +``` + +## See Also + +* Class [LineAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/lineannotation/get_leaderlineoffset/_index.md b/english/cpp/aspose.pdf.annotations/lineannotation/get_leaderlineoffset/_index.md new file mode 100644 index 0000000000..c2a0811bdf --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/lineannotation/get_leaderlineoffset/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::LineAnnotation::get_LeaderLineOffset method +linktitle: get_LeaderLineOffset +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LineAnnotation::get_LeaderLineOffset method. Gets leader line offset in C++.' +type: docs +weight: 1700 +url: /cpp/aspose.pdf.annotations/lineannotation/get_leaderlineoffset/ +--- +## LineAnnotation::get_LeaderLineOffset method + + +Gets leader line offset. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Annotations::LineAnnotation::get_LeaderLineOffset() +``` + +## See Also + +* Class [LineAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/lineannotation/get_measure/_index.md b/english/cpp/aspose.pdf.annotations/lineannotation/get_measure/_index.md new file mode 100644 index 0000000000..0c218c78a0 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/lineannotation/get_measure/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::LineAnnotation::get_Measure method +linktitle: get_Measure +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LineAnnotation::get_Measure method. Measure units specifed for this annotation in C++.' +type: docs +weight: 2300 +url: /cpp/aspose.pdf.annotations/lineannotation/get_measure/ +--- +## LineAnnotation::get_Measure method + + +[Measure](../../measure/) units specifed for this annotation. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::LineAnnotation::get_Measure() +``` + +## See Also + +* Class [Measure](../../measure/) +* Class [LineAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/lineannotation/get_showcaption/_index.md b/english/cpp/aspose.pdf.annotations/lineannotation/get_showcaption/_index.md new file mode 100644 index 0000000000..93f69e0801 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/lineannotation/get_showcaption/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::LineAnnotation::get_ShowCaption method +linktitle: get_ShowCaption +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LineAnnotation::get_ShowCaption method. Gets boolean flag which determinies is contents must be shown as caption in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.annotations/lineannotation/get_showcaption/ +--- +## LineAnnotation::get_ShowCaption method + + +Gets boolean flag which determinies is contents must be shown as caption. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Annotations::LineAnnotation::get_ShowCaption() +``` + +## See Also + +* Class [LineAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/lineannotation/get_starting/_index.md b/english/cpp/aspose.pdf.annotations/lineannotation/get_starting/_index.md new file mode 100644 index 0000000000..ff86c092cc --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/lineannotation/get_starting/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::LineAnnotation::get_Starting method +linktitle: get_Starting +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LineAnnotation::get_Starting method. Gets starting point of line in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/lineannotation/get_starting/ +--- +## LineAnnotation::get_Starting method + + +Gets starting point of line. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::LineAnnotation::get_Starting() +``` + +## See Also + +* Class [Point](../../../aspose.pdf/point/) +* Class [LineAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/lineannotation/get_startingstyle/_index.md b/english/cpp/aspose.pdf.annotations/lineannotation/get_startingstyle/_index.md new file mode 100644 index 0000000000..1f651ca642 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/lineannotation/get_startingstyle/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::LineAnnotation::get_StartingStyle method +linktitle: get_StartingStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LineAnnotation::get_StartingStyle method. Gets line ending style for line starting point in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/lineannotation/get_startingstyle/ +--- +## LineAnnotation::get_StartingStyle method + + +Gets line ending style for line starting point. + +```cpp +ASPOSE_PDF_SHARED_API LineEnding Aspose::Pdf::Annotations::LineAnnotation::get_StartingStyle() +``` + +## See Also + +* Enum [LineEnding](../../lineending/) +* Class [LineAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/lineannotation/lineannotation/_index.md b/english/cpp/aspose.pdf.annotations/lineannotation/lineannotation/_index.md new file mode 100644 index 0000000000..6a46dff050 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/lineannotation/lineannotation/_index.md @@ -0,0 +1,122 @@ +--- +title: Aspose::Pdf::Annotations::LineAnnotation::LineAnnotation constructor +linktitle: LineAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LineAnnotation::LineAnnotation constructor. Constructor for using with Generator in C++.' +type: docs +weight: 2900 +url: /cpp/aspose.pdf.annotations/lineannotation/lineannotation/ +--- +## LineAnnotation::LineAnnotation(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) constructor + + +Constructor for using with Generator. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::LineAnnotation::LineAnnotation(System::SharedPtr document, System::SharedPtr start, System::SharedPtr end) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | [Document](../../../aspose.pdf/document/) where annotation will be created. | +| start | System::SharedPtr\ | Starting point. | +| end | System::SharedPtr\ | Ending point. | +## Remarks + + + + + + document + + + + Document where annotation will be created. + + + + + start + + + Starting point. + + + + + end + + + Ending point. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [Point](../../../aspose.pdf/point/) +* Class [LineAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## LineAnnotation::LineAnnotation(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) constructor + + +Creates new Line annotation on the specified page. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::LineAnnotation::LineAnnotation(System::SharedPtr page, System::SharedPtr rect, System::SharedPtr start, System::SharedPtr end) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The document's page where annotation should be created. | +| rect | System::SharedPtr\ | The annotation rectangle, defining the location of the annotation on the page. | +| start | System::SharedPtr\ | A point, specifying the starting coordinate of the line. | +| end | System::SharedPtr\ | A point, specifying the ending coordinate of the line. | +## Remarks + + + + + + page + + + The document's page where annotation should be created. + + + + + rect + + + The annotation rectangle, defining the location of the annotation on the page. + + + + + start + + + A point, specifying the starting coordinate of the line. + + + + + end + + + A point, specifying the ending coordinate of the line. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [Point](../../../aspose.pdf/point/) +* Class [LineAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/lineannotation/set_captionoffset/_index.md b/english/cpp/aspose.pdf.annotations/lineannotation/set_captionoffset/_index.md new file mode 100644 index 0000000000..88828e88a5 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/lineannotation/set_captionoffset/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::LineAnnotation::set_CaptionOffset method +linktitle: set_CaptionOffset +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LineAnnotation::set_CaptionOffset method. Sets caption text offset from its normal position in C++.' +type: docs +weight: 2000 +url: /cpp/aspose.pdf.annotations/lineannotation/set_captionoffset/ +--- +## LineAnnotation::set_CaptionOffset method + + +Sets caption text offset from its normal position. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::LineAnnotation::set_CaptionOffset(System::SharedPtr value) +``` + +## See Also + +* Class [Point](../../../aspose.pdf/point/) +* Class [LineAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/lineannotation/set_captionposition/_index.md b/english/cpp/aspose.pdf.annotations/lineannotation/set_captionposition/_index.md new file mode 100644 index 0000000000..37b1f2db2f --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/lineannotation/set_captionposition/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::LineAnnotation::set_CaptionPosition method +linktitle: set_CaptionPosition +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LineAnnotation::set_CaptionPosition method. Sets annotation caption position in C++.' +type: docs +weight: 2200 +url: /cpp/aspose.pdf.annotations/lineannotation/set_captionposition/ +--- +## LineAnnotation::set_CaptionPosition method + + +Sets annotation caption position. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::LineAnnotation::set_CaptionPosition(Aspose::Pdf::Annotations::CaptionPosition value) +``` + +## See Also + +* Enum [CaptionPosition](../../captionposition/) +* Class [LineAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/lineannotation/set_ending/_index.md b/english/cpp/aspose.pdf.annotations/lineannotation/set_ending/_index.md new file mode 100644 index 0000000000..6ef26a4cef --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/lineannotation/set_ending/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::LineAnnotation::set_Ending method +linktitle: set_Ending +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LineAnnotation::set_Ending method. Sets line ending point in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/lineannotation/set_ending/ +--- +## LineAnnotation::set_Ending method + + +Sets line ending point. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::LineAnnotation::set_Ending(System::SharedPtr value) +``` + +## See Also + +* Class [Point](../../../aspose.pdf/point/) +* Class [LineAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/lineannotation/set_endingstyle/_index.md b/english/cpp/aspose.pdf.annotations/lineannotation/set_endingstyle/_index.md new file mode 100644 index 0000000000..4e7e1d7a68 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/lineannotation/set_endingstyle/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::LineAnnotation::set_EndingStyle method +linktitle: set_EndingStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LineAnnotation::set_EndingStyle method. Sets ending style for end point of line in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.annotations/lineannotation/set_endingstyle/ +--- +## LineAnnotation::set_EndingStyle method + + +Sets ending style for end point of line. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::LineAnnotation::set_EndingStyle(LineEnding value) +``` + +## See Also + +* Enum [LineEnding](../../lineending/) +* Class [LineAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/lineannotation/set_intent/_index.md b/english/cpp/aspose.pdf.annotations/lineannotation/set_intent/_index.md new file mode 100644 index 0000000000..ff4a5a717e --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/lineannotation/set_intent/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::LineAnnotation::set_Intent method +linktitle: set_Intent +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LineAnnotation::set_Intent method. Sets the intent of the line annotation in C++.' +type: docs +weight: 2600 +url: /cpp/aspose.pdf.annotations/lineannotation/set_intent/ +--- +## LineAnnotation::set_Intent method + + +Sets the intent of the line annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::LineAnnotation::set_Intent(LineIntent value) +``` + +## See Also + +* Enum [LineIntent](../../lineintent/) +* Class [LineAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/lineannotation/set_interiorcolor/_index.md b/english/cpp/aspose.pdf.annotations/lineannotation/set_interiorcolor/_index.md new file mode 100644 index 0000000000..8f4f2e3bce --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/lineannotation/set_interiorcolor/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::LineAnnotation::set_InteriorColor method +linktitle: set_InteriorColor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LineAnnotation::set_InteriorColor method. Sets interior color of the annotation in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.annotations/lineannotation/set_interiorcolor/ +--- +## LineAnnotation::set_InteriorColor method + + +Sets interior color of the annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::LineAnnotation::set_InteriorColor(System::SharedPtr value) +``` + +## See Also + +* Class [Color](../../../aspose.pdf/color/) +* Class [LineAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/lineannotation/set_leaderline/_index.md b/english/cpp/aspose.pdf.annotations/lineannotation/set_leaderline/_index.md new file mode 100644 index 0000000000..90ecd2d4ae --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/lineannotation/set_leaderline/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::LineAnnotation::set_LeaderLine method +linktitle: set_LeaderLine +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LineAnnotation::set_LeaderLine method. Sets leader line length in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.annotations/lineannotation/set_leaderline/ +--- +## LineAnnotation::set_LeaderLine method + + +Sets leader line length. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::LineAnnotation::set_LeaderLine(double value) +``` + +## See Also + +* Class [LineAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/lineannotation/set_leaderlineextension/_index.md b/english/cpp/aspose.pdf.annotations/lineannotation/set_leaderlineextension/_index.md new file mode 100644 index 0000000000..c85c5a4a4c --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/lineannotation/set_leaderlineextension/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::LineAnnotation::set_LeaderLineExtension method +linktitle: set_LeaderLineExtension +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LineAnnotation::set_LeaderLineExtension method. Sets length of leader line extension in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.annotations/lineannotation/set_leaderlineextension/ +--- +## LineAnnotation::set_LeaderLineExtension method + + +Sets length of leader line extension. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::LineAnnotation::set_LeaderLineExtension(double value) +``` + +## See Also + +* Class [LineAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/lineannotation/set_leaderlineoffset/_index.md b/english/cpp/aspose.pdf.annotations/lineannotation/set_leaderlineoffset/_index.md new file mode 100644 index 0000000000..fed7384e89 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/lineannotation/set_leaderlineoffset/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::LineAnnotation::set_LeaderLineOffset method +linktitle: set_LeaderLineOffset +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LineAnnotation::set_LeaderLineOffset method. Sets leader line offset in C++.' +type: docs +weight: 1800 +url: /cpp/aspose.pdf.annotations/lineannotation/set_leaderlineoffset/ +--- +## LineAnnotation::set_LeaderLineOffset method + + +Sets leader line offset. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::LineAnnotation::set_LeaderLineOffset(double value) +``` + +## See Also + +* Class [LineAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/lineannotation/set_measure/_index.md b/english/cpp/aspose.pdf.annotations/lineannotation/set_measure/_index.md new file mode 100644 index 0000000000..f26bcb9f19 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/lineannotation/set_measure/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::LineAnnotation::set_Measure method +linktitle: set_Measure +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LineAnnotation::set_Measure method. Measure units specifed for this annotation in C++.' +type: docs +weight: 2400 +url: /cpp/aspose.pdf.annotations/lineannotation/set_measure/ +--- +## LineAnnotation::set_Measure method + + +[Measure](../../measure/) units specifed for this annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::LineAnnotation::set_Measure(System::SharedPtr value) +``` + +## See Also + +* Class [Measure](../../measure/) +* Class [LineAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/lineannotation/set_showcaption/_index.md b/english/cpp/aspose.pdf.annotations/lineannotation/set_showcaption/_index.md new file mode 100644 index 0000000000..4568a854d7 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/lineannotation/set_showcaption/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::LineAnnotation::set_ShowCaption method +linktitle: set_ShowCaption +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LineAnnotation::set_ShowCaption method. Sets boolean flag which determinies is contents must be shown as caption in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf.annotations/lineannotation/set_showcaption/ +--- +## LineAnnotation::set_ShowCaption method + + +Sets boolean flag which determinies is contents must be shown as caption. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::LineAnnotation::set_ShowCaption(bool value) +``` + +## See Also + +* Class [LineAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/lineannotation/set_starting/_index.md b/english/cpp/aspose.pdf.annotations/lineannotation/set_starting/_index.md new file mode 100644 index 0000000000..cf94ec8450 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/lineannotation/set_starting/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::LineAnnotation::set_Starting method +linktitle: set_Starting +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LineAnnotation::set_Starting method. Sets starting point of line in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/lineannotation/set_starting/ +--- +## LineAnnotation::set_Starting method + + +Sets starting point of line. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::LineAnnotation::set_Starting(System::SharedPtr value) +``` + +## See Also + +* Class [Point](../../../aspose.pdf/point/) +* Class [LineAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/lineannotation/set_startingstyle/_index.md b/english/cpp/aspose.pdf.annotations/lineannotation/set_startingstyle/_index.md new file mode 100644 index 0000000000..b21e9a24d9 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/lineannotation/set_startingstyle/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::LineAnnotation::set_StartingStyle method +linktitle: set_StartingStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LineAnnotation::set_StartingStyle method. Sets line ending style for line starting point in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/lineannotation/set_startingstyle/ +--- +## LineAnnotation::set_StartingStyle method + + +Sets line ending style for line starting point. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::LineAnnotation::set_StartingStyle(LineEnding value) +``` + +## See Also + +* Enum [LineEnding](../../lineending/) +* Class [LineAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/lineending/_index.md b/english/cpp/aspose.pdf.annotations/lineending/_index.md new file mode 100644 index 0000000000..c0bf83a9e1 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/lineending/_index.md @@ -0,0 +1,37 @@ +--- +title: Aspose::Pdf::Annotations::LineEnding enum +linktitle: LineEnding +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LineEnding enum. Enumerates the line ending styles to be used in drawing the line in C++.' +type: docs +weight: 13300 +url: /cpp/aspose.pdf.annotations/lineending/ +--- +## LineEnding enum + + +Enumerates the line ending styles to be used in drawing the line. + +```cpp +enum class LineEnding +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| None | 0 | No line ending. | +| Square | 1 | A square filled with the annotation's interior color, if any. | +| Circle | 2 | A circle filled with the annotation's interior color, if any. | +| Diamond | 3 | A diamond shape filled with the annotation's interior color, if any. | +| OpenArrow | 4 | Two short lines meeting in an acute angle to form an open arrowhead. | +| ClosedArrow | 5 | Two short lines meeting in an acute angle as in the OpenArrow style and connected by a third line to form a triangular closed arrowhead filled with the annotation's interior color, if any. | +| Butt | 6 | A short line at the endpoint perpendicular to the line itself. | +| ROpenArrow | 7 | Two short lines in the reverse direction from OpenArrow. | +| RClosedArrow | 8 | A triangular closed arrowhead in the reverse direction from ClosedArrow. | +| Slash | 9 | A short line at the endpoint approximately 30 degrees clockwise from perpendicular to the line itself. | + +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/lineendingconverter/_index.md b/english/cpp/aspose.pdf.annotations/lineendingconverter/_index.md new file mode 100644 index 0000000000..ca89d71fe5 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/lineendingconverter/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::LineEndingConverter class +linktitle: LineEndingConverter +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Annotations::LineEndingConverter class in C++.' +type: docs +weight: 5800 +url: /cpp/aspose.pdf.annotations/lineendingconverter/ +--- +## LineEndingConverter class + + + + +```cpp +class LineEndingConverter : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [ToEnum](./toenum/)(System::String) | | +| static [ToString](./tostring/)(LineEnding) | | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/lineendingconverter/toenum/_index.md b/english/cpp/aspose.pdf.annotations/lineendingconverter/toenum/_index.md new file mode 100644 index 0000000000..85b13aced9 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/lineendingconverter/toenum/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::LineEndingConverter::ToEnum method +linktitle: ToEnum +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToEnum method of Aspose::Pdf::Annotations::LineEndingConverter class in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/lineendingconverter/toenum/ +--- +## LineEndingConverter::ToEnum method + + + + +```cpp +static ASPOSE_PDF_SHARED_API LineEnding Aspose::Pdf::Annotations::LineEndingConverter::ToEnum(System::String value) +``` + +## See Also + +* Enum [LineEnding](../../lineending/) +* Class [LineEndingConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/lineendingconverter/tostring/_index.md b/english/cpp/aspose.pdf.annotations/lineendingconverter/tostring/_index.md new file mode 100644 index 0000000000..c79387016b --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/lineendingconverter/tostring/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::LineEndingConverter::ToString method +linktitle: ToString +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToString method of Aspose::Pdf::Annotations::LineEndingConverter class in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/lineendingconverter/tostring/ +--- +## LineEndingConverter::ToString method + + + + +```cpp +static ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::LineEndingConverter::ToString(LineEnding value) +``` + +## See Also + +* Enum [LineEnding](../../lineending/) +* Class [LineEndingConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/lineintent/_index.md b/english/cpp/aspose.pdf.annotations/lineintent/_index.md new file mode 100644 index 0000000000..41dd6c3014 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/lineintent/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Annotations::LineIntent enum +linktitle: LineIntent +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LineIntent enum. Enumerates the intents of the line annotation in C++.' +type: docs +weight: 13400 +url: /cpp/aspose.pdf.annotations/lineintent/ +--- +## LineIntent enum + + +Enumerates the intents of the line annotation. + +```cpp +enum class LineIntent +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Undefined | 0 | Undefined state. | +| LineArrow | 1 | Means that the annotation is intended to function as an arrow. | +| LineDimension | 2 | Means that the annotation is intended to function as a dimension line. | + +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/lineintentconverter/_index.md b/english/cpp/aspose.pdf.annotations/lineintentconverter/_index.md new file mode 100644 index 0000000000..63aad8f287 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/lineintentconverter/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Annotations::LineIntentConverter class +linktitle: LineIntentConverter +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Annotations::LineIntentConverter class in C++.' +type: docs +weight: 5900 +url: /cpp/aspose.pdf.annotations/lineintentconverter/ +--- +## LineIntentConverter class + + + + +```cpp +class LineIntentConverter : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [ToEnum](./toenum/)(System::String) | | +| static [ToString](./tostring/)(LineIntent) | | +| static [ToXfdfString](./toxfdfstring/)(LineIntent) | | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/lineintentconverter/toenum/_index.md b/english/cpp/aspose.pdf.annotations/lineintentconverter/toenum/_index.md new file mode 100644 index 0000000000..4ae5df1539 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/lineintentconverter/toenum/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::LineIntentConverter::ToEnum method +linktitle: ToEnum +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToEnum method of Aspose::Pdf::Annotations::LineIntentConverter class in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/lineintentconverter/toenum/ +--- +## LineIntentConverter::ToEnum method + + + + +```cpp +static ASPOSE_PDF_SHARED_API LineIntent Aspose::Pdf::Annotations::LineIntentConverter::ToEnum(System::String value) +``` + +## See Also + +* Enum [LineIntent](../../lineintent/) +* Class [LineIntentConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/lineintentconverter/tostring/_index.md b/english/cpp/aspose.pdf.annotations/lineintentconverter/tostring/_index.md new file mode 100644 index 0000000000..42295781e4 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/lineintentconverter/tostring/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::LineIntentConverter::ToString method +linktitle: ToString +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToString method of Aspose::Pdf::Annotations::LineIntentConverter class in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/lineintentconverter/tostring/ +--- +## LineIntentConverter::ToString method + + + + +```cpp +static ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::LineIntentConverter::ToString(LineIntent value) +``` + +## See Also + +* Enum [LineIntent](../../lineintent/) +* Class [LineIntentConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/lineintentconverter/toxfdfstring/_index.md b/english/cpp/aspose.pdf.annotations/lineintentconverter/toxfdfstring/_index.md new file mode 100644 index 0000000000..316e604ffb --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/lineintentconverter/toxfdfstring/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::LineIntentConverter::ToXfdfString method +linktitle: ToXfdfString +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToXfdfString method of Aspose::Pdf::Annotations::LineIntentConverter class in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/lineintentconverter/toxfdfstring/ +--- +## LineIntentConverter::ToXfdfString method + + + + +```cpp +static ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::LineIntentConverter::ToXfdfString(LineIntent value) +``` + +## See Also + +* Enum [LineIntent](../../lineintent/) +* Class [LineIntentConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/linkannotation/_index.md b/english/cpp/aspose.pdf.annotations/linkannotation/_index.md new file mode 100644 index 0000000000..4949287291 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/linkannotation/_index.md @@ -0,0 +1,93 @@ +--- +title: Aspose::Pdf::Annotations::LinkAnnotation class +linktitle: LinkAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LinkAnnotation class. Represents either a hypertext link to a destination elsewhere in the document or an action to be performed in C++.' +type: docs +weight: 6000 +url: /cpp/aspose.pdf.annotations/linkannotation/ +--- +## LinkAnnotation class + + +Represents either a hypertext link to a destination elsewhere in the document or an action to be performed. + +```cpp +class LinkAnnotation : public Aspose::Pdf::Annotations::Annotation +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Accept](./accept/)(System::SharedPtr\) override | Accepts visitor object to process the annotation. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| virtual [ChangeAfterResize](../annotation/changeafterresize/)(System::SharedPtr\) | Update parameters and appearance, according to the matrix transform. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [Flatten](../annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Action](./get_action/)() const | An action to be performed when the link annotation is activated. | +| [get_Actions](../annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../annotation/get_alignment/)() | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [get_AnnotationType](./get_annotationtype/)() override | Gets type of annotation. | +| [get_Appearance](../annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../annotation/get_border/)() const | Gets annotation border characteristics. [Border](../border/) | +| [get_Characteristics](../annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../annotation/get_color/)() | Gets annotation color. | +| [get_Contents](../annotation/get_contents/)() | Gets annotation text. | +| [get_Destination](./get_destination/)() const | A destination to be displayed when the annotation is activated. | +| [get_Flags](../annotation/get_flags/)() | Flags of the annotation. | +| [get_FullName](../annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../annotation/get_height/)() | Gets height of the annotation. | +| [get_Highlighting](./get_highlighting/)() | The visual effect to be used when the mouse button is pressed or held down inside its active area. | +| [get_HorizontalAlignment](../annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| [get_Modified](../annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Name](../annotation/get_name/)() | Gets annotation name on the page. | +| virtual [get_PageIndex](../annotation/get_pageindex/)() | Gets index of page which contains annotation. | +| virtual [get_Rect](../annotation/get_rect/)() | Gets annotation rectangle. | +| [get_States](../annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_TextHorizontalAlignment](../annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| static [get_UpdateAppearanceOnConvert](../annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetRectangle](../annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| [LinkAnnotation](./linkannotation/)(System::SharedPtr\, System::SharedPtr\) | Creates new Link annotation on the specified page. | +| [set_Action](./set_action/)(System::SharedPtr\) | An action to be performed when the link annotation is activated. | +| virtual [set_ActiveState](../annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../annotation/set_alignment/)(TextAlignment) | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_Border](../annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../border/) | +| [set_Color](../annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](../annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_Destination](./set_destination/)(System::SharedPtr\) | A destination to be displayed when the annotation is activated. | +| [set_Flags](../annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| virtual [set_Height](../annotation/set_height/)(double) | Sets height of the annotation. | +| [set_Highlighting](./set_highlighting/)(HighlightingMode) | The visual effect to be used when the mouse button is pressed or held down inside its active area. | +| [set_HorizontalAlignment](../annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| [set_Modified](../annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Name](../annotation/set_name/)(System::String) | Sets annotation name on the page. | +| virtual [set_Rect](../annotation/set_rect/)(System::SharedPtr\) | Sets annotation rectangle. | +| [set_TextHorizontalAlignment](../annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| static [set_UpdateAppearanceOnConvert](../annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +## See Also + +* Class [Annotation](../annotation/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/linkannotation/accept/_index.md b/english/cpp/aspose.pdf.annotations/linkannotation/accept/_index.md new file mode 100644 index 0000000000..b800bbbad7 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/linkannotation/accept/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Annotations::LinkAnnotation::Accept method +linktitle: Accept +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LinkAnnotation::Accept method. Accepts visitor object to process the annotation in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.annotations/linkannotation/accept/ +--- +## LinkAnnotation::Accept method + + +Accepts visitor object to process the annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::LinkAnnotation::Accept(System::SharedPtr visitor) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| visitor | System::SharedPtr\ | Visitor object. | +## Remarks + + + + + + visitor + + + Visitor object. + + + +## See Also + +* Class [AnnotationSelector](../../annotationselector/) +* Class [LinkAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/linkannotation/get_action/_index.md b/english/cpp/aspose.pdf.annotations/linkannotation/get_action/_index.md new file mode 100644 index 0000000000..3b21fcffdc --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/linkannotation/get_action/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::LinkAnnotation::get_Action method +linktitle: get_Action +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LinkAnnotation::get_Action method. An action to be performed when the link annotation is activated in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/linkannotation/get_action/ +--- +## LinkAnnotation::get_Action method + + +An action to be performed when the link annotation is activated. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::LinkAnnotation::get_Action() const +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [LinkAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/linkannotation/get_annotationtype/_index.md b/english/cpp/aspose.pdf.annotations/linkannotation/get_annotationtype/_index.md new file mode 100644 index 0000000000..36ff244ca2 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/linkannotation/get_annotationtype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::LinkAnnotation::get_AnnotationType method +linktitle: get_AnnotationType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LinkAnnotation::get_AnnotationType method. Gets type of annotation in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.annotations/linkannotation/get_annotationtype/ +--- +## LinkAnnotation::get_AnnotationType method + + +Gets type of annotation. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::AnnotationType Aspose::Pdf::Annotations::LinkAnnotation::get_AnnotationType() override +``` + +## See Also + +* Enum [AnnotationType](../../annotationtype/) +* Class [LinkAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/linkannotation/get_destination/_index.md b/english/cpp/aspose.pdf.annotations/linkannotation/get_destination/_index.md new file mode 100644 index 0000000000..fb1ab2166e --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/linkannotation/get_destination/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::LinkAnnotation::get_Destination method +linktitle: get_Destination +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LinkAnnotation::get_Destination method. A destination to be displayed when the annotation is activated in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/linkannotation/get_destination/ +--- +## LinkAnnotation::get_Destination method + + +A destination to be displayed when the annotation is activated. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::LinkAnnotation::get_Destination() const +``` + +## See Also + +* Class [IAppointment](../../iappointment/) +* Class [LinkAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/linkannotation/get_highlighting/_index.md b/english/cpp/aspose.pdf.annotations/linkannotation/get_highlighting/_index.md new file mode 100644 index 0000000000..f7ad39e484 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/linkannotation/get_highlighting/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::LinkAnnotation::get_Highlighting method +linktitle: get_Highlighting +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LinkAnnotation::get_Highlighting method. The visual effect to be used when the mouse button is pressed or held down inside its active area in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/linkannotation/get_highlighting/ +--- +## LinkAnnotation::get_Highlighting method + + +The visual effect to be used when the mouse button is pressed or held down inside its active area. + +```cpp +ASPOSE_PDF_SHARED_API HighlightingMode Aspose::Pdf::Annotations::LinkAnnotation::get_Highlighting() +``` + +## See Also + +* Enum [HighlightingMode](../../highlightingmode/) +* Class [LinkAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/linkannotation/linkannotation/_index.md b/english/cpp/aspose.pdf.annotations/linkannotation/linkannotation/_index.md new file mode 100644 index 0000000000..da4498deac --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/linkannotation/linkannotation/_index.md @@ -0,0 +1,51 @@ +--- +title: Aspose::Pdf::Annotations::LinkAnnotation::LinkAnnotation constructor +linktitle: LinkAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LinkAnnotation::LinkAnnotation constructor. Creates new Link annotation on the specified page in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.annotations/linkannotation/linkannotation/ +--- +## LinkAnnotation::LinkAnnotation constructor + + +Creates new Link annotation on the specified page. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::LinkAnnotation::LinkAnnotation(System::SharedPtr page, System::SharedPtr rect) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The document's page where annotation should be created. | +| rect | System::SharedPtr\ | The annotation rectangle, defining the location of the annotation on the page. | +## Remarks + + + + + + page + + + The document's page where annotation should be created. + + + + + rect + + + The annotation rectangle, defining the location of the annotation on the page. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [LinkAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/linkannotation/set_action/_index.md b/english/cpp/aspose.pdf.annotations/linkannotation/set_action/_index.md new file mode 100644 index 0000000000..658be5148e --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/linkannotation/set_action/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::LinkAnnotation::set_Action method +linktitle: set_Action +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LinkAnnotation::set_Action method. An action to be performed when the link annotation is activated in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/linkannotation/set_action/ +--- +## LinkAnnotation::set_Action method + + +An action to be performed when the link annotation is activated. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::LinkAnnotation::set_Action(System::SharedPtr value) +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [LinkAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/linkannotation/set_destination/_index.md b/english/cpp/aspose.pdf.annotations/linkannotation/set_destination/_index.md new file mode 100644 index 0000000000..3b5d359245 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/linkannotation/set_destination/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::LinkAnnotation::set_Destination method +linktitle: set_Destination +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LinkAnnotation::set_Destination method. A destination to be displayed when the annotation is activated in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/linkannotation/set_destination/ +--- +## LinkAnnotation::set_Destination method + + +A destination to be displayed when the annotation is activated. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::LinkAnnotation::set_Destination(System::SharedPtr value) +``` + +## See Also + +* Class [IAppointment](../../iappointment/) +* Class [LinkAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/linkannotation/set_highlighting/_index.md b/english/cpp/aspose.pdf.annotations/linkannotation/set_highlighting/_index.md new file mode 100644 index 0000000000..8ff48df616 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/linkannotation/set_highlighting/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::LinkAnnotation::set_Highlighting method +linktitle: set_Highlighting +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::LinkAnnotation::set_Highlighting method. The visual effect to be used when the mouse button is pressed or held down inside its active area in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/linkannotation/set_highlighting/ +--- +## LinkAnnotation::set_Highlighting method + + +The visual effect to be used when the mouse button is pressed or held down inside its active area. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::LinkAnnotation::set_Highlighting(HighlightingMode value) +``` + +## See Also + +* Enum [HighlightingMode](../../highlightingmode/) +* Class [LinkAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/markupannotation/_index.md b/english/cpp/aspose.pdf.annotations/markupannotation/_index.md new file mode 100644 index 0000000000..bf31033f08 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/markupannotation/_index.md @@ -0,0 +1,109 @@ +--- +title: Aspose::Pdf::Annotations::MarkupAnnotation class +linktitle: MarkupAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::MarkupAnnotation class. Abstract class representing markup annotation in C++.' +type: docs +weight: 6100 +url: /cpp/aspose.pdf.annotations/markupannotation/ +--- +## MarkupAnnotation class + + +Abstract class representing markup annotation. + +```cpp +class MarkupAnnotation : public Aspose::Pdf::Annotations::Annotation, + public Aspose::Pdf::Annotations::Annotation::ITitledAnnotation +``` + +## Methods + +| Method | Description | +| --- | --- | +| virtual [Accept](../annotation/accept/)(System::SharedPtr\) | Accepts visitor for annotation processing. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| virtual [ChangeAfterResize](../annotation/changeafterresize/)(System::SharedPtr\) | Update parameters and appearance, according to the matrix transform. | +| [ClearState](./clearstate/)() | Clears state and state model for the annotation. For example, clears the review status for an annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [Flatten](../annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](../annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../annotation/get_alignment/)() | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| virtual [get_AnnotationType](../annotation/get_annotationtype/)() | Gets type of annotation. | +| [get_Appearance](../annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../annotation/get_border/)() const | Gets annotation border characteristics. [Border](../border/) | +| [get_Characteristics](../annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../annotation/get_color/)() | Gets annotation color. | +| [get_Contents](../annotation/get_contents/)() | Gets annotation text. | +| [get_CreationDate](./get_creationdate/)() | Gets date and time when annotation was created. | +| [get_Flags](../annotation/get_flags/)() | Flags of the annotation. | +| [get_FullName](../annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../annotation/get_height/)() | Gets height of the annotation. | +| [get_HorizontalAlignment](../annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_InReplyTo](./get_inreplyto/)() | A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| [get_Modified](../annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Name](../annotation/get_name/)() | Gets annotation name on the page. | +| [get_Opacity](./get_opacity/)() | Gets the constant opacity value to be used in painting the annotation. | +| virtual [get_PageIndex](../annotation/get_pageindex/)() | Gets index of page which contains annotation. | +| [get_Popup](./get_popup/)() | Pop-up annotation for entering or editing the text associated with this annotation. | +| virtual [get_Rect](../annotation/get_rect/)() | Gets annotation rectangle. | +| [get_ReplyType](./get_replytype/)() | A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. | +| [get_RichText](./get_richtext/)() | Gets a rich text string to be displayed in the pop-up window when the annotation is opened. | +| [get_States](../annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_Subject](./get_subject/)() | Gets text representing desciption of the object. | +| [get_TextHorizontalAlignment](../annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| [get_Title](./get_title/)() override | Gets a text that shall be displayed in title bar of annotation. | +| static [get_UpdateAppearanceOnConvert](../annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetRectangle](../annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| [GetState](./getstate/)() | Gets the state of the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [GetStateModel](./getstatemodel/)() | Gets the state model of the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [MarkupAnnotation](./markupannotation/)(System::SharedPtr\) | Constructor for markup annotation. | +| virtual [set_ActiveState](../annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../annotation/set_alignment/)(TextAlignment) | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_Border](../annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../border/) | +| [set_Color](../annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](../annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_Flags](../annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| virtual [set_Height](../annotation/set_height/)(double) | Sets height of the annotation. | +| [set_HorizontalAlignment](../annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_InReplyTo](./set_inreplyto/)(System::SharedPtr\) | A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| [set_Modified](../annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Name](../annotation/set_name/)(System::String) | Sets annotation name on the page. | +| [set_Opacity](./set_opacity/)(double) | Sets the constant opacity value to be used in painting the annotation. | +| [set_Popup](./set_popup/)(System::SharedPtr\) | Pop-up annotation for entering or editing the text associated with this annotation. | +| virtual [set_Rect](../annotation/set_rect/)(System::SharedPtr\) | Sets annotation rectangle. | +| [set_ReplyType](./set_replytype/)(Aspose::Pdf::Annotations::ReplyType) | A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. | +| [set_RichText](./set_richtext/)(System::String) | Sets a rich text string to be displayed in the pop-up window when the annotation is opened. | +| [set_Subject](./set_subject/)(System::String) | Gets text representing desciption of the object. | +| [set_TextHorizontalAlignment](../annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| [set_Title](./set_title/)(System::String) override | Sets a text that shall be displayed in title bar of annotation. | +| static [set_UpdateAppearanceOnConvert](../annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [SetMarkedState](./setmarkedstate/)(bool) | Sets Marked and Unmarked state for the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SetReviewState](./setreviewstate/)(AnnotationState, System::String) | Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SetReviewState](./setreviewstate/)(AnnotationState) | Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. The state is set by the user who created the target annotation. The value is taken from the Title property of the target annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +## See Also + +* Class [Annotation](../annotation/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/markupannotation/clearstate/_index.md b/english/cpp/aspose.pdf.annotations/markupannotation/clearstate/_index.md new file mode 100644 index 0000000000..2eae8b3aa7 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/markupannotation/clearstate/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::MarkupAnnotation::ClearState method +linktitle: ClearState +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::MarkupAnnotation::ClearState method. Clears state and state model for the annotation. For example, clears the review status for an annotation. Note, the state stored in other text annotation which has state and statemodel keys in C++.' +type: docs +weight: 1700 +url: /cpp/aspose.pdf.annotations/markupannotation/clearstate/ +--- +## MarkupAnnotation::ClearState method + + +Clears state and state model for the annotation. For example, clears the review status for an annotation. [Note](../../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::MarkupAnnotation::ClearState() +``` + +## See Also + +* Class [MarkupAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/markupannotation/get_creationdate/_index.md b/english/cpp/aspose.pdf.annotations/markupannotation/get_creationdate/_index.md new file mode 100644 index 0000000000..f30e10b8a6 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/markupannotation/get_creationdate/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::MarkupAnnotation::get_CreationDate method +linktitle: get_CreationDate +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::MarkupAnnotation::get_CreationDate method. Gets date and time when annotation was created in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/markupannotation/get_creationdate/ +--- +## MarkupAnnotation::get_CreationDate method + + +Gets date and time when annotation was created. + +```cpp +ASPOSE_PDF_SHARED_API System::DateTime Aspose::Pdf::Annotations::MarkupAnnotation::get_CreationDate() +``` + +## See Also + +* Class [MarkupAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/markupannotation/get_inreplyto/_index.md b/english/cpp/aspose.pdf.annotations/markupannotation/get_inreplyto/_index.md new file mode 100644 index 0000000000..152bb33bed --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/markupannotation/get_inreplyto/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::MarkupAnnotation::get_InReplyTo method +linktitle: get_InReplyTo +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::MarkupAnnotation::get_InReplyTo method. A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.annotations/markupannotation/get_inreplyto/ +--- +## MarkupAnnotation::get_InReplyTo method + + +A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::MarkupAnnotation::get_InReplyTo() +``` + +## See Also + +* Class [Annotation](../../annotation/) +* Class [MarkupAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/markupannotation/get_opacity/_index.md b/english/cpp/aspose.pdf.annotations/markupannotation/get_opacity/_index.md new file mode 100644 index 0000000000..010d08b4d3 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/markupannotation/get_opacity/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::MarkupAnnotation::get_Opacity method +linktitle: get_Opacity +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::MarkupAnnotation::get_Opacity method. Gets the constant opacity value to be used in painting the annotation in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.annotations/markupannotation/get_opacity/ +--- +## MarkupAnnotation::get_Opacity method + + +Gets the constant opacity value to be used in painting the annotation. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Annotations::MarkupAnnotation::get_Opacity() +``` + +## See Also + +* Class [MarkupAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/markupannotation/get_popup/_index.md b/english/cpp/aspose.pdf.annotations/markupannotation/get_popup/_index.md new file mode 100644 index 0000000000..f1050cdbd9 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/markupannotation/get_popup/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::MarkupAnnotation::get_Popup method +linktitle: get_Popup +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::MarkupAnnotation::get_Popup method. Pop-up annotation for entering or editing the text associated with this annotation in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.annotations/markupannotation/get_popup/ +--- +## MarkupAnnotation::get_Popup method + + +Pop-up annotation for entering or editing the text associated with this annotation. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::MarkupAnnotation::get_Popup() +``` + +## See Also + +* Class [PopupAnnotation](../../popupannotation/) +* Class [MarkupAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/markupannotation/get_replytype/_index.md b/english/cpp/aspose.pdf.annotations/markupannotation/get_replytype/_index.md new file mode 100644 index 0000000000..23da2e6b0a --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/markupannotation/get_replytype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::MarkupAnnotation::get_ReplyType method +linktitle: get_ReplyType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::MarkupAnnotation::get_ReplyType method. A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.annotations/markupannotation/get_replytype/ +--- +## MarkupAnnotation::get_ReplyType method + + +A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::ReplyType Aspose::Pdf::Annotations::MarkupAnnotation::get_ReplyType() +``` + +## See Also + +* Enum [ReplyType](../../replytype/) +* Class [MarkupAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/markupannotation/get_richtext/_index.md b/english/cpp/aspose.pdf.annotations/markupannotation/get_richtext/_index.md new file mode 100644 index 0000000000..c62c380b15 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/markupannotation/get_richtext/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::MarkupAnnotation::get_RichText method +linktitle: get_RichText +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::MarkupAnnotation::get_RichText method. Gets a rich text string to be displayed in the pop-up window when the annotation is opened in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/markupannotation/get_richtext/ +--- +## MarkupAnnotation::get_RichText method + + +Gets a rich text string to be displayed in the pop-up window when the annotation is opened. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::MarkupAnnotation::get_RichText() +``` + +## See Also + +* Class [MarkupAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/markupannotation/get_subject/_index.md b/english/cpp/aspose.pdf.annotations/markupannotation/get_subject/_index.md new file mode 100644 index 0000000000..2d32b17d88 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/markupannotation/get_subject/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::MarkupAnnotation::get_Subject method +linktitle: get_Subject +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::MarkupAnnotation::get_Subject method. Gets text representing desciption of the object in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/markupannotation/get_subject/ +--- +## MarkupAnnotation::get_Subject method + + +Gets text representing desciption of the object. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::MarkupAnnotation::get_Subject() +``` + +## See Also + +* Class [MarkupAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/markupannotation/get_title/_index.md b/english/cpp/aspose.pdf.annotations/markupannotation/get_title/_index.md new file mode 100644 index 0000000000..2ed7891010 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/markupannotation/get_title/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::MarkupAnnotation::get_Title method +linktitle: get_Title +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::MarkupAnnotation::get_Title method. Gets a text that shall be displayed in title bar of annotation in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/markupannotation/get_title/ +--- +## MarkupAnnotation::get_Title method + + +Gets a text that shall be displayed in title bar of annotation. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::MarkupAnnotation::get_Title() override +``` + +## See Also + +* Class [MarkupAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/markupannotation/getstate/_index.md b/english/cpp/aspose.pdf.annotations/markupannotation/getstate/_index.md new file mode 100644 index 0000000000..4615277377 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/markupannotation/getstate/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Annotations::MarkupAnnotation::GetState method +linktitle: GetState +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::MarkupAnnotation::GetState method. Gets the state of the annotation. Note, the state stored in other text annotation which has state and statemodel keys in C++.' +type: docs +weight: 2000 +url: /cpp/aspose.pdf.annotations/markupannotation/getstate/ +--- +## MarkupAnnotation::GetState method + + +Gets the state of the annotation. [Note](../../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. + +```cpp +ASPOSE_PDF_SHARED_API AnnotationState Aspose::Pdf::Annotations::MarkupAnnotation::GetState() +``` + + +### ReturnValue + +[Annotation](../../annotation/) state. + +## See Also + +* Enum [AnnotationState](../../annotationstate/) +* Class [MarkupAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/markupannotation/getstatemodel/_index.md b/english/cpp/aspose.pdf.annotations/markupannotation/getstatemodel/_index.md new file mode 100644 index 0000000000..92fd53edc3 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/markupannotation/getstatemodel/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Annotations::MarkupAnnotation::GetStateModel method +linktitle: GetStateModel +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::MarkupAnnotation::GetStateModel method. Gets the state model of the annotation. Note, the state stored in other text annotation which has state and statemodel keys in C++.' +type: docs +weight: 2100 +url: /cpp/aspose.pdf.annotations/markupannotation/getstatemodel/ +--- +## MarkupAnnotation::GetStateModel method + + +Gets the state model of the annotation. [Note](../../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. + +```cpp +ASPOSE_PDF_SHARED_API AnnotationStateModel Aspose::Pdf::Annotations::MarkupAnnotation::GetStateModel() +``` + + +### ReturnValue + +[Annotation](../../annotation/) state model. + +## See Also + +* Enum [AnnotationStateModel](../../annotationstatemodel/) +* Class [MarkupAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/markupannotation/markupannotation/_index.md b/english/cpp/aspose.pdf.annotations/markupannotation/markupannotation/_index.md new file mode 100644 index 0000000000..5505a6bd36 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/markupannotation/markupannotation/_index.md @@ -0,0 +1,42 @@ +--- +title: Aspose::Pdf::Annotations::MarkupAnnotation::MarkupAnnotation constructor +linktitle: MarkupAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::MarkupAnnotation::MarkupAnnotation constructor. Constructor for markup annotation in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf.annotations/markupannotation/markupannotation/ +--- +## MarkupAnnotation::MarkupAnnotation constructor + + +Constructor for markup annotation. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::MarkupAnnotation::MarkupAnnotation(System::SharedPtr document) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | [Document](../../../aspose.pdf/document/) where annotation will be created. | +## Remarks + + + + + + document + + + + Document where annotation will be created. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [MarkupAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/markupannotation/set_inreplyto/_index.md b/english/cpp/aspose.pdf.annotations/markupannotation/set_inreplyto/_index.md new file mode 100644 index 0000000000..e6a24ab7b5 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/markupannotation/set_inreplyto/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::MarkupAnnotation::set_InReplyTo method +linktitle: set_InReplyTo +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::MarkupAnnotation::set_InReplyTo method. A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.annotations/markupannotation/set_inreplyto/ +--- +## MarkupAnnotation::set_InReplyTo method + + +A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::MarkupAnnotation::set_InReplyTo(System::SharedPtr value) +``` + +## See Also + +* Class [Annotation](../../annotation/) +* Class [MarkupAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/markupannotation/set_opacity/_index.md b/english/cpp/aspose.pdf.annotations/markupannotation/set_opacity/_index.md new file mode 100644 index 0000000000..e4a6c98661 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/markupannotation/set_opacity/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::MarkupAnnotation::set_Opacity method +linktitle: set_Opacity +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::MarkupAnnotation::set_Opacity method. Sets the constant opacity value to be used in painting the annotation in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.annotations/markupannotation/set_opacity/ +--- +## MarkupAnnotation::set_Opacity method + + +Sets the constant opacity value to be used in painting the annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::MarkupAnnotation::set_Opacity(double value) +``` + +## See Also + +* Class [MarkupAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/markupannotation/set_popup/_index.md b/english/cpp/aspose.pdf.annotations/markupannotation/set_popup/_index.md new file mode 100644 index 0000000000..dae1e66df7 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/markupannotation/set_popup/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::MarkupAnnotation::set_Popup method +linktitle: set_Popup +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::MarkupAnnotation::set_Popup method. Pop-up annotation for entering or editing the text associated with this annotation in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.annotations/markupannotation/set_popup/ +--- +## MarkupAnnotation::set_Popup method + + +Pop-up annotation for entering or editing the text associated with this annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::MarkupAnnotation::set_Popup(System::SharedPtr value) +``` + +## See Also + +* Class [PopupAnnotation](../../popupannotation/) +* Class [MarkupAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/markupannotation/set_replytype/_index.md b/english/cpp/aspose.pdf.annotations/markupannotation/set_replytype/_index.md new file mode 100644 index 0000000000..aba2b7dd88 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/markupannotation/set_replytype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::MarkupAnnotation::set_ReplyType method +linktitle: set_ReplyType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::MarkupAnnotation::set_ReplyType method. A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.annotations/markupannotation/set_replytype/ +--- +## MarkupAnnotation::set_ReplyType method + + +A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::MarkupAnnotation::set_ReplyType(Aspose::Pdf::Annotations::ReplyType value) +``` + +## See Also + +* Enum [ReplyType](../../replytype/) +* Class [MarkupAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/markupannotation/set_richtext/_index.md b/english/cpp/aspose.pdf.annotations/markupannotation/set_richtext/_index.md new file mode 100644 index 0000000000..e612f0437c --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/markupannotation/set_richtext/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::MarkupAnnotation::set_RichText method +linktitle: set_RichText +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::MarkupAnnotation::set_RichText method. Sets a rich text string to be displayed in the pop-up window when the annotation is opened in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/markupannotation/set_richtext/ +--- +## MarkupAnnotation::set_RichText method + + +Sets a rich text string to be displayed in the pop-up window when the annotation is opened. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::MarkupAnnotation::set_RichText(System::String value) +``` + +## See Also + +* Class [MarkupAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/markupannotation/set_subject/_index.md b/english/cpp/aspose.pdf.annotations/markupannotation/set_subject/_index.md new file mode 100644 index 0000000000..60946865fd --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/markupannotation/set_subject/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::MarkupAnnotation::set_Subject method +linktitle: set_Subject +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::MarkupAnnotation::set_Subject method. Gets text representing desciption of the object in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.annotations/markupannotation/set_subject/ +--- +## MarkupAnnotation::set_Subject method + + +Gets text representing desciption of the object. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::MarkupAnnotation::set_Subject(System::String value) +``` + +## See Also + +* Class [MarkupAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/markupannotation/set_title/_index.md b/english/cpp/aspose.pdf.annotations/markupannotation/set_title/_index.md new file mode 100644 index 0000000000..075f7e9832 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/markupannotation/set_title/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::MarkupAnnotation::set_Title method +linktitle: set_Title +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::MarkupAnnotation::set_Title method. Sets a text that shall be displayed in title bar of annotation in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/markupannotation/set_title/ +--- +## MarkupAnnotation::set_Title method + + +Sets a text that shall be displayed in title bar of annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::MarkupAnnotation::set_Title(System::String value) override +``` + +## See Also + +* Class [MarkupAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/markupannotation/setmarkedstate/_index.md b/english/cpp/aspose.pdf.annotations/markupannotation/setmarkedstate/_index.md new file mode 100644 index 0000000000..a87f192313 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/markupannotation/setmarkedstate/_index.md @@ -0,0 +1,40 @@ +--- +title: Aspose::Pdf::Annotations::MarkupAnnotation::SetMarkedState method +linktitle: SetMarkedState +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::MarkupAnnotation::SetMarkedState method. Sets Marked and Unmarked state for the annotation. Note, the state stored in other text annotation which has state and statemodel keys in C++.' +type: docs +weight: 1900 +url: /cpp/aspose.pdf.annotations/markupannotation/setmarkedstate/ +--- +## MarkupAnnotation::SetMarkedState method + + +Sets Marked and Unmarked state for the annotation. [Note](../../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::MarkupAnnotation::SetMarkedState(bool marked) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| marked | bool | True if sets Marked state, and false if sets Unmarked state. | +## Remarks + + + + + + marked + + + True if sets Marked state, and false if sets Unmarked state. + + + +## See Also + +* Class [MarkupAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/markupannotation/setreviewstate/_index.md b/english/cpp/aspose.pdf.annotations/markupannotation/setreviewstate/_index.md new file mode 100644 index 0000000000..0a25d4597a --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/markupannotation/setreviewstate/_index.md @@ -0,0 +1,82 @@ +--- +title: Aspose::Pdf::Annotations::MarkupAnnotation::SetReviewState method +linktitle: SetReviewState +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::MarkupAnnotation::SetReviewState method. Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. Note, the state stored in other text annotation which has state and statemodel keys in C++.' +type: docs +weight: 1800 +url: /cpp/aspose.pdf.annotations/markupannotation/setreviewstate/ +--- +## MarkupAnnotation::SetReviewState(AnnotationState, System::String) method + + +Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. [Note](../../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::MarkupAnnotation::SetReviewState(AnnotationState state, System::String userName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| state | AnnotationState | Status for assignment. | +| userName | System::String | The username that appears in the comments header. The name can be the same as the name in the Title of the target annotation or different if the status is set by another user. | +## Remarks + + + + + + state + + + Status for assignment. + + + + + userName + + + The username that appears in the comments header. The name can be the same as the name in the Title of the target annotation or different if the status is set by another user. + + + +## See Also + +* Enum [AnnotationState](../../annotationstate/) +* Class [MarkupAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## MarkupAnnotation::SetReviewState(AnnotationState) method + + +Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. The state is set by the user who created the target annotation. The value is taken from the Title property of the target annotation. [Note](../../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::MarkupAnnotation::SetReviewState(AnnotationState state) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| state | AnnotationState | Status for assignment. | +## Remarks + + + + + + state + + + Status for assignment. + + + +## See Also + +* Enum [AnnotationState](../../annotationstate/) +* Class [MarkupAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/measure/_index.md b/english/cpp/aspose.pdf.annotations/measure/_index.md new file mode 100644 index 0000000000..61572b903a --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/measure/_index.md @@ -0,0 +1,45 @@ +--- +title: Aspose::Pdf::Annotations::Measure class +linktitle: Measure +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Measure class. Class which describes Measure coordinate system in C++.' +type: docs +weight: 6200 +url: /cpp/aspose.pdf.annotations/measure/ +--- +## Measure class + + +Class which describes [Measure](./) coordinate system. + +```cpp +class Measure : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_AngleFormat](./get_angleformat/)() | A number format array for measurement of angles. | +| [get_AreaFormat](./get_areaformat/)() | A number format array for measurement of area. | +| [get_DistanceFormat](./get_distanceformat/)() | A number format array for measurement of distance in any direction. | +| [get_Origin](./get_origin/)() | [Point](../../aspose.pdf/point/) that shall specify the origin of the measurement coordinate system in default user space coordinates. | +| [get_ScaleRatio](./get_scaleratio/)() | A text string expressing the scale ratio of the drawing. | +| [get_SlopeFormat](./get_slopeformat/)() | A number format array for measurement of the slope of a line. | +| [get_XFormat](./get_xformat/)() | A number format array for measurement of change along the xaxis and, if Y is not present, along the y axis as well. | +| [get_XYFactor](./get_xyfactor/)() | A factor that shall be used to convert the largest units along the y axis to the largest units along the x axis. | +| [get_YFormat](./get_yformat/)() | A number format array for measurement of change along the y axis. | +| [Measure](./measure/)(System::SharedPtr\) | Creates [Measure](./) object for measure annotations. | +| [set_AngleFormat](./set_angleformat/)(System::SharedPtr\) | A number format array for measurement of angles. | +| [set_AreaFormat](./set_areaformat/)(System::SharedPtr\) | A number format array for measurement of area. | +| [set_DistanceFormat](./set_distanceformat/)(System::SharedPtr\) | A number format array for measurement of distance in any direction. | +| [set_Origin](./set_origin/)(System::SharedPtr\) | [Point](../../aspose.pdf/point/) that shall specify the origin of the measurement coordinate system in default user space coordinates. | +| [set_ScaleRatio](./set_scaleratio/)(System::String) | A text string expressing the scale ratio of the drawing. | +| [set_SlopeFormat](./set_slopeformat/)(System::SharedPtr\) | A number format array for measurement of the slope of a line. | +| [set_XFormat](./set_xformat/)(System::SharedPtr\) | A number format array for measurement of change along the xaxis and, if Y is not present, along the y axis as well. | +| [set_XYFactor](./set_xyfactor/)(double) | A factor that shall be used to convert the largest units along the y axis to the largest units along the x axis. | +| [set_YFormat](./set_yformat/)(System::SharedPtr\) | A number format array for measurement of change along the y axis. | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/measure/get_angleformat/_index.md b/english/cpp/aspose.pdf.annotations/measure/get_angleformat/_index.md new file mode 100644 index 0000000000..c2e6b32e8d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/measure/get_angleformat/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Measure::get_AngleFormat method +linktitle: get_AngleFormat +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Measure::get_AngleFormat method. A number format array for measurement of angles in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.annotations/measure/get_angleformat/ +--- +## Measure::get_AngleFormat method + + +A number format array for measurement of angles. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::Measure::get_AngleFormat() +``` + +## See Also + +* Class [Measure](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/measure/get_areaformat/_index.md b/english/cpp/aspose.pdf.annotations/measure/get_areaformat/_index.md new file mode 100644 index 0000000000..2d60efec3c --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/measure/get_areaformat/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Measure::get_AreaFormat method +linktitle: get_AreaFormat +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Measure::get_AreaFormat method. A number format array for measurement of area in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.annotations/measure/get_areaformat/ +--- +## Measure::get_AreaFormat method + + +A number format array for measurement of area. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::Measure::get_AreaFormat() +``` + +## See Also + +* Class [Measure](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/measure/get_distanceformat/_index.md b/english/cpp/aspose.pdf.annotations/measure/get_distanceformat/_index.md new file mode 100644 index 0000000000..8e74cf2479 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/measure/get_distanceformat/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Measure::get_DistanceFormat method +linktitle: get_DistanceFormat +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Measure::get_DistanceFormat method. A number format array for measurement of distance in any direction in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.annotations/measure/get_distanceformat/ +--- +## Measure::get_DistanceFormat method + + +A number format array for measurement of distance in any direction. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::Measure::get_DistanceFormat() +``` + +## See Also + +* Class [Measure](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/measure/get_origin/_index.md b/english/cpp/aspose.pdf.annotations/measure/get_origin/_index.md new file mode 100644 index 0000000000..6309959643 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/measure/get_origin/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::Measure::get_Origin method +linktitle: get_Origin +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Measure::get_Origin method. Point that shall specify the origin of the measurement coordinate system in default user space coordinates in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.annotations/measure/get_origin/ +--- +## Measure::get_Origin method + + +[Point](../../../aspose.pdf/point/) that shall specify the origin of the measurement coordinate system in default user space coordinates. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::Measure::get_Origin() +``` + +## See Also + +* Class [Point](../../../aspose.pdf/point/) +* Class [Measure](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/measure/get_scaleratio/_index.md b/english/cpp/aspose.pdf.annotations/measure/get_scaleratio/_index.md new file mode 100644 index 0000000000..b71d55a11a --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/measure/get_scaleratio/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Measure::get_ScaleRatio method +linktitle: get_ScaleRatio +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Measure::get_ScaleRatio method. A text string expressing the scale ratio of the drawing in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/measure/get_scaleratio/ +--- +## Measure::get_ScaleRatio method + + +A text string expressing the scale ratio of the drawing. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::Measure::get_ScaleRatio() +``` + +## See Also + +* Class [Measure](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/measure/get_slopeformat/_index.md b/english/cpp/aspose.pdf.annotations/measure/get_slopeformat/_index.md new file mode 100644 index 0000000000..0d16285f70 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/measure/get_slopeformat/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Measure::get_SlopeFormat method +linktitle: get_SlopeFormat +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Measure::get_SlopeFormat method. A number format array for measurement of the slope of a line in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.annotations/measure/get_slopeformat/ +--- +## Measure::get_SlopeFormat method + + +A number format array for measurement of the slope of a line. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::Measure::get_SlopeFormat() +``` + +## See Also + +* Class [Measure](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/measure/get_xformat/_index.md b/english/cpp/aspose.pdf.annotations/measure/get_xformat/_index.md new file mode 100644 index 0000000000..6edba12417 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/measure/get_xformat/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Measure::get_XFormat method +linktitle: get_XFormat +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Measure::get_XFormat method. A number format array for measurement of change along the xaxis and, if Y is not present, along the y axis as well in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/measure/get_xformat/ +--- +## Measure::get_XFormat method + + +A number format array for measurement of change along the xaxis and, if Y is not present, along the y axis as well. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::Measure::get_XFormat() +``` + +## See Also + +* Class [Measure](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/measure/get_xyfactor/_index.md b/english/cpp/aspose.pdf.annotations/measure/get_xyfactor/_index.md new file mode 100644 index 0000000000..b83e83eb4d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/measure/get_xyfactor/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Measure::get_XYFactor method +linktitle: get_XYFactor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Measure::get_XYFactor method. A factor that shall be used to convert the largest units along the y axis to the largest units along the x axis in C++.' +type: docs +weight: 1700 +url: /cpp/aspose.pdf.annotations/measure/get_xyfactor/ +--- +## Measure::get_XYFactor method + + +A factor that shall be used to convert the largest units along the y axis to the largest units along the x axis. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Annotations::Measure::get_XYFactor() +``` + +## See Also + +* Class [Measure](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/measure/get_yformat/_index.md b/english/cpp/aspose.pdf.annotations/measure/get_yformat/_index.md new file mode 100644 index 0000000000..af8f6508f7 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/measure/get_yformat/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Measure::get_YFormat method +linktitle: get_YFormat +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Measure::get_YFormat method. A number format array for measurement of change along the y axis in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/measure/get_yformat/ +--- +## Measure::get_YFormat method + + +A number format array for measurement of change along the y axis. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::Measure::get_YFormat() +``` + +## See Also + +* Class [Measure](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/measure/measure/_index.md b/english/cpp/aspose.pdf.annotations/measure/measure/_index.md new file mode 100644 index 0000000000..98d62d8b29 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/measure/measure/_index.md @@ -0,0 +1,42 @@ +--- +title: Aspose::Pdf::Annotations::Measure::Measure constructor +linktitle: Measure +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Measure::Measure constructor. Creates Measure object for measure annotations in C++.' +type: docs +weight: 1900 +url: /cpp/aspose.pdf.annotations/measure/measure/ +--- +## Measure::Measure constructor + + +Creates [Measure](../) object for measure annotations. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::Measure::Measure(System::SharedPtr annotation) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| annotation | System::SharedPtr\ | [Annotation](../../annotation/) for which measure will be bound. | +## Remarks + + + + + + annotation + + + + Annotation for which measure will be bound. + + + +## See Also + +* Class [Annotation](../../annotation/) +* Class [Measure](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/measure/set_angleformat/_index.md b/english/cpp/aspose.pdf.annotations/measure/set_angleformat/_index.md new file mode 100644 index 0000000000..d1de829c6d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/measure/set_angleformat/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Measure::set_AngleFormat method +linktitle: set_AngleFormat +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Measure::set_AngleFormat method. A number format array for measurement of angles in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.annotations/measure/set_angleformat/ +--- +## Measure::set_AngleFormat method + + +A number format array for measurement of angles. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::Measure::set_AngleFormat(System::SharedPtr value) +``` + +## See Also + +* Class [Measure](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/measure/set_areaformat/_index.md b/english/cpp/aspose.pdf.annotations/measure/set_areaformat/_index.md new file mode 100644 index 0000000000..6c3b8d0b64 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/measure/set_areaformat/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Measure::set_AreaFormat method +linktitle: set_AreaFormat +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Measure::set_AreaFormat method. A number format array for measurement of area in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.annotations/measure/set_areaformat/ +--- +## Measure::set_AreaFormat method + + +A number format array for measurement of area. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::Measure::set_AreaFormat(System::SharedPtr value) +``` + +## See Also + +* Class [Measure](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/measure/set_distanceformat/_index.md b/english/cpp/aspose.pdf.annotations/measure/set_distanceformat/_index.md new file mode 100644 index 0000000000..71dcbfb3d3 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/measure/set_distanceformat/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Measure::set_DistanceFormat method +linktitle: set_DistanceFormat +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Measure::set_DistanceFormat method. A number format array for measurement of distance in any direction in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.annotations/measure/set_distanceformat/ +--- +## Measure::set_DistanceFormat method + + +A number format array for measurement of distance in any direction. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::Measure::set_DistanceFormat(System::SharedPtr value) +``` + +## See Also + +* Class [Measure](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/measure/set_origin/_index.md b/english/cpp/aspose.pdf.annotations/measure/set_origin/_index.md new file mode 100644 index 0000000000..faa073c8f3 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/measure/set_origin/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::Measure::set_Origin method +linktitle: set_Origin +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Measure::set_Origin method. Point that shall specify the origin of the measurement coordinate system in default user space coordinates in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf.annotations/measure/set_origin/ +--- +## Measure::set_Origin method + + +[Point](../../../aspose.pdf/point/) that shall specify the origin of the measurement coordinate system in default user space coordinates. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::Measure::set_Origin(System::SharedPtr value) +``` + +## See Also + +* Class [Point](../../../aspose.pdf/point/) +* Class [Measure](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/measure/set_scaleratio/_index.md b/english/cpp/aspose.pdf.annotations/measure/set_scaleratio/_index.md new file mode 100644 index 0000000000..8559d03668 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/measure/set_scaleratio/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Measure::set_ScaleRatio method +linktitle: set_ScaleRatio +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Measure::set_ScaleRatio method. A text string expressing the scale ratio of the drawing in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/measure/set_scaleratio/ +--- +## Measure::set_ScaleRatio method + + +A text string expressing the scale ratio of the drawing. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::Measure::set_ScaleRatio(System::String value) +``` + +## See Also + +* Class [Measure](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/measure/set_slopeformat/_index.md b/english/cpp/aspose.pdf.annotations/measure/set_slopeformat/_index.md new file mode 100644 index 0000000000..35d87ca711 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/measure/set_slopeformat/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Measure::set_SlopeFormat method +linktitle: set_SlopeFormat +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Measure::set_SlopeFormat method. A number format array for measurement of the slope of a line in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.annotations/measure/set_slopeformat/ +--- +## Measure::set_SlopeFormat method + + +A number format array for measurement of the slope of a line. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::Measure::set_SlopeFormat(System::SharedPtr value) +``` + +## See Also + +* Class [Measure](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/measure/set_xformat/_index.md b/english/cpp/aspose.pdf.annotations/measure/set_xformat/_index.md new file mode 100644 index 0000000000..bf11f24938 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/measure/set_xformat/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Measure::set_XFormat method +linktitle: set_XFormat +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Measure::set_XFormat method. A number format array for measurement of change along the xaxis and, if Y is not present, along the y axis as well in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/measure/set_xformat/ +--- +## Measure::set_XFormat method + + +A number format array for measurement of change along the xaxis and, if Y is not present, along the y axis as well. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::Measure::set_XFormat(System::SharedPtr value) +``` + +## See Also + +* Class [Measure](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/measure/set_xyfactor/_index.md b/english/cpp/aspose.pdf.annotations/measure/set_xyfactor/_index.md new file mode 100644 index 0000000000..3784bffd25 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/measure/set_xyfactor/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Measure::set_XYFactor method +linktitle: set_XYFactor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Measure::set_XYFactor method. A factor that shall be used to convert the largest units along the y axis to the largest units along the x axis in C++.' +type: docs +weight: 1800 +url: /cpp/aspose.pdf.annotations/measure/set_xyfactor/ +--- +## Measure::set_XYFactor method + + +A factor that shall be used to convert the largest units along the y axis to the largest units along the x axis. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::Measure::set_XYFactor(double value) +``` + +## See Also + +* Class [Measure](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/measure/set_yformat/_index.md b/english/cpp/aspose.pdf.annotations/measure/set_yformat/_index.md new file mode 100644 index 0000000000..12c44fbb50 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/measure/set_yformat/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Measure::set_YFormat method +linktitle: set_YFormat +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Measure::set_YFormat method. A number format array for measurement of change along the y axis in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/measure/set_yformat/ +--- +## Measure::set_YFormat method + + +A number format array for measurement of change along the y axis. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::Measure::set_YFormat(System::SharedPtr value) +``` + +## See Also + +* Class [Measure](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/mediaclip/_index.md b/english/cpp/aspose.pdf.annotations/mediaclip/_index.md new file mode 100644 index 0000000000..9f0740df08 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/mediaclip/_index.md @@ -0,0 +1,22 @@ +--- +title: Aspose::Pdf::Annotations::MediaClip class +linktitle: MediaClip +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::MediaClip class. Class describes media clip object of rendition in C++.' +type: docs +weight: 6300 +url: /cpp/aspose.pdf.annotations/mediaclip/ +--- +## MediaClip class + + +Class describes media clip object of rendition. + +```cpp +class MediaClip : public System::Object +``` + +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/mediaclipdata/_index.md b/english/cpp/aspose.pdf.annotations/mediaclipdata/_index.md new file mode 100644 index 0000000000..18bec06f36 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/mediaclipdata/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::MediaClipData class +linktitle: MediaClipData +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::MediaClipData class. Class describes media clip data in C++.' +type: docs +weight: 6400 +url: /cpp/aspose.pdf.annotations/mediaclipdata/ +--- +## MediaClipData class + + +Class describes media clip data. + +```cpp +class MediaClipData : public Aspose::Pdf::Annotations::MediaClip +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_Data](./get_data/)() | Return file specification which contains actual media data . | +## See Also + +* Class [MediaClip](../mediaclip/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/mediaclipdata/get_data/_index.md b/english/cpp/aspose.pdf.annotations/mediaclipdata/get_data/_index.md new file mode 100644 index 0000000000..da802dc11f --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/mediaclipdata/get_data/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::MediaClipData::get_Data method +linktitle: get_Data +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::MediaClipData::get_Data method. Return file specification which contains actual media data in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/mediaclipdata/get_data/ +--- +## MediaClipData::get_Data method + + +Return file specification which contains actual media data . + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::MediaClipData::get_Data() +``` + +## See Also + +* Class [FileSpecification](../../../aspose.pdf/filespecification/) +* Class [MediaClipData](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/mediaclipsection/_index.md b/english/cpp/aspose.pdf.annotations/mediaclipsection/_index.md new file mode 100644 index 0000000000..c6d0028347 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/mediaclipsection/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::MediaClipSection class +linktitle: MediaClipSection +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::MediaClipSection class. This class descibes Media clip section in C++.' +type: docs +weight: 6500 +url: /cpp/aspose.pdf.annotations/mediaclipsection/ +--- +## MediaClipSection class + + +This class descibes Media clip section. + +```cpp +class MediaClipSection : public Aspose::Pdf::Annotations::MediaClip +``` + +## See Also + +* Class [MediaClip](../mediaclip/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/mediarendition/_index.md b/english/cpp/aspose.pdf.annotations/mediarendition/_index.md new file mode 100644 index 0000000000..4d6b73bc84 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/mediarendition/_index.md @@ -0,0 +1,31 @@ +--- +title: Aspose::Pdf::Annotations::MediaRendition class +linktitle: MediaRendition +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::MediaRendition class. Class describes media rendition in C++.' +type: docs +weight: 6600 +url: /cpp/aspose.pdf.annotations/mediarendition/ +--- +## MediaRendition class + + +Class describes media rendition. + +```cpp +class MediaRendition : public Aspose::Pdf::Annotations::Rendition +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_MediaClip](./get_mediaclip/)() | Gets media clip obkects associated with rendition. | +| [get_Name](../rendition/get_name/)() | [Text](../../aspose.pdf.text/) string specifying the name of the rendition for use in a user interface and for name tree lookup by JavaScript actions. | +| [get_RenditionType](../rendition/get_renditiontype/)() | Gets rendition type. | +| [set_Name](../rendition/set_name/)(System::String) | [Text](../../aspose.pdf.text/) string specifying the name of the rendition for use in a user interface and for name tree lookup by JavaScript actions. | +## See Also + +* Class [Rendition](../rendition/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/mediarendition/get_mediaclip/_index.md b/english/cpp/aspose.pdf.annotations/mediarendition/get_mediaclip/_index.md new file mode 100644 index 0000000000..2b8992b892 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/mediarendition/get_mediaclip/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::MediaRendition::get_MediaClip method +linktitle: get_MediaClip +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::MediaRendition::get_MediaClip method. Gets media clip obkects associated with rendition in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/mediarendition/get_mediaclip/ +--- +## MediaRendition::get_MediaClip method + + +Gets media clip obkects associated with rendition. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::MediaRendition::get_MediaClip() +``` + +## See Also + +* Class [MediaClip](../../mediaclip/) +* Class [MediaRendition](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/movieannotation/_index.md b/english/cpp/aspose.pdf.annotations/movieannotation/_index.md new file mode 100644 index 0000000000..5899a8a1da --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/movieannotation/_index.md @@ -0,0 +1,99 @@ +--- +title: Aspose::Pdf::Annotations::MovieAnnotation class +linktitle: MovieAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::MovieAnnotation class. Represents a movie annotation that contains animated graphics and sound to be presented on the computer screen and through the speakers. When the annotation is activated, the movie is played in C++.' +type: docs +weight: 6700 +url: /cpp/aspose.pdf.annotations/movieannotation/ +--- +## MovieAnnotation class + + +Represents a movie annotation that contains animated graphics and sound to be presented on the computer screen and through the speakers. When the annotation is activated, the movie is played. + +```cpp +class MovieAnnotation : public Aspose::Pdf::Annotations::Annotation, + public Aspose::Pdf::Annotations::Annotation::ITitledAnnotation +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Accept](./accept/)(System::SharedPtr\) override | Accepts visitor object to process the annotation. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| virtual [ChangeAfterResize](../annotation/changeafterresize/)(System::SharedPtr\) | Update parameters and appearance, according to the matrix transform. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [Flatten](../annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](../annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../annotation/get_alignment/)() | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [get_AnnotationType](./get_annotationtype/)() override | Gets type of annotation. | +| [get_Appearance](../annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Aspect](./get_aspect/)() | Gets the width and height of the movie's bounding box, in pixels. | +| [get_Border](../annotation/get_border/)() const | Gets annotation border characteristics. [Border](../border/) | +| [get_Characteristics](../annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../annotation/get_color/)() | Gets annotation color. | +| [get_Contents](../annotation/get_contents/)() | Gets annotation text. | +| [get_File](./get_file/)() | Gets a file specification identifying a self-describing movie file. | +| [get_Flags](../annotation/get_flags/)() | Flags of the annotation. | +| [get_FullName](../annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../annotation/get_height/)() | Gets height of the annotation. | +| [get_HorizontalAlignment](../annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| [get_Modified](../annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Name](../annotation/get_name/)() | Gets annotation name on the page. | +| virtual [get_PageIndex](../annotation/get_pageindex/)() | Gets index of page which contains annotation. | +| [get_Poster](./get_poster/)() | Gets a flag or stream specifying whether and how a poster image representing the movie shall be displayed. If true, the poster image shall be retrieved from the movie file; if it is false, no poster shall be displayed. | +| virtual [get_Rect](../annotation/get_rect/)() | Gets annotation rectangle. | +| [get_Rotate](./get_rotate/)() | Gets the number of degrees by which the movie shall be rotated clockwise relative to the page. The value shall be a multiple of 90. | +| [get_States](../annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_TextHorizontalAlignment](../annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| [get_Title](./get_title/)() override | Gets the title of the movie annotation. | +| static [get_UpdateAppearanceOnConvert](../annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetRectangle](../annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| [MovieAnnotation](./movieannotation/)(System::SharedPtr\, System::String) | Constructor for using with Generator. | +| [MovieAnnotation](./movieannotation/)(System::SharedPtr\, System::SharedPtr\, System::String) | Creates new Sound annotation on the specified page. | +| virtual [set_ActiveState](../annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../annotation/set_alignment/)(TextAlignment) | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_Aspect](./set_aspect/)(System::SharedPtr\) | Sets the width and height of the movie's bounding box, in pixels. | +| [set_Border](../annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../border/) | +| [set_Color](../annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](../annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_File](./set_file/)(System::SharedPtr\) | Sets a file specification identifying a self-describing movie file. | +| [set_Flags](../annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| virtual [set_Height](../annotation/set_height/)(double) | Sets height of the annotation. | +| [set_HorizontalAlignment](../annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| [set_Modified](../annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Name](../annotation/set_name/)(System::String) | Sets annotation name on the page. | +| [set_Poster](./set_poster/)(bool) | Sets a flag or stream specifying whether and how a poster image representing the movie shall be displayed. If true, the poster image shall be retrieved from the movie file; if it is false, no poster shall be displayed. | +| virtual [set_Rect](../annotation/set_rect/)(System::SharedPtr\) | Sets annotation rectangle. | +| [set_Rotate](./set_rotate/)(int32_t) | Sets the number of degrees by which the movie shall be rotated clockwise relative to the page. The value shall be a multiple of 90. | +| [set_TextHorizontalAlignment](../annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| [set_Title](./set_title/)(System::String) override | Sets the title of the movie annotation. | +| static [set_UpdateAppearanceOnConvert](../annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +## See Also + +* Class [Annotation](../annotation/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/movieannotation/accept/_index.md b/english/cpp/aspose.pdf.annotations/movieannotation/accept/_index.md new file mode 100644 index 0000000000..feedcdc472 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/movieannotation/accept/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Annotations::MovieAnnotation::Accept method +linktitle: Accept +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::MovieAnnotation::Accept method. Accepts visitor object to process the annotation in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.annotations/movieannotation/accept/ +--- +## MovieAnnotation::Accept method + + +Accepts visitor object to process the annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::MovieAnnotation::Accept(System::SharedPtr visitor) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| visitor | System::SharedPtr\ | Visitor object. | +## Remarks + + + + + + visitor + + + Visitor object. + + + +## See Also + +* Class [AnnotationSelector](../../annotationselector/) +* Class [MovieAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/movieannotation/get_annotationtype/_index.md b/english/cpp/aspose.pdf.annotations/movieannotation/get_annotationtype/_index.md new file mode 100644 index 0000000000..171ecedfc4 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/movieannotation/get_annotationtype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::MovieAnnotation::get_AnnotationType method +linktitle: get_AnnotationType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::MovieAnnotation::get_AnnotationType method. Gets type of annotation in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.annotations/movieannotation/get_annotationtype/ +--- +## MovieAnnotation::get_AnnotationType method + + +Gets type of annotation. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::AnnotationType Aspose::Pdf::Annotations::MovieAnnotation::get_AnnotationType() override +``` + +## See Also + +* Enum [AnnotationType](../../annotationtype/) +* Class [MovieAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/movieannotation/get_aspect/_index.md b/english/cpp/aspose.pdf.annotations/movieannotation/get_aspect/_index.md new file mode 100644 index 0000000000..cfc82588cd --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/movieannotation/get_aspect/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::MovieAnnotation::get_Aspect method +linktitle: get_Aspect +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::MovieAnnotation::get_Aspect method. Gets the width and height of the movie''s bounding box, in pixels in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.annotations/movieannotation/get_aspect/ +--- +## MovieAnnotation::get_Aspect method + + +Gets the width and height of the movie's bounding box, in pixels. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::MovieAnnotation::get_Aspect() +``` + +## See Also + +* Class [Point](../../../aspose.pdf/point/) +* Class [MovieAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/movieannotation/get_file/_index.md b/english/cpp/aspose.pdf.annotations/movieannotation/get_file/_index.md new file mode 100644 index 0000000000..07adf638ba --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/movieannotation/get_file/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::MovieAnnotation::get_File method +linktitle: get_File +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::MovieAnnotation::get_File method. Gets a file specification identifying a self-describing movie file in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/movieannotation/get_file/ +--- +## MovieAnnotation::get_File method + + +Gets a file specification identifying a self-describing movie file. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::MovieAnnotation::get_File() +``` + +## See Also + +* Class [FileSpecification](../../../aspose.pdf/filespecification/) +* Class [MovieAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/movieannotation/get_poster/_index.md b/english/cpp/aspose.pdf.annotations/movieannotation/get_poster/_index.md new file mode 100644 index 0000000000..20d0d9b925 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/movieannotation/get_poster/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::MovieAnnotation::get_Poster method +linktitle: get_Poster +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::MovieAnnotation::get_Poster method. Gets a flag or stream specifying whether and how a poster image representing the movie shall be displayed. If true, the poster image shall be retrieved from the movie file; if it is false, no poster shall be displayed in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/movieannotation/get_poster/ +--- +## MovieAnnotation::get_Poster method + + +Gets a flag or stream specifying whether and how a poster image representing the movie shall be displayed. If true, the poster image shall be retrieved from the movie file; if it is false, no poster shall be displayed. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Annotations::MovieAnnotation::get_Poster() +``` + +## See Also + +* Class [MovieAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/movieannotation/get_rotate/_index.md b/english/cpp/aspose.pdf.annotations/movieannotation/get_rotate/_index.md new file mode 100644 index 0000000000..b2173b3ca3 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/movieannotation/get_rotate/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::MovieAnnotation::get_Rotate method +linktitle: get_Rotate +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::MovieAnnotation::get_Rotate method. Gets the number of degrees by which the movie shall be rotated clockwise relative to the page. The value shall be a multiple of 90 in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.annotations/movieannotation/get_rotate/ +--- +## MovieAnnotation::get_Rotate method + + +Gets the number of degrees by which the movie shall be rotated clockwise relative to the page. The value shall be a multiple of 90. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Annotations::MovieAnnotation::get_Rotate() +``` + +## See Also + +* Class [MovieAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/movieannotation/get_title/_index.md b/english/cpp/aspose.pdf.annotations/movieannotation/get_title/_index.md new file mode 100644 index 0000000000..378b54b391 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/movieannotation/get_title/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::MovieAnnotation::get_Title method +linktitle: get_Title +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::MovieAnnotation::get_Title method. Gets the title of the movie annotation in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/movieannotation/get_title/ +--- +## MovieAnnotation::get_Title method + + +Gets the title of the movie annotation. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::MovieAnnotation::get_Title() override +``` + +## See Also + +* Class [MovieAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/movieannotation/movieannotation/_index.md b/english/cpp/aspose.pdf.annotations/movieannotation/movieannotation/_index.md new file mode 100644 index 0000000000..5a08e83044 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/movieannotation/movieannotation/_index.md @@ -0,0 +1,102 @@ +--- +title: Aspose::Pdf::Annotations::MovieAnnotation::MovieAnnotation constructor +linktitle: MovieAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::MovieAnnotation::MovieAnnotation constructor. Constructor for using with Generator in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.annotations/movieannotation/movieannotation/ +--- +## MovieAnnotation::MovieAnnotation(System::SharedPtr\, System::String) constructor + + +Constructor for using with Generator. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::MovieAnnotation::MovieAnnotation(System::SharedPtr document, System::String movieFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | [Document](../../../aspose.pdf/document/) where movie annotation will be created. | +| movieFile | System::String | Name of movie file. | +## Remarks + + + + + + document + + + + Document where movie annotation will be created. + + + + + movieFile + + + Name of movie file. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [MovieAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## MovieAnnotation::MovieAnnotation(System::SharedPtr\, System::SharedPtr\, System::String) constructor + + +Creates new Sound annotation on the specified page. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::MovieAnnotation::MovieAnnotation(System::SharedPtr page, System::SharedPtr rect, System::String movieFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The document's page where annotation should be created. | +| rect | System::SharedPtr\ | The annotation rectangle, defining the location of the annotation on the page. | +| movieFile | System::String | A movie file to be played when the annotation is activated. | +## Remarks + + + + + + page + + + The document's page where annotation should be created. + + + + + rect + + + The annotation rectangle, defining the location of the annotation on the page. + + + + + movieFile + + + A movie file to be played when the annotation is activated. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [MovieAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/movieannotation/set_aspect/_index.md b/english/cpp/aspose.pdf.annotations/movieannotation/set_aspect/_index.md new file mode 100644 index 0000000000..3c41af7fb8 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/movieannotation/set_aspect/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::MovieAnnotation::set_Aspect method +linktitle: set_Aspect +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::MovieAnnotation::set_Aspect method. Sets the width and height of the movie''s bounding box, in pixels in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.annotations/movieannotation/set_aspect/ +--- +## MovieAnnotation::set_Aspect method + + +Sets the width and height of the movie's bounding box, in pixels. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::MovieAnnotation::set_Aspect(System::SharedPtr value) +``` + +## See Also + +* Class [Point](../../../aspose.pdf/point/) +* Class [MovieAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/movieannotation/set_file/_index.md b/english/cpp/aspose.pdf.annotations/movieannotation/set_file/_index.md new file mode 100644 index 0000000000..8f5e966857 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/movieannotation/set_file/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::MovieAnnotation::set_File method +linktitle: set_File +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::MovieAnnotation::set_File method. Sets a file specification identifying a self-describing movie file in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/movieannotation/set_file/ +--- +## MovieAnnotation::set_File method + + +Sets a file specification identifying a self-describing movie file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::MovieAnnotation::set_File(System::SharedPtr value) +``` + +## See Also + +* Class [FileSpecification](../../../aspose.pdf/filespecification/) +* Class [MovieAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/movieannotation/set_poster/_index.md b/english/cpp/aspose.pdf.annotations/movieannotation/set_poster/_index.md new file mode 100644 index 0000000000..da7a43f29f --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/movieannotation/set_poster/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::MovieAnnotation::set_Poster method +linktitle: set_Poster +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::MovieAnnotation::set_Poster method. Sets a flag or stream specifying whether and how a poster image representing the movie shall be displayed. If true, the poster image shall be retrieved from the movie file; if it is false, no poster shall be displayed in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/movieannotation/set_poster/ +--- +## MovieAnnotation::set_Poster method + + +Sets a flag or stream specifying whether and how a poster image representing the movie shall be displayed. If true, the poster image shall be retrieved from the movie file; if it is false, no poster shall be displayed. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::MovieAnnotation::set_Poster(bool value) +``` + +## See Also + +* Class [MovieAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/movieannotation/set_rotate/_index.md b/english/cpp/aspose.pdf.annotations/movieannotation/set_rotate/_index.md new file mode 100644 index 0000000000..df34e42851 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/movieannotation/set_rotate/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::MovieAnnotation::set_Rotate method +linktitle: set_Rotate +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::MovieAnnotation::set_Rotate method. Sets the number of degrees by which the movie shall be rotated clockwise relative to the page. The value shall be a multiple of 90 in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.annotations/movieannotation/set_rotate/ +--- +## MovieAnnotation::set_Rotate method + + +Sets the number of degrees by which the movie shall be rotated clockwise relative to the page. The value shall be a multiple of 90. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::MovieAnnotation::set_Rotate(int32_t value) +``` + +## See Also + +* Class [MovieAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/movieannotation/set_title/_index.md b/english/cpp/aspose.pdf.annotations/movieannotation/set_title/_index.md new file mode 100644 index 0000000000..afa768e769 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/movieannotation/set_title/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::MovieAnnotation::set_Title method +linktitle: set_Title +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::MovieAnnotation::set_Title method. Sets the title of the movie annotation in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/movieannotation/set_title/ +--- +## MovieAnnotation::set_Title method + + +Sets the title of the movie annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::MovieAnnotation::set_Title(System::String value) override +``` + +## See Also + +* Class [MovieAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/namedaction/_index.md b/english/cpp/aspose.pdf.annotations/namedaction/_index.md new file mode 100644 index 0000000000..d775355a86 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/namedaction/_index.md @@ -0,0 +1,33 @@ +--- +title: Aspose::Pdf::Annotations::NamedAction class +linktitle: NamedAction +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::NamedAction class. Represents named actions that PDF viewer applications are expected to support in C++.' +type: docs +weight: 6800 +url: /cpp/aspose.pdf.annotations/namedaction/ +--- +## NamedAction class + + +Represents named actions that PDF viewer applications are expected to support. + +```cpp +class NamedAction : public Aspose::Pdf::Annotations::PdfAction +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_Name](./get_name/)() | Gets the action to be performed. | +| [get_Next](../pdfaction/get_next/)() | Next actions in sequence. | +| [GetECMAScriptString](../pdfaction/getecmascriptstring/)() | Gets string for ECMAScript Action. | +| [NamedAction](./namedaction/)(PredefinedAction) | Constructor for Named Action class. | +| [set_Name](./set_name/)(System::String) | Sets the action to be performed. | +| [ToString](../pdfaction/tostring/)() const override | Returns string representation of [ExplicitDestination](../explicitdestination/) object. | +## See Also + +* Class [PdfAction](../pdfaction/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/namedaction/get_name/_index.md b/english/cpp/aspose.pdf.annotations/namedaction/get_name/_index.md new file mode 100644 index 0000000000..3dc07ebab9 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/namedaction/get_name/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::NamedAction::get_Name method +linktitle: get_Name +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::NamedAction::get_Name method. Gets the action to be performed in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/namedaction/get_name/ +--- +## NamedAction::get_Name method + + +Gets the action to be performed. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::NamedAction::get_Name() +``` + +## See Also + +* Class [NamedAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/namedaction/namedaction/_index.md b/english/cpp/aspose.pdf.annotations/namedaction/namedaction/_index.md new file mode 100644 index 0000000000..8532657a82 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/namedaction/namedaction/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Annotations::NamedAction::NamedAction constructor +linktitle: NamedAction +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::NamedAction::NamedAction constructor. Constructor for Named Action class in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/namedaction/namedaction/ +--- +## NamedAction::NamedAction constructor + + +Constructor for Named Action class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::NamedAction::NamedAction(PredefinedAction action) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| action | PredefinedAction | Action for which this object is created. | +## Remarks + + + + + + action + + + Action for which this object is created. + + + +## See Also + +* Enum [PredefinedAction](../../predefinedaction/) +* Class [NamedAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/namedaction/set_name/_index.md b/english/cpp/aspose.pdf.annotations/namedaction/set_name/_index.md new file mode 100644 index 0000000000..15956f0fe8 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/namedaction/set_name/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::NamedAction::set_Name method +linktitle: set_Name +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::NamedAction::set_Name method. Sets the action to be performed in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/namedaction/set_name/ +--- +## NamedAction::set_Name method + + +Sets the action to be performed. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::NamedAction::set_Name(System::String value) +``` + +## See Also + +* Class [NamedAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/nameddestination/_index.md b/english/cpp/aspose.pdf.annotations/nameddestination/_index.md new file mode 100644 index 0000000000..6db5f520d4 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/nameddestination/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Annotations::NamedDestination class +linktitle: NamedDestination +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::NamedDestination class. Instead of being defined directly with the explicit syntax, a destination may be referred to indirectly by means of a name object or a byte string in C++.' +type: docs +weight: 6900 +url: /cpp/aspose.pdf.annotations/nameddestination/ +--- +## NamedDestination class + + +Instead of being defined directly with the explicit syntax, a destination may be referred to indirectly by means of a name object or a byte string. + +```cpp +class NamedDestination : public Aspose::Pdf::Annotations::IAppointment +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_Name](./get_name/)() | Gets the name of named destination. | +| [NamedDestination](./nameddestination/)(System::SharedPtr\, System::String) | Create named destination. | +| [ToString](./tostring/)() const override | Converts destination to string value. | +## See Also + +* Class [IAppointment](../iappointment/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/nameddestination/get_name/_index.md b/english/cpp/aspose.pdf.annotations/nameddestination/get_name/_index.md new file mode 100644 index 0000000000..5a549911b8 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/nameddestination/get_name/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::NamedDestination::get_Name method +linktitle: get_Name +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::NamedDestination::get_Name method. Gets the name of named destination in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/nameddestination/get_name/ +--- +## NamedDestination::get_Name method + + +Gets the name of named destination. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::NamedDestination::get_Name() +``` + +## See Also + +* Class [NamedDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/nameddestination/nameddestination/_index.md b/english/cpp/aspose.pdf.annotations/nameddestination/nameddestination/_index.md new file mode 100644 index 0000000000..e11cca65e0 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/nameddestination/nameddestination/_index.md @@ -0,0 +1,51 @@ +--- +title: Aspose::Pdf::Annotations::NamedDestination::NamedDestination constructor +linktitle: NamedDestination +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::NamedDestination::NamedDestination constructor. Create named destination in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/nameddestination/nameddestination/ +--- +## NamedDestination::NamedDestination constructor + + +Create named destination. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::NamedDestination::NamedDestination(System::SharedPtr doc, System::String name) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| doc | System::SharedPtr\ | [Document](../../../aspose.pdf/document/) where named destination should be created. | +| name | System::String | Name to which destination refers. | +## Remarks + + + + + + doc + + + + Document where named destination should be created. + + + + + name + + + Name to which destination refers. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [NamedDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/nameddestination/tostring/_index.md b/english/cpp/aspose.pdf.annotations/nameddestination/tostring/_index.md new file mode 100644 index 0000000000..ca748f7083 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/nameddestination/tostring/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::NamedDestination::ToString method +linktitle: ToString +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::NamedDestination::ToString method. Converts destination to string value in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/nameddestination/tostring/ +--- +## NamedDestination::ToString method + + +Converts destination to string value. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::NamedDestination::ToString() const override +``` + + +### ReturnValue + +String value. + +## See Also + +* Class [NamedDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pageinformationannotation/_index.md b/english/cpp/aspose.pdf.annotations/pageinformationannotation/_index.md new file mode 100644 index 0000000000..becb44b364 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pageinformationannotation/_index.md @@ -0,0 +1,93 @@ +--- +title: Aspose::Pdf::Annotations::PageInformationAnnotation class +linktitle: PageInformationAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PageInformationAnnotation class. Represents a Page Information annotation in a PDF document. This annotation contains the file name, page number, and the date and time of the annotation creation in C++.' +type: docs +weight: 7000 +url: /cpp/aspose.pdf.annotations/pageinformationannotation/ +--- +## PageInformationAnnotation class + + +Represents a [Page](../../aspose.pdf/page/) Information annotation in a PDF document. This annotation contains the file name, page number, and the date and time of the annotation creation. + +```cpp +class PageInformationAnnotation : public Aspose::Pdf::Annotations::PrinterMarkAnnotation +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Accept](./accept/)(System::SharedPtr\) override | Accepts visitor for annotation processing. | +| static [AddPrinterMarks](../printermarkannotation/addprintermarks/)(System::SharedPtr\, PrinterMarksKind) | Adds printer's marks to all pages in the specified document. | +| static [AddPrinterMarks](../printermarkannotation/addprintermarks/)(System::SharedPtr\, PrinterMarksKind) | Adds printer's marks to the specified page. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| virtual [ChangeAfterResize](../annotation/changeafterresize/)(System::SharedPtr\) | Update parameters and appearance, according to the matrix transform. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [Flatten](../annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](../annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../annotation/get_alignment/)() | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [get_AnnotationType](./get_annotationtype/)() override | Gets type of annotation. | +| [get_Appearance](../annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../annotation/get_border/)() const | Gets annotation border characteristics. [Border](../border/) | +| [get_Characteristics](../annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../annotation/get_color/)() | Gets annotation color. | +| [get_Contents](../annotation/get_contents/)() | Gets annotation text. | +| [get_Flags](../annotation/get_flags/)() | Flags of the annotation. | +| [get_FullName](../annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../annotation/get_height/)() | Gets height of the annotation. | +| [get_HorizontalAlignment](../annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| [get_Modified](../annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Name](../annotation/get_name/)() | Gets annotation name on the page. | +| virtual [get_PageIndex](../annotation/get_pageindex/)() | Gets index of page which contains annotation. | +| virtual [get_Rect](../annotation/get_rect/)() | Gets annotation rectangle. | +| [get_States](../annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_TextHorizontalAlignment](../annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| static [get_UpdateAppearanceOnConvert](../annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetRectangle](../annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| [PageInformationAnnotation](./pageinformationannotation/)(System::SharedPtr\, System::SharedPtr\) | Initializes a new instance of the [PageInformationAnnotation](./) class on the given page in the given location. | +| virtual [set_ActiveState](../annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../annotation/set_alignment/)(TextAlignment) | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_Border](../annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../border/) | +| [set_Color](../annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](../annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_Flags](../annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| virtual [set_Height](../annotation/set_height/)(double) | Sets height of the annotation. | +| [set_HorizontalAlignment](../annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| [set_Modified](../annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Name](../annotation/set_name/)(System::String) | Sets annotation name on the page. | +| virtual [set_Rect](../annotation/set_rect/)(System::SharedPtr\) | Sets annotation rectangle. | +| [set_TextHorizontalAlignment](../annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| static [set_UpdateAppearanceOnConvert](../annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +## Remarks + + +This class is primarily used to add metadata to a specific page in the PDF document, which can be useful for tracking and referencing purposes. For instance, it can be used to mark pages during the printing process or to provide additional information about the page when viewing the document. +## See Also + +* Class [PrinterMarkAnnotation](../printermarkannotation/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/pageinformationannotation/accept/_index.md b/english/cpp/aspose.pdf.annotations/pageinformationannotation/accept/_index.md new file mode 100644 index 0000000000..ac57875277 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pageinformationannotation/accept/_index.md @@ -0,0 +1,42 @@ +--- +title: Aspose::Pdf::Annotations::PageInformationAnnotation::Accept method +linktitle: Accept +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PageInformationAnnotation::Accept method. Accepts visitor for annotation processing in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/pageinformationannotation/accept/ +--- +## PageInformationAnnotation::Accept method + + +Accepts visitor for annotation processing. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PageInformationAnnotation::Accept(System::SharedPtr visitor) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| visitor | System::SharedPtr\ | [AnnotationSelector](../../annotationselector/) object. | +## Remarks + + + + + + visitor + + + + AnnotationSelector object. + + + +## See Also + +* Class [AnnotationSelector](../../annotationselector/) +* Class [PageInformationAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pageinformationannotation/get_annotationtype/_index.md b/english/cpp/aspose.pdf.annotations/pageinformationannotation/get_annotationtype/_index.md new file mode 100644 index 0000000000..9fabcde97d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pageinformationannotation/get_annotationtype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::PageInformationAnnotation::get_AnnotationType method +linktitle: get_AnnotationType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PageInformationAnnotation::get_AnnotationType method. Gets type of annotation in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/pageinformationannotation/get_annotationtype/ +--- +## PageInformationAnnotation::get_AnnotationType method + + +Gets type of annotation. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::AnnotationType Aspose::Pdf::Annotations::PageInformationAnnotation::get_AnnotationType() override +``` + +## See Also + +* Enum [AnnotationType](../../annotationtype/) +* Class [PageInformationAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pageinformationannotation/pageinformationannotation/_index.md b/english/cpp/aspose.pdf.annotations/pageinformationannotation/pageinformationannotation/_index.md new file mode 100644 index 0000000000..c85f027857 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pageinformationannotation/pageinformationannotation/_index.md @@ -0,0 +1,51 @@ +--- +title: Aspose::Pdf::Annotations::PageInformationAnnotation::PageInformationAnnotation constructor +linktitle: PageInformationAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PageInformationAnnotation::PageInformationAnnotation constructor. Initializes a new instance of the PageInformationAnnotation class on the given page in the given location in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/pageinformationannotation/pageinformationannotation/ +--- +## PageInformationAnnotation::PageInformationAnnotation constructor + + +Initializes a new instance of the [PageInformationAnnotation](../) class on the given page in the given location. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::PageInformationAnnotation::PageInformationAnnotation(System::SharedPtr page, System::SharedPtr rect) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The page with which the annotation will be associated. | +| rect | System::SharedPtr\ | The annotation rectangle, defining the location of the annotation on the page. | +## Remarks + + + + + + page + + + The page with which the annotation will be associated. + + + + + rect + + + The annotation rectangle, defining the location of the annotation on the page. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [PageInformationAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dactivation/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dactivation/_index.md new file mode 100644 index 0000000000..19cef717b3 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dactivation/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DActivation enum +linktitle: PDF3DActivation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DActivation enum. Enum PDF3DActivation: set of 3D annotation activation mode in C++.' +type: docs +weight: 13500 +url: /cpp/aspose.pdf.annotations/pdf3dactivation/ +--- +## PDF3DActivation enum + + +Enum PDF3DActivation: set of 3D annotation activation mode. + +```cpp +enum class PDF3DActivation +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| activeWhenOpen | 0 | The active when open. | +| activeWhenVisible | 1 | The active when visible. | +| activatedUserOrScriptAction | 2 | The activated by user or script action. | + +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dannotation/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dannotation/_index.md new file mode 100644 index 0000000000..ce755f3d9e --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dannotation/_index.md @@ -0,0 +1,100 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DAnnotation class +linktitle: PDF3DAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DAnnotation class. Class PDF3DAnnotation. This class cannot be inherited in C++.' +type: docs +weight: 7100 +url: /cpp/aspose.pdf.annotations/pdf3dannotation/ +--- +## PDF3DAnnotation class + + +Class [PDF3DAnnotation](./). This class cannot be inherited. + +```cpp +class PDF3DAnnotation : public Aspose::Pdf::Annotations::Annotation +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Accept](./accept/)(System::SharedPtr\) override | Accepts visitor for annotation processing. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| virtual [ChangeAfterResize](../annotation/changeafterresize/)(System::SharedPtr\) | Update parameters and appearance, according to the matrix transform. | +| [ClearImagePreview](./clearimagepreview/)() | Clears the image preview. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [Flatten](../annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](../annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../annotation/get_alignment/)() | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [get_AnnotationType](./get_annotationtype/)() override | Gets type of annotation. | +| [get_Appearance](../annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../annotation/get_border/)() const | Gets annotation border characteristics. [Border](../border/) | +| [get_Characteristics](../annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../annotation/get_color/)() | Gets annotation color. | +| [get_Content](./get_content/)() | Gets the content. | +| [get_Contents](../annotation/get_contents/)() | Gets annotation text. | +| [get_Flags](../annotation/get_flags/)() | Flags of the annotation. | +| [get_FullName](../annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../annotation/get_height/)() | Gets height of the annotation. | +| [get_HorizontalAlignment](../annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_LightingScheme](./get_lightingscheme/)() | Gets the lighting scheme. | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| [get_Modified](../annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Name](../annotation/get_name/)() | Gets annotation name on the page. | +| virtual [get_PageIndex](../annotation/get_pageindex/)() | Gets index of page which contains annotation. | +| [get_Pdf3DArtwork](./get_pdf3dartwork/)() const | Gets the 3D Artwork. | +| virtual [get_Rect](../annotation/get_rect/)() | Gets annotation rectangle. | +| [get_RenderMode](./get_rendermode/)() | Gets the render mode. | +| [get_States](../annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_TextHorizontalAlignment](../annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| static [get_UpdateAppearanceOnConvert](../annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| [get_ViewArray](./get_viewarray/)() | Gets the view array. | +| virtual [get_Width](../annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetImagePreview](./getimagepreview/)() | Gets the image preview. | +| [GetRectangle](../annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| [PDF3DAnnotation](./pdf3dannotation/)(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) | Initializes a new instance of the [PDF3DAnnotation](./) class. | +| [PDF3DAnnotation](./pdf3dannotation/)(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\, PDF3DActivation) | Initializes a new instance of the [PDF3DAnnotation](./) class. | +| virtual [set_ActiveState](../annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../annotation/set_alignment/)(TextAlignment) | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_Border](../annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../border/) | +| [set_Color](../annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Content](./set_content/)(System::SharedPtr\) | Sets the content. | +| [set_Contents](../annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_Flags](../annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| virtual [set_Height](../annotation/set_height/)(double) | Sets height of the annotation. | +| [set_HorizontalAlignment](../annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| [set_Modified](../annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Name](../annotation/set_name/)(System::String) | Sets annotation name on the page. | +| virtual [set_Rect](../annotation/set_rect/)(System::SharedPtr\) | Sets annotation rectangle. | +| [set_TextHorizontalAlignment](../annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| static [set_UpdateAppearanceOnConvert](../annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [SetDefaultViewIndex](./setdefaultviewindex/)(int32_t) | Sets the index of the default view. | +| [SetImagePreview](./setimagepreview/)(System::String) | Sets the image preview. | +| [SetImagePreview](./setimagepreview/)(System::SharedPtr\) | Sets the image preview. | + +## See Also + +* Class [Annotation](../annotation/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dannotation/accept/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dannotation/accept/_index.md new file mode 100644 index 0000000000..cbcac919ae --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dannotation/accept/_index.md @@ -0,0 +1,42 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DAnnotation::Accept method +linktitle: Accept +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DAnnotation::Accept method. Accepts visitor for annotation processing in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.annotations/pdf3dannotation/accept/ +--- +## PDF3DAnnotation::Accept method + + +Accepts visitor for annotation processing. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PDF3DAnnotation::Accept(System::SharedPtr visitor) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| visitor | System::SharedPtr\ | [AnnotationSelector](../../annotationselector/) object. | +## Remarks + + + + + + visitor + + + + AnnotationSelector object. + + + +## See Also + +* Class [AnnotationSelector](../../annotationselector/) +* Class [PDF3DAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dannotation/clearimagepreview/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dannotation/clearimagepreview/_index.md new file mode 100644 index 0000000000..1163e53f7d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dannotation/clearimagepreview/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DAnnotation::ClearImagePreview method +linktitle: ClearImagePreview +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DAnnotation::ClearImagePreview method. Clears the image preview in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.annotations/pdf3dannotation/clearimagepreview/ +--- +## PDF3DAnnotation::ClearImagePreview method + + +Clears the image preview. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PDF3DAnnotation::ClearImagePreview() +``` + +## See Also + +* Class [PDF3DAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dannotation/get_annotationtype/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dannotation/get_annotationtype/_index.md new file mode 100644 index 0000000000..c64a3cf754 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dannotation/get_annotationtype/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DAnnotation::get_AnnotationType method +linktitle: get_AnnotationType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DAnnotation::get_AnnotationType method. Gets type of annotation in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.annotations/pdf3dannotation/get_annotationtype/ +--- +## PDF3DAnnotation::get_AnnotationType method + + +Gets type of annotation. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::AnnotationType Aspose::Pdf::Annotations::PDF3DAnnotation::get_AnnotationType() override +``` + +## Remarks + + +The type of the annotation. +## See Also + +* Enum [AnnotationType](../../annotationtype/) +* Class [PDF3DAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dannotation/get_content/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dannotation/get_content/_index.md new file mode 100644 index 0000000000..ed3f7768a1 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dannotation/get_content/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DAnnotation::get_Content method +linktitle: get_Content +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DAnnotation::get_Content method. Gets the content in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/pdf3dannotation/get_content/ +--- +## PDF3DAnnotation::get_Content method + + +Gets the content. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DAnnotation::get_Content() +``` + +## Remarks + + +The content. +## See Also + +* Class [PDF3DContent](../../pdf3dcontent/) +* Class [PDF3DAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dannotation/get_lightingscheme/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dannotation/get_lightingscheme/_index.md new file mode 100644 index 0000000000..13dd25fa85 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dannotation/get_lightingscheme/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DAnnotation::get_LightingScheme method +linktitle: get_LightingScheme +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DAnnotation::get_LightingScheme method. Gets the lighting scheme in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/pdf3dannotation/get_lightingscheme/ +--- +## PDF3DAnnotation::get_LightingScheme method + + +Gets the lighting scheme. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DAnnotation::get_LightingScheme() +``` + +## Remarks + + +The lighting scheme. +## See Also + +* Class [PDF3DLightingScheme](../../pdf3dlightingscheme/) +* Class [PDF3DAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dannotation/get_pdf3dartwork/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dannotation/get_pdf3dartwork/_index.md new file mode 100644 index 0000000000..4029484581 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dannotation/get_pdf3dartwork/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DAnnotation::get_Pdf3DArtwork method +linktitle: get_Pdf3DArtwork +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DAnnotation::get_Pdf3DArtwork method. Gets the 3D Artwork in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/pdf3dannotation/get_pdf3dartwork/ +--- +## PDF3DAnnotation::get_Pdf3DArtwork method + + +Gets the 3D Artwork. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DAnnotation::get_Pdf3DArtwork() const +``` + +## Remarks + + +The PDF3 d artwork. +## See Also + +* Class [PDF3DArtwork](../../pdf3dartwork/) +* Class [PDF3DAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dannotation/get_rendermode/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dannotation/get_rendermode/_index.md new file mode 100644 index 0000000000..c1a4e36925 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dannotation/get_rendermode/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DAnnotation::get_RenderMode method +linktitle: get_RenderMode +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DAnnotation::get_RenderMode method. Gets the render mode in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/pdf3dannotation/get_rendermode/ +--- +## PDF3DAnnotation::get_RenderMode method + + +Gets the render mode. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DAnnotation::get_RenderMode() +``` + +## Remarks + + +The render mode. +## See Also + +* Class [PDF3DRenderMode](../../pdf3drendermode/) +* Class [PDF3DAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dannotation/get_viewarray/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dannotation/get_viewarray/_index.md new file mode 100644 index 0000000000..952fc13b58 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dannotation/get_viewarray/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DAnnotation::get_ViewArray method +linktitle: get_ViewArray +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DAnnotation::get_ViewArray method. Gets the view array in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/pdf3dannotation/get_viewarray/ +--- +## PDF3DAnnotation::get_ViewArray method + + +Gets the view array. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DAnnotation::get_ViewArray() +``` + +## Remarks + + +The view array. +## See Also + +* Class [PDF3DViewArray](../../pdf3dviewarray/) +* Class [PDF3DAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dannotation/getimagepreview/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dannotation/getimagepreview/_index.md new file mode 100644 index 0000000000..08f35a59af --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dannotation/getimagepreview/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DAnnotation::GetImagePreview method +linktitle: GetImagePreview +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DAnnotation::GetImagePreview method. Gets the image preview in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.annotations/pdf3dannotation/getimagepreview/ +--- +## PDF3DAnnotation::GetImagePreview method + + +Gets the image preview. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DAnnotation::GetImagePreview() +``` + + +### ReturnValue + +[Image](../../../aspose.pdf/image/) preview as stream. + +## See Also + +* Class [PDF3DAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dannotation/pdf3dannotation/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dannotation/pdf3dannotation/_index.md new file mode 100644 index 0000000000..b771667fb9 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dannotation/pdf3dannotation/_index.md @@ -0,0 +1,132 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DAnnotation::PDF3DAnnotation constructor +linktitle: PDF3DAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DAnnotation::PDF3DAnnotation constructor. Initializes a new instance of the PDF3DAnnotation class in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.annotations/pdf3dannotation/pdf3dannotation/ +--- +## PDF3DAnnotation::PDF3DAnnotation(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) constructor + + +Initializes a new instance of the [PDF3DAnnotation](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::PDF3DAnnotation::PDF3DAnnotation(System::SharedPtr page, System::SharedPtr rect, System::SharedPtr pdf3DArtwork) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The page. | +| rect | System::SharedPtr\ | The rectangle. | +| pdf3DArtwork | System::SharedPtr\ | The 3D Artwork. | +## Remarks + + + + + + page + + + The page. + + + + + rect + + + The rectangle. + + + + + pdf3DArtwork + + + The 3D Artwork. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [PDF3DArtwork](../../pdf3dartwork/) +* Class [PDF3DAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## PDF3DAnnotation::PDF3DAnnotation(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\, PDF3DActivation) constructor + + +Initializes a new instance of the [PDF3DAnnotation](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::PDF3DAnnotation::PDF3DAnnotation(System::SharedPtr page, System::SharedPtr rect, System::SharedPtr pdf3DArtwork, PDF3DActivation activation) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The page. | +| rect | System::SharedPtr\ | The rectangle. | +| pdf3DArtwork | System::SharedPtr\ | The 3D Artwork. | +| activation | PDF3DActivation | The activation mode. | +## Remarks + + + + + + page + + + The page. + + + + + rect + + + The rectangle. + + + + + pdf3DArtwork + + + The 3D Artwork. + + + + + activation + + + The activation mode. + + + + + + Exception + + + 3D Stream is already added to current 3D Artwork + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [PDF3DArtwork](../../pdf3dartwork/) +* Enum [PDF3DActivation](../../pdf3dactivation/) +* Class [PDF3DAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dannotation/set_content/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dannotation/set_content/_index.md new file mode 100644 index 0000000000..0863c58439 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dannotation/set_content/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DAnnotation::set_Content method +linktitle: set_Content +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DAnnotation::set_Content method. Sets the content in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/pdf3dannotation/set_content/ +--- +## PDF3DAnnotation::set_Content method + + +Sets the content. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PDF3DAnnotation::set_Content(System::SharedPtr value) +``` + +## Remarks + + +The content. +## See Also + +* Class [PDF3DContent](../../pdf3dcontent/) +* Class [PDF3DAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dannotation/setdefaultviewindex/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dannotation/setdefaultviewindex/_index.md new file mode 100644 index 0000000000..866c6ac5c6 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dannotation/setdefaultviewindex/_index.md @@ -0,0 +1,40 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DAnnotation::SetDefaultViewIndex method +linktitle: SetDefaultViewIndex +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DAnnotation::SetDefaultViewIndex method. Sets the index of the default view in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.annotations/pdf3dannotation/setdefaultviewindex/ +--- +## PDF3DAnnotation::SetDefaultViewIndex method + + +Sets the index of the default view. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PDF3DAnnotation::SetDefaultViewIndex(int32_t index) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| index | int32_t | The default view index. | +## Remarks + + + + + + index + + + The default view index. + + + +## See Also + +* Class [PDF3DAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dannotation/setimagepreview/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dannotation/setimagepreview/_index.md new file mode 100644 index 0000000000..e6adabd6de --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dannotation/setimagepreview/_index.md @@ -0,0 +1,71 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DAnnotation::SetImagePreview method +linktitle: SetImagePreview +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DAnnotation::SetImagePreview method. Sets the image preview in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.annotations/pdf3dannotation/setimagepreview/ +--- +## PDF3DAnnotation::SetImagePreview(System::String) method + + +Sets the image preview. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PDF3DAnnotation::SetImagePreview(System::String filename) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| filename | System::String | The image preview filename. | +## Remarks + + + + + + filename + + + The image preview filename. + + + +## See Also + +* Class [PDF3DAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## PDF3DAnnotation::SetImagePreview(System::SharedPtr\) method + + +Sets the image preview. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PDF3DAnnotation::SetImagePreview(System::SharedPtr image) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| image | System::SharedPtr\ | The image stream. | +## Remarks + + + + + + image + + + The image stream. + + + +## See Also + +* Class [PDF3DAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dartwork/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dartwork/_index.md new file mode 100644 index 0000000000..5d756ebe69 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dartwork/_index.md @@ -0,0 +1,35 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DArtwork class +linktitle: PDF3DArtwork +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DArtwork class. Class PDF3DArtwork in C++.' +type: docs +weight: 7200 +url: /cpp/aspose.pdf.annotations/pdf3dartwork/ +--- +## PDF3DArtwork class + + +Class [PDF3DArtwork](./). + +```cpp +class PDF3DArtwork : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_LightingScheme](./get_lightingscheme/)() const | Gets the lighting scheme. | +| [get_RenderMode](./get_rendermode/)() const | Gets the render mode. | +| [get_ViewArray](./get_viewarray/)() const | Gets the view array. | +| [GetViewsArray](./getviewsarray/)() | Gets the views array. | +| [GetViewsList](./getviewslist/)() | Get the views as list. | +| [PDF3DArtwork](./pdf3dartwork/)(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) | Initializes a new instance of the [PDF3DArtwork](./) class. | +| [PDF3DArtwork](./pdf3dartwork/)(System::SharedPtr\, System::SharedPtr\) | Initializes a new instance of the [PDF3DArtwork](./) class. | +| [set_LightingScheme](./set_lightingscheme/)(System::SharedPtr\) | Sets the lighting scheme. | +| [set_RenderMode](./set_rendermode/)(System::SharedPtr\) | Sets the render mode. | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dartwork/get_lightingscheme/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dartwork/get_lightingscheme/_index.md new file mode 100644 index 0000000000..1cf34abe9e --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dartwork/get_lightingscheme/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DArtwork::get_LightingScheme method +linktitle: get_LightingScheme +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DArtwork::get_LightingScheme method. Gets the lighting scheme in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/pdf3dartwork/get_lightingscheme/ +--- +## PDF3DArtwork::get_LightingScheme method + + +Gets the lighting scheme. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DArtwork::get_LightingScheme() const +``` + +## Remarks + + +The lighting scheme. +## See Also + +* Class [PDF3DLightingScheme](../../pdf3dlightingscheme/) +* Class [PDF3DArtwork](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dartwork/get_rendermode/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dartwork/get_rendermode/_index.md new file mode 100644 index 0000000000..eee868417a --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dartwork/get_rendermode/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DArtwork::get_RenderMode method +linktitle: get_RenderMode +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DArtwork::get_RenderMode method. Gets the render mode in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/pdf3dartwork/get_rendermode/ +--- +## PDF3DArtwork::get_RenderMode method + + +Gets the render mode. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DArtwork::get_RenderMode() const +``` + +## Remarks + + +The render mode. +## See Also + +* Class [PDF3DRenderMode](../../pdf3drendermode/) +* Class [PDF3DArtwork](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dartwork/get_viewarray/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dartwork/get_viewarray/_index.md new file mode 100644 index 0000000000..8fb027f331 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dartwork/get_viewarray/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DArtwork::get_ViewArray method +linktitle: get_ViewArray +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DArtwork::get_ViewArray method. Gets the view array in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/pdf3dartwork/get_viewarray/ +--- +## PDF3DArtwork::get_ViewArray method + + +Gets the view array. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DArtwork::get_ViewArray() const +``` + +## Remarks + + +The view array. +## See Also + +* Class [PDF3DViewArray](../../pdf3dviewarray/) +* Class [PDF3DArtwork](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dartwork/getviewsarray/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dartwork/getviewsarray/_index.md new file mode 100644 index 0000000000..22dab1bf11 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dartwork/getviewsarray/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DArtwork::GetViewsArray method +linktitle: GetViewsArray +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DArtwork::GetViewsArray method. Gets the views array in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.annotations/pdf3dartwork/getviewsarray/ +--- +## PDF3DArtwork::GetViewsArray method + + +Gets the views array. + +```cpp +ASPOSE_PDF_SHARED_API System::ArrayPtr> Aspose::Pdf::Annotations::PDF3DArtwork::GetViewsArray() +``` + + +### ReturnValue + +Array of views. + +## See Also + +* Class [PDF3DView](../../pdf3dview/) +* Class [PDF3DArtwork](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dartwork/getviewslist/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dartwork/getviewslist/_index.md new file mode 100644 index 0000000000..0889c3cf82 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dartwork/getviewslist/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DArtwork::GetViewsList method +linktitle: GetViewsList +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DArtwork::GetViewsList method. Get the views as list in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.annotations/pdf3dartwork/getviewslist/ +--- +## PDF3DArtwork::GetViewsList method + + +Get the views as list. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr>> Aspose::Pdf::Annotations::PDF3DArtwork::GetViewsList() +``` + + +### ReturnValue + +ReadOnlyCollection<[PDF3DView](../../pdf3dview/)>. + +## See Also + +* Class [PDF3DView](../../pdf3dview/) +* Class [PDF3DArtwork](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dartwork/pdf3dartwork/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dartwork/pdf3dartwork/_index.md new file mode 100644 index 0000000000..15fe34821f --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dartwork/pdf3dartwork/_index.md @@ -0,0 +1,113 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DArtwork::PDF3DArtwork constructor +linktitle: PDF3DArtwork +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DArtwork::PDF3DArtwork constructor. Initializes a new instance of the PDF3DArtwork class in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/pdf3dartwork/pdf3dartwork/ +--- +## PDF3DArtwork::PDF3DArtwork(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) constructor + + +Initializes a new instance of the [PDF3DArtwork](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::PDF3DArtwork::PDF3DArtwork(System::SharedPtr doc, System::SharedPtr content, System::SharedPtr lightingScheme, System::SharedPtr renderMode) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| doc | System::SharedPtr\ | The document. | +| content | System::SharedPtr\ | The content. | +| lightingScheme | System::SharedPtr\ | The lighting scheme. | +| renderMode | System::SharedPtr\ | The render mode. | +## Remarks + + + + + + doc + + + The document. + + + + + content + + + The content. + + + + + lightingScheme + + + The lighting scheme. + + + + + renderMode + + + The render mode. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [PDF3DContent](../../pdf3dcontent/) +* Class [PDF3DLightingScheme](../../pdf3dlightingscheme/) +* Class [PDF3DRenderMode](../../pdf3drendermode/) +* Class [PDF3DArtwork](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## PDF3DArtwork::PDF3DArtwork(System::SharedPtr\, System::SharedPtr\) constructor + + +Initializes a new instance of the [PDF3DArtwork](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::PDF3DArtwork::PDF3DArtwork(System::SharedPtr doc, System::SharedPtr content) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| doc | System::SharedPtr\ | The document. | +| content | System::SharedPtr\ | The content. | +## Remarks + + + + + + doc + + + The document. + + + + + content + + + The content. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [PDF3DContent](../../pdf3dcontent/) +* Class [PDF3DArtwork](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dartwork/set_lightingscheme/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dartwork/set_lightingscheme/_index.md new file mode 100644 index 0000000000..c5fe989ae7 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dartwork/set_lightingscheme/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DArtwork::set_LightingScheme method +linktitle: set_LightingScheme +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DArtwork::set_LightingScheme method. Sets the lighting scheme in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/pdf3dartwork/set_lightingscheme/ +--- +## PDF3DArtwork::set_LightingScheme method + + +Sets the lighting scheme. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PDF3DArtwork::set_LightingScheme(System::SharedPtr value) +``` + +## Remarks + + +The lighting scheme. +## See Also + +* Class [PDF3DLightingScheme](../../pdf3dlightingscheme/) +* Class [PDF3DArtwork](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dartwork/set_rendermode/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dartwork/set_rendermode/_index.md new file mode 100644 index 0000000000..d640e0b8d4 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dartwork/set_rendermode/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DArtwork::set_RenderMode method +linktitle: set_RenderMode +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DArtwork::set_RenderMode method. Sets the render mode in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/pdf3dartwork/set_rendermode/ +--- +## PDF3DArtwork::set_RenderMode method + + +Sets the render mode. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PDF3DArtwork::set_RenderMode(System::SharedPtr value) +``` + +## Remarks + + +The render mode. +## See Also + +* Class [PDF3DRenderMode](../../pdf3drendermode/) +* Class [PDF3DArtwork](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dcontent/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dcontent/_index.md new file mode 100644 index 0000000000..892e15f881 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dcontent/_index.md @@ -0,0 +1,39 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DContent class +linktitle: PDF3DContent +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DContent class. Class PDF3DContent in C++.' +type: docs +weight: 7300 +url: /cpp/aspose.pdf.annotations/pdf3dcontent/ +--- +## PDF3DContent class + + +Class [PDF3DContent](./). + +```cpp +class PDF3DContent : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_Extension](./get_extension/)() const | Gets the extension . | +| [GetAsByteArray](./getasbytearray/)() | Gets 3D content as byte array. | +| [GetAsStream](./getasstream/)() | Gets 3D content as stream. | +| [Load](./load/)(System::String) | Loads 3D content with the specified filename. | +| [LoadAsPRC](./loadasprc/)(System::String) | Loads 3D content with the specified filename as PRC format. | +| [LoadAsPRC](./loadasprc/)(System::SharedPtr\) | Loads 3D content from stream as PRC format. | +| [LoadAsPRC](./loadasprc/)(System::ArrayPtr\) | Loads 3D content from byte array as PRC format. | +| [LoadAsU3D](./loadasu3d/)(System::String) | Loads 3D content with the specified filename as U3D format. | +| [LoadAsU3D](./loadasu3d/)(System::SharedPtr\) | Loads 3D content from stream as U3D format. | +| [LoadAsU3D](./loadasu3d/)(System::ArrayPtr\) | Loads 3D content from byte array as U3D format. | +| [PDF3DContent](./pdf3dcontent/)() | Initializes a new instance of the [PDF3DContent](./) class. | +| [PDF3DContent](./pdf3dcontent/)(System::String) | Initializes a new instance of the [PDF3DContent](./) class. | +| [SaveToFile](./savetofile/)(System::String) | Saves 3D content to file. | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dcontent/get_extension/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dcontent/get_extension/_index.md new file mode 100644 index 0000000000..6c473fea2c --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dcontent/get_extension/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DContent::get_Extension method +linktitle: get_Extension +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DContent::get_Extension method. Gets the extension in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/pdf3dcontent/get_extension/ +--- +## PDF3DContent::get_Extension method + + +Gets the extension . + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::PDF3DContent::get_Extension() const +``` + +## Remarks + + +The extension. +## See Also + +* Class [PDF3DContent](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dcontent/getasbytearray/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dcontent/getasbytearray/_index.md new file mode 100644 index 0000000000..820d50f8d0 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dcontent/getasbytearray/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DContent::GetAsByteArray method +linktitle: GetAsByteArray +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DContent::GetAsByteArray method. Gets 3D content as byte array in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.annotations/pdf3dcontent/getasbytearray/ +--- +## PDF3DContent::GetAsByteArray method + + +Gets 3D content as byte array. + +```cpp +ASPOSE_PDF_SHARED_API System::ArrayPtr Aspose::Pdf::Annotations::PDF3DContent::GetAsByteArray() +``` + + +### ReturnValue + +**System.Byte**[]. + +## See Also + +* Class [PDF3DContent](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dcontent/getasstream/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dcontent/getasstream/_index.md new file mode 100644 index 0000000000..cafa940667 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dcontent/getasstream/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DContent::GetAsStream method +linktitle: GetAsStream +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DContent::GetAsStream method. Gets 3D content as stream in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.annotations/pdf3dcontent/getasstream/ +--- +## PDF3DContent::GetAsStream method + + +Gets 3D content as stream. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DContent::GetAsStream() +``` + + +### ReturnValue + +Stream. + +## See Also + +* Class [PDF3DContent](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dcontent/load/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dcontent/load/_index.md new file mode 100644 index 0000000000..1ed4d3d73b --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dcontent/load/_index.md @@ -0,0 +1,49 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DContent::Load method +linktitle: Load +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DContent::Load method. Loads 3D content with the specified filename in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/pdf3dcontent/load/ +--- +## PDF3DContent::Load method + + +Loads 3D content with the specified filename. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PDF3DContent::Load(System::String filename) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| filename | System::String | The filename. | +## Remarks + + + + + + filename + + + The filename. + + + + + + ArgumentException + + + Unknown 3D content type + + + +## See Also + +* Class [PDF3DContent](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dcontent/loadasprc/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dcontent/loadasprc/_index.md new file mode 100644 index 0000000000..ec55be4b54 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dcontent/loadasprc/_index.md @@ -0,0 +1,102 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DContent::LoadAsPRC method +linktitle: LoadAsPRC +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DContent::LoadAsPRC method. Loads 3D content with the specified filename as PRC format in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/pdf3dcontent/loadasprc/ +--- +## PDF3DContent::LoadAsPRC(System::String) method + + +Loads 3D content with the specified filename as PRC format. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PDF3DContent::LoadAsPRC(System::String filename) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| filename | System::String | The filename. | +## Remarks + + + + + + filename + + + The filename. + + + +## See Also + +* Class [PDF3DContent](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## PDF3DContent::LoadAsPRC(System::SharedPtr\) method + + +Loads 3D content from stream as PRC format. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PDF3DContent::LoadAsPRC(System::SharedPtr stream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| stream | System::SharedPtr\ | The 3D content stream. | +## Remarks + + + + + + stream + + + The 3D content stream. + + + +## See Also + +* Class [PDF3DContent](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## PDF3DContent::LoadAsPRC(System::ArrayPtr\) method + + +Loads 3D content from byte array as PRC format. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PDF3DContent::LoadAsPRC(System::ArrayPtr stream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| stream | System::ArrayPtr\ | The stream. | +## Remarks + + + + + + stream + + + The stream. + + + +## See Also + +* Class [PDF3DContent](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dcontent/loadasu3d/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dcontent/loadasu3d/_index.md new file mode 100644 index 0000000000..bbf938e9c3 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dcontent/loadasu3d/_index.md @@ -0,0 +1,102 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DContent::LoadAsU3D method +linktitle: LoadAsU3D +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DContent::LoadAsU3D method. Loads 3D content with the specified filename as U3D format in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/pdf3dcontent/loadasu3d/ +--- +## PDF3DContent::LoadAsU3D(System::String) method + + +Loads 3D content with the specified filename as U3D format. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PDF3DContent::LoadAsU3D(System::String filename) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| filename | System::String | The filename. | +## Remarks + + + + + + filename + + + The filename. + + + +## See Also + +* Class [PDF3DContent](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## PDF3DContent::LoadAsU3D(System::SharedPtr\) method + + +Loads 3D content from stream as U3D format. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PDF3DContent::LoadAsU3D(System::SharedPtr stream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| stream | System::SharedPtr\ | The 3D content stream. | +## Remarks + + + + + + stream + + + The 3D content stream. + + + +## See Also + +* Class [PDF3DContent](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## PDF3DContent::LoadAsU3D(System::ArrayPtr\) method + + +Loads 3D content from byte array as U3D format. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PDF3DContent::LoadAsU3D(System::ArrayPtr stream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| stream | System::ArrayPtr\ | The stream. | +## Remarks + + + + + + stream + + + The stream. + + + +## See Also + +* Class [PDF3DContent](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dcontent/pdf3dcontent/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dcontent/pdf3dcontent/_index.md new file mode 100644 index 0000000000..5db776767e --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dcontent/pdf3dcontent/_index.md @@ -0,0 +1,63 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DContent::PDF3DContent constructor +linktitle: PDF3DContent +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DContent::PDF3DContent constructor. Initializes a new instance of the PDF3DContent class in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/pdf3dcontent/pdf3dcontent/ +--- +## PDF3DContent::PDF3DContent() constructor + + +Initializes a new instance of the [PDF3DContent](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::PDF3DContent::PDF3DContent() +``` + +## See Also + +* Class [PDF3DContent](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## PDF3DContent::PDF3DContent(System::String) constructor + + +Initializes a new instance of the [PDF3DContent](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::PDF3DContent::PDF3DContent(System::String filename) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| filename | System::String | The filename. | +## Remarks + + + + + + filename + + + The filename. + + + + + + ArgumentException + + + Unknown 3D Artwork type + + + +## See Also + +* Class [PDF3DContent](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dcontent/savetofile/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dcontent/savetofile/_index.md new file mode 100644 index 0000000000..3ead564d75 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dcontent/savetofile/_index.md @@ -0,0 +1,49 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DContent::SaveToFile method +linktitle: SaveToFile +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DContent::SaveToFile method. Saves 3D content to file in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/pdf3dcontent/savetofile/ +--- +## PDF3DContent::SaveToFile method + + +Saves 3D content to file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PDF3DContent::SaveToFile(System::String filename) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| filename | System::String | The file name. | +## Remarks + + + + + + filename + + + The file name. + + + + + + ArgumentException + + + 3DArtwork content format is PRC or U3D. + + + +## See Also + +* Class [PDF3DContent](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dcrosssection/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dcrosssection/_index.md new file mode 100644 index 0000000000..3f39ab8aa9 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dcrosssection/_index.md @@ -0,0 +1,39 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DCrossSection class +linktitle: PDF3DCrossSection +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DCrossSection class. Class PDF3DCrossSection in C++.' +type: docs +weight: 7400 +url: /cpp/aspose.pdf.annotations/pdf3dcrosssection/ +--- +## PDF3DCrossSection class + + +Class [PDF3DCrossSection](./). + +```cpp +class PDF3DCrossSection : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_Center](./get_center/)() const | Gets the cross section rotation center. | +| [get_CuttingPlaneColor](./get_cuttingplanecolor/)() const | Gets the color of the cutting plane. | +| [get_CuttingPlaneOpacity](./get_cuttingplaneopacity/)() const | Gets the cutting plane opacity. | +| [get_CuttingPlaneOrientation](./get_cuttingplaneorientation/)() const | Gets the cutting plane orientation. | +| [get_CuttingPlanesIntersectionColor](./get_cuttingplanesintersectioncolor/)() const | Gets the color of the cutting planes intersection. | +| [get_Visibility](./get_visibility/)() const | Gets a value indicating visibility of the cutting planes intersection. | +| [PDF3DCrossSection](./pdf3dcrosssection/)(System::SharedPtr\) | Initializes a new instance of the [PDF3DCrossSection](./) class. | +| [set_Center](./set_center/)(System::SharedPtr\) | Sets the cross section rotation center. | +| [set_CuttingPlaneColor](./set_cuttingplanecolor/)(System::SharedPtr\) | Sets the color of the cutting plane. | +| [set_CuttingPlaneOpacity](./set_cuttingplaneopacity/)(double) | Sets the cutting plane opacity. | +| [set_CuttingPlaneOrientation](./set_cuttingplaneorientation/)(System::SharedPtr\) | Sets the cutting plane orientation. | +| [set_CuttingPlanesIntersectionColor](./set_cuttingplanesintersectioncolor/)(System::SharedPtr\) | Sets the color of the cutting planes intersection. | +| [set_Visibility](./set_visibility/)(bool) | Sets a value indicating visibility of the cutting planes intersection. | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dcrosssection/get_center/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dcrosssection/get_center/_index.md new file mode 100644 index 0000000000..2a31cee971 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dcrosssection/get_center/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DCrossSection::get_Center method +linktitle: get_Center +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DCrossSection::get_Center method. Gets the cross section rotation center in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/pdf3dcrosssection/get_center/ +--- +## PDF3DCrossSection::get_Center method + + +Gets the cross section rotation center. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DCrossSection::get_Center() const +``` + +## Remarks + + +The center. +## See Also + +* Class [Point3D](../../../aspose.pdf/point3d/) +* Class [PDF3DCrossSection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dcrosssection/get_cuttingplanecolor/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dcrosssection/get_cuttingplanecolor/_index.md new file mode 100644 index 0000000000..bf68a5ccdb --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dcrosssection/get_cuttingplanecolor/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DCrossSection::get_CuttingPlaneColor method +linktitle: get_CuttingPlaneColor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DCrossSection::get_CuttingPlaneColor method. Gets the color of the cutting plane in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.annotations/pdf3dcrosssection/get_cuttingplanecolor/ +--- +## PDF3DCrossSection::get_CuttingPlaneColor method + + +Gets the color of the cutting plane. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DCrossSection::get_CuttingPlaneColor() const +``` + +## Remarks + + +The color of the cutting plane. +## See Also + +* Class [Color](../../../aspose.pdf/color/) +* Class [PDF3DCrossSection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dcrosssection/get_cuttingplaneopacity/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dcrosssection/get_cuttingplaneopacity/_index.md new file mode 100644 index 0000000000..19631f0c30 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dcrosssection/get_cuttingplaneopacity/_index.md @@ -0,0 +1,38 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DCrossSection::get_CuttingPlaneOpacity method +linktitle: get_CuttingPlaneOpacity +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DCrossSection::get_CuttingPlaneOpacity method. Gets the cutting plane opacity in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/pdf3dcrosssection/get_cuttingplaneopacity/ +--- +## PDF3DCrossSection::get_CuttingPlaneOpacity method + + +Gets the cutting plane opacity. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Annotations::PDF3DCrossSection::get_CuttingPlaneOpacity() const +``` + +## Remarks + + +The cutting plane opacity. + + + + + Exception + + + The number must be in the range [0 , 1] + + + +## See Also + +* Class [PDF3DCrossSection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dcrosssection/get_cuttingplaneorientation/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dcrosssection/get_cuttingplaneorientation/_index.md new file mode 100644 index 0000000000..02bfbaf5e6 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dcrosssection/get_cuttingplaneorientation/_index.md @@ -0,0 +1,39 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DCrossSection::get_CuttingPlaneOrientation method +linktitle: get_CuttingPlaneOrientation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DCrossSection::get_CuttingPlaneOrientation method. Gets the cutting plane orientation in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/pdf3dcrosssection/get_cuttingplaneorientation/ +--- +## PDF3DCrossSection::get_CuttingPlaneOrientation method + + +Gets the cutting plane orientation. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DCrossSection::get_CuttingPlaneOrientation() const +``` + +## Remarks + + +The cutting plane orientation. + + + + + Exception + + + Only one of the values shall be Null + + + +## See Also + +* Class [PDF3DCuttingPlaneOrientation](../../pdf3dcuttingplaneorientation/) +* Class [PDF3DCrossSection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dcrosssection/get_cuttingplanesintersectioncolor/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dcrosssection/get_cuttingplanesintersectioncolor/_index.md new file mode 100644 index 0000000000..12b6d9340e --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dcrosssection/get_cuttingplanesintersectioncolor/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DCrossSection::get_CuttingPlanesIntersectionColor method +linktitle: get_CuttingPlanesIntersectionColor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DCrossSection::get_CuttingPlanesIntersectionColor method. Gets the color of the cutting planes intersection in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.annotations/pdf3dcrosssection/get_cuttingplanesintersectioncolor/ +--- +## PDF3DCrossSection::get_CuttingPlanesIntersectionColor method + + +Gets the color of the cutting planes intersection. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DCrossSection::get_CuttingPlanesIntersectionColor() const +``` + +## Remarks + + +The color of the cutting planes intersection. +## See Also + +* Class [Color](../../../aspose.pdf/color/) +* Class [PDF3DCrossSection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dcrosssection/get_visibility/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dcrosssection/get_visibility/_index.md new file mode 100644 index 0000000000..5ed6d55c51 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dcrosssection/get_visibility/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DCrossSection::get_Visibility method +linktitle: get_Visibility +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DCrossSection::get_Visibility method. Gets a value indicating visibility of the cutting planes intersection in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.annotations/pdf3dcrosssection/get_visibility/ +--- +## PDF3DCrossSection::get_Visibility method + + +Gets a value indicating visibility of the cutting planes intersection. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Annotations::PDF3DCrossSection::get_Visibility() const +``` + +## Remarks + + +**true** if visible; otherwise, **false**. +## See Also + +* Class [PDF3DCrossSection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dcrosssection/pdf3dcrosssection/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dcrosssection/pdf3dcrosssection/_index.md new file mode 100644 index 0000000000..1131f16552 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dcrosssection/pdf3dcrosssection/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DCrossSection::PDF3DCrossSection constructor +linktitle: PDF3DCrossSection +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DCrossSection::PDF3DCrossSection constructor. Initializes a new instance of the PDF3DCrossSection class in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.annotations/pdf3dcrosssection/pdf3dcrosssection/ +--- +## PDF3DCrossSection::PDF3DCrossSection constructor + + +Initializes a new instance of the [PDF3DCrossSection](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::PDF3DCrossSection::PDF3DCrossSection(System::SharedPtr doc) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| doc | System::SharedPtr\ | The document. | +## Remarks + + + + + + doc + + + The document. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [PDF3DCrossSection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dcrosssection/set_center/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dcrosssection/set_center/_index.md new file mode 100644 index 0000000000..b13e7fa53d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dcrosssection/set_center/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DCrossSection::set_Center method +linktitle: set_Center +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DCrossSection::set_Center method. Sets the cross section rotation center in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/pdf3dcrosssection/set_center/ +--- +## PDF3DCrossSection::set_Center method + + +Sets the cross section rotation center. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PDF3DCrossSection::set_Center(System::SharedPtr value) +``` + +## Remarks + + +The center. +## See Also + +* Class [Point3D](../../../aspose.pdf/point3d/) +* Class [PDF3DCrossSection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dcrosssection/set_cuttingplanecolor/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dcrosssection/set_cuttingplanecolor/_index.md new file mode 100644 index 0000000000..6d520b4fac --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dcrosssection/set_cuttingplanecolor/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DCrossSection::set_CuttingPlaneColor method +linktitle: set_CuttingPlaneColor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DCrossSection::set_CuttingPlaneColor method. Sets the color of the cutting plane in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.annotations/pdf3dcrosssection/set_cuttingplanecolor/ +--- +## PDF3DCrossSection::set_CuttingPlaneColor method + + +Sets the color of the cutting plane. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PDF3DCrossSection::set_CuttingPlaneColor(System::SharedPtr value) +``` + +## Remarks + + +The color of the cutting plane. +## See Also + +* Class [Color](../../../aspose.pdf/color/) +* Class [PDF3DCrossSection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dcrosssection/set_cuttingplaneopacity/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dcrosssection/set_cuttingplaneopacity/_index.md new file mode 100644 index 0000000000..0cc6b9dabc --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dcrosssection/set_cuttingplaneopacity/_index.md @@ -0,0 +1,38 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DCrossSection::set_CuttingPlaneOpacity method +linktitle: set_CuttingPlaneOpacity +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DCrossSection::set_CuttingPlaneOpacity method. Sets the cutting plane opacity in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/pdf3dcrosssection/set_cuttingplaneopacity/ +--- +## PDF3DCrossSection::set_CuttingPlaneOpacity method + + +Sets the cutting plane opacity. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PDF3DCrossSection::set_CuttingPlaneOpacity(double value) +``` + +## Remarks + + +The cutting plane opacity. + + + + + Exception + + + The number must be in the range [0 , 1] + + + +## See Also + +* Class [PDF3DCrossSection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dcrosssection/set_cuttingplaneorientation/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dcrosssection/set_cuttingplaneorientation/_index.md new file mode 100644 index 0000000000..9879aa8d71 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dcrosssection/set_cuttingplaneorientation/_index.md @@ -0,0 +1,39 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DCrossSection::set_CuttingPlaneOrientation method +linktitle: set_CuttingPlaneOrientation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DCrossSection::set_CuttingPlaneOrientation method. Sets the cutting plane orientation in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/pdf3dcrosssection/set_cuttingplaneorientation/ +--- +## PDF3DCrossSection::set_CuttingPlaneOrientation method + + +Sets the cutting plane orientation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PDF3DCrossSection::set_CuttingPlaneOrientation(System::SharedPtr value) +``` + +## Remarks + + +The cutting plane orientation. + + + + + Exception + + + Only one of the values shall be Null + + + +## See Also + +* Class [PDF3DCuttingPlaneOrientation](../../pdf3dcuttingplaneorientation/) +* Class [PDF3DCrossSection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dcrosssection/set_cuttingplanesintersectioncolor/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dcrosssection/set_cuttingplanesintersectioncolor/_index.md new file mode 100644 index 0000000000..9dddd3972c --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dcrosssection/set_cuttingplanesintersectioncolor/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DCrossSection::set_CuttingPlanesIntersectionColor method +linktitle: set_CuttingPlanesIntersectionColor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DCrossSection::set_CuttingPlanesIntersectionColor method. Sets the color of the cutting planes intersection in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.annotations/pdf3dcrosssection/set_cuttingplanesintersectioncolor/ +--- +## PDF3DCrossSection::set_CuttingPlanesIntersectionColor method + + +Sets the color of the cutting planes intersection. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PDF3DCrossSection::set_CuttingPlanesIntersectionColor(System::SharedPtr value) +``` + +## Remarks + + +The color of the cutting planes intersection. +## See Also + +* Class [Color](../../../aspose.pdf/color/) +* Class [PDF3DCrossSection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dcrosssection/set_visibility/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dcrosssection/set_visibility/_index.md new file mode 100644 index 0000000000..c3dbfec319 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dcrosssection/set_visibility/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DCrossSection::set_Visibility method +linktitle: set_Visibility +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DCrossSection::set_Visibility method. Sets a value indicating visibility of the cutting planes intersection in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.annotations/pdf3dcrosssection/set_visibility/ +--- +## PDF3DCrossSection::set_Visibility method + + +Sets a value indicating visibility of the cutting planes intersection. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PDF3DCrossSection::set_Visibility(bool value) +``` + +## Remarks + + +**true** if visible; otherwise, **false**. +## See Also + +* Class [PDF3DCrossSection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dcrosssectionarray/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dcrosssectionarray/_index.md new file mode 100644 index 0000000000..5ef7e8e0d8 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dcrosssectionarray/_index.md @@ -0,0 +1,33 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DCrossSectionArray class +linktitle: PDF3DCrossSectionArray +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DCrossSectionArray class. Class PDF3DCrossSectionArray in C++.' +type: docs +weight: 7500 +url: /cpp/aspose.pdf.annotations/pdf3dcrosssectionarray/ +--- +## PDF3DCrossSectionArray class + + +Class [PDF3DCrossSectionArray](./). + +```cpp +class PDF3DCrossSectionArray : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Add](./add/)(System::SharedPtr\) | Adds the specified cross section to views array . | +| [get_Count](./get_count/)() | Gets the cross section count. | +| [idx_get](./idx_get/)(int32_t) | Gets the [PDF3DCrossSection](../pdf3dcrosssection/) at the specified index. | +| [idx_set](./idx_set/)(int32_t, System::SharedPtr\) | Sets the [PDF3DCrossSection](../pdf3dcrosssection/) at the specified index. | +| [PDF3DCrossSectionArray](./pdf3dcrosssectionarray/)(System::SharedPtr\) | Initializes a new instance of the [PDF3DCrossSectionArray](./) class. | +| [RemoveAll](./removeall/)() | Removes all cross section from array. | +| [RemoveAt](./removeat/)(int32_t) | Removes cross section from array at specified index. | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dcrosssectionarray/add/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dcrosssectionarray/add/_index.md new file mode 100644 index 0000000000..bc743b810d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dcrosssectionarray/add/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DCrossSectionArray::Add method +linktitle: Add +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DCrossSectionArray::Add method. Adds the specified cross section to views array in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/pdf3dcrosssectionarray/add/ +--- +## PDF3DCrossSectionArray::Add method + + +Adds the specified cross section to views array . + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PDF3DCrossSectionArray::Add(System::SharedPtr crossSection) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| crossSection | System::SharedPtr\ | The cross section. | +## Remarks + + + + + + crossSection + + + The cross section. + + + +## See Also + +* Class [PDF3DCrossSection](../../pdf3dcrosssection/) +* Class [PDF3DCrossSectionArray](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dcrosssectionarray/get_count/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dcrosssectionarray/get_count/_index.md new file mode 100644 index 0000000000..ce66b98465 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dcrosssectionarray/get_count/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DCrossSectionArray::get_Count method +linktitle: get_Count +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DCrossSectionArray::get_Count method. Gets the cross section count in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/pdf3dcrosssectionarray/get_count/ +--- +## PDF3DCrossSectionArray::get_Count method + + +Gets the cross section count. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Annotations::PDF3DCrossSectionArray::get_Count() +``` + +## Remarks + + +The cross section count. +## See Also + +* Class [PDF3DCrossSectionArray](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dcrosssectionarray/idx_get/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dcrosssectionarray/idx_get/_index.md new file mode 100644 index 0000000000..5cb237d47c --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dcrosssectionarray/idx_get/_index.md @@ -0,0 +1,54 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DCrossSectionArray::idx_get method +linktitle: idx_get +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DCrossSectionArray::idx_get method. Gets the PDF3DCrossSection at the specified index in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/pdf3dcrosssectionarray/idx_get/ +--- +## PDF3DCrossSectionArray::idx_get method + + +Gets the [PDF3DCrossSection](../../pdf3dcrosssection/) at the specified index. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DCrossSectionArray::idx_get(int32_t index) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| index | int32_t | The index. | + +### ReturnValue + +Cross section. +## Remarks + + + + + + index + + + The index. + + + + + + IndexOutOfRangeException + + + Invalid index: index should be in the range [1..n] where n equals to the cross sections count. + + + +## See Also + +* Class [PDF3DCrossSection](../../pdf3dcrosssection/) +* Class [PDF3DCrossSectionArray](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dcrosssectionarray/idx_set/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dcrosssectionarray/idx_set/_index.md new file mode 100644 index 0000000000..95227d352b --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dcrosssectionarray/idx_set/_index.md @@ -0,0 +1,59 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DCrossSectionArray::idx_set method +linktitle: idx_set +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DCrossSectionArray::idx_set method. Sets the PDF3DCrossSection at the specified index in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.annotations/pdf3dcrosssectionarray/idx_set/ +--- +## PDF3DCrossSectionArray::idx_set method + + +Sets the [PDF3DCrossSection](../../pdf3dcrosssection/) at the specified index. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PDF3DCrossSectionArray::idx_set(int32_t index, System::SharedPtr value) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| index | int32_t | The index. | +| value | System::SharedPtr\ | Cross section. | +## Remarks + + + + + + index + + + The index. + + + + + value + + + Cross section. + + + + + + IndexOutOfRangeException + + + Invalid index: index should be in the range [1..n] where n equals to the cross sections count. + + + +## See Also + +* Class [PDF3DCrossSection](../../pdf3dcrosssection/) +* Class [PDF3DCrossSectionArray](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dcrosssectionarray/pdf3dcrosssectionarray/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dcrosssectionarray/pdf3dcrosssectionarray/_index.md new file mode 100644 index 0000000000..c4401c9517 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dcrosssectionarray/pdf3dcrosssectionarray/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DCrossSectionArray::PDF3DCrossSectionArray constructor +linktitle: PDF3DCrossSectionArray +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DCrossSectionArray::PDF3DCrossSectionArray constructor. Initializes a new instance of the PDF3DCrossSectionArray class in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/pdf3dcrosssectionarray/pdf3dcrosssectionarray/ +--- +## PDF3DCrossSectionArray::PDF3DCrossSectionArray constructor + + +Initializes a new instance of the [PDF3DCrossSectionArray](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::PDF3DCrossSectionArray::PDF3DCrossSectionArray(System::SharedPtr doc) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| doc | System::SharedPtr\ | The document. | +## Remarks + + + + + + doc + + + The document. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [PDF3DCrossSectionArray](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dcrosssectionarray/removeall/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dcrosssectionarray/removeall/_index.md new file mode 100644 index 0000000000..8bc9635880 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dcrosssectionarray/removeall/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DCrossSectionArray::RemoveAll method +linktitle: RemoveAll +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DCrossSectionArray::RemoveAll method. Removes all cross section from array in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/pdf3dcrosssectionarray/removeall/ +--- +## PDF3DCrossSectionArray::RemoveAll method + + +Removes all cross section from array. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PDF3DCrossSectionArray::RemoveAll() +``` + +## See Also + +* Class [PDF3DCrossSectionArray](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dcrosssectionarray/removeat/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dcrosssectionarray/removeat/_index.md new file mode 100644 index 0000000000..177fe22ae6 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dcrosssectionarray/removeat/_index.md @@ -0,0 +1,49 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DCrossSectionArray::RemoveAt method +linktitle: RemoveAt +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DCrossSectionArray::RemoveAt method. Removes cross section from array at specified index in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/pdf3dcrosssectionarray/removeat/ +--- +## PDF3DCrossSectionArray::RemoveAt method + + +Removes cross section from array at specified index. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PDF3DCrossSectionArray::RemoveAt(int32_t index) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| index | int32_t | The index of removed cross section in array. | +## Remarks + + + + + + index + + + The index of removed cross section in array. + + + + + + IndexOutOfRangeException + + + Invalid index: index should be in the range [1..n] where n equals to the cross sections count. + + + +## See Also + +* Class [PDF3DCrossSectionArray](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/_index.md new file mode 100644 index 0000000000..352d537a06 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/_index.md @@ -0,0 +1,35 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DCuttingPlaneOrientation class +linktitle: PDF3DCuttingPlaneOrientation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DCuttingPlaneOrientation class. Class PDF3DCuttingPlaneOrientation in C++.' +type: docs +weight: 7600 +url: /cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/ +--- +## PDF3DCuttingPlaneOrientation class + + +Class [PDF3DCuttingPlaneOrientation](./). + +```cpp +class PDF3DCuttingPlaneOrientation : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_AngleX](./get_anglex/)() const | Gets the angle to X axis. | +| [get_AngleY](./get_angley/)() const | Gets the angle to Y axis. | +| [get_AngleZ](./get_anglez/)() const | Gets the angle to Z axis. | +| [PDF3DCuttingPlaneOrientation](./pdf3dcuttingplaneorientation/)() | Initializes a new instance of the [PDF3DCuttingPlaneOrientation](./) class. | +| [PDF3DCuttingPlaneOrientation](./pdf3dcuttingplaneorientation/)(System::Nullable\, System::Nullable\, System::Nullable\) | Initializes a new instance of the [PDF3DCuttingPlaneOrientation](./) class. | +| [set_AngleX](./set_anglex/)(System::Nullable\) | Sets the angle to X axis. | +| [set_AngleY](./set_angley/)(System::Nullable\) | Sets the angle to Y axis. | +| [set_AngleZ](./set_anglez/)(System::Nullable\) | Sets the angle to Z axis. | +| [ToString](./tostring/)() const override | Returns a **System::String** that represents this instance. | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/get_anglex/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/get_anglex/_index.md new file mode 100644 index 0000000000..192308ddfc --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/get_anglex/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DCuttingPlaneOrientation::get_AngleX method +linktitle: get_AngleX +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DCuttingPlaneOrientation::get_AngleX method. Gets the angle to X axis in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/get_anglex/ +--- +## PDF3DCuttingPlaneOrientation::get_AngleX method + + +Gets the angle to X axis. + +```cpp +ASPOSE_PDF_SHARED_API System::Nullable Aspose::Pdf::Annotations::PDF3DCuttingPlaneOrientation::get_AngleX() const +``` + +## Remarks + + +The angle to X axis. +## See Also + +* Class [PDF3DCuttingPlaneOrientation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/get_angley/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/get_angley/_index.md new file mode 100644 index 0000000000..186cfbee49 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/get_angley/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DCuttingPlaneOrientation::get_AngleY method +linktitle: get_AngleY +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DCuttingPlaneOrientation::get_AngleY method. Gets the angle to Y axis in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/get_angley/ +--- +## PDF3DCuttingPlaneOrientation::get_AngleY method + + +Gets the angle to Y axis. + +```cpp +ASPOSE_PDF_SHARED_API System::Nullable Aspose::Pdf::Annotations::PDF3DCuttingPlaneOrientation::get_AngleY() const +``` + +## Remarks + + +The angle Y axis. +## See Also + +* Class [PDF3DCuttingPlaneOrientation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/get_anglez/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/get_anglez/_index.md new file mode 100644 index 0000000000..9194aebfd9 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/get_anglez/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DCuttingPlaneOrientation::get_AngleZ method +linktitle: get_AngleZ +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DCuttingPlaneOrientation::get_AngleZ method. Gets the angle to Z axis in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/get_anglez/ +--- +## PDF3DCuttingPlaneOrientation::get_AngleZ method + + +Gets the angle to Z axis. + +```cpp +ASPOSE_PDF_SHARED_API System::Nullable Aspose::Pdf::Annotations::PDF3DCuttingPlaneOrientation::get_AngleZ() const +``` + +## Remarks + + +The angle to Z axis. +## See Also + +* Class [PDF3DCuttingPlaneOrientation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/pdf3dcuttingplaneorientation/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/pdf3dcuttingplaneorientation/_index.md new file mode 100644 index 0000000000..90f9e88926 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/pdf3dcuttingplaneorientation/_index.md @@ -0,0 +1,72 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DCuttingPlaneOrientation::PDF3DCuttingPlaneOrientation constructor +linktitle: PDF3DCuttingPlaneOrientation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DCuttingPlaneOrientation::PDF3DCuttingPlaneOrientation constructor. Initializes a new instance of the PDF3DCuttingPlaneOrientation class in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/pdf3dcuttingplaneorientation/ +--- +## PDF3DCuttingPlaneOrientation::PDF3DCuttingPlaneOrientation() constructor + + +Initializes a new instance of the [PDF3DCuttingPlaneOrientation](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::PDF3DCuttingPlaneOrientation::PDF3DCuttingPlaneOrientation() +``` + +## See Also + +* Class [PDF3DCuttingPlaneOrientation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## PDF3DCuttingPlaneOrientation::PDF3DCuttingPlaneOrientation(System::Nullable\, System::Nullable\, System::Nullable\) constructor + + +Initializes a new instance of the [PDF3DCuttingPlaneOrientation](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::PDF3DCuttingPlaneOrientation::PDF3DCuttingPlaneOrientation(System::Nullable angleX, System::Nullable angleY, System::Nullable angleZ) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| angleX | System::Nullable\ | The angle x. | +| angleY | System::Nullable\ | The angle y. | +| angleZ | System::Nullable\ | The angle z. | +## Remarks + + + + + + angleX + + + The angle x. + + + + + angleY + + + The angle y. + + + + + angleZ + + + The angle z. + + + +## See Also + +* Class [PDF3DCuttingPlaneOrientation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/set_anglex/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/set_anglex/_index.md new file mode 100644 index 0000000000..e9b19f521f --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/set_anglex/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DCuttingPlaneOrientation::set_AngleX method +linktitle: set_AngleX +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DCuttingPlaneOrientation::set_AngleX method. Sets the angle to X axis in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/set_anglex/ +--- +## PDF3DCuttingPlaneOrientation::set_AngleX method + + +Sets the angle to X axis. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PDF3DCuttingPlaneOrientation::set_AngleX(System::Nullable value) +``` + +## Remarks + + +The angle to X axis. +## See Also + +* Class [PDF3DCuttingPlaneOrientation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/set_angley/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/set_angley/_index.md new file mode 100644 index 0000000000..c756dc6f8b --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/set_angley/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DCuttingPlaneOrientation::set_AngleY method +linktitle: set_AngleY +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DCuttingPlaneOrientation::set_AngleY method. Sets the angle to Y axis in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/set_angley/ +--- +## PDF3DCuttingPlaneOrientation::set_AngleY method + + +Sets the angle to Y axis. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PDF3DCuttingPlaneOrientation::set_AngleY(System::Nullable value) +``` + +## Remarks + + +The angle Y axis. +## See Also + +* Class [PDF3DCuttingPlaneOrientation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/set_anglez/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/set_anglez/_index.md new file mode 100644 index 0000000000..f16ae0b07d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/set_anglez/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DCuttingPlaneOrientation::set_AngleZ method +linktitle: set_AngleZ +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DCuttingPlaneOrientation::set_AngleZ method. Sets the angle to Z axis in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/set_anglez/ +--- +## PDF3DCuttingPlaneOrientation::set_AngleZ method + + +Sets the angle to Z axis. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PDF3DCuttingPlaneOrientation::set_AngleZ(System::Nullable value) +``` + +## Remarks + + +The angle to Z axis. +## See Also + +* Class [PDF3DCuttingPlaneOrientation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/tostring/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/tostring/_index.md new file mode 100644 index 0000000000..df4002fafc --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/tostring/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DCuttingPlaneOrientation::ToString method +linktitle: ToString +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DCuttingPlaneOrientation::ToString method. Returns a System::String that represents this instance in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.annotations/pdf3dcuttingplaneorientation/tostring/ +--- +## PDF3DCuttingPlaneOrientation::ToString method + + +Returns a **System::String** that represents this instance. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::PDF3DCuttingPlaneOrientation::ToString() const override +``` + + +### ReturnValue + +A **System::String** that represents this instance. + +## See Also + +* Class [PDF3DCuttingPlaneOrientation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/_index.md new file mode 100644 index 0000000000..bcdaef5312 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/_index.md @@ -0,0 +1,45 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DLightingScheme class +linktitle: PDF3DLightingScheme +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DLightingScheme class. Class PDF3DLightingScheme in C++.' +type: docs +weight: 7700 +url: /cpp/aspose.pdf.annotations/pdf3dlightingscheme/ +--- +## PDF3DLightingScheme class + + +Class [PDF3DLightingScheme](./). + +```cpp +class PDF3DLightingScheme : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_Type](./get_type/)() const | Gets the lighting scheme type. | +| [PDF3DLightingScheme](./pdf3dlightingscheme/)(LightingSchemeType) | Initializes a new instance of the [PDF3DLightingScheme](./) class. | +| [PDF3DLightingScheme](./pdf3dlightingscheme/)(System::String) | Initializes a new instance of the [PDF3DLightingScheme](./) class. | +## Fields + +| Field | Description | +| --- | --- | +| static [Artwork](./artwork/) | The "Artwork" lighting scheme. | +| static [Blue](./blue/) | The "Blue" lighting scheme. | +| static [CAD](./cad/) | The "Cad" lighting scheme. | +| static [Cube](./cube/) | The "Cube" lighting scheme. | +| static [Day](./day/) | The "Day" lighting scheme. | +| static [Hard](./hard/) | The "Hard" lighting scheme. | +| static [Headlamp](./headlamp/) | The "Headlamp" lighting scheme. | +| static [Night](./night/) | The "Night" lighting scheme. | +| static [None](./none/) | The "None" lighting scheme. | +| static [Primary](./primary/) | The "Primary" lighting scheme. | +| static [Red](./red/) | The "Red" lighting scheme. | +| static [White](./white/) | The "White" lighting scheme. | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/artwork/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/artwork/_index.md new file mode 100644 index 0000000000..cac09c735e --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/artwork/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DLightingScheme::Artwork field +linktitle: Artwork +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DLightingScheme::Artwork field. The "Artwork" lighting scheme in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/pdf3dlightingscheme/artwork/ +--- +## Artwork field + + +The "Artwork" lighting scheme. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DLightingScheme::Artwork +``` + +## See Also + +* Class [PDF3DLightingScheme](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/blue/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/blue/_index.md new file mode 100644 index 0000000000..da635ffe20 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/blue/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DLightingScheme::Blue field +linktitle: Blue +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DLightingScheme::Blue field. The "Blue" lighting scheme in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.annotations/pdf3dlightingscheme/blue/ +--- +## Blue field + + +The "Blue" lighting scheme. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DLightingScheme::Blue +``` + +## See Also + +* Class [PDF3DLightingScheme](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/cad/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/cad/_index.md new file mode 100644 index 0000000000..327a52129e --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/cad/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DLightingScheme::CAD field +linktitle: CAD +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DLightingScheme::CAD field. The "Cad" lighting scheme in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.annotations/pdf3dlightingscheme/cad/ +--- +## CAD field + + +The "Cad" lighting scheme. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DLightingScheme::CAD +``` + +## See Also + +* Class [PDF3DLightingScheme](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/cube/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/cube/_index.md new file mode 100644 index 0000000000..8d1593b156 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/cube/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DLightingScheme::Cube field +linktitle: Cube +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DLightingScheme::Cube field. The "Cube" lighting scheme in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.annotations/pdf3dlightingscheme/cube/ +--- +## Cube field + + +The "Cube" lighting scheme. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DLightingScheme::Cube +``` + +## See Also + +* Class [PDF3DLightingScheme](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/day/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/day/_index.md new file mode 100644 index 0000000000..b9048df888 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/day/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DLightingScheme::Day field +linktitle: Day +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DLightingScheme::Day field. The "Day" lighting scheme in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/pdf3dlightingscheme/day/ +--- +## Day field + + +The "Day" lighting scheme. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DLightingScheme::Day +``` + +## See Also + +* Class [PDF3DLightingScheme](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/get_type/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/get_type/_index.md new file mode 100644 index 0000000000..912310be83 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/get_type/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DLightingScheme::get_Type method +linktitle: get_Type +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DLightingScheme::get_Type method. Gets the lighting scheme type in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/pdf3dlightingscheme/get_type/ +--- +## PDF3DLightingScheme::get_Type method + + +Gets the lighting scheme type. + +```cpp +ASPOSE_PDF_SHARED_API LightingSchemeType Aspose::Pdf::Annotations::PDF3DLightingScheme::get_Type() const +``` + +## Remarks + + +The lighting scheme type. +## See Also + +* Enum [LightingSchemeType](../../lightingschemetype/) +* Class [PDF3DLightingScheme](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/hard/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/hard/_index.md new file mode 100644 index 0000000000..1a0d74ce92 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/hard/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DLightingScheme::Hard field +linktitle: Hard +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DLightingScheme::Hard field. The "Hard" lighting scheme in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.annotations/pdf3dlightingscheme/hard/ +--- +## Hard field + + +The "Hard" lighting scheme. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DLightingScheme::Hard +``` + +## See Also + +* Class [PDF3DLightingScheme](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/headlamp/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/headlamp/_index.md new file mode 100644 index 0000000000..ff39302d0b --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/headlamp/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DLightingScheme::Headlamp field +linktitle: Headlamp +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DLightingScheme::Headlamp field. The "Headlamp" lighting scheme in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.annotations/pdf3dlightingscheme/headlamp/ +--- +## Headlamp field + + +The "Headlamp" lighting scheme. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DLightingScheme::Headlamp +``` + +## See Also + +* Class [PDF3DLightingScheme](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/night/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/night/_index.md new file mode 100644 index 0000000000..7c4d3e80d1 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/night/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DLightingScheme::Night field +linktitle: Night +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DLightingScheme::Night field. The "Night" lighting scheme in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.annotations/pdf3dlightingscheme/night/ +--- +## Night field + + +The "Night" lighting scheme. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DLightingScheme::Night +``` + +## See Also + +* Class [PDF3DLightingScheme](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/none/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/none/_index.md new file mode 100644 index 0000000000..a0d9d2e36c --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/none/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DLightingScheme::None field +linktitle: None +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DLightingScheme::None field. The "None" lighting scheme in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/pdf3dlightingscheme/none/ +--- +## None field + + +The "None" lighting scheme. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DLightingScheme::None +``` + +## See Also + +* Class [PDF3DLightingScheme](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/pdf3dlightingscheme/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/pdf3dlightingscheme/_index.md new file mode 100644 index 0000000000..4dfbe047b3 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/pdf3dlightingscheme/_index.md @@ -0,0 +1,81 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DLightingScheme::PDF3DLightingScheme constructor +linktitle: PDF3DLightingScheme +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DLightingScheme::PDF3DLightingScheme constructor. Initializes a new instance of the PDF3DLightingScheme class in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/pdf3dlightingscheme/pdf3dlightingscheme/ +--- +## PDF3DLightingScheme::PDF3DLightingScheme(LightingSchemeType) constructor + + +Initializes a new instance of the [PDF3DLightingScheme](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::PDF3DLightingScheme::PDF3DLightingScheme(LightingSchemeType type) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| type | LightingSchemeType | The lighting scheme type. | +## Remarks + + + + + + type + + + The lighting scheme type. + + + +## See Also + +* Enum [LightingSchemeType](../../lightingschemetype/) +* Class [PDF3DLightingScheme](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## PDF3DLightingScheme::PDF3DLightingScheme(System::String) constructor + + +Initializes a new instance of the [PDF3DLightingScheme](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::PDF3DLightingScheme::PDF3DLightingScheme(System::String typeName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| typeName | System::String | Name of the lighting scheme type. | +## Remarks + + + + + + typeName + + + Name of the lighting scheme type. + + + + + + ArgumentException + + + Unknown lighting scheme type argument + + + +## See Also + +* Class [PDF3DLightingScheme](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/primary/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/primary/_index.md new file mode 100644 index 0000000000..877b52d21b --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/primary/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DLightingScheme::Primary field +linktitle: Primary +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DLightingScheme::Primary field. The "Primary" lighting scheme in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.annotations/pdf3dlightingscheme/primary/ +--- +## Primary field + + +The "Primary" lighting scheme. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DLightingScheme::Primary +``` + +## See Also + +* Class [PDF3DLightingScheme](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/red/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/red/_index.md new file mode 100644 index 0000000000..ad84107f95 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/red/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DLightingScheme::Red field +linktitle: Red +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DLightingScheme::Red field. The "Red" lighting scheme in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.annotations/pdf3dlightingscheme/red/ +--- +## Red field + + +The "Red" lighting scheme. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DLightingScheme::Red +``` + +## See Also + +* Class [PDF3DLightingScheme](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/white/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/white/_index.md new file mode 100644 index 0000000000..d127968fc5 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dlightingscheme/white/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DLightingScheme::White field +linktitle: White +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DLightingScheme::White field. The "White" lighting scheme in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/pdf3dlightingscheme/white/ +--- +## White field + + +The "White" lighting scheme. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DLightingScheme::White +``` + +## See Also + +* Class [PDF3DLightingScheme](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3drendermode/_index.md b/english/cpp/aspose.pdf.annotations/pdf3drendermode/_index.md new file mode 100644 index 0000000000..d02c416f9c --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3drendermode/_index.md @@ -0,0 +1,55 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DRenderMode class +linktitle: PDF3DRenderMode +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DRenderMode class. Class PDF3DRenderMode in C++.' +type: docs +weight: 7800 +url: /cpp/aspose.pdf.annotations/pdf3drendermode/ +--- +## PDF3DRenderMode class + + +Class [PDF3DRenderMode](./). + +```cpp +class PDF3DRenderMode : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_Type](./get_type/)() const | Gets the type. | +| [GetAuxiliaryColour](./getauxiliarycolour/)() | Gets the auxiliary colour. | +| [GetCreaseValue](./getcreasevalue/)() | Gets the crease value. | +| [GetFaceColor](./getfacecolor/)() | Gets the color of the face. | +| [GetOpacity](./getopacity/)() | Gets the opacity. | +| [PDF3DRenderMode](./pdf3drendermode/)(RenderModeType) | Initializes a new instance of the [PDF3DRenderMode](./) class. | +| [PDF3DRenderMode](./pdf3drendermode/)(System::String) | Initializes a new instance of the [PDF3DRenderMode](./) class. | +| [SetAuxiliaryColour](./setauxiliarycolour/)(System::SharedPtr\) | Sets the auxiliary colour. | +| [SetCreaseValue](./setcreasevalue/)(double) | Sets the crease value. | +| [SetFaceColor](./setfacecolor/)(System::SharedPtr\) | Sets the color of the face. | +| [SetOpacity](./setopacity/)(double) | Sets the opacity. | +## Fields + +| Field | Description | +| --- | --- | +| static [BoundingBox](./boundingbox/) | The "BoundingBox" render mode. | +| static [Illustration](./illustration/) | The "Illustration" render mode. | +| static [ShadedIllustration](./shadedillustration/) | The "ShadedIllustration" render mode. | +| static [ShadedVertices](./shadedvertices/) | The "ShadedVertices" render mode. | +| static [ShadedWireframe](./shadedwireframe/) | The "ShadedWireFrame" render mode. | +| static [Solid](./solid/) | The "Solid" render mode. | +| static [SolidOutline](./solidoutline/) | The "SolidOutline" render mode. | +| static [SolidWireframe](./solidwireframe/) | The "SolidWireFrame" render mode. | +| static [Transparent](./transparent/) | The "Transparent" render mode. | +| static [TransparentBoundingBox](./transparentboundingbox/) | The "TransparentBoundingBox" render mode. | +| static [TransparentBoundingBoxOutline](./transparentboundingboxoutline/) | The "TransparentBoundingBoxOutline" render mode. | +| static [TransparentWareFrame](./transparentwareframe/) | The "TransparentWareFrame" render mode. | +| static [Vertices](./vertices/) | The "Vertices" render mode. | +| static [Wireframe](./wireframe/) | The "WireFrame" render mode. | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3drendermode/boundingbox/_index.md b/english/cpp/aspose.pdf.annotations/pdf3drendermode/boundingbox/_index.md new file mode 100644 index 0000000000..2cacbc9006 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3drendermode/boundingbox/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DRenderMode::BoundingBox field +linktitle: BoundingBox +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DRenderMode::BoundingBox field. The "BoundingBox" render mode in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.annotations/pdf3drendermode/boundingbox/ +--- +## BoundingBox field + + +The "BoundingBox" render mode. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DRenderMode::BoundingBox +``` + +## See Also + +* Class [PDF3DRenderMode](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3drendermode/get_type/_index.md b/english/cpp/aspose.pdf.annotations/pdf3drendermode/get_type/_index.md new file mode 100644 index 0000000000..1920f7c619 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3drendermode/get_type/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DRenderMode::get_Type method +linktitle: get_Type +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DRenderMode::get_Type method. Gets the type in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/pdf3drendermode/get_type/ +--- +## PDF3DRenderMode::get_Type method + + +Gets the type. + +```cpp +ASPOSE_PDF_SHARED_API RenderModeType Aspose::Pdf::Annotations::PDF3DRenderMode::get_Type() const +``` + +## Remarks + + +The type. +## See Also + +* Enum [RenderModeType](../../rendermodetype/) +* Class [PDF3DRenderMode](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3drendermode/getauxiliarycolour/_index.md b/english/cpp/aspose.pdf.annotations/pdf3drendermode/getauxiliarycolour/_index.md new file mode 100644 index 0000000000..84bcb5e480 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3drendermode/getauxiliarycolour/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DRenderMode::GetAuxiliaryColour method +linktitle: GetAuxiliaryColour +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DRenderMode::GetAuxiliaryColour method. Gets the auxiliary colour in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/pdf3drendermode/getauxiliarycolour/ +--- +## PDF3DRenderMode::GetAuxiliaryColour method + + +Gets the auxiliary colour. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DRenderMode::GetAuxiliaryColour() +``` + + +### ReturnValue + +[Color](../../../aspose.pdf/color/). + +## See Also + +* Class [Color](../../../aspose.pdf/color/) +* Class [PDF3DRenderMode](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3drendermode/getcreasevalue/_index.md b/english/cpp/aspose.pdf.annotations/pdf3drendermode/getcreasevalue/_index.md new file mode 100644 index 0000000000..156f9564e8 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3drendermode/getcreasevalue/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DRenderMode::GetCreaseValue method +linktitle: GetCreaseValue +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DRenderMode::GetCreaseValue method. Gets the crease value in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.annotations/pdf3drendermode/getcreasevalue/ +--- +## PDF3DRenderMode::GetCreaseValue method + + +Gets the crease value. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Annotations::PDF3DRenderMode::GetCreaseValue() +``` + + +### ReturnValue + +**System.Double**. + +## See Also + +* Class [PDF3DRenderMode](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3drendermode/getfacecolor/_index.md b/english/cpp/aspose.pdf.annotations/pdf3drendermode/getfacecolor/_index.md new file mode 100644 index 0000000000..155d99d7b7 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3drendermode/getfacecolor/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DRenderMode::GetFaceColor method +linktitle: GetFaceColor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DRenderMode::GetFaceColor method. Gets the color of the face in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/pdf3drendermode/getfacecolor/ +--- +## PDF3DRenderMode::GetFaceColor method + + +Gets the color of the face. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DRenderMode::GetFaceColor() +``` + + +### ReturnValue + +Object. + +## See Also + +* Class [PDF3DRenderMode](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3drendermode/getopacity/_index.md b/english/cpp/aspose.pdf.annotations/pdf3drendermode/getopacity/_index.md new file mode 100644 index 0000000000..76a128c628 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3drendermode/getopacity/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DRenderMode::GetOpacity method +linktitle: GetOpacity +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DRenderMode::GetOpacity method. Gets the opacity in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.annotations/pdf3drendermode/getopacity/ +--- +## PDF3DRenderMode::GetOpacity method + + +Gets the opacity. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Annotations::PDF3DRenderMode::GetOpacity() +``` + + +### ReturnValue + +**System.Double**. + +## See Also + +* Class [PDF3DRenderMode](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3drendermode/illustration/_index.md b/english/cpp/aspose.pdf.annotations/pdf3drendermode/illustration/_index.md new file mode 100644 index 0000000000..60b1a1244e --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3drendermode/illustration/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DRenderMode::Illustration field +linktitle: Illustration +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DRenderMode::Illustration field. The "Illustration" render mode in C++.' +type: docs +weight: 2200 +url: /cpp/aspose.pdf.annotations/pdf3drendermode/illustration/ +--- +## Illustration field + + +The "Illustration" render mode. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DRenderMode::Illustration +``` + +## See Also + +* Class [PDF3DRenderMode](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3drendermode/pdf3drendermode/_index.md b/english/cpp/aspose.pdf.annotations/pdf3drendermode/pdf3drendermode/_index.md new file mode 100644 index 0000000000..f32deffc89 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3drendermode/pdf3drendermode/_index.md @@ -0,0 +1,81 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DRenderMode::PDF3DRenderMode constructor +linktitle: PDF3DRenderMode +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DRenderMode::PDF3DRenderMode constructor. Initializes a new instance of the PDF3DRenderMode class in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/pdf3drendermode/pdf3drendermode/ +--- +## PDF3DRenderMode::PDF3DRenderMode(RenderModeType) constructor + + +Initializes a new instance of the [PDF3DRenderMode](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::PDF3DRenderMode::PDF3DRenderMode(RenderModeType subtype) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| subtype | RenderModeType | The render mode type. | +## Remarks + + + + + + subtype + + + The render mode type. + + + +## See Also + +* Enum [RenderModeType](../../rendermodetype/) +* Class [PDF3DRenderMode](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## PDF3DRenderMode::PDF3DRenderMode(System::String) constructor + + +Initializes a new instance of the [PDF3DRenderMode](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::PDF3DRenderMode::PDF3DRenderMode(System::String typeName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| typeName | System::String | Name of the type. | +## Remarks + + + + + + typeName + + + Name of the type. + + + + + + ArgumentException + + + Unknown a render mode type argument + + + +## See Also + +* Class [PDF3DRenderMode](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3drendermode/setauxiliarycolour/_index.md b/english/cpp/aspose.pdf.annotations/pdf3drendermode/setauxiliarycolour/_index.md new file mode 100644 index 0000000000..5212e6cb41 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3drendermode/setauxiliarycolour/_index.md @@ -0,0 +1,46 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DRenderMode::SetAuxiliaryColour method +linktitle: SetAuxiliaryColour +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DRenderMode::SetAuxiliaryColour method. Sets the auxiliary colour in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/pdf3drendermode/setauxiliarycolour/ +--- +## PDF3DRenderMode::SetAuxiliaryColour method + + +Sets the auxiliary colour. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DRenderMode::SetAuxiliaryColour(System::SharedPtr color) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| color | System::SharedPtr\ | The color. | + +### ReturnValue + +[PDF3DRenderMode](../). +## Remarks + + + + + + color + + + The color. + + + +## See Also + +* Class [PDF3DRenderMode](../) +* Class [Color](../../../aspose.pdf/color/) +* Class [PDF3DRenderMode](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3drendermode/setcreasevalue/_index.md b/english/cpp/aspose.pdf.annotations/pdf3drendermode/setcreasevalue/_index.md new file mode 100644 index 0000000000..8adb80edd5 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3drendermode/setcreasevalue/_index.md @@ -0,0 +1,45 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DRenderMode::SetCreaseValue method +linktitle: SetCreaseValue +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DRenderMode::SetCreaseValue method. Sets the crease value in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.annotations/pdf3drendermode/setcreasevalue/ +--- +## PDF3DRenderMode::SetCreaseValue method + + +Sets the crease value. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DRenderMode::SetCreaseValue(double creaseValue) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| creaseValue | double | The crease value. | + +### ReturnValue + +[PDF3DRenderMode](../). +## Remarks + + + + + + creaseValue + + + The crease value. + + + +## See Also + +* Class [PDF3DRenderMode](../) +* Class [PDF3DRenderMode](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3drendermode/setfacecolor/_index.md b/english/cpp/aspose.pdf.annotations/pdf3drendermode/setfacecolor/_index.md new file mode 100644 index 0000000000..805f649fcf --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3drendermode/setfacecolor/_index.md @@ -0,0 +1,46 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DRenderMode::SetFaceColor method +linktitle: SetFaceColor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DRenderMode::SetFaceColor method. Sets the color of the face in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/pdf3drendermode/setfacecolor/ +--- +## PDF3DRenderMode::SetFaceColor method + + +Sets the color of the face. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DRenderMode::SetFaceColor(System::SharedPtr color) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| color | System::SharedPtr\ | The color. | + +### ReturnValue + +[PDF3DRenderMode](../). +## Remarks + + + + + + color + + + The color. + + + +## See Also + +* Class [PDF3DRenderMode](../) +* Class [Color](../../../aspose.pdf/color/) +* Class [PDF3DRenderMode](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3drendermode/setopacity/_index.md b/english/cpp/aspose.pdf.annotations/pdf3drendermode/setopacity/_index.md new file mode 100644 index 0000000000..307f01110d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3drendermode/setopacity/_index.md @@ -0,0 +1,45 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DRenderMode::SetOpacity method +linktitle: SetOpacity +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DRenderMode::SetOpacity method. Sets the opacity in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.annotations/pdf3drendermode/setopacity/ +--- +## PDF3DRenderMode::SetOpacity method + + +Sets the opacity. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DRenderMode::SetOpacity(double opacity) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| opacity | double | The opacity. | + +### ReturnValue + +[PDF3DRenderMode](../). +## Remarks + + + + + + opacity + + + The opacity. + + + +## See Also + +* Class [PDF3DRenderMode](../) +* Class [PDF3DRenderMode](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3drendermode/shadedillustration/_index.md b/english/cpp/aspose.pdf.annotations/pdf3drendermode/shadedillustration/_index.md new file mode 100644 index 0000000000..6a4747ec52 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3drendermode/shadedillustration/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DRenderMode::ShadedIllustration field +linktitle: ShadedIllustration +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DRenderMode::ShadedIllustration field. The "ShadedIllustration" render mode in C++.' +type: docs +weight: 2400 +url: /cpp/aspose.pdf.annotations/pdf3drendermode/shadedillustration/ +--- +## ShadedIllustration field + + +The "ShadedIllustration" render mode. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DRenderMode::ShadedIllustration +``` + +## See Also + +* Class [PDF3DRenderMode](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3drendermode/shadedvertices/_index.md b/english/cpp/aspose.pdf.annotations/pdf3drendermode/shadedvertices/_index.md new file mode 100644 index 0000000000..4dcf701d52 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3drendermode/shadedvertices/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DRenderMode::ShadedVertices field +linktitle: ShadedVertices +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DRenderMode::ShadedVertices field. The "ShadedVertices" render mode in C++.' +type: docs +weight: 2100 +url: /cpp/aspose.pdf.annotations/pdf3drendermode/shadedvertices/ +--- +## ShadedVertices field + + +The "ShadedVertices" render mode. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DRenderMode::ShadedVertices +``` + +## See Also + +* Class [PDF3DRenderMode](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3drendermode/shadedwireframe/_index.md b/english/cpp/aspose.pdf.annotations/pdf3drendermode/shadedwireframe/_index.md new file mode 100644 index 0000000000..a68b0d355b --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3drendermode/shadedwireframe/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DRenderMode::ShadedWireframe field +linktitle: ShadedWireframe +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DRenderMode::ShadedWireframe field. The "ShadedWireFrame" render mode in C++.' +type: docs +weight: 1900 +url: /cpp/aspose.pdf.annotations/pdf3drendermode/shadedwireframe/ +--- +## ShadedWireframe field + + +The "ShadedWireFrame" render mode. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DRenderMode::ShadedWireframe +``` + +## See Also + +* Class [PDF3DRenderMode](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3drendermode/solid/_index.md b/english/cpp/aspose.pdf.annotations/pdf3drendermode/solid/_index.md new file mode 100644 index 0000000000..72f52b3bf6 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3drendermode/solid/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DRenderMode::Solid field +linktitle: Solid +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DRenderMode::Solid field. The "Solid" render mode in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.annotations/pdf3drendermode/solid/ +--- +## Solid field + + +The "Solid" render mode. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DRenderMode::Solid +``` + +## See Also + +* Class [PDF3DRenderMode](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3drendermode/solidoutline/_index.md b/english/cpp/aspose.pdf.annotations/pdf3drendermode/solidoutline/_index.md new file mode 100644 index 0000000000..cbf87b80c4 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3drendermode/solidoutline/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DRenderMode::SolidOutline field +linktitle: SolidOutline +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DRenderMode::SolidOutline field. The "SolidOutline" render mode in C++.' +type: docs +weight: 2300 +url: /cpp/aspose.pdf.annotations/pdf3drendermode/solidoutline/ +--- +## SolidOutline field + + +The "SolidOutline" render mode. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DRenderMode::SolidOutline +``` + +## See Also + +* Class [PDF3DRenderMode](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3drendermode/solidwireframe/_index.md b/english/cpp/aspose.pdf.annotations/pdf3drendermode/solidwireframe/_index.md new file mode 100644 index 0000000000..12ac1551b3 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3drendermode/solidwireframe/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DRenderMode::SolidWireframe field +linktitle: SolidWireframe +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DRenderMode::SolidWireframe field. The "SolidWireFrame" render mode in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.annotations/pdf3drendermode/solidwireframe/ +--- +## SolidWireframe field + + +The "SolidWireFrame" render mode. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DRenderMode::SolidWireframe +``` + +## See Also + +* Class [PDF3DRenderMode](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3drendermode/transparent/_index.md b/english/cpp/aspose.pdf.annotations/pdf3drendermode/transparent/_index.md new file mode 100644 index 0000000000..bd013a1974 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3drendermode/transparent/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DRenderMode::Transparent field +linktitle: Transparent +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DRenderMode::Transparent field. The "Transparent" render mode in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.annotations/pdf3drendermode/transparent/ +--- +## Transparent field + + +The "Transparent" render mode. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DRenderMode::Transparent +``` + +## See Also + +* Class [PDF3DRenderMode](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3drendermode/transparentboundingbox/_index.md b/english/cpp/aspose.pdf.annotations/pdf3drendermode/transparentboundingbox/_index.md new file mode 100644 index 0000000000..495ea507d3 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3drendermode/transparentboundingbox/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DRenderMode::TransparentBoundingBox field +linktitle: TransparentBoundingBox +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DRenderMode::TransparentBoundingBox field. The "TransparentBoundingBox" render mode in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf.annotations/pdf3drendermode/transparentboundingbox/ +--- +## TransparentBoundingBox field + + +The "TransparentBoundingBox" render mode. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DRenderMode::TransparentBoundingBox +``` + +## See Also + +* Class [PDF3DRenderMode](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3drendermode/transparentboundingboxoutline/_index.md b/english/cpp/aspose.pdf.annotations/pdf3drendermode/transparentboundingboxoutline/_index.md new file mode 100644 index 0000000000..848d2b273d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3drendermode/transparentboundingboxoutline/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DRenderMode::TransparentBoundingBoxOutline field +linktitle: TransparentBoundingBoxOutline +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DRenderMode::TransparentBoundingBoxOutline field. The "TransparentBoundingBoxOutline" render mode in C++.' +type: docs +weight: 1700 +url: /cpp/aspose.pdf.annotations/pdf3drendermode/transparentboundingboxoutline/ +--- +## TransparentBoundingBoxOutline field + + +The "TransparentBoundingBoxOutline" render mode. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DRenderMode::TransparentBoundingBoxOutline +``` + +## See Also + +* Class [PDF3DRenderMode](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3drendermode/transparentwareframe/_index.md b/english/cpp/aspose.pdf.annotations/pdf3drendermode/transparentwareframe/_index.md new file mode 100644 index 0000000000..5fcfef071a --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3drendermode/transparentwareframe/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DRenderMode::TransparentWareFrame field +linktitle: TransparentWareFrame +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DRenderMode::TransparentWareFrame field. The "TransparentWareFrame" render mode in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.annotations/pdf3drendermode/transparentwareframe/ +--- +## TransparentWareFrame field + + +The "TransparentWareFrame" render mode. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DRenderMode::TransparentWareFrame +``` + +## See Also + +* Class [PDF3DRenderMode](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3drendermode/vertices/_index.md b/english/cpp/aspose.pdf.annotations/pdf3drendermode/vertices/_index.md new file mode 100644 index 0000000000..67356e6ac2 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3drendermode/vertices/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DRenderMode::Vertices field +linktitle: Vertices +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DRenderMode::Vertices field. The "Vertices" render mode in C++.' +type: docs +weight: 2000 +url: /cpp/aspose.pdf.annotations/pdf3drendermode/vertices/ +--- +## Vertices field + + +The "Vertices" render mode. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DRenderMode::Vertices +``` + +## See Also + +* Class [PDF3DRenderMode](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3drendermode/wireframe/_index.md b/english/cpp/aspose.pdf.annotations/pdf3drendermode/wireframe/_index.md new file mode 100644 index 0000000000..7dac13a10b --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3drendermode/wireframe/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DRenderMode::Wireframe field +linktitle: Wireframe +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DRenderMode::Wireframe field. The "WireFrame" render mode in C++.' +type: docs +weight: 1800 +url: /cpp/aspose.pdf.annotations/pdf3drendermode/wireframe/ +--- +## Wireframe field + + +The "WireFrame" render mode. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DRenderMode::Wireframe +``` + +## See Also + +* Class [PDF3DRenderMode](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dstream/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dstream/_index.md new file mode 100644 index 0000000000..88fc6bd939 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dstream/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DStream class +linktitle: PDF3DStream +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DStream class. Class PDF3DStream in C++.' +type: docs +weight: 7900 +url: /cpp/aspose.pdf.annotations/pdf3dstream/ +--- +## PDF3DStream class + + +Class [PDF3DStream](./). + +```cpp +class PDF3DStream : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_Content](./get_content/)() const | Gets the content. | +| [PDF3DStream](./pdf3dstream/)(System::SharedPtr\, System::SharedPtr\) | Initializes a new instance of the [PDF3DStream](./) class. | +| [set_Content](./set_content/)(System::SharedPtr\) | Sets the content. | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dstream/get_content/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dstream/get_content/_index.md new file mode 100644 index 0000000000..2d7052828a --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dstream/get_content/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DStream::get_Content method +linktitle: get_Content +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DStream::get_Content method. Gets the content in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/pdf3dstream/get_content/ +--- +## PDF3DStream::get_Content method + + +Gets the content. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DStream::get_Content() const +``` + +## Remarks + + +The content. +## See Also + +* Class [PDF3DContent](../../pdf3dcontent/) +* Class [PDF3DStream](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dstream/pdf3dstream/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dstream/pdf3dstream/_index.md new file mode 100644 index 0000000000..9da917a5f8 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dstream/pdf3dstream/_index.md @@ -0,0 +1,51 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DStream::PDF3DStream constructor +linktitle: PDF3DStream +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DStream::PDF3DStream constructor. Initializes a new instance of the PDF3DStream class in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/pdf3dstream/pdf3dstream/ +--- +## PDF3DStream::PDF3DStream constructor + + +Initializes a new instance of the [PDF3DStream](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::PDF3DStream::PDF3DStream(System::SharedPtr doc, System::SharedPtr pdf3DArtwork) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| doc | System::SharedPtr\ | The document. | +| pdf3DArtwork | System::SharedPtr\ | The 3D Artwork. | +## Remarks + + + + + + doc + + + The document. + + + + + pdf3DArtwork + + + The 3D Artwork. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [PDF3DArtwork](../../pdf3dartwork/) +* Class [PDF3DStream](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dstream/set_content/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dstream/set_content/_index.md new file mode 100644 index 0000000000..2225ad9f2b --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dstream/set_content/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DStream::set_Content method +linktitle: set_Content +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DStream::set_Content method. Sets the content in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/pdf3dstream/set_content/ +--- +## PDF3DStream::set_Content method + + +Sets the content. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PDF3DStream::set_Content(System::SharedPtr value) +``` + +## Remarks + + +The content. +## See Also + +* Class [PDF3DContent](../../pdf3dcontent/) +* Class [PDF3DStream](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dview/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dview/_index.md new file mode 100644 index 0000000000..cdef9b66bb --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dview/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DView class +linktitle: PDF3DView +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DView class. Class PDF3DView in C++.' +type: docs +weight: 8000 +url: /cpp/aspose.pdf.annotations/pdf3dview/ +--- +## PDF3DView class + + +Class [PDF3DView](./). + +```cpp +class PDF3DView : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_BackGroundColor](./get_backgroundcolor/)() const | Gets the color of the back ground of view. | +| [get_CameraOrbit](./get_cameraorbit/)() const | Gets the camera orbit of view. | +| [get_CameraPosition](./get_cameraposition/)() const | Gets the camera position of view. | +| [get_CrossSectionsArray](./get_crosssectionsarray/)() const | Gets the cross sections array of view. | +| [get_LightingScheme](./get_lightingscheme/)() const | Gets the lighting scheme of view. | +| [get_RenderMode](./get_rendermode/)() const | Gets the render mode of view. | +| [get_ViewName](./get_viewname/)() const | Gets the name of the view. | +| [PDF3DView](./pdf3dview/)(System::SharedPtr\, System::SharedPtr\, double, System::String) | Initializes a new instance of the [PDF3DView](./) class. | +| [PDF3DView](./pdf3dview/)(System::SharedPtr\, System::SharedPtr\, System::String) | Initializes a new instance of the [PDF3DView](./) class. | +| [set_BackGroundColor](./set_backgroundcolor/)(System::SharedPtr\) | Sets the color of the back ground of view. | +| [set_CameraOrbit](./set_cameraorbit/)(double) | Sets the camera orbit of view. | +| [set_CameraPosition](./set_cameraposition/)(System::SharedPtr\) | Sets the camera position of view. | +| [set_LightingScheme](./set_lightingscheme/)(System::SharedPtr\) | Sets the lighting scheme of view. | +| [set_RenderMode](./set_rendermode/)(System::SharedPtr\) | Sets the render mode of view. | +| [set_ViewName](./set_viewname/)(System::String) | Sets the name of the view. | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dview/get_backgroundcolor/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dview/get_backgroundcolor/_index.md new file mode 100644 index 0000000000..bb4f3036b7 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dview/get_backgroundcolor/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DView::get_BackGroundColor method +linktitle: get_BackGroundColor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DView::get_BackGroundColor method. Gets the color of the back ground of view in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.annotations/pdf3dview/get_backgroundcolor/ +--- +## PDF3DView::get_BackGroundColor method + + +Gets the color of the back ground of view. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DView::get_BackGroundColor() const +``` + +## Remarks + + +The color of the back ground of view. +## See Also + +* Class [Color](../../../aspose.pdf/color/) +* Class [PDF3DView](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dview/get_cameraorbit/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dview/get_cameraorbit/_index.md new file mode 100644 index 0000000000..dcc65472e5 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dview/get_cameraorbit/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DView::get_CameraOrbit method +linktitle: get_CameraOrbit +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DView::get_CameraOrbit method. Gets the camera orbit of view in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.annotations/pdf3dview/get_cameraorbit/ +--- +## PDF3DView::get_CameraOrbit method + + +Gets the camera orbit of view. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Annotations::PDF3DView::get_CameraOrbit() const +``` + +## Remarks + + +The camera orbit of view. +## See Also + +* Class [PDF3DView](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dview/get_cameraposition/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dview/get_cameraposition/_index.md new file mode 100644 index 0000000000..e0cf2e0b07 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dview/get_cameraposition/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DView::get_CameraPosition method +linktitle: get_CameraPosition +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DView::get_CameraPosition method. Gets the camera position of view in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.annotations/pdf3dview/get_cameraposition/ +--- +## PDF3DView::get_CameraPosition method + + +Gets the camera position of view. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DView::get_CameraPosition() const +``` + +## Remarks + + +The camera position of view. +## See Also + +* Class [Matrix3D](../../../aspose.pdf/matrix3d/) +* Class [PDF3DView](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dview/get_crosssectionsarray/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dview/get_crosssectionsarray/_index.md new file mode 100644 index 0000000000..920bedaa23 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dview/get_crosssectionsarray/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DView::get_CrossSectionsArray method +linktitle: get_CrossSectionsArray +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DView::get_CrossSectionsArray method. Gets the cross sections array of view in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/pdf3dview/get_crosssectionsarray/ +--- +## PDF3DView::get_CrossSectionsArray method + + +Gets the cross sections array of view. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DView::get_CrossSectionsArray() const +``` + +## Remarks + + +The cross sections array of view. +## See Also + +* Class [PDF3DCrossSectionArray](../../pdf3dcrosssectionarray/) +* Class [PDF3DView](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dview/get_lightingscheme/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dview/get_lightingscheme/_index.md new file mode 100644 index 0000000000..f36ea22ddb --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dview/get_lightingscheme/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DView::get_LightingScheme method +linktitle: get_LightingScheme +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DView::get_LightingScheme method. Gets the lighting scheme of view in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/pdf3dview/get_lightingscheme/ +--- +## PDF3DView::get_LightingScheme method + + +Gets the lighting scheme of view. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DView::get_LightingScheme() const +``` + +## Remarks + + +The lighting scheme of view. +## See Also + +* Class [PDF3DLightingScheme](../../pdf3dlightingscheme/) +* Class [PDF3DView](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dview/get_rendermode/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dview/get_rendermode/_index.md new file mode 100644 index 0000000000..1da32b8f69 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dview/get_rendermode/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DView::get_RenderMode method +linktitle: get_RenderMode +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DView::get_RenderMode method. Gets the render mode of view in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/pdf3dview/get_rendermode/ +--- +## PDF3DView::get_RenderMode method + + +Gets the render mode of view. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DView::get_RenderMode() const +``` + +## Remarks + + +The render mode of view. +## See Also + +* Class [PDF3DRenderMode](../../pdf3drendermode/) +* Class [PDF3DView](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dview/get_viewname/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dview/get_viewname/_index.md new file mode 100644 index 0000000000..d38efe7798 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dview/get_viewname/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DView::get_ViewName method +linktitle: get_ViewName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DView::get_ViewName method. Gets the name of the view in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/pdf3dview/get_viewname/ +--- +## PDF3DView::get_ViewName method + + +Gets the name of the view. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::PDF3DView::get_ViewName() const +``` + +## Remarks + + +The name of the view. +## See Also + +* Class [PDF3DView](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dview/pdf3dview/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dview/pdf3dview/_index.md new file mode 100644 index 0000000000..476ecde8fe --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dview/pdf3dview/_index.md @@ -0,0 +1,120 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DView::PDF3DView constructor +linktitle: PDF3DView +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DView::PDF3DView constructor. Initializes a new instance of the PDF3DView class in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.annotations/pdf3dview/pdf3dview/ +--- +## PDF3DView::PDF3DView(System::SharedPtr\, System::SharedPtr\, double, System::String) constructor + + +Initializes a new instance of the [PDF3DView](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::PDF3DView::PDF3DView(System::SharedPtr doc, System::SharedPtr cameraPosition, double cameraOrbit, System::String viewName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| doc | System::SharedPtr\ | The document. | +| cameraPosition | System::SharedPtr\ | The camera position. | +| cameraOrbit | double | The camera orbit. | +| viewName | System::String | Name of the view. | +## Remarks + + + + + + doc + + + The document. + + + + + cameraPosition + + + The camera position. + + + + + cameraOrbit + + + The camera orbit. + + + + + viewName + + + Name of the view. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [Matrix3D](../../../aspose.pdf/matrix3d/) +* Class [PDF3DView](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## PDF3DView::PDF3DView(System::SharedPtr\, System::SharedPtr\, System::String) constructor + + +Initializes a new instance of the [PDF3DView](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::PDF3DView::PDF3DView(System::SharedPtr doc, System::SharedPtr view, System::String viewName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| doc | System::SharedPtr\ | The document. | +| view | System::SharedPtr\ | The view. | +| viewName | System::String | Name of the view. | +## Remarks + + + + + + doc + + + The document. + + + + + view + + + The view. + + + + + viewName + + + Name of the view. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [PDF3DView](../) +* Class [PDF3DView](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dview/set_backgroundcolor/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dview/set_backgroundcolor/_index.md new file mode 100644 index 0000000000..560ee46317 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dview/set_backgroundcolor/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DView::set_BackGroundColor method +linktitle: set_BackGroundColor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DView::set_BackGroundColor method. Sets the color of the back ground of view in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.annotations/pdf3dview/set_backgroundcolor/ +--- +## PDF3DView::set_BackGroundColor method + + +Sets the color of the back ground of view. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PDF3DView::set_BackGroundColor(System::SharedPtr value) +``` + +## Remarks + + +The color of the back ground of view. +## See Also + +* Class [Color](../../../aspose.pdf/color/) +* Class [PDF3DView](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dview/set_cameraorbit/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dview/set_cameraorbit/_index.md new file mode 100644 index 0000000000..860275de7b --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dview/set_cameraorbit/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DView::set_CameraOrbit method +linktitle: set_CameraOrbit +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DView::set_CameraOrbit method. Sets the camera orbit of view in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.annotations/pdf3dview/set_cameraorbit/ +--- +## PDF3DView::set_CameraOrbit method + + +Sets the camera orbit of view. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PDF3DView::set_CameraOrbit(double value) +``` + +## Remarks + + +The camera orbit of view. +## See Also + +* Class [PDF3DView](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dview/set_cameraposition/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dview/set_cameraposition/_index.md new file mode 100644 index 0000000000..86da60bf25 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dview/set_cameraposition/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DView::set_CameraPosition method +linktitle: set_CameraPosition +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DView::set_CameraPosition method. Sets the camera position of view in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.annotations/pdf3dview/set_cameraposition/ +--- +## PDF3DView::set_CameraPosition method + + +Sets the camera position of view. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PDF3DView::set_CameraPosition(System::SharedPtr value) +``` + +## Remarks + + +The camera position of view. +## See Also + +* Class [Matrix3D](../../../aspose.pdf/matrix3d/) +* Class [PDF3DView](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dview/set_lightingscheme/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dview/set_lightingscheme/_index.md new file mode 100644 index 0000000000..f56d2ef193 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dview/set_lightingscheme/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DView::set_LightingScheme method +linktitle: set_LightingScheme +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DView::set_LightingScheme method. Sets the lighting scheme of view in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/pdf3dview/set_lightingscheme/ +--- +## PDF3DView::set_LightingScheme method + + +Sets the lighting scheme of view. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PDF3DView::set_LightingScheme(System::SharedPtr value) +``` + +## Remarks + + +The lighting scheme of view. +## See Also + +* Class [PDF3DLightingScheme](../../pdf3dlightingscheme/) +* Class [PDF3DView](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dview/set_rendermode/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dview/set_rendermode/_index.md new file mode 100644 index 0000000000..1ec2a24d9c --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dview/set_rendermode/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DView::set_RenderMode method +linktitle: set_RenderMode +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DView::set_RenderMode method. Sets the render mode of view in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/pdf3dview/set_rendermode/ +--- +## PDF3DView::set_RenderMode method + + +Sets the render mode of view. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PDF3DView::set_RenderMode(System::SharedPtr value) +``` + +## Remarks + + +The render mode of view. +## See Also + +* Class [PDF3DRenderMode](../../pdf3drendermode/) +* Class [PDF3DView](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dview/set_viewname/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dview/set_viewname/_index.md new file mode 100644 index 0000000000..d9da15fec0 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dview/set_viewname/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DView::set_ViewName method +linktitle: set_ViewName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DView::set_ViewName method. Sets the name of the view in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.annotations/pdf3dview/set_viewname/ +--- +## PDF3DView::set_ViewName method + + +Sets the name of the view. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PDF3DView::set_ViewName(System::String value) +``` + +## Remarks + + +The name of the view. +## See Also + +* Class [PDF3DView](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dviewarray/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dviewarray/_index.md new file mode 100644 index 0000000000..72a569e55f --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dviewarray/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DViewArray class +linktitle: PDF3DViewArray +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DViewArray class. Class PDF3DViewArray in C++.' +type: docs +weight: 8100 +url: /cpp/aspose.pdf.annotations/pdf3dviewarray/ +--- +## PDF3DViewArray class + + +Class [PDF3DViewArray](./). + +```cpp +class PDF3DViewArray : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Add](./add/)(System::SharedPtr\) | Adds the specified view. | +| [get_Count](./get_count/)() | Gets the views count. | +| [idx_get](./idx_get/)(int32_t) | Gets the [PDF3DView](../pdf3dview/) to view array at the specified index. | +| [idx_set](./idx_set/)(int32_t, System::SharedPtr\) | Sets the [PDF3DView](../pdf3dview/) to view array at the specified index. | +| [RemoveAll](./removeall/)() | Removes all views. | +| [RemoveAt](./removeat/)(int32_t) | Removes view from views array at specified index. | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dviewarray/add/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dviewarray/add/_index.md new file mode 100644 index 0000000000..f6b766f565 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dviewarray/add/_index.md @@ -0,0 +1,50 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DViewArray::Add method +linktitle: Add +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DViewArray::Add method. Adds the specified view in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/pdf3dviewarray/add/ +--- +## PDF3DViewArray::Add method + + +Adds the specified view. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PDF3DViewArray::Add(System::SharedPtr view) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| view | System::SharedPtr\ | The view. | +## Remarks + + + + + + view + + + The view. + + + + + + ArgumentException + + + Only one entry of 3D view is allowed + + + +## See Also + +* Class [PDF3DView](../../pdf3dview/) +* Class [PDF3DViewArray](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dviewarray/get_count/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dviewarray/get_count/_index.md new file mode 100644 index 0000000000..4fe8eac20d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dviewarray/get_count/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DViewArray::get_Count method +linktitle: get_Count +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DViewArray::get_Count method. Gets the views count in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/pdf3dviewarray/get_count/ +--- +## PDF3DViewArray::get_Count method + + +Gets the views count. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Annotations::PDF3DViewArray::get_Count() +``` + +## Remarks + + +The views count. +## See Also + +* Class [PDF3DViewArray](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dviewarray/idx_get/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dviewarray/idx_get/_index.md new file mode 100644 index 0000000000..ab7355e40b --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dviewarray/idx_get/_index.md @@ -0,0 +1,54 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DViewArray::idx_get method +linktitle: idx_get +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DViewArray::idx_get method. Gets the PDF3DView to view array at the specified index in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/pdf3dviewarray/idx_get/ +--- +## PDF3DViewArray::idx_get method + + +Gets the [PDF3DView](../../pdf3dview/) to view array at the specified index. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PDF3DViewArray::idx_get(int32_t index) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| index | int32_t | The index. | + +### ReturnValue + +[PDF3DView](../../pdf3dview/). +## Remarks + + + + + + index + + + The index. + + + + + + IndexOutOfRangeException + + + Invalid index: index should be in the range [1..n] where n equals to the views count. + + + +## See Also + +* Class [PDF3DView](../../pdf3dview/) +* Class [PDF3DViewArray](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dviewarray/idx_set/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dviewarray/idx_set/_index.md new file mode 100644 index 0000000000..052104c3b1 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dviewarray/idx_set/_index.md @@ -0,0 +1,60 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DViewArray::idx_set method +linktitle: idx_set +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DViewArray::idx_set method. Sets the PDF3DView to view array at the specified index in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/pdf3dviewarray/idx_set/ +--- +## PDF3DViewArray::idx_set method + + +Sets the [PDF3DView](../../pdf3dview/) to view array at the specified index. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PDF3DViewArray::idx_set(int32_t index, System::SharedPtr value) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| index | int32_t | The index. | +| value | System::SharedPtr\ | [PDF3DView](../../pdf3dview/). | +## Remarks + + + + + + index + + + The index. + + + + + value + + + + PDF3DView. + + + + + + IndexOutOfRangeException + + + Invalid index: index should be in the range [1..n] where n equals to the views count. + + + +## See Also + +* Class [PDF3DView](../../pdf3dview/) +* Class [PDF3DViewArray](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dviewarray/removeall/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dviewarray/removeall/_index.md new file mode 100644 index 0000000000..a539b752b3 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dviewarray/removeall/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DViewArray::RemoveAll method +linktitle: RemoveAll +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DViewArray::RemoveAll method. Removes all views in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/pdf3dviewarray/removeall/ +--- +## PDF3DViewArray::RemoveAll method + + +Removes all views. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PDF3DViewArray::RemoveAll() +``` + +## See Also + +* Class [PDF3DViewArray](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdf3dviewarray/removeat/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dviewarray/removeat/_index.md new file mode 100644 index 0000000000..de256c95db --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdf3dviewarray/removeat/_index.md @@ -0,0 +1,49 @@ +--- +title: Aspose::Pdf::Annotations::PDF3DViewArray::RemoveAt method +linktitle: RemoveAt +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PDF3DViewArray::RemoveAt method. Removes view from views array at specified index in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/pdf3dviewarray/removeat/ +--- +## PDF3DViewArray::RemoveAt method + + +Removes view from views array at specified index. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PDF3DViewArray::RemoveAt(int32_t index) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| index | int32_t | The view index. | +## Remarks + + + + + + index + + + The view index. + + + + + + IndexOutOfRangeException + + + Invalid index: index should be in the range [1..n] where n equals to the views count. + + + +## See Also + +* Class [PDF3DViewArray](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdfaction/_index.md b/english/cpp/aspose.pdf.annotations/pdfaction/_index.md new file mode 100644 index 0000000000..4bf741c005 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdfaction/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Annotations::PdfAction class +linktitle: PdfAction +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PdfAction class. Represents Action in PDF document in C++.' +type: docs +weight: 8200 +url: /cpp/aspose.pdf.annotations/pdfaction/ +--- +## PdfAction class + + +Represents Action in PDF document. + +```cpp +class PdfAction : public Aspose::Pdf::Annotations::IAppointment +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_Next](./get_next/)() | Next actions in sequence. | +| [GetECMAScriptString](./getecmascriptstring/)() | Gets string for ECMAScript Action. | +| [ToString](./tostring/)() const override | Returns string representation of [ExplicitDestination](../explicitdestination/) object. | +## See Also + +* Class [IAppointment](../iappointment/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/pdfaction/get_next/_index.md b/english/cpp/aspose.pdf.annotations/pdfaction/get_next/_index.md new file mode 100644 index 0000000000..988ca98153 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdfaction/get_next/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::PdfAction::get_Next method +linktitle: get_Next +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PdfAction::get_Next method. Next actions in sequence in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/pdfaction/get_next/ +--- +## PdfAction::get_Next method + + +Next actions in sequence. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PdfAction::get_Next() +``` + +## See Also + +* Class [ActionCollection](../../actioncollection/) +* Class [PdfAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdfaction/getecmascriptstring/_index.md b/english/cpp/aspose.pdf.annotations/pdfaction/getecmascriptstring/_index.md new file mode 100644 index 0000000000..441a7bf58e --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdfaction/getecmascriptstring/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::PdfAction::GetECMAScriptString method +linktitle: GetECMAScriptString +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PdfAction::GetECMAScriptString method. Gets string for ECMAScript Action in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/pdfaction/getecmascriptstring/ +--- +## PdfAction::GetECMAScriptString method + + +Gets string for ECMAScript Action. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::PdfAction::GetECMAScriptString() +``` + + +### ReturnValue + +Return string for JS entry for ECMAScript Action or null else. + +## See Also + +* Class [PdfAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdfaction/tostring/_index.md b/english/cpp/aspose.pdf.annotations/pdfaction/tostring/_index.md new file mode 100644 index 0000000000..4d9d9e8c01 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdfaction/tostring/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::PdfAction::ToString method +linktitle: ToString +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PdfAction::ToString method. Returns string representation of ExplicitDestination object in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/pdfaction/tostring/ +--- +## PdfAction::ToString method + + +Returns string representation of [ExplicitDestination](../../explicitdestination/) object. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::PdfAction::ToString() const override +``` + + +### ReturnValue + + + +## See Also + +* Class [PdfAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdfactioncollection/_index.md b/english/cpp/aspose.pdf.annotations/pdfactioncollection/_index.md new file mode 100644 index 0000000000..75385668a5 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdfactioncollection/_index.md @@ -0,0 +1,31 @@ +--- +title: Aspose::Pdf::Annotations::PdfActionCollection class +linktitle: PdfActionCollection +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PdfActionCollection class. Class describes list of actions in C++.' +type: docs +weight: 8300 +url: /cpp/aspose.pdf.annotations/pdfactioncollection/ +--- +## PdfActionCollection class + + +Class describes list of actions. + +```cpp +class PdfActionCollection : public System::Collections::Generic::IEnumerable> +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Add](./add/)(System::SharedPtr\) | Add action to action list. | +| [Delete](./delete/)(int32_t) | Remove action by index. | +| [get_Count](./get_count/)() | Gets count of actions. | +| [GetEnumerator](./getenumerator/)() override | Gets enumerator. | +| [idx_get](./idx_get/)(int32_t) | Gets action by its index. | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/pdfactioncollection/add/_index.md b/english/cpp/aspose.pdf.annotations/pdfactioncollection/add/_index.md new file mode 100644 index 0000000000..e8c437b3b9 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdfactioncollection/add/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Annotations::PdfActionCollection::Add method +linktitle: Add +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PdfActionCollection::Add method. Add action to action list in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/pdfactioncollection/add/ +--- +## PdfActionCollection::Add method + + +Add action to action list. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PdfActionCollection::Add(System::SharedPtr action) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| action | System::SharedPtr\ | Action to be added. | +## Remarks + + + + + + action + + + Action to be added. + + + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [PdfActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdfactioncollection/delete/_index.md b/english/cpp/aspose.pdf.annotations/pdfactioncollection/delete/_index.md new file mode 100644 index 0000000000..c58481e615 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdfactioncollection/delete/_index.md @@ -0,0 +1,40 @@ +--- +title: Aspose::Pdf::Annotations::PdfActionCollection::Delete method +linktitle: Delete +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PdfActionCollection::Delete method. Remove action by index in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/pdfactioncollection/delete/ +--- +## PdfActionCollection::Delete method + + +Remove action by index. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PdfActionCollection::Delete(int32_t index) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| index | int32_t | Index of action to remove. | +## Remarks + + + + + + index + + + Index of action to remove. + + + +## See Also + +* Class [PdfActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdfactioncollection/get_count/_index.md b/english/cpp/aspose.pdf.annotations/pdfactioncollection/get_count/_index.md new file mode 100644 index 0000000000..0c39045aa8 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdfactioncollection/get_count/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::PdfActionCollection::get_Count method +linktitle: get_Count +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PdfActionCollection::get_Count method. Gets count of actions in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/pdfactioncollection/get_count/ +--- +## PdfActionCollection::get_Count method + + +Gets count of actions. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Annotations::PdfActionCollection::get_Count() +``` + +## See Also + +* Class [PdfActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdfactioncollection/getenumerator/_index.md b/english/cpp/aspose.pdf.annotations/pdfactioncollection/getenumerator/_index.md new file mode 100644 index 0000000000..3e244dd21d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdfactioncollection/getenumerator/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Annotations::PdfActionCollection::GetEnumerator method +linktitle: GetEnumerator +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PdfActionCollection::GetEnumerator method. Gets enumerator in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/pdfactioncollection/getenumerator/ +--- +## PdfActionCollection::GetEnumerator method + + +Gets enumerator. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr>> Aspose::Pdf::Annotations::PdfActionCollection::GetEnumerator() override +``` + + +### ReturnValue + +PDfAction enumerator. + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [PdfActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/pdfactioncollection/idx_get/_index.md b/english/cpp/aspose.pdf.annotations/pdfactioncollection/idx_get/_index.md new file mode 100644 index 0000000000..0ad17f5f81 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/pdfactioncollection/idx_get/_index.md @@ -0,0 +1,45 @@ +--- +title: Aspose::Pdf::Annotations::PdfActionCollection::idx_get method +linktitle: idx_get +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PdfActionCollection::idx_get method. Gets action by its index in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/pdfactioncollection/idx_get/ +--- +## PdfActionCollection::idx_get method + + +Gets action by its index. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PdfActionCollection::idx_get(int32_t index) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| index | int32_t | Action index value. | + +### ReturnValue + +Action index if found; otherwise, throws +## Remarks + + + + + + index + + + Action index value. + + + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [PdfActionCollection](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/polyannotation/_index.md b/english/cpp/aspose.pdf.annotations/polyannotation/_index.md new file mode 100644 index 0000000000..7ca88d9475 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/polyannotation/_index.md @@ -0,0 +1,120 @@ +--- +title: Aspose::Pdf::Annotations::PolyAnnotation class +linktitle: PolyAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PolyAnnotation class. Abstract base class for poly- annotations in C++.' +type: docs +weight: 8400 +url: /cpp/aspose.pdf.annotations/polyannotation/ +--- +## PolyAnnotation class + + +Abstract base class for poly- annotations. + +```cpp +class PolyAnnotation : public Aspose::Pdf::Annotations::MarkupAnnotation +``` + +## Methods + +| Method | Description | +| --- | --- | +| virtual [Accept](../annotation/accept/)(System::SharedPtr\) | Accepts visitor for annotation processing. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| [ChangeAfterResize](./changeafterresize/)(System::SharedPtr\) override | Updates the points in Vertices, according to the matrix transform. | +| [ClearState](../markupannotation/clearstate/)() | Clears state and state model for the annotation. For example, clears the review status for an annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [Flatten](../annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](../annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../annotation/get_alignment/)() | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| virtual [get_AnnotationType](../annotation/get_annotationtype/)() | Gets type of annotation. | +| [get_Appearance](../annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../annotation/get_border/)() const | Gets annotation border characteristics. [Border](../border/) | +| [get_Characteristics](../annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../annotation/get_color/)() | Gets annotation color. | +| [get_Contents](../annotation/get_contents/)() | Gets annotation text. | +| [get_CreationDate](../markupannotation/get_creationdate/)() | Gets date and time when annotation was created. | +| [get_EndingStyle](./get_endingstyle/)() | Gets the style of second line ending. | +| [get_Flags](../annotation/get_flags/)() | Flags of the annotation. | +| [get_FullName](../annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../annotation/get_height/)() | Gets height of the annotation. | +| [get_HorizontalAlignment](../annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_InReplyTo](../markupannotation/get_inreplyto/)() | A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. | +| [get_Intent](./get_intent/)() | Gets the intent of the polygon or polyline annotation. | +| [get_InteriorColor](./get_interiorcolor/)() | Gets the interior color with which to fill the annotation's line endings. | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| [get_Measure](./get_measure/)() | [Measure](../measure/) units specifed for this annotation. | +| [get_Modified](../annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Name](../annotation/get_name/)() | Gets annotation name on the page. | +| [get_Opacity](../markupannotation/get_opacity/)() | Gets the constant opacity value to be used in painting the annotation. | +| virtual [get_PageIndex](../annotation/get_pageindex/)() | Gets index of page which contains annotation. | +| [get_Popup](../markupannotation/get_popup/)() | Pop-up annotation for entering or editing the text associated with this annotation. | +| virtual [get_Rect](../annotation/get_rect/)() | Gets annotation rectangle. | +| [get_ReplyType](../markupannotation/get_replytype/)() | A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. | +| [get_RichText](../markupannotation/get_richtext/)() | Gets a rich text string to be displayed in the pop-up window when the annotation is opened. | +| [get_StartingStyle](./get_startingstyle/)() | Gets the style of first line ending. | +| [get_States](../annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_Subject](../markupannotation/get_subject/)() | Gets text representing desciption of the object. | +| [get_TextHorizontalAlignment](../annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| [get_Title](../markupannotation/get_title/)() override | Gets a text that shall be displayed in title bar of annotation. | +| static [get_UpdateAppearanceOnConvert](../annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| [get_Vertices](./get_vertices/)() | Gets an array of points representing the horizontal and vertical coordinates of each vertex. | +| virtual [get_Width](../annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetRectangle](../annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| [GetState](../markupannotation/getstate/)() | Gets the state of the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [GetStateModel](../markupannotation/getstatemodel/)() | Gets the state model of the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [MarkupAnnotation](../markupannotation/markupannotation/)(System::SharedPtr\) | Constructor for markup annotation. | +| virtual [set_ActiveState](../annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../annotation/set_alignment/)(TextAlignment) | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_Border](../annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../border/) | +| [set_Color](../annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](../annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_EndingStyle](./set_endingstyle/)(LineEnding) | Sets the style of second line ending. | +| [set_Flags](../annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| virtual [set_Height](../annotation/set_height/)(double) | Sets height of the annotation. | +| [set_HorizontalAlignment](../annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_InReplyTo](../markupannotation/set_inreplyto/)(System::SharedPtr\) | A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. | +| [set_Intent](./set_intent/)(PolyIntent) | Sets the intent of the polygon or polyline annotation. | +| [set_InteriorColor](./set_interiorcolor/)(System::SharedPtr\) | Sets the interior color with which to fill the annotation's line endings. | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| [set_Measure](./set_measure/)(System::SharedPtr\) | [Measure](../measure/) units specifed for this annotation. | +| [set_Modified](../annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Name](../annotation/set_name/)(System::String) | Sets annotation name on the page. | +| [set_Opacity](../markupannotation/set_opacity/)(double) | Sets the constant opacity value to be used in painting the annotation. | +| [set_Popup](../markupannotation/set_popup/)(System::SharedPtr\) | Pop-up annotation for entering or editing the text associated with this annotation. | +| virtual [set_Rect](../annotation/set_rect/)(System::SharedPtr\) | Sets annotation rectangle. | +| [set_ReplyType](../markupannotation/set_replytype/)(Aspose::Pdf::Annotations::ReplyType) | A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. | +| [set_RichText](../markupannotation/set_richtext/)(System::String) | Sets a rich text string to be displayed in the pop-up window when the annotation is opened. | +| [set_StartingStyle](./set_startingstyle/)(LineEnding) | Sets the style of first line ending. | +| [set_Subject](../markupannotation/set_subject/)(System::String) | Gets text representing desciption of the object. | +| [set_TextHorizontalAlignment](../annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| [set_Title](../markupannotation/set_title/)(System::String) override | Sets a text that shall be displayed in title bar of annotation. | +| static [set_UpdateAppearanceOnConvert](../annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| [set_Vertices](./set_vertices/)(System::ArrayPtr\\>) | Sets an array of points representing the horizontal and vertical coordinates of each vertex. | +| virtual [set_Width](../annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [SetMarkedState](../markupannotation/setmarkedstate/)(bool) | Sets Marked and Unmarked state for the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SetReviewState](../markupannotation/setreviewstate/)(AnnotationState, System::String) | Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SetReviewState](../markupannotation/setreviewstate/)(AnnotationState) | Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. The state is set by the user who created the target annotation. The value is taken from the Title property of the target annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +## See Also + +* Class [MarkupAnnotation](../markupannotation/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/polyannotation/changeafterresize/_index.md b/english/cpp/aspose.pdf.annotations/polyannotation/changeafterresize/_index.md new file mode 100644 index 0000000000..2e17ebcef5 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/polyannotation/changeafterresize/_index.md @@ -0,0 +1,42 @@ +--- +title: Aspose::Pdf::Annotations::PolyAnnotation::ChangeAfterResize method +linktitle: ChangeAfterResize +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PolyAnnotation::ChangeAfterResize method. Updates the points in Vertices, according to the matrix transform in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.annotations/polyannotation/changeafterresize/ +--- +## PolyAnnotation::ChangeAfterResize method + + +Updates the points in Vertices, according to the matrix transform. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PolyAnnotation::ChangeAfterResize(System::SharedPtr transform) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| transform | System::SharedPtr\ | [Matrix](../../../aspose.pdf/matrix/) specifying the transformation. | +## Remarks + + + + + + transform + + + + Matrix specifying the transformation. + + + +## See Also + +* Class [Matrix](../../../aspose.pdf/matrix/) +* Class [PolyAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/polyannotation/get_endingstyle/_index.md b/english/cpp/aspose.pdf.annotations/polyannotation/get_endingstyle/_index.md new file mode 100644 index 0000000000..78194987f4 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/polyannotation/get_endingstyle/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::PolyAnnotation::get_EndingStyle method +linktitle: get_EndingStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PolyAnnotation::get_EndingStyle method. Gets the style of second line ending in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.annotations/polyannotation/get_endingstyle/ +--- +## PolyAnnotation::get_EndingStyle method + + +Gets the style of second line ending. + +```cpp +ASPOSE_PDF_SHARED_API LineEnding Aspose::Pdf::Annotations::PolyAnnotation::get_EndingStyle() +``` + +## See Also + +* Enum [LineEnding](../../lineending/) +* Class [PolyAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/polyannotation/get_intent/_index.md b/english/cpp/aspose.pdf.annotations/polyannotation/get_intent/_index.md new file mode 100644 index 0000000000..5ba232d931 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/polyannotation/get_intent/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::PolyAnnotation::get_Intent method +linktitle: get_Intent +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PolyAnnotation::get_Intent method. Gets the intent of the polygon or polyline annotation in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.annotations/polyannotation/get_intent/ +--- +## PolyAnnotation::get_Intent method + + +Gets the intent of the polygon or polyline annotation. + +```cpp +ASPOSE_PDF_SHARED_API PolyIntent Aspose::Pdf::Annotations::PolyAnnotation::get_Intent() +``` + +## See Also + +* Enum [PolyIntent](../../polyintent/) +* Class [PolyAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/polyannotation/get_interiorcolor/_index.md b/english/cpp/aspose.pdf.annotations/polyannotation/get_interiorcolor/_index.md new file mode 100644 index 0000000000..799794328a --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/polyannotation/get_interiorcolor/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::PolyAnnotation::get_InteriorColor method +linktitle: get_InteriorColor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PolyAnnotation::get_InteriorColor method. Gets the interior color with which to fill the annotation''s line endings in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/polyannotation/get_interiorcolor/ +--- +## PolyAnnotation::get_InteriorColor method + + +Gets the interior color with which to fill the annotation's line endings. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PolyAnnotation::get_InteriorColor() +``` + +## See Also + +* Class [Color](../../../aspose.pdf/color/) +* Class [PolyAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/polyannotation/get_measure/_index.md b/english/cpp/aspose.pdf.annotations/polyannotation/get_measure/_index.md new file mode 100644 index 0000000000..3bd3afdbfb --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/polyannotation/get_measure/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::PolyAnnotation::get_Measure method +linktitle: get_Measure +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PolyAnnotation::get_Measure method. Measure units specifed for this annotation in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/polyannotation/get_measure/ +--- +## PolyAnnotation::get_Measure method + + +[Measure](../../measure/) units specifed for this annotation. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PolyAnnotation::get_Measure() +``` + +## See Also + +* Class [Measure](../../measure/) +* Class [PolyAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/polyannotation/get_startingstyle/_index.md b/english/cpp/aspose.pdf.annotations/polyannotation/get_startingstyle/_index.md new file mode 100644 index 0000000000..fe6e28cc8a --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/polyannotation/get_startingstyle/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::PolyAnnotation::get_StartingStyle method +linktitle: get_StartingStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PolyAnnotation::get_StartingStyle method. Gets the style of first line ending in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.annotations/polyannotation/get_startingstyle/ +--- +## PolyAnnotation::get_StartingStyle method + + +Gets the style of first line ending. + +```cpp +ASPOSE_PDF_SHARED_API LineEnding Aspose::Pdf::Annotations::PolyAnnotation::get_StartingStyle() +``` + +## See Also + +* Enum [LineEnding](../../lineending/) +* Class [PolyAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/polyannotation/get_vertices/_index.md b/english/cpp/aspose.pdf.annotations/polyannotation/get_vertices/_index.md new file mode 100644 index 0000000000..6247d91db0 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/polyannotation/get_vertices/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::PolyAnnotation::get_Vertices method +linktitle: get_Vertices +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PolyAnnotation::get_Vertices method. Gets an array of points representing the horizontal and vertical coordinates of each vertex in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/polyannotation/get_vertices/ +--- +## PolyAnnotation::get_Vertices method + + +Gets an array of points representing the horizontal and vertical coordinates of each vertex. + +```cpp +ASPOSE_PDF_SHARED_API System::ArrayPtr> Aspose::Pdf::Annotations::PolyAnnotation::get_Vertices() +``` + +## See Also + +* Class [Point](../../../aspose.pdf/point/) +* Class [PolyAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/polyannotation/set_endingstyle/_index.md b/english/cpp/aspose.pdf.annotations/polyannotation/set_endingstyle/_index.md new file mode 100644 index 0000000000..5babf50973 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/polyannotation/set_endingstyle/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::PolyAnnotation::set_EndingStyle method +linktitle: set_EndingStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PolyAnnotation::set_EndingStyle method. Sets the style of second line ending in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.annotations/polyannotation/set_endingstyle/ +--- +## PolyAnnotation::set_EndingStyle method + + +Sets the style of second line ending. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PolyAnnotation::set_EndingStyle(LineEnding value) +``` + +## See Also + +* Enum [LineEnding](../../lineending/) +* Class [PolyAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/polyannotation/set_intent/_index.md b/english/cpp/aspose.pdf.annotations/polyannotation/set_intent/_index.md new file mode 100644 index 0000000000..b0b0b90f8b --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/polyannotation/set_intent/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::PolyAnnotation::set_Intent method +linktitle: set_Intent +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PolyAnnotation::set_Intent method. Sets the intent of the polygon or polyline annotation in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.annotations/polyannotation/set_intent/ +--- +## PolyAnnotation::set_Intent method + + +Sets the intent of the polygon or polyline annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PolyAnnotation::set_Intent(PolyIntent value) +``` + +## See Also + +* Enum [PolyIntent](../../polyintent/) +* Class [PolyAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/polyannotation/set_interiorcolor/_index.md b/english/cpp/aspose.pdf.annotations/polyannotation/set_interiorcolor/_index.md new file mode 100644 index 0000000000..b1253272c4 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/polyannotation/set_interiorcolor/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::PolyAnnotation::set_InteriorColor method +linktitle: set_InteriorColor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PolyAnnotation::set_InteriorColor method. Sets the interior color with which to fill the annotation''s line endings in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/polyannotation/set_interiorcolor/ +--- +## PolyAnnotation::set_InteriorColor method + + +Sets the interior color with which to fill the annotation's line endings. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PolyAnnotation::set_InteriorColor(System::SharedPtr value) +``` + +## See Also + +* Class [Color](../../../aspose.pdf/color/) +* Class [PolyAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/polyannotation/set_measure/_index.md b/english/cpp/aspose.pdf.annotations/polyannotation/set_measure/_index.md new file mode 100644 index 0000000000..57886c6333 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/polyannotation/set_measure/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::PolyAnnotation::set_Measure method +linktitle: set_Measure +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PolyAnnotation::set_Measure method. Measure units specifed for this annotation in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/polyannotation/set_measure/ +--- +## PolyAnnotation::set_Measure method + + +[Measure](../../measure/) units specifed for this annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PolyAnnotation::set_Measure(System::SharedPtr value) +``` + +## See Also + +* Class [Measure](../../measure/) +* Class [PolyAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/polyannotation/set_startingstyle/_index.md b/english/cpp/aspose.pdf.annotations/polyannotation/set_startingstyle/_index.md new file mode 100644 index 0000000000..274b2731cf --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/polyannotation/set_startingstyle/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::PolyAnnotation::set_StartingStyle method +linktitle: set_StartingStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PolyAnnotation::set_StartingStyle method. Sets the style of first line ending in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.annotations/polyannotation/set_startingstyle/ +--- +## PolyAnnotation::set_StartingStyle method + + +Sets the style of first line ending. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PolyAnnotation::set_StartingStyle(LineEnding value) +``` + +## See Also + +* Enum [LineEnding](../../lineending/) +* Class [PolyAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/polyannotation/set_vertices/_index.md b/english/cpp/aspose.pdf.annotations/polyannotation/set_vertices/_index.md new file mode 100644 index 0000000000..0953cae60a --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/polyannotation/set_vertices/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::PolyAnnotation::set_Vertices method +linktitle: set_Vertices +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PolyAnnotation::set_Vertices method. Sets an array of points representing the horizontal and vertical coordinates of each vertex in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/polyannotation/set_vertices/ +--- +## PolyAnnotation::set_Vertices method + + +Sets an array of points representing the horizontal and vertical coordinates of each vertex. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PolyAnnotation::set_Vertices(System::ArrayPtr> value) +``` + +## See Also + +* Class [Point](../../../aspose.pdf/point/) +* Class [PolyAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/polygonannotation/_index.md b/english/cpp/aspose.pdf.annotations/polygonannotation/_index.md new file mode 100644 index 0000000000..d54618b282 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/polygonannotation/_index.md @@ -0,0 +1,122 @@ +--- +title: Aspose::Pdf::Annotations::PolygonAnnotation class +linktitle: PolygonAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PolygonAnnotation class. Class representing polygon annotation in C++.' +type: docs +weight: 8500 +url: /cpp/aspose.pdf.annotations/polygonannotation/ +--- +## PolygonAnnotation class + + +Class representing polygon annotation. + +```cpp +class PolygonAnnotation : public Aspose::Pdf::Annotations::PolyAnnotation +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Accept](./accept/)(System::SharedPtr\) override | Accepts visitor object for annotation processing. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| [ChangeAfterResize](../polyannotation/changeafterresize/)(System::SharedPtr\) override | Updates the points in Vertices, according to the matrix transform. | +| [ClearState](../markupannotation/clearstate/)() | Clears state and state model for the annotation. For example, clears the review status for an annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [Flatten](../annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](../annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../annotation/get_alignment/)() | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [get_AnnotationType](./get_annotationtype/)() override | Gets type of annotation. | +| [get_Appearance](../annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../annotation/get_border/)() const | Gets annotation border characteristics. [Border](../border/) | +| [get_Characteristics](../annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../annotation/get_color/)() | Gets annotation color. | +| [get_Contents](../annotation/get_contents/)() | Gets annotation text. | +| [get_CreationDate](../markupannotation/get_creationdate/)() | Gets date and time when annotation was created. | +| [get_EndingStyle](../polyannotation/get_endingstyle/)() | Gets the style of second line ending. | +| [get_Flags](../annotation/get_flags/)() | Flags of the annotation. | +| [get_FullName](../annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../annotation/get_height/)() | Gets height of the annotation. | +| [get_HorizontalAlignment](../annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_InReplyTo](../markupannotation/get_inreplyto/)() | A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. | +| [get_Intent](../polyannotation/get_intent/)() | Gets the intent of the polygon or polyline annotation. | +| [get_InteriorColor](../polyannotation/get_interiorcolor/)() | Gets the interior color with which to fill the annotation's line endings. | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| [get_Measure](../polyannotation/get_measure/)() | [Measure](../measure/) units specifed for this annotation. | +| [get_Modified](../annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Name](../annotation/get_name/)() | Gets annotation name on the page. | +| [get_Opacity](../markupannotation/get_opacity/)() | Gets the constant opacity value to be used in painting the annotation. | +| virtual [get_PageIndex](../annotation/get_pageindex/)() | Gets index of page which contains annotation. | +| [get_Popup](../markupannotation/get_popup/)() | Pop-up annotation for entering or editing the text associated with this annotation. | +| virtual [get_Rect](../annotation/get_rect/)() | Gets annotation rectangle. | +| [get_ReplyType](../markupannotation/get_replytype/)() | A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. | +| [get_RichText](../markupannotation/get_richtext/)() | Gets a rich text string to be displayed in the pop-up window when the annotation is opened. | +| [get_StartingStyle](../polyannotation/get_startingstyle/)() | Gets the style of first line ending. | +| [get_States](../annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_Subject](../markupannotation/get_subject/)() | Gets text representing desciption of the object. | +| [get_TextHorizontalAlignment](../annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| [get_Title](../markupannotation/get_title/)() override | Gets a text that shall be displayed in title bar of annotation. | +| static [get_UpdateAppearanceOnConvert](../annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| [get_Vertices](../polyannotation/get_vertices/)() | Gets an array of points representing the horizontal and vertical coordinates of each vertex. | +| virtual [get_Width](../annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetRectangle](../annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| [GetState](../markupannotation/getstate/)() | Gets the state of the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [GetStateModel](../markupannotation/getstatemodel/)() | Gets the state model of the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [MarkupAnnotation](../markupannotation/markupannotation/)(System::SharedPtr\) | Constructor for markup annotation. | +| [PolygonAnnotation](./polygonannotation/)(System::SharedPtr\, System::ArrayPtr\\>) | Constructor for using with Generator. | +| [PolygonAnnotation](./polygonannotation/)(System::SharedPtr\, System::SharedPtr\, System::ArrayPtr\\>) | Creates new Polygon annotation on the specified page. | +| virtual [set_ActiveState](../annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../annotation/set_alignment/)(TextAlignment) | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_Border](../annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../border/) | +| [set_Color](../annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](../annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_EndingStyle](../polyannotation/set_endingstyle/)(LineEnding) | Sets the style of second line ending. | +| [set_Flags](../annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| virtual [set_Height](../annotation/set_height/)(double) | Sets height of the annotation. | +| [set_HorizontalAlignment](../annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_InReplyTo](../markupannotation/set_inreplyto/)(System::SharedPtr\) | A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. | +| [set_Intent](../polyannotation/set_intent/)(PolyIntent) | Sets the intent of the polygon or polyline annotation. | +| [set_InteriorColor](../polyannotation/set_interiorcolor/)(System::SharedPtr\) | Sets the interior color with which to fill the annotation's line endings. | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| [set_Measure](../polyannotation/set_measure/)(System::SharedPtr\) | [Measure](../measure/) units specifed for this annotation. | +| [set_Modified](../annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Name](../annotation/set_name/)(System::String) | Sets annotation name on the page. | +| [set_Opacity](../markupannotation/set_opacity/)(double) | Sets the constant opacity value to be used in painting the annotation. | +| [set_Popup](../markupannotation/set_popup/)(System::SharedPtr\) | Pop-up annotation for entering or editing the text associated with this annotation. | +| virtual [set_Rect](../annotation/set_rect/)(System::SharedPtr\) | Sets annotation rectangle. | +| [set_ReplyType](../markupannotation/set_replytype/)(Aspose::Pdf::Annotations::ReplyType) | A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. | +| [set_RichText](../markupannotation/set_richtext/)(System::String) | Sets a rich text string to be displayed in the pop-up window when the annotation is opened. | +| [set_StartingStyle](../polyannotation/set_startingstyle/)(LineEnding) | Sets the style of first line ending. | +| [set_Subject](../markupannotation/set_subject/)(System::String) | Gets text representing desciption of the object. | +| [set_TextHorizontalAlignment](../annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| [set_Title](../markupannotation/set_title/)(System::String) override | Sets a text that shall be displayed in title bar of annotation. | +| static [set_UpdateAppearanceOnConvert](../annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| [set_Vertices](../polyannotation/set_vertices/)(System::ArrayPtr\\>) | Sets an array of points representing the horizontal and vertical coordinates of each vertex. | +| virtual [set_Width](../annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [SetMarkedState](../markupannotation/setmarkedstate/)(bool) | Sets Marked and Unmarked state for the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SetReviewState](../markupannotation/setreviewstate/)(AnnotationState, System::String) | Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SetReviewState](../markupannotation/setreviewstate/)(AnnotationState) | Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. The state is set by the user who created the target annotation. The value is taken from the Title property of the target annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +## See Also + +* Class [PolyAnnotation](../polyannotation/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/polygonannotation/accept/_index.md b/english/cpp/aspose.pdf.annotations/polygonannotation/accept/_index.md new file mode 100644 index 0000000000..b7f12a0d46 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/polygonannotation/accept/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Annotations::PolygonAnnotation::Accept method +linktitle: Accept +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PolygonAnnotation::Accept method. Accepts visitor object for annotation processing in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/polygonannotation/accept/ +--- +## PolygonAnnotation::Accept method + + +Accepts visitor object for annotation processing. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PolygonAnnotation::Accept(System::SharedPtr visitor) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| visitor | System::SharedPtr\ | Visitor object. | +## Remarks + + + + + + visitor + + + Visitor object. + + + +## See Also + +* Class [AnnotationSelector](../../annotationselector/) +* Class [PolygonAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/polygonannotation/get_annotationtype/_index.md b/english/cpp/aspose.pdf.annotations/polygonannotation/get_annotationtype/_index.md new file mode 100644 index 0000000000..358b240139 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/polygonannotation/get_annotationtype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::PolygonAnnotation::get_AnnotationType method +linktitle: get_AnnotationType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PolygonAnnotation::get_AnnotationType method. Gets type of annotation in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/polygonannotation/get_annotationtype/ +--- +## PolygonAnnotation::get_AnnotationType method + + +Gets type of annotation. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::AnnotationType Aspose::Pdf::Annotations::PolygonAnnotation::get_AnnotationType() override +``` + +## See Also + +* Enum [AnnotationType](../../annotationtype/) +* Class [PolygonAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/polygonannotation/polygonannotation/_index.md b/english/cpp/aspose.pdf.annotations/polygonannotation/polygonannotation/_index.md new file mode 100644 index 0000000000..5a0ec8d8c1 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/polygonannotation/polygonannotation/_index.md @@ -0,0 +1,104 @@ +--- +title: Aspose::Pdf::Annotations::PolygonAnnotation::PolygonAnnotation constructor +linktitle: PolygonAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PolygonAnnotation::PolygonAnnotation constructor. Constructor for using with Generator in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/polygonannotation/polygonannotation/ +--- +## PolygonAnnotation::PolygonAnnotation(System::SharedPtr\, System::ArrayPtr\\>) constructor + + +Constructor for using with Generator. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::PolygonAnnotation::PolygonAnnotation(System::SharedPtr document, System::ArrayPtr> vertices) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | [Document](../../../aspose.pdf/document/) where annotation will be added. | +| vertices | System::ArrayPtr\\> | Array of points. | +## Remarks + + + + + + document + + + + Document where annotation will be added. + + + + + vertices + + + Array of points. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [Point](../../../aspose.pdf/point/) +* Class [PolygonAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## PolygonAnnotation::PolygonAnnotation(System::SharedPtr\, System::SharedPtr\, System::ArrayPtr\\>) constructor + + +Creates new Polygon annotation on the specified page. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::PolygonAnnotation::PolygonAnnotation(System::SharedPtr page, System::SharedPtr rect, System::ArrayPtr> vertices) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The document's page where annotation should be created. | +| rect | System::SharedPtr\ | The annotation rectangle, defining the location of the annotation on the page. | +| vertices | System::ArrayPtr\\> | An array of polygon vertices points. | +## Remarks + + + + + + page + + + The document's page where annotation should be created. + + + + + rect + + + The annotation rectangle, defining the location of the annotation on the page. + + + + + vertices + + + An array of polygon vertices points. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [Point](../../../aspose.pdf/point/) +* Class [PolygonAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/polyintent/_index.md b/english/cpp/aspose.pdf.annotations/polyintent/_index.md new file mode 100644 index 0000000000..9448d8e28d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/polyintent/_index.md @@ -0,0 +1,31 @@ +--- +title: Aspose::Pdf::Annotations::PolyIntent enum +linktitle: PolyIntent +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PolyIntent enum. Enumerates the intents of the polygon or polyline annotation in C++.' +type: docs +weight: 13800 +url: /cpp/aspose.pdf.annotations/polyintent/ +--- +## PolyIntent enum + + +Enumerates the intents of the polygon or polyline annotation. + +```cpp +enum class PolyIntent +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Undefined | 0 | Undefined state. | +| PolygonCloud | 1 | Means that the annotation is intended to function as a cloud object. | +| PolyLineDimension | 2 | Indicates that the polyline annotation is intended to function as a dimension. | +| PolygonDimension | 3 | Indicates that the polygon annotation is intended to function as a dimension. | + +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/polyintentconverter/_index.md b/english/cpp/aspose.pdf.annotations/polyintentconverter/_index.md new file mode 100644 index 0000000000..383d880cf2 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/polyintentconverter/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Annotations::PolyIntentConverter class +linktitle: PolyIntentConverter +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Annotations::PolyIntentConverter class in C++.' +type: docs +weight: 8600 +url: /cpp/aspose.pdf.annotations/polyintentconverter/ +--- +## PolyIntentConverter class + + + + +```cpp +class PolyIntentConverter : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [ToEnum](./toenum/)(System::String) | | +| static [ToString](./tostring/)(PolyIntent) | | +| static [ToXfdfString](./toxfdfstring/)(PolyIntent) | | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/polyintentconverter/toenum/_index.md b/english/cpp/aspose.pdf.annotations/polyintentconverter/toenum/_index.md new file mode 100644 index 0000000000..1a1e30da87 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/polyintentconverter/toenum/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::PolyIntentConverter::ToEnum method +linktitle: ToEnum +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToEnum method of Aspose::Pdf::Annotations::PolyIntentConverter class in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/polyintentconverter/toenum/ +--- +## PolyIntentConverter::ToEnum method + + + + +```cpp +static ASPOSE_PDF_SHARED_API PolyIntent Aspose::Pdf::Annotations::PolyIntentConverter::ToEnum(System::String value) +``` + +## See Also + +* Enum [PolyIntent](../../polyintent/) +* Class [PolyIntentConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/polyintentconverter/tostring/_index.md b/english/cpp/aspose.pdf.annotations/polyintentconverter/tostring/_index.md new file mode 100644 index 0000000000..8543b6a77b --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/polyintentconverter/tostring/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::PolyIntentConverter::ToString method +linktitle: ToString +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToString method of Aspose::Pdf::Annotations::PolyIntentConverter class in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/polyintentconverter/tostring/ +--- +## PolyIntentConverter::ToString method + + + + +```cpp +static ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::PolyIntentConverter::ToString(PolyIntent value) +``` + +## See Also + +* Enum [PolyIntent](../../polyintent/) +* Class [PolyIntentConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/polyintentconverter/toxfdfstring/_index.md b/english/cpp/aspose.pdf.annotations/polyintentconverter/toxfdfstring/_index.md new file mode 100644 index 0000000000..25cfe16983 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/polyintentconverter/toxfdfstring/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::PolyIntentConverter::ToXfdfString method +linktitle: ToXfdfString +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToXfdfString method of Aspose::Pdf::Annotations::PolyIntentConverter class in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/polyintentconverter/toxfdfstring/ +--- +## PolyIntentConverter::ToXfdfString method + + + + +```cpp +static ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::PolyIntentConverter::ToXfdfString(PolyIntent value) +``` + +## See Also + +* Enum [PolyIntent](../../polyintent/) +* Class [PolyIntentConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/polylineannotation/_index.md b/english/cpp/aspose.pdf.annotations/polylineannotation/_index.md new file mode 100644 index 0000000000..a2052a7f0a --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/polylineannotation/_index.md @@ -0,0 +1,121 @@ +--- +title: Aspose::Pdf::Annotations::PolylineAnnotation class +linktitle: PolylineAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PolylineAnnotation class. Represents polyline annotation that is similar to polygon, except that the first and last vertex are not implicitly connected in C++.' +type: docs +weight: 8700 +url: /cpp/aspose.pdf.annotations/polylineannotation/ +--- +## PolylineAnnotation class + + +Represents polyline annotation that is similar to polygon, except that the first and last vertex are not implicitly connected. + +```cpp +class PolylineAnnotation : public Aspose::Pdf::Annotations::PolyAnnotation +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Accept](./accept/)(System::SharedPtr\) override | Accepts visitor object to process the annotation. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| [ChangeAfterResize](../polyannotation/changeafterresize/)(System::SharedPtr\) override | Updates the points in Vertices, according to the matrix transform. | +| [ClearState](../markupannotation/clearstate/)() | Clears state and state model for the annotation. For example, clears the review status for an annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [Flatten](../annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](../annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../annotation/get_alignment/)() | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [get_AnnotationType](./get_annotationtype/)() override | Gets type of annotation. | +| [get_Appearance](../annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../annotation/get_border/)() const | Gets annotation border characteristics. [Border](../border/) | +| [get_Characteristics](../annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../annotation/get_color/)() | Gets annotation color. | +| [get_Contents](../annotation/get_contents/)() | Gets annotation text. | +| [get_CreationDate](../markupannotation/get_creationdate/)() | Gets date and time when annotation was created. | +| [get_EndingStyle](../polyannotation/get_endingstyle/)() | Gets the style of second line ending. | +| [get_Flags](../annotation/get_flags/)() | Flags of the annotation. | +| [get_FullName](../annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../annotation/get_height/)() | Gets height of the annotation. | +| [get_HorizontalAlignment](../annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_InReplyTo](../markupannotation/get_inreplyto/)() | A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. | +| [get_Intent](../polyannotation/get_intent/)() | Gets the intent of the polygon or polyline annotation. | +| [get_InteriorColor](../polyannotation/get_interiorcolor/)() | Gets the interior color with which to fill the annotation's line endings. | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| [get_Measure](../polyannotation/get_measure/)() | [Measure](../measure/) units specifed for this annotation. | +| [get_Modified](../annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Name](../annotation/get_name/)() | Gets annotation name on the page. | +| [get_Opacity](../markupannotation/get_opacity/)() | Gets the constant opacity value to be used in painting the annotation. | +| virtual [get_PageIndex](../annotation/get_pageindex/)() | Gets index of page which contains annotation. | +| [get_Popup](../markupannotation/get_popup/)() | Pop-up annotation for entering or editing the text associated with this annotation. | +| virtual [get_Rect](../annotation/get_rect/)() | Gets annotation rectangle. | +| [get_ReplyType](../markupannotation/get_replytype/)() | A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. | +| [get_RichText](../markupannotation/get_richtext/)() | Gets a rich text string to be displayed in the pop-up window when the annotation is opened. | +| [get_StartingStyle](../polyannotation/get_startingstyle/)() | Gets the style of first line ending. | +| [get_States](../annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_Subject](../markupannotation/get_subject/)() | Gets text representing desciption of the object. | +| [get_TextHorizontalAlignment](../annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| [get_Title](../markupannotation/get_title/)() override | Gets a text that shall be displayed in title bar of annotation. | +| static [get_UpdateAppearanceOnConvert](../annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| [get_Vertices](../polyannotation/get_vertices/)() | Gets an array of points representing the horizontal and vertical coordinates of each vertex. | +| virtual [get_Width](../annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetRectangle](../annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| [GetState](../markupannotation/getstate/)() | Gets the state of the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [GetStateModel](../markupannotation/getstatemodel/)() | Gets the state model of the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [MarkupAnnotation](../markupannotation/markupannotation/)(System::SharedPtr\) | Constructor for markup annotation. | +| [PolylineAnnotation](./polylineannotation/)(System::SharedPtr\, System::SharedPtr\, System::ArrayPtr\\>) | Creates new Polyline annotation on the specified page. | +| virtual [set_ActiveState](../annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../annotation/set_alignment/)(TextAlignment) | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_Border](../annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../border/) | +| [set_Color](../annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](../annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_EndingStyle](../polyannotation/set_endingstyle/)(LineEnding) | Sets the style of second line ending. | +| [set_Flags](../annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| virtual [set_Height](../annotation/set_height/)(double) | Sets height of the annotation. | +| [set_HorizontalAlignment](../annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_InReplyTo](../markupannotation/set_inreplyto/)(System::SharedPtr\) | A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. | +| [set_Intent](../polyannotation/set_intent/)(PolyIntent) | Sets the intent of the polygon or polyline annotation. | +| [set_InteriorColor](../polyannotation/set_interiorcolor/)(System::SharedPtr\) | Sets the interior color with which to fill the annotation's line endings. | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| [set_Measure](../polyannotation/set_measure/)(System::SharedPtr\) | [Measure](../measure/) units specifed for this annotation. | +| [set_Modified](../annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Name](../annotation/set_name/)(System::String) | Sets annotation name on the page. | +| [set_Opacity](../markupannotation/set_opacity/)(double) | Sets the constant opacity value to be used in painting the annotation. | +| [set_Popup](../markupannotation/set_popup/)(System::SharedPtr\) | Pop-up annotation for entering or editing the text associated with this annotation. | +| virtual [set_Rect](../annotation/set_rect/)(System::SharedPtr\) | Sets annotation rectangle. | +| [set_ReplyType](../markupannotation/set_replytype/)(Aspose::Pdf::Annotations::ReplyType) | A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. | +| [set_RichText](../markupannotation/set_richtext/)(System::String) | Sets a rich text string to be displayed in the pop-up window when the annotation is opened. | +| [set_StartingStyle](../polyannotation/set_startingstyle/)(LineEnding) | Sets the style of first line ending. | +| [set_Subject](../markupannotation/set_subject/)(System::String) | Gets text representing desciption of the object. | +| [set_TextHorizontalAlignment](../annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| [set_Title](../markupannotation/set_title/)(System::String) override | Sets a text that shall be displayed in title bar of annotation. | +| static [set_UpdateAppearanceOnConvert](../annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| [set_Vertices](../polyannotation/set_vertices/)(System::ArrayPtr\\>) | Sets an array of points representing the horizontal and vertical coordinates of each vertex. | +| virtual [set_Width](../annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [SetMarkedState](../markupannotation/setmarkedstate/)(bool) | Sets Marked and Unmarked state for the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SetReviewState](../markupannotation/setreviewstate/)(AnnotationState, System::String) | Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SetReviewState](../markupannotation/setreviewstate/)(AnnotationState) | Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. The state is set by the user who created the target annotation. The value is taken from the Title property of the target annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +## See Also + +* Class [PolyAnnotation](../polyannotation/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/polylineannotation/accept/_index.md b/english/cpp/aspose.pdf.annotations/polylineannotation/accept/_index.md new file mode 100644 index 0000000000..5596295df1 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/polylineannotation/accept/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Annotations::PolylineAnnotation::Accept method +linktitle: Accept +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PolylineAnnotation::Accept method. Accepts visitor object to process the annotation in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/polylineannotation/accept/ +--- +## PolylineAnnotation::Accept method + + +Accepts visitor object to process the annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PolylineAnnotation::Accept(System::SharedPtr visitor) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| visitor | System::SharedPtr\ | Visitor object. | +## Remarks + + + + + + visitor + + + Visitor object. + + + +## See Also + +* Class [AnnotationSelector](../../annotationselector/) +* Class [PolylineAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/polylineannotation/get_annotationtype/_index.md b/english/cpp/aspose.pdf.annotations/polylineannotation/get_annotationtype/_index.md new file mode 100644 index 0000000000..35115e5bcf --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/polylineannotation/get_annotationtype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::PolylineAnnotation::get_AnnotationType method +linktitle: get_AnnotationType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PolylineAnnotation::get_AnnotationType method. Gets type of annotation in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/polylineannotation/get_annotationtype/ +--- +## PolylineAnnotation::get_AnnotationType method + + +Gets type of annotation. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::AnnotationType Aspose::Pdf::Annotations::PolylineAnnotation::get_AnnotationType() override +``` + +## See Also + +* Enum [AnnotationType](../../annotationtype/) +* Class [PolylineAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/polylineannotation/polylineannotation/_index.md b/english/cpp/aspose.pdf.annotations/polylineannotation/polylineannotation/_index.md new file mode 100644 index 0000000000..e766685e5f --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/polylineannotation/polylineannotation/_index.md @@ -0,0 +1,61 @@ +--- +title: Aspose::Pdf::Annotations::PolylineAnnotation::PolylineAnnotation constructor +linktitle: PolylineAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PolylineAnnotation::PolylineAnnotation constructor. Creates new Polyline annotation on the specified page in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/polylineannotation/polylineannotation/ +--- +## PolylineAnnotation::PolylineAnnotation constructor + + +Creates new Polyline annotation on the specified page. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::PolylineAnnotation::PolylineAnnotation(System::SharedPtr page, System::SharedPtr rect, System::ArrayPtr> vertices) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The document's page where annotation should be created. | +| rect | System::SharedPtr\ | The annotation rectangle, defining the location of the annotation on the page. | +| vertices | System::ArrayPtr\\> | An array of polygon vertices points. | +## Remarks + + + + + + page + + + The document's page where annotation should be created. + + + + + rect + + + The annotation rectangle, defining the location of the annotation on the page. + + + + + vertices + + + An array of polygon vertices points. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [Point](../../../aspose.pdf/point/) +* Class [PolylineAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/popupannotation/_index.md b/english/cpp/aspose.pdf.annotations/popupannotation/_index.md new file mode 100644 index 0000000000..d18ea5d79c --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/popupannotation/_index.md @@ -0,0 +1,92 @@ +--- +title: Aspose::Pdf::Annotations::PopupAnnotation class +linktitle: PopupAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PopupAnnotation class. Represents the pop-up annotation that displays text in a pop-up window for entry and editing in C++.' +type: docs +weight: 8800 +url: /cpp/aspose.pdf.annotations/popupannotation/ +--- +## PopupAnnotation class + + +Represents the pop-up annotation that displays text in a pop-up window for entry and editing. + +```cpp +class PopupAnnotation : public Aspose::Pdf::Annotations::Annotation +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Accept](./accept/)(System::SharedPtr\) override | Accepts visitor object to process the annotation. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| virtual [ChangeAfterResize](../annotation/changeafterresize/)(System::SharedPtr\) | Update parameters and appearance, according to the matrix transform. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [Flatten](../annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](../annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../annotation/get_alignment/)() | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [get_AnnotationType](./get_annotationtype/)() override | Gets type of annotation. | +| [get_Appearance](../annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../annotation/get_border/)() const | Gets annotation border characteristics. [Border](../border/) | +| [get_Characteristics](../annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../annotation/get_color/)() | Gets annotation color. | +| [get_Contents](../annotation/get_contents/)() | Gets annotation text. | +| [get_Flags](../annotation/get_flags/)() | Flags of the annotation. | +| [get_FullName](../annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../annotation/get_height/)() | Gets height of the annotation. | +| [get_HorizontalAlignment](../annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| [get_Modified](../annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Name](../annotation/get_name/)() | Gets annotation name on the page. | +| [get_Open](./get_open/)() | Gets a flag specifying whether the pop-up annotation should initially be displayed open. | +| virtual [get_PageIndex](../annotation/get_pageindex/)() | Gets index of page which contains annotation. | +| [get_Parent](./get_parent/)() | Gets the parent annotation with which this pop-up annotation shall be associated. If this entry is present, the parent annotation's Contents, M, C, and T entries shall override those of the pop-up annotation itself. | +| virtual [get_Rect](../annotation/get_rect/)() | Gets annotation rectangle. | +| [get_States](../annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_TextHorizontalAlignment](../annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| static [get_UpdateAppearanceOnConvert](../annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetRectangle](../annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| [PopupAnnotation](./popupannotation/)(System::SharedPtr\) | Constructor. for using in Generator. | +| [PopupAnnotation](./popupannotation/)(System::SharedPtr\, System::SharedPtr\) | Creates new Popup annotation on the specified page. | +| virtual [set_ActiveState](../annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../annotation/set_alignment/)(TextAlignment) | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_Border](../annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../border/) | +| [set_Color](../annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](../annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_Flags](../annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| virtual [set_Height](../annotation/set_height/)(double) | Sets height of the annotation. | +| [set_HorizontalAlignment](../annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| [set_Modified](../annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Name](../annotation/set_name/)(System::String) | Sets annotation name on the page. | +| [set_Open](./set_open/)(bool) | Sets a flag specifying whether the pop-up annotation should initially be displayed open. | +| [set_Parent](./set_parent/)(System::SharedPtr\) | Sets the parent annotation with which this pop-up annotation shall be associated. If this entry is present, the parent annotation's Contents, M, C, and T entries shall override those of the pop-up annotation itself. | +| virtual [set_Rect](../annotation/set_rect/)(System::SharedPtr\) | Sets annotation rectangle. | +| [set_TextHorizontalAlignment](../annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| static [set_UpdateAppearanceOnConvert](../annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +## See Also + +* Class [Annotation](../annotation/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/popupannotation/accept/_index.md b/english/cpp/aspose.pdf.annotations/popupannotation/accept/_index.md new file mode 100644 index 0000000000..599be78d5e --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/popupannotation/accept/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Annotations::PopupAnnotation::Accept method +linktitle: Accept +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PopupAnnotation::Accept method. Accepts visitor object to process the annotation in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/popupannotation/accept/ +--- +## PopupAnnotation::Accept method + + +Accepts visitor object to process the annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PopupAnnotation::Accept(System::SharedPtr visitor) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| visitor | System::SharedPtr\ | Visitor object. | +## Remarks + + + + + + visitor + + + Visitor object. + + + +## See Also + +* Class [AnnotationSelector](../../annotationselector/) +* Class [PopupAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/popupannotation/get_annotationtype/_index.md b/english/cpp/aspose.pdf.annotations/popupannotation/get_annotationtype/_index.md new file mode 100644 index 0000000000..c451310d2d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/popupannotation/get_annotationtype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::PopupAnnotation::get_AnnotationType method +linktitle: get_AnnotationType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PopupAnnotation::get_AnnotationType method. Gets type of annotation in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/popupannotation/get_annotationtype/ +--- +## PopupAnnotation::get_AnnotationType method + + +Gets type of annotation. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::AnnotationType Aspose::Pdf::Annotations::PopupAnnotation::get_AnnotationType() override +``` + +## See Also + +* Enum [AnnotationType](../../annotationtype/) +* Class [PopupAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/popupannotation/get_open/_index.md b/english/cpp/aspose.pdf.annotations/popupannotation/get_open/_index.md new file mode 100644 index 0000000000..9675c8934e --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/popupannotation/get_open/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::PopupAnnotation::get_Open method +linktitle: get_Open +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PopupAnnotation::get_Open method. Gets a flag specifying whether the pop-up annotation should initially be displayed open in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/popupannotation/get_open/ +--- +## PopupAnnotation::get_Open method + + +Gets a flag specifying whether the pop-up annotation should initially be displayed open. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Annotations::PopupAnnotation::get_Open() +``` + +## See Also + +* Class [PopupAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/popupannotation/get_parent/_index.md b/english/cpp/aspose.pdf.annotations/popupannotation/get_parent/_index.md new file mode 100644 index 0000000000..3e8bd5a4b8 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/popupannotation/get_parent/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::PopupAnnotation::get_Parent method +linktitle: get_Parent +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PopupAnnotation::get_Parent method. Gets the parent annotation with which this pop-up annotation shall be associated. If this entry is present, the parent annotation''s Contents, M, C, and T entries shall override those of the pop-up annotation itself in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/popupannotation/get_parent/ +--- +## PopupAnnotation::get_Parent method + + +Gets the parent annotation with which this pop-up annotation shall be associated. If this entry is present, the parent annotation's Contents, M, C, and T entries shall override those of the pop-up annotation itself. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::PopupAnnotation::get_Parent() +``` + +## See Also + +* Class [Annotation](../../annotation/) +* Class [PopupAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/popupannotation/popupannotation/_index.md b/english/cpp/aspose.pdf.annotations/popupannotation/popupannotation/_index.md new file mode 100644 index 0000000000..843b726809 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/popupannotation/popupannotation/_index.md @@ -0,0 +1,84 @@ +--- +title: Aspose::Pdf::Annotations::PopupAnnotation::PopupAnnotation constructor +linktitle: PopupAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PopupAnnotation::PopupAnnotation constructor. Constructor. for using in Generator in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.annotations/popupannotation/popupannotation/ +--- +## PopupAnnotation::PopupAnnotation(System::SharedPtr\) constructor + + +Constructor. for using in Generator. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::PopupAnnotation::PopupAnnotation(System::SharedPtr document) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | [Document](../../../aspose.pdf/document/) where new popup annotation will be created. | +## Remarks + + + + + + document + + + + Document where new popup annotation will be created. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [PopupAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## PopupAnnotation::PopupAnnotation(System::SharedPtr\, System::SharedPtr\) constructor + + +Creates new Popup annotation on the specified page. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::PopupAnnotation::PopupAnnotation(System::SharedPtr page, System::SharedPtr rect) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The document's page where annotation should be created. | +| rect | System::SharedPtr\ | The annotation rectangle, defining the location of the annotation on the page. | +## Remarks + + + + + + page + + + The document's page where annotation should be created. + + + + + rect + + + The annotation rectangle, defining the location of the annotation on the page. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [PopupAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/popupannotation/set_open/_index.md b/english/cpp/aspose.pdf.annotations/popupannotation/set_open/_index.md new file mode 100644 index 0000000000..13ca159a7e --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/popupannotation/set_open/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::PopupAnnotation::set_Open method +linktitle: set_Open +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PopupAnnotation::set_Open method. Sets a flag specifying whether the pop-up annotation should initially be displayed open in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/popupannotation/set_open/ +--- +## PopupAnnotation::set_Open method + + +Sets a flag specifying whether the pop-up annotation should initially be displayed open. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PopupAnnotation::set_Open(bool value) +``` + +## See Also + +* Class [PopupAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/popupannotation/set_parent/_index.md b/english/cpp/aspose.pdf.annotations/popupannotation/set_parent/_index.md new file mode 100644 index 0000000000..6fead07468 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/popupannotation/set_parent/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::PopupAnnotation::set_Parent method +linktitle: set_Parent +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PopupAnnotation::set_Parent method. Sets the parent annotation with which this pop-up annotation shall be associated. If this entry is present, the parent annotation''s Contents, M, C, and T entries shall override those of the pop-up annotation itself in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/popupannotation/set_parent/ +--- +## PopupAnnotation::set_Parent method + + +Sets the parent annotation with which this pop-up annotation shall be associated. If this entry is present, the parent annotation's Contents, M, C, and T entries shall override those of the pop-up annotation itself. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PopupAnnotation::set_Parent(System::SharedPtr value) +``` + +## See Also + +* Class [Annotation](../../annotation/) +* Class [PopupAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/predefinedaction/_index.md b/english/cpp/aspose.pdf.annotations/predefinedaction/_index.md new file mode 100644 index 0000000000..ac6d73b80c --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/predefinedaction/_index.md @@ -0,0 +1,98 @@ +--- +title: Aspose::Pdf::Annotations::PredefinedAction enum +linktitle: PredefinedAction +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PredefinedAction enum. Defines different actions which can be triggered from a PDF file in C++.' +type: docs +weight: 15500 +url: /cpp/aspose.pdf.annotations/predefinedaction/ +--- +## PredefinedAction enum + + +Defines different actions which can be triggered from a PDF file. + +```cpp +enum class PredefinedAction +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| FirstPage | 0 | A named action to go to the first page. | +| LastPage | 1 | A named action to go to the last page. | +| NextPage | 2 | A named action to go to the next page. | +| PrevPage | 3 | A named action to go to the previous page. | +| PrintDialog | 4 | A named action to open a print dialog (JavaScript). | +| Print | 5 | A named action to open a print dialog. | +| Bookmarks_ExpanCurrentBookmark | 6 | A named action to find current bookmark. | +| Bookmarks_HightlightCurrentBookmark | 7 | A named action to highlight current bookmark. | +| Document_AttachFile | 8 | A named action to add file attachment. | +| Document_CropPages | 9 | A named action to crop document pages. | +| Document_DeletePages | 10 | A named action to delete document pages. | +| Document_ExtractPages | 11 | A named action to exctract document pages. | +| Document_InsertPages | 12 | A named action to insert pages from a document. | +| Document_ReplacePages | 13 | A named action to replace document pages. | +| Document_RotatePages | 14 | A named action to rotate document pages. | +| Edit_CheckSpelling_InComFieldEdit | 15 | A named action to check spelling in comments. | +| Edit_Find | 16 | A named action to find. | +| Edit_Preferences | 17 | A named action to edit preferences. | +| Edit_Search | 18 | A named action for searching. | +| File_AttachToEmail | 19 | A named action for attaching current pdf document into email message. | +| File_Close | 20 | A named action to close the document. | +| File_CreatePDF_FromScanner | 21 | A named action to create pdf document from scanner. | +| File_CreatePDF_FromWebPage | 22 | A named action to create pdf document from web page. | +| File_Exit | 23 | A named action to exit pdf reader. | +| File_Organizer_OpenOrganizer | 24 | A named action to open organizer. | +| File_Print | 25 | A named action to print the document. | +| File_Properties | 26 | A named action to open the document properties. | +| File_SaveAs | 27 | A named action to save the document with another name. | +| Miscellaneous_ZoomIn | 28 | A named action to zoom in the document. | +| Miscellaneous_ZoomOut | 29 | A named action to zoom out the document. | +| PageImages_PrintPages | 30 | A named action to print the document pages. | +| View_GoTo_NextView | 31 | A named action to go to the next view. | +| View_GoTo_Page | 32 | A named action to go to the certain page. | +| View_GoTo_PreDocument | 33 | A named action to go to the previous document. | +| View_GoTo_PreView | 34 | A named action to go to the previous view. | +| View_NavigationPanels_Articles | 35 | A named action to show/hide articles panel. | +| View_NavigationPanels_Attachments | 36 | A named action to show/hide attachment panel. | +| View_NavigationPanels_Boomarks | 37 | A named action to show/hide bookmark panel. | +| View_NavigationPanels_Comments | 38 | A named action to show/hide comments panel. | +| View_NavigationPanels_Fields | 39 | A named action to show/hide fields panel. | +| View_NavigationPanels_Layers | 40 | A named action to show/hide layers panel. | +| View_NavigationPanels_ModelTree | 41 | A named action to show/hide model tree panel. | +| View_NavigationPanels_Pages | 42 | A named action to show/hide pages panel. | +| View_NavigationPanels_Signatures | 43 | A named action to show/hide signatures panel. | +| View_PageDisplay_SinglePage | 44 | A named action to display single page. | +| View_PageDisplay_SinglePageContinuous | 45 | A named action to display single continious page. | +| View_PageDisplay_TwoUp | 46 | A named action to display pages as Two-Up. | +| View_PageDisplay_TwoUpContinuous | 47 | A named action to display pages as Two-Up continious. | +| View_Toolbars_AdvanceEditing | 48 | A named action to show/hide advanced editing toolbar. | +| View_Toolbars_CommentMarkup | 49 | A named action to show/hide commenting toolbar. | +| View_Toolbars_Edit | 50 | A named action to show/hide edit toolbar. | +| View_Toolbars_File | 51 | A named action to show/hide file toolbar. | +| View_Toolbars_Find | 52 | A named action to show/hide find toolbar. | +| View_Toolbars_Forms | 53 | A named action to show/hide forms toolbar. | +| View_Toolbars_Measuring | 54 | A named action to show/hide measuring toolbar. | +| View_Toolbars_ObjectData | 55 | A named action to show/hide object data toolbar. | +| View_Toolbars_PageDisplay | 56 | A named action to show/hide page display toolbar. | +| View_Toolbars_PageNavigation | 57 | A named action to show/hide navigation toolbar. | +| View_Toolbars_PrintProduction | 58 | A named action to show/hide print production toolbar. | +| View_Toolbars_PropertiesBar | 59 | A named action to show/hide property toolbar. | +| View_Toolbars_Redaction | 60 | A named action to show/hide redaction toolbar. | +| View_Toolbars_SelectZoom | 61 | A named action to show/hide select & zoom toolbar. | +| View_Toolbars_Tasks | 62 | A named action to show/hide tasks toolbar. | +| View_Toolbars_Typewriter | 63 | A named action to show/hide typewriter toolbar. | +| View_Zoom_ActualSize | 64 | A named action to view pages in actual size. | +| View_Zoom_FitHeight | 65 | A named action to fit page on height. | +| View_Zoom_FitPage | 66 | A named action to fit page. | +| View_Zoom_FitVisible | 67 | A named action to fit page visibility. | +| View_Zoom_FitWidth | 68 | A named action to fit page on width. | +| View_Zoom_ZoomTo | 69 | A named action to make zoom. | +| Window_FullScreenMode | 70 | A named action to view the document in the full screen mode. | + +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/predefinedactionconverter/_index.md b/english/cpp/aspose.pdf.annotations/predefinedactionconverter/_index.md new file mode 100644 index 0000000000..1e82b55e17 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/predefinedactionconverter/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Annotations::PredefinedActionConverter class +linktitle: PredefinedActionConverter +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Annotations::PredefinedActionConverter class in C++.' +type: docs +weight: 8900 +url: /cpp/aspose.pdf.annotations/predefinedactionconverter/ +--- +## PredefinedActionConverter class + + + + +```cpp +class PredefinedActionConverter : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [ToString](./tostring/)(PredefinedAction) | | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/predefinedactionconverter/tostring/_index.md b/english/cpp/aspose.pdf.annotations/predefinedactionconverter/tostring/_index.md new file mode 100644 index 0000000000..e1d950bbca --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/predefinedactionconverter/tostring/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::PredefinedActionConverter::ToString method +linktitle: ToString +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToString method of Aspose::Pdf::Annotations::PredefinedActionConverter class in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/predefinedactionconverter/tostring/ +--- +## PredefinedActionConverter::ToString method + + + + +```cpp +static ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::PredefinedActionConverter::ToString(PredefinedAction value) +``` + +## See Also + +* Enum [PredefinedAction](../../predefinedaction/) +* Class [PredefinedActionConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/printermarkannotation/_index.md b/english/cpp/aspose.pdf.annotations/printermarkannotation/_index.md new file mode 100644 index 0000000000..d86e3e8abe --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/printermarkannotation/_index.md @@ -0,0 +1,88 @@ +--- +title: Aspose::Pdf::Annotations::PrinterMarkAnnotation class +linktitle: PrinterMarkAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PrinterMarkAnnotation class. Abstract class representing printer mark annotation in C++.' +type: docs +weight: 9000 +url: /cpp/aspose.pdf.annotations/printermarkannotation/ +--- +## PrinterMarkAnnotation class + + +Abstract class representing printer mark annotation. + +```cpp +class PrinterMarkAnnotation : public Aspose::Pdf::Annotations::Annotation +``` + +## Methods + +| Method | Description | +| --- | --- | +| virtual [Accept](../annotation/accept/)(System::SharedPtr\) | Accepts visitor for annotation processing. | +| static [AddPrinterMarks](./addprintermarks/)(System::SharedPtr\, PrinterMarksKind) | Adds printer's marks to all pages in the specified document. | +| static [AddPrinterMarks](./addprintermarks/)(System::SharedPtr\, PrinterMarksKind) | Adds printer's marks to the specified page. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| virtual [ChangeAfterResize](../annotation/changeafterresize/)(System::SharedPtr\) | Update parameters and appearance, according to the matrix transform. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [Flatten](../annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](../annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../annotation/get_alignment/)() | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| virtual [get_AnnotationType](../annotation/get_annotationtype/)() | Gets type of annotation. | +| [get_Appearance](../annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../annotation/get_border/)() const | Gets annotation border characteristics. [Border](../border/) | +| [get_Characteristics](../annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../annotation/get_color/)() | Gets annotation color. | +| [get_Contents](../annotation/get_contents/)() | Gets annotation text. | +| [get_Flags](../annotation/get_flags/)() | Flags of the annotation. | +| [get_FullName](../annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../annotation/get_height/)() | Gets height of the annotation. | +| [get_HorizontalAlignment](../annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| [get_Modified](../annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Name](../annotation/get_name/)() | Gets annotation name on the page. | +| virtual [get_PageIndex](../annotation/get_pageindex/)() | Gets index of page which contains annotation. | +| virtual [get_Rect](../annotation/get_rect/)() | Gets annotation rectangle. | +| [get_States](../annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_TextHorizontalAlignment](../annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| static [get_UpdateAppearanceOnConvert](../annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetRectangle](../annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| virtual [set_ActiveState](../annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../annotation/set_alignment/)(TextAlignment) | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_Border](../annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../border/) | +| [set_Color](../annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](../annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_Flags](../annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| virtual [set_Height](../annotation/set_height/)(double) | Sets height of the annotation. | +| [set_HorizontalAlignment](../annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| [set_Modified](../annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Name](../annotation/set_name/)(System::String) | Sets annotation name on the page. | +| virtual [set_Rect](../annotation/set_rect/)(System::SharedPtr\) | Sets annotation rectangle. | +| [set_TextHorizontalAlignment](../annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| static [set_UpdateAppearanceOnConvert](../annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +## See Also + +* Class [Annotation](../annotation/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/printermarkannotation/addprintermarks/_index.md b/english/cpp/aspose.pdf.annotations/printermarkannotation/addprintermarks/_index.md new file mode 100644 index 0000000000..6306d11e51 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/printermarkannotation/addprintermarks/_index.md @@ -0,0 +1,115 @@ +--- +title: Aspose::Pdf::Annotations::PrinterMarkAnnotation::AddPrinterMarks method +linktitle: AddPrinterMarks +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PrinterMarkAnnotation::AddPrinterMarks method. Adds printer''s marks to all pages in the specified document in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/printermarkannotation/addprintermarks/ +--- +## PrinterMarkAnnotation::AddPrinterMarks(System::SharedPtr\, PrinterMarksKind) method + + +Adds printer's marks to all pages in the specified document. + +```cpp +static ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PrinterMarkAnnotation::AddPrinterMarks(System::SharedPtr document, PrinterMarksKind marksKind) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | The document to which the printer's marks will be added. | +| marksKind | PrinterMarksKind | The kind of printer's marks to add. | +## Remarks + + + + + + document + + + The document to which the printer's marks will be added. + + + + + marksKind + + + The kind of printer's marks to add. + + + + + + ArgumentNullException + + + Thrown when the document is null. + + + + +This method adds various types of printer's marks based on the provided [PrinterMarksKind](../../printermarkskind/) flags. If [PrinterMarksKind::None](../../printermarkskind/) is provided, no marks are added. +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Enum [PrinterMarksKind](../../printermarkskind/) +* Class [PrinterMarkAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## PrinterMarkAnnotation::AddPrinterMarks(System::SharedPtr\, PrinterMarksKind) method + + +Adds printer's marks to the specified page. + +```cpp +static ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::PrinterMarkAnnotation::AddPrinterMarks(System::SharedPtr page, PrinterMarksKind marksKind) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The page to which the printer's marks will be added. | +| marksKind | PrinterMarksKind | The kind of printer's marks to add. | +## Remarks + + + + + + page + + + The page to which the printer's marks will be added. + + + + + marksKind + + + The kind of printer's marks to add. + + + + + + ArgumentNullException + + + Thrown when the page is null. + + + + +This method adds various types of printer's marks based on the provided [PrinterMarksKind](../../printermarkskind/) flags. If [PrinterMarksKind::None](../../printermarkskind/) is provided, no marks are added. +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Enum [PrinterMarksKind](../../printermarkskind/) +* Class [PrinterMarkAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/printermarkcornerposition/_index.md b/english/cpp/aspose.pdf.annotations/printermarkcornerposition/_index.md new file mode 100644 index 0000000000..efc254b068 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/printermarkcornerposition/_index.md @@ -0,0 +1,31 @@ +--- +title: Aspose::Pdf::Annotations::PrinterMarkCornerPosition enum +linktitle: PrinterMarkCornerPosition +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PrinterMarkCornerPosition enum. Represents a position of a mark in a corner of a page in C++.' +type: docs +weight: 13900 +url: /cpp/aspose.pdf.annotations/printermarkcornerposition/ +--- +## PrinterMarkCornerPosition enum + + +Represents a position of a mark in a corner of a page. + +```cpp +enum class PrinterMarkCornerPosition +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| TopLeft | 0 | Position the mark in the top left corner. | +| TopRight | 1 | Position the mark in the top right corner. | +| BottomLeft | 2 | Position the mark in the bottom left corner. | +| BottomRight | 3 | Position the mark in the bottom right corner. | + +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/printermarksideposition/_index.md b/english/cpp/aspose.pdf.annotations/printermarksideposition/_index.md new file mode 100644 index 0000000000..5cfeb497dd --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/printermarksideposition/_index.md @@ -0,0 +1,31 @@ +--- +title: Aspose::Pdf::Annotations::PrinterMarkSidePosition enum +linktitle: PrinterMarkSidePosition +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PrinterMarkSidePosition enum. Represents a position of a registration mark on a page in C++.' +type: docs +weight: 14000 +url: /cpp/aspose.pdf.annotations/printermarksideposition/ +--- +## PrinterMarkSidePosition enum + + +Represents a position of a registration mark on a page. + +```cpp +enum class PrinterMarkSidePosition +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Top | 0 | Position the mark in the top margin of the page. | +| Bottom | 1 | Position the mark in the bottom margin of the page. | +| Left | 2 | Position the mark in the left margin of the page. | +| Right | 3 | Position the mark in the right margin of the page. | + +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/printermarkskind/_index.md b/english/cpp/aspose.pdf.annotations/printermarkskind/_index.md new file mode 100644 index 0000000000..443f294630 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/printermarkskind/_index.md @@ -0,0 +1,38 @@ +--- +title: Aspose::Pdf::Annotations::PrinterMarksKind enum +linktitle: PrinterMarksKind +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PrinterMarksKind enum. Specifies the types of printer''s marks to be added to a document in C++.' +type: docs +weight: 14100 +url: /cpp/aspose.pdf.annotations/printermarkskind/ +--- +## PrinterMarksKind enum + + +Specifies the types of printer's marks to be added to a document. + +```cpp +enum class PrinterMarksKind +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| None | 0 | Specifies that no printer's marks are to be added. | +| TrimMarks | n/a | Specifies that trim marks are to be added. | +| BleedMarks | n/a | Specifies that bleed marks are to be added. | +| RegistrationMarks | n/a | Specifies that registration marks are to be added. | +| ColorBars | n/a | Specifies that color bars are to be added. | +| PageInformation | n/a | Specifies that page information is to be added. | +| All | n/a | Specifies that all types of printer's marks are to be added. | + +## Remarks + + +This enumeration has a [FlagsAttribute](../) attribute that allows a bitwise combination of its member values. +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/printermarkskindextensions/_index.md b/english/cpp/aspose.pdf.annotations/printermarkskindextensions/_index.md new file mode 100644 index 0000000000..fff8f47a16 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/printermarkskindextensions/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::PrinterMarksKindExtensions class +linktitle: PrinterMarksKindExtensions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PrinterMarksKindExtensions class. Provides extension methods for the PrinterMarksKind enumeration in C++.' +type: docs +weight: 9100 +url: /cpp/aspose.pdf.annotations/printermarkskindextensions/ +--- +## PrinterMarksKindExtensions class + + +Provides extension methods for the [PrinterMarksKind](../printermarkskind/) enumeration. + +```cpp +class PrinterMarksKindExtensions +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [HasFlagFast](./hasflagfast/)(PrinterMarksKind, PrinterMarksKind) | Determines whether the current value includes a specified flag. | +| [PrinterMarksKindExtensions](./printermarkskindextensions/)() | | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/printermarkskindextensions/hasflagfast/_index.md b/english/cpp/aspose.pdf.annotations/printermarkskindextensions/hasflagfast/_index.md new file mode 100644 index 0000000000..195df32f35 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/printermarkskindextensions/hasflagfast/_index.md @@ -0,0 +1,57 @@ +--- +title: Aspose::Pdf::Annotations::PrinterMarksKindExtensions::HasFlagFast method +linktitle: HasFlagFast +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::PrinterMarksKindExtensions::HasFlagFast method. Determines whether the current value includes a specified flag in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/printermarkskindextensions/hasflagfast/ +--- +## PrinterMarksKindExtensions::HasFlagFast method + + +Determines whether the current value includes a specified flag. + +```cpp +static ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Annotations::PrinterMarksKindExtensions::HasFlagFast(PrinterMarksKind value, PrinterMarksKind flag) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| value | PrinterMarksKind | The current value of the [PrinterMarksKind](../../printermarkskind/) enumeration. | +| flag | PrinterMarksKind | The flag to check. | + +### ReturnValue + +**true** +## Remarks + + + + + + value + + + The current value of the PrinterMarksKind enumeration. + + + + + flag + + + The flag to check. + + + +if the flag is included in the current value; otherwise, **false** + +. +## See Also + +* Enum [PrinterMarksKind](../../printermarkskind/) +* Class [PrinterMarksKindExtensions](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/printermarkskindextensions/printermarkskindextensions/_index.md b/english/cpp/aspose.pdf.annotations/printermarkskindextensions/printermarkskindextensions/_index.md new file mode 100644 index 0000000000..e1d6abb705 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/printermarkskindextensions/printermarkskindextensions/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::PrinterMarksKindExtensions::PrinterMarksKindExtensions constructor +linktitle: PrinterMarksKindExtensions +second_title: Aspose.PDF for C++ API Reference +description: 'How to use PrinterMarksKindExtensions constructor of Aspose::Pdf::Annotations::PrinterMarksKindExtensions class in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/printermarkskindextensions/printermarkskindextensions/ +--- +## PrinterMarksKindExtensions::PrinterMarksKindExtensions constructor + + + + +```cpp +Aspose::Pdf::Annotations::PrinterMarksKindExtensions::PrinterMarksKindExtensions()=delete +``` + +## See Also + +* Class [PrinterMarksKindExtensions](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/redactionannotation/_index.md b/english/cpp/aspose.pdf.annotations/redactionannotation/_index.md new file mode 100644 index 0000000000..5db8b4be0e --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/redactionannotation/_index.md @@ -0,0 +1,127 @@ +--- +title: Aspose::Pdf::Annotations::RedactionAnnotation class +linktitle: RedactionAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RedactionAnnotation class. Represents Redact annotation in C++.' +type: docs +weight: 9200 +url: /cpp/aspose.pdf.annotations/redactionannotation/ +--- +## RedactionAnnotation class + + +Represents Redact annotation. + +```cpp +class RedactionAnnotation : public Aspose::Pdf::Annotations::MarkupAnnotation +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Accept](./accept/)(System::SharedPtr\) override | Accepts visitor object to process the annotation. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| virtual [ChangeAfterResize](../annotation/changeafterresize/)(System::SharedPtr\) | Update parameters and appearance, according to the matrix transform. | +| [ClearState](../markupannotation/clearstate/)() | Clears state and state model for the annotation. For example, clears the review status for an annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [Flatten](../annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](../annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../annotation/get_alignment/)() | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [get_AnnotationType](./get_annotationtype/)() override | Gets type of annotation. | +| [get_Appearance](../annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../annotation/get_border/)() const | Gets annotation border characteristics. [Border](../border/) | +| [get_BorderColor](./get_bordercolor/)() | Gets color of border which is drawn when redaction is not active. | +| [get_Characteristics](../annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../annotation/get_color/)() | Gets annotation color. | +| [get_Contents](../annotation/get_contents/)() | Gets annotation text. | +| [get_CreationDate](../markupannotation/get_creationdate/)() | Gets date and time when annotation was created. | +| [get_DefaultAppearance](./get_defaultappearance/)() | Gets the default appearance string to be used in formatting the text. | +| [get_FillColor](./get_fillcolor/)() | Gets color to fill annotation. | +| [get_Flags](../annotation/get_flags/)() | Flags of the annotation. | +| [get_FontSize](./get_fontsize/)() const | Gets font size for OverlayText. | +| [get_FullName](../annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../annotation/get_height/)() | Gets height of the annotation. | +| [get_HorizontalAlignment](../annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_InReplyTo](../markupannotation/get_inreplyto/)() | A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| [get_Modified](../annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Name](../annotation/get_name/)() | Gets annotation name on the page. | +| [get_Opacity](../markupannotation/get_opacity/)() | Gets the constant opacity value to be used in painting the annotation. | +| [get_OverlayText](./get_overlaytext/)() | Gets text to print on redact annotation. | +| virtual [get_PageIndex](../annotation/get_pageindex/)() | Gets index of page which contains annotation. | +| [get_Popup](../markupannotation/get_popup/)() | Pop-up annotation for entering or editing the text associated with this annotation. | +| [get_QuadPoint](./get_quadpoint/)() | An array of 8xN numbers specifying the coordinates of content region that is intended to be removed. | +| virtual [get_Rect](../annotation/get_rect/)() | Gets annotation rectangle. | +| [get_Repeat](./get_repeat/)() | If true overlay text will be repated on the annotation. | +| [get_ReplyType](../markupannotation/get_replytype/)() | A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. | +| [get_RichText](../markupannotation/get_richtext/)() | Gets a rich text string to be displayed in the pop-up window when the annotation is opened. | +| [get_States](../annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_Subject](../markupannotation/get_subject/)() | Gets text representing desciption of the object. | +| [get_TextAlignment](./get_textalignment/)() | Gets. Alignment of Overlay [Text](../../aspose.pdf.text/). | +| [get_TextHorizontalAlignment](../annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| [get_Title](../markupannotation/get_title/)() override | Gets a text that shall be displayed in title bar of annotation. | +| static [get_UpdateAppearanceOnConvert](../annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetRectangle](../annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| [GetState](../markupannotation/getstate/)() | Gets the state of the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [GetStateModel](../markupannotation/getstatemodel/)() | Gets the state model of the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [MarkupAnnotation](../markupannotation/markupannotation/)(System::SharedPtr\) | Constructor for markup annotation. | +| [Redact](./redact/)() | Flattens annotation and redacts page contents (i.e. removes text and image under redacted annotation) | +| [RedactionAnnotation](./redactionannotation/)(System::SharedPtr\) | Constructor for [RedactionAnnotation](./). For using in Generator. | +| [RedactionAnnotation](./redactionannotation/)(System::SharedPtr\, System::SharedPtr\) | Constructor for RedactAnnotation. | +| virtual [set_ActiveState](../annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../annotation/set_alignment/)(TextAlignment) | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_Border](../annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../border/) | +| [set_BorderColor](./set_bordercolor/)(System::SharedPtr\) | Sets color of border which is drawn when redaction is not active. | +| [set_Color](../annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](../annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_DefaultAppearance](./set_defaultappearance/)(System::String) | Sets the default appearance string to be used in formatting the text. | +| [set_FillColor](./set_fillcolor/)(System::SharedPtr\) | Sets color to fill annotation. | +| [set_Flags](../annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| [set_FontSize](./set_fontsize/)(float) | Sets font size for OverlayText. | +| virtual [set_Height](../annotation/set_height/)(double) | Sets height of the annotation. | +| [set_HorizontalAlignment](../annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_InReplyTo](../markupannotation/set_inreplyto/)(System::SharedPtr\) | A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| [set_Modified](../annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Name](../annotation/set_name/)(System::String) | Sets annotation name on the page. | +| [set_Opacity](../markupannotation/set_opacity/)(double) | Sets the constant opacity value to be used in painting the annotation. | +| [set_OverlayText](./set_overlaytext/)(System::String) | Sets text to print on redact annotation. | +| [set_Popup](../markupannotation/set_popup/)(System::SharedPtr\) | Pop-up annotation for entering or editing the text associated with this annotation. | +| [set_QuadPoint](./set_quadpoint/)(System::ArrayPtr\\>) | An array of 8xN numbers specifying the coordinates of content region that is intended to be removed. | +| virtual [set_Rect](../annotation/set_rect/)(System::SharedPtr\) | Sets annotation rectangle. | +| [set_Repeat](./set_repeat/)(bool) | If true overlay text will be repated on the annotation. | +| [set_ReplyType](../markupannotation/set_replytype/)(Aspose::Pdf::Annotations::ReplyType) | A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. | +| [set_RichText](../markupannotation/set_richtext/)(System::String) | Sets a rich text string to be displayed in the pop-up window when the annotation is opened. | +| [set_Subject](../markupannotation/set_subject/)(System::String) | Gets text representing desciption of the object. | +| [set_TextAlignment](./set_textalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets. Alignment of Overlay [Text](../../aspose.pdf.text/). | +| [set_TextHorizontalAlignment](../annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| [set_Title](../markupannotation/set_title/)(System::String) override | Sets a text that shall be displayed in title bar of annotation. | +| static [set_UpdateAppearanceOnConvert](../annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [SetMarkedState](../markupannotation/setmarkedstate/)(bool) | Sets Marked and Unmarked state for the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SetReviewState](../markupannotation/setreviewstate/)(AnnotationState, System::String) | Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SetReviewState](../markupannotation/setreviewstate/)(AnnotationState) | Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. The state is set by the user who created the target annotation. The value is taken from the Title property of the target annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +## See Also + +* Class [MarkupAnnotation](../markupannotation/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/redactionannotation/accept/_index.md b/english/cpp/aspose.pdf.annotations/redactionannotation/accept/_index.md new file mode 100644 index 0000000000..17aa724d5e --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/redactionannotation/accept/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Annotations::RedactionAnnotation::Accept method +linktitle: Accept +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RedactionAnnotation::Accept method. Accepts visitor object to process the annotation in C++.' +type: docs +weight: 1800 +url: /cpp/aspose.pdf.annotations/redactionannotation/accept/ +--- +## RedactionAnnotation::Accept method + + +Accepts visitor object to process the annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::RedactionAnnotation::Accept(System::SharedPtr visitor) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| visitor | System::SharedPtr\ | Visitor object. | +## Remarks + + + + + + visitor + + + Visitor object. + + + +## See Also + +* Class [AnnotationSelector](../../annotationselector/) +* Class [RedactionAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/redactionannotation/get_annotationtype/_index.md b/english/cpp/aspose.pdf.annotations/redactionannotation/get_annotationtype/_index.md new file mode 100644 index 0000000000..076a506854 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/redactionannotation/get_annotationtype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::RedactionAnnotation::get_AnnotationType method +linktitle: get_AnnotationType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RedactionAnnotation::get_AnnotationType method. Gets type of annotation in C++.' +type: docs +weight: 1700 +url: /cpp/aspose.pdf.annotations/redactionannotation/get_annotationtype/ +--- +## RedactionAnnotation::get_AnnotationType method + + +Gets type of annotation. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::AnnotationType Aspose::Pdf::Annotations::RedactionAnnotation::get_AnnotationType() override +``` + +## See Also + +* Enum [AnnotationType](../../annotationtype/) +* Class [RedactionAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/redactionannotation/get_bordercolor/_index.md b/english/cpp/aspose.pdf.annotations/redactionannotation/get_bordercolor/_index.md new file mode 100644 index 0000000000..c269d84657 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/redactionannotation/get_bordercolor/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::RedactionAnnotation::get_BorderColor method +linktitle: get_BorderColor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RedactionAnnotation::get_BorderColor method. Gets color of border which is drawn when redaction is not active in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.annotations/redactionannotation/get_bordercolor/ +--- +## RedactionAnnotation::get_BorderColor method + + +Gets color of border which is drawn when redaction is not active. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::RedactionAnnotation::get_BorderColor() +``` + +## See Also + +* Class [Color](../../../aspose.pdf/color/) +* Class [RedactionAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/redactionannotation/get_defaultappearance/_index.md b/english/cpp/aspose.pdf.annotations/redactionannotation/get_defaultappearance/_index.md new file mode 100644 index 0000000000..752c58c58e --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/redactionannotation/get_defaultappearance/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::RedactionAnnotation::get_DefaultAppearance method +linktitle: get_DefaultAppearance +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RedactionAnnotation::get_DefaultAppearance method. Gets the default appearance string to be used in formatting the text in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/redactionannotation/get_defaultappearance/ +--- +## RedactionAnnotation::get_DefaultAppearance method + + +Gets the default appearance string to be used in formatting the text. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::RedactionAnnotation::get_DefaultAppearance() +``` + +## See Also + +* Class [RedactionAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/redactionannotation/get_fillcolor/_index.md b/english/cpp/aspose.pdf.annotations/redactionannotation/get_fillcolor/_index.md new file mode 100644 index 0000000000..ac2a72b67d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/redactionannotation/get_fillcolor/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::RedactionAnnotation::get_FillColor method +linktitle: get_FillColor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RedactionAnnotation::get_FillColor method. Gets color to fill annotation in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/redactionannotation/get_fillcolor/ +--- +## RedactionAnnotation::get_FillColor method + + +Gets color to fill annotation. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::RedactionAnnotation::get_FillColor() +``` + +## See Also + +* Class [Color](../../../aspose.pdf/color/) +* Class [RedactionAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/redactionannotation/get_fontsize/_index.md b/english/cpp/aspose.pdf.annotations/redactionannotation/get_fontsize/_index.md new file mode 100644 index 0000000000..85db018a3d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/redactionannotation/get_fontsize/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::RedactionAnnotation::get_FontSize method +linktitle: get_FontSize +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RedactionAnnotation::get_FontSize method. Gets font size for OverlayText in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.annotations/redactionannotation/get_fontsize/ +--- +## RedactionAnnotation::get_FontSize method + + +Gets font size for OverlayText. + +```cpp +ASPOSE_PDF_SHARED_API float Aspose::Pdf::Annotations::RedactionAnnotation::get_FontSize() const +``` + +## See Also + +* Class [RedactionAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/redactionannotation/get_overlaytext/_index.md b/english/cpp/aspose.pdf.annotations/redactionannotation/get_overlaytext/_index.md new file mode 100644 index 0000000000..03b74240f9 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/redactionannotation/get_overlaytext/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::RedactionAnnotation::get_OverlayText method +linktitle: get_OverlayText +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RedactionAnnotation::get_OverlayText method. Gets text to print on redact annotation in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.annotations/redactionannotation/get_overlaytext/ +--- +## RedactionAnnotation::get_OverlayText method + + +Gets text to print on redact annotation. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::RedactionAnnotation::get_OverlayText() +``` + +## See Also + +* Class [RedactionAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/redactionannotation/get_quadpoint/_index.md b/english/cpp/aspose.pdf.annotations/redactionannotation/get_quadpoint/_index.md new file mode 100644 index 0000000000..0284bc0b1b --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/redactionannotation/get_quadpoint/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::RedactionAnnotation::get_QuadPoint method +linktitle: get_QuadPoint +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RedactionAnnotation::get_QuadPoint method. An array of 8xN numbers specifying the coordinates of content region that is intended to be removed in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/redactionannotation/get_quadpoint/ +--- +## RedactionAnnotation::get_QuadPoint method + + +An array of 8xN numbers specifying the coordinates of content region that is intended to be removed. + +```cpp +ASPOSE_PDF_SHARED_API System::ArrayPtr> Aspose::Pdf::Annotations::RedactionAnnotation::get_QuadPoint() +``` + +## See Also + +* Class [Point](../../../aspose.pdf/point/) +* Class [RedactionAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/redactionannotation/get_repeat/_index.md b/english/cpp/aspose.pdf.annotations/redactionannotation/get_repeat/_index.md new file mode 100644 index 0000000000..bc71319961 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/redactionannotation/get_repeat/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::RedactionAnnotation::get_Repeat method +linktitle: get_Repeat +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RedactionAnnotation::get_Repeat method. If true overlay text will be repated on the annotation in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.annotations/redactionannotation/get_repeat/ +--- +## RedactionAnnotation::get_Repeat method + + +If true overlay text will be repated on the annotation. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Annotations::RedactionAnnotation::get_Repeat() +``` + +## See Also + +* Class [RedactionAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/redactionannotation/get_textalignment/_index.md b/english/cpp/aspose.pdf.annotations/redactionannotation/get_textalignment/_index.md new file mode 100644 index 0000000000..2364e85a8f --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/redactionannotation/get_textalignment/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::RedactionAnnotation::get_TextAlignment method +linktitle: get_TextAlignment +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RedactionAnnotation::get_TextAlignment method. Gets. Alignment of Overlay Text in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.annotations/redactionannotation/get_textalignment/ +--- +## RedactionAnnotation::get_TextAlignment method + + +Gets. Alignment of Overlay [Text](../../../aspose.pdf.text/). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::HorizontalAlignment Aspose::Pdf::Annotations::RedactionAnnotation::get_TextAlignment() +``` + +## See Also + +* Enum [HorizontalAlignment](../../../aspose.pdf/horizontalalignment/) +* Class [RedactionAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/redactionannotation/redact/_index.md b/english/cpp/aspose.pdf.annotations/redactionannotation/redact/_index.md new file mode 100644 index 0000000000..da5cb9819c --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/redactionannotation/redact/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::RedactionAnnotation::Redact method +linktitle: Redact +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RedactionAnnotation::Redact method. Flattens annotation and redacts page contents (i.e. removes text and image under redacted annotation) in C++.' +type: docs +weight: 2000 +url: /cpp/aspose.pdf.annotations/redactionannotation/redact/ +--- +## RedactionAnnotation::Redact method + + +Flattens annotation and redacts page contents (i.e. removes text and image under redacted annotation) + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::RedactionAnnotation::Redact() +``` + +## See Also + +* Class [RedactionAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/redactionannotation/redactionannotation/_index.md b/english/cpp/aspose.pdf.annotations/redactionannotation/redactionannotation/_index.md new file mode 100644 index 0000000000..f1d8e79671 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/redactionannotation/redactionannotation/_index.md @@ -0,0 +1,86 @@ +--- +title: Aspose::Pdf::Annotations::RedactionAnnotation::RedactionAnnotation constructor +linktitle: RedactionAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RedactionAnnotation::RedactionAnnotation constructor. Constructor for RedactionAnnotation. For using in Generator in C++.' +type: docs +weight: 1900 +url: /cpp/aspose.pdf.annotations/redactionannotation/redactionannotation/ +--- +## RedactionAnnotation::RedactionAnnotation(System::SharedPtr\) constructor + + +Constructor for [RedactionAnnotation](../). For using in Generator. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::RedactionAnnotation::RedactionAnnotation(System::SharedPtr document) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | [Document](../../../aspose.pdf/document/) where new annotation will be created. | +## Remarks + + + + + + document + + + + Document where new annotation will be created. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [RedactionAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## RedactionAnnotation::RedactionAnnotation(System::SharedPtr\, System::SharedPtr\) constructor + + +Constructor for RedactAnnotation. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::RedactionAnnotation::RedactionAnnotation(System::SharedPtr page, System::SharedPtr rect) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | [Page](../../../aspose.pdf/page/) where annotation will be placed. | +| rect | System::SharedPtr\ | [Annotation](../../annotation/) position on the page. | +## Remarks + + + + + + page + + + + Page where annotation will be placed. + + + + + rect + + + + Annotation position on the page. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [RedactionAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/redactionannotation/set_bordercolor/_index.md b/english/cpp/aspose.pdf.annotations/redactionannotation/set_bordercolor/_index.md new file mode 100644 index 0000000000..af27e6b6cd --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/redactionannotation/set_bordercolor/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::RedactionAnnotation::set_BorderColor method +linktitle: set_BorderColor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RedactionAnnotation::set_BorderColor method. Sets color of border which is drawn when redaction is not active in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.annotations/redactionannotation/set_bordercolor/ +--- +## RedactionAnnotation::set_BorderColor method + + +Sets color of border which is drawn when redaction is not active. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::RedactionAnnotation::set_BorderColor(System::SharedPtr value) +``` + +## See Also + +* Class [Color](../../../aspose.pdf/color/) +* Class [RedactionAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/redactionannotation/set_defaultappearance/_index.md b/english/cpp/aspose.pdf.annotations/redactionannotation/set_defaultappearance/_index.md new file mode 100644 index 0000000000..b92999508a --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/redactionannotation/set_defaultappearance/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::RedactionAnnotation::set_DefaultAppearance method +linktitle: set_DefaultAppearance +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RedactionAnnotation::set_DefaultAppearance method. Sets the default appearance string to be used in formatting the text in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/redactionannotation/set_defaultappearance/ +--- +## RedactionAnnotation::set_DefaultAppearance method + + +Sets the default appearance string to be used in formatting the text. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::RedactionAnnotation::set_DefaultAppearance(System::String value) +``` + +## See Also + +* Class [RedactionAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/redactionannotation/set_fillcolor/_index.md b/english/cpp/aspose.pdf.annotations/redactionannotation/set_fillcolor/_index.md new file mode 100644 index 0000000000..26dae230ad --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/redactionannotation/set_fillcolor/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::RedactionAnnotation::set_FillColor method +linktitle: set_FillColor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RedactionAnnotation::set_FillColor method. Sets color to fill annotation in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/redactionannotation/set_fillcolor/ +--- +## RedactionAnnotation::set_FillColor method + + +Sets color to fill annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::RedactionAnnotation::set_FillColor(System::SharedPtr value) +``` + +## See Also + +* Class [Color](../../../aspose.pdf/color/) +* Class [RedactionAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/redactionannotation/set_fontsize/_index.md b/english/cpp/aspose.pdf.annotations/redactionannotation/set_fontsize/_index.md new file mode 100644 index 0000000000..0eacce7f3b --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/redactionannotation/set_fontsize/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::RedactionAnnotation::set_FontSize method +linktitle: set_FontSize +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RedactionAnnotation::set_FontSize method. Sets font size for OverlayText in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.annotations/redactionannotation/set_fontsize/ +--- +## RedactionAnnotation::set_FontSize method + + +Sets font size for OverlayText. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::RedactionAnnotation::set_FontSize(float value) +``` + +## See Also + +* Class [RedactionAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/redactionannotation/set_overlaytext/_index.md b/english/cpp/aspose.pdf.annotations/redactionannotation/set_overlaytext/_index.md new file mode 100644 index 0000000000..516db05949 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/redactionannotation/set_overlaytext/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::RedactionAnnotation::set_OverlayText method +linktitle: set_OverlayText +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RedactionAnnotation::set_OverlayText method. Sets text to print on redact annotation in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.annotations/redactionannotation/set_overlaytext/ +--- +## RedactionAnnotation::set_OverlayText method + + +Sets text to print on redact annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::RedactionAnnotation::set_OverlayText(System::String value) +``` + +## See Also + +* Class [RedactionAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/redactionannotation/set_quadpoint/_index.md b/english/cpp/aspose.pdf.annotations/redactionannotation/set_quadpoint/_index.md new file mode 100644 index 0000000000..d6a439ffa1 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/redactionannotation/set_quadpoint/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::RedactionAnnotation::set_QuadPoint method +linktitle: set_QuadPoint +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RedactionAnnotation::set_QuadPoint method. An array of 8xN numbers specifying the coordinates of content region that is intended to be removed in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/redactionannotation/set_quadpoint/ +--- +## RedactionAnnotation::set_QuadPoint method + + +An array of 8xN numbers specifying the coordinates of content region that is intended to be removed. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::RedactionAnnotation::set_QuadPoint(System::ArrayPtr> value) +``` + +## See Also + +* Class [Point](../../../aspose.pdf/point/) +* Class [RedactionAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/redactionannotation/set_repeat/_index.md b/english/cpp/aspose.pdf.annotations/redactionannotation/set_repeat/_index.md new file mode 100644 index 0000000000..7051520d2e --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/redactionannotation/set_repeat/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::RedactionAnnotation::set_Repeat method +linktitle: set_Repeat +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RedactionAnnotation::set_Repeat method. If true overlay text will be repated on the annotation in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.annotations/redactionannotation/set_repeat/ +--- +## RedactionAnnotation::set_Repeat method + + +If true overlay text will be repated on the annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::RedactionAnnotation::set_Repeat(bool value) +``` + +## See Also + +* Class [RedactionAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/redactionannotation/set_textalignment/_index.md b/english/cpp/aspose.pdf.annotations/redactionannotation/set_textalignment/_index.md new file mode 100644 index 0000000000..b6569c6182 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/redactionannotation/set_textalignment/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::RedactionAnnotation::set_TextAlignment method +linktitle: set_TextAlignment +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RedactionAnnotation::set_TextAlignment method. Sets. Alignment of Overlay Text in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf.annotations/redactionannotation/set_textalignment/ +--- +## RedactionAnnotation::set_TextAlignment method + + +Sets. Alignment of Overlay [Text](../../../aspose.pdf.text/). + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::RedactionAnnotation::set_TextAlignment(Aspose::Pdf::HorizontalAlignment value) +``` + +## See Also + +* Enum [HorizontalAlignment](../../../aspose.pdf/horizontalalignment/) +* Class [RedactionAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/registrationmarkannotation/_index.md b/english/cpp/aspose.pdf.annotations/registrationmarkannotation/_index.md new file mode 100644 index 0000000000..4df1f1e7ae --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/registrationmarkannotation/_index.md @@ -0,0 +1,95 @@ +--- +title: Aspose::Pdf::Annotations::RegistrationMarkAnnotation class +linktitle: RegistrationMarkAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RegistrationMarkAnnotation class. Represents a Registration Mark annotation in C++.' +type: docs +weight: 9300 +url: /cpp/aspose.pdf.annotations/registrationmarkannotation/ +--- +## RegistrationMarkAnnotation class + + +Represents a Registration Mark annotation. + +```cpp +class RegistrationMarkAnnotation : public Aspose::Pdf::Annotations::PrinterMarkAnnotation +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Accept](./accept/)(System::SharedPtr\) override | Accepts visitor for annotation processing. | +| static [AddPrinterMarks](../printermarkannotation/addprintermarks/)(System::SharedPtr\, PrinterMarksKind) | Adds printer's marks to all pages in the specified document. | +| static [AddPrinterMarks](../printermarkannotation/addprintermarks/)(System::SharedPtr\, PrinterMarksKind) | Adds printer's marks to the specified page. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| virtual [ChangeAfterResize](../annotation/changeafterresize/)(System::SharedPtr\) | Update parameters and appearance, according to the matrix transform. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [Flatten](../annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](../annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../annotation/get_alignment/)() | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [get_AnnotationType](./get_annotationtype/)() override | Gets type of annotation. | +| [get_Appearance](../annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../annotation/get_border/)() const | Gets annotation border characteristics. [Border](../border/) | +| [get_Characteristics](../annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../annotation/get_color/)() | Gets annotation color. | +| [get_Contents](../annotation/get_contents/)() | Gets annotation text. | +| [get_Flags](../annotation/get_flags/)() | Flags of the annotation. | +| [get_FullName](../annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../annotation/get_height/)() | Gets height of the annotation. | +| [get_HorizontalAlignment](../annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| [get_Modified](../annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Name](../annotation/get_name/)() | Gets annotation name on the page. | +| virtual [get_PageIndex](../annotation/get_pageindex/)() | Gets index of page which contains annotation. | +| [get_Position](./get_position/)() const | Gets the position of the registration mark on a page. | +| virtual [get_Rect](../annotation/get_rect/)() | Gets annotation rectangle. | +| [get_States](../annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_TextHorizontalAlignment](../annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| static [get_UpdateAppearanceOnConvert](../annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetRectangle](../annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| [RegistrationMarkAnnotation](./registrationmarkannotation/)(System::SharedPtr\, PrinterMarkSidePosition) | Initializes a new instance of the [RegistrationMarkAnnotation](./) class on the given page in the given location. | +| virtual [set_ActiveState](../annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../annotation/set_alignment/)(TextAlignment) | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_Border](../annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../border/) | +| [set_Color](../annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](../annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_Flags](../annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| virtual [set_Height](../annotation/set_height/)(double) | Sets height of the annotation. | +| [set_HorizontalAlignment](../annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| [set_Modified](../annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Name](../annotation/set_name/)(System::String) | Sets annotation name on the page. | +| [set_Position](./set_position/)(PrinterMarkSidePosition) | Sets the position of the registration mark on a page. | +| virtual [set_Rect](../annotation/set_rect/)(System::SharedPtr\) | Sets annotation rectangle. | +| [set_TextHorizontalAlignment](../annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| static [set_UpdateAppearanceOnConvert](../annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +## Remarks + + +Registration marks are symbols added to printing plates or screens to ensure proper alignment of colors during the printing process. +## See Also + +* Class [PrinterMarkAnnotation](../printermarkannotation/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/registrationmarkannotation/accept/_index.md b/english/cpp/aspose.pdf.annotations/registrationmarkannotation/accept/_index.md new file mode 100644 index 0000000000..8bacf6712f --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/registrationmarkannotation/accept/_index.md @@ -0,0 +1,42 @@ +--- +title: Aspose::Pdf::Annotations::RegistrationMarkAnnotation::Accept method +linktitle: Accept +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RegistrationMarkAnnotation::Accept method. Accepts visitor for annotation processing in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/registrationmarkannotation/accept/ +--- +## RegistrationMarkAnnotation::Accept method + + +Accepts visitor for annotation processing. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::RegistrationMarkAnnotation::Accept(System::SharedPtr visitor) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| visitor | System::SharedPtr\ | [AnnotationSelector](../../annotationselector/) object. | +## Remarks + + + + + + visitor + + + + AnnotationSelector object. + + + +## See Also + +* Class [AnnotationSelector](../../annotationselector/) +* Class [RegistrationMarkAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/registrationmarkannotation/get_annotationtype/_index.md b/english/cpp/aspose.pdf.annotations/registrationmarkannotation/get_annotationtype/_index.md new file mode 100644 index 0000000000..fa415b57e5 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/registrationmarkannotation/get_annotationtype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::RegistrationMarkAnnotation::get_AnnotationType method +linktitle: get_AnnotationType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RegistrationMarkAnnotation::get_AnnotationType method. Gets type of annotation in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/registrationmarkannotation/get_annotationtype/ +--- +## RegistrationMarkAnnotation::get_AnnotationType method + + +Gets type of annotation. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::AnnotationType Aspose::Pdf::Annotations::RegistrationMarkAnnotation::get_AnnotationType() override +``` + +## See Also + +* Enum [AnnotationType](../../annotationtype/) +* Class [RegistrationMarkAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/registrationmarkannotation/get_position/_index.md b/english/cpp/aspose.pdf.annotations/registrationmarkannotation/get_position/_index.md new file mode 100644 index 0000000000..9940810688 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/registrationmarkannotation/get_position/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::RegistrationMarkAnnotation::get_Position method +linktitle: get_Position +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RegistrationMarkAnnotation::get_Position method. Gets the position of the registration mark on a page in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/registrationmarkannotation/get_position/ +--- +## RegistrationMarkAnnotation::get_Position method + + +Gets the position of the registration mark on a page. + +```cpp +ASPOSE_PDF_SHARED_API PrinterMarkSidePosition Aspose::Pdf::Annotations::RegistrationMarkAnnotation::get_Position() const +``` + +## See Also + +* Enum [PrinterMarkSidePosition](../../printermarksideposition/) +* Class [RegistrationMarkAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/registrationmarkannotation/registrationmarkannotation/_index.md b/english/cpp/aspose.pdf.annotations/registrationmarkannotation/registrationmarkannotation/_index.md new file mode 100644 index 0000000000..15185e507b --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/registrationmarkannotation/registrationmarkannotation/_index.md @@ -0,0 +1,51 @@ +--- +title: Aspose::Pdf::Annotations::RegistrationMarkAnnotation::RegistrationMarkAnnotation constructor +linktitle: RegistrationMarkAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RegistrationMarkAnnotation::RegistrationMarkAnnotation constructor. Initializes a new instance of the RegistrationMarkAnnotation class on the given page in the given location in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/registrationmarkannotation/registrationmarkannotation/ +--- +## RegistrationMarkAnnotation::RegistrationMarkAnnotation constructor + + +Initializes a new instance of the [RegistrationMarkAnnotation](../) class on the given page in the given location. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::RegistrationMarkAnnotation::RegistrationMarkAnnotation(System::SharedPtr page, PrinterMarkSidePosition position) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The page with which the annotation will be associated. | +| position | PrinterMarkSidePosition | Position of the annotation on the page. | +## Remarks + + + + + + page + + + The page with which the annotation will be associated. + + + + + position + + + Position of the annotation on the page. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Enum [PrinterMarkSidePosition](../../printermarksideposition/) +* Class [RegistrationMarkAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/registrationmarkannotation/set_position/_index.md b/english/cpp/aspose.pdf.annotations/registrationmarkannotation/set_position/_index.md new file mode 100644 index 0000000000..ae89519fb6 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/registrationmarkannotation/set_position/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::RegistrationMarkAnnotation::set_Position method +linktitle: set_Position +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RegistrationMarkAnnotation::set_Position method. Sets the position of the registration mark on a page in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/registrationmarkannotation/set_position/ +--- +## RegistrationMarkAnnotation::set_Position method + + +Sets the position of the registration mark on a page. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::RegistrationMarkAnnotation::set_Position(PrinterMarkSidePosition value) +``` + +## See Also + +* Enum [PrinterMarkSidePosition](../../printermarksideposition/) +* Class [RegistrationMarkAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/rendermodetype/_index.md b/english/cpp/aspose.pdf.annotations/rendermodetype/_index.md new file mode 100644 index 0000000000..a900385533 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/rendermodetype/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Annotations::RenderModeType enum +linktitle: RenderModeType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RenderModeType enum. Enum RenderModeType: set of render mode types in C++.' +type: docs +weight: 13700 +url: /cpp/aspose.pdf.annotations/rendermodetype/ +--- +## RenderModeType enum + + +Enum RenderModeType: set of render mode types. + +```cpp +enum class RenderModeType +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Solid | 0 | The "Solid" render mode. | +| SolidWireframe | 1 | The "SolidWireFrame" render mode. | +| Transparent | 2 | The "Transparent" render mode. | +| TransparentWareFrame | 3 | The "TransparentWareFrame" render mode. | +| BoundingBox | 4 | The "BoundingBox" render mode. | +| TransparentBoundingBox | 5 | The "TransparentBoundingBox" render mode. | +| TransparentBoundingBoxOutline | 6 | The "TransparentBoundingBoxOutline" render mode. | +| Wireframe | 7 | The "WireFrame" render mode. | +| ShadedWireframe | 8 | The "ShadedWireFrame" render mode. | +| Vertices | 9 | The "Vertices" render mode. | +| ShadedVertices | 10 | The "ShadedVertices" render mode. | +| Illustration | 11 | The "Illustration" render mode. | +| SolidOutline | 12 | The "SolidOutline" render mode. | +| ShadedIllustration | 13 | The "ShadedIllustration" render mode. | + +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/rendition/_index.md b/english/cpp/aspose.pdf.annotations/rendition/_index.md new file mode 100644 index 0000000000..0823afdad0 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/rendition/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Annotations::Rendition class +linktitle: Rendition +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Rendition class. Class which describes rendition object of RendtionAnnotation in C++.' +type: docs +weight: 9400 +url: /cpp/aspose.pdf.annotations/rendition/ +--- +## Rendition class + + +Class which describes rendition object of RendtionAnnotation. + +```cpp +class Rendition : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_Name](./get_name/)() | [Text](../../aspose.pdf.text/) string specifying the name of the rendition for use in a user interface and for name tree lookup by JavaScript actions. | +| [get_RenditionType](./get_renditiontype/)() | Gets rendition type. | +| [set_Name](./set_name/)(System::String) | [Text](../../aspose.pdf.text/) string specifying the name of the rendition for use in a user interface and for name tree lookup by JavaScript actions. | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/rendition/get_name/_index.md b/english/cpp/aspose.pdf.annotations/rendition/get_name/_index.md new file mode 100644 index 0000000000..f68f19bd03 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/rendition/get_name/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Rendition::get_Name method +linktitle: get_Name +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Rendition::get_Name method. Text string specifying the name of the rendition for use in a user interface and for name tree lookup by JavaScript actions in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/rendition/get_name/ +--- +## Rendition::get_Name method + + +[Text](../../../aspose.pdf.text/) string specifying the name of the rendition for use in a user interface and for name tree lookup by JavaScript actions. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::Rendition::get_Name() +``` + +## See Also + +* Class [Rendition](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/rendition/get_renditiontype/_index.md b/english/cpp/aspose.pdf.annotations/rendition/get_renditiontype/_index.md new file mode 100644 index 0000000000..375e6eebb4 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/rendition/get_renditiontype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::Rendition::get_RenditionType method +linktitle: get_RenditionType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Rendition::get_RenditionType method. Gets rendition type in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/rendition/get_renditiontype/ +--- +## Rendition::get_RenditionType method + + +Gets rendition type. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::RenditionType Aspose::Pdf::Annotations::Rendition::get_RenditionType() +``` + +## See Also + +* Enum [RenditionType](../../renditiontype/) +* Class [Rendition](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/rendition/set_name/_index.md b/english/cpp/aspose.pdf.annotations/rendition/set_name/_index.md new file mode 100644 index 0000000000..c2f4e1e2fb --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/rendition/set_name/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::Rendition::set_Name method +linktitle: set_Name +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::Rendition::set_Name method. Text string specifying the name of the rendition for use in a user interface and for name tree lookup by JavaScript actions in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/rendition/set_name/ +--- +## Rendition::set_Name method + + +[Text](../../../aspose.pdf.text/) string specifying the name of the rendition for use in a user interface and for name tree lookup by JavaScript actions. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::Rendition::set_Name(System::String value) +``` + +## See Also + +* Class [Rendition](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/renditionaction/_index.md b/english/cpp/aspose.pdf.annotations/renditionaction/_index.md new file mode 100644 index 0000000000..79f7e8f4b2 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/renditionaction/_index.md @@ -0,0 +1,35 @@ +--- +title: Aspose::Pdf::Annotations::RenditionAction class +linktitle: RenditionAction +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RenditionAction class. A rendition action that controls the playing of multimedia content in C++.' +type: docs +weight: 9500 +url: /cpp/aspose.pdf.annotations/renditionaction/ +--- +## RenditionAction class + + +A rendition action that controls the playing of multimedia content. + +```cpp +class RenditionAction : public Aspose::Pdf::Annotations::PdfAction +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_JavaScript](./get_javascript/)() | Gets JavaScript code associated with the action. | +| [get_Next](../pdfaction/get_next/)() | Next actions in sequence. | +| [get_Rendition](./get_rendition/)() | Gets rendition associated with the action. | +| [get_RenditionOperation](./get_renditionoperation/)() | The operation to perform when the action is triggered. | +| [GetECMAScriptString](../pdfaction/getecmascriptstring/)() | Gets string for ECMAScript Action. | +| [set_JavaScript](./set_javascript/)(System::String) | Sets JavaScript code associated with the action. | +| [set_RenditionOperation](./set_renditionoperation/)(Aspose::Pdf::Annotations::RenditionOperation) | The operation to perform when the action is triggered. | +| [ToString](../pdfaction/tostring/)() const override | Returns string representation of [ExplicitDestination](../explicitdestination/) object. | +## See Also + +* Class [PdfAction](../pdfaction/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/renditionaction/get_javascript/_index.md b/english/cpp/aspose.pdf.annotations/renditionaction/get_javascript/_index.md new file mode 100644 index 0000000000..fbc1ae7146 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/renditionaction/get_javascript/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::RenditionAction::get_JavaScript method +linktitle: get_JavaScript +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RenditionAction::get_JavaScript method. Gets JavaScript code associated with the action in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/renditionaction/get_javascript/ +--- +## RenditionAction::get_JavaScript method + + +Gets JavaScript code associated with the action. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::RenditionAction::get_JavaScript() +``` + +## See Also + +* Class [RenditionAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/renditionaction/get_rendition/_index.md b/english/cpp/aspose.pdf.annotations/renditionaction/get_rendition/_index.md new file mode 100644 index 0000000000..96ac0cd2f8 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/renditionaction/get_rendition/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::RenditionAction::get_Rendition method +linktitle: get_Rendition +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RenditionAction::get_Rendition method. Gets rendition associated with the action in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/renditionaction/get_rendition/ +--- +## RenditionAction::get_Rendition method + + +Gets rendition associated with the action. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::RenditionAction::get_Rendition() +``` + +## See Also + +* Class [Rendition](../../rendition/) +* Class [RenditionAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/renditionaction/get_renditionoperation/_index.md b/english/cpp/aspose.pdf.annotations/renditionaction/get_renditionoperation/_index.md new file mode 100644 index 0000000000..ecda50970a --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/renditionaction/get_renditionoperation/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::RenditionAction::get_RenditionOperation method +linktitle: get_RenditionOperation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RenditionAction::get_RenditionOperation method. The operation to perform when the action is triggered in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/renditionaction/get_renditionoperation/ +--- +## RenditionAction::get_RenditionOperation method + + +The operation to perform when the action is triggered. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::RenditionOperation Aspose::Pdf::Annotations::RenditionAction::get_RenditionOperation() +``` + +## See Also + +* Enum [RenditionOperation](../../renditionoperation/) +* Class [RenditionAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/renditionaction/set_javascript/_index.md b/english/cpp/aspose.pdf.annotations/renditionaction/set_javascript/_index.md new file mode 100644 index 0000000000..d65acb6a0b --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/renditionaction/set_javascript/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::RenditionAction::set_JavaScript method +linktitle: set_JavaScript +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RenditionAction::set_JavaScript method. Sets JavaScript code associated with the action in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/renditionaction/set_javascript/ +--- +## RenditionAction::set_JavaScript method + + +Sets JavaScript code associated with the action. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::RenditionAction::set_JavaScript(System::String value) +``` + +## See Also + +* Class [RenditionAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/renditionaction/set_renditionoperation/_index.md b/english/cpp/aspose.pdf.annotations/renditionaction/set_renditionoperation/_index.md new file mode 100644 index 0000000000..a9143a4145 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/renditionaction/set_renditionoperation/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::RenditionAction::set_RenditionOperation method +linktitle: set_RenditionOperation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RenditionAction::set_RenditionOperation method. The operation to perform when the action is triggered in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/renditionaction/set_renditionoperation/ +--- +## RenditionAction::set_RenditionOperation method + + +The operation to perform when the action is triggered. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::RenditionAction::set_RenditionOperation(Aspose::Pdf::Annotations::RenditionOperation value) +``` + +## See Also + +* Enum [RenditionOperation](../../renditionoperation/) +* Class [RenditionAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/renditionoperation/_index.md b/english/cpp/aspose.pdf.annotations/renditionoperation/_index.md new file mode 100644 index 0000000000..f3beadb175 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/renditionoperation/_index.md @@ -0,0 +1,33 @@ +--- +title: Aspose::Pdf::Annotations::RenditionOperation enum +linktitle: RenditionOperation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RenditionOperation enum. The operation to perform when the action is triggered in C++.' +type: docs +weight: 14200 +url: /cpp/aspose.pdf.annotations/renditionoperation/ +--- +## RenditionOperation enum + + +The operation to perform when the action is triggered. + +```cpp +enum class RenditionOperation +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| PlayStop | 0 | If no rendition is associated with the annotation, play the specified rendition, associating it with the annotation. If a rendition is already associated with the annotation, it shall be stopped, and the new rendition shall be associated with the annotation. | +| Stop | 1 | Stop any rendition being played in association with the annotation. | +| Pause | 2 | Pause any rendition being played in association with the annotation. | +| Resume | 3 | Resume any rendition being played in association with the annotation. | +| PlayResume | 4 | Play the specified rendition, associating it with the annotation. If a rendition is already associated with the annotation, resume the rendition if it is paused. | +| Undefined | -1 | Operation not defined. | + +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/renditiontype/_index.md b/english/cpp/aspose.pdf.annotations/renditiontype/_index.md new file mode 100644 index 0000000000..6aec8a55fd --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/renditiontype/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Annotations::RenditionType enum +linktitle: RenditionType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RenditionType enum. Enumeration describes possible types of Rendition in C++.' +type: docs +weight: 14300 +url: /cpp/aspose.pdf.annotations/renditiontype/ +--- +## RenditionType enum + + +Enumeration describes possible types of [Rendition](../rendition/). + +```cpp +enum class RenditionType +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Media | 0 | Media rendition object. | +| Selector | 1 | Selector rendition object. | +| Undefined | 2 | [Rendition](../rendition/) type is undefined. | + +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/replytype/_index.md b/english/cpp/aspose.pdf.annotations/replytype/_index.md new file mode 100644 index 0000000000..b581f124a8 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/replytype/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Annotations::ReplyType enum +linktitle: ReplyType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::ReplyType enum. Enumerates the kinds of the relationships (the "reply type") between the annotation and one specified by InReplyTo in C++.' +type: docs +weight: 14400 +url: /cpp/aspose.pdf.annotations/replytype/ +--- +## ReplyType enum + + +Enumerates the kinds of the relationships (the "reply type") between the annotation and one specified by InReplyTo. + +```cpp +enum class ReplyType +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Undefined | 0 | Undefined relationship. | +| Reply | 1 | The annotation is considered a reply to the annotation specified by InReplyTo. Viewer applications should not display replies to an annotation individually but together in the form of threaded comments. | +| Group | 2 | The annotation is grouped with the annotation specified by InReplyTo. | + +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/replytypeconverter/_index.md b/english/cpp/aspose.pdf.annotations/replytypeconverter/_index.md new file mode 100644 index 0000000000..011a62114c --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/replytypeconverter/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Annotations::ReplyTypeConverter class +linktitle: ReplyTypeConverter +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Annotations::ReplyTypeConverter class in C++.' +type: docs +weight: 9600 +url: /cpp/aspose.pdf.annotations/replytypeconverter/ +--- +## ReplyTypeConverter class + + + + +```cpp +class ReplyTypeConverter : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [ToEnum](./toenum/)(System::String) | | +| static [ToString](./tostring/)(ReplyType) | | +| static [ToXfdfString](./toxfdfstring/)(ReplyType) | | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/replytypeconverter/toenum/_index.md b/english/cpp/aspose.pdf.annotations/replytypeconverter/toenum/_index.md new file mode 100644 index 0000000000..19d7ea0a30 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/replytypeconverter/toenum/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::ReplyTypeConverter::ToEnum method +linktitle: ToEnum +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToEnum method of Aspose::Pdf::Annotations::ReplyTypeConverter class in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/replytypeconverter/toenum/ +--- +## ReplyTypeConverter::ToEnum method + + + + +```cpp +static ASPOSE_PDF_SHARED_API ReplyType Aspose::Pdf::Annotations::ReplyTypeConverter::ToEnum(System::String value) +``` + +## See Also + +* Enum [ReplyType](../../replytype/) +* Class [ReplyTypeConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/replytypeconverter/tostring/_index.md b/english/cpp/aspose.pdf.annotations/replytypeconverter/tostring/_index.md new file mode 100644 index 0000000000..e4c83a8b17 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/replytypeconverter/tostring/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::ReplyTypeConverter::ToString method +linktitle: ToString +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToString method of Aspose::Pdf::Annotations::ReplyTypeConverter class in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/replytypeconverter/tostring/ +--- +## ReplyTypeConverter::ToString method + + + + +```cpp +static ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::ReplyTypeConverter::ToString(ReplyType value) +``` + +## See Also + +* Enum [ReplyType](../../replytype/) +* Class [ReplyTypeConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/replytypeconverter/toxfdfstring/_index.md b/english/cpp/aspose.pdf.annotations/replytypeconverter/toxfdfstring/_index.md new file mode 100644 index 0000000000..b4d4e903ef --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/replytypeconverter/toxfdfstring/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::ReplyTypeConverter::ToXfdfString method +linktitle: ToXfdfString +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToXfdfString method of Aspose::Pdf::Annotations::ReplyTypeConverter class in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/replytypeconverter/toxfdfstring/ +--- +## ReplyTypeConverter::ToXfdfString method + + + + +```cpp +static ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::ReplyTypeConverter::ToXfdfString(ReplyType value) +``` + +## See Also + +* Enum [ReplyType](../../replytype/) +* Class [ReplyTypeConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/richmediaannotation/_index.md b/english/cpp/aspose.pdf.annotations/richmediaannotation/_index.md new file mode 100644 index 0000000000..3895ffd28a --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/richmediaannotation/_index.md @@ -0,0 +1,100 @@ +--- +title: Aspose::Pdf::Annotations::RichMediaAnnotation class +linktitle: RichMediaAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RichMediaAnnotation class. Class describes RichMediaAnnotation which allows embed video/audio data into PDF document in C++.' +type: docs +weight: 9700 +url: /cpp/aspose.pdf.annotations/richmediaannotation/ +--- +## RichMediaAnnotation class + + +Class describes [RichMediaAnnotation](./) which allows embed video/audio data into PDF document. + +```cpp +class RichMediaAnnotation : public Aspose::Pdf::Annotations::Annotation +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Accept](./accept/)(System::SharedPtr\) override | Accepts visitor for this annotation. | +| [AddCustomData](./addcustomdata/)(System::String, System::SharedPtr\) | Add custom named data (for example required for flash script). | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| virtual [ChangeAfterResize](../annotation/changeafterresize/)(System::SharedPtr\) | Update parameters and appearance, according to the matrix transform. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [Flatten](../annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](../annotation/get_actions/)() | Gets list of annotatation actions. | +| [get_ActivateOn](./get_activateon/)() | Event which activates application. | +| virtual [get_ActiveState](../annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../annotation/get_alignment/)() | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [get_AnnotationType](./get_annotationtype/)() override | Gets type of annotation. | +| [get_Appearance](../annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../annotation/get_border/)() const | Gets annotation border characteristics. [Border](../border/) | +| [get_Characteristics](../annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../annotation/get_color/)() | Gets annotation color. | +| [get_Content](./get_content/)() | Data of the Rich Media content. | +| [get_Contents](../annotation/get_contents/)() | Gets annotation text. | +| [get_CustomFlashVariables](./get_customflashvariables/)() const | Sets or gets flash variables which passed to player. | +| [get_CustomPlayer](./get_customplayer/)() const | Sets or gets custom flash player to play video/audio data. | +| [get_Flags](../annotation/get_flags/)() | Flags of the annotation. | +| [get_FullName](../annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../annotation/get_height/)() | Gets height of the annotation. | +| [get_HorizontalAlignment](../annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| [get_Modified](../annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Name](../annotation/get_name/)() | Gets annotation name on the page. | +| virtual [get_PageIndex](../annotation/get_pageindex/)() | Gets index of page which contains annotation. | +| virtual [get_Rect](../annotation/get_rect/)() | Gets annotation rectangle. | +| [get_States](../annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_TextHorizontalAlignment](../annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| [get_Type](./get_type/)() | Gets type of content. Possible values: Audio, Video. | +| static [get_UpdateAppearanceOnConvert](../annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetRectangle](../annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| [RichMediaAnnotation](./richmediaannotation/)(System::SharedPtr\, System::SharedPtr\) | Initializes [RichMediaAnnotation](./). | +| [set_ActivateOn](./set_activateon/)(RichMediaAnnotation::ActivationEvent) | Event which activates application. | +| virtual [set_ActiveState](../annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../annotation/set_alignment/)(TextAlignment) | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_Border](../annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../border/) | +| [set_Color](../annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](../annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_CustomFlashVariables](./set_customflashvariables/)(System::String) | Sets or gets flash variables which passed to player. | +| [set_CustomPlayer](./set_customplayer/)(System::SharedPtr\) | Sets or gets custom flash player to play video/audio data. | +| [set_Flags](../annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| virtual [set_Height](../annotation/set_height/)(double) | Sets height of the annotation. | +| [set_HorizontalAlignment](../annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| [set_Modified](../annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Name](../annotation/set_name/)(System::String) | Sets annotation name on the page. | +| virtual [set_Rect](../annotation/set_rect/)(System::SharedPtr\) | Sets annotation rectangle. | +| [set_TextHorizontalAlignment](../annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| [set_Type](./set_type/)(RichMediaAnnotation::ContentType) | Sets type of content. Possible values: Audio, Video. | +| static [set_UpdateAppearanceOnConvert](../annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [SetContent](./setcontent/)(System::String, System::SharedPtr\) | Set content stream. | +| [SetPoster](./setposter/)(System::SharedPtr\) | Set poster of the annotation. | +| [Update](./update/)() | Updates data with specified parameters. | +## See Also + +* Class [Annotation](../annotation/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/richmediaannotation/accept/_index.md b/english/cpp/aspose.pdf.annotations/richmediaannotation/accept/_index.md new file mode 100644 index 0000000000..1ee439a1a9 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/richmediaannotation/accept/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Annotations::RichMediaAnnotation::Accept method +linktitle: Accept +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RichMediaAnnotation::Accept method. Accepts visitor for this annotation in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.annotations/richmediaannotation/accept/ +--- +## RichMediaAnnotation::Accept method + + +Accepts visitor for this annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::RichMediaAnnotation::Accept(System::SharedPtr visitor) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| visitor | System::SharedPtr\ | Visitor instance. | +## Remarks + + + + + + visitor + + + Visitor instance. + + + +## See Also + +* Class [AnnotationSelector](../../annotationselector/) +* Class [RichMediaAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/richmediaannotation/addcustomdata/_index.md b/english/cpp/aspose.pdf.annotations/richmediaannotation/addcustomdata/_index.md new file mode 100644 index 0000000000..b1816cbeb8 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/richmediaannotation/addcustomdata/_index.md @@ -0,0 +1,49 @@ +--- +title: Aspose::Pdf::Annotations::RichMediaAnnotation::AddCustomData method +linktitle: AddCustomData +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RichMediaAnnotation::AddCustomData method. Add custom named data (for example required for flash script) in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.annotations/richmediaannotation/addcustomdata/ +--- +## RichMediaAnnotation::AddCustomData method + + +Add custom named data (for example required for flash script). + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::RichMediaAnnotation::AddCustomData(System::String name, System::SharedPtr data) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| name | System::String | Name of the data. | +| data | System::SharedPtr\ | Data. | +## Remarks + + + + + + name + + + Name of the data. + + + + + data + + + Data. + + + +## See Also + +* Class [RichMediaAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/richmediaannotation/get_activateon/_index.md b/english/cpp/aspose.pdf.annotations/richmediaannotation/get_activateon/_index.md new file mode 100644 index 0000000000..7679a885af --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/richmediaannotation/get_activateon/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::RichMediaAnnotation::get_ActivateOn method +linktitle: get_ActivateOn +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RichMediaAnnotation::get_ActivateOn method. Event which activates application in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.annotations/richmediaannotation/get_activateon/ +--- +## RichMediaAnnotation::get_ActivateOn method + + +Event which activates application. + +```cpp +ASPOSE_PDF_SHARED_API RichMediaAnnotation::ActivationEvent Aspose::Pdf::Annotations::RichMediaAnnotation::get_ActivateOn() +``` + +## See Also + +* Class [RichMediaAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/richmediaannotation/get_annotationtype/_index.md b/english/cpp/aspose.pdf.annotations/richmediaannotation/get_annotationtype/_index.md new file mode 100644 index 0000000000..eb1e20ad6a --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/richmediaannotation/get_annotationtype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::RichMediaAnnotation::get_AnnotationType method +linktitle: get_AnnotationType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RichMediaAnnotation::get_AnnotationType method. Gets type of annotation in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/richmediaannotation/get_annotationtype/ +--- +## RichMediaAnnotation::get_AnnotationType method + + +Gets type of annotation. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::AnnotationType Aspose::Pdf::Annotations::RichMediaAnnotation::get_AnnotationType() override +``` + +## See Also + +* Enum [AnnotationType](../../annotationtype/) +* Class [RichMediaAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/richmediaannotation/get_content/_index.md b/english/cpp/aspose.pdf.annotations/richmediaannotation/get_content/_index.md new file mode 100644 index 0000000000..0dad4356f9 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/richmediaannotation/get_content/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::RichMediaAnnotation::get_Content method +linktitle: get_Content +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RichMediaAnnotation::get_Content method. Data of the Rich Media content in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/richmediaannotation/get_content/ +--- +## RichMediaAnnotation::get_Content method + + +Data of the Rich Media content. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::RichMediaAnnotation::get_Content() +``` + +## See Also + +* Class [RichMediaAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/richmediaannotation/get_customflashvariables/_index.md b/english/cpp/aspose.pdf.annotations/richmediaannotation/get_customflashvariables/_index.md new file mode 100644 index 0000000000..1d511a6497 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/richmediaannotation/get_customflashvariables/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::RichMediaAnnotation::get_CustomFlashVariables method +linktitle: get_CustomFlashVariables +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RichMediaAnnotation::get_CustomFlashVariables method. Sets or gets flash variables which passed to player in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/richmediaannotation/get_customflashvariables/ +--- +## RichMediaAnnotation::get_CustomFlashVariables method + + +Sets or gets flash variables which passed to player. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::RichMediaAnnotation::get_CustomFlashVariables() const +``` + +## See Also + +* Class [RichMediaAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/richmediaannotation/get_customplayer/_index.md b/english/cpp/aspose.pdf.annotations/richmediaannotation/get_customplayer/_index.md new file mode 100644 index 0000000000..709a357548 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/richmediaannotation/get_customplayer/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::RichMediaAnnotation::get_CustomPlayer method +linktitle: get_CustomPlayer +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RichMediaAnnotation::get_CustomPlayer method. Sets or gets custom flash player to play video/audio data in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/richmediaannotation/get_customplayer/ +--- +## RichMediaAnnotation::get_CustomPlayer method + + +Sets or gets custom flash player to play video/audio data. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::RichMediaAnnotation::get_CustomPlayer() const +``` + +## See Also + +* Class [RichMediaAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/richmediaannotation/get_type/_index.md b/english/cpp/aspose.pdf.annotations/richmediaannotation/get_type/_index.md new file mode 100644 index 0000000000..3d2732b866 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/richmediaannotation/get_type/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::RichMediaAnnotation::get_Type method +linktitle: get_Type +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RichMediaAnnotation::get_Type method. Gets type of content. Possible values: Audio, Video in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.annotations/richmediaannotation/get_type/ +--- +## RichMediaAnnotation::get_Type method + + +Gets type of content. Possible values: Audio, Video. + +```cpp +ASPOSE_PDF_SHARED_API RichMediaAnnotation::ContentType Aspose::Pdf::Annotations::RichMediaAnnotation::get_Type() +``` + +## See Also + +* Class [RichMediaAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/richmediaannotation/richmediaannotation/_index.md b/english/cpp/aspose.pdf.annotations/richmediaannotation/richmediaannotation/_index.md new file mode 100644 index 0000000000..e6646113fd --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/richmediaannotation/richmediaannotation/_index.md @@ -0,0 +1,53 @@ +--- +title: Aspose::Pdf::Annotations::RichMediaAnnotation::RichMediaAnnotation constructor +linktitle: RichMediaAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RichMediaAnnotation::RichMediaAnnotation constructor. Initializes RichMediaAnnotation in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.annotations/richmediaannotation/richmediaannotation/ +--- +## RichMediaAnnotation::RichMediaAnnotation constructor + + +Initializes [RichMediaAnnotation](../). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::RichMediaAnnotation::RichMediaAnnotation(System::SharedPtr page, System::SharedPtr rect) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | [Page](../../../aspose.pdf/page/) where object being created. | +| rect | System::SharedPtr\ | [Rectangle](../../../aspose.pdf/rectangle/) coordinates. | +## Remarks + + + + + + page + + + + Page where object being created. + + + + + rect + + + + Rectangle coordinates. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [RichMediaAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/richmediaannotation/set_activateon/_index.md b/english/cpp/aspose.pdf.annotations/richmediaannotation/set_activateon/_index.md new file mode 100644 index 0000000000..3ce159a6b0 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/richmediaannotation/set_activateon/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::RichMediaAnnotation::set_ActivateOn method +linktitle: set_ActivateOn +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RichMediaAnnotation::set_ActivateOn method. Event which activates application in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.annotations/richmediaannotation/set_activateon/ +--- +## RichMediaAnnotation::set_ActivateOn method + + +Event which activates application. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::RichMediaAnnotation::set_ActivateOn(RichMediaAnnotation::ActivationEvent value) +``` + +## See Also + +* Class [RichMediaAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/richmediaannotation/set_customflashvariables/_index.md b/english/cpp/aspose.pdf.annotations/richmediaannotation/set_customflashvariables/_index.md new file mode 100644 index 0000000000..d01993a781 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/richmediaannotation/set_customflashvariables/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::RichMediaAnnotation::set_CustomFlashVariables method +linktitle: set_CustomFlashVariables +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RichMediaAnnotation::set_CustomFlashVariables method. Sets or gets flash variables which passed to player in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/richmediaannotation/set_customflashvariables/ +--- +## RichMediaAnnotation::set_CustomFlashVariables method + + +Sets or gets flash variables which passed to player. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::RichMediaAnnotation::set_CustomFlashVariables(System::String value) +``` + +## See Also + +* Class [RichMediaAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/richmediaannotation/set_customplayer/_index.md b/english/cpp/aspose.pdf.annotations/richmediaannotation/set_customplayer/_index.md new file mode 100644 index 0000000000..cadb548567 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/richmediaannotation/set_customplayer/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::RichMediaAnnotation::set_CustomPlayer method +linktitle: set_CustomPlayer +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RichMediaAnnotation::set_CustomPlayer method. Sets or gets custom flash player to play video/audio data in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/richmediaannotation/set_customplayer/ +--- +## RichMediaAnnotation::set_CustomPlayer method + + +Sets or gets custom flash player to play video/audio data. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::RichMediaAnnotation::set_CustomPlayer(System::SharedPtr value) +``` + +## See Also + +* Class [RichMediaAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/richmediaannotation/set_type/_index.md b/english/cpp/aspose.pdf.annotations/richmediaannotation/set_type/_index.md new file mode 100644 index 0000000000..646199fc47 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/richmediaannotation/set_type/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::RichMediaAnnotation::set_Type method +linktitle: set_Type +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RichMediaAnnotation::set_Type method. Sets type of content. Possible values: Audio, Video in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.annotations/richmediaannotation/set_type/ +--- +## RichMediaAnnotation::set_Type method + + +Sets type of content. Possible values: Audio, Video. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::RichMediaAnnotation::set_Type(RichMediaAnnotation::ContentType value) +``` + +## See Also + +* Class [RichMediaAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/richmediaannotation/setcontent/_index.md b/english/cpp/aspose.pdf.annotations/richmediaannotation/setcontent/_index.md new file mode 100644 index 0000000000..8cee5808a4 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/richmediaannotation/setcontent/_index.md @@ -0,0 +1,49 @@ +--- +title: Aspose::Pdf::Annotations::RichMediaAnnotation::SetContent method +linktitle: SetContent +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RichMediaAnnotation::SetContent method. Set content stream in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.annotations/richmediaannotation/setcontent/ +--- +## RichMediaAnnotation::SetContent method + + +Set content stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::RichMediaAnnotation::SetContent(System::String fileName, System::SharedPtr audio) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fileName | System::String | Name of the stream. | +| audio | System::SharedPtr\ | Data stream. | +## Remarks + + + + + + fileName + + + Name of the stream. + + + + + audio + + + Data stream. + + + +## See Also + +* Class [RichMediaAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/richmediaannotation/setposter/_index.md b/english/cpp/aspose.pdf.annotations/richmediaannotation/setposter/_index.md new file mode 100644 index 0000000000..5555e676e3 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/richmediaannotation/setposter/_index.md @@ -0,0 +1,40 @@ +--- +title: Aspose::Pdf::Annotations::RichMediaAnnotation::SetPoster method +linktitle: SetPoster +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RichMediaAnnotation::SetPoster method. Set poster of the annotation in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.annotations/richmediaannotation/setposter/ +--- +## RichMediaAnnotation::SetPoster method + + +Set poster of the annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::RichMediaAnnotation::SetPoster(System::SharedPtr imageStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| imageStream | System::SharedPtr\ | Stream containing poster image. | +## Remarks + + + + + + imageStream + + + Stream containing poster image. + + + +## See Also + +* Class [RichMediaAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/richmediaannotation/update/_index.md b/english/cpp/aspose.pdf.annotations/richmediaannotation/update/_index.md new file mode 100644 index 0000000000..f106c2eb3c --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/richmediaannotation/update/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::RichMediaAnnotation::Update method +linktitle: Update +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::RichMediaAnnotation::Update method. Updates data with specified parameters in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf.annotations/richmediaannotation/update/ +--- +## RichMediaAnnotation::Update method + + +Updates data with specified parameters. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::RichMediaAnnotation::Update() +``` + +## See Also + +* Class [RichMediaAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/screenannotation/_index.md b/english/cpp/aspose.pdf.annotations/screenannotation/_index.md new file mode 100644 index 0000000000..8d88464d03 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/screenannotation/_index.md @@ -0,0 +1,91 @@ +--- +title: Aspose::Pdf::Annotations::ScreenAnnotation class +linktitle: ScreenAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::ScreenAnnotation class. A screen annotation that specifies a region of a page upon which media clips may be played in C++.' +type: docs +weight: 9800 +url: /cpp/aspose.pdf.annotations/screenannotation/ +--- +## ScreenAnnotation class + + +A screen annotation that specifies a region of a page upon which media clips may be played. + +```cpp +class ScreenAnnotation : public Aspose::Pdf::Annotations::Annotation, + public Aspose::Pdf::Annotations::Annotation::ITitledAnnotation +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Accept](./accept/)(System::SharedPtr\) override | Accepts visitor object to process the annotation. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| virtual [ChangeAfterResize](../annotation/changeafterresize/)(System::SharedPtr\) | Update parameters and appearance, according to the matrix transform. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [Flatten](../annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Action](./get_action/)() | Gets an action to be performed when the annotation is activated. | +| [get_Actions](../annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../annotation/get_alignment/)() | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [get_AnnotationType](./get_annotationtype/)() override | Gets type of annotation. | +| [get_Appearance](../annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../annotation/get_border/)() const | Gets annotation border characteristics. [Border](../border/) | +| [get_Characteristics](../annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../annotation/get_color/)() | Gets annotation color. | +| [get_Contents](../annotation/get_contents/)() | Gets annotation text. | +| [get_Flags](../annotation/get_flags/)() | Flags of the annotation. | +| [get_FullName](../annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../annotation/get_height/)() | Gets height of the annotation. | +| [get_HorizontalAlignment](../annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| [get_Modified](../annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Name](../annotation/get_name/)() | Gets annotation name on the page. | +| virtual [get_PageIndex](../annotation/get_pageindex/)() | Gets index of page which contains annotation. | +| virtual [get_Rect](../annotation/get_rect/)() | Gets annotation rectangle. | +| [get_States](../annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_TextHorizontalAlignment](../annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| [get_Title](./get_title/)() override | Gets the title of the screen annotation. | +| static [get_UpdateAppearanceOnConvert](../annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetRectangle](../annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| [ScreenAnnotation](./screenannotation/)(System::SharedPtr\, System::SharedPtr\, System::String) | Creates new Screen annotation on the specified page. | +| virtual [set_ActiveState](../annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../annotation/set_alignment/)(TextAlignment) | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_Border](../annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../border/) | +| [set_Color](../annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](../annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_Flags](../annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| virtual [set_Height](../annotation/set_height/)(double) | Sets height of the annotation. | +| [set_HorizontalAlignment](../annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| [set_Modified](../annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Name](../annotation/set_name/)(System::String) | Sets annotation name on the page. | +| virtual [set_Rect](../annotation/set_rect/)(System::SharedPtr\) | Sets annotation rectangle. | +| [set_TextHorizontalAlignment](../annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| [set_Title](./set_title/)(System::String) override | Sets the title of the screen annotation. | +| static [set_UpdateAppearanceOnConvert](../annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +## See Also + +* Class [Annotation](../annotation/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/screenannotation/accept/_index.md b/english/cpp/aspose.pdf.annotations/screenannotation/accept/_index.md new file mode 100644 index 0000000000..d2112ab7f4 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/screenannotation/accept/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Annotations::ScreenAnnotation::Accept method +linktitle: Accept +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::ScreenAnnotation::Accept method. Accepts visitor object to process the annotation in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/screenannotation/accept/ +--- +## ScreenAnnotation::Accept method + + +Accepts visitor object to process the annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::ScreenAnnotation::Accept(System::SharedPtr visitor) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| visitor | System::SharedPtr\ | Visitor object. | +## Remarks + + + + + + visitor + + + Visitor object. + + + +## See Also + +* Class [AnnotationSelector](../../annotationselector/) +* Class [ScreenAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/screenannotation/get_action/_index.md b/english/cpp/aspose.pdf.annotations/screenannotation/get_action/_index.md new file mode 100644 index 0000000000..77b7625df2 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/screenannotation/get_action/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::ScreenAnnotation::get_Action method +linktitle: get_Action +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::ScreenAnnotation::get_Action method. Gets an action to be performed when the annotation is activated in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/screenannotation/get_action/ +--- +## ScreenAnnotation::get_Action method + + +Gets an action to be performed when the annotation is activated. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::ScreenAnnotation::get_Action() +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [ScreenAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/screenannotation/get_annotationtype/_index.md b/english/cpp/aspose.pdf.annotations/screenannotation/get_annotationtype/_index.md new file mode 100644 index 0000000000..b52bbf07b5 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/screenannotation/get_annotationtype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::ScreenAnnotation::get_AnnotationType method +linktitle: get_AnnotationType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::ScreenAnnotation::get_AnnotationType method. Gets type of annotation in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/screenannotation/get_annotationtype/ +--- +## ScreenAnnotation::get_AnnotationType method + + +Gets type of annotation. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::AnnotationType Aspose::Pdf::Annotations::ScreenAnnotation::get_AnnotationType() override +``` + +## See Also + +* Enum [AnnotationType](../../annotationtype/) +* Class [ScreenAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/screenannotation/get_title/_index.md b/english/cpp/aspose.pdf.annotations/screenannotation/get_title/_index.md new file mode 100644 index 0000000000..e17ec22d9d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/screenannotation/get_title/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::ScreenAnnotation::get_Title method +linktitle: get_Title +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::ScreenAnnotation::get_Title method. Gets the title of the screen annotation in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/screenannotation/get_title/ +--- +## ScreenAnnotation::get_Title method + + +Gets the title of the screen annotation. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::ScreenAnnotation::get_Title() override +``` + +## See Also + +* Class [ScreenAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/screenannotation/screenannotation/_index.md b/english/cpp/aspose.pdf.annotations/screenannotation/screenannotation/_index.md new file mode 100644 index 0000000000..fd458ca801 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/screenannotation/screenannotation/_index.md @@ -0,0 +1,60 @@ +--- +title: Aspose::Pdf::Annotations::ScreenAnnotation::ScreenAnnotation constructor +linktitle: ScreenAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::ScreenAnnotation::ScreenAnnotation constructor. Creates new Screen annotation on the specified page in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/screenannotation/screenannotation/ +--- +## ScreenAnnotation::ScreenAnnotation constructor + + +Creates new Screen annotation on the specified page. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::ScreenAnnotation::ScreenAnnotation(System::SharedPtr page, System::SharedPtr rect, System::String mediaFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The document's page where annotation should be created. | +| rect | System::SharedPtr\ | The annotation rectangle, defining the location of the annotation on the page. | +| mediaFile | System::String | The path to multimedia file. | +## Remarks + + + + + + page + + + The document's page where annotation should be created. + + + + + rect + + + The annotation rectangle, defining the location of the annotation on the page. + + + + + mediaFile + + + The path to multimedia file. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [ScreenAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/screenannotation/set_title/_index.md b/english/cpp/aspose.pdf.annotations/screenannotation/set_title/_index.md new file mode 100644 index 0000000000..aabcf66839 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/screenannotation/set_title/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::ScreenAnnotation::set_Title method +linktitle: set_Title +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::ScreenAnnotation::set_Title method. Sets the title of the screen annotation in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/screenannotation/set_title/ +--- +## ScreenAnnotation::set_Title method + + +Sets the title of the screen annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::ScreenAnnotation::set_Title(System::String value) override +``` + +## See Also + +* Class [ScreenAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/selectorrendition/_index.md b/english/cpp/aspose.pdf.annotations/selectorrendition/_index.md new file mode 100644 index 0000000000..5de54d81ed --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/selectorrendition/_index.md @@ -0,0 +1,31 @@ +--- +title: Aspose::Pdf::Annotations::SelectorRendition class +linktitle: SelectorRendition +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SelectorRendition class. Class describes selector rendition in C++.' +type: docs +weight: 9900 +url: /cpp/aspose.pdf.annotations/selectorrendition/ +--- +## SelectorRendition class + + +Class describes selector rendition. + +```cpp +class SelectorRendition : public Aspose::Pdf::Annotations::Rendition +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_Name](../rendition/get_name/)() | [Text](../../aspose.pdf.text/) string specifying the name of the rendition for use in a user interface and for name tree lookup by JavaScript actions. | +| [get_Renditions](./get_renditions/)() | Gets array of renditions. | +| [get_RenditionType](../rendition/get_renditiontype/)() | Gets rendition type. | +| [set_Name](../rendition/set_name/)(System::String) | [Text](../../aspose.pdf.text/) string specifying the name of the rendition for use in a user interface and for name tree lookup by JavaScript actions. | +## See Also + +* Class [Rendition](../rendition/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/selectorrendition/get_renditions/_index.md b/english/cpp/aspose.pdf.annotations/selectorrendition/get_renditions/_index.md new file mode 100644 index 0000000000..e36a543c60 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/selectorrendition/get_renditions/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::SelectorRendition::get_Renditions method +linktitle: get_Renditions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SelectorRendition::get_Renditions method. Gets array of renditions in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/selectorrendition/get_renditions/ +--- +## SelectorRendition::get_Renditions method + + +Gets array of renditions. + +```cpp +ASPOSE_PDF_SHARED_API System::ArrayPtr> Aspose::Pdf::Annotations::SelectorRendition::get_Renditions() +``` + +## See Also + +* Class [Rendition](../../rendition/) +* Class [SelectorRendition](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/soundannotation/_index.md b/english/cpp/aspose.pdf.annotations/soundannotation/_index.md new file mode 100644 index 0000000000..61da2807a5 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/soundannotation/_index.md @@ -0,0 +1,113 @@ +--- +title: Aspose::Pdf::Annotations::SoundAnnotation class +linktitle: SoundAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SoundAnnotation class. Represents a sound annotation that contains sound recorded from the computer''s microphone or imported from a file in C++.' +type: docs +weight: 10000 +url: /cpp/aspose.pdf.annotations/soundannotation/ +--- +## SoundAnnotation class + + +Represents a sound annotation that contains sound recorded from the computer's microphone or imported from a file. + +```cpp +class SoundAnnotation : public Aspose::Pdf::Annotations::MarkupAnnotation +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Accept](./accept/)(System::SharedPtr\) override | Accepts visitor object to process the annotation. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| virtual [ChangeAfterResize](../annotation/changeafterresize/)(System::SharedPtr\) | Update parameters and appearance, according to the matrix transform. | +| [ClearState](../markupannotation/clearstate/)() | Clears state and state model for the annotation. For example, clears the review status for an annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [Flatten](../annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](../annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../annotation/get_alignment/)() | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [get_AnnotationType](./get_annotationtype/)() override | Gets type of annotation. | +| [get_Appearance](../annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../annotation/get_border/)() const | Gets annotation border characteristics. [Border](../border/) | +| [get_Characteristics](../annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../annotation/get_color/)() | Gets annotation color. | +| [get_Contents](../annotation/get_contents/)() | Gets annotation text. | +| [get_CreationDate](../markupannotation/get_creationdate/)() | Gets date and time when annotation was created. | +| [get_Flags](../annotation/get_flags/)() | Flags of the annotation. | +| [get_FullName](../annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../annotation/get_height/)() | Gets height of the annotation. | +| [get_HorizontalAlignment](../annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_Icon](./get_icon/)() | Gets an icon to be used in displaying the annotation. | +| [get_InReplyTo](../markupannotation/get_inreplyto/)() | A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| [get_Modified](../annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Name](../annotation/get_name/)() | Gets annotation name on the page. | +| [get_Opacity](../markupannotation/get_opacity/)() | Gets the constant opacity value to be used in painting the annotation. | +| virtual [get_PageIndex](../annotation/get_pageindex/)() | Gets index of page which contains annotation. | +| [get_Popup](../markupannotation/get_popup/)() | Pop-up annotation for entering or editing the text associated with this annotation. | +| virtual [get_Rect](../annotation/get_rect/)() | Gets annotation rectangle. | +| [get_ReplyType](../markupannotation/get_replytype/)() | A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. | +| [get_RichText](../markupannotation/get_richtext/)() | Gets a rich text string to be displayed in the pop-up window when the annotation is opened. | +| [get_SoundData](./get_sounddata/)() const | Gets a sound object defining the sound to be played when the annotation is activated. | +| [get_States](../annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_Subject](../markupannotation/get_subject/)() | Gets text representing desciption of the object. | +| [get_TextHorizontalAlignment](../annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| [get_Title](../markupannotation/get_title/)() override | Gets a text that shall be displayed in title bar of annotation. | +| static [get_UpdateAppearanceOnConvert](../annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetRectangle](../annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| [GetState](../markupannotation/getstate/)() | Gets the state of the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [GetStateModel](../markupannotation/getstatemodel/)() | Gets the state model of the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [MarkupAnnotation](../markupannotation/markupannotation/)(System::SharedPtr\) | Constructor for markup annotation. | +| virtual [set_ActiveState](../annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../annotation/set_alignment/)(TextAlignment) | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_Border](../annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../border/) | +| [set_Color](../annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](../annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_Flags](../annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| virtual [set_Height](../annotation/set_height/)(double) | Sets height of the annotation. | +| [set_HorizontalAlignment](../annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_Icon](./set_icon/)(SoundIcon) | Sets an icon to be used in displaying the annotation. | +| [set_InReplyTo](../markupannotation/set_inreplyto/)(System::SharedPtr\) | A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| [set_Modified](../annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Name](../annotation/set_name/)(System::String) | Sets annotation name on the page. | +| [set_Opacity](../markupannotation/set_opacity/)(double) | Sets the constant opacity value to be used in painting the annotation. | +| [set_Popup](../markupannotation/set_popup/)(System::SharedPtr\) | Pop-up annotation for entering or editing the text associated with this annotation. | +| virtual [set_Rect](../annotation/set_rect/)(System::SharedPtr\) | Sets annotation rectangle. | +| [set_ReplyType](../markupannotation/set_replytype/)(Aspose::Pdf::Annotations::ReplyType) | A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. | +| [set_RichText](../markupannotation/set_richtext/)(System::String) | Sets a rich text string to be displayed in the pop-up window when the annotation is opened. | +| [set_Subject](../markupannotation/set_subject/)(System::String) | Gets text representing desciption of the object. | +| [set_TextHorizontalAlignment](../annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| [set_Title](../markupannotation/set_title/)(System::String) override | Sets a text that shall be displayed in title bar of annotation. | +| static [set_UpdateAppearanceOnConvert](../annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [SetMarkedState](../markupannotation/setmarkedstate/)(bool) | Sets Marked and Unmarked state for the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SetReviewState](../markupannotation/setreviewstate/)(AnnotationState, System::String) | Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SetReviewState](../markupannotation/setreviewstate/)(AnnotationState) | Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. The state is set by the user who created the target annotation. The value is taken from the Title property of the target annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SoundAnnotation](./soundannotation/)(System::SharedPtr\, System::SharedPtr\, System::String) | Creates new Sound annotation on the specified page. | +| [SoundAnnotation](./soundannotation/)(System::SharedPtr\, System::SharedPtr\, System::String, System::SharedPtr\) | Creates new Sound annotation on the specified page. | +## See Also + +* Class [MarkupAnnotation](../markupannotation/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/soundannotation/accept/_index.md b/english/cpp/aspose.pdf.annotations/soundannotation/accept/_index.md new file mode 100644 index 0000000000..6abcb53c3e --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/soundannotation/accept/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Annotations::SoundAnnotation::Accept method +linktitle: Accept +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SoundAnnotation::Accept method. Accepts visitor object to process the annotation in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/soundannotation/accept/ +--- +## SoundAnnotation::Accept method + + +Accepts visitor object to process the annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::SoundAnnotation::Accept(System::SharedPtr visitor) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| visitor | System::SharedPtr\ | Visitor object. | +## Remarks + + + + + + visitor + + + Visitor object. + + + +## See Also + +* Class [AnnotationSelector](../../annotationselector/) +* Class [SoundAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/soundannotation/get_annotationtype/_index.md b/english/cpp/aspose.pdf.annotations/soundannotation/get_annotationtype/_index.md new file mode 100644 index 0000000000..d15b0e8675 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/soundannotation/get_annotationtype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::SoundAnnotation::get_AnnotationType method +linktitle: get_AnnotationType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SoundAnnotation::get_AnnotationType method. Gets type of annotation in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/soundannotation/get_annotationtype/ +--- +## SoundAnnotation::get_AnnotationType method + + +Gets type of annotation. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::AnnotationType Aspose::Pdf::Annotations::SoundAnnotation::get_AnnotationType() override +``` + +## See Also + +* Enum [AnnotationType](../../annotationtype/) +* Class [SoundAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/soundannotation/get_icon/_index.md b/english/cpp/aspose.pdf.annotations/soundannotation/get_icon/_index.md new file mode 100644 index 0000000000..4cbd3b2051 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/soundannotation/get_icon/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::SoundAnnotation::get_Icon method +linktitle: get_Icon +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SoundAnnotation::get_Icon method. Gets an icon to be used in displaying the annotation in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/soundannotation/get_icon/ +--- +## SoundAnnotation::get_Icon method + + +Gets an icon to be used in displaying the annotation. + +```cpp +ASPOSE_PDF_SHARED_API SoundIcon Aspose::Pdf::Annotations::SoundAnnotation::get_Icon() +``` + +## See Also + +* Enum [SoundIcon](../../soundicon/) +* Class [SoundAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/soundannotation/get_sounddata/_index.md b/english/cpp/aspose.pdf.annotations/soundannotation/get_sounddata/_index.md new file mode 100644 index 0000000000..381ac7da38 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/soundannotation/get_sounddata/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::SoundAnnotation::get_SoundData method +linktitle: get_SoundData +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SoundAnnotation::get_SoundData method. Gets a sound object defining the sound to be played when the annotation is activated in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/soundannotation/get_sounddata/ +--- +## SoundAnnotation::get_SoundData method + + +Gets a sound object defining the sound to be played when the annotation is activated. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::SoundAnnotation::get_SoundData() const +``` + +## See Also + +* Class [SoundData](../../sounddata/) +* Class [SoundAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/soundannotation/set_icon/_index.md b/english/cpp/aspose.pdf.annotations/soundannotation/set_icon/_index.md new file mode 100644 index 0000000000..2f292bb9b4 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/soundannotation/set_icon/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::SoundAnnotation::set_Icon method +linktitle: set_Icon +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SoundAnnotation::set_Icon method. Sets an icon to be used in displaying the annotation in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/soundannotation/set_icon/ +--- +## SoundAnnotation::set_Icon method + + +Sets an icon to be used in displaying the annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::SoundAnnotation::set_Icon(SoundIcon value) +``` + +## See Also + +* Enum [SoundIcon](../../soundicon/) +* Class [SoundAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/soundannotation/soundannotation/_index.md b/english/cpp/aspose.pdf.annotations/soundannotation/soundannotation/_index.md new file mode 100644 index 0000000000..a338cf3dbd --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/soundannotation/soundannotation/_index.md @@ -0,0 +1,121 @@ +--- +title: Aspose::Pdf::Annotations::SoundAnnotation::SoundAnnotation constructor +linktitle: SoundAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SoundAnnotation::SoundAnnotation constructor. Creates new Sound annotation on the specified page in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/soundannotation/soundannotation/ +--- +## SoundAnnotation::SoundAnnotation(System::SharedPtr\, System::SharedPtr\, System::String) constructor + + +Creates new Sound annotation on the specified page. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::SoundAnnotation::SoundAnnotation(System::SharedPtr page, System::SharedPtr rect, System::String soundFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The document's page where annotation should be created. | +| rect | System::SharedPtr\ | The annotation rectangle, defining the location of the annotation on the page. | +| soundFile | System::String | A sound file defining the sound to be played when the annotation is activated. | +## Remarks + + + + + + page + + + The document's page where annotation should be created. + + + + + rect + + + The annotation rectangle, defining the location of the annotation on the page. + + + + + soundFile + + + A sound file defining the sound to be played when the annotation is activated. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [SoundAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## SoundAnnotation::SoundAnnotation(System::SharedPtr\, System::SharedPtr\, System::String, System::SharedPtr\) constructor + + +Creates new Sound annotation on the specified page. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::SoundAnnotation::SoundAnnotation(System::SharedPtr page, System::SharedPtr rect, System::String soundFile, System::SharedPtr soundSampleData) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The document's page where annotation should be created. | +| rect | System::SharedPtr\ | The annotation rectangle, defining the location of the annotation on the page. | +| soundFile | System::String | A sound file defining the sound to be played when the annotation is activated. | +| soundSampleData | System::SharedPtr\ | A sound sample data contains extra of sound parameters such as sampling rate, bits per sample and so on. | +## Remarks + + + + + + page + + + The document's page where annotation should be created. + + + + + rect + + + The annotation rectangle, defining the location of the annotation on the page. + + + + + soundFile + + + A sound file defining the sound to be played when the annotation is activated. + + + + + soundSampleData + + + A sound sample data contains extra of sound parameters such as sampling rate, bits per sample and so on. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [SoundSampleData](../../soundsampledata/) +* Class [SoundAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/sounddata/_index.md b/english/cpp/aspose.pdf.annotations/sounddata/_index.md new file mode 100644 index 0000000000..d65cb99d5c --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/sounddata/_index.md @@ -0,0 +1,35 @@ +--- +title: Aspose::Pdf::Annotations::SoundData class +linktitle: SoundData +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SoundData class. Represents a sound data defining the sound to be played when the annotation is activated in C++.' +type: docs +weight: 10100 +url: /cpp/aspose.pdf.annotations/sounddata/ +--- +## SoundData class + + +Represents a sound data defining the sound to be played when the annotation is activated. + +```cpp +class SoundData : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_Bits](./get_bits/)() | Gets the number of bits per sample value per channel. | +| [get_Channels](./get_channels/)() | Gets the number of sound channels. | +| [get_Contents](./get_contents/)() | Gets stream of the sound to be played when the annotation is activated. | +| [get_Encoding](./get_encoding/)() | Gets the encoding format for the sample data. | +| [get_Rate](./get_rate/)() | Gets the sampling rate, in samples per second. | +| [set_Bits](./set_bits/)(int32_t) | Sets the number of bits per sample value per channel. | +| [set_Channels](./set_channels/)(int32_t) | Sets the number of sound channels. | +| [set_Encoding](./set_encoding/)(SoundEncoding) | Sets the encoding format for the sample data. | +| [set_Rate](./set_rate/)(int32_t) | Sets the sampling rate, in samples per second. | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/sounddata/get_bits/_index.md b/english/cpp/aspose.pdf.annotations/sounddata/get_bits/_index.md new file mode 100644 index 0000000000..45c45950e8 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/sounddata/get_bits/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::SoundData::get_Bits method +linktitle: get_Bits +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SoundData::get_Bits method. Gets the number of bits per sample value per channel in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/sounddata/get_bits/ +--- +## SoundData::get_Bits method + + +Gets the number of bits per sample value per channel. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Annotations::SoundData::get_Bits() +``` + +## See Also + +* Class [SoundData](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/sounddata/get_channels/_index.md b/english/cpp/aspose.pdf.annotations/sounddata/get_channels/_index.md new file mode 100644 index 0000000000..a63344412a --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/sounddata/get_channels/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::SoundData::get_Channels method +linktitle: get_Channels +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SoundData::get_Channels method. Gets the number of sound channels in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/sounddata/get_channels/ +--- +## SoundData::get_Channels method + + +Gets the number of sound channels. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Annotations::SoundData::get_Channels() +``` + +## See Also + +* Class [SoundData](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/sounddata/get_contents/_index.md b/english/cpp/aspose.pdf.annotations/sounddata/get_contents/_index.md new file mode 100644 index 0000000000..1a502fb07e --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/sounddata/get_contents/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::SoundData::get_Contents method +linktitle: get_Contents +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SoundData::get_Contents method. Gets stream of the sound to be played when the annotation is activated in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.annotations/sounddata/get_contents/ +--- +## SoundData::get_Contents method + + +Gets stream of the sound to be played when the annotation is activated. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::SoundData::get_Contents() +``` + +## See Also + +* Class [SoundData](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/sounddata/get_encoding/_index.md b/english/cpp/aspose.pdf.annotations/sounddata/get_encoding/_index.md new file mode 100644 index 0000000000..ef9db356a6 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/sounddata/get_encoding/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::SoundData::get_Encoding method +linktitle: get_Encoding +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SoundData::get_Encoding method. Gets the encoding format for the sample data in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.annotations/sounddata/get_encoding/ +--- +## SoundData::get_Encoding method + + +Gets the encoding format for the sample data. + +```cpp +ASPOSE_PDF_SHARED_API SoundEncoding Aspose::Pdf::Annotations::SoundData::get_Encoding() +``` + +## See Also + +* Enum [SoundEncoding](../../soundencoding/) +* Class [SoundData](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/sounddata/get_rate/_index.md b/english/cpp/aspose.pdf.annotations/sounddata/get_rate/_index.md new file mode 100644 index 0000000000..1f93bbfcc1 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/sounddata/get_rate/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::SoundData::get_Rate method +linktitle: get_Rate +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SoundData::get_Rate method. Gets the sampling rate, in samples per second in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/sounddata/get_rate/ +--- +## SoundData::get_Rate method + + +Gets the sampling rate, in samples per second. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Annotations::SoundData::get_Rate() +``` + +## See Also + +* Class [SoundData](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/sounddata/set_bits/_index.md b/english/cpp/aspose.pdf.annotations/sounddata/set_bits/_index.md new file mode 100644 index 0000000000..0d531a9583 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/sounddata/set_bits/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::SoundData::set_Bits method +linktitle: set_Bits +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SoundData::set_Bits method. Sets the number of bits per sample value per channel in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/sounddata/set_bits/ +--- +## SoundData::set_Bits method + + +Sets the number of bits per sample value per channel. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::SoundData::set_Bits(int32_t value) +``` + +## See Also + +* Class [SoundData](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/sounddata/set_channels/_index.md b/english/cpp/aspose.pdf.annotations/sounddata/set_channels/_index.md new file mode 100644 index 0000000000..0aeafc023e --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/sounddata/set_channels/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::SoundData::set_Channels method +linktitle: set_Channels +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SoundData::set_Channels method. Sets the number of sound channels in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/sounddata/set_channels/ +--- +## SoundData::set_Channels method + + +Sets the number of sound channels. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::SoundData::set_Channels(int32_t value) +``` + +## See Also + +* Class [SoundData](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/sounddata/set_encoding/_index.md b/english/cpp/aspose.pdf.annotations/sounddata/set_encoding/_index.md new file mode 100644 index 0000000000..9b6635fd63 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/sounddata/set_encoding/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::SoundData::set_Encoding method +linktitle: set_Encoding +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SoundData::set_Encoding method. Sets the encoding format for the sample data in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.annotations/sounddata/set_encoding/ +--- +## SoundData::set_Encoding method + + +Sets the encoding format for the sample data. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::SoundData::set_Encoding(SoundEncoding value) +``` + +## See Also + +* Enum [SoundEncoding](../../soundencoding/) +* Class [SoundData](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/sounddata/set_rate/_index.md b/english/cpp/aspose.pdf.annotations/sounddata/set_rate/_index.md new file mode 100644 index 0000000000..a8de4bd9ed --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/sounddata/set_rate/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::SoundData::set_Rate method +linktitle: set_Rate +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SoundData::set_Rate method. Sets the sampling rate, in samples per second in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/sounddata/set_rate/ +--- +## SoundData::set_Rate method + + +Sets the sampling rate, in samples per second. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::SoundData::set_Rate(int32_t value) +``` + +## See Also + +* Class [SoundData](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/soundencoding/_index.md b/english/cpp/aspose.pdf.annotations/soundencoding/_index.md new file mode 100644 index 0000000000..c7756a271e --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/soundencoding/_index.md @@ -0,0 +1,31 @@ +--- +title: Aspose::Pdf::Annotations::SoundEncoding enum +linktitle: SoundEncoding +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SoundEncoding enum. The encoding format for the sample data in C++.' +type: docs +weight: 14500 +url: /cpp/aspose.pdf.annotations/soundencoding/ +--- +## SoundEncoding enum + + +The encoding format for the sample data. + +```cpp +enum class SoundEncoding +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Raw | 0 | Unspecified or unsigned values in the range 0 to 2^bits - 1. | +| Signed | 1 | Twos-complement values. | +| MuLaw | 2 | Mu-law-encoded samples. | +| ALaw | 3 | A-law-encoded samples. | + +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/soundencodingconverter/_index.md b/english/cpp/aspose.pdf.annotations/soundencodingconverter/_index.md new file mode 100644 index 0000000000..b1a3951c6a --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/soundencodingconverter/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Annotations::SoundEncodingConverter class +linktitle: SoundEncodingConverter +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Annotations::SoundEncodingConverter class in C++.' +type: docs +weight: 10200 +url: /cpp/aspose.pdf.annotations/soundencodingconverter/ +--- +## SoundEncodingConverter class + + + + +```cpp +class SoundEncodingConverter : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [ToEnum](./toenum/)(System::String) | | +| static [ToString](./tostring/)(SoundEncoding) | | +| static [ToXfdfString](./toxfdfstring/)(SoundEncoding) | | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/soundencodingconverter/toenum/_index.md b/english/cpp/aspose.pdf.annotations/soundencodingconverter/toenum/_index.md new file mode 100644 index 0000000000..a1c0858074 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/soundencodingconverter/toenum/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::SoundEncodingConverter::ToEnum method +linktitle: ToEnum +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToEnum method of Aspose::Pdf::Annotations::SoundEncodingConverter class in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/soundencodingconverter/toenum/ +--- +## SoundEncodingConverter::ToEnum method + + + + +```cpp +static ASPOSE_PDF_SHARED_API SoundEncoding Aspose::Pdf::Annotations::SoundEncodingConverter::ToEnum(System::String value) +``` + +## See Also + +* Enum [SoundEncoding](../../soundencoding/) +* Class [SoundEncodingConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/soundencodingconverter/tostring/_index.md b/english/cpp/aspose.pdf.annotations/soundencodingconverter/tostring/_index.md new file mode 100644 index 0000000000..04b0a2ec7d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/soundencodingconverter/tostring/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::SoundEncodingConverter::ToString method +linktitle: ToString +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToString method of Aspose::Pdf::Annotations::SoundEncodingConverter class in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/soundencodingconverter/tostring/ +--- +## SoundEncodingConverter::ToString method + + + + +```cpp +static ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::SoundEncodingConverter::ToString(SoundEncoding value) +``` + +## See Also + +* Enum [SoundEncoding](../../soundencoding/) +* Class [SoundEncodingConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/soundencodingconverter/toxfdfstring/_index.md b/english/cpp/aspose.pdf.annotations/soundencodingconverter/toxfdfstring/_index.md new file mode 100644 index 0000000000..8c799743d8 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/soundencodingconverter/toxfdfstring/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::SoundEncodingConverter::ToXfdfString method +linktitle: ToXfdfString +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToXfdfString method of Aspose::Pdf::Annotations::SoundEncodingConverter class in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/soundencodingconverter/toxfdfstring/ +--- +## SoundEncodingConverter::ToXfdfString method + + + + +```cpp +static ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::SoundEncodingConverter::ToXfdfString(SoundEncoding value) +``` + +## See Also + +* Enum [SoundEncoding](../../soundencoding/) +* Class [SoundEncodingConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/soundicon/_index.md b/english/cpp/aspose.pdf.annotations/soundicon/_index.md new file mode 100644 index 0000000000..345c596229 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/soundicon/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Annotations::SoundIcon enum +linktitle: SoundIcon +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SoundIcon enum. Enumerates the icons to be used in displaying the annotation in C++.' +type: docs +weight: 14600 +url: /cpp/aspose.pdf.annotations/soundicon/ +--- +## SoundIcon enum + + +Enumerates the icons to be used in displaying the annotation. + +```cpp +enum class SoundIcon +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Speaker | 0 | Speaker icon. | +| Mic | 1 | Microphone icon. | + +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/soundiconconverter/_index.md b/english/cpp/aspose.pdf.annotations/soundiconconverter/_index.md new file mode 100644 index 0000000000..ecd4386d5a --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/soundiconconverter/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::SoundIconConverter class +linktitle: SoundIconConverter +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Annotations::SoundIconConverter class in C++.' +type: docs +weight: 10300 +url: /cpp/aspose.pdf.annotations/soundiconconverter/ +--- +## SoundIconConverter class + + + + +```cpp +class SoundIconConverter : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [ToEnum](./toenum/)(System::String) | | +| static [ToString](./tostring/)(SoundIcon) | | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/soundiconconverter/toenum/_index.md b/english/cpp/aspose.pdf.annotations/soundiconconverter/toenum/_index.md new file mode 100644 index 0000000000..1f9fc53b53 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/soundiconconverter/toenum/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::SoundIconConverter::ToEnum method +linktitle: ToEnum +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToEnum method of Aspose::Pdf::Annotations::SoundIconConverter class in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/soundiconconverter/toenum/ +--- +## SoundIconConverter::ToEnum method + + + + +```cpp +static ASPOSE_PDF_SHARED_API SoundIcon Aspose::Pdf::Annotations::SoundIconConverter::ToEnum(System::String value) +``` + +## See Also + +* Enum [SoundIcon](../../soundicon/) +* Class [SoundIconConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/soundiconconverter/tostring/_index.md b/english/cpp/aspose.pdf.annotations/soundiconconverter/tostring/_index.md new file mode 100644 index 0000000000..17b6740fa3 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/soundiconconverter/tostring/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::SoundIconConverter::ToString method +linktitle: ToString +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToString method of Aspose::Pdf::Annotations::SoundIconConverter class in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/soundiconconverter/tostring/ +--- +## SoundIconConverter::ToString method + + + + +```cpp +static ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::SoundIconConverter::ToString(SoundIcon value) +``` + +## See Also + +* Enum [SoundIcon](../../soundicon/) +* Class [SoundIconConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/soundsampledata/_index.md b/english/cpp/aspose.pdf.annotations/soundsampledata/_index.md new file mode 100644 index 0000000000..ade60adda6 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/soundsampledata/_index.md @@ -0,0 +1,46 @@ +--- +title: Aspose::Pdf::Annotations::SoundSampleData class +linktitle: SoundSampleData +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SoundSampleData class. Represents additional entries specific to a sound object (Section 9.2 PDF1-7) in C++.' +type: docs +weight: 10400 +url: /cpp/aspose.pdf.annotations/soundsampledata/ +--- +## SoundSampleData class + + +Represents additional entries specific to a sound object (Section 9.2 PDF1-7) + +```cpp +class SoundSampleData : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_BitsPerChannel](./get_bitsperchannel/)() const | Gets the number of bits per sample value per channel. | +| [get_EncodingFormat](./get_encodingformat/)() const | Gets the encoding format. | +| [get_NumberOfSoundChannels](./get_numberofsoundchannels/)() const | Gets the number of sound channels. | +| [get_SamplingRate](./get_samplingrate/)() const | Gets the sampling rate. | +| [set_BitsPerChannel](./set_bitsperchannel/)(int32_t) | Sets the number of bits per sample value per channel. | +| [set_EncodingFormat](./set_encodingformat/)(SoundSampleDataEncodingFormat) | Sets the encoding format. | +| [set_NumberOfSoundChannels](./set_numberofsoundchannels/)(int32_t) | Sets the number of sound channels. | +| [set_SamplingRate](./set_samplingrate/)(int64_t) | Sets the sampling rate. | +| [SoundSampleData](./soundsampledata/)(int64_t) | Initializes new sound sample data. | +| [SoundSampleData](./soundsampledata/)(int64_t, int32_t) | Initializes new sound sample data. | +| [SoundSampleData](./soundsampledata/)(int64_t, int32_t, int32_t) | Initializes new sound sample data. | +| [SoundSampleData](./soundsampledata/)(int64_t, int32_t, int32_t, SoundSampleDataEncodingFormat) | Initializes new sound sample data. | +## Fields + +| Field | Description | +| --- | --- | +| static [DefaultEncodingFormat](./defaultencodingformat/) | Default value for encoding format. | +| static [DefaultOfBitsPerChannel](./defaultofbitsperchannel/) | Default value for BitsPerchannel parameter. | +| static [DefaultOfSoundChannels](./defaultofsoundchannels/) | Default value for Channels parameter. | +| static [DefaultSamplingRate](./defaultsamplingrate/) | Default value for SamplingRate. | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/soundsampledata/defaultencodingformat/_index.md b/english/cpp/aspose.pdf.annotations/soundsampledata/defaultencodingformat/_index.md new file mode 100644 index 0000000000..7f44032d21 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/soundsampledata/defaultencodingformat/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::SoundSampleData::DefaultEncodingFormat field +linktitle: DefaultEncodingFormat +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SoundSampleData::DefaultEncodingFormat field. Default value for encoding format in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.annotations/soundsampledata/defaultencodingformat/ +--- +## DefaultEncodingFormat field + + +Default value for encoding format. + +```cpp +static const ASPOSE_PDF_SHARED_API SoundSampleDataEncodingFormat Aspose::Pdf::Annotations::SoundSampleData::DefaultEncodingFormat +``` + +## See Also + +* Class [SoundSampleData](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/soundsampledata/defaultofbitsperchannel/_index.md b/english/cpp/aspose.pdf.annotations/soundsampledata/defaultofbitsperchannel/_index.md new file mode 100644 index 0000000000..f91acbd059 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/soundsampledata/defaultofbitsperchannel/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::SoundSampleData::DefaultOfBitsPerChannel field +linktitle: DefaultOfBitsPerChannel +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SoundSampleData::DefaultOfBitsPerChannel field. Default value for BitsPerchannel parameter in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.annotations/soundsampledata/defaultofbitsperchannel/ +--- +## DefaultOfBitsPerChannel field + + +Default value for BitsPerchannel parameter. + +```cpp +static const ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Annotations::SoundSampleData::DefaultOfBitsPerChannel +``` + +## See Also + +* Class [SoundSampleData](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/soundsampledata/defaultofsoundchannels/_index.md b/english/cpp/aspose.pdf.annotations/soundsampledata/defaultofsoundchannels/_index.md new file mode 100644 index 0000000000..4a2a366b8d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/soundsampledata/defaultofsoundchannels/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::SoundSampleData::DefaultOfSoundChannels field +linktitle: DefaultOfSoundChannels +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SoundSampleData::DefaultOfSoundChannels field. Default value for Channels parameter in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.annotations/soundsampledata/defaultofsoundchannels/ +--- +## DefaultOfSoundChannels field + + +Default value for Channels parameter. + +```cpp +static const ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Annotations::SoundSampleData::DefaultOfSoundChannels +``` + +## See Also + +* Class [SoundSampleData](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/soundsampledata/defaultsamplingrate/_index.md b/english/cpp/aspose.pdf.annotations/soundsampledata/defaultsamplingrate/_index.md new file mode 100644 index 0000000000..8d734b9d60 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/soundsampledata/defaultsamplingrate/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::SoundSampleData::DefaultSamplingRate field +linktitle: DefaultSamplingRate +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SoundSampleData::DefaultSamplingRate field. Default value for SamplingRate in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.annotations/soundsampledata/defaultsamplingrate/ +--- +## DefaultSamplingRate field + + +Default value for SamplingRate. + +```cpp +static const ASPOSE_PDF_SHARED_API int64_t Aspose::Pdf::Annotations::SoundSampleData::DefaultSamplingRate +``` + +## See Also + +* Class [SoundSampleData](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/soundsampledata/get_bitsperchannel/_index.md b/english/cpp/aspose.pdf.annotations/soundsampledata/get_bitsperchannel/_index.md new file mode 100644 index 0000000000..24d715af28 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/soundsampledata/get_bitsperchannel/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::SoundSampleData::get_BitsPerChannel method +linktitle: get_BitsPerChannel +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SoundSampleData::get_BitsPerChannel method. Gets the number of bits per sample value per channel in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/soundsampledata/get_bitsperchannel/ +--- +## SoundSampleData::get_BitsPerChannel method + + +Gets the number of bits per sample value per channel. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Annotations::SoundSampleData::get_BitsPerChannel() const +``` + +## See Also + +* Class [SoundSampleData](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/soundsampledata/get_encodingformat/_index.md b/english/cpp/aspose.pdf.annotations/soundsampledata/get_encodingformat/_index.md new file mode 100644 index 0000000000..88c2d52d02 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/soundsampledata/get_encodingformat/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::SoundSampleData::get_EncodingFormat method +linktitle: get_EncodingFormat +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SoundSampleData::get_EncodingFormat method. Gets the encoding format in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.annotations/soundsampledata/get_encodingformat/ +--- +## SoundSampleData::get_EncodingFormat method + + +Gets the encoding format. + +```cpp +ASPOSE_PDF_SHARED_API SoundSampleDataEncodingFormat Aspose::Pdf::Annotations::SoundSampleData::get_EncodingFormat() const +``` + +## See Also + +* Enum [SoundSampleDataEncodingFormat](../../soundsampledataencodingformat/) +* Class [SoundSampleData](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/soundsampledata/get_numberofsoundchannels/_index.md b/english/cpp/aspose.pdf.annotations/soundsampledata/get_numberofsoundchannels/_index.md new file mode 100644 index 0000000000..f036ac92a7 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/soundsampledata/get_numberofsoundchannels/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::SoundSampleData::get_NumberOfSoundChannels method +linktitle: get_NumberOfSoundChannels +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SoundSampleData::get_NumberOfSoundChannels method. Gets the number of sound channels in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/soundsampledata/get_numberofsoundchannels/ +--- +## SoundSampleData::get_NumberOfSoundChannels method + + +Gets the number of sound channels. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Annotations::SoundSampleData::get_NumberOfSoundChannels() const +``` + +## See Also + +* Class [SoundSampleData](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/soundsampledata/get_samplingrate/_index.md b/english/cpp/aspose.pdf.annotations/soundsampledata/get_samplingrate/_index.md new file mode 100644 index 0000000000..aeec99dadd --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/soundsampledata/get_samplingrate/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::SoundSampleData::get_SamplingRate method +linktitle: get_SamplingRate +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SoundSampleData::get_SamplingRate method. Gets the sampling rate in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/soundsampledata/get_samplingrate/ +--- +## SoundSampleData::get_SamplingRate method + + +Gets the sampling rate. + +```cpp +ASPOSE_PDF_SHARED_API int64_t Aspose::Pdf::Annotations::SoundSampleData::get_SamplingRate() const +``` + +## See Also + +* Class [SoundSampleData](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/soundsampledata/set_bitsperchannel/_index.md b/english/cpp/aspose.pdf.annotations/soundsampledata/set_bitsperchannel/_index.md new file mode 100644 index 0000000000..a12b5d4946 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/soundsampledata/set_bitsperchannel/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::SoundSampleData::set_BitsPerChannel method +linktitle: set_BitsPerChannel +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SoundSampleData::set_BitsPerChannel method. Sets the number of bits per sample value per channel in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/soundsampledata/set_bitsperchannel/ +--- +## SoundSampleData::set_BitsPerChannel method + + +Sets the number of bits per sample value per channel. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::SoundSampleData::set_BitsPerChannel(int32_t value) +``` + +## See Also + +* Class [SoundSampleData](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/soundsampledata/set_encodingformat/_index.md b/english/cpp/aspose.pdf.annotations/soundsampledata/set_encodingformat/_index.md new file mode 100644 index 0000000000..45b5af6cd0 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/soundsampledata/set_encodingformat/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::SoundSampleData::set_EncodingFormat method +linktitle: set_EncodingFormat +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SoundSampleData::set_EncodingFormat method. Sets the encoding format in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.annotations/soundsampledata/set_encodingformat/ +--- +## SoundSampleData::set_EncodingFormat method + + +Sets the encoding format. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::SoundSampleData::set_EncodingFormat(SoundSampleDataEncodingFormat value) +``` + +## See Also + +* Enum [SoundSampleDataEncodingFormat](../../soundsampledataencodingformat/) +* Class [SoundSampleData](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/soundsampledata/set_numberofsoundchannels/_index.md b/english/cpp/aspose.pdf.annotations/soundsampledata/set_numberofsoundchannels/_index.md new file mode 100644 index 0000000000..2668d2edd6 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/soundsampledata/set_numberofsoundchannels/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::SoundSampleData::set_NumberOfSoundChannels method +linktitle: set_NumberOfSoundChannels +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SoundSampleData::set_NumberOfSoundChannels method. Sets the number of sound channels in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/soundsampledata/set_numberofsoundchannels/ +--- +## SoundSampleData::set_NumberOfSoundChannels method + + +Sets the number of sound channels. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::SoundSampleData::set_NumberOfSoundChannels(int32_t value) +``` + +## See Also + +* Class [SoundSampleData](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/soundsampledata/set_samplingrate/_index.md b/english/cpp/aspose.pdf.annotations/soundsampledata/set_samplingrate/_index.md new file mode 100644 index 0000000000..d42d95bc7d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/soundsampledata/set_samplingrate/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::SoundSampleData::set_SamplingRate method +linktitle: set_SamplingRate +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SoundSampleData::set_SamplingRate method. Sets the sampling rate in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/soundsampledata/set_samplingrate/ +--- +## SoundSampleData::set_SamplingRate method + + +Sets the sampling rate. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::SoundSampleData::set_SamplingRate(int64_t value) +``` + +## See Also + +* Class [SoundSampleData](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/soundsampledata/soundsampledata/_index.md b/english/cpp/aspose.pdf.annotations/soundsampledata/soundsampledata/_index.md new file mode 100644 index 0000000000..b49e210bc3 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/soundsampledata/soundsampledata/_index.md @@ -0,0 +1,189 @@ +--- +title: Aspose::Pdf::Annotations::SoundSampleData::SoundSampleData constructor +linktitle: SoundSampleData +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SoundSampleData::SoundSampleData constructor. Initializes new sound sample data in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.annotations/soundsampledata/soundsampledata/ +--- +## SoundSampleData::SoundSampleData(int64_t) constructor + + +Initializes new sound sample data. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::SoundSampleData::SoundSampleData(int64_t samplingRate) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| samplingRate | int64_t | The sampling rate. | +## Remarks + + + + + + samplingRate + + + The sampling rate. + + + +## See Also + +* Class [SoundSampleData](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## SoundSampleData::SoundSampleData(int64_t, int32_t) constructor + + +Initializes new sound sample data. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::SoundSampleData::SoundSampleData(int64_t samplingRate, int32_t numberOfSoundChannels) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| samplingRate | int64_t | The sampling rate. | +| numberOfSoundChannels | int32_t | The number of sound channels. | +## Remarks + + + + + + samplingRate + + + The sampling rate. + + + + + numberOfSoundChannels + + + The number of sound channels. + + + +## See Also + +* Class [SoundSampleData](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## SoundSampleData::SoundSampleData(int64_t, int32_t, int32_t) constructor + + +Initializes new sound sample data. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::SoundSampleData::SoundSampleData(int64_t samplingRate, int32_t numberOfSoundChannels, int32_t bitsPerChannel) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| samplingRate | int64_t | The sampling rate. | +| numberOfSoundChannels | int32_t | The number of sound channels. | +| bitsPerChannel | int32_t | The number of bits per sample value per channel. | +## Remarks + + + + + + samplingRate + + + The sampling rate. + + + + + numberOfSoundChannels + + + The number of sound channels. + + + + + bitsPerChannel + + + The number of bits per sample value per channel. + + + +## See Also + +* Class [SoundSampleData](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## SoundSampleData::SoundSampleData(int64_t, int32_t, int32_t, SoundSampleDataEncodingFormat) constructor + + +Initializes new sound sample data. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::SoundSampleData::SoundSampleData(int64_t samplingRate, int32_t numberOfSoundChannels, int32_t bitsPerChannel, SoundSampleDataEncodingFormat soundSampleDataEncodingFormat) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| samplingRate | int64_t | The sampling rate. | +| numberOfSoundChannels | int32_t | The number of sound channels. | +| bitsPerChannel | int32_t | The number of bits per sample value per channel. | +| soundSampleDataEncodingFormat | SoundSampleDataEncodingFormat | The encoding format for the sample data. | +## Remarks + + + + + + samplingRate + + + The sampling rate. + + + + + numberOfSoundChannels + + + The number of sound channels. + + + + + bitsPerChannel + + + The number of bits per sample value per channel. + + + + + soundSampleDataEncodingFormat + + + The encoding format for the sample data. + + + + +## See Also + +* Enum [SoundSampleDataEncodingFormat](../../soundsampledataencodingformat/) +* Class [SoundSampleData](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/soundsampledataencodingformat/_index.md b/english/cpp/aspose.pdf.annotations/soundsampledataencodingformat/_index.md new file mode 100644 index 0000000000..80d7a213b4 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/soundsampledataencodingformat/_index.md @@ -0,0 +1,31 @@ +--- +title: Aspose::Pdf::Annotations::SoundSampleDataEncodingFormat enum +linktitle: SoundSampleDataEncodingFormat +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SoundSampleDataEncodingFormat enum. The encoding format for the sound sample data in C++.' +type: docs +weight: 14700 +url: /cpp/aspose.pdf.annotations/soundsampledataencodingformat/ +--- +## SoundSampleDataEncodingFormat enum + + +The encoding format for the sound sample data. + +```cpp +enum class SoundSampleDataEncodingFormat +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Raw | 0 | Unspecified or unsigned values in the range 0 to 2B - 1. | +| Signed | 1 | Twos-complement values. | +| muLaw | 2 | Mu-law-encoded samples. | +| ALaw | 3 | A-law-encoded samples. | + +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/squareannotation/_index.md b/english/cpp/aspose.pdf.annotations/squareannotation/_index.md new file mode 100644 index 0000000000..12c2917459 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/squareannotation/_index.md @@ -0,0 +1,115 @@ +--- +title: Aspose::Pdf::Annotations::SquareAnnotation class +linktitle: SquareAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SquareAnnotation class. Class representing square annotation in C++.' +type: docs +weight: 10500 +url: /cpp/aspose.pdf.annotations/squareannotation/ +--- +## SquareAnnotation class + + +Class representing square annotation. + +```cpp +class SquareAnnotation : public Aspose::Pdf::Annotations::CommonFigureAnnotation +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Accept](./accept/)(System::SharedPtr\) override | Accepts visitor to process annotation. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| virtual [ChangeAfterResize](../annotation/changeafterresize/)(System::SharedPtr\) | Update parameters and appearance, according to the matrix transform. | +| [ClearState](../markupannotation/clearstate/)() | Clears state and state model for the annotation. For example, clears the review status for an annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [CommonFigureAnnotation](../commonfigureannotation/commonfigureannotation/)(System::SharedPtr\) | Constructor for using in Generator. | +| [Flatten](../annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](../annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../annotation/get_alignment/)() | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [get_AnnotationType](./get_annotationtype/)() override | Gets type of annotation. | +| [get_Appearance](../annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../annotation/get_border/)() const | Gets annotation border characteristics. [Border](../border/) | +| [get_Characteristics](../annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../annotation/get_color/)() | Gets annotation color. | +| [get_Contents](../annotation/get_contents/)() | Gets annotation text. | +| [get_CreationDate](../markupannotation/get_creationdate/)() | Gets date and time when annotation was created. | +| [get_Flags](../annotation/get_flags/)() | Flags of the annotation. | +| [get_Frame](../commonfigureannotation/get_frame/)() | The rectangle describing the numerical differences between two rectangles: the Rect entry of the annotation and the actual boundaries of the underlying square or circle. | +| [get_FullName](../annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../annotation/get_height/)() | Gets height of the annotation. | +| [get_HorizontalAlignment](../annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_InReplyTo](../markupannotation/get_inreplyto/)() | A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. | +| [get_InteriorColor](../commonfigureannotation/get_interiorcolor/)() | Interior color with which to fill the annotation's rectangle or ellipse. | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| [get_Modified](../annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Name](../annotation/get_name/)() | Gets annotation name on the page. | +| [get_Opacity](../markupannotation/get_opacity/)() | Gets the constant opacity value to be used in painting the annotation. | +| virtual [get_PageIndex](../annotation/get_pageindex/)() | Gets index of page which contains annotation. | +| [get_Popup](../markupannotation/get_popup/)() | Pop-up annotation for entering or editing the text associated with this annotation. | +| virtual [get_Rect](../annotation/get_rect/)() | Gets annotation rectangle. | +| [get_ReplyType](../markupannotation/get_replytype/)() | A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. | +| [get_RichText](../markupannotation/get_richtext/)() | Gets a rich text string to be displayed in the pop-up window when the annotation is opened. | +| [get_States](../annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_Subject](../markupannotation/get_subject/)() | Gets text representing desciption of the object. | +| [get_TextHorizontalAlignment](../annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| [get_Title](../markupannotation/get_title/)() override | Gets a text that shall be displayed in title bar of annotation. | +| static [get_UpdateAppearanceOnConvert](../annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetRectangle](../annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| [GetState](../markupannotation/getstate/)() | Gets the state of the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [GetStateModel](../markupannotation/getstatemodel/)() | Gets the state model of the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [MarkupAnnotation](../markupannotation/markupannotation/)(System::SharedPtr\) | Constructor for markup annotation. | +| virtual [set_ActiveState](../annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../annotation/set_alignment/)(TextAlignment) | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_Border](../annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../border/) | +| [set_Color](../annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](../annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_Flags](../annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| [set_Frame](../commonfigureannotation/set_frame/)(System::SharedPtr\) | The rectangle describing the numerical differences between two rectangles: the Rect entry of the annotation and the actual boundaries of the underlying square or circle. | +| virtual [set_Height](../annotation/set_height/)(double) | Sets height of the annotation. | +| [set_HorizontalAlignment](../annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_InReplyTo](../markupannotation/set_inreplyto/)(System::SharedPtr\) | A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. | +| [set_InteriorColor](../commonfigureannotation/set_interiorcolor/)(System::SharedPtr\) | Interior color with which to fill the annotation's rectangle or ellipse. | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| [set_Modified](../annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Name](../annotation/set_name/)(System::String) | Sets annotation name on the page. | +| [set_Opacity](../markupannotation/set_opacity/)(double) | Sets the constant opacity value to be used in painting the annotation. | +| [set_Popup](../markupannotation/set_popup/)(System::SharedPtr\) | Pop-up annotation for entering or editing the text associated with this annotation. | +| virtual [set_Rect](../annotation/set_rect/)(System::SharedPtr\) | Sets annotation rectangle. | +| [set_ReplyType](../markupannotation/set_replytype/)(Aspose::Pdf::Annotations::ReplyType) | A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. | +| [set_RichText](../markupannotation/set_richtext/)(System::String) | Sets a rich text string to be displayed in the pop-up window when the annotation is opened. | +| [set_Subject](../markupannotation/set_subject/)(System::String) | Gets text representing desciption of the object. | +| [set_TextHorizontalAlignment](../annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| [set_Title](../markupannotation/set_title/)(System::String) override | Sets a text that shall be displayed in title bar of annotation. | +| static [set_UpdateAppearanceOnConvert](../annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [SetMarkedState](../markupannotation/setmarkedstate/)(bool) | Sets Marked and Unmarked state for the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SetReviewState](../markupannotation/setreviewstate/)(AnnotationState, System::String) | Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SetReviewState](../markupannotation/setreviewstate/)(AnnotationState) | Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. The state is set by the user who created the target annotation. The value is taken from the Title property of the target annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SquareAnnotation](./squareannotation/)(System::SharedPtr\) | Constructor for using with Generator. | +| [SquareAnnotation](./squareannotation/)(System::SharedPtr\, System::SharedPtr\) | Creates new Square annotation on the specified page. | +## See Also + +* Class [CommonFigureAnnotation](../commonfigureannotation/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/squareannotation/accept/_index.md b/english/cpp/aspose.pdf.annotations/squareannotation/accept/_index.md new file mode 100644 index 0000000000..647f421fd7 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/squareannotation/accept/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Annotations::SquareAnnotation::Accept method +linktitle: Accept +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SquareAnnotation::Accept method. Accepts visitor to process annotation in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/squareannotation/accept/ +--- +## SquareAnnotation::Accept method + + +Accepts visitor to process annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::SquareAnnotation::Accept(System::SharedPtr visitor) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| visitor | System::SharedPtr\ | Visitor object. | +## Remarks + + + + + + visitor + + + Visitor object. + + + +## See Also + +* Class [AnnotationSelector](../../annotationselector/) +* Class [SquareAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/squareannotation/get_annotationtype/_index.md b/english/cpp/aspose.pdf.annotations/squareannotation/get_annotationtype/_index.md new file mode 100644 index 0000000000..ad301defbe --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/squareannotation/get_annotationtype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::SquareAnnotation::get_AnnotationType method +linktitle: get_AnnotationType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SquareAnnotation::get_AnnotationType method. Gets type of annotation in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/squareannotation/get_annotationtype/ +--- +## SquareAnnotation::get_AnnotationType method + + +Gets type of annotation. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::AnnotationType Aspose::Pdf::Annotations::SquareAnnotation::get_AnnotationType() override +``` + +## See Also + +* Enum [AnnotationType](../../annotationtype/) +* Class [SquareAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/squareannotation/squareannotation/_index.md b/english/cpp/aspose.pdf.annotations/squareannotation/squareannotation/_index.md new file mode 100644 index 0000000000..0c501502c0 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/squareannotation/squareannotation/_index.md @@ -0,0 +1,83 @@ +--- +title: Aspose::Pdf::Annotations::SquareAnnotation::SquareAnnotation constructor +linktitle: SquareAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SquareAnnotation::SquareAnnotation constructor. Constructor for using with Generator in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/squareannotation/squareannotation/ +--- +## SquareAnnotation::SquareAnnotation(System::SharedPtr\) constructor + + +Constructor for using with Generator. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::SquareAnnotation::SquareAnnotation(System::SharedPtr document) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | Documennt where annotation will be created. | +## Remarks + + + + + + document + + + Documennt where annotation will be created. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [SquareAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## SquareAnnotation::SquareAnnotation(System::SharedPtr\, System::SharedPtr\) constructor + + +Creates new Square annotation on the specified page. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::SquareAnnotation::SquareAnnotation(System::SharedPtr page, System::SharedPtr rect) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The document's page where annotation should be created. | +| rect | System::SharedPtr\ | The annotation rectangle, defining the location of the annotation on the page. | +## Remarks + + + + + + page + + + The document's page where annotation should be created. + + + + + rect + + + The annotation rectangle, defining the location of the annotation on the page. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [SquareAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/squigglyannotation/_index.md b/english/cpp/aspose.pdf.annotations/squigglyannotation/_index.md new file mode 100644 index 0000000000..1c498e4e86 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/squigglyannotation/_index.md @@ -0,0 +1,113 @@ +--- +title: Aspose::Pdf::Annotations::SquigglyAnnotation class +linktitle: SquigglyAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SquigglyAnnotation class. Represents the squiggly annotation that appears as a jagged underline in the text of a document in C++.' +type: docs +weight: 10600 +url: /cpp/aspose.pdf.annotations/squigglyannotation/ +--- +## SquigglyAnnotation class + + +Represents the squiggly annotation that appears as a jagged underline in the text of a document. + +```cpp +class SquigglyAnnotation : public Aspose::Pdf::Annotations::TextMarkupAnnotation +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Accept](./accept/)(System::SharedPtr\) override | Accepts visitor object to process the annotation. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| [ChangeAfterResize](../textmarkupannotation/changeafterresize/)(System::SharedPtr\) override | Updates the QuadPoints, according to the matrix transform. | +| [ClearState](../markupannotation/clearstate/)() | Clears state and state model for the annotation. For example, clears the review status for an annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [Flatten](../annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](../annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../annotation/get_alignment/)() | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [get_AnnotationType](./get_annotationtype/)() override | Gets type of annotation. | +| [get_Appearance](../annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../annotation/get_border/)() const | Gets annotation border characteristics. [Border](../border/) | +| [get_Characteristics](../annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../annotation/get_color/)() | Gets annotation color. | +| [get_Contents](../annotation/get_contents/)() | Gets annotation text. | +| [get_CreationDate](../markupannotation/get_creationdate/)() | Gets date and time when annotation was created. | +| [get_Flags](../annotation/get_flags/)() | Flags of the annotation. | +| [get_FullName](../annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../annotation/get_height/)() | Gets height of the annotation. | +| [get_HorizontalAlignment](../annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_InReplyTo](../markupannotation/get_inreplyto/)() | A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| [get_Modified](../annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Name](../annotation/get_name/)() | Gets annotation name on the page. | +| [get_Opacity](../markupannotation/get_opacity/)() | Gets the constant opacity value to be used in painting the annotation. | +| virtual [get_PageIndex](../annotation/get_pageindex/)() | Gets index of page which contains annotation. | +| [get_Popup](../markupannotation/get_popup/)() | Pop-up annotation for entering or editing the text associated with this annotation. | +| [get_QuadPoints](../textmarkupannotation/get_quadpoints/)() | Gets an array of points specifying the coordinates of n quadrilaterals. Each quadrilateral encompasses a word or group of contiguous words in the text underlying the annotation. | +| virtual [get_Rect](../annotation/get_rect/)() | Gets annotation rectangle. | +| [get_ReplyType](../markupannotation/get_replytype/)() | A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. | +| [get_RichText](../markupannotation/get_richtext/)() | Gets a rich text string to be displayed in the pop-up window when the annotation is opened. | +| [get_States](../annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_Subject](../markupannotation/get_subject/)() | Gets text representing desciption of the object. | +| [get_TextHorizontalAlignment](../annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| [get_Title](../markupannotation/get_title/)() override | Gets a text that shall be displayed in title bar of annotation. | +| static [get_UpdateAppearanceOnConvert](../annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetMarkedText](../textmarkupannotation/getmarkedtext/)() | Gets text under markup annotation as string. | +| [GetMarkedTextFragments](../textmarkupannotation/getmarkedtextfragments/)() | Gets text under markup annotation as [TextFragmentCollection](../). | +| [GetRectangle](../annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| [GetState](../markupannotation/getstate/)() | Gets the state of the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [GetStateModel](../markupannotation/getstatemodel/)() | Gets the state model of the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [MarkupAnnotation](../markupannotation/markupannotation/)(System::SharedPtr\) | Constructor for markup annotation. | +| virtual [set_ActiveState](../annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../annotation/set_alignment/)(TextAlignment) | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_Border](../annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../border/) | +| [set_Color](../annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](../annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_Flags](../annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| virtual [set_Height](../annotation/set_height/)(double) | Sets height of the annotation. | +| [set_HorizontalAlignment](../annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_InReplyTo](../markupannotation/set_inreplyto/)(System::SharedPtr\) | A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| [set_Modified](../annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Name](../annotation/set_name/)(System::String) | Sets annotation name on the page. | +| [set_Opacity](../markupannotation/set_opacity/)(double) | Sets the constant opacity value to be used in painting the annotation. | +| [set_Popup](../markupannotation/set_popup/)(System::SharedPtr\) | Pop-up annotation for entering or editing the text associated with this annotation. | +| [set_QuadPoints](../textmarkupannotation/set_quadpoints/)(System::ArrayPtr\\>) | Sets an array of points specifying the coordinates of n quadrilaterals. Each quadrilateral encompasses a word or group of contiguous words in the text underlying the annotation. | +| virtual [set_Rect](../annotation/set_rect/)(System::SharedPtr\) | Sets annotation rectangle. | +| [set_ReplyType](../markupannotation/set_replytype/)(Aspose::Pdf::Annotations::ReplyType) | A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. | +| [set_RichText](../markupannotation/set_richtext/)(System::String) | Sets a rich text string to be displayed in the pop-up window when the annotation is opened. | +| [set_Subject](../markupannotation/set_subject/)(System::String) | Gets text representing desciption of the object. | +| [set_TextHorizontalAlignment](../annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| [set_Title](../markupannotation/set_title/)(System::String) override | Sets a text that shall be displayed in title bar of annotation. | +| static [set_UpdateAppearanceOnConvert](../annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [SetMarkedState](../markupannotation/setmarkedstate/)(bool) | Sets Marked and Unmarked state for the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SetReviewState](../markupannotation/setreviewstate/)(AnnotationState, System::String) | Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SetReviewState](../markupannotation/setreviewstate/)(AnnotationState) | Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. The state is set by the user who created the target annotation. The value is taken from the Title property of the target annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SquigglyAnnotation](./squigglyannotation/)(System::SharedPtr\, System::SharedPtr\) | Creates new Squiggly annotation on the specified page. | +## See Also + +* Class [TextMarkupAnnotation](../textmarkupannotation/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/squigglyannotation/accept/_index.md b/english/cpp/aspose.pdf.annotations/squigglyannotation/accept/_index.md new file mode 100644 index 0000000000..5968c0b416 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/squigglyannotation/accept/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Annotations::SquigglyAnnotation::Accept method +linktitle: Accept +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SquigglyAnnotation::Accept method. Accepts visitor object to process the annotation in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/squigglyannotation/accept/ +--- +## SquigglyAnnotation::Accept method + + +Accepts visitor object to process the annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::SquigglyAnnotation::Accept(System::SharedPtr visitor) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| visitor | System::SharedPtr\ | Visitor object. | +## Remarks + + + + + + visitor + + + Visitor object. + + + +## See Also + +* Class [AnnotationSelector](../../annotationselector/) +* Class [SquigglyAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/squigglyannotation/get_annotationtype/_index.md b/english/cpp/aspose.pdf.annotations/squigglyannotation/get_annotationtype/_index.md new file mode 100644 index 0000000000..7b95cd916c --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/squigglyannotation/get_annotationtype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::SquigglyAnnotation::get_AnnotationType method +linktitle: get_AnnotationType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SquigglyAnnotation::get_AnnotationType method. Gets type of annotation in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/squigglyannotation/get_annotationtype/ +--- +## SquigglyAnnotation::get_AnnotationType method + + +Gets type of annotation. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::AnnotationType Aspose::Pdf::Annotations::SquigglyAnnotation::get_AnnotationType() override +``` + +## See Also + +* Enum [AnnotationType](../../annotationtype/) +* Class [SquigglyAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/squigglyannotation/squigglyannotation/_index.md b/english/cpp/aspose.pdf.annotations/squigglyannotation/squigglyannotation/_index.md new file mode 100644 index 0000000000..aa44d2b598 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/squigglyannotation/squigglyannotation/_index.md @@ -0,0 +1,51 @@ +--- +title: Aspose::Pdf::Annotations::SquigglyAnnotation::SquigglyAnnotation constructor +linktitle: SquigglyAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SquigglyAnnotation::SquigglyAnnotation constructor. Creates new Squiggly annotation on the specified page in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/squigglyannotation/squigglyannotation/ +--- +## SquigglyAnnotation::SquigglyAnnotation constructor + + +Creates new Squiggly annotation on the specified page. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::SquigglyAnnotation::SquigglyAnnotation(System::SharedPtr page, System::SharedPtr rect) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The document's page where annotation should be created. | +| rect | System::SharedPtr\ | The annotation rectangle, defining the location of the annotation on the page. | +## Remarks + + + + + + page + + + The document's page where annotation should be created. + + + + + rect + + + The annotation rectangle, defining the location of the annotation on the page. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [SquigglyAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/stampannotation/_index.md b/english/cpp/aspose.pdf.annotations/stampannotation/_index.md new file mode 100644 index 0000000000..6d0ce3f1f6 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/stampannotation/_index.md @@ -0,0 +1,114 @@ +--- +title: Aspose::Pdf::Annotations::StampAnnotation class +linktitle: StampAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::StampAnnotation class. Represents rubber stamp annotation. This type of annotation displays text or graphics intended to look as if they were stamped on the page with a rubber stamp in C++.' +type: docs +weight: 10700 +url: /cpp/aspose.pdf.annotations/stampannotation/ +--- +## StampAnnotation class + + +Represents rubber stamp annotation. This type of annotation displays text or graphics intended to look as if they were stamped on the page with a rubber stamp. + +```cpp +class StampAnnotation : public Aspose::Pdf::Annotations::MarkupAnnotation +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Accept](./accept/)(System::SharedPtr\) override | Acepts [AnnotationSelector](../annotationselector/) visitor when browsing annotation collection. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| virtual [ChangeAfterResize](../annotation/changeafterresize/)(System::SharedPtr\) | Update parameters and appearance, according to the matrix transform. | +| [ClearState](../markupannotation/clearstate/)() | Clears state and state model for the annotation. For example, clears the review status for an annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [Flatten](../annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](../annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../annotation/get_alignment/)() | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [get_AnnotationType](./get_annotationtype/)() override | Gets type of annotation. | +| [get_Appearance](../annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../annotation/get_border/)() const | Gets annotation border characteristics. [Border](../border/) | +| [get_Characteristics](../annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../annotation/get_color/)() | Gets annotation color. | +| [get_Contents](../annotation/get_contents/)() | Gets annotation text. | +| [get_CreationDate](../markupannotation/get_creationdate/)() | Gets date and time when annotation was created. | +| [get_Flags](../annotation/get_flags/)() | Flags of the annotation. | +| [get_FullName](../annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../annotation/get_height/)() | Gets height of the annotation. | +| [get_HorizontalAlignment](../annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_Icon](./get_icon/)() | Gets icon for rubber stamp. | +| [get_Image](./get_image/)() | Gets image of the annotation. | +| [get_InReplyTo](../markupannotation/get_inreplyto/)() | A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| [get_Modified](../annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Name](../annotation/get_name/)() | Gets annotation name on the page. | +| [get_Opacity](../markupannotation/get_opacity/)() | Gets the constant opacity value to be used in painting the annotation. | +| virtual [get_PageIndex](../annotation/get_pageindex/)() | Gets index of page which contains annotation. | +| [get_Popup](../markupannotation/get_popup/)() | Pop-up annotation for entering or editing the text associated with this annotation. | +| virtual [get_Rect](../annotation/get_rect/)() | Gets annotation rectangle. | +| [get_ReplyType](../markupannotation/get_replytype/)() | A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. | +| [get_RichText](../markupannotation/get_richtext/)() | Gets a rich text string to be displayed in the pop-up window when the annotation is opened. | +| [get_States](../annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_Subject](../markupannotation/get_subject/)() | Gets text representing desciption of the object. | +| [get_TextHorizontalAlignment](../annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| [get_Title](../markupannotation/get_title/)() override | Gets a text that shall be displayed in title bar of annotation. | +| static [get_UpdateAppearanceOnConvert](../annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetRectangle](../annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| [GetState](../markupannotation/getstate/)() | Gets the state of the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [GetStateModel](../markupannotation/getstatemodel/)() | Gets the state model of the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [MarkupAnnotation](../markupannotation/markupannotation/)(System::SharedPtr\) | Constructor for markup annotation. | +| virtual [set_ActiveState](../annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../annotation/set_alignment/)(TextAlignment) | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_Border](../annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../border/) | +| [set_Color](../annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](../annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_Flags](../annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| virtual [set_Height](../annotation/set_height/)(double) | Sets height of the annotation. | +| [set_HorizontalAlignment](../annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_Icon](./set_icon/)(StampIcon) | Sets icon for rubber stamp. | +| [set_Image](./set_image/)(System::SharedPtr\) | Sets image of the annotation. | +| [set_InReplyTo](../markupannotation/set_inreplyto/)(System::SharedPtr\) | A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| [set_Modified](../annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Name](../annotation/set_name/)(System::String) | Sets annotation name on the page. | +| [set_Opacity](../markupannotation/set_opacity/)(double) | Sets the constant opacity value to be used in painting the annotation. | +| [set_Popup](../markupannotation/set_popup/)(System::SharedPtr\) | Pop-up annotation for entering or editing the text associated with this annotation. | +| virtual [set_Rect](../annotation/set_rect/)(System::SharedPtr\) | Sets annotation rectangle. | +| [set_ReplyType](../markupannotation/set_replytype/)(Aspose::Pdf::Annotations::ReplyType) | A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. | +| [set_RichText](../markupannotation/set_richtext/)(System::String) | Sets a rich text string to be displayed in the pop-up window when the annotation is opened. | +| [set_Subject](../markupannotation/set_subject/)(System::String) | Gets text representing desciption of the object. | +| [set_TextHorizontalAlignment](../annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| [set_Title](../markupannotation/set_title/)(System::String) override | Sets a text that shall be displayed in title bar of annotation. | +| static [set_UpdateAppearanceOnConvert](../annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [SetMarkedState](../markupannotation/setmarkedstate/)(bool) | Sets Marked and Unmarked state for the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SetReviewState](../markupannotation/setreviewstate/)(AnnotationState, System::String) | Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SetReviewState](../markupannotation/setreviewstate/)(AnnotationState) | Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. The state is set by the user who created the target annotation. The value is taken from the Title property of the target annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [StampAnnotation](./stampannotation/)(System::SharedPtr\) | Constructor. | +| [StampAnnotation](./stampannotation/)(System::SharedPtr\, System::SharedPtr\) | Creates new [Stamp](../../aspose.pdf/stamp/) annotation on the specified page. | +## See Also + +* Class [MarkupAnnotation](../markupannotation/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/stampannotation/accept/_index.md b/english/cpp/aspose.pdf.annotations/stampannotation/accept/_index.md new file mode 100644 index 0000000000..b87a771ba2 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/stampannotation/accept/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Annotations::StampAnnotation::Accept method +linktitle: Accept +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::StampAnnotation::Accept method. Acepts AnnotationSelector visitor when browsing annotation collection in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/stampannotation/accept/ +--- +## StampAnnotation::Accept method + + +Acepts [AnnotationSelector](../../annotationselector/) visitor when browsing annotation collection. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::StampAnnotation::Accept(System::SharedPtr visitor) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| visitor | System::SharedPtr\ | Visitor object. | +## Remarks + + + + + + visitor + + + Visitor object. + + + +## See Also + +* Class [AnnotationSelector](../../annotationselector/) +* Class [StampAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/stampannotation/get_annotationtype/_index.md b/english/cpp/aspose.pdf.annotations/stampannotation/get_annotationtype/_index.md new file mode 100644 index 0000000000..dd2d6fd8bb --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/stampannotation/get_annotationtype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::StampAnnotation::get_AnnotationType method +linktitle: get_AnnotationType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::StampAnnotation::get_AnnotationType method. Gets type of annotation in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/stampannotation/get_annotationtype/ +--- +## StampAnnotation::get_AnnotationType method + + +Gets type of annotation. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::AnnotationType Aspose::Pdf::Annotations::StampAnnotation::get_AnnotationType() override +``` + +## See Also + +* Enum [AnnotationType](../../annotationtype/) +* Class [StampAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/stampannotation/get_icon/_index.md b/english/cpp/aspose.pdf.annotations/stampannotation/get_icon/_index.md new file mode 100644 index 0000000000..68dc760044 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/stampannotation/get_icon/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::StampAnnotation::get_Icon method +linktitle: get_Icon +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::StampAnnotation::get_Icon method. Gets icon for rubber stamp in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/stampannotation/get_icon/ +--- +## StampAnnotation::get_Icon method + + +Gets icon for rubber stamp. + +```cpp +ASPOSE_PDF_SHARED_API StampIcon Aspose::Pdf::Annotations::StampAnnotation::get_Icon() +``` + +## See Also + +* Enum [StampIcon](../../stampicon/) +* Class [StampAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/stampannotation/get_image/_index.md b/english/cpp/aspose.pdf.annotations/stampannotation/get_image/_index.md new file mode 100644 index 0000000000..9050471437 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/stampannotation/get_image/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::StampAnnotation::get_Image method +linktitle: get_Image +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::StampAnnotation::get_Image method. Gets image of the annotation in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/stampannotation/get_image/ +--- +## StampAnnotation::get_Image method + + +Gets image of the annotation. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::StampAnnotation::get_Image() +``` + +## See Also + +* Class [StampAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/stampannotation/set_icon/_index.md b/english/cpp/aspose.pdf.annotations/stampannotation/set_icon/_index.md new file mode 100644 index 0000000000..cab66aca95 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/stampannotation/set_icon/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::StampAnnotation::set_Icon method +linktitle: set_Icon +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::StampAnnotation::set_Icon method. Sets icon for rubber stamp in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/stampannotation/set_icon/ +--- +## StampAnnotation::set_Icon method + + +Sets icon for rubber stamp. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::StampAnnotation::set_Icon(StampIcon value) +``` + +## See Also + +* Enum [StampIcon](../../stampicon/) +* Class [StampAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/stampannotation/set_image/_index.md b/english/cpp/aspose.pdf.annotations/stampannotation/set_image/_index.md new file mode 100644 index 0000000000..52b67d0637 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/stampannotation/set_image/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::StampAnnotation::set_Image method +linktitle: set_Image +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::StampAnnotation::set_Image method. Sets image of the annotation in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/stampannotation/set_image/ +--- +## StampAnnotation::set_Image method + + +Sets image of the annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::StampAnnotation::set_Image(System::SharedPtr value) +``` + +## See Also + +* Class [StampAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/stampannotation/stampannotation/_index.md b/english/cpp/aspose.pdf.annotations/stampannotation/stampannotation/_index.md new file mode 100644 index 0000000000..bde106b945 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/stampannotation/stampannotation/_index.md @@ -0,0 +1,84 @@ +--- +title: Aspose::Pdf::Annotations::StampAnnotation::StampAnnotation constructor +linktitle: StampAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::StampAnnotation::StampAnnotation constructor. Constructor in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.annotations/stampannotation/stampannotation/ +--- +## StampAnnotation::StampAnnotation(System::SharedPtr\) constructor + + +Constructor. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::StampAnnotation::StampAnnotation(System::SharedPtr document) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | [Document](../../../aspose.pdf/document/) where annotation will be created. | +## Remarks + + + + + + document + + + + Document where annotation will be created. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [StampAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## StampAnnotation::StampAnnotation(System::SharedPtr\, System::SharedPtr\) constructor + + +Creates new [Stamp](../../../aspose.pdf/stamp/) annotation on the specified page. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::StampAnnotation::StampAnnotation(System::SharedPtr page, System::SharedPtr rect) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The document's page where annotation should be created. | +| rect | System::SharedPtr\ | The annotation rectangle, defining the location of the annotation on the page. | +## Remarks + + + + + + page + + + The document's page where annotation should be created. + + + + + rect + + + The annotation rectangle, defining the location of the annotation on the page. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [StampAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/stampicon/_index.md b/english/cpp/aspose.pdf.annotations/stampicon/_index.md new file mode 100644 index 0000000000..e7c83bfc6c --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/stampicon/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Annotations::StampIcon enum +linktitle: StampIcon +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::StampIcon enum. Enumerates the icons to be used in displaying the annotation in C++.' +type: docs +weight: 14800 +url: /cpp/aspose.pdf.annotations/stampicon/ +--- +## StampIcon enum + + +Enumerates the icons to be used in displaying the annotation. + +```cpp +enum class StampIcon +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Draft | 0 | Draft stamp icon. | +| Approved | 1 | Approved stamp icon. | +| Experimental | 2 | Experimental stamp icon. | +| NotApproved | 3 | [Stamp](../../aspose.pdf/stamp/) icon is not approved. | +| AsIs | 4 | [Stamp](../../aspose.pdf/stamp/) icon "as is". | +| Expired | 5 | [Stamp](../../aspose.pdf/stamp/) icon is expired. | +| NotForPublicRelease | 6 | Not for public release. | +| Confidential | 7 | Confidential. | +| Final | 8 | Final stamp. | +| Sold | 9 | Sold stamp. | +| Departmental | 10 | Departamental. | +| ForComment | 11 | For comment. | +| ForPublicRelease | 12 | For public release. | +| TopSecret | 13 | Top secret. | + +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/stampiconconverter/_index.md b/english/cpp/aspose.pdf.annotations/stampiconconverter/_index.md new file mode 100644 index 0000000000..cb5546f72e --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/stampiconconverter/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::StampIconConverter class +linktitle: StampIconConverter +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Annotations::StampIconConverter class in C++.' +type: docs +weight: 10800 +url: /cpp/aspose.pdf.annotations/stampiconconverter/ +--- +## StampIconConverter class + + + + +```cpp +class StampIconConverter : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [ToEnum](./toenum/)(System::String) | | +| static [ToString](./tostring/)(StampIcon) | | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/stampiconconverter/toenum/_index.md b/english/cpp/aspose.pdf.annotations/stampiconconverter/toenum/_index.md new file mode 100644 index 0000000000..f431ed37e4 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/stampiconconverter/toenum/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::StampIconConverter::ToEnum method +linktitle: ToEnum +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToEnum method of Aspose::Pdf::Annotations::StampIconConverter class in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/stampiconconverter/toenum/ +--- +## StampIconConverter::ToEnum method + + + + +```cpp +static ASPOSE_PDF_SHARED_API StampIcon Aspose::Pdf::Annotations::StampIconConverter::ToEnum(System::String value) +``` + +## See Also + +* Enum [StampIcon](../../stampicon/) +* Class [StampIconConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/stampiconconverter/tostring/_index.md b/english/cpp/aspose.pdf.annotations/stampiconconverter/tostring/_index.md new file mode 100644 index 0000000000..9402bc7c7b --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/stampiconconverter/tostring/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::StampIconConverter::ToString method +linktitle: ToString +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToString method of Aspose::Pdf::Annotations::StampIconConverter class in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/stampiconconverter/tostring/ +--- +## StampIconConverter::ToString method + + + + +```cpp +static ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::StampIconConverter::ToString(StampIcon value) +``` + +## See Also + +* Enum [StampIcon](../../stampicon/) +* Class [StampIconConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/strikeoutannotation/_index.md b/english/cpp/aspose.pdf.annotations/strikeoutannotation/_index.md new file mode 100644 index 0000000000..3fefaa8c9b --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/strikeoutannotation/_index.md @@ -0,0 +1,113 @@ +--- +title: Aspose::Pdf::Annotations::StrikeOutAnnotation class +linktitle: StrikeOutAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::StrikeOutAnnotation class. Represents a strikeout annotation that appears as a strikeout in the text of the document in C++.' +type: docs +weight: 10900 +url: /cpp/aspose.pdf.annotations/strikeoutannotation/ +--- +## StrikeOutAnnotation class + + +Represents a strikeout annotation that appears as a strikeout in the text of the document. + +```cpp +class StrikeOutAnnotation : public Aspose::Pdf::Annotations::TextMarkupAnnotation +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Accept](./accept/)(System::SharedPtr\) override | Accepts visitor object to process the annotation. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| [ChangeAfterResize](../textmarkupannotation/changeafterresize/)(System::SharedPtr\) override | Updates the QuadPoints, according to the matrix transform. | +| [ClearState](../markupannotation/clearstate/)() | Clears state and state model for the annotation. For example, clears the review status for an annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [Flatten](../annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](../annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../annotation/get_alignment/)() | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [get_AnnotationType](./get_annotationtype/)() override | Gets type of annotation. | +| [get_Appearance](../annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../annotation/get_border/)() const | Gets annotation border characteristics. [Border](../border/) | +| [get_Characteristics](../annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../annotation/get_color/)() | Gets annotation color. | +| [get_Contents](../annotation/get_contents/)() | Gets annotation text. | +| [get_CreationDate](../markupannotation/get_creationdate/)() | Gets date and time when annotation was created. | +| [get_Flags](../annotation/get_flags/)() | Flags of the annotation. | +| [get_FullName](../annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../annotation/get_height/)() | Gets height of the annotation. | +| [get_HorizontalAlignment](../annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_InReplyTo](../markupannotation/get_inreplyto/)() | A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| [get_Modified](../annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Name](../annotation/get_name/)() | Gets annotation name on the page. | +| [get_Opacity](../markupannotation/get_opacity/)() | Gets the constant opacity value to be used in painting the annotation. | +| virtual [get_PageIndex](../annotation/get_pageindex/)() | Gets index of page which contains annotation. | +| [get_Popup](../markupannotation/get_popup/)() | Pop-up annotation for entering or editing the text associated with this annotation. | +| [get_QuadPoints](../textmarkupannotation/get_quadpoints/)() | Gets an array of points specifying the coordinates of n quadrilaterals. Each quadrilateral encompasses a word or group of contiguous words in the text underlying the annotation. | +| virtual [get_Rect](../annotation/get_rect/)() | Gets annotation rectangle. | +| [get_ReplyType](../markupannotation/get_replytype/)() | A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. | +| [get_RichText](../markupannotation/get_richtext/)() | Gets a rich text string to be displayed in the pop-up window when the annotation is opened. | +| [get_States](../annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_Subject](../markupannotation/get_subject/)() | Gets text representing desciption of the object. | +| [get_TextHorizontalAlignment](../annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| [get_Title](../markupannotation/get_title/)() override | Gets a text that shall be displayed in title bar of annotation. | +| static [get_UpdateAppearanceOnConvert](../annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetMarkedText](../textmarkupannotation/getmarkedtext/)() | Gets text under markup annotation as string. | +| [GetMarkedTextFragments](../textmarkupannotation/getmarkedtextfragments/)() | Gets text under markup annotation as [TextFragmentCollection](../). | +| [GetRectangle](../annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| [GetState](../markupannotation/getstate/)() | Gets the state of the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [GetStateModel](../markupannotation/getstatemodel/)() | Gets the state model of the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [MarkupAnnotation](../markupannotation/markupannotation/)(System::SharedPtr\) | Constructor for markup annotation. | +| virtual [set_ActiveState](../annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../annotation/set_alignment/)(TextAlignment) | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_Border](../annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../border/) | +| [set_Color](../annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](../annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_Flags](../annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| virtual [set_Height](../annotation/set_height/)(double) | Sets height of the annotation. | +| [set_HorizontalAlignment](../annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_InReplyTo](../markupannotation/set_inreplyto/)(System::SharedPtr\) | A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| [set_Modified](../annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Name](../annotation/set_name/)(System::String) | Sets annotation name on the page. | +| [set_Opacity](../markupannotation/set_opacity/)(double) | Sets the constant opacity value to be used in painting the annotation. | +| [set_Popup](../markupannotation/set_popup/)(System::SharedPtr\) | Pop-up annotation for entering or editing the text associated with this annotation. | +| [set_QuadPoints](../textmarkupannotation/set_quadpoints/)(System::ArrayPtr\\>) | Sets an array of points specifying the coordinates of n quadrilaterals. Each quadrilateral encompasses a word or group of contiguous words in the text underlying the annotation. | +| virtual [set_Rect](../annotation/set_rect/)(System::SharedPtr\) | Sets annotation rectangle. | +| [set_ReplyType](../markupannotation/set_replytype/)(Aspose::Pdf::Annotations::ReplyType) | A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. | +| [set_RichText](../markupannotation/set_richtext/)(System::String) | Sets a rich text string to be displayed in the pop-up window when the annotation is opened. | +| [set_Subject](../markupannotation/set_subject/)(System::String) | Gets text representing desciption of the object. | +| [set_TextHorizontalAlignment](../annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| [set_Title](../markupannotation/set_title/)(System::String) override | Sets a text that shall be displayed in title bar of annotation. | +| static [set_UpdateAppearanceOnConvert](../annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [SetMarkedState](../markupannotation/setmarkedstate/)(bool) | Sets Marked and Unmarked state for the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SetReviewState](../markupannotation/setreviewstate/)(AnnotationState, System::String) | Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SetReviewState](../markupannotation/setreviewstate/)(AnnotationState) | Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. The state is set by the user who created the target annotation. The value is taken from the Title property of the target annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [StrikeOutAnnotation](./strikeoutannotation/)(System::SharedPtr\, System::SharedPtr\) | Creates new StrikeOut annotation on the specified page. | +## See Also + +* Class [TextMarkupAnnotation](../textmarkupannotation/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/strikeoutannotation/accept/_index.md b/english/cpp/aspose.pdf.annotations/strikeoutannotation/accept/_index.md new file mode 100644 index 0000000000..feeaabe2a3 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/strikeoutannotation/accept/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Annotations::StrikeOutAnnotation::Accept method +linktitle: Accept +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::StrikeOutAnnotation::Accept method. Accepts visitor object to process the annotation in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/strikeoutannotation/accept/ +--- +## StrikeOutAnnotation::Accept method + + +Accepts visitor object to process the annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::StrikeOutAnnotation::Accept(System::SharedPtr visitor) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| visitor | System::SharedPtr\ | Visitor object. | +## Remarks + + + + + + visitor + + + Visitor object. + + + +## See Also + +* Class [AnnotationSelector](../../annotationselector/) +* Class [StrikeOutAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/strikeoutannotation/get_annotationtype/_index.md b/english/cpp/aspose.pdf.annotations/strikeoutannotation/get_annotationtype/_index.md new file mode 100644 index 0000000000..2c9ea85df6 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/strikeoutannotation/get_annotationtype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::StrikeOutAnnotation::get_AnnotationType method +linktitle: get_AnnotationType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::StrikeOutAnnotation::get_AnnotationType method. Gets type of annotation in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/strikeoutannotation/get_annotationtype/ +--- +## StrikeOutAnnotation::get_AnnotationType method + + +Gets type of annotation. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::AnnotationType Aspose::Pdf::Annotations::StrikeOutAnnotation::get_AnnotationType() override +``` + +## See Also + +* Enum [AnnotationType](../../annotationtype/) +* Class [StrikeOutAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/strikeoutannotation/strikeoutannotation/_index.md b/english/cpp/aspose.pdf.annotations/strikeoutannotation/strikeoutannotation/_index.md new file mode 100644 index 0000000000..2e33f76cfc --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/strikeoutannotation/strikeoutannotation/_index.md @@ -0,0 +1,51 @@ +--- +title: Aspose::Pdf::Annotations::StrikeOutAnnotation::StrikeOutAnnotation constructor +linktitle: StrikeOutAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::StrikeOutAnnotation::StrikeOutAnnotation constructor. Creates new StrikeOut annotation on the specified page in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/strikeoutannotation/strikeoutannotation/ +--- +## StrikeOutAnnotation::StrikeOutAnnotation constructor + + +Creates new StrikeOut annotation on the specified page. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::StrikeOutAnnotation::StrikeOutAnnotation(System::SharedPtr page, System::SharedPtr rect) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The document's page where annotation should be created. | +| rect | System::SharedPtr\ | The annotation rectangle, defining the location of the annotation on the page. | +## Remarks + + + + + + page + + + The document's page where annotation should be created. + + + + + rect + + + The annotation rectangle, defining the location of the annotation on the page. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [StrikeOutAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/submitformaction/_index.md b/english/cpp/aspose.pdf.annotations/submitformaction/_index.md new file mode 100644 index 0000000000..5df4cf7ba7 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/submitformaction/_index.md @@ -0,0 +1,52 @@ +--- +title: Aspose::Pdf::Annotations::SubmitFormAction class +linktitle: SubmitFormAction +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SubmitFormAction class. Class which describes submit-form action in C++.' +type: docs +weight: 11000 +url: /cpp/aspose.pdf.annotations/submitformaction/ +--- +## SubmitFormAction class + + +Class which describes submit-form action. + +```cpp +class SubmitFormAction : public Aspose::Pdf::Annotations::PdfAction +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_Flags](./get_flags/)() | Gets flagas of submit action. | +| [get_Next](../pdfaction/get_next/)() | Next actions in sequence. | +| [get_Url](./get_url/)() | Destination URL. | +| [GetECMAScriptString](../pdfaction/getecmascriptstring/)() | Gets string for ECMAScript Action. | +| [set_Flags](./set_flags/)(int32_t) | Sets flagas of submit action. | +| [set_Url](./set_url/)(System::SharedPtr\) | Destination URL. | +| [SubmitFormAction](./submitformaction/)() | Initializes [SubmitFormAction](./) object. | +| [ToString](../pdfaction/tostring/)() const override | Returns string representation of [ExplicitDestination](../explicitdestination/) object. | +## Fields + +| Field | Description | +| --- | --- | +| static constexpr [CanonicalFormat](./canonicalformat/) | If set, any submitted field values representing dates shall be converted to the standard format. | +| static constexpr [EmbedForm](./embedform/) | If set, the F entry of the submitted FDF shall be a file specification containing an embedded file stream representing the PDF file from which the FDF is being submitted. | +| static constexpr [ExclFKey](./exclfkey/) | If set, the submitted FDF shall exclude the F entry. | +| static constexpr [ExclNonUserAnnots](./exclnonuserannots/) | If set, it shall include only those markup annotations whose T entry matches the name of the current user. | +| static constexpr [Exclude](./exclude/) | If clear, the Fields array specifies which fields to include in the submission. | +| static constexpr [ExportFormat](./exportformat/) | If set, field names and values shall be submitted in HTML Form format. | +| static constexpr [GetMethod](./getmethod/) | If set, field names and values shall be submitted using an HTTP GET request. | +| static constexpr [IncludeAnnotations](./includeannotations/) | If set, the submitted FDF file shall include includes all markup annotations in the underlying PDF document. | +| static constexpr [IncludeAppendSaves](./includeappendsaves/) | If set, the submitted FDF file shall include the contents of all incremental updates. | +| static constexpr [IncludeNoValueFields](./includenovaluefields/) | If set, all fields designated by the Fields array and the Include/Exclude flag shall be submitted. | +| static constexpr [SubmitCoordinates](./submitcoordinates/) | If set, the coordinates of the mouse click that caused the submit-form action shall be transmitted as part of the form data. | +| static constexpr [SubmitPdf](./submitpdf/) | If set, the document shall be submitted as PDF, using the MIME content type application/pdf. | +| static constexpr [Xfdf](./xfdf/) | If set, field names and values shall be submitted as XFDF. | +## See Also + +* Class [PdfAction](../pdfaction/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/submitformaction/canonicalformat/_index.md b/english/cpp/aspose.pdf.annotations/submitformaction/canonicalformat/_index.md new file mode 100644 index 0000000000..5222d7d283 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/submitformaction/canonicalformat/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::SubmitFormAction::CanonicalFormat field +linktitle: CanonicalFormat +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SubmitFormAction::CanonicalFormat field. If set, any submitted field values representing dates shall be converted to the standard format in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.annotations/submitformaction/canonicalformat/ +--- +## CanonicalFormat field + + +If set, any submitted field values representing dates shall be converted to the standard format. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Annotations::SubmitFormAction::CanonicalFormat +``` + +## See Also + +* Class [SubmitFormAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/submitformaction/embedform/_index.md b/english/cpp/aspose.pdf.annotations/submitformaction/embedform/_index.md new file mode 100644 index 0000000000..48adf90392 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/submitformaction/embedform/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::SubmitFormAction::EmbedForm field +linktitle: EmbedForm +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SubmitFormAction::EmbedForm field. If set, the F entry of the submitted FDF shall be a file specification containing an embedded file stream representing the PDF file from which the FDF is being submitted in C++.' +type: docs +weight: 1800 +url: /cpp/aspose.pdf.annotations/submitformaction/embedform/ +--- +## EmbedForm field + + +If set, the F entry of the submitted FDF shall be a file specification containing an embedded file stream representing the PDF file from which the FDF is being submitted. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Annotations::SubmitFormAction::EmbedForm +``` + +## See Also + +* Class [SubmitFormAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/submitformaction/exclfkey/_index.md b/english/cpp/aspose.pdf.annotations/submitformaction/exclfkey/_index.md new file mode 100644 index 0000000000..0d07a8cb63 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/submitformaction/exclfkey/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::SubmitFormAction::ExclFKey field +linktitle: ExclFKey +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SubmitFormAction::ExclFKey field. If set, the submitted FDF shall exclude the F entry in C++.' +type: docs +weight: 1700 +url: /cpp/aspose.pdf.annotations/submitformaction/exclfkey/ +--- +## ExclFKey field + + +If set, the submitted FDF shall exclude the F entry. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Annotations::SubmitFormAction::ExclFKey +``` + +## See Also + +* Class [SubmitFormAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/submitformaction/exclnonuserannots/_index.md b/english/cpp/aspose.pdf.annotations/submitformaction/exclnonuserannots/_index.md new file mode 100644 index 0000000000..d70337a8cb --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/submitformaction/exclnonuserannots/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::SubmitFormAction::ExclNonUserAnnots field +linktitle: ExclNonUserAnnots +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SubmitFormAction::ExclNonUserAnnots field. If set, it shall include only those markup annotations whose T entry matches the name of the current user in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf.annotations/submitformaction/exclnonuserannots/ +--- +## ExclNonUserAnnots field + + +If set, it shall include only those markup annotations whose T entry matches the name of the current user. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Annotations::SubmitFormAction::ExclNonUserAnnots +``` + +## See Also + +* Class [SubmitFormAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/submitformaction/exclude/_index.md b/english/cpp/aspose.pdf.annotations/submitformaction/exclude/_index.md new file mode 100644 index 0000000000..297cfbb53b --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/submitformaction/exclude/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::SubmitFormAction::Exclude field +linktitle: Exclude +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SubmitFormAction::Exclude field. If clear, the Fields array specifies which fields to include in the submission in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/submitformaction/exclude/ +--- +## Exclude field + + +If clear, the Fields array specifies which fields to include in the submission. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Annotations::SubmitFormAction::Exclude +``` + +## See Also + +* Class [SubmitFormAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/submitformaction/exportformat/_index.md b/english/cpp/aspose.pdf.annotations/submitformaction/exportformat/_index.md new file mode 100644 index 0000000000..c5bd224e95 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/submitformaction/exportformat/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::SubmitFormAction::ExportFormat field +linktitle: ExportFormat +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SubmitFormAction::ExportFormat field. If set, field names and values shall be submitted in HTML Form format in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.annotations/submitformaction/exportformat/ +--- +## ExportFormat field + + +If set, field names and values shall be submitted in HTML Form format. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Annotations::SubmitFormAction::ExportFormat +``` + +## See Also + +* Class [SubmitFormAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/submitformaction/get_flags/_index.md b/english/cpp/aspose.pdf.annotations/submitformaction/get_flags/_index.md new file mode 100644 index 0000000000..de0fde0343 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/submitformaction/get_flags/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::SubmitFormAction::get_Flags method +linktitle: get_Flags +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SubmitFormAction::get_Flags method. Gets flagas of submit action in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/submitformaction/get_flags/ +--- +## SubmitFormAction::get_Flags method + + +Gets flagas of submit action. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Annotations::SubmitFormAction::get_Flags() +``` + +## See Also + +* Class [SubmitFormAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/submitformaction/get_url/_index.md b/english/cpp/aspose.pdf.annotations/submitformaction/get_url/_index.md new file mode 100644 index 0000000000..db26175eb5 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/submitformaction/get_url/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::SubmitFormAction::get_Url method +linktitle: get_Url +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SubmitFormAction::get_Url method. Destination URL in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/submitformaction/get_url/ +--- +## SubmitFormAction::get_Url method + + +Destination URL. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::SubmitFormAction::get_Url() +``` + +## See Also + +* Class [FileSpecification](../../../aspose.pdf/filespecification/) +* Class [SubmitFormAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/submitformaction/getmethod/_index.md b/english/cpp/aspose.pdf.annotations/submitformaction/getmethod/_index.md new file mode 100644 index 0000000000..025470a2bc --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/submitformaction/getmethod/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::SubmitFormAction::GetMethod field +linktitle: GetMethod +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SubmitFormAction::GetMethod field. If set, field names and values shall be submitted using an HTTP GET request in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.annotations/submitformaction/getmethod/ +--- +## GetMethod field + + +If set, field names and values shall be submitted using an HTTP GET request. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Annotations::SubmitFormAction::GetMethod +``` + +## See Also + +* Class [SubmitFormAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/submitformaction/includeannotations/_index.md b/english/cpp/aspose.pdf.annotations/submitformaction/includeannotations/_index.md new file mode 100644 index 0000000000..424ef454aa --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/submitformaction/includeannotations/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::SubmitFormAction::IncludeAnnotations field +linktitle: IncludeAnnotations +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SubmitFormAction::IncludeAnnotations field. If set, the submitted FDF file shall include includes all markup annotations in the underlying PDF document in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.annotations/submitformaction/includeannotations/ +--- +## IncludeAnnotations field + + +If set, the submitted FDF file shall include includes all markup annotations in the underlying PDF document. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Annotations::SubmitFormAction::IncludeAnnotations +``` + +## See Also + +* Class [SubmitFormAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/submitformaction/includeappendsaves/_index.md b/english/cpp/aspose.pdf.annotations/submitformaction/includeappendsaves/_index.md new file mode 100644 index 0000000000..73034c2b2e --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/submitformaction/includeappendsaves/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::SubmitFormAction::IncludeAppendSaves field +linktitle: IncludeAppendSaves +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SubmitFormAction::IncludeAppendSaves field. If set, the submitted FDF file shall include the contents of all incremental updates in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.annotations/submitformaction/includeappendsaves/ +--- +## IncludeAppendSaves field + + +If set, the submitted FDF file shall include the contents of all incremental updates. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Annotations::SubmitFormAction::IncludeAppendSaves +``` + +## See Also + +* Class [SubmitFormAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/submitformaction/includenovaluefields/_index.md b/english/cpp/aspose.pdf.annotations/submitformaction/includenovaluefields/_index.md new file mode 100644 index 0000000000..06e44e2d5d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/submitformaction/includenovaluefields/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::SubmitFormAction::IncludeNoValueFields field +linktitle: IncludeNoValueFields +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SubmitFormAction::IncludeNoValueFields field. If set, all fields designated by the Fields array and the Include/Exclude flag shall be submitted in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.annotations/submitformaction/includenovaluefields/ +--- +## IncludeNoValueFields field + + +If set, all fields designated by the Fields array and the Include/Exclude flag shall be submitted. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Annotations::SubmitFormAction::IncludeNoValueFields +``` + +## See Also + +* Class [SubmitFormAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/submitformaction/set_flags/_index.md b/english/cpp/aspose.pdf.annotations/submitformaction/set_flags/_index.md new file mode 100644 index 0000000000..e6c52bb17c --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/submitformaction/set_flags/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::SubmitFormAction::set_Flags method +linktitle: set_Flags +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SubmitFormAction::set_Flags method. Sets flagas of submit action in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/submitformaction/set_flags/ +--- +## SubmitFormAction::set_Flags method + + +Sets flagas of submit action. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::SubmitFormAction::set_Flags(int32_t value) +``` + +## See Also + +* Class [SubmitFormAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/submitformaction/set_url/_index.md b/english/cpp/aspose.pdf.annotations/submitformaction/set_url/_index.md new file mode 100644 index 0000000000..5335083569 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/submitformaction/set_url/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::SubmitFormAction::set_Url method +linktitle: set_Url +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SubmitFormAction::set_Url method. Destination URL in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/submitformaction/set_url/ +--- +## SubmitFormAction::set_Url method + + +Destination URL. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::SubmitFormAction::set_Url(System::SharedPtr value) +``` + +## See Also + +* Class [FileSpecification](../../../aspose.pdf/filespecification/) +* Class [SubmitFormAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/submitformaction/submitcoordinates/_index.md b/english/cpp/aspose.pdf.annotations/submitformaction/submitcoordinates/_index.md new file mode 100644 index 0000000000..615bb92512 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/submitformaction/submitcoordinates/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::SubmitFormAction::SubmitCoordinates field +linktitle: SubmitCoordinates +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SubmitFormAction::SubmitCoordinates field. If set, the coordinates of the mouse click that caused the submit-form action shall be transmitted as part of the form data in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.annotations/submitformaction/submitcoordinates/ +--- +## SubmitCoordinates field + + +If set, the coordinates of the mouse click that caused the submit-form action shall be transmitted as part of the form data. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Annotations::SubmitFormAction::SubmitCoordinates +``` + +## See Also + +* Class [SubmitFormAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/submitformaction/submitformaction/_index.md b/english/cpp/aspose.pdf.annotations/submitformaction/submitformaction/_index.md new file mode 100644 index 0000000000..d2280b1af4 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/submitformaction/submitformaction/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::SubmitFormAction::SubmitFormAction constructor +linktitle: SubmitFormAction +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SubmitFormAction::SubmitFormAction constructor. Initializes SubmitFormAction object in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/submitformaction/submitformaction/ +--- +## SubmitFormAction::SubmitFormAction constructor + + +Initializes [SubmitFormAction](../) object. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::SubmitFormAction::SubmitFormAction() +``` + +## See Also + +* Class [SubmitFormAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/submitformaction/submitpdf/_index.md b/english/cpp/aspose.pdf.annotations/submitformaction/submitpdf/_index.md new file mode 100644 index 0000000000..cf5b7bdd10 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/submitformaction/submitpdf/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::SubmitFormAction::SubmitPdf field +linktitle: SubmitPdf +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SubmitFormAction::SubmitPdf field. If set, the document shall be submitted as PDF, using the MIME content type application/pdf in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.annotations/submitformaction/submitpdf/ +--- +## SubmitPdf field + + +If set, the document shall be submitted as PDF, using the MIME content type application/pdf. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Annotations::SubmitFormAction::SubmitPdf +``` + +## See Also + +* Class [SubmitFormAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/submitformaction/xfdf/_index.md b/english/cpp/aspose.pdf.annotations/submitformaction/xfdf/_index.md new file mode 100644 index 0000000000..0aae70839b --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/submitformaction/xfdf/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::SubmitFormAction::Xfdf field +linktitle: Xfdf +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::SubmitFormAction::Xfdf field. If set, field names and values shall be submitted as XFDF in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.annotations/submitformaction/xfdf/ +--- +## Xfdf field + + +If set, field names and values shall be submitted as XFDF. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Annotations::SubmitFormAction::Xfdf +``` + +## See Also + +* Class [SubmitFormAction](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/textalignment/_index.md b/english/cpp/aspose.pdf.annotations/textalignment/_index.md new file mode 100644 index 0000000000..47a441a5fe --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/textalignment/_index.md @@ -0,0 +1,39 @@ +--- +title: Aspose::Pdf::Annotations::TextAlignment enum +linktitle: TextAlignment +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::TextAlignment enum. Alignment of text in annotation in C++.' +type: docs +weight: 14900 +url: /cpp/aspose.pdf.annotations/textalignment/ +--- +## TextAlignment enum + + +Alignment of text in annotation. + +```cpp +enum class TextAlignment +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Left | 0 | [Text](../../aspose.pdf.text/) is aligned to left. | +| Center | 1 | [Text](../../aspose.pdf.text/) is centered. | +| Right | 2 | [Text](../../aspose.pdf.text/) is aligned to right. | + +## Remarks + + + + Deprecated + + Use Aspose.Pdf.HorizontalAlignment type + + +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/textannotation/_index.md b/english/cpp/aspose.pdf.annotations/textannotation/_index.md new file mode 100644 index 0000000000..43deed1ccf --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/textannotation/_index.md @@ -0,0 +1,114 @@ +--- +title: Aspose::Pdf::Annotations::TextAnnotation class +linktitle: TextAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::TextAnnotation class. Represents a text annotation that is a ''sticky note'' attached to a point in the PDF document in C++.' +type: docs +weight: 11100 +url: /cpp/aspose.pdf.annotations/textannotation/ +--- +## TextAnnotation class + + +Represents a text annotation that is a 'sticky note' attached to a point in the PDF document. + +```cpp +class TextAnnotation : public Aspose::Pdf::Annotations::MarkupAnnotation +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Accept](./accept/)(System::SharedPtr\) override | Accepts visitor object to process the annotation. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| [ChangeAfterResize](./changeafterresize/)(System::SharedPtr\) override | Overrides the definition in the base class with an empty body. | +| [ClearState](../markupannotation/clearstate/)() | Clears state and state model for the annotation. For example, clears the review status for an annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [Flatten](../annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](../annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../annotation/get_alignment/)() | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [get_AnnotationType](./get_annotationtype/)() override | Gets type of annotation. | +| [get_Appearance](../annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../annotation/get_border/)() const | Gets annotation border characteristics. [Border](../border/) | +| [get_Characteristics](../annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../annotation/get_color/)() | Gets annotation color. | +| [get_Contents](../annotation/get_contents/)() | Gets annotation text. | +| [get_CreationDate](../markupannotation/get_creationdate/)() | Gets date and time when annotation was created. | +| [get_Flags](../annotation/get_flags/)() | Flags of the annotation. | +| [get_FullName](../annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../annotation/get_height/)() | Gets height of the annotation. | +| [get_HorizontalAlignment](../annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_Icon](./get_icon/)() | Gets an icon to be used in displaying the annotation. | +| [get_InReplyTo](../markupannotation/get_inreplyto/)() | A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| [get_Modified](../annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Name](../annotation/get_name/)() | Gets annotation name on the page. | +| [get_Opacity](../markupannotation/get_opacity/)() | Gets the constant opacity value to be used in painting the annotation. | +| [get_Open](./get_open/)() | Gets a flag specifying whether the annotation should initially be displayed open. | +| virtual [get_PageIndex](../annotation/get_pageindex/)() | Gets index of page which contains annotation. | +| [get_Popup](../markupannotation/get_popup/)() | Pop-up annotation for entering or editing the text associated with this annotation. | +| virtual [get_Rect](../annotation/get_rect/)() | Gets annotation rectangle. | +| [get_ReplyType](../markupannotation/get_replytype/)() | A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. | +| [get_RichText](../markupannotation/get_richtext/)() | Gets a rich text string to be displayed in the pop-up window when the annotation is opened. | +| [get_States](../annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_Subject](../markupannotation/get_subject/)() | Gets text representing desciption of the object. | +| [get_TextHorizontalAlignment](../annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| [get_Title](../markupannotation/get_title/)() override | Gets a text that shall be displayed in title bar of annotation. | +| static [get_UpdateAppearanceOnConvert](../annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetRectangle](../annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| [GetState](../markupannotation/getstate/)() | Gets the state of the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [GetStateModel](../markupannotation/getstatemodel/)() | Gets the state model of the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [MarkupAnnotation](../markupannotation/markupannotation/)(System::SharedPtr\) | Constructor for markup annotation. | +| virtual [set_ActiveState](../annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../annotation/set_alignment/)(TextAlignment) | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_Border](../annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../border/) | +| [set_Color](../annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](../annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_Flags](../annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| virtual [set_Height](../annotation/set_height/)(double) | Sets height of the annotation. | +| [set_HorizontalAlignment](../annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_Icon](./set_icon/)(TextIcon) | Sets an icon to be used in displaying the annotation. | +| [set_InReplyTo](../markupannotation/set_inreplyto/)(System::SharedPtr\) | A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| [set_Modified](../annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Name](../annotation/set_name/)(System::String) | Sets annotation name on the page. | +| [set_Opacity](../markupannotation/set_opacity/)(double) | Sets the constant opacity value to be used in painting the annotation. | +| [set_Open](./set_open/)(bool) | Sets a flag specifying whether the annotation should initially be displayed open. | +| [set_Popup](../markupannotation/set_popup/)(System::SharedPtr\) | Pop-up annotation for entering or editing the text associated with this annotation. | +| virtual [set_Rect](../annotation/set_rect/)(System::SharedPtr\) | Sets annotation rectangle. | +| [set_ReplyType](../markupannotation/set_replytype/)(Aspose::Pdf::Annotations::ReplyType) | A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. | +| [set_RichText](../markupannotation/set_richtext/)(System::String) | Sets a rich text string to be displayed in the pop-up window when the annotation is opened. | +| [set_Subject](../markupannotation/set_subject/)(System::String) | Gets text representing desciption of the object. | +| [set_TextHorizontalAlignment](../annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| [set_Title](../markupannotation/set_title/)(System::String) override | Sets a text that shall be displayed in title bar of annotation. | +| static [set_UpdateAppearanceOnConvert](../annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [SetMarkedState](../markupannotation/setmarkedstate/)(bool) | Sets Marked and Unmarked state for the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SetReviewState](../markupannotation/setreviewstate/)(AnnotationState, System::String) | Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SetReviewState](../markupannotation/setreviewstate/)(AnnotationState) | Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. The state is set by the user who created the target annotation. The value is taken from the Title property of the target annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [TextAnnotation](./textannotation/)(System::SharedPtr\) | Constructor for annotation when used in Generator. | +| [TextAnnotation](./textannotation/)(System::SharedPtr\, System::SharedPtr\) | Creates new [Text](../../aspose.pdf.text/) annotation on the specified page. | +## See Also + +* Class [MarkupAnnotation](../markupannotation/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/textannotation/accept/_index.md b/english/cpp/aspose.pdf.annotations/textannotation/accept/_index.md new file mode 100644 index 0000000000..8fa6544353 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/textannotation/accept/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Annotations::TextAnnotation::Accept method +linktitle: Accept +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::TextAnnotation::Accept method. Accepts visitor object to process the annotation in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/textannotation/accept/ +--- +## TextAnnotation::Accept method + + +Accepts visitor object to process the annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::TextAnnotation::Accept(System::SharedPtr visitor) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| visitor | System::SharedPtr\ | Visitor object. | +## Remarks + + + + + + visitor + + + Visitor object. + + + +## See Also + +* Class [AnnotationSelector](../../annotationselector/) +* Class [TextAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/textannotation/changeafterresize/_index.md b/english/cpp/aspose.pdf.annotations/textannotation/changeafterresize/_index.md new file mode 100644 index 0000000000..97733c448e --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/textannotation/changeafterresize/_index.md @@ -0,0 +1,42 @@ +--- +title: Aspose::Pdf::Annotations::TextAnnotation::ChangeAfterResize method +linktitle: ChangeAfterResize +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::TextAnnotation::ChangeAfterResize method. Overrides the definition in the base class with an empty body in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.annotations/textannotation/changeafterresize/ +--- +## TextAnnotation::ChangeAfterResize method + + +Overrides the definition in the base class with an empty body. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::TextAnnotation::ChangeAfterResize(System::SharedPtr transform) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| transform | System::SharedPtr\ | [Matrix](../../../aspose.pdf/matrix/) specifying the transformation. | +## Remarks + + + + + + transform + + + + Matrix specifying the transformation. + + + +## See Also + +* Class [Matrix](../../../aspose.pdf/matrix/) +* Class [TextAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/textannotation/get_annotationtype/_index.md b/english/cpp/aspose.pdf.annotations/textannotation/get_annotationtype/_index.md new file mode 100644 index 0000000000..f50cbc2660 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/textannotation/get_annotationtype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::TextAnnotation::get_AnnotationType method +linktitle: get_AnnotationType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::TextAnnotation::get_AnnotationType method. Gets type of annotation in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/textannotation/get_annotationtype/ +--- +## TextAnnotation::get_AnnotationType method + + +Gets type of annotation. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::AnnotationType Aspose::Pdf::Annotations::TextAnnotation::get_AnnotationType() override +``` + +## See Also + +* Enum [AnnotationType](../../annotationtype/) +* Class [TextAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/textannotation/get_icon/_index.md b/english/cpp/aspose.pdf.annotations/textannotation/get_icon/_index.md new file mode 100644 index 0000000000..90d6cf0543 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/textannotation/get_icon/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::TextAnnotation::get_Icon method +linktitle: get_Icon +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::TextAnnotation::get_Icon method. Gets an icon to be used in displaying the annotation in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/textannotation/get_icon/ +--- +## TextAnnotation::get_Icon method + + +Gets an icon to be used in displaying the annotation. + +```cpp +ASPOSE_PDF_SHARED_API TextIcon Aspose::Pdf::Annotations::TextAnnotation::get_Icon() +``` + +## See Also + +* Enum [TextIcon](../../texticon/) +* Class [TextAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/textannotation/get_open/_index.md b/english/cpp/aspose.pdf.annotations/textannotation/get_open/_index.md new file mode 100644 index 0000000000..cda0debf92 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/textannotation/get_open/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::TextAnnotation::get_Open method +linktitle: get_Open +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::TextAnnotation::get_Open method. Gets a flag specifying whether the annotation should initially be displayed open in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/textannotation/get_open/ +--- +## TextAnnotation::get_Open method + + +Gets a flag specifying whether the annotation should initially be displayed open. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Annotations::TextAnnotation::get_Open() +``` + +## See Also + +* Class [TextAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/textannotation/set_icon/_index.md b/english/cpp/aspose.pdf.annotations/textannotation/set_icon/_index.md new file mode 100644 index 0000000000..a939968e70 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/textannotation/set_icon/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::TextAnnotation::set_Icon method +linktitle: set_Icon +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::TextAnnotation::set_Icon method. Sets an icon to be used in displaying the annotation in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/textannotation/set_icon/ +--- +## TextAnnotation::set_Icon method + + +Sets an icon to be used in displaying the annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::TextAnnotation::set_Icon(TextIcon value) +``` + +## See Also + +* Enum [TextIcon](../../texticon/) +* Class [TextAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/textannotation/set_open/_index.md b/english/cpp/aspose.pdf.annotations/textannotation/set_open/_index.md new file mode 100644 index 0000000000..5da734abfb --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/textannotation/set_open/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::TextAnnotation::set_Open method +linktitle: set_Open +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::TextAnnotation::set_Open method. Sets a flag specifying whether the annotation should initially be displayed open in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/textannotation/set_open/ +--- +## TextAnnotation::set_Open method + + +Sets a flag specifying whether the annotation should initially be displayed open. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::TextAnnotation::set_Open(bool value) +``` + +## See Also + +* Class [TextAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/textannotation/textannotation/_index.md b/english/cpp/aspose.pdf.annotations/textannotation/textannotation/_index.md new file mode 100644 index 0000000000..6f99d744a7 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/textannotation/textannotation/_index.md @@ -0,0 +1,84 @@ +--- +title: Aspose::Pdf::Annotations::TextAnnotation::TextAnnotation constructor +linktitle: TextAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::TextAnnotation::TextAnnotation constructor. Constructor for annotation when used in Generator in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.annotations/textannotation/textannotation/ +--- +## TextAnnotation::TextAnnotation(System::SharedPtr\) constructor + + +Constructor for annotation when used in Generator. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::TextAnnotation::TextAnnotation(System::SharedPtr document) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | [Document](../../../aspose.pdf/document/) where text annotation will be created. | +## Remarks + + + + + + document + + + + Document where text annotation will be created. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [TextAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## TextAnnotation::TextAnnotation(System::SharedPtr\, System::SharedPtr\) constructor + + +Creates new [Text](../../../aspose.pdf.text/) annotation on the specified page. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::TextAnnotation::TextAnnotation(System::SharedPtr page, System::SharedPtr rect) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The document's page where annotation should be created. | +| rect | System::SharedPtr\ | The annotation rectangle, defining the location of the annotation on the page. | +## Remarks + + + + + + page + + + The document's page where annotation should be created. + + + + + rect + + + The annotation rectangle, defining the location of the annotation on the page. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [TextAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/texticon/_index.md b/english/cpp/aspose.pdf.annotations/texticon/_index.md new file mode 100644 index 0000000000..39fb4b3423 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/texticon/_index.md @@ -0,0 +1,38 @@ +--- +title: Aspose::Pdf::Annotations::TextIcon enum +linktitle: TextIcon +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::TextIcon enum. Enumerates the icons to be used in displaying the annotation in C++.' +type: docs +weight: 15000 +url: /cpp/aspose.pdf.annotations/texticon/ +--- +## TextIcon enum + + +Enumerates the icons to be used in displaying the annotation. + +```cpp +enum class TextIcon +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Note | 0 | [Note](../../aspose.pdf/note/) icon. | +| Comment | 1 | Comment icon. | +| Key | 2 | Key icon. | +| Help | 3 | Help icon. | +| NewParagraph | 4 | NewParagraph icon. | +| Paragraph | 5 | Paragraph icon. | +| Insert | 6 | Insert icon. | +| Check | 7 | Check icon. | +| Cross | 8 | Cross icon. | +| Circle | 9 | Circle icon. | +| Star | 10 | Star icon. | + +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/texticonconverter/_index.md b/english/cpp/aspose.pdf.annotations/texticonconverter/_index.md new file mode 100644 index 0000000000..ba9f034a7f --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/texticonconverter/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::TextIconConverter class +linktitle: TextIconConverter +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Annotations::TextIconConverter class in C++.' +type: docs +weight: 11200 +url: /cpp/aspose.pdf.annotations/texticonconverter/ +--- +## TextIconConverter class + + + + +```cpp +class TextIconConverter : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [ToEnum](./toenum/)(System::String) | | +| static [ToString](./tostring/)(TextIcon) | | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/texticonconverter/toenum/_index.md b/english/cpp/aspose.pdf.annotations/texticonconverter/toenum/_index.md new file mode 100644 index 0000000000..dc200ce144 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/texticonconverter/toenum/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::TextIconConverter::ToEnum method +linktitle: ToEnum +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToEnum method of Aspose::Pdf::Annotations::TextIconConverter class in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/texticonconverter/toenum/ +--- +## TextIconConverter::ToEnum method + + + + +```cpp +static ASPOSE_PDF_SHARED_API TextIcon Aspose::Pdf::Annotations::TextIconConverter::ToEnum(System::String value) +``` + +## See Also + +* Enum [TextIcon](../../texticon/) +* Class [TextIconConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/texticonconverter/tostring/_index.md b/english/cpp/aspose.pdf.annotations/texticonconverter/tostring/_index.md new file mode 100644 index 0000000000..ddff14c419 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/texticonconverter/tostring/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::TextIconConverter::ToString method +linktitle: ToString +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToString method of Aspose::Pdf::Annotations::TextIconConverter class in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/texticonconverter/tostring/ +--- +## TextIconConverter::ToString method + + + + +```cpp +static ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::TextIconConverter::ToString(TextIcon value) +``` + +## See Also + +* Enum [TextIcon](../../texticon/) +* Class [TextIconConverter](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/textmarkupannotation/_index.md b/english/cpp/aspose.pdf.annotations/textmarkupannotation/_index.md new file mode 100644 index 0000000000..84d43b6658 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/textmarkupannotation/_index.md @@ -0,0 +1,112 @@ +--- +title: Aspose::Pdf::Annotations::TextMarkupAnnotation class +linktitle: TextMarkupAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::TextMarkupAnnotation class. Abstract base class for text markup annotations in C++.' +type: docs +weight: 11300 +url: /cpp/aspose.pdf.annotations/textmarkupannotation/ +--- +## TextMarkupAnnotation class + + +Abstract base class for text markup annotations. + +```cpp +class TextMarkupAnnotation : public Aspose::Pdf::Annotations::MarkupAnnotation +``` + +## Methods + +| Method | Description | +| --- | --- | +| virtual [Accept](../annotation/accept/)(System::SharedPtr\) | Accepts visitor for annotation processing. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| [ChangeAfterResize](./changeafterresize/)(System::SharedPtr\) override | Updates the QuadPoints, according to the matrix transform. | +| [ClearState](../markupannotation/clearstate/)() | Clears state and state model for the annotation. For example, clears the review status for an annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [Flatten](../annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](../annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../annotation/get_alignment/)() | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| virtual [get_AnnotationType](../annotation/get_annotationtype/)() | Gets type of annotation. | +| [get_Appearance](../annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../annotation/get_border/)() const | Gets annotation border characteristics. [Border](../border/) | +| [get_Characteristics](../annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../annotation/get_color/)() | Gets annotation color. | +| [get_Contents](../annotation/get_contents/)() | Gets annotation text. | +| [get_CreationDate](../markupannotation/get_creationdate/)() | Gets date and time when annotation was created. | +| [get_Flags](../annotation/get_flags/)() | Flags of the annotation. | +| [get_FullName](../annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../annotation/get_height/)() | Gets height of the annotation. | +| [get_HorizontalAlignment](../annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_InReplyTo](../markupannotation/get_inreplyto/)() | A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| [get_Modified](../annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Name](../annotation/get_name/)() | Gets annotation name on the page. | +| [get_Opacity](../markupannotation/get_opacity/)() | Gets the constant opacity value to be used in painting the annotation. | +| virtual [get_PageIndex](../annotation/get_pageindex/)() | Gets index of page which contains annotation. | +| [get_Popup](../markupannotation/get_popup/)() | Pop-up annotation for entering or editing the text associated with this annotation. | +| [get_QuadPoints](./get_quadpoints/)() | Gets an array of points specifying the coordinates of n quadrilaterals. Each quadrilateral encompasses a word or group of contiguous words in the text underlying the annotation. | +| virtual [get_Rect](../annotation/get_rect/)() | Gets annotation rectangle. | +| [get_ReplyType](../markupannotation/get_replytype/)() | A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. | +| [get_RichText](../markupannotation/get_richtext/)() | Gets a rich text string to be displayed in the pop-up window when the annotation is opened. | +| [get_States](../annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_Subject](../markupannotation/get_subject/)() | Gets text representing desciption of the object. | +| [get_TextHorizontalAlignment](../annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| [get_Title](../markupannotation/get_title/)() override | Gets a text that shall be displayed in title bar of annotation. | +| static [get_UpdateAppearanceOnConvert](../annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetMarkedText](./getmarkedtext/)() | Gets text under markup annotation as string. | +| [GetMarkedTextFragments](./getmarkedtextfragments/)() | Gets text under markup annotation as [TextFragmentCollection](../). | +| [GetRectangle](../annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| [GetState](../markupannotation/getstate/)() | Gets the state of the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [GetStateModel](../markupannotation/getstatemodel/)() | Gets the state model of the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [MarkupAnnotation](../markupannotation/markupannotation/)(System::SharedPtr\) | Constructor for markup annotation. | +| virtual [set_ActiveState](../annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../annotation/set_alignment/)(TextAlignment) | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_Border](../annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../border/) | +| [set_Color](../annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](../annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_Flags](../annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| virtual [set_Height](../annotation/set_height/)(double) | Sets height of the annotation. | +| [set_HorizontalAlignment](../annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_InReplyTo](../markupannotation/set_inreplyto/)(System::SharedPtr\) | A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| [set_Modified](../annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Name](../annotation/set_name/)(System::String) | Sets annotation name on the page. | +| [set_Opacity](../markupannotation/set_opacity/)(double) | Sets the constant opacity value to be used in painting the annotation. | +| [set_Popup](../markupannotation/set_popup/)(System::SharedPtr\) | Pop-up annotation for entering or editing the text associated with this annotation. | +| [set_QuadPoints](./set_quadpoints/)(System::ArrayPtr\\>) | Sets an array of points specifying the coordinates of n quadrilaterals. Each quadrilateral encompasses a word or group of contiguous words in the text underlying the annotation. | +| virtual [set_Rect](../annotation/set_rect/)(System::SharedPtr\) | Sets annotation rectangle. | +| [set_ReplyType](../markupannotation/set_replytype/)(Aspose::Pdf::Annotations::ReplyType) | A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. | +| [set_RichText](../markupannotation/set_richtext/)(System::String) | Sets a rich text string to be displayed in the pop-up window when the annotation is opened. | +| [set_Subject](../markupannotation/set_subject/)(System::String) | Gets text representing desciption of the object. | +| [set_TextHorizontalAlignment](../annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| [set_Title](../markupannotation/set_title/)(System::String) override | Sets a text that shall be displayed in title bar of annotation. | +| static [set_UpdateAppearanceOnConvert](../annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [SetMarkedState](../markupannotation/setmarkedstate/)(bool) | Sets Marked and Unmarked state for the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SetReviewState](../markupannotation/setreviewstate/)(AnnotationState, System::String) | Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SetReviewState](../markupannotation/setreviewstate/)(AnnotationState) | Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. The state is set by the user who created the target annotation. The value is taken from the Title property of the target annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +## See Also + +* Class [MarkupAnnotation](../markupannotation/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/textmarkupannotation/changeafterresize/_index.md b/english/cpp/aspose.pdf.annotations/textmarkupannotation/changeafterresize/_index.md new file mode 100644 index 0000000000..ce2cc12a53 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/textmarkupannotation/changeafterresize/_index.md @@ -0,0 +1,42 @@ +--- +title: Aspose::Pdf::Annotations::TextMarkupAnnotation::ChangeAfterResize method +linktitle: ChangeAfterResize +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::TextMarkupAnnotation::ChangeAfterResize method. Updates the QuadPoints, according to the matrix transform in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/textmarkupannotation/changeafterresize/ +--- +## TextMarkupAnnotation::ChangeAfterResize method + + +Updates the QuadPoints, according to the matrix transform. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::TextMarkupAnnotation::ChangeAfterResize(System::SharedPtr transform) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| transform | System::SharedPtr\ | [Matrix](../../../aspose.pdf/matrix/) that use for transformation (resize). | +## Remarks + + + + + + transform + + + + Matrix that use for transformation (resize). + + + +## See Also + +* Class [Matrix](../../../aspose.pdf/matrix/) +* Class [TextMarkupAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/textmarkupannotation/get_quadpoints/_index.md b/english/cpp/aspose.pdf.annotations/textmarkupannotation/get_quadpoints/_index.md new file mode 100644 index 0000000000..c01e855fe9 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/textmarkupannotation/get_quadpoints/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::TextMarkupAnnotation::get_QuadPoints method +linktitle: get_QuadPoints +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::TextMarkupAnnotation::get_QuadPoints method. Gets an array of points specifying the coordinates of n quadrilaterals. Each quadrilateral encompasses a word or group of contiguous words in the text underlying the annotation in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/textmarkupannotation/get_quadpoints/ +--- +## TextMarkupAnnotation::get_QuadPoints method + + +Gets an array of points specifying the coordinates of n quadrilaterals. Each quadrilateral encompasses a word or group of contiguous words in the text underlying the annotation. + +```cpp +ASPOSE_PDF_SHARED_API System::ArrayPtr> Aspose::Pdf::Annotations::TextMarkupAnnotation::get_QuadPoints() +``` + +## See Also + +* Class [Point](../../../aspose.pdf/point/) +* Class [TextMarkupAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/textmarkupannotation/getmarkedtext/_index.md b/english/cpp/aspose.pdf.annotations/textmarkupannotation/getmarkedtext/_index.md new file mode 100644 index 0000000000..9824c08097 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/textmarkupannotation/getmarkedtext/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::TextMarkupAnnotation::GetMarkedText method +linktitle: GetMarkedText +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::TextMarkupAnnotation::GetMarkedText method. Gets text under markup annotation as string in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/textmarkupannotation/getmarkedtext/ +--- +## TextMarkupAnnotation::GetMarkedText method + + +Gets text under markup annotation as string. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::TextMarkupAnnotation::GetMarkedText() +``` + + +### ReturnValue + +String containing text that is under markup annotation. + +## See Also + +* Class [TextMarkupAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/textmarkupannotation/getmarkedtextfragments/_index.md b/english/cpp/aspose.pdf.annotations/textmarkupannotation/getmarkedtextfragments/_index.md new file mode 100644 index 0000000000..a045f71d38 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/textmarkupannotation/getmarkedtextfragments/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Annotations::TextMarkupAnnotation::GetMarkedTextFragments method +linktitle: GetMarkedTextFragments +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::TextMarkupAnnotation::GetMarkedTextFragments method. Gets text under markup annotation as TextFragmentCollection in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/textmarkupannotation/getmarkedtextfragments/ +--- +## TextMarkupAnnotation::GetMarkedTextFragments method + + +Gets text under markup annotation as [TextFragmentCollection](../). + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::TextMarkupAnnotation::GetMarkedTextFragments() +``` + + +### ReturnValue + +[TextFragmentCollection](../) containing **TextFragment**s that is under markup annotation. + +## See Also + +* Class [TextFragmentCollection](../../../aspose.pdf.text/textfragmentcollection/) +* Class [TextMarkupAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/textmarkupannotation/set_quadpoints/_index.md b/english/cpp/aspose.pdf.annotations/textmarkupannotation/set_quadpoints/_index.md new file mode 100644 index 0000000000..1dfb46d8b4 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/textmarkupannotation/set_quadpoints/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::TextMarkupAnnotation::set_QuadPoints method +linktitle: set_QuadPoints +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::TextMarkupAnnotation::set_QuadPoints method. Sets an array of points specifying the coordinates of n quadrilaterals. Each quadrilateral encompasses a word or group of contiguous words in the text underlying the annotation in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/textmarkupannotation/set_quadpoints/ +--- +## TextMarkupAnnotation::set_QuadPoints method + + +Sets an array of points specifying the coordinates of n quadrilaterals. Each quadrilateral encompasses a word or group of contiguous words in the text underlying the annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::TextMarkupAnnotation::set_QuadPoints(System::ArrayPtr> value) +``` + +## See Also + +* Class [Point](../../../aspose.pdf/point/) +* Class [TextMarkupAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/textstyle/_index.md b/english/cpp/aspose.pdf.annotations/textstyle/_index.md new file mode 100644 index 0000000000..23c04f908c --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/textstyle/_index.md @@ -0,0 +1,37 @@ +--- +title: Aspose::Pdf::Annotations::TextStyle class +linktitle: TextStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::TextStyle class. Class represents style of text in annotation in C++.' +type: docs +weight: 11400 +url: /cpp/aspose.pdf.annotations/textstyle/ +--- +## TextStyle class + + +Class represents style of text in annotation. + +```cpp +class TextStyle : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_Alignment](./get_alignment/)() | Gets horizontal alignment of the text. | +| [get_Color](./get_color/)() | [Color](../../aspose.pdf/color/) of the text. | +| [get_FontName](./get_fontname/)() | Name of the font. | +| [get_FontSize](./get_fontsize/)() | Fonst size. | +| [get_HorizontalAlignment](./get_horizontalalignment/)() | [Text](../../aspose.pdf.text/) alignment. Valid values are: Left, Center, Rigth. | +| [set_Alignment](./set_alignment/)(TextAlignment) | Sets horizontal alignment of the text. | +| [set_Color](./set_color/)(System::Drawing::Color) | [Color](../../aspose.pdf/color/) of the text. | +| [set_FontName](./set_fontname/)(System::String) | Name of the font. | +| [set_FontSize](./set_fontsize/)(double) | Fonst size. | +| [set_HorizontalAlignment](./set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | [Text](../../aspose.pdf.text/) alignment. Valid values are: Left, Center, Rigth. | +| [ToString](./tostring/)() const override | String representation of [TextStyle](./). | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/textstyle/get_alignment/_index.md b/english/cpp/aspose.pdf.annotations/textstyle/get_alignment/_index.md new file mode 100644 index 0000000000..c6b458ec91 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/textstyle/get_alignment/_index.md @@ -0,0 +1,33 @@ +--- +title: Aspose::Pdf::Annotations::TextStyle::get_Alignment method +linktitle: get_Alignment +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::TextStyle::get_Alignment method. Gets horizontal alignment of the text in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/textstyle/get_alignment/ +--- +## TextStyle::get_Alignment method + + +Gets horizontal alignment of the text. + +```cpp +ASPOSE_PDF_SHARED_API TextAlignment Aspose::Pdf::Annotations::TextStyle::get_Alignment() +``` + +## Remarks + + + + Deprecated + + Use HorizontalAlignment property + + +## See Also + +* Enum [TextAlignment](../../textalignment/) +* Class [TextStyle](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/textstyle/get_color/_index.md b/english/cpp/aspose.pdf.annotations/textstyle/get_color/_index.md new file mode 100644 index 0000000000..a0a8c0491c --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/textstyle/get_color/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::TextStyle::get_Color method +linktitle: get_Color +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::TextStyle::get_Color method. Color of the text in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.annotations/textstyle/get_color/ +--- +## TextStyle::get_Color method + + +[Color](../../../aspose.pdf/color/) of the text. + +```cpp +ASPOSE_PDF_SHARED_API System::Drawing::Color Aspose::Pdf::Annotations::TextStyle::get_Color() +``` + +## See Also + +* Class [TextStyle](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/textstyle/get_fontname/_index.md b/english/cpp/aspose.pdf.annotations/textstyle/get_fontname/_index.md new file mode 100644 index 0000000000..05f4e473f3 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/textstyle/get_fontname/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::TextStyle::get_FontName method +linktitle: get_FontName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::TextStyle::get_FontName method. Name of the font in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/textstyle/get_fontname/ +--- +## TextStyle::get_FontName method + + +Name of the font. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::TextStyle::get_FontName() +``` + +## See Also + +* Class [TextStyle](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/textstyle/get_fontsize/_index.md b/english/cpp/aspose.pdf.annotations/textstyle/get_fontsize/_index.md new file mode 100644 index 0000000000..31e899f1aa --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/textstyle/get_fontsize/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::TextStyle::get_FontSize method +linktitle: get_FontSize +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::TextStyle::get_FontSize method. Fonst size in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/textstyle/get_fontsize/ +--- +## TextStyle::get_FontSize method + + +Fonst size. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Annotations::TextStyle::get_FontSize() +``` + +## See Also + +* Class [TextStyle](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/textstyle/get_horizontalalignment/_index.md b/english/cpp/aspose.pdf.annotations/textstyle/get_horizontalalignment/_index.md new file mode 100644 index 0000000000..7056b1fd05 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/textstyle/get_horizontalalignment/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::TextStyle::get_HorizontalAlignment method +linktitle: get_HorizontalAlignment +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::TextStyle::get_HorizontalAlignment method. Text alignment. Valid values are: Left, Center, Rigth in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.annotations/textstyle/get_horizontalalignment/ +--- +## TextStyle::get_HorizontalAlignment method + + +[Text](../../../aspose.pdf.text/) alignment. Valid values are: Left, Center, Rigth. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::HorizontalAlignment Aspose::Pdf::Annotations::TextStyle::get_HorizontalAlignment() +``` + +## See Also + +* Enum [HorizontalAlignment](../../../aspose.pdf/horizontalalignment/) +* Class [TextStyle](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/textstyle/set_alignment/_index.md b/english/cpp/aspose.pdf.annotations/textstyle/set_alignment/_index.md new file mode 100644 index 0000000000..b57408399d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/textstyle/set_alignment/_index.md @@ -0,0 +1,33 @@ +--- +title: Aspose::Pdf::Annotations::TextStyle::set_Alignment method +linktitle: set_Alignment +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::TextStyle::set_Alignment method. Sets horizontal alignment of the text in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/textstyle/set_alignment/ +--- +## TextStyle::set_Alignment method + + +Sets horizontal alignment of the text. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::TextStyle::set_Alignment(TextAlignment value) +``` + +## Remarks + + + + Deprecated + + Use HorizontalAlignment property + + +## See Also + +* Enum [TextAlignment](../../textalignment/) +* Class [TextStyle](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/textstyle/set_color/_index.md b/english/cpp/aspose.pdf.annotations/textstyle/set_color/_index.md new file mode 100644 index 0000000000..4ea7295f53 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/textstyle/set_color/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::TextStyle::set_Color method +linktitle: set_Color +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::TextStyle::set_Color method. Color of the text in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.annotations/textstyle/set_color/ +--- +## TextStyle::set_Color method + + +[Color](../../../aspose.pdf/color/) of the text. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::TextStyle::set_Color(System::Drawing::Color value) +``` + +## See Also + +* Class [TextStyle](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/textstyle/set_fontname/_index.md b/english/cpp/aspose.pdf.annotations/textstyle/set_fontname/_index.md new file mode 100644 index 0000000000..8b642f80a7 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/textstyle/set_fontname/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::TextStyle::set_FontName method +linktitle: set_FontName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::TextStyle::set_FontName method. Name of the font in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/textstyle/set_fontname/ +--- +## TextStyle::set_FontName method + + +Name of the font. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::TextStyle::set_FontName(System::String value) +``` + +## See Also + +* Class [TextStyle](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/textstyle/set_fontsize/_index.md b/english/cpp/aspose.pdf.annotations/textstyle/set_fontsize/_index.md new file mode 100644 index 0000000000..37f7534d33 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/textstyle/set_fontsize/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::TextStyle::set_FontSize method +linktitle: set_FontSize +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::TextStyle::set_FontSize method. Fonst size in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/textstyle/set_fontsize/ +--- +## TextStyle::set_FontSize method + + +Fonst size. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::TextStyle::set_FontSize(double value) +``` + +## See Also + +* Class [TextStyle](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/textstyle/set_horizontalalignment/_index.md b/english/cpp/aspose.pdf.annotations/textstyle/set_horizontalalignment/_index.md new file mode 100644 index 0000000000..fbadd0944a --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/textstyle/set_horizontalalignment/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::TextStyle::set_HorizontalAlignment method +linktitle: set_HorizontalAlignment +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::TextStyle::set_HorizontalAlignment method. Text alignment. Valid values are: Left, Center, Rigth in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.annotations/textstyle/set_horizontalalignment/ +--- +## TextStyle::set_HorizontalAlignment method + + +[Text](../../../aspose.pdf.text/) alignment. Valid values are: Left, Center, Rigth. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::TextStyle::set_HorizontalAlignment(Aspose::Pdf::HorizontalAlignment value) +``` + +## See Also + +* Enum [HorizontalAlignment](../../../aspose.pdf/horizontalalignment/) +* Class [TextStyle](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/textstyle/tostring/_index.md b/english/cpp/aspose.pdf.annotations/textstyle/tostring/_index.md new file mode 100644 index 0000000000..be18913458 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/textstyle/tostring/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::TextStyle::ToString method +linktitle: ToString +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::TextStyle::ToString method. String representation of TextStyle in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.annotations/textstyle/tostring/ +--- +## TextStyle::ToString method + + +String representation of [TextStyle](../). + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::TextStyle::ToString() const override +``` + + +### ReturnValue + +String representation. + +## See Also + +* Class [TextStyle](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/trimmarkannotation/_index.md b/english/cpp/aspose.pdf.annotations/trimmarkannotation/_index.md new file mode 100644 index 0000000000..cec7bc5b88 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/trimmarkannotation/_index.md @@ -0,0 +1,95 @@ +--- +title: Aspose::Pdf::Annotations::TrimMarkAnnotation class +linktitle: TrimMarkAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::TrimMarkAnnotation class. Represents a Trim Mark annotation in C++.' +type: docs +weight: 11500 +url: /cpp/aspose.pdf.annotations/trimmarkannotation/ +--- +## TrimMarkAnnotation class + + +Represents a Trim Mark annotation. + +```cpp +class TrimMarkAnnotation : public Aspose::Pdf::Annotations::CornerPrinterMarkAnnotation +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Accept](./accept/)(System::SharedPtr\) override | Accepts visitor for annotation processing. | +| static [AddPrinterMarks](../printermarkannotation/addprintermarks/)(System::SharedPtr\, PrinterMarksKind) | Adds printer's marks to all pages in the specified document. | +| static [AddPrinterMarks](../printermarkannotation/addprintermarks/)(System::SharedPtr\, PrinterMarksKind) | Adds printer's marks to the specified page. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| virtual [ChangeAfterResize](../annotation/changeafterresize/)(System::SharedPtr\) | Update parameters and appearance, according to the matrix transform. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [Flatten](../annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](../annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../annotation/get_alignment/)() | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [get_AnnotationType](./get_annotationtype/)() override | Gets type of annotation. | +| [get_Appearance](../annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../annotation/get_border/)() const | Gets annotation border characteristics. [Border](../border/) | +| [get_Characteristics](../annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../annotation/get_color/)() | Gets annotation color. | +| [get_Contents](../annotation/get_contents/)() | Gets annotation text. | +| [get_Flags](../annotation/get_flags/)() | Flags of the annotation. | +| [get_FullName](../annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../annotation/get_height/)() | Gets height of the annotation. | +| [get_HorizontalAlignment](../annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| [get_Modified](../annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Name](../annotation/get_name/)() | Gets annotation name on the page. | +| virtual [get_PageIndex](../annotation/get_pageindex/)() | Gets index of page which contains annotation. | +| [get_Position](../cornerprintermarkannotation/get_position/)() const | Get or sets the position of the mark on the page. | +| virtual [get_Rect](../annotation/get_rect/)() | Gets annotation rectangle. | +| [get_States](../annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_TextHorizontalAlignment](../annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| static [get_UpdateAppearanceOnConvert](../annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetRectangle](../annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| virtual [set_ActiveState](../annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../annotation/set_alignment/)(TextAlignment) | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_Border](../annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../border/) | +| [set_Color](../annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](../annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_Flags](../annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| virtual [set_Height](../annotation/set_height/)(double) | Sets height of the annotation. | +| [set_HorizontalAlignment](../annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| [set_Modified](../annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Name](../annotation/set_name/)(System::String) | Sets annotation name on the page. | +| [set_Position](../cornerprintermarkannotation/set_position/)(PrinterMarkCornerPosition) | Get or sets the position of the mark on the page. | +| virtual [set_Rect](../annotation/set_rect/)(System::SharedPtr\) | Sets annotation rectangle. | +| [set_TextHorizontalAlignment](../annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| static [set_UpdateAppearanceOnConvert](../annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [TrimMarkAnnotation](./trimmarkannotation/)(System::SharedPtr\, PrinterMarkCornerPosition) | Initializes a new instance of the [TrimMarkAnnotation](./) class. | +## Remarks + + +Trim marks are placed at the corners of a printed page to indicate where the page is to be trimmed. +## See Also + +* Class [CornerPrinterMarkAnnotation](../cornerprintermarkannotation/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/trimmarkannotation/accept/_index.md b/english/cpp/aspose.pdf.annotations/trimmarkannotation/accept/_index.md new file mode 100644 index 0000000000..46d7c372c0 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/trimmarkannotation/accept/_index.md @@ -0,0 +1,42 @@ +--- +title: Aspose::Pdf::Annotations::TrimMarkAnnotation::Accept method +linktitle: Accept +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::TrimMarkAnnotation::Accept method. Accepts visitor for annotation processing in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/trimmarkannotation/accept/ +--- +## TrimMarkAnnotation::Accept method + + +Accepts visitor for annotation processing. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::TrimMarkAnnotation::Accept(System::SharedPtr visitor) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| visitor | System::SharedPtr\ | [AnnotationSelector](../../annotationselector/) object. | +## Remarks + + + + + + visitor + + + + AnnotationSelector object. + + + +## See Also + +* Class [AnnotationSelector](../../annotationselector/) +* Class [TrimMarkAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/trimmarkannotation/get_annotationtype/_index.md b/english/cpp/aspose.pdf.annotations/trimmarkannotation/get_annotationtype/_index.md new file mode 100644 index 0000000000..eab122f117 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/trimmarkannotation/get_annotationtype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::TrimMarkAnnotation::get_AnnotationType method +linktitle: get_AnnotationType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::TrimMarkAnnotation::get_AnnotationType method. Gets type of annotation in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/trimmarkannotation/get_annotationtype/ +--- +## TrimMarkAnnotation::get_AnnotationType method + + +Gets type of annotation. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::AnnotationType Aspose::Pdf::Annotations::TrimMarkAnnotation::get_AnnotationType() override +``` + +## See Also + +* Enum [AnnotationType](../../annotationtype/) +* Class [TrimMarkAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/trimmarkannotation/trimmarkannotation/_index.md b/english/cpp/aspose.pdf.annotations/trimmarkannotation/trimmarkannotation/_index.md new file mode 100644 index 0000000000..42c16a3c71 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/trimmarkannotation/trimmarkannotation/_index.md @@ -0,0 +1,53 @@ +--- +title: Aspose::Pdf::Annotations::TrimMarkAnnotation::TrimMarkAnnotation constructor +linktitle: TrimMarkAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::TrimMarkAnnotation::TrimMarkAnnotation constructor. Initializes a new instance of the TrimMarkAnnotation class in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/trimmarkannotation/trimmarkannotation/ +--- +## TrimMarkAnnotation::TrimMarkAnnotation constructor + + +Initializes a new instance of the [TrimMarkAnnotation](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::TrimMarkAnnotation::TrimMarkAnnotation(System::SharedPtr page, PrinterMarkCornerPosition position) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The page where the annotation will be added. | +| position | PrinterMarkCornerPosition | The position of the trim mark on the page. | +## Remarks + + + + + + page + + + The page where the annotation will be added. + + + + + position + + + The position of the trim mark on the page. + + + + +This constructor creates a [TrimMarkAnnotation](../) and adds it to the specified page at the specified position. +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Enum [PrinterMarkCornerPosition](../../printermarkcornerposition/) +* Class [TrimMarkAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/underlineannotation/_index.md b/english/cpp/aspose.pdf.annotations/underlineannotation/_index.md new file mode 100644 index 0000000000..a62df01293 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/underlineannotation/_index.md @@ -0,0 +1,113 @@ +--- +title: Aspose::Pdf::Annotations::UnderlineAnnotation class +linktitle: UnderlineAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::UnderlineAnnotation class. Represents an underline annotation that appears as an underline in the text of the document in C++.' +type: docs +weight: 11600 +url: /cpp/aspose.pdf.annotations/underlineannotation/ +--- +## UnderlineAnnotation class + + +Represents an underline annotation that appears as an underline in the text of the document. + +```cpp +class UnderlineAnnotation : public Aspose::Pdf::Annotations::TextMarkupAnnotation +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Accept](./accept/)(System::SharedPtr\) override | Accepts visitor object to process the annotation. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| [ChangeAfterResize](../textmarkupannotation/changeafterresize/)(System::SharedPtr\) override | Updates the QuadPoints, according to the matrix transform. | +| [ClearState](../markupannotation/clearstate/)() | Clears state and state model for the annotation. For example, clears the review status for an annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [Flatten](../annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](../annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../annotation/get_alignment/)() | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [get_AnnotationType](./get_annotationtype/)() override | Gets type of annotation. | +| [get_Appearance](../annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../annotation/get_border/)() const | Gets annotation border characteristics. [Border](../border/) | +| [get_Characteristics](../annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../annotation/get_color/)() | Gets annotation color. | +| [get_Contents](../annotation/get_contents/)() | Gets annotation text. | +| [get_CreationDate](../markupannotation/get_creationdate/)() | Gets date and time when annotation was created. | +| [get_Flags](../annotation/get_flags/)() | Flags of the annotation. | +| [get_FullName](../annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../annotation/get_height/)() | Gets height of the annotation. | +| [get_HorizontalAlignment](../annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_InReplyTo](../markupannotation/get_inreplyto/)() | A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| [get_Modified](../annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Name](../annotation/get_name/)() | Gets annotation name on the page. | +| [get_Opacity](../markupannotation/get_opacity/)() | Gets the constant opacity value to be used in painting the annotation. | +| virtual [get_PageIndex](../annotation/get_pageindex/)() | Gets index of page which contains annotation. | +| [get_Popup](../markupannotation/get_popup/)() | Pop-up annotation for entering or editing the text associated with this annotation. | +| [get_QuadPoints](../textmarkupannotation/get_quadpoints/)() | Gets an array of points specifying the coordinates of n quadrilaterals. Each quadrilateral encompasses a word or group of contiguous words in the text underlying the annotation. | +| virtual [get_Rect](../annotation/get_rect/)() | Gets annotation rectangle. | +| [get_ReplyType](../markupannotation/get_replytype/)() | A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. | +| [get_RichText](../markupannotation/get_richtext/)() | Gets a rich text string to be displayed in the pop-up window when the annotation is opened. | +| [get_States](../annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_Subject](../markupannotation/get_subject/)() | Gets text representing desciption of the object. | +| [get_TextHorizontalAlignment](../annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| [get_Title](../markupannotation/get_title/)() override | Gets a text that shall be displayed in title bar of annotation. | +| static [get_UpdateAppearanceOnConvert](../annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetMarkedText](../textmarkupannotation/getmarkedtext/)() | Gets text under markup annotation as string. | +| [GetMarkedTextFragments](../textmarkupannotation/getmarkedtextfragments/)() | Gets text under markup annotation as [TextFragmentCollection](../). | +| [GetRectangle](../annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| [GetState](../markupannotation/getstate/)() | Gets the state of the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [GetStateModel](../markupannotation/getstatemodel/)() | Gets the state model of the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [MarkupAnnotation](../markupannotation/markupannotation/)(System::SharedPtr\) | Constructor for markup annotation. | +| virtual [set_ActiveState](../annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../annotation/set_alignment/)(TextAlignment) | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_Border](../annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../border/) | +| [set_Color](../annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](../annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_Flags](../annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| virtual [set_Height](../annotation/set_height/)(double) | Sets height of the annotation. | +| [set_HorizontalAlignment](../annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_InReplyTo](../markupannotation/set_inreplyto/)(System::SharedPtr\) | A reference to the annotation that this annotation is "in reply to". Both annotations must be on the same page of the document. | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| [set_Modified](../annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Name](../annotation/set_name/)(System::String) | Sets annotation name on the page. | +| [set_Opacity](../markupannotation/set_opacity/)(double) | Sets the constant opacity value to be used in painting the annotation. | +| [set_Popup](../markupannotation/set_popup/)(System::SharedPtr\) | Pop-up annotation for entering or editing the text associated with this annotation. | +| [set_QuadPoints](../textmarkupannotation/set_quadpoints/)(System::ArrayPtr\\>) | Sets an array of points specifying the coordinates of n quadrilaterals. Each quadrilateral encompasses a word or group of contiguous words in the text underlying the annotation. | +| virtual [set_Rect](../annotation/set_rect/)(System::SharedPtr\) | Sets annotation rectangle. | +| [set_ReplyType](../markupannotation/set_replytype/)(Aspose::Pdf::Annotations::ReplyType) | A string specifying the relationship (the "reply type") between this annotation and one specified by InReplyTo. | +| [set_RichText](../markupannotation/set_richtext/)(System::String) | Sets a rich text string to be displayed in the pop-up window when the annotation is opened. | +| [set_Subject](../markupannotation/set_subject/)(System::String) | Gets text representing desciption of the object. | +| [set_TextHorizontalAlignment](../annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| [set_Title](../markupannotation/set_title/)(System::String) override | Sets a text that shall be displayed in title bar of annotation. | +| static [set_UpdateAppearanceOnConvert](../annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [SetMarkedState](../markupannotation/setmarkedstate/)(bool) | Sets Marked and Unmarked state for the annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SetReviewState](../markupannotation/setreviewstate/)(AnnotationState, System::String) | Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [SetReviewState](../markupannotation/setreviewstate/)(AnnotationState) | Sets the review state for an annotation. Marked and Unmarked states are ignored as they do not belong to the Review StateModel. The state is set by the user who created the target annotation. The value is taken from the Title property of the target annotation. [Note](../../aspose.pdf/note/), the state stored in other text annotation which has state and statemodel keys. | +| [UnderlineAnnotation](./underlineannotation/)(System::SharedPtr\, System::SharedPtr\) | Creates new Underline annotation on the specified page. | +## See Also + +* Class [TextMarkupAnnotation](../textmarkupannotation/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/underlineannotation/accept/_index.md b/english/cpp/aspose.pdf.annotations/underlineannotation/accept/_index.md new file mode 100644 index 0000000000..556fe91ebe --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/underlineannotation/accept/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Annotations::UnderlineAnnotation::Accept method +linktitle: Accept +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::UnderlineAnnotation::Accept method. Accepts visitor object to process the annotation in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/underlineannotation/accept/ +--- +## UnderlineAnnotation::Accept method + + +Accepts visitor object to process the annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::UnderlineAnnotation::Accept(System::SharedPtr visitor) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| visitor | System::SharedPtr\ | Visitor object. | +## Remarks + + + + + + visitor + + + Visitor object. + + + +## See Also + +* Class [AnnotationSelector](../../annotationselector/) +* Class [UnderlineAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/underlineannotation/get_annotationtype/_index.md b/english/cpp/aspose.pdf.annotations/underlineannotation/get_annotationtype/_index.md new file mode 100644 index 0000000000..552caf3c40 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/underlineannotation/get_annotationtype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::UnderlineAnnotation::get_AnnotationType method +linktitle: get_AnnotationType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::UnderlineAnnotation::get_AnnotationType method. Gets type of annotation in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/underlineannotation/get_annotationtype/ +--- +## UnderlineAnnotation::get_AnnotationType method + + +Gets type of annotation. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::AnnotationType Aspose::Pdf::Annotations::UnderlineAnnotation::get_AnnotationType() override +``` + +## See Also + +* Enum [AnnotationType](../../annotationtype/) +* Class [UnderlineAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/underlineannotation/underlineannotation/_index.md b/english/cpp/aspose.pdf.annotations/underlineannotation/underlineannotation/_index.md new file mode 100644 index 0000000000..fdcdadc1bf --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/underlineannotation/underlineannotation/_index.md @@ -0,0 +1,51 @@ +--- +title: Aspose::Pdf::Annotations::UnderlineAnnotation::UnderlineAnnotation constructor +linktitle: UnderlineAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::UnderlineAnnotation::UnderlineAnnotation constructor. Creates new Underline annotation on the specified page in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/underlineannotation/underlineannotation/ +--- +## UnderlineAnnotation::UnderlineAnnotation constructor + + +Creates new Underline annotation on the specified page. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::UnderlineAnnotation::UnderlineAnnotation(System::SharedPtr page, System::SharedPtr rect) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The document's page where annotation should be created. | +| rect | System::SharedPtr\ | The annotation rectangle, defining the location of the annotation on the page. | +## Remarks + + + + + + page + + + The document's page where annotation should be created. + + + + + rect + + + The annotation rectangle, defining the location of the annotation on the page. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [UnderlineAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/watermarkannotation/_index.md b/english/cpp/aspose.pdf.annotations/watermarkannotation/_index.md new file mode 100644 index 0000000000..e8c2bf3b20 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/watermarkannotation/_index.md @@ -0,0 +1,92 @@ +--- +title: Aspose::Pdf::Annotations::WatermarkAnnotation class +linktitle: WatermarkAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::WatermarkAnnotation class. Class describes Watermark annotation object in C++.' +type: docs +weight: 11700 +url: /cpp/aspose.pdf.annotations/watermarkannotation/ +--- +## WatermarkAnnotation class + + +Class describes [Watermark](../../aspose.pdf/watermark/) annotation object. + +```cpp +class WatermarkAnnotation : public Aspose::Pdf::Annotations::Annotation +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Accept](./accept/)(System::SharedPtr\) override | Apply visitor for annotation. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| [ChangeAfterResize](./changeafterresize/)(System::SharedPtr\) override | Overrides the definition in the base class with an empty body. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [Flatten](../annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](../annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../annotation/get_alignment/)() | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [get_AnnotationType](./get_annotationtype/)() override | Gets annotation type. | +| [get_Appearance](../annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../annotation/get_border/)() const | Gets annotation border characteristics. [Border](../border/) | +| [get_Characteristics](../annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../annotation/get_color/)() | Gets annotation color. | +| [get_Contents](../annotation/get_contents/)() | Gets annotation text. | +| [get_FixedPrint](./get_fixedprint/)() | Fuxed print object of [Watermark](../../aspose.pdf/watermark/) annotation. | +| [get_Flags](../annotation/get_flags/)() | Flags of the annotation. | +| [get_FullName](../annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../annotation/get_height/)() | Gets height of the annotation. | +| [get_HorizontalAlignment](../annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| [get_Modified](../annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Name](../annotation/get_name/)() | Gets annotation name on the page. | +| [get_Opacity](./get_opacity/)() const | Gets opacity of the annotation. | +| virtual [get_PageIndex](../annotation/get_pageindex/)() | Gets index of page which contains annotation. | +| virtual [get_Rect](../annotation/get_rect/)() | Gets annotation rectangle. | +| [get_States](../annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_TextHorizontalAlignment](../annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| static [get_UpdateAppearanceOnConvert](../annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetRectangle](../annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| virtual [set_ActiveState](../annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../annotation/set_alignment/)(TextAlignment) | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_Border](../annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../border/) | +| [set_Color](../annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](../annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_Flags](../annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| virtual [set_Height](../annotation/set_height/)(double) | Sets height of the annotation. | +| [set_HorizontalAlignment](../annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| [set_Modified](../annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Name](../annotation/set_name/)(System::String) | Sets annotation name on the page. | +| [set_Opacity](./set_opacity/)(double) | Sets opacity of the annotation. | +| virtual [set_Rect](../annotation/set_rect/)(System::SharedPtr\) | Sets annotation rectangle. | +| [set_TextHorizontalAlignment](../annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| static [set_UpdateAppearanceOnConvert](../annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [SetText](./settext/)(System::SharedPtr\) | Set text of the annotation. | +| [SetTextAndState](./settextandstate/)(System::ArrayPtr\, System::SharedPtr\) | Set text of the annotation. | +| [WatermarkAnnotation](./watermarkannotation/)(System::SharedPtr\, System::SharedPtr\) | Constructor for [Watermark](../../aspose.pdf/watermark/) annotation class. | +## See Also + +* Class [Annotation](../annotation/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/watermarkannotation/accept/_index.md b/english/cpp/aspose.pdf.annotations/watermarkannotation/accept/_index.md new file mode 100644 index 0000000000..79f786efa0 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/watermarkannotation/accept/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Annotations::WatermarkAnnotation::Accept method +linktitle: Accept +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::WatermarkAnnotation::Accept method. Apply visitor for annotation in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.annotations/watermarkannotation/accept/ +--- +## WatermarkAnnotation::Accept method + + +Apply visitor for annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::WatermarkAnnotation::Accept(System::SharedPtr visitor) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| visitor | System::SharedPtr\ | Visitor object. | +## Remarks + + + + + + visitor + + + Visitor object. + + + +## See Also + +* Class [AnnotationSelector](../../annotationselector/) +* Class [WatermarkAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/watermarkannotation/changeafterresize/_index.md b/english/cpp/aspose.pdf.annotations/watermarkannotation/changeafterresize/_index.md new file mode 100644 index 0000000000..464999da46 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/watermarkannotation/changeafterresize/_index.md @@ -0,0 +1,42 @@ +--- +title: Aspose::Pdf::Annotations::WatermarkAnnotation::ChangeAfterResize method +linktitle: ChangeAfterResize +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::WatermarkAnnotation::ChangeAfterResize method. Overrides the definition in the base class with an empty body in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.annotations/watermarkannotation/changeafterresize/ +--- +## WatermarkAnnotation::ChangeAfterResize method + + +Overrides the definition in the base class with an empty body. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::WatermarkAnnotation::ChangeAfterResize(System::SharedPtr transform) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| transform | System::SharedPtr\ | [Matrix](../../../aspose.pdf/matrix/) specifying the transformation. | +## Remarks + + + + + + transform + + + + Matrix specifying the transformation. + + + +## See Also + +* Class [Matrix](../../../aspose.pdf/matrix/) +* Class [WatermarkAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/watermarkannotation/get_annotationtype/_index.md b/english/cpp/aspose.pdf.annotations/watermarkannotation/get_annotationtype/_index.md new file mode 100644 index 0000000000..593cd30f17 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/watermarkannotation/get_annotationtype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::WatermarkAnnotation::get_AnnotationType method +linktitle: get_AnnotationType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::WatermarkAnnotation::get_AnnotationType method. Gets annotation type in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/watermarkannotation/get_annotationtype/ +--- +## WatermarkAnnotation::get_AnnotationType method + + +Gets annotation type. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::AnnotationType Aspose::Pdf::Annotations::WatermarkAnnotation::get_AnnotationType() override +``` + +## See Also + +* Enum [AnnotationType](../../annotationtype/) +* Class [WatermarkAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/watermarkannotation/get_fixedprint/_index.md b/english/cpp/aspose.pdf.annotations/watermarkannotation/get_fixedprint/_index.md new file mode 100644 index 0000000000..ca1d14e5a8 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/watermarkannotation/get_fixedprint/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::WatermarkAnnotation::get_FixedPrint method +linktitle: get_FixedPrint +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::WatermarkAnnotation::get_FixedPrint method. Fuxed print object of Watermark annotation in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/watermarkannotation/get_fixedprint/ +--- +## WatermarkAnnotation::get_FixedPrint method + + +Fuxed print object of [Watermark](../../../aspose.pdf/watermark/) annotation. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::WatermarkAnnotation::get_FixedPrint() +``` + +## See Also + +* Class [FixedPrint](../../fixedprint/) +* Class [WatermarkAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/watermarkannotation/get_opacity/_index.md b/english/cpp/aspose.pdf.annotations/watermarkannotation/get_opacity/_index.md new file mode 100644 index 0000000000..f99c2d3c5e --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/watermarkannotation/get_opacity/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::WatermarkAnnotation::get_Opacity method +linktitle: get_Opacity +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::WatermarkAnnotation::get_Opacity method. Gets opacity of the annotation in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/watermarkannotation/get_opacity/ +--- +## WatermarkAnnotation::get_Opacity method + + +Gets opacity of the annotation. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Annotations::WatermarkAnnotation::get_Opacity() const +``` + +## See Also + +* Class [WatermarkAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/watermarkannotation/set_opacity/_index.md b/english/cpp/aspose.pdf.annotations/watermarkannotation/set_opacity/_index.md new file mode 100644 index 0000000000..3a7d59bbe6 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/watermarkannotation/set_opacity/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::WatermarkAnnotation::set_Opacity method +linktitle: set_Opacity +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::WatermarkAnnotation::set_Opacity method. Sets opacity of the annotation in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/watermarkannotation/set_opacity/ +--- +## WatermarkAnnotation::set_Opacity method + + +Sets opacity of the annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::WatermarkAnnotation::set_Opacity(double value) +``` + +## See Also + +* Class [WatermarkAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/watermarkannotation/settext/_index.md b/english/cpp/aspose.pdf.annotations/watermarkannotation/settext/_index.md new file mode 100644 index 0000000000..b9afdda7cd --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/watermarkannotation/settext/_index.md @@ -0,0 +1,42 @@ +--- +title: Aspose::Pdf::Annotations::WatermarkAnnotation::SetText method +linktitle: SetText +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::WatermarkAnnotation::SetText method. Set text of the annotation in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/watermarkannotation/settext/ +--- +## WatermarkAnnotation::SetText method + + +Set text of the annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::WatermarkAnnotation::SetText(System::SharedPtr text) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| text | System::SharedPtr\ | [Text](../../../aspose.pdf.text/) value. | +## Remarks + + + + + + text + + + + Text value. + + + +## See Also + +* Class [FormattedText](../../../aspose.pdf.facades/formattedtext/) +* Class [WatermarkAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/watermarkannotation/settextandstate/_index.md b/english/cpp/aspose.pdf.annotations/watermarkannotation/settextandstate/_index.md new file mode 100644 index 0000000000..3eea89eac6 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/watermarkannotation/settextandstate/_index.md @@ -0,0 +1,52 @@ +--- +title: Aspose::Pdf::Annotations::WatermarkAnnotation::SetTextAndState method +linktitle: SetTextAndState +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::WatermarkAnnotation::SetTextAndState method. Set text of the annotation in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.annotations/watermarkannotation/settextandstate/ +--- +## WatermarkAnnotation::SetTextAndState method + + +Set text of the annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::WatermarkAnnotation::SetTextAndState(System::ArrayPtr text, System::SharedPtr textState) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| text | System::ArrayPtr\ | [Text](../../../aspose.pdf.text/) value. | +| textState | System::SharedPtr\ | [Text](../../../aspose.pdf.text/) state. | +## Remarks + + + + + + text + + + + Text value. + + + + + textState + + + + Text state. + + + +## See Also + +* Class [TextState](../../../aspose.pdf.text/textstate/) +* Class [WatermarkAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/watermarkannotation/watermarkannotation/_index.md b/english/cpp/aspose.pdf.annotations/watermarkannotation/watermarkannotation/_index.md new file mode 100644 index 0000000000..50b76cfe3c --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/watermarkannotation/watermarkannotation/_index.md @@ -0,0 +1,52 @@ +--- +title: Aspose::Pdf::Annotations::WatermarkAnnotation::WatermarkAnnotation constructor +linktitle: WatermarkAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::WatermarkAnnotation::WatermarkAnnotation constructor. Constructor for Watermark annotation class in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/watermarkannotation/watermarkannotation/ +--- +## WatermarkAnnotation::WatermarkAnnotation constructor + + +Constructor for [Watermark](../../../aspose.pdf/watermark/) annotation class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::WatermarkAnnotation::WatermarkAnnotation(System::SharedPtr page, System::SharedPtr rect) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | [Page](../../../aspose.pdf/page/) where annotation should be placed. | +| rect | System::SharedPtr\ | Position of the annotation. | +## Remarks + + + + + + page + + + + Page where annotation should be placed. + + + + + rect + + + Position of the annotation. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [WatermarkAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/widgetannotation/_index.md b/english/cpp/aspose.pdf.annotations/widgetannotation/_index.md new file mode 100644 index 0000000000..39fcbed184 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/widgetannotation/_index.md @@ -0,0 +1,102 @@ +--- +title: Aspose::Pdf::Annotations::WidgetAnnotation class +linktitle: WidgetAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::WidgetAnnotation class. Class representing widget annotation in C++.' +type: docs +weight: 11800 +url: /cpp/aspose.pdf.annotations/widgetannotation/ +--- +## WidgetAnnotation class + + +Class representing widget annotation. + +```cpp +class WidgetAnnotation : public Aspose::Pdf::Annotations::Annotation +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Accept](./accept/)(System::SharedPtr\) override | Accepts visitor. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| virtual [ChangeAfterResize](../annotation/changeafterresize/)(System::SharedPtr\) | Update parameters and appearance, according to the matrix transform. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [Flatten](../annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](./get_actions/)() const | Gets the annotation actions. | +| [get_Actions](../annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../annotation/get_alignment/)() | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [get_AnnotationType](./get_annotationtype/)() override | Gets type of annotation. | +| [get_Appearance](../annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../annotation/get_border/)() const | Gets annotation border characteristics. [Border](../border/) | +| [get_Characteristics](../annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../annotation/get_color/)() | Gets annotation color. | +| [get_Contents](../annotation/get_contents/)() | Gets annotation text. | +| [get_DefaultAppearance](./get_defaultappearance/)() | Gets default appearance of the field. | +| [get_Exportable](./get_exportable/)() | Gets exportable flag of the field. | +| [get_Flags](../annotation/get_flags/)() | Flags of the annotation. | +| [get_FullName](../annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../annotation/get_height/)() | Gets height of the annotation. | +| [get_Highlighting](./get_highlighting/)() | [Annotation](../annotation/) highlighting mode. | +| [get_HorizontalAlignment](../annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| [get_Modified](../annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Name](../annotation/get_name/)() | Gets annotation name on the page. | +| [get_OnActivated](./get_onactivated/)() | An action which shall be performed when the annotation is activated. | +| virtual [get_PageIndex](../annotation/get_pageindex/)() | Gets index of page which contains annotation. | +| [get_Parent](./get_parent/)() | Gets annotation parent. | +| [get_ReadOnly](./get_readonly/)() | Gets read only status of the field. | +| virtual [get_Rect](../annotation/get_rect/)() | Gets annotation rectangle. | +| [get_Required](./get_required/)() | Gets required status of the field. | +| [get_States](../annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_TextHorizontalAlignment](../annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| static [get_UpdateAppearanceOnConvert](../annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetCheckedStateName](./getcheckedstatename/)() | Returns name of "checked" state according to existing state names. | +| [GetRectangle](../annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| virtual [set_ActiveState](../annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../annotation/set_alignment/)(TextAlignment) | [Annotation](../annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_Border](../annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../border/) | +| [set_Color](../annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](../annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_DefaultAppearance](./set_defaultappearance/)(System::SharedPtr\) | Sets default appearance of the field. | +| [set_Exportable](./set_exportable/)(bool) | Sets exportable flag of the field. | +| [set_Flags](../annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| virtual [set_Height](../annotation/set_height/)(double) | Sets height of the annotation. | +| [set_Highlighting](./set_highlighting/)(HighlightingMode) | [Annotation](../annotation/) highlighting mode. | +| [set_HorizontalAlignment](../annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| [set_Modified](../annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Name](../annotation/set_name/)(System::String) | Sets annotation name on the page. | +| [set_OnActivated](./set_onactivated/)(System::SharedPtr\) | An action which shall be performed when the annotation is activated. | +| [set_ReadOnly](./set_readonly/)(bool) | Sets read only status of the field. | +| virtual [set_Rect](../annotation/set_rect/)(System::SharedPtr\) | Sets annotation rectangle. | +| [set_Required](./set_required/)(bool) | Sets required status of the field. | +| [set_TextHorizontalAlignment](../annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| static [set_UpdateAppearanceOnConvert](../annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [WidgetAnnotation](./widgetannotation/)(System::SharedPtr\) | Create annotation (used for Generator) | +## See Also + +* Class [Annotation](../annotation/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/widgetannotation/accept/_index.md b/english/cpp/aspose.pdf.annotations/widgetannotation/accept/_index.md new file mode 100644 index 0000000000..88944e0311 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/widgetannotation/accept/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Annotations::WidgetAnnotation::Accept method +linktitle: Accept +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::WidgetAnnotation::Accept method. Accepts visitor in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf.annotations/widgetannotation/accept/ +--- +## WidgetAnnotation::Accept method + + +Accepts visitor. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::WidgetAnnotation::Accept(System::SharedPtr visitor) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| visitor | System::SharedPtr\ | Visitor to be accepted. | +## Remarks + + + + + + visitor + + + Visitor to be accepted. + + + +## See Also + +* Class [AnnotationSelector](../../annotationselector/) +* Class [WidgetAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/widgetannotation/get_actions/_index.md b/english/cpp/aspose.pdf.annotations/widgetannotation/get_actions/_index.md new file mode 100644 index 0000000000..3db1f45636 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/widgetannotation/get_actions/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::WidgetAnnotation::get_Actions method +linktitle: get_Actions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::WidgetAnnotation::get_Actions method. Gets the annotation actions in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/widgetannotation/get_actions/ +--- +## WidgetAnnotation::get_Actions method + + +Gets the annotation actions. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::WidgetAnnotation::get_Actions() const +``` + +## See Also + +* Class [AnnotationActionCollection](../../annotationactioncollection/) +* Class [WidgetAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/widgetannotation/get_annotationtype/_index.md b/english/cpp/aspose.pdf.annotations/widgetannotation/get_annotationtype/_index.md new file mode 100644 index 0000000000..fe99550726 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/widgetannotation/get_annotationtype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::WidgetAnnotation::get_AnnotationType method +linktitle: get_AnnotationType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::WidgetAnnotation::get_AnnotationType method. Gets type of annotation in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.annotations/widgetannotation/get_annotationtype/ +--- +## WidgetAnnotation::get_AnnotationType method + + +Gets type of annotation. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::AnnotationType Aspose::Pdf::Annotations::WidgetAnnotation::get_AnnotationType() override +``` + +## See Also + +* Enum [AnnotationType](../../annotationtype/) +* Class [WidgetAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/widgetannotation/get_defaultappearance/_index.md b/english/cpp/aspose.pdf.annotations/widgetannotation/get_defaultappearance/_index.md new file mode 100644 index 0000000000..aa2c8fc5de --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/widgetannotation/get_defaultappearance/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::WidgetAnnotation::get_DefaultAppearance method +linktitle: get_DefaultAppearance +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::WidgetAnnotation::get_DefaultAppearance method. Gets default appearance of the field in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.annotations/widgetannotation/get_defaultappearance/ +--- +## WidgetAnnotation::get_DefaultAppearance method + + +Gets default appearance of the field. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::WidgetAnnotation::get_DefaultAppearance() +``` + +## See Also + +* Class [DefaultAppearance](../../defaultappearance/) +* Class [WidgetAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/widgetannotation/get_exportable/_index.md b/english/cpp/aspose.pdf.annotations/widgetannotation/get_exportable/_index.md new file mode 100644 index 0000000000..91658718cd --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/widgetannotation/get_exportable/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::WidgetAnnotation::get_Exportable method +linktitle: get_Exportable +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::WidgetAnnotation::get_Exportable method. Gets exportable flag of the field in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.annotations/widgetannotation/get_exportable/ +--- +## WidgetAnnotation::get_Exportable method + + +Gets exportable flag of the field. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Annotations::WidgetAnnotation::get_Exportable() +``` + +## See Also + +* Class [WidgetAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/widgetannotation/get_highlighting/_index.md b/english/cpp/aspose.pdf.annotations/widgetannotation/get_highlighting/_index.md new file mode 100644 index 0000000000..f4582d5252 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/widgetannotation/get_highlighting/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::WidgetAnnotation::get_Highlighting method +linktitle: get_Highlighting +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::WidgetAnnotation::get_Highlighting method. Annotation highlighting mode in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/widgetannotation/get_highlighting/ +--- +## WidgetAnnotation::get_Highlighting method + + +[Annotation](../../annotation/) highlighting mode. + +```cpp +ASPOSE_PDF_SHARED_API HighlightingMode Aspose::Pdf::Annotations::WidgetAnnotation::get_Highlighting() +``` + +## See Also + +* Enum [HighlightingMode](../../highlightingmode/) +* Class [WidgetAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/widgetannotation/get_onactivated/_index.md b/english/cpp/aspose.pdf.annotations/widgetannotation/get_onactivated/_index.md new file mode 100644 index 0000000000..40e375f507 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/widgetannotation/get_onactivated/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::WidgetAnnotation::get_OnActivated method +linktitle: get_OnActivated +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::WidgetAnnotation::get_OnActivated method. An action which shall be performed when the annotation is activated in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/widgetannotation/get_onactivated/ +--- +## WidgetAnnotation::get_OnActivated method + + +An action which shall be performed when the annotation is activated. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::WidgetAnnotation::get_OnActivated() +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [WidgetAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/widgetannotation/get_parent/_index.md b/english/cpp/aspose.pdf.annotations/widgetannotation/get_parent/_index.md new file mode 100644 index 0000000000..cf2d23f7b4 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/widgetannotation/get_parent/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::WidgetAnnotation::get_Parent method +linktitle: get_Parent +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::WidgetAnnotation::get_Parent method. Gets annotation parent in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/widgetannotation/get_parent/ +--- +## WidgetAnnotation::get_Parent method + + +Gets annotation parent. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::WidgetAnnotation::get_Parent() +``` + +## See Also + +* Class [Field](../../../aspose.pdf.forms/field/) +* Class [WidgetAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/widgetannotation/get_readonly/_index.md b/english/cpp/aspose.pdf.annotations/widgetannotation/get_readonly/_index.md new file mode 100644 index 0000000000..ece9bb1197 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/widgetannotation/get_readonly/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::WidgetAnnotation::get_ReadOnly method +linktitle: get_ReadOnly +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::WidgetAnnotation::get_ReadOnly method. Gets read only status of the field in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.annotations/widgetannotation/get_readonly/ +--- +## WidgetAnnotation::get_ReadOnly method + + +Gets read only status of the field. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Annotations::WidgetAnnotation::get_ReadOnly() +``` + +## See Also + +* Class [WidgetAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/widgetannotation/get_required/_index.md b/english/cpp/aspose.pdf.annotations/widgetannotation/get_required/_index.md new file mode 100644 index 0000000000..2527933d58 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/widgetannotation/get_required/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::WidgetAnnotation::get_Required method +linktitle: get_Required +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::WidgetAnnotation::get_Required method. Gets required status of the field in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.annotations/widgetannotation/get_required/ +--- +## WidgetAnnotation::get_Required method + + +Gets required status of the field. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Annotations::WidgetAnnotation::get_Required() +``` + +## See Also + +* Class [WidgetAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/widgetannotation/getcheckedstatename/_index.md b/english/cpp/aspose.pdf.annotations/widgetannotation/getcheckedstatename/_index.md new file mode 100644 index 0000000000..ad27f3f712 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/widgetannotation/getcheckedstatename/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::WidgetAnnotation::GetCheckedStateName method +linktitle: GetCheckedStateName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::WidgetAnnotation::GetCheckedStateName method. Returns name of "checked" state according to existing state names in C++.' +type: docs +weight: 1800 +url: /cpp/aspose.pdf.annotations/widgetannotation/getcheckedstatename/ +--- +## WidgetAnnotation::GetCheckedStateName method + + +Returns name of "checked" state according to existing state names. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::WidgetAnnotation::GetCheckedStateName() +``` + + +### ReturnValue + +The name of the "checked" state for this annotation. + +## See Also + +* Class [WidgetAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/widgetannotation/set_defaultappearance/_index.md b/english/cpp/aspose.pdf.annotations/widgetannotation/set_defaultappearance/_index.md new file mode 100644 index 0000000000..8988d0b438 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/widgetannotation/set_defaultappearance/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::WidgetAnnotation::set_DefaultAppearance method +linktitle: set_DefaultAppearance +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::WidgetAnnotation::set_DefaultAppearance method. Sets default appearance of the field in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.annotations/widgetannotation/set_defaultappearance/ +--- +## WidgetAnnotation::set_DefaultAppearance method + + +Sets default appearance of the field. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::WidgetAnnotation::set_DefaultAppearance(System::SharedPtr value) +``` + +## See Also + +* Class [DefaultAppearance](../../defaultappearance/) +* Class [WidgetAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/widgetannotation/set_exportable/_index.md b/english/cpp/aspose.pdf.annotations/widgetannotation/set_exportable/_index.md new file mode 100644 index 0000000000..b50c1bcba2 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/widgetannotation/set_exportable/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::WidgetAnnotation::set_Exportable method +linktitle: set_Exportable +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::WidgetAnnotation::set_Exportable method. Sets exportable flag of the field in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.annotations/widgetannotation/set_exportable/ +--- +## WidgetAnnotation::set_Exportable method + + +Sets exportable flag of the field. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::WidgetAnnotation::set_Exportable(bool value) +``` + +## See Also + +* Class [WidgetAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/widgetannotation/set_highlighting/_index.md b/english/cpp/aspose.pdf.annotations/widgetannotation/set_highlighting/_index.md new file mode 100644 index 0000000000..4a28bcfdc1 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/widgetannotation/set_highlighting/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::WidgetAnnotation::set_Highlighting method +linktitle: set_Highlighting +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::WidgetAnnotation::set_Highlighting method. Annotation highlighting mode in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/widgetannotation/set_highlighting/ +--- +## WidgetAnnotation::set_Highlighting method + + +[Annotation](../../annotation/) highlighting mode. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::WidgetAnnotation::set_Highlighting(HighlightingMode value) +``` + +## See Also + +* Enum [HighlightingMode](../../highlightingmode/) +* Class [WidgetAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/widgetannotation/set_onactivated/_index.md b/english/cpp/aspose.pdf.annotations/widgetannotation/set_onactivated/_index.md new file mode 100644 index 0000000000..2c28a297c3 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/widgetannotation/set_onactivated/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Annotations::WidgetAnnotation::set_OnActivated method +linktitle: set_OnActivated +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::WidgetAnnotation::set_OnActivated method. An action which shall be performed when the annotation is activated in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/widgetannotation/set_onactivated/ +--- +## WidgetAnnotation::set_OnActivated method + + +An action which shall be performed when the annotation is activated. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::WidgetAnnotation::set_OnActivated(System::SharedPtr value) +``` + +## See Also + +* Class [PdfAction](../../pdfaction/) +* Class [WidgetAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/widgetannotation/set_readonly/_index.md b/english/cpp/aspose.pdf.annotations/widgetannotation/set_readonly/_index.md new file mode 100644 index 0000000000..94634042aa --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/widgetannotation/set_readonly/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::WidgetAnnotation::set_ReadOnly method +linktitle: set_ReadOnly +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::WidgetAnnotation::set_ReadOnly method. Sets read only status of the field in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.annotations/widgetannotation/set_readonly/ +--- +## WidgetAnnotation::set_ReadOnly method + + +Sets read only status of the field. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::WidgetAnnotation::set_ReadOnly(bool value) +``` + +## See Also + +* Class [WidgetAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/widgetannotation/set_required/_index.md b/english/cpp/aspose.pdf.annotations/widgetannotation/set_required/_index.md new file mode 100644 index 0000000000..97e937b206 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/widgetannotation/set_required/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::WidgetAnnotation::set_Required method +linktitle: set_Required +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::WidgetAnnotation::set_Required method. Sets required status of the field in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.annotations/widgetannotation/set_required/ +--- +## WidgetAnnotation::set_Required method + + +Sets required status of the field. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::WidgetAnnotation::set_Required(bool value) +``` + +## See Also + +* Class [WidgetAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/widgetannotation/widgetannotation/_index.md b/english/cpp/aspose.pdf.annotations/widgetannotation/widgetannotation/_index.md new file mode 100644 index 0000000000..f174676e2e --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/widgetannotation/widgetannotation/_index.md @@ -0,0 +1,42 @@ +--- +title: Aspose::Pdf::Annotations::WidgetAnnotation::WidgetAnnotation constructor +linktitle: WidgetAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::WidgetAnnotation::WidgetAnnotation constructor. Create annotation (used for Generator) in C++.' +type: docs +weight: 1700 +url: /cpp/aspose.pdf.annotations/widgetannotation/widgetannotation/ +--- +## WidgetAnnotation::WidgetAnnotation constructor + + +Create annotation (used for Generator) + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::WidgetAnnotation::WidgetAnnotation(System::SharedPtr doc) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| doc | System::SharedPtr\ | [Document](../../../aspose.pdf/document/) where annotation will be created. | +## Remarks + + + + + + doc + + + + Document where annotation will be created. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [WidgetAnnotation](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/xfdfreader/_index.md b/english/cpp/aspose.pdf.annotations/xfdfreader/_index.md new file mode 100644 index 0000000000..38637cb995 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/xfdfreader/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Annotations::XfdfReader class +linktitle: XfdfReader +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::XfdfReader class. Class which peroformes reading of XFDF format in C++.' +type: docs +weight: 11900 +url: /cpp/aspose.pdf.annotations/xfdfreader/ +--- +## XfdfReader class + + +Class which peroformes reading of XFDF format. + +```cpp +class XfdfReader : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [GetElements](./getelements/)(System::SharedPtr\) | Parses XFDF file and returns information as hashtable. | +| static [ReadAnnotations](./readannotations/)(System::SharedPtr\, System::SharedPtr\) | Import annotations from XFDF file and put them into document. | +| static [ReadFields](./readfields/)(System::SharedPtr\, System::SharedPtr\) | Import field values from XFDF file. | +## See Also + +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/xfdfreader/getelements/_index.md b/english/cpp/aspose.pdf.annotations/xfdfreader/getelements/_index.md new file mode 100644 index 0000000000..25e889636d --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/xfdfreader/getelements/_index.md @@ -0,0 +1,44 @@ +--- +title: Aspose::Pdf::Annotations::XfdfReader::GetElements method +linktitle: GetElements +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::XfdfReader::GetElements method. Parses XFDF file and returns information as hashtable in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/xfdfreader/getelements/ +--- +## XfdfReader::GetElements method + + +Parses XFDF file and returns information as hashtable. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr> Aspose::Pdf::Annotations::XfdfReader::GetElements(System::SharedPtr reader) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| reader | System::SharedPtr\ | XmlReader for the source file. | + +### ReturnValue + +Hashtable with information parsed from XFDF file. +## Remarks + + + + + + reader + + + XmlReader for the source file. + + + +## See Also + +* Class [XfdfReader](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/xfdfreader/readannotations/_index.md b/english/cpp/aspose.pdf.annotations/xfdfreader/readannotations/_index.md new file mode 100644 index 0000000000..57deedada8 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/xfdfreader/readannotations/_index.md @@ -0,0 +1,51 @@ +--- +title: Aspose::Pdf::Annotations::XfdfReader::ReadAnnotations method +linktitle: ReadAnnotations +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::XfdfReader::ReadAnnotations method. Import annotations from XFDF file and put them into document in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/xfdfreader/readannotations/ +--- +## XfdfReader::ReadAnnotations method + + +Import annotations from XFDF file and put them into document. + +```cpp +static ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::XfdfReader::ReadAnnotations(System::SharedPtr stream, System::SharedPtr document) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| stream | System::SharedPtr\ | Source stream containing XFDF file. | +| document | System::SharedPtr\ | [Document](../../../aspose.pdf/document/) where annotations will be added. | +## Remarks + + + + + + stream + + + Source stream containing XFDF file. + + + + + document + + + + Document where annotations will be added. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [XfdfReader](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/xfdfreader/readfields/_index.md b/english/cpp/aspose.pdf.annotations/xfdfreader/readfields/_index.md new file mode 100644 index 0000000000..a6657fb406 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/xfdfreader/readfields/_index.md @@ -0,0 +1,51 @@ +--- +title: Aspose::Pdf::Annotations::XfdfReader::ReadFields method +linktitle: ReadFields +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::XfdfReader::ReadFields method. Import field values from XFDF file in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/xfdfreader/readfields/ +--- +## XfdfReader::ReadFields method + + +Import field values from XFDF file. + +```cpp +static ASPOSE_PDF_SHARED_API void Aspose::Pdf::Annotations::XfdfReader::ReadFields(System::SharedPtr stream, System::SharedPtr document) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| stream | System::SharedPtr\ | Stream containing XFDF data. | +| document | System::SharedPtr\ | [Document](../../../aspose.pdf/document/) where fields data will be imported. | +## Remarks + + + + + + stream + + + Stream containing XFDF data. + + + + + document + + + + Document where fields data will be imported. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [XfdfReader](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/xyzexplicitdestination/_index.md b/english/cpp/aspose.pdf.annotations/xyzexplicitdestination/_index.md new file mode 100644 index 0000000000..1877a8993f --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/xyzexplicitdestination/_index.md @@ -0,0 +1,42 @@ +--- +title: Aspose::Pdf::Annotations::XYZExplicitDestination class +linktitle: XYZExplicitDestination +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::XYZExplicitDestination class. Represents explicit destination that displays the page with the coordinates (left, top) positioned at the upper-left corner of the window and the contents of the page magnified by the factor zoom. A null value for any of the parameters left, top, or zoom specifies that the current value of that parameter is to be retained unchanged. A zoom value of 0 has the same meaning as a null value in C++.' +type: docs +weight: 12000 +url: /cpp/aspose.pdf.annotations/xyzexplicitdestination/ +--- +## XYZExplicitDestination class + + +Represents explicit destination that displays the page with the coordinates (left, top) positioned at the upper-left corner of the window and the contents of the page magnified by the factor zoom. A null value for any of the parameters left, top, or zoom specifies that the current value of that parameter is to be retained unchanged. A zoom value of 0 has the same meaning as a null value. + +```cpp +class XYZExplicitDestination : public Aspose::Pdf::Annotations::ExplicitDestination +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [CreateDestination](./createdestination/)(System::SharedPtr\, double, double, double, bool) | Create destintion to specified location of the page considering page rotation if required. | +| static [CreateDestination](../explicitdestination/createdestination/)(System::SharedPtr\, ExplicitDestinationType, const System::ArrayPtr\\&) | Creates instances of [ExplicitDestination](../explicitdestination/) descendant classes. | +| static [CreateDestination](../explicitdestination/createdestination/)(System::SharedPtr\, int32_t, ExplicitDestinationType, const System::ArrayPtr\\&) | Creates instances of [ExplicitDestination](../explicitdestination/) descendant classes. | +| static [CreateDestination](../explicitdestination/createdestination/)(int32_t, ExplicitDestinationType, const System::ArrayPtr\\&) | Creates instances of [ExplicitDestination](../explicitdestination/) descendant classes. | +| static [CreateDestinationToUpperLeftCorner](./createdestinationtoupperleftcorner/)(System::SharedPtr\, double) | Create destionation to upper left corner of the specifed page. | +| static [CreateDestinationToUpperLeftCorner](./createdestinationtoupperleftcorner/)(System::SharedPtr\) | Create destination to specified page. | +| [get_Left](./get_left/)() | Gets left horizontal coordinate of the upper-left corner of the window. | +| [get_Page](../explicitdestination/get_page/)() const | Gets the destination page object. | +| [get_PageNumber](../explicitdestination/get_pagenumber/)() const | Gets the destination page number. | +| [get_Top](./get_top/)() | Gets top vertical coordinate of the upper-left corner of the window. | +| [get_Zoom](./get_zoom/)() | Gets zoom factor. | +| [ToString](./tostring/)() const override | Converts the object state into string value. Example: "1 XYZ 100 200 3". | +| [XYZExplicitDestination](./xyzexplicitdestination/)(System::SharedPtr\, double, double, double) | Creates local explicit destination. | +| [XYZExplicitDestination](./xyzexplicitdestination/)(System::SharedPtr\, int32_t, double, double, double) | Creates remote explicit destination. | +| [XYZExplicitDestination](./xyzexplicitdestination/)(int32_t, double, double, double) | Creates remote explicit destination. | +## See Also + +* Class [ExplicitDestination](../explicitdestination/) +* Namespace [Aspose::Pdf::Annotations](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.annotations/xyzexplicitdestination/createdestination/_index.md b/english/cpp/aspose.pdf.annotations/xyzexplicitdestination/createdestination/_index.md new file mode 100644 index 0000000000..9358f69d3b --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/xyzexplicitdestination/createdestination/_index.md @@ -0,0 +1,82 @@ +--- +title: Aspose::Pdf::Annotations::XYZExplicitDestination::CreateDestination method +linktitle: CreateDestination +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::XYZExplicitDestination::CreateDestination method. Create destintion to specified location of the page considering page rotation if required in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.annotations/xyzexplicitdestination/createdestination/ +--- +## XYZExplicitDestination::CreateDestination method + + +Create destintion to specified location of the page considering page rotation if required. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::XYZExplicitDestination::CreateDestination(System::SharedPtr page, double left, double top, double zoom, bool considerRotation) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | Destination page. | +| left | double | Left position on the page. | +| top | double | Top position on the page. | +| zoom | double | Zoom factor (0 for default). | +| considerRotation | bool | If true position will be recalculated according to page rotation. | + +### ReturnValue + +Destination object. +## Remarks + + + + + + page + + + Destination page. + + + + + left + + + Left position on the page. + + + + + top + + + Top position on the page. + + + + + zoom + + + Zoom factor (0 for default). + + + + + considerRotation + + + If true position will be recalculated according to page rotation. + + + +## See Also + +* Class [XYZExplicitDestination](../) +* Class [Page](../../../aspose.pdf/page/) +* Class [XYZExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/xyzexplicitdestination/createdestinationtoupperleftcorner/_index.md b/english/cpp/aspose.pdf.annotations/xyzexplicitdestination/createdestinationtoupperleftcorner/_index.md new file mode 100644 index 0000000000..fb12af8048 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/xyzexplicitdestination/createdestinationtoupperleftcorner/_index.md @@ -0,0 +1,92 @@ +--- +title: Aspose::Pdf::Annotations::XYZExplicitDestination::CreateDestinationToUpperLeftCorner method +linktitle: CreateDestinationToUpperLeftCorner +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::XYZExplicitDestination::CreateDestinationToUpperLeftCorner method. Create destionation to upper left corner of the specifed page in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.annotations/xyzexplicitdestination/createdestinationtoupperleftcorner/ +--- +## XYZExplicitDestination::CreateDestinationToUpperLeftCorner(System::SharedPtr\, double) method + + +Create destionation to upper left corner of the specifed page. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::XYZExplicitDestination::CreateDestinationToUpperLeftCorner(System::SharedPtr page, double zoom) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | Destination page. | +| zoom | double | Zoom factor. | + +### ReturnValue + +Destination object. +## Remarks + + + + + + page + + + Destination page. + + + + + zoom + + + Zoom factor. + + + +## See Also + +* Class [XYZExplicitDestination](../) +* Class [Page](../../../aspose.pdf/page/) +* Class [XYZExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## XYZExplicitDestination::CreateDestinationToUpperLeftCorner(System::SharedPtr\) method + + +Create destination to specified page. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Annotations::XYZExplicitDestination::CreateDestinationToUpperLeftCorner(System::SharedPtr page) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | Destination page. | + +### ReturnValue + +Destination object. +## Remarks + + + + + + page + + + Destination page. + + + +## See Also + +* Class [XYZExplicitDestination](../) +* Class [Page](../../../aspose.pdf/page/) +* Class [XYZExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/xyzexplicitdestination/get_left/_index.md b/english/cpp/aspose.pdf.annotations/xyzexplicitdestination/get_left/_index.md new file mode 100644 index 0000000000..16975b58b3 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/xyzexplicitdestination/get_left/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::XYZExplicitDestination::get_Left method +linktitle: get_Left +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::XYZExplicitDestination::get_Left method. Gets left horizontal coordinate of the upper-left corner of the window in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.annotations/xyzexplicitdestination/get_left/ +--- +## XYZExplicitDestination::get_Left method + + +Gets left horizontal coordinate of the upper-left corner of the window. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Annotations::XYZExplicitDestination::get_Left() +``` + +## See Also + +* Class [XYZExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/xyzexplicitdestination/get_top/_index.md b/english/cpp/aspose.pdf.annotations/xyzexplicitdestination/get_top/_index.md new file mode 100644 index 0000000000..5b29f8b06c --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/xyzexplicitdestination/get_top/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::XYZExplicitDestination::get_Top method +linktitle: get_Top +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::XYZExplicitDestination::get_Top method. Gets top vertical coordinate of the upper-left corner of the window in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.annotations/xyzexplicitdestination/get_top/ +--- +## XYZExplicitDestination::get_Top method + + +Gets top vertical coordinate of the upper-left corner of the window. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Annotations::XYZExplicitDestination::get_Top() +``` + +## See Also + +* Class [XYZExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/xyzexplicitdestination/get_zoom/_index.md b/english/cpp/aspose.pdf.annotations/xyzexplicitdestination/get_zoom/_index.md new file mode 100644 index 0000000000..a47d14b952 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/xyzexplicitdestination/get_zoom/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Annotations::XYZExplicitDestination::get_Zoom method +linktitle: get_Zoom +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::XYZExplicitDestination::get_Zoom method. Gets zoom factor in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.annotations/xyzexplicitdestination/get_zoom/ +--- +## XYZExplicitDestination::get_Zoom method + + +Gets zoom factor. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Annotations::XYZExplicitDestination::get_Zoom() +``` + +## See Also + +* Class [XYZExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/xyzexplicitdestination/tostring/_index.md b/english/cpp/aspose.pdf.annotations/xyzexplicitdestination/tostring/_index.md new file mode 100644 index 0000000000..c170ec09d9 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/xyzexplicitdestination/tostring/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Annotations::XYZExplicitDestination::ToString method +linktitle: ToString +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::XYZExplicitDestination::ToString method. Converts the object state into string value. Example: "1 XYZ 100 200 3" in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.annotations/xyzexplicitdestination/tostring/ +--- +## XYZExplicitDestination::ToString method + + +Converts the object state into string value. Example: "1 XYZ 100 200 3". + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Annotations::XYZExplicitDestination::ToString() const override +``` + + +### ReturnValue + +String value representing object state. + +## See Also + +* Class [XYZExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.annotations/xyzexplicitdestination/xyzexplicitdestination/_index.md b/english/cpp/aspose.pdf.annotations/xyzexplicitdestination/xyzexplicitdestination/_index.md new file mode 100644 index 0000000000..ed73c60c72 --- /dev/null +++ b/english/cpp/aspose.pdf.annotations/xyzexplicitdestination/xyzexplicitdestination/_index.md @@ -0,0 +1,199 @@ +--- +title: Aspose::Pdf::Annotations::XYZExplicitDestination::XYZExplicitDestination constructor +linktitle: XYZExplicitDestination +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Annotations::XYZExplicitDestination::XYZExplicitDestination constructor. Creates local explicit destination in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.annotations/xyzexplicitdestination/xyzexplicitdestination/ +--- +## XYZExplicitDestination::XYZExplicitDestination(System::SharedPtr\, double, double, double) constructor + + +Creates local explicit destination. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::XYZExplicitDestination::XYZExplicitDestination(System::SharedPtr page, double left, double top, double zoom) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The destination page object. | +| left | double | Left horizontal coordinate of the upper-left corner of the window. | +| top | double | Top vertical coordinate of the upper-left corner of the window. | +| zoom | double | Zoom factor. | +## Remarks + + + + + + page + + + The destination page object. + + + + + left + + + Left horizontal coordinate of the upper-left corner of the window. + + + + + top + + + Top vertical coordinate of the upper-left corner of the window. + + + + + zoom + + + Zoom factor. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [XYZExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## XYZExplicitDestination::XYZExplicitDestination(System::SharedPtr\, int32_t, double, double, double) constructor + + +Creates remote explicit destination. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::XYZExplicitDestination::XYZExplicitDestination(System::SharedPtr document, int32_t pageNumber, double left, double top, double zoom) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | The parent document that contains this object. | +| pageNumber | int32_t | The destination page number of remote document. | +| left | double | Left horizontal coordinate of the upper-left corner of the window. | +| top | double | Top vertical coordinate of the upper-left corner of the window. | +| zoom | double | Zoom factor. | +## Remarks + + + + Deprecated + + Use constructor without Document argument. + + + + + document + + + The parent document that contains this object. + + + + + pageNumber + + + The destination page number of remote document. + + + + + left + + + Left horizontal coordinate of the upper-left corner of the window. + + + + + top + + + Top vertical coordinate of the upper-left corner of the window. + + + + + zoom + + + Zoom factor. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [XYZExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) +## XYZExplicitDestination::XYZExplicitDestination(int32_t, double, double, double) constructor + + +Creates remote explicit destination. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::XYZExplicitDestination::XYZExplicitDestination(int32_t pageNumber, double left, double top, double zoom) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageNumber | int32_t | The destination page number of remote document. | +| left | double | Left horizontal coordinate of the upper-left corner of the window. | +| top | double | Top vertical coordinate of the upper-left corner of the window. | +| zoom | double | Zoom factor. | +## Remarks + + + + + + pageNumber + + + The destination page number of remote document. + + + + + left + + + Left horizontal coordinate of the upper-left corner of the window. + + + + + top + + + Top vertical coordinate of the upper-left corner of the window. + + + + + zoom + + + Zoom factor. + + + +## See Also + +* Class [XYZExplicitDestination](../) +* Namespace [Aspose::Pdf::Annotations](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.collections/_index.md b/english/cpp/aspose.pdf.collections/_index.md new file mode 100644 index 0000000000..e19cea5f9b --- /dev/null +++ b/english/cpp/aspose.pdf.collections/_index.md @@ -0,0 +1,17 @@ +--- +title: Aspose::Pdf::Collections namespace +linktitle: Aspose::Pdf::Collections +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Collections namespace in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.collections/ +--- + + + +## Classes + +| Class | Description | +| --- | --- | +| [AsposeHashDictionary](./asposehashdictionary/) | | diff --git a/english/cpp/aspose.pdf.collections/asposehashdictionary/_index.md b/english/cpp/aspose.pdf.collections/asposehashdictionary/_index.md new file mode 100644 index 0000000000..fae6ae1ea1 --- /dev/null +++ b/english/cpp/aspose.pdf.collections/asposehashdictionary/_index.md @@ -0,0 +1,22 @@ +--- +title: Aspose::Pdf::Collections::AsposeHashDictionary class +linktitle: AsposeHashDictionary +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Collections::AsposeHashDictionary class in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.collections/asposehashdictionary/ +--- +## AsposeHashDictionary class + + + + +```cpp +templateclass AsposeHashDictionary +``` + +## See Also + +* Namespace [Aspose::Pdf::Collections](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.comparison.diff/_index.md b/english/cpp/aspose.pdf.comparison.diff/_index.md new file mode 100644 index 0000000000..c87595c661 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.diff/_index.md @@ -0,0 +1,22 @@ +--- +title: Aspose::Pdf::Comparison::Diff namespace +linktitle: Aspose::Pdf::Comparison::Diff +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Comparison::Diff namespace in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.comparison.diff/ +--- + + + +## Classes + +| Class | Description | +| --- | --- | +| [DiffOperation](./diffoperation/) | Represents a class of diff operation. | +## Enums + +| Enum | Description | +| --- | --- | +| [Operation](./operation/) | Represents a difference operation type. | diff --git a/english/cpp/aspose.pdf.comparison.diff/diffoperation/_index.md b/english/cpp/aspose.pdf.comparison.diff/diffoperation/_index.md new file mode 100644 index 0000000000..77bb83728a --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.diff/diffoperation/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Comparison::Diff::DiffOperation class +linktitle: DiffOperation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::Diff::DiffOperation class. Represents a class of diff operation in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.comparison.diff/diffoperation/ +--- +## DiffOperation class + + +Represents a class of diff operation. + +```cpp +class DiffOperation : public System::IEquatable> +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Equals](./equals/)(System::SharedPtr\) override | | +| [Equals](./equals/)(System::SharedPtr\) override | | +| [get_Operation](./get_operation/)() const | Gets and sets operation type. | +| [get_Text](./get_text/)() const | Get and set operation text. | +| [GetHashCode](./gethashcode/)() const override | Analog of C# Object.GetHashCode() method. Enables hashing of custom objects. | +| [ToString](./tostring/)() const override | Analog of C# Object.ToString() method. Enables converting custom objects to string. | +## See Also + +* Namespace [Aspose::Pdf::Comparison::Diff](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.comparison.diff/diffoperation/equals/_index.md b/english/cpp/aspose.pdf.comparison.diff/diffoperation/equals/_index.md new file mode 100644 index 0000000000..c517939b72 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.diff/diffoperation/equals/_index.md @@ -0,0 +1,38 @@ +--- +title: Aspose::Pdf::Comparison::Diff::DiffOperation::Equals method +linktitle: Equals +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Equals method of Aspose::Pdf::Comparison::Diff::DiffOperation class in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.comparison.diff/diffoperation/equals/ +--- +## DiffOperation::Equals(System::SharedPtr\) method + + + + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Comparison::Diff::DiffOperation::Equals(System::SharedPtr other) override +``` + +## See Also + +* Class [DiffOperation](../) +* Namespace [Aspose::Pdf::Comparison::Diff](../../) +* Library [Aspose.PDF for C++](../../../) +## DiffOperation::Equals(System::SharedPtr\) method + + + + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Comparison::Diff::DiffOperation::Equals(System::SharedPtr op) override +``` + +## See Also + +* Class [DiffOperation](../) +* Class [DiffOperation](../) +* Namespace [Aspose::Pdf::Comparison::Diff](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.diff/diffoperation/get_operation/_index.md b/english/cpp/aspose.pdf.comparison.diff/diffoperation/get_operation/_index.md new file mode 100644 index 0000000000..b8bebf718b --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.diff/diffoperation/get_operation/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Comparison::Diff::DiffOperation::get_Operation method +linktitle: get_Operation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::Diff::DiffOperation::get_Operation method. Gets and sets operation type in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.comparison.diff/diffoperation/get_operation/ +--- +## DiffOperation::get_Operation method + + +Gets and sets operation type. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Comparison::Diff::Operation Aspose::Pdf::Comparison::Diff::DiffOperation::get_Operation() const +``` + +## See Also + +* Enum [Operation](../../operation/) +* Class [DiffOperation](../) +* Namespace [Aspose::Pdf::Comparison::Diff](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.diff/diffoperation/get_text/_index.md b/english/cpp/aspose.pdf.comparison.diff/diffoperation/get_text/_index.md new file mode 100644 index 0000000000..6a37593b54 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.diff/diffoperation/get_text/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Comparison::Diff::DiffOperation::get_Text method +linktitle: get_Text +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::Diff::DiffOperation::get_Text method. Get and set operation text in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.comparison.diff/diffoperation/get_text/ +--- +## DiffOperation::get_Text method + + +Get and set operation text. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Comparison::Diff::DiffOperation::get_Text() const +``` + +## See Also + +* Class [DiffOperation](../) +* Namespace [Aspose::Pdf::Comparison::Diff](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.diff/diffoperation/gethashcode/_index.md b/english/cpp/aspose.pdf.comparison.diff/diffoperation/gethashcode/_index.md new file mode 100644 index 0000000000..5f97a93bb4 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.diff/diffoperation/gethashcode/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Comparison::Diff::DiffOperation::GetHashCode method +linktitle: GetHashCode +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::Diff::DiffOperation::GetHashCode method. Analog of C# Object.GetHashCode() method. Enables hashing of custom objects in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.comparison.diff/diffoperation/gethashcode/ +--- +## DiffOperation::GetHashCode method + + +Analog of C# Object.GetHashCode() method. Enables hashing of custom objects. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Comparison::Diff::DiffOperation::GetHashCode() const override +``` + + +### ReturnValue + +Hash code value as calculated by corresponding class. + +## See Also + +* Class [DiffOperation](../) +* Namespace [Aspose::Pdf::Comparison::Diff](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.diff/diffoperation/tostring/_index.md b/english/cpp/aspose.pdf.comparison.diff/diffoperation/tostring/_index.md new file mode 100644 index 0000000000..7f232112dc --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.diff/diffoperation/tostring/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Comparison::Diff::DiffOperation::ToString method +linktitle: ToString +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::Diff::DiffOperation::ToString method. Analog of C# Object.ToString() method. Enables converting custom objects to string in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.comparison.diff/diffoperation/tostring/ +--- +## DiffOperation::ToString method + + +Analog of C# Object.ToString() method. Enables converting custom objects to string. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Comparison::Diff::DiffOperation::ToString() const override +``` + + +### ReturnValue + +String representation as provided by final class. + +## See Also + +* Class [DiffOperation](../) +* Namespace [Aspose::Pdf::Comparison::Diff](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.diff/operation/_index.md b/english/cpp/aspose.pdf.comparison.diff/operation/_index.md new file mode 100644 index 0000000000..b44864c950 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.diff/operation/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Comparison::Diff::Operation enum +linktitle: Operation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::Diff::Operation enum. Represents a difference operation type in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.comparison.diff/operation/ +--- +## Operation enum + + +Represents a difference operation type. + +```cpp +enum class Operation +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Equal | 0 | The equal operation. | +| Delete | 1 | The delete operation. | +| Insert | 2 | The insert operation. | + +## See Also + +* Namespace [Aspose::Pdf::Comparison::Diff](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.comparison.graphicalcomparison/_index.md b/english/cpp/aspose.pdf.comparison.graphicalcomparison/_index.md new file mode 100644 index 0000000000..a661ef2af1 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.graphicalcomparison/_index.md @@ -0,0 +1,18 @@ +--- +title: Aspose::Pdf::Comparison::GraphicalComparison namespace +linktitle: Aspose::Pdf::Comparison::GraphicalComparison +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Comparison::GraphicalComparison namespace in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.comparison.graphicalcomparison/ +--- + + + +## Classes + +| Class | Description | +| --- | --- | +| [GraphicalPdfComparer](./graphicalpdfcomparer/) | Represents a class for graphically comparing PDF documents. Should be used to search for small changes, mainly of a graphical nature. To compare text content changes, use other PDF comparison classes. | +| [ImagesDifference](./imagesdifference/) | Represents the result class of comparing two PDF pages. | diff --git a/english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/_index.md b/english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/_index.md new file mode 100644 index 0000000000..15d2f34153 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/_index.md @@ -0,0 +1,39 @@ +--- +title: Aspose::Pdf::Comparison::GraphicalComparison::GraphicalPdfComparer class +linktitle: GraphicalPdfComparer +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::GraphicalComparison::GraphicalPdfComparer class. Represents a class for graphically comparing PDF documents. Should be used to search for small changes, mainly of a graphical nature. To compare text content changes, use other PDF comparison classes in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/ +--- +## GraphicalPdfComparer class + + +Represents a class for graphically comparing PDF documents. Should be used to search for small changes, mainly of a graphical nature. To compare text content changes, use other PDF comparison classes. + +```cpp +class GraphicalPdfComparer : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [CompareDocumentsToImages](./comparedocumentstoimages/)(System::SharedPtr\, System::SharedPtr\, System::String, System::String, System::SharedPtr\) | Compares documents graphically. The comparison result is placed in images. | +| [CompareDocumentsToPdf](./comparedocumentstopdf/)(System::SharedPtr\, System::SharedPtr\, System::String) | Compares documents graphically. The comparison result is placed in a PDF document. | +| [ComparePagesToImage](./comparepagestoimage/)(System::SharedPtr\, System::SharedPtr\, System::String) | Compares pages graphically. The comparison result is placed in a image. | +| [ComparePagesToPdf](./comparepagestopdf/)(System::SharedPtr\, System::SharedPtr\, System::String) | Compares pages graphically. The comparison result is placed in a PDF document. | +| [ComparePagesToPdf](./comparepagestopdf/)(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) | Compares pages graphically. The comparison result is placed in a PDF document. | +| [get_Color](./get_color/)() const | Gets and sets the change flag color. The default color is red. | +| [get_Resolution](./get_resolution/)() const | Gets and sets the resolution of the resulting images. The default value is 150dpi. | +| [get_Threshold](./get_threshold/)() const | Gets and sets the threshold value in percentage. This value allows you to ignore small changes if they are not significant to you. The default value is 0%. | +| [GetDifference](./getdifference/)(System::SharedPtr\, System::SharedPtr\) | Gets differences between pages images. The result contains an image of the first page compared and an array of differences. | +| [GraphicalPdfComparer](./graphicalpdfcomparer/)() | Creates an instance of [GraphicalPdfComparer](./) class. | +| [set_Color](./set_color/)(System::SharedPtr\) | Gets and sets the change flag color. The default color is red. | +| [set_Resolution](./set_resolution/)(System::SharedPtr\) | Gets and sets the resolution of the resulting images. The default value is 150dpi. | +| [set_Threshold](./set_threshold/)(double) | Gets and sets the threshold value in percentage. This value allows you to ignore small changes if they are not significant to you. The default value is 0%. | +## See Also + +* Namespace [Aspose::Pdf::Comparison::GraphicalComparison](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/comparedocumentstoimages/_index.md b/english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/comparedocumentstoimages/_index.md new file mode 100644 index 0000000000..c10c195a16 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/comparedocumentstoimages/_index.md @@ -0,0 +1,86 @@ +--- +title: Aspose::Pdf::Comparison::GraphicalComparison::GraphicalPdfComparer::CompareDocumentsToImages method +linktitle: CompareDocumentsToImages +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::GraphicalComparison::GraphicalPdfComparer::CompareDocumentsToImages method. Compares documents graphically. The comparison result is placed in images in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/comparedocumentstoimages/ +--- +## GraphicalPdfComparer::CompareDocumentsToImages method + + +Compares documents graphically. The comparison result is placed in images. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Comparison::GraphicalComparison::GraphicalPdfComparer::CompareDocumentsToImages(System::SharedPtr document1, System::SharedPtr document2, System::String targetDirectory, System::String fileNamePrefix, System::SharedPtr imageFormat) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document1 | System::SharedPtr\ | The first document to compare. | +| document2 | System::SharedPtr\ | The second document to compare. | +| targetDirectory | System::String | The directory to save a comparison results. | +| fileNamePrefix | System::String | The images name prefix. | +| imageFormat | System::SharedPtr\ | The image format to save. | +## Remarks + + + + + + document1 + + + The first document to compare. + + + + + document2 + + + The second document to compare. + + + + + targetDirectory + + + The directory to save a comparison results. + + + + + fileNamePrefix + + + The images name prefix. + + + + + imageFormat + + + The image format to save. + + + + + + ArgumentException + + + If the pages being compared are of different sizes. If targetDirectory is null or empty string. If fileNamePrefix is null or empty string. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [GraphicalPdfComparer](../) +* Namespace [Aspose::Pdf::Comparison::GraphicalComparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/comparedocumentstopdf/_index.md b/english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/comparedocumentstopdf/_index.md new file mode 100644 index 0000000000..75ba343d1e --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/comparedocumentstopdf/_index.md @@ -0,0 +1,68 @@ +--- +title: Aspose::Pdf::Comparison::GraphicalComparison::GraphicalPdfComparer::CompareDocumentsToPdf method +linktitle: CompareDocumentsToPdf +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::GraphicalComparison::GraphicalPdfComparer::CompareDocumentsToPdf method. Compares documents graphically. The comparison result is placed in a PDF document in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/comparedocumentstopdf/ +--- +## GraphicalPdfComparer::CompareDocumentsToPdf method + + +Compares documents graphically. The comparison result is placed in a PDF document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Comparison::GraphicalComparison::GraphicalPdfComparer::CompareDocumentsToPdf(System::SharedPtr document1, System::SharedPtr document2, System::String resultPdfPath) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document1 | System::SharedPtr\ | The first document to compare. | +| document2 | System::SharedPtr\ | The second document to compare. | +| resultPdfPath | System::String | The target pdf file path. | +## Remarks + + + + + + document1 + + + The first document to compare. + + + + + document2 + + + The second document to compare. + + + + + resultPdfPath + + + The target pdf file path. + + + + + + ArgumentException + + + If the pages being compared are of different sizes. If resultPdfPath is null or empty string. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [GraphicalPdfComparer](../) +* Namespace [Aspose::Pdf::Comparison::GraphicalComparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/comparepagestoimage/_index.md b/english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/comparepagestoimage/_index.md new file mode 100644 index 0000000000..12aefb6c2f --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/comparepagestoimage/_index.md @@ -0,0 +1,68 @@ +--- +title: Aspose::Pdf::Comparison::GraphicalComparison::GraphicalPdfComparer::ComparePagesToImage method +linktitle: ComparePagesToImage +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::GraphicalComparison::GraphicalPdfComparer::ComparePagesToImage method. Compares pages graphically. The comparison result is placed in a image in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/comparepagestoimage/ +--- +## GraphicalPdfComparer::ComparePagesToImage method + + +Compares pages graphically. The comparison result is placed in a image. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Comparison::GraphicalComparison::GraphicalPdfComparer::ComparePagesToImage(System::SharedPtr page1, System::SharedPtr page2, System::String resultImagePath) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page1 | System::SharedPtr\ | The first page to compare. | +| page2 | System::SharedPtr\ | The second page to compare. | +| resultImagePath | System::String | The path to target image file. | +## Remarks + + + + + + page1 + + + The first page to compare. + + + + + page2 + + + The second page to compare. + + + + + resultImagePath + + + The path to target image file. + + + + + + ArgumentException + + + If the pages being compared are of different sizes. If resultImagePath is null or empty string. There is unknown saving image format. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [GraphicalPdfComparer](../) +* Namespace [Aspose::Pdf::Comparison::GraphicalComparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/comparepagestopdf/_index.md b/english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/comparepagestopdf/_index.md new file mode 100644 index 0000000000..c1eb1fc31e --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/comparepagestopdf/_index.md @@ -0,0 +1,128 @@ +--- +title: Aspose::Pdf::Comparison::GraphicalComparison::GraphicalPdfComparer::ComparePagesToPdf method +linktitle: ComparePagesToPdf +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::GraphicalComparison::GraphicalPdfComparer::ComparePagesToPdf method. Compares pages graphically. The comparison result is placed in a PDF document in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/comparepagestopdf/ +--- +## GraphicalPdfComparer::ComparePagesToPdf(System::SharedPtr\, System::SharedPtr\, System::String) method + + +Compares pages graphically. The comparison result is placed in a PDF document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Comparison::GraphicalComparison::GraphicalPdfComparer::ComparePagesToPdf(System::SharedPtr page1, System::SharedPtr page2, System::String resultPdfPath) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page1 | System::SharedPtr\ | The first page. | +| page2 | System::SharedPtr\ | The second page. | +| resultPdfPath | System::String | The path to target pdf file. | +## Remarks + + + + + + page1 + + + The first page. + + + + + page2 + + + The second page. + + + + + resultPdfPath + + + The path to target pdf file. + + + + + + ArgumentException + + + If the pages being compared are of different sizes. If resultPdfPath is null or empty string. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [GraphicalPdfComparer](../) +* Namespace [Aspose::Pdf::Comparison::GraphicalComparison](../../) +* Library [Aspose.PDF for C++](../../../) +## GraphicalPdfComparer::ComparePagesToPdf(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) method + + +Compares pages graphically. The comparison result is placed in a PDF document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Comparison::GraphicalComparison::GraphicalPdfComparer::ComparePagesToPdf(System::SharedPtr page1, System::SharedPtr page2, System::SharedPtr pdfDocument) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page1 | System::SharedPtr\ | The first page. | +| page2 | System::SharedPtr\ | The second page. | +| pdfDocument | System::SharedPtr\ | The pdf document instance. | +## Remarks + + + + + + page1 + + + The first page. + + + + + page2 + + + The second page. + + + + + pdfDocument + + + The pdf document instance. + + + + + + ArgumentException + + + If the pages being compared are of different sizes. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [Document](../../../aspose.pdf/document/) +* Class [GraphicalPdfComparer](../) +* Namespace [Aspose::Pdf::Comparison::GraphicalComparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/get_color/_index.md b/english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/get_color/_index.md new file mode 100644 index 0000000000..b2dff8a1e9 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/get_color/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Comparison::GraphicalComparison::GraphicalPdfComparer::get_Color method +linktitle: get_Color +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::GraphicalComparison::GraphicalPdfComparer::get_Color method. Gets and sets the change flag color. The default color is red in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/get_color/ +--- +## GraphicalPdfComparer::get_Color method + + +Gets and sets the change flag color. The default color is red. + +```cpp +ASPOSE_PDF_SHARED_API const System::SharedPtr & Aspose::Pdf::Comparison::GraphicalComparison::GraphicalPdfComparer::get_Color() const +``` + +## See Also + +* Class [Color](../../../aspose.pdf/color/) +* Class [GraphicalPdfComparer](../) +* Namespace [Aspose::Pdf::Comparison::GraphicalComparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/get_resolution/_index.md b/english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/get_resolution/_index.md new file mode 100644 index 0000000000..a4234f1ed5 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/get_resolution/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Comparison::GraphicalComparison::GraphicalPdfComparer::get_Resolution method +linktitle: get_Resolution +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::GraphicalComparison::GraphicalPdfComparer::get_Resolution method. Gets and sets the resolution of the resulting images. The default value is 150dpi in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/get_resolution/ +--- +## GraphicalPdfComparer::get_Resolution method + + +Gets and sets the resolution of the resulting images. The default value is 150dpi. + +```cpp +ASPOSE_PDF_SHARED_API const System::SharedPtr & Aspose::Pdf::Comparison::GraphicalComparison::GraphicalPdfComparer::get_Resolution() const +``` + +## See Also + +* Class [Resolution](../../../aspose.pdf.devices/resolution/) +* Class [GraphicalPdfComparer](../) +* Namespace [Aspose::Pdf::Comparison::GraphicalComparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/get_threshold/_index.md b/english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/get_threshold/_index.md new file mode 100644 index 0000000000..e0e8e3227b --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/get_threshold/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Comparison::GraphicalComparison::GraphicalPdfComparer::get_Threshold method +linktitle: get_Threshold +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::GraphicalComparison::GraphicalPdfComparer::get_Threshold method. Gets and sets the threshold value in percentage. This value allows you to ignore small changes if they are not significant to you. The default value is 0% in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/get_threshold/ +--- +## GraphicalPdfComparer::get_Threshold method + + +Gets and sets the threshold value in percentage. This value allows you to ignore small changes if they are not significant to you. The default value is 0%. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Comparison::GraphicalComparison::GraphicalPdfComparer::get_Threshold() const +``` + +## See Also + +* Class [GraphicalPdfComparer](../) +* Namespace [Aspose::Pdf::Comparison::GraphicalComparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/getdifference/_index.md b/english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/getdifference/_index.md new file mode 100644 index 0000000000..bd1c9a49cc --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/getdifference/_index.md @@ -0,0 +1,64 @@ +--- +title: Aspose::Pdf::Comparison::GraphicalComparison::GraphicalPdfComparer::GetDifference method +linktitle: GetDifference +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::GraphicalComparison::GraphicalPdfComparer::GetDifference method. Gets differences between pages images. The result contains an image of the first page compared and an array of differences in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/getdifference/ +--- +## GraphicalPdfComparer::GetDifference method + + +Gets differences between pages images. The result contains an image of the first page compared and an array of differences. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Comparison::GraphicalComparison::GraphicalPdfComparer::GetDifference(System::SharedPtr page1, System::SharedPtr page2) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page1 | System::SharedPtr\ | The first page. | +| page2 | System::SharedPtr\ | The second page. | + +### ReturnValue + +The [ImagesDifference](../../imagesdifference/) instance. +## Remarks + + + + + + page1 + + + The first page. + + + + + page2 + + + The second page. + + + + + + ArgumentException + + + If the pages being compared are of different sizes. + + + +## See Also + +* Class [ImagesDifference](../../imagesdifference/) +* Class [Page](../../../aspose.pdf/page/) +* Class [GraphicalPdfComparer](../) +* Namespace [Aspose::Pdf::Comparison::GraphicalComparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/graphicalpdfcomparer/_index.md b/english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/graphicalpdfcomparer/_index.md new file mode 100644 index 0000000000..bf06205d37 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/graphicalpdfcomparer/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Comparison::GraphicalComparison::GraphicalPdfComparer::GraphicalPdfComparer constructor +linktitle: GraphicalPdfComparer +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::GraphicalComparison::GraphicalPdfComparer::GraphicalPdfComparer constructor. Creates an instance of GraphicalPdfComparer class in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/graphicalpdfcomparer/ +--- +## GraphicalPdfComparer::GraphicalPdfComparer constructor + + +Creates an instance of [GraphicalPdfComparer](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Comparison::GraphicalComparison::GraphicalPdfComparer::GraphicalPdfComparer() +``` + +## See Also + +* Class [GraphicalPdfComparer](../) +* Namespace [Aspose::Pdf::Comparison::GraphicalComparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/set_color/_index.md b/english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/set_color/_index.md new file mode 100644 index 0000000000..e03c9cb5a5 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/set_color/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Comparison::GraphicalComparison::GraphicalPdfComparer::set_Color method +linktitle: set_Color +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::GraphicalComparison::GraphicalPdfComparer::set_Color method. Gets and sets the change flag color. The default color is red in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/set_color/ +--- +## GraphicalPdfComparer::set_Color method + + +Gets and sets the change flag color. The default color is red. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Comparison::GraphicalComparison::GraphicalPdfComparer::set_Color(System::SharedPtr value) +``` + +## See Also + +* Class [Color](../../../aspose.pdf/color/) +* Class [GraphicalPdfComparer](../) +* Namespace [Aspose::Pdf::Comparison::GraphicalComparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/set_resolution/_index.md b/english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/set_resolution/_index.md new file mode 100644 index 0000000000..52b3695d60 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/set_resolution/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Comparison::GraphicalComparison::GraphicalPdfComparer::set_Resolution method +linktitle: set_Resolution +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::GraphicalComparison::GraphicalPdfComparer::set_Resolution method. Gets and sets the resolution of the resulting images. The default value is 150dpi in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/set_resolution/ +--- +## GraphicalPdfComparer::set_Resolution method + + +Gets and sets the resolution of the resulting images. The default value is 150dpi. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Comparison::GraphicalComparison::GraphicalPdfComparer::set_Resolution(System::SharedPtr value) +``` + +## See Also + +* Class [Resolution](../../../aspose.pdf.devices/resolution/) +* Class [GraphicalPdfComparer](../) +* Namespace [Aspose::Pdf::Comparison::GraphicalComparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/set_threshold/_index.md b/english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/set_threshold/_index.md new file mode 100644 index 0000000000..d2f134dc67 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/set_threshold/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Comparison::GraphicalComparison::GraphicalPdfComparer::set_Threshold method +linktitle: set_Threshold +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::GraphicalComparison::GraphicalPdfComparer::set_Threshold method. Gets and sets the threshold value in percentage. This value allows you to ignore small changes if they are not significant to you. The default value is 0% in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.comparison.graphicalcomparison/graphicalpdfcomparer/set_threshold/ +--- +## GraphicalPdfComparer::set_Threshold method + + +Gets and sets the threshold value in percentage. This value allows you to ignore small changes if they are not significant to you. The default value is 0%. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Comparison::GraphicalComparison::GraphicalPdfComparer::set_Threshold(double value) +``` + +## See Also + +* Class [GraphicalPdfComparer](../) +* Namespace [Aspose::Pdf::Comparison::GraphicalComparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.graphicalcomparison/imagesdifference/_index.md b/english/cpp/aspose.pdf.comparison.graphicalcomparison/imagesdifference/_index.md new file mode 100644 index 0000000000..5f1868dcf2 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.graphicalcomparison/imagesdifference/_index.md @@ -0,0 +1,33 @@ +--- +title: Aspose::Pdf::Comparison::GraphicalComparison::ImagesDifference class +linktitle: ImagesDifference +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::GraphicalComparison::ImagesDifference class. Represents the result class of comparing two PDF pages in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.comparison.graphicalcomparison/imagesdifference/ +--- +## ImagesDifference class + + +Represents the result class of comparing two PDF pages. + +```cpp +class ImagesDifference : public System::IDisposable +``` + +## Methods + +| Method | Description | +| --- | --- | +| [DifferenceToImage](./differencetoimage/)(System::SharedPtr\, System::SharedPtr\) | Converts the difference array to a bitmap image using the specified colors. | +| [Dispose](./dispose/)() override | Performs any necessary clean up operations before the object is destroyed. | +| [get_Difference](./get_difference/)() const | Gets the difference array. This array is similar to the original image data array obtained as a result of the LockBits method. | +| [get_Height](./get_height/)() const | The height of difference. | +| [get_SourceImage](./get_sourceimage/)() const | Gets the image of first compared page. The image has a pixel format is 24bpp. | +| [get_Stride](./get_stride/)() const | The stride of difference image data. | +| [GetDestinationImage](./getdestinationimage/)() | Returns a new bitmap representing the destination image by applying the difference array to the source image. | +## See Also + +* Namespace [Aspose::Pdf::Comparison::GraphicalComparison](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.comparison.graphicalcomparison/imagesdifference/differencetoimage/_index.md b/english/cpp/aspose.pdf.comparison.graphicalcomparison/imagesdifference/differencetoimage/_index.md new file mode 100644 index 0000000000..1539b78dc4 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.graphicalcomparison/imagesdifference/differencetoimage/_index.md @@ -0,0 +1,54 @@ +--- +title: Aspose::Pdf::Comparison::GraphicalComparison::ImagesDifference::DifferenceToImage method +linktitle: DifferenceToImage +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::GraphicalComparison::ImagesDifference::DifferenceToImage method. Converts the difference array to a bitmap image using the specified colors in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.comparison.graphicalcomparison/imagesdifference/differencetoimage/ +--- +## ImagesDifference::DifferenceToImage method + + +Converts the difference array to a bitmap image using the specified colors. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Comparison::GraphicalComparison::ImagesDifference::DifferenceToImage(System::SharedPtr color, System::SharedPtr backgroundColor) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| color | System::SharedPtr\ | The color for non-zero differences. | +| backgroundColor | System::SharedPtr\ | The background color for zero differences. | + +### ReturnValue + +A bitmap image representing the difference array. +## Remarks + + + + + + color + + + The color for non-zero differences. + + + + + backgroundColor + + + The background color for zero differences. + + + +## See Also + +* Class [Color](../../../aspose.pdf/color/) +* Class [ImagesDifference](../) +* Namespace [Aspose::Pdf::Comparison::GraphicalComparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.graphicalcomparison/imagesdifference/dispose/_index.md b/english/cpp/aspose.pdf.comparison.graphicalcomparison/imagesdifference/dispose/_index.md new file mode 100644 index 0000000000..2ad1cbb0a8 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.graphicalcomparison/imagesdifference/dispose/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Comparison::GraphicalComparison::ImagesDifference::Dispose method +linktitle: Dispose +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::GraphicalComparison::ImagesDifference::Dispose method. Performs any necessary clean up operations before the object is destroyed in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.comparison.graphicalcomparison/imagesdifference/dispose/ +--- +## ImagesDifference::Dispose method + + +Performs any necessary clean up operations before the object is destroyed. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Comparison::GraphicalComparison::ImagesDifference::Dispose() override +``` + +## See Also + +* Class [ImagesDifference](../) +* Namespace [Aspose::Pdf::Comparison::GraphicalComparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.graphicalcomparison/imagesdifference/get_difference/_index.md b/english/cpp/aspose.pdf.comparison.graphicalcomparison/imagesdifference/get_difference/_index.md new file mode 100644 index 0000000000..46b2494e52 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.graphicalcomparison/imagesdifference/get_difference/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Comparison::GraphicalComparison::ImagesDifference::get_Difference method +linktitle: get_Difference +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::GraphicalComparison::ImagesDifference::get_Difference method. Gets the difference array. This array is similar to the original image data array obtained as a result of the LockBits method in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.comparison.graphicalcomparison/imagesdifference/get_difference/ +--- +## ImagesDifference::get_Difference method + + +Gets the difference array. This array is similar to the original image data array obtained as a result of the LockBits method. + +```cpp +ASPOSE_PDF_SHARED_API const System::ArrayPtr & Aspose::Pdf::Comparison::GraphicalComparison::ImagesDifference::get_Difference() const +``` + +## See Also + +* Class [ImagesDifference](../) +* Namespace [Aspose::Pdf::Comparison::GraphicalComparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.graphicalcomparison/imagesdifference/get_height/_index.md b/english/cpp/aspose.pdf.comparison.graphicalcomparison/imagesdifference/get_height/_index.md new file mode 100644 index 0000000000..c5f2e702a4 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.graphicalcomparison/imagesdifference/get_height/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Comparison::GraphicalComparison::ImagesDifference::get_Height method +linktitle: get_Height +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::GraphicalComparison::ImagesDifference::get_Height method. The height of difference in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.comparison.graphicalcomparison/imagesdifference/get_height/ +--- +## ImagesDifference::get_Height method + + +The height of difference. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Comparison::GraphicalComparison::ImagesDifference::get_Height() const +``` + +## See Also + +* Class [ImagesDifference](../) +* Namespace [Aspose::Pdf::Comparison::GraphicalComparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.graphicalcomparison/imagesdifference/get_sourceimage/_index.md b/english/cpp/aspose.pdf.comparison.graphicalcomparison/imagesdifference/get_sourceimage/_index.md new file mode 100644 index 0000000000..10b1983445 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.graphicalcomparison/imagesdifference/get_sourceimage/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Comparison::GraphicalComparison::ImagesDifference::get_SourceImage method +linktitle: get_SourceImage +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::GraphicalComparison::ImagesDifference::get_SourceImage method. Gets the image of first compared page. The image has a pixel format is 24bpp in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.comparison.graphicalcomparison/imagesdifference/get_sourceimage/ +--- +## ImagesDifference::get_SourceImage method + + +Gets the image of first compared page. The image has a pixel format is 24bpp. + +```cpp +ASPOSE_PDF_SHARED_API const System::SharedPtr & Aspose::Pdf::Comparison::GraphicalComparison::ImagesDifference::get_SourceImage() const +``` + +## See Also + +* Class [ImagesDifference](../) +* Namespace [Aspose::Pdf::Comparison::GraphicalComparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.graphicalcomparison/imagesdifference/get_stride/_index.md b/english/cpp/aspose.pdf.comparison.graphicalcomparison/imagesdifference/get_stride/_index.md new file mode 100644 index 0000000000..d1e1a77d45 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.graphicalcomparison/imagesdifference/get_stride/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Comparison::GraphicalComparison::ImagesDifference::get_Stride method +linktitle: get_Stride +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::GraphicalComparison::ImagesDifference::get_Stride method. The stride of difference image data in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.comparison.graphicalcomparison/imagesdifference/get_stride/ +--- +## ImagesDifference::get_Stride method + + +The stride of difference image data. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Comparison::GraphicalComparison::ImagesDifference::get_Stride() const +``` + +## See Also + +* Class [ImagesDifference](../) +* Namespace [Aspose::Pdf::Comparison::GraphicalComparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.graphicalcomparison/imagesdifference/getdestinationimage/_index.md b/english/cpp/aspose.pdf.comparison.graphicalcomparison/imagesdifference/getdestinationimage/_index.md new file mode 100644 index 0000000000..1e70a44e27 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.graphicalcomparison/imagesdifference/getdestinationimage/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Comparison::GraphicalComparison::ImagesDifference::GetDestinationImage method +linktitle: GetDestinationImage +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::GraphicalComparison::ImagesDifference::GetDestinationImage method. Returns a new bitmap representing the destination image by applying the difference array to the source image in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.comparison.graphicalcomparison/imagesdifference/getdestinationimage/ +--- +## ImagesDifference::GetDestinationImage method + + +Returns a new bitmap representing the destination image by applying the difference array to the source image. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Comparison::GraphicalComparison::ImagesDifference::GetDestinationImage() +``` + + +### ReturnValue + +A destination image. + +## See Also + +* Class [ImagesDifference](../) +* Namespace [Aspose::Pdf::Comparison::GraphicalComparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.outputgenerator/_index.md b/english/cpp/aspose.pdf.comparison.outputgenerator/_index.md new file mode 100644 index 0000000000..b23bb075c6 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.outputgenerator/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Comparison::OutputGenerator namespace +linktitle: Aspose::Pdf::Comparison::OutputGenerator +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Comparison::OutputGenerator namespace in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.comparison.outputgenerator/ +--- + + + +## Classes + +| Class | Description | +| --- | --- | +| [HtmlDiffOutputGenerator](./htmldiffoutputgenerator/) | Represents a class for generating html representation of texts differences. Deleted line breaks are indicated by paragraph mark. | +| [IFileOutputGenerator](./ifileoutputgenerator/) | Represents an interface for generating output to a file of differences between texts. | +| [IStringOutputGenerator](./istringoutputgenerator/) | Represents an interface for generating output to a string of differences between texts. | +| [MarkdownDiffOutputGenerator](./markdowndiffoutputgenerator/) | Represents a class for generating markdown representation of texts differences. Because of the markdown syntax, it is not possible to show changes to whitespace characters. Selection of changes makes adding whitespace characters around formatting, otherwise markdown viewer will not correctly display the text. Deleted line breaks are indicated by - paragraph mark. | +| [OutputTextStyle](./outputtextstyle/) | Represents a style set class for marking text changes. | +| [PdfOutputGenerator](./pdfoutputgenerator/) | Represents a class for generating PDF representation of texts differences. | +| [TextStyle](./textstyle/) | Represents a text style class. | diff --git a/english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/_index.md b/english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/_index.md new file mode 100644 index 0000000000..50511000e3 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/_index.md @@ -0,0 +1,43 @@ +--- +title: Aspose::Pdf::Comparison::OutputGenerator::HtmlDiffOutputGenerator class +linktitle: HtmlDiffOutputGenerator +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::OutputGenerator::HtmlDiffOutputGenerator class. Represents a class for generating html representation of texts differences. Deleted line breaks are indicated by paragraph mark in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/ +--- +## HtmlDiffOutputGenerator class + + +Represents a class for generating html representation of texts differences. Deleted line breaks are indicated by paragraph mark. + +```cpp +class HtmlDiffOutputGenerator : public Aspose::Pdf::Comparison::OutputGenerator::IStringOutputGenerator, + public Aspose::Pdf::Comparison::OutputGenerator::IFileOutputGenerator +``` + +## Methods + +| Method | Description | +| --- | --- | +| [GenerateOutput](./generateoutput/)(System::SharedPtr\\>\>) override | Generates the output based on the differences between texts and saves it to a file. | +| [GenerateOutput](./generateoutput/)(System::SharedPtr\\>\>, System::String) override | Generates the output based on the differences between texts and saves it to a file. | +| [GenerateOutput](./generateoutput/)(System::SharedPtr\\>\>\>\>) override | Generates the output based on the differences between texts and saves it to a file. | +| [GenerateOutput](./generateoutput/)(System::SharedPtr\\>\>\>\>, System::String) override | Generates the output based on the differences between texts and saves it to a file. | +| [get_DeleteStyle](./get_deletestyle/)() const | Gets and sets the CSS-style string for Delete operation. Example: **color: #003300; background-color: #ccff66;** | +| [get_EqualStyle](./get_equalstyle/)() const | Gets and sets the CSS-style string for Equal operation. Example: **color: #003300; background-color: #ccff66;** | +| [get_InsertStyle](./get_insertstyle/)() const | Gets and sets the CSS-style string for Insert operation. Example: **color: #003300; background-color: #ccff66;** | +| [get_StrikethroughDeleted](./get_strikethroughdeleted/)() const | Get or set text-decoration: line-through style for the delete operation. Default value is **False**. | +| [HtmlDiffOutputGenerator](./htmldiffoutputgenerator/)() | Creates an instance of [HtmlDiffOutputGenerator](./) class. | +| [HtmlDiffOutputGenerator](./htmldiffoutputgenerator/)(System::SharedPtr\) | Creates an instance of [HtmlDiffOutputGenerator](./) class. | +| [set_DeleteStyle](./set_deletestyle/)(System::String) | Gets and sets the CSS-style string for Delete operation. Example: **color: #003300; background-color: #ccff66;** | +| [set_EqualStyle](./set_equalstyle/)(System::String) | Gets and sets the CSS-style string for Equal operation. Example: **color: #003300; background-color: #ccff66;** | +| [set_InsertStyle](./set_insertstyle/)(System::String) | Gets and sets the CSS-style string for Insert operation. Example: **color: #003300; background-color: #ccff66;** | +| [set_StrikethroughDeleted](./set_strikethroughdeleted/)(bool) | Get or set text-decoration: line-through style for the delete operation. Default value is **False**. | +## See Also + +* Class [IStringOutputGenerator](../istringoutputgenerator/) +* Class [IFileOutputGenerator](../ifileoutputgenerator/) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/generateoutput/_index.md b/english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/generateoutput/_index.md new file mode 100644 index 0000000000..78635c8cf6 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/generateoutput/_index.md @@ -0,0 +1,155 @@ +--- +title: Aspose::Pdf::Comparison::OutputGenerator::HtmlDiffOutputGenerator::GenerateOutput method +linktitle: GenerateOutput +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::OutputGenerator::HtmlDiffOutputGenerator::GenerateOutput method. Generates the output based on the differences between texts and saves it to a file in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/generateoutput/ +--- +## HtmlDiffOutputGenerator::GenerateOutput(System::SharedPtr\\>\>) method + + +Generates the output based on the differences between texts and saves it to a file. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Comparison::OutputGenerator::HtmlDiffOutputGenerator::GenerateOutput(System::SharedPtr>> diffrences) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| diffrences | System::SharedPtr\\>\> | The list of differences between texts. | +## Remarks + + + + + + diffrences + + + The list of differences between texts. + + + +## See Also + +* Class [DiffOperation](../../../aspose.pdf.comparison.diff/diffoperation/) +* Class [HtmlDiffOutputGenerator](../) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../../) +* Library [Aspose.PDF for C++](../../../) +## HtmlDiffOutputGenerator::GenerateOutput(System::SharedPtr\\>\>, System::String) method + + +Generates the output based on the differences between texts and saves it to a file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Comparison::OutputGenerator::HtmlDiffOutputGenerator::GenerateOutput(System::SharedPtr>> diffrences, System::String targetFilePath) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| diffrences | System::SharedPtr\\>\> | The list of differences between texts. | +| targetFilePath | System::String | The path of the target file to save the output. | +## Remarks + + + + + + diffrences + + + The list of differences between texts. + + + + + targetFilePath + + + The path of the target file to save the output. + + + +## See Also + +* Class [DiffOperation](../../../aspose.pdf.comparison.diff/diffoperation/) +* Class [HtmlDiffOutputGenerator](../) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../../) +* Library [Aspose.PDF for C++](../../../) +## HtmlDiffOutputGenerator::GenerateOutput(System::SharedPtr\\>\>\>\>) method + + +Generates the output based on the differences between texts and saves it to a file. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Comparison::OutputGenerator::HtmlDiffOutputGenerator::GenerateOutput(System::SharedPtr>>>> diffrences) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| diffrences | System::SharedPtr\\>\>\>\> | The list of differences between texts. | +## Remarks + + + + + + diffrences + + + The list of differences between texts. + + + +## See Also + +* Class [DiffOperation](../../../aspose.pdf.comparison.diff/diffoperation/) +* Class [HtmlDiffOutputGenerator](../) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../../) +* Library [Aspose.PDF for C++](../../../) +## HtmlDiffOutputGenerator::GenerateOutput(System::SharedPtr\\>\>\>\>, System::String) method + + +Generates the output based on the differences between texts and saves it to a file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Comparison::OutputGenerator::HtmlDiffOutputGenerator::GenerateOutput(System::SharedPtr>>>> diffrences, System::String targetFilePath) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| diffrences | System::SharedPtr\\>\>\>\> | The list of differences between texts. | +| targetFilePath | System::String | The path of the target file to save the output. | +## Remarks + + + + + + diffrences + + + The list of differences between texts. + + + + + targetFilePath + + + The path of the target file to save the output. + + + +## See Also + +* Class [DiffOperation](../../../aspose.pdf.comparison.diff/diffoperation/) +* Class [HtmlDiffOutputGenerator](../) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/get_deletestyle/_index.md b/english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/get_deletestyle/_index.md new file mode 100644 index 0000000000..86b2ae7e43 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/get_deletestyle/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Comparison::OutputGenerator::HtmlDiffOutputGenerator::get_DeleteStyle method +linktitle: get_DeleteStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::OutputGenerator::HtmlDiffOutputGenerator::get_DeleteStyle method. Gets and sets the CSS-style string for Delete operation. Example: color: #003300; background-color: #ccff66; in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/get_deletestyle/ +--- +## HtmlDiffOutputGenerator::get_DeleteStyle method + + +Gets and sets the CSS-style string for Delete operation. Example: **color: #003300; background-color: #ccff66;** + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Comparison::OutputGenerator::HtmlDiffOutputGenerator::get_DeleteStyle() const +``` + +## See Also + +* Class [HtmlDiffOutputGenerator](../) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/get_equalstyle/_index.md b/english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/get_equalstyle/_index.md new file mode 100644 index 0000000000..ac4cba8d63 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/get_equalstyle/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Comparison::OutputGenerator::HtmlDiffOutputGenerator::get_EqualStyle method +linktitle: get_EqualStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::OutputGenerator::HtmlDiffOutputGenerator::get_EqualStyle method. Gets and sets the CSS-style string for Equal operation. Example: color: #003300; background-color: #ccff66; in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/get_equalstyle/ +--- +## HtmlDiffOutputGenerator::get_EqualStyle method + + +Gets and sets the CSS-style string for Equal operation. Example: **color: #003300; background-color: #ccff66;** + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Comparison::OutputGenerator::HtmlDiffOutputGenerator::get_EqualStyle() const +``` + +## See Also + +* Class [HtmlDiffOutputGenerator](../) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/get_insertstyle/_index.md b/english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/get_insertstyle/_index.md new file mode 100644 index 0000000000..c1d76f47c1 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/get_insertstyle/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Comparison::OutputGenerator::HtmlDiffOutputGenerator::get_InsertStyle method +linktitle: get_InsertStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::OutputGenerator::HtmlDiffOutputGenerator::get_InsertStyle method. Gets and sets the CSS-style string for Insert operation. Example: color: #003300; background-color: #ccff66; in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/get_insertstyle/ +--- +## HtmlDiffOutputGenerator::get_InsertStyle method + + +Gets and sets the CSS-style string for Insert operation. Example: **color: #003300; background-color: #ccff66;** + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Comparison::OutputGenerator::HtmlDiffOutputGenerator::get_InsertStyle() const +``` + +## See Also + +* Class [HtmlDiffOutputGenerator](../) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/get_strikethroughdeleted/_index.md b/english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/get_strikethroughdeleted/_index.md new file mode 100644 index 0000000000..a92aadb6c3 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/get_strikethroughdeleted/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Comparison::OutputGenerator::HtmlDiffOutputGenerator::get_StrikethroughDeleted method +linktitle: get_StrikethroughDeleted +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::OutputGenerator::HtmlDiffOutputGenerator::get_StrikethroughDeleted method. Get or set text-decoration: line-through style for the delete operation. Default value is False in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/get_strikethroughdeleted/ +--- +## HtmlDiffOutputGenerator::get_StrikethroughDeleted method + + +Get or set text-decoration: line-through style for the delete operation. Default value is **False**. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Comparison::OutputGenerator::HtmlDiffOutputGenerator::get_StrikethroughDeleted() const +``` + +## See Also + +* Class [HtmlDiffOutputGenerator](../) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/htmldiffoutputgenerator/_index.md b/english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/htmldiffoutputgenerator/_index.md new file mode 100644 index 0000000000..b9633a6e76 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/htmldiffoutputgenerator/_index.md @@ -0,0 +1,55 @@ +--- +title: Aspose::Pdf::Comparison::OutputGenerator::HtmlDiffOutputGenerator::HtmlDiffOutputGenerator constructor +linktitle: HtmlDiffOutputGenerator +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::OutputGenerator::HtmlDiffOutputGenerator::HtmlDiffOutputGenerator constructor. Creates an instance of HtmlDiffOutputGenerator class in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/htmldiffoutputgenerator/ +--- +## HtmlDiffOutputGenerator::HtmlDiffOutputGenerator() constructor + + +Creates an instance of [HtmlDiffOutputGenerator](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Comparison::OutputGenerator::HtmlDiffOutputGenerator::HtmlDiffOutputGenerator() +``` + +## See Also + +* Class [HtmlDiffOutputGenerator](../) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../../) +* Library [Aspose.PDF for C++](../../../) +## HtmlDiffOutputGenerator::HtmlDiffOutputGenerator(System::SharedPtr\) constructor + + +Creates an instance of [HtmlDiffOutputGenerator](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Comparison::OutputGenerator::HtmlDiffOutputGenerator::HtmlDiffOutputGenerator(System::SharedPtr textStyle) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| textStyle | System::SharedPtr\ | The styles for the changed text. | +## Remarks + + + + + + textStyle + + + The styles for the changed text. + + + +## See Also + +* Class [OutputTextStyle](../../outputtextstyle/) +* Class [HtmlDiffOutputGenerator](../) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/set_deletestyle/_index.md b/english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/set_deletestyle/_index.md new file mode 100644 index 0000000000..2a58878d73 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/set_deletestyle/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Comparison::OutputGenerator::HtmlDiffOutputGenerator::set_DeleteStyle method +linktitle: set_DeleteStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::OutputGenerator::HtmlDiffOutputGenerator::set_DeleteStyle method. Gets and sets the CSS-style string for Delete operation. Example: color: #003300; background-color: #ccff66; in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/set_deletestyle/ +--- +## HtmlDiffOutputGenerator::set_DeleteStyle method + + +Gets and sets the CSS-style string for Delete operation. Example: **color: #003300; background-color: #ccff66;** + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Comparison::OutputGenerator::HtmlDiffOutputGenerator::set_DeleteStyle(System::String value) +``` + +## See Also + +* Class [HtmlDiffOutputGenerator](../) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/set_equalstyle/_index.md b/english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/set_equalstyle/_index.md new file mode 100644 index 0000000000..ea6112dd69 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/set_equalstyle/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Comparison::OutputGenerator::HtmlDiffOutputGenerator::set_EqualStyle method +linktitle: set_EqualStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::OutputGenerator::HtmlDiffOutputGenerator::set_EqualStyle method. Gets and sets the CSS-style string for Equal operation. Example: color: #003300; background-color: #ccff66; in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/set_equalstyle/ +--- +## HtmlDiffOutputGenerator::set_EqualStyle method + + +Gets and sets the CSS-style string for Equal operation. Example: **color: #003300; background-color: #ccff66;** + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Comparison::OutputGenerator::HtmlDiffOutputGenerator::set_EqualStyle(System::String value) +``` + +## See Also + +* Class [HtmlDiffOutputGenerator](../) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/set_insertstyle/_index.md b/english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/set_insertstyle/_index.md new file mode 100644 index 0000000000..4b547be1df --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/set_insertstyle/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Comparison::OutputGenerator::HtmlDiffOutputGenerator::set_InsertStyle method +linktitle: set_InsertStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::OutputGenerator::HtmlDiffOutputGenerator::set_InsertStyle method. Gets and sets the CSS-style string for Insert operation. Example: color: #003300; background-color: #ccff66; in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/set_insertstyle/ +--- +## HtmlDiffOutputGenerator::set_InsertStyle method + + +Gets and sets the CSS-style string for Insert operation. Example: **color: #003300; background-color: #ccff66;** + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Comparison::OutputGenerator::HtmlDiffOutputGenerator::set_InsertStyle(System::String value) +``` + +## See Also + +* Class [HtmlDiffOutputGenerator](../) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/set_strikethroughdeleted/_index.md b/english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/set_strikethroughdeleted/_index.md new file mode 100644 index 0000000000..ad5ecbc5bb --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/set_strikethroughdeleted/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Comparison::OutputGenerator::HtmlDiffOutputGenerator::set_StrikethroughDeleted method +linktitle: set_StrikethroughDeleted +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::OutputGenerator::HtmlDiffOutputGenerator::set_StrikethroughDeleted method. Get or set text-decoration: line-through style for the delete operation. Default value is False in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.comparison.outputgenerator/htmldiffoutputgenerator/set_strikethroughdeleted/ +--- +## HtmlDiffOutputGenerator::set_StrikethroughDeleted method + + +Get or set text-decoration: line-through style for the delete operation. Default value is **False**. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Comparison::OutputGenerator::HtmlDiffOutputGenerator::set_StrikethroughDeleted(bool value) +``` + +## See Also + +* Class [HtmlDiffOutputGenerator](../) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.outputgenerator/ifileoutputgenerator/_index.md b/english/cpp/aspose.pdf.comparison.outputgenerator/ifileoutputgenerator/_index.md new file mode 100644 index 0000000000..c77c47408d --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.outputgenerator/ifileoutputgenerator/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Comparison::OutputGenerator::IFileOutputGenerator class +linktitle: IFileOutputGenerator +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::OutputGenerator::IFileOutputGenerator class. Represents an interface for generating output to a file of differences between texts in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.comparison.outputgenerator/ifileoutputgenerator/ +--- +## IFileOutputGenerator class + + +Represents an interface for generating output to a file of differences between texts. + +```cpp +class IFileOutputGenerator : public virtual System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| virtual [GenerateOutput](./generateoutput/)(System::SharedPtr\\>\>, System::String) | Generates the output based on the differences between texts and saves it to a file. | +| virtual [GenerateOutput](./generateoutput/)(System::SharedPtr\\>\>\>\>, System::String) | Generates the output based on the differences between texts and saves it to a file. | +## See Also + +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.comparison.outputgenerator/ifileoutputgenerator/generateoutput/_index.md b/english/cpp/aspose.pdf.comparison.outputgenerator/ifileoutputgenerator/generateoutput/_index.md new file mode 100644 index 0000000000..59a10cf415 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.outputgenerator/ifileoutputgenerator/generateoutput/_index.md @@ -0,0 +1,91 @@ +--- +title: Aspose::Pdf::Comparison::OutputGenerator::IFileOutputGenerator::GenerateOutput method +linktitle: GenerateOutput +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::OutputGenerator::IFileOutputGenerator::GenerateOutput method. Generates the output based on the differences between texts and saves it to a file in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.comparison.outputgenerator/ifileoutputgenerator/generateoutput/ +--- +## IFileOutputGenerator::GenerateOutput(System::SharedPtr\\>\>, System::String) method + + +Generates the output based on the differences between texts and saves it to a file. + +```cpp +virtual void Aspose::Pdf::Comparison::OutputGenerator::IFileOutputGenerator::GenerateOutput(System::SharedPtr>> diffrences, System::String targetFilePath)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| diffrences | System::SharedPtr\\>\> | The list of differences between texts. | +| targetFilePath | System::String | The path of the target file to save the output. | +## Remarks + + + + + + diffrences + + + The list of differences between texts. + + + + + targetFilePath + + + The path of the target file to save the output. + + + +## See Also + +* Class [DiffOperation](../../../aspose.pdf.comparison.diff/diffoperation/) +* Class [IFileOutputGenerator](../) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../../) +* Library [Aspose.PDF for C++](../../../) +## IFileOutputGenerator::GenerateOutput(System::SharedPtr\\>\>\>\>, System::String) method + + +Generates the output based on the differences between texts and saves it to a file. + +```cpp +virtual void Aspose::Pdf::Comparison::OutputGenerator::IFileOutputGenerator::GenerateOutput(System::SharedPtr>>>> diffrences, System::String targetFilePath)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| diffrences | System::SharedPtr\\>\>\>\> | The list of differences between texts. | +| targetFilePath | System::String | The path of the target file to save the output. | +## Remarks + + + + + + diffrences + + + The list of differences between texts. + + + + + targetFilePath + + + The path of the target file to save the output. + + + +## See Also + +* Class [DiffOperation](../../../aspose.pdf.comparison.diff/diffoperation/) +* Class [IFileOutputGenerator](../) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.outputgenerator/istringoutputgenerator/_index.md b/english/cpp/aspose.pdf.comparison.outputgenerator/istringoutputgenerator/_index.md new file mode 100644 index 0000000000..2cd77e622f --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.outputgenerator/istringoutputgenerator/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Comparison::OutputGenerator::IStringOutputGenerator class +linktitle: IStringOutputGenerator +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::OutputGenerator::IStringOutputGenerator class. Represents an interface for generating output to a string of differences between texts in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.comparison.outputgenerator/istringoutputgenerator/ +--- +## IStringOutputGenerator class + + +Represents an interface for generating output to a string of differences between texts. + +```cpp +class IStringOutputGenerator : public virtual System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| virtual [GenerateOutput](./generateoutput/)(System::SharedPtr\\>\>) | Generates the output based on the differences between texts and saves it to a file. | +| virtual [GenerateOutput](./generateoutput/)(System::SharedPtr\\>\>\>\>) | Generates the output based on the differences between texts and saves it to a file. | +## See Also + +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.comparison.outputgenerator/istringoutputgenerator/generateoutput/_index.md b/english/cpp/aspose.pdf.comparison.outputgenerator/istringoutputgenerator/generateoutput/_index.md new file mode 100644 index 0000000000..8dffdff906 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.outputgenerator/istringoutputgenerator/generateoutput/_index.md @@ -0,0 +1,81 @@ +--- +title: Aspose::Pdf::Comparison::OutputGenerator::IStringOutputGenerator::GenerateOutput method +linktitle: GenerateOutput +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::OutputGenerator::IStringOutputGenerator::GenerateOutput method. Generates the output based on the differences between texts and saves it to a file in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.comparison.outputgenerator/istringoutputgenerator/generateoutput/ +--- +## IStringOutputGenerator::GenerateOutput(System::SharedPtr\\>\>) method + + +Generates the output based on the differences between texts and saves it to a file. + +```cpp +virtual System::String Aspose::Pdf::Comparison::OutputGenerator::IStringOutputGenerator::GenerateOutput(System::SharedPtr>> diffrences)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| diffrences | System::SharedPtr\\>\> | The list of differences between texts. | + +### ReturnValue + +[Text](../../../aspose.pdf.text/) representation of output. +## Remarks + + + + + + diffrences + + + The list of differences between texts. + + + +## See Also + +* Class [DiffOperation](../../../aspose.pdf.comparison.diff/diffoperation/) +* Class [IStringOutputGenerator](../) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../../) +* Library [Aspose.PDF for C++](../../../) +## IStringOutputGenerator::GenerateOutput(System::SharedPtr\\>\>\>\>) method + + +Generates the output based on the differences between texts and saves it to a file. + +```cpp +virtual System::String Aspose::Pdf::Comparison::OutputGenerator::IStringOutputGenerator::GenerateOutput(System::SharedPtr>>>> diffrences)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| diffrences | System::SharedPtr\\>\>\>\> | The list of differences between texts. | + +### ReturnValue + +[Text](../../../aspose.pdf.text/) representation of output. +## Remarks + + + + + + diffrences + + + The list of differences between texts. + + + +## See Also + +* Class [DiffOperation](../../../aspose.pdf.comparison.diff/diffoperation/) +* Class [IStringOutputGenerator](../) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.outputgenerator/markdowndiffoutputgenerator/_index.md b/english/cpp/aspose.pdf.comparison.outputgenerator/markdowndiffoutputgenerator/_index.md new file mode 100644 index 0000000000..584fe17cc3 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.outputgenerator/markdowndiffoutputgenerator/_index.md @@ -0,0 +1,34 @@ +--- +title: Aspose::Pdf::Comparison::OutputGenerator::MarkdownDiffOutputGenerator class +linktitle: MarkdownDiffOutputGenerator +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::OutputGenerator::MarkdownDiffOutputGenerator class. Represents a class for generating markdown representation of texts differences. Because of the markdown syntax, it is not possible to show changes to whitespace characters. Selection of changes makes adding whitespace characters around formatting, otherwise markdown viewer will not correctly display the text. Deleted line breaks are indicated by - paragraph mark in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.comparison.outputgenerator/markdowndiffoutputgenerator/ +--- +## MarkdownDiffOutputGenerator class + + +Represents a class for generating markdown representation of texts differences. Because of the markdown syntax, it is not possible to show changes to whitespace characters. Selection of changes makes adding whitespace characters around formatting, otherwise markdown viewer will not correctly display the text. Deleted line breaks are indicated by - paragraph mark. + +```cpp +class MarkdownDiffOutputGenerator : public Aspose::Pdf::Comparison::OutputGenerator::IStringOutputGenerator, + public Aspose::Pdf::Comparison::OutputGenerator::IFileOutputGenerator +``` + +## Methods + +| Method | Description | +| --- | --- | +| [GenerateOutput](./generateoutput/)(System::SharedPtr\\>\>) override | Generates the output based on the differences between texts and saves it to a file. | +| [GenerateOutput](./generateoutput/)(System::SharedPtr\\>\>, System::String) override | Generates the output based on the differences between texts and saves it to a file. | +| [GenerateOutput](./generateoutput/)(System::SharedPtr\\>\>\>\>) override | Generates the output based on the differences between texts and saves it to a file. | +| [GenerateOutput](./generateoutput/)(System::SharedPtr\\>\>\>\>, System::String) override | Generates the output based on the differences between texts and saves it to a file. | +| [MarkdownDiffOutputGenerator](./markdowndiffoutputgenerator/)() | Creates an instance of [MarkdownDiffOutputGenerator](./) class. | +## See Also + +* Class [IStringOutputGenerator](../istringoutputgenerator/) +* Class [IFileOutputGenerator](../ifileoutputgenerator/) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.comparison.outputgenerator/markdowndiffoutputgenerator/generateoutput/_index.md b/english/cpp/aspose.pdf.comparison.outputgenerator/markdowndiffoutputgenerator/generateoutput/_index.md new file mode 100644 index 0000000000..ab48f88d19 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.outputgenerator/markdowndiffoutputgenerator/generateoutput/_index.md @@ -0,0 +1,163 @@ +--- +title: Aspose::Pdf::Comparison::OutputGenerator::MarkdownDiffOutputGenerator::GenerateOutput method +linktitle: GenerateOutput +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::OutputGenerator::MarkdownDiffOutputGenerator::GenerateOutput method. Generates the output based on the differences between texts and saves it to a file in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.comparison.outputgenerator/markdowndiffoutputgenerator/generateoutput/ +--- +## MarkdownDiffOutputGenerator::GenerateOutput(System::SharedPtr\\>\>) method + + +Generates the output based on the differences between texts and saves it to a file. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Comparison::OutputGenerator::MarkdownDiffOutputGenerator::GenerateOutput(System::SharedPtr>> diffrences) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| diffrences | System::SharedPtr\\>\> | The list of differences between texts. | + +### ReturnValue + +Markown text. +## Remarks + + + + + + diffrences + + + The list of differences between texts. + + + +## See Also + +* Class [DiffOperation](../../../aspose.pdf.comparison.diff/diffoperation/) +* Class [MarkdownDiffOutputGenerator](../) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../../) +* Library [Aspose.PDF for C++](../../../) +## MarkdownDiffOutputGenerator::GenerateOutput(System::SharedPtr\\>\>, System::String) method + + +Generates the output based on the differences between texts and saves it to a file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Comparison::OutputGenerator::MarkdownDiffOutputGenerator::GenerateOutput(System::SharedPtr>> diffrences, System::String targetFilePath) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| diffrences | System::SharedPtr\\>\> | The list of differences between texts. | +| targetFilePath | System::String | The path of the target file to save the output. | +## Remarks + + + + + + diffrences + + + The list of differences between texts. + + + + + targetFilePath + + + The path of the target file to save the output. + + + +## See Also + +* Class [DiffOperation](../../../aspose.pdf.comparison.diff/diffoperation/) +* Class [MarkdownDiffOutputGenerator](../) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../../) +* Library [Aspose.PDF for C++](../../../) +## MarkdownDiffOutputGenerator::GenerateOutput(System::SharedPtr\\>\>\>\>) method + + +Generates the output based on the differences between texts and saves it to a file. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Comparison::OutputGenerator::MarkdownDiffOutputGenerator::GenerateOutput(System::SharedPtr>>>> diffrences) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| diffrences | System::SharedPtr\\>\>\>\> | The list of differences between texts. | + +### ReturnValue + +Markown text. +## Remarks + + + + + + diffrences + + + The list of differences between texts. + + + +## See Also + +* Class [DiffOperation](../../../aspose.pdf.comparison.diff/diffoperation/) +* Class [MarkdownDiffOutputGenerator](../) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../../) +* Library [Aspose.PDF for C++](../../../) +## MarkdownDiffOutputGenerator::GenerateOutput(System::SharedPtr\\>\>\>\>, System::String) method + + +Generates the output based on the differences between texts and saves it to a file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Comparison::OutputGenerator::MarkdownDiffOutputGenerator::GenerateOutput(System::SharedPtr>>>> diffrences, System::String targetFilePath) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| diffrences | System::SharedPtr\\>\>\>\> | The list of differences between texts. | +| targetFilePath | System::String | The path of the target file to save the output. | +## Remarks + + + + + + diffrences + + + The list of differences between texts. + + + + + targetFilePath + + + The path of the target file to save the output. + + + +## See Also + +* Class [DiffOperation](../../../aspose.pdf.comparison.diff/diffoperation/) +* Class [MarkdownDiffOutputGenerator](../) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.outputgenerator/markdowndiffoutputgenerator/markdowndiffoutputgenerator/_index.md b/english/cpp/aspose.pdf.comparison.outputgenerator/markdowndiffoutputgenerator/markdowndiffoutputgenerator/_index.md new file mode 100644 index 0000000000..3f649c2c9a --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.outputgenerator/markdowndiffoutputgenerator/markdowndiffoutputgenerator/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Comparison::OutputGenerator::MarkdownDiffOutputGenerator::MarkdownDiffOutputGenerator constructor +linktitle: MarkdownDiffOutputGenerator +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::OutputGenerator::MarkdownDiffOutputGenerator::MarkdownDiffOutputGenerator constructor. Creates an instance of MarkdownDiffOutputGenerator class in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.comparison.outputgenerator/markdowndiffoutputgenerator/markdowndiffoutputgenerator/ +--- +## MarkdownDiffOutputGenerator::MarkdownDiffOutputGenerator constructor + + +Creates an instance of [MarkdownDiffOutputGenerator](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Comparison::OutputGenerator::MarkdownDiffOutputGenerator::MarkdownDiffOutputGenerator() +``` + +## See Also + +* Class [MarkdownDiffOutputGenerator](../) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/_index.md b/english/cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/_index.md new file mode 100644 index 0000000000..4f84ecdda4 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/_index.md @@ -0,0 +1,35 @@ +--- +title: Aspose::Pdf::Comparison::OutputGenerator::OutputTextStyle class +linktitle: OutputTextStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::OutputGenerator::OutputTextStyle class. Represents a style set class for marking text changes in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/ +--- +## OutputTextStyle class + + +Represents a style set class for marking text changes. + +```cpp +class OutputTextStyle : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_DeletedStyle](./get_deletedstyle/)() const | Get and set a text style for deleted text. | +| [get_EqualStyle](./get_equalstyle/)() const | Get and set a text style for non changed text. | +| [get_InsertedStyle](./get_insertedstyle/)() const | Get and set a text style for inserted text. | +| [get_StrikethroughDeleted](./get_strikethroughdeleted/)() const | Get or set text-decoration: line-through style for the delete operation. Default value is **False**. | +| [OutputTextStyle](./outputtextstyle/)() | | +| [set_DeletedStyle](./set_deletedstyle/)(System::SharedPtr\) | Get and set a text style for deleted text. | +| [set_EqualStyle](./set_equalstyle/)(System::SharedPtr\) | Get and set a text style for non changed text. | +| [set_InsertedStyle](./set_insertedstyle/)(System::SharedPtr\) | Get and set a text style for inserted text. | +| [set_StrikethroughDeleted](./set_strikethroughdeleted/)(bool) | Get or set text-decoration: line-through style for the delete operation. Default value is **False**. | +## See Also + +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/get_deletedstyle/_index.md b/english/cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/get_deletedstyle/_index.md new file mode 100644 index 0000000000..43e256192f --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/get_deletedstyle/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Comparison::OutputGenerator::OutputTextStyle::get_DeletedStyle method +linktitle: get_DeletedStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::OutputGenerator::OutputTextStyle::get_DeletedStyle method. Get and set a text style for deleted text in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/get_deletedstyle/ +--- +## OutputTextStyle::get_DeletedStyle method + + +Get and set a text style for deleted text. + +```cpp +ASPOSE_PDF_SHARED_API const System::SharedPtr & Aspose::Pdf::Comparison::OutputGenerator::OutputTextStyle::get_DeletedStyle() const +``` + +## See Also + +* Class [TextStyle](../../textstyle/) +* Class [OutputTextStyle](../) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/get_equalstyle/_index.md b/english/cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/get_equalstyle/_index.md new file mode 100644 index 0000000000..fc0cf84688 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/get_equalstyle/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Comparison::OutputGenerator::OutputTextStyle::get_EqualStyle method +linktitle: get_EqualStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::OutputGenerator::OutputTextStyle::get_EqualStyle method. Get and set a text style for non changed text in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/get_equalstyle/ +--- +## OutputTextStyle::get_EqualStyle method + + +Get and set a text style for non changed text. + +```cpp +ASPOSE_PDF_SHARED_API const System::SharedPtr & Aspose::Pdf::Comparison::OutputGenerator::OutputTextStyle::get_EqualStyle() const +``` + +## See Also + +* Class [TextStyle](../../textstyle/) +* Class [OutputTextStyle](../) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/get_insertedstyle/_index.md b/english/cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/get_insertedstyle/_index.md new file mode 100644 index 0000000000..54cdc36724 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/get_insertedstyle/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Comparison::OutputGenerator::OutputTextStyle::get_InsertedStyle method +linktitle: get_InsertedStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::OutputGenerator::OutputTextStyle::get_InsertedStyle method. Get and set a text style for inserted text in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/get_insertedstyle/ +--- +## OutputTextStyle::get_InsertedStyle method + + +Get and set a text style for inserted text. + +```cpp +ASPOSE_PDF_SHARED_API const System::SharedPtr & Aspose::Pdf::Comparison::OutputGenerator::OutputTextStyle::get_InsertedStyle() const +``` + +## See Also + +* Class [TextStyle](../../textstyle/) +* Class [OutputTextStyle](../) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/get_strikethroughdeleted/_index.md b/english/cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/get_strikethroughdeleted/_index.md new file mode 100644 index 0000000000..11f31f8065 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/get_strikethroughdeleted/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Comparison::OutputGenerator::OutputTextStyle::get_StrikethroughDeleted method +linktitle: get_StrikethroughDeleted +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::OutputGenerator::OutputTextStyle::get_StrikethroughDeleted method. Get or set text-decoration: line-through style for the delete operation. Default value is False in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/get_strikethroughdeleted/ +--- +## OutputTextStyle::get_StrikethroughDeleted method + + +Get or set text-decoration: line-through style for the delete operation. Default value is **False**. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Comparison::OutputGenerator::OutputTextStyle::get_StrikethroughDeleted() const +``` + +## See Also + +* Class [OutputTextStyle](../) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/outputtextstyle/_index.md b/english/cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/outputtextstyle/_index.md new file mode 100644 index 0000000000..a8f8467d0c --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/outputtextstyle/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Comparison::OutputGenerator::OutputTextStyle::OutputTextStyle constructor +linktitle: OutputTextStyle +second_title: Aspose.PDF for C++ API Reference +description: 'How to use OutputTextStyle constructor of Aspose::Pdf::Comparison::OutputGenerator::OutputTextStyle class in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/outputtextstyle/ +--- +## OutputTextStyle::OutputTextStyle constructor + + + + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Comparison::OutputGenerator::OutputTextStyle::OutputTextStyle() +``` + +## See Also + +* Class [OutputTextStyle](../) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/set_deletedstyle/_index.md b/english/cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/set_deletedstyle/_index.md new file mode 100644 index 0000000000..c8f16c0411 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/set_deletedstyle/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Comparison::OutputGenerator::OutputTextStyle::set_DeletedStyle method +linktitle: set_DeletedStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::OutputGenerator::OutputTextStyle::set_DeletedStyle method. Get and set a text style for deleted text in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/set_deletedstyle/ +--- +## OutputTextStyle::set_DeletedStyle method + + +Get and set a text style for deleted text. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Comparison::OutputGenerator::OutputTextStyle::set_DeletedStyle(System::SharedPtr value) +``` + +## See Also + +* Class [TextStyle](../../textstyle/) +* Class [OutputTextStyle](../) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/set_equalstyle/_index.md b/english/cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/set_equalstyle/_index.md new file mode 100644 index 0000000000..191faadc50 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/set_equalstyle/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Comparison::OutputGenerator::OutputTextStyle::set_EqualStyle method +linktitle: set_EqualStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::OutputGenerator::OutputTextStyle::set_EqualStyle method. Get and set a text style for non changed text in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/set_equalstyle/ +--- +## OutputTextStyle::set_EqualStyle method + + +Get and set a text style for non changed text. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Comparison::OutputGenerator::OutputTextStyle::set_EqualStyle(System::SharedPtr value) +``` + +## See Also + +* Class [TextStyle](../../textstyle/) +* Class [OutputTextStyle](../) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/set_insertedstyle/_index.md b/english/cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/set_insertedstyle/_index.md new file mode 100644 index 0000000000..b947ea4657 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/set_insertedstyle/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Comparison::OutputGenerator::OutputTextStyle::set_InsertedStyle method +linktitle: set_InsertedStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::OutputGenerator::OutputTextStyle::set_InsertedStyle method. Get and set a text style for inserted text in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/set_insertedstyle/ +--- +## OutputTextStyle::set_InsertedStyle method + + +Get and set a text style for inserted text. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Comparison::OutputGenerator::OutputTextStyle::set_InsertedStyle(System::SharedPtr value) +``` + +## See Also + +* Class [TextStyle](../../textstyle/) +* Class [OutputTextStyle](../) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/set_strikethroughdeleted/_index.md b/english/cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/set_strikethroughdeleted/_index.md new file mode 100644 index 0000000000..64785425d9 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/set_strikethroughdeleted/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Comparison::OutputGenerator::OutputTextStyle::set_StrikethroughDeleted method +linktitle: set_StrikethroughDeleted +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::OutputGenerator::OutputTextStyle::set_StrikethroughDeleted method. Get or set text-decoration: line-through style for the delete operation. Default value is False in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.comparison.outputgenerator/outputtextstyle/set_strikethroughdeleted/ +--- +## OutputTextStyle::set_StrikethroughDeleted method + + +Get or set text-decoration: line-through style for the delete operation. Default value is **False**. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Comparison::OutputGenerator::OutputTextStyle::set_StrikethroughDeleted(bool value) +``` + +## See Also + +* Class [OutputTextStyle](../) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.outputgenerator/pdfoutputgenerator/_index.md b/english/cpp/aspose.pdf.comparison.outputgenerator/pdfoutputgenerator/_index.md new file mode 100644 index 0000000000..8d3980f78a --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.outputgenerator/pdfoutputgenerator/_index.md @@ -0,0 +1,33 @@ +--- +title: Aspose::Pdf::Comparison::OutputGenerator::PdfOutputGenerator class +linktitle: PdfOutputGenerator +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::OutputGenerator::PdfOutputGenerator class. Represents a class for generating PDF representation of texts differences in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.comparison.outputgenerator/pdfoutputgenerator/ +--- +## PdfOutputGenerator class + + +Represents a class for generating PDF representation of texts differences. + +```cpp +class PdfOutputGenerator : public Aspose::Pdf::Comparison::OutputGenerator::IFileOutputGenerator +``` + +## Methods + +| Method | Description | +| --- | --- | +| [GenerateOutput](./generateoutput/)(System::SharedPtr\\>\>, System::String) override | Generates the output based on the differences between texts and saves it to a file. | +| [GenerateOutput](./generateoutput/)(System::SharedPtr\\>\>\>\>, System::String) override | Generates the output based on the differences between texts and saves it to a file. | +| [PdfOutputGenerator](./pdfoutputgenerator/)() | Cteates an instance of [PdfOutputGenerator](./) class. | +| [PdfOutputGenerator](./pdfoutputgenerator/)(System::SharedPtr\) | Cteates an instance of [PdfOutputGenerator](./) class. | +| [PdfOutputGenerator](./pdfoutputgenerator/)(System::SharedPtr\) | Cteates an instance of [PdfOutputGenerator](./) class. | +| [PdfOutputGenerator](./pdfoutputgenerator/)(System::SharedPtr\, System::SharedPtr\) | Cteates an instance of [PdfOutputGenerator](./) class. | +## See Also + +* Class [IFileOutputGenerator](../ifileoutputgenerator/) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.comparison.outputgenerator/pdfoutputgenerator/generateoutput/_index.md b/english/cpp/aspose.pdf.comparison.outputgenerator/pdfoutputgenerator/generateoutput/_index.md new file mode 100644 index 0000000000..1efbf9198d --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.outputgenerator/pdfoutputgenerator/generateoutput/_index.md @@ -0,0 +1,91 @@ +--- +title: Aspose::Pdf::Comparison::OutputGenerator::PdfOutputGenerator::GenerateOutput method +linktitle: GenerateOutput +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::OutputGenerator::PdfOutputGenerator::GenerateOutput method. Generates the output based on the differences between texts and saves it to a file in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.comparison.outputgenerator/pdfoutputgenerator/generateoutput/ +--- +## PdfOutputGenerator::GenerateOutput(System::SharedPtr\\>\>, System::String) method + + +Generates the output based on the differences between texts and saves it to a file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Comparison::OutputGenerator::PdfOutputGenerator::GenerateOutput(System::SharedPtr>> diffrences, System::String targetFilePath) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| diffrences | System::SharedPtr\\>\> | The list of differences between texts. | +| targetFilePath | System::String | The path of the target file to save the output. | +## Remarks + + + + + + diffrences + + + The list of differences between texts. + + + + + targetFilePath + + + The path of the target file to save the output. + + + +## See Also + +* Class [DiffOperation](../../../aspose.pdf.comparison.diff/diffoperation/) +* Class [PdfOutputGenerator](../) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfOutputGenerator::GenerateOutput(System::SharedPtr\\>\>\>\>, System::String) method + + +Generates the output based on the differences between texts and saves it to a file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Comparison::OutputGenerator::PdfOutputGenerator::GenerateOutput(System::SharedPtr>>>> diffrences, System::String targetFilePath) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| diffrences | System::SharedPtr\\>\>\>\> | The list of differences between texts. | +| targetFilePath | System::String | The path of the target file to save the output. | +## Remarks + + + + + + diffrences + + + The list of differences between texts. + + + + + targetFilePath + + + The path of the target file to save the output. + + + +## See Also + +* Class [DiffOperation](../../../aspose.pdf.comparison.diff/diffoperation/) +* Class [PdfOutputGenerator](../) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.outputgenerator/pdfoutputgenerator/pdfoutputgenerator/_index.md b/english/cpp/aspose.pdf.comparison.outputgenerator/pdfoutputgenerator/pdfoutputgenerator/_index.md new file mode 100644 index 0000000000..8a200c0119 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.outputgenerator/pdfoutputgenerator/pdfoutputgenerator/_index.md @@ -0,0 +1,129 @@ +--- +title: Aspose::Pdf::Comparison::OutputGenerator::PdfOutputGenerator::PdfOutputGenerator constructor +linktitle: PdfOutputGenerator +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::OutputGenerator::PdfOutputGenerator::PdfOutputGenerator constructor. Cteates an instance of PdfOutputGenerator class in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.comparison.outputgenerator/pdfoutputgenerator/pdfoutputgenerator/ +--- +## PdfOutputGenerator::PdfOutputGenerator() constructor + + +Cteates an instance of [PdfOutputGenerator](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Comparison::OutputGenerator::PdfOutputGenerator::PdfOutputGenerator() +``` + +## See Also + +* Class [PdfOutputGenerator](../) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfOutputGenerator::PdfOutputGenerator(System::SharedPtr\) constructor + + +Cteates an instance of [PdfOutputGenerator](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Comparison::OutputGenerator::PdfOutputGenerator::PdfOutputGenerator(System::SharedPtr pageInfo) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageInfo | System::SharedPtr\ | The page size and margins settings. | +## Remarks + + + + + + pageInfo + + + The page size and margins settings. + + + +## See Also + +* Class [PageInfo](../../../aspose.pdf/pageinfo/) +* Class [PdfOutputGenerator](../) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfOutputGenerator::PdfOutputGenerator(System::SharedPtr\) constructor + + +Cteates an instance of [PdfOutputGenerator](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Comparison::OutputGenerator::PdfOutputGenerator::PdfOutputGenerator(System::SharedPtr textStyle) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| textStyle | System::SharedPtr\ | The styles for the changed text. | +## Remarks + + + + + + textStyle + + + The styles for the changed text. + + + +## See Also + +* Class [OutputTextStyle](../../outputtextstyle/) +* Class [PdfOutputGenerator](../) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfOutputGenerator::PdfOutputGenerator(System::SharedPtr\, System::SharedPtr\) constructor + + +Cteates an instance of [PdfOutputGenerator](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Comparison::OutputGenerator::PdfOutputGenerator::PdfOutputGenerator(System::SharedPtr textStyle, System::SharedPtr pageInfo) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| textStyle | System::SharedPtr\ | The styles for the changed text. | +| pageInfo | System::SharedPtr\ | The page size and margins settings. | +## Remarks + + + + + + textStyle + + + The styles for the changed text. + + + + + pageInfo + + + The page size and margins settings. + + + +## See Also + +* Class [OutputTextStyle](../../outputtextstyle/) +* Class [PageInfo](../../../aspose.pdf/pageinfo/) +* Class [PdfOutputGenerator](../) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.outputgenerator/textstyle/_index.md b/english/cpp/aspose.pdf.comparison.outputgenerator/textstyle/_index.md new file mode 100644 index 0000000000..9d296dd1c5 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.outputgenerator/textstyle/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Comparison::OutputGenerator::TextStyle class +linktitle: TextStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::OutputGenerator::TextStyle class. Represents a text style class in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.comparison.outputgenerator/textstyle/ +--- +## TextStyle class + + +Represents a text style class. + +```cpp +class TextStyle : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_BackgroundColor](./get_backgroundcolor/)() const | Gets and sets the background color. | +| [get_Color](./get_color/)() const | Gets and sets the text color. | +| [set_BackgroundColor](./set_backgroundcolor/)(System::SharedPtr\) | Gets and sets the background color. | +| [set_Color](./set_color/)(System::SharedPtr\) | Gets and sets the text color. | +## See Also + +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.comparison.outputgenerator/textstyle/get_backgroundcolor/_index.md b/english/cpp/aspose.pdf.comparison.outputgenerator/textstyle/get_backgroundcolor/_index.md new file mode 100644 index 0000000000..b6342dac80 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.outputgenerator/textstyle/get_backgroundcolor/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Comparison::OutputGenerator::TextStyle::get_BackgroundColor method +linktitle: get_BackgroundColor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::OutputGenerator::TextStyle::get_BackgroundColor method. Gets and sets the background color in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.comparison.outputgenerator/textstyle/get_backgroundcolor/ +--- +## TextStyle::get_BackgroundColor method + + +Gets and sets the background color. + +```cpp +ASPOSE_PDF_SHARED_API const System::SharedPtr & Aspose::Pdf::Comparison::OutputGenerator::TextStyle::get_BackgroundColor() const +``` + +## See Also + +* Class [Color](../../../aspose.pdf/color/) +* Class [TextStyle](../) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.outputgenerator/textstyle/get_color/_index.md b/english/cpp/aspose.pdf.comparison.outputgenerator/textstyle/get_color/_index.md new file mode 100644 index 0000000000..521e682077 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.outputgenerator/textstyle/get_color/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Comparison::OutputGenerator::TextStyle::get_Color method +linktitle: get_Color +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::OutputGenerator::TextStyle::get_Color method. Gets and sets the text color in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.comparison.outputgenerator/textstyle/get_color/ +--- +## TextStyle::get_Color method + + +Gets and sets the text color. + +```cpp +ASPOSE_PDF_SHARED_API const System::SharedPtr & Aspose::Pdf::Comparison::OutputGenerator::TextStyle::get_Color() const +``` + +## See Also + +* Class [Color](../../../aspose.pdf/color/) +* Class [TextStyle](../) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.outputgenerator/textstyle/set_backgroundcolor/_index.md b/english/cpp/aspose.pdf.comparison.outputgenerator/textstyle/set_backgroundcolor/_index.md new file mode 100644 index 0000000000..1a0d622735 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.outputgenerator/textstyle/set_backgroundcolor/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Comparison::OutputGenerator::TextStyle::set_BackgroundColor method +linktitle: set_BackgroundColor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::OutputGenerator::TextStyle::set_BackgroundColor method. Gets and sets the background color in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.comparison.outputgenerator/textstyle/set_backgroundcolor/ +--- +## TextStyle::set_BackgroundColor method + + +Gets and sets the background color. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Comparison::OutputGenerator::TextStyle::set_BackgroundColor(System::SharedPtr value) +``` + +## See Also + +* Class [Color](../../../aspose.pdf/color/) +* Class [TextStyle](../) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.outputgenerator/textstyle/set_color/_index.md b/english/cpp/aspose.pdf.comparison.outputgenerator/textstyle/set_color/_index.md new file mode 100644 index 0000000000..197d9524fe --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.outputgenerator/textstyle/set_color/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Comparison::OutputGenerator::TextStyle::set_Color method +linktitle: set_Color +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::OutputGenerator::TextStyle::set_Color method. Gets and sets the text color in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.comparison.outputgenerator/textstyle/set_color/ +--- +## TextStyle::set_Color method + + +Gets and sets the text color. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Comparison::OutputGenerator::TextStyle::set_Color(System::SharedPtr value) +``` + +## See Also + +* Class [Color](../../../aspose.pdf/color/) +* Class [TextStyle](../) +* Namespace [Aspose::Pdf::Comparison::OutputGenerator](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.sidebysidecomparison/_index.md b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/_index.md new file mode 100644 index 0000000000..303b122952 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Comparison::SideBySideComparison namespace +linktitle: Aspose::Pdf::Comparison::SideBySideComparison +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Comparison::SideBySideComparison namespace in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.comparison.sidebysidecomparison/ +--- + + + +## Classes + +| Class | Description | +| --- | --- | +| [SideBySideComparisonOptions](./sidebysidecomparisonoptions/) | Represents an options class for comparing documents with side-by-side output. | +| [SideBySidePdfComparer](./sidebysidepdfcomparer/) | | +## Enums + +| Enum | Description | +| --- | --- | +| [ComparisonMode](./comparisonmode/) | The comparison mode enumeration. | diff --git a/english/cpp/aspose.pdf.comparison.sidebysidecomparison/comparisonmode/_index.md b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/comparisonmode/_index.md new file mode 100644 index 0000000000..57dbd3f306 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/comparisonmode/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Comparison::SideBySideComparison::ComparisonMode enum +linktitle: ComparisonMode +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::SideBySideComparison::ComparisonMode enum. The comparison mode enumeration in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.comparison.sidebysidecomparison/comparisonmode/ +--- +## ComparisonMode enum + + +The comparison mode enumeration. + +```cpp +enum class ComparisonMode +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Normal | 0 | Normal mode. Only spaces within text fragments are taken into account (depending on the way the document is generated.) | +| IgnoreSpaces | 1 | All spaces are ignored. Changes are sought only in words. | +| ParseSpaces | 2 | The mode is similar to normal, but attempts to account for visual spacing between text fragments based on distance. Recognizing the number of spaces between fragments may not be accurate because this greatly depends on how the documents are generated. If documents are created by different generators, there may be inaccuracies in comparing spaces between text fragments. | + +## See Also + +* Namespace [Aspose::Pdf::Comparison::SideBySideComparison](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/_index.md b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/_index.md new file mode 100644 index 0000000000..18bb497008 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions class +linktitle: SideBySideComparisonOptions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions class. Represents an options class for comparing documents with side-by-side output in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/ +--- +## SideBySideComparisonOptions class + + +Represents an options class for comparing documents with side-by-side output. + +```cpp +class SideBySideComparisonOptions : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_AdditionalChangeMarks](./get_additionalchangemarks/)() const | Get and set the property that determines whether additional change markers are displayed. If set, displays change marks that are not on the current page but are present on another page. If the change lacates between words, the mark may not be positioned exactly relative to the whitespace character. The default value is **false**. | +| [get_ComparisonArea1](./get_comparisonarea1/)() const | Get and set the comparison area. Used for the first page or document in the comparison method. This option can't be setted along with [ExcludeTables](../), [ExcludeAreas1](../) and [ExcludeAreas2](../) options. | +| [get_ComparisonArea2](./get_comparisonarea2/)() const | Get and set the comparison area. Used for the second page or document in the comparison method. This option can't be setted along with [ExcludeTables](../), [ExcludeAreas1](../) and [ExcludeAreas2](../) options. | +| [get_ComparisonMode](./get_comparisonmode/)() const | Gets and sets a comparison mode. The default value is [SideBySideComparison::ComparisonMode::IgnoreSpaces](../comparisonmode/). | +| [get_ExcludeAreas1](./get_excludeareas1/)() const | Get and set the exclude areas. Used for the first page or document in the comparison method. This option can be setted along with [ExcludeTables](../). This option can't be setted along with [ComparisonArea1](../) option. | +| [get_ExcludeAreas2](./get_excludeareas2/)() const | Get and set the exclude areas. Used for the second page or document in the comparison method. This option can be setted along with [ExcludeTables](../). This option can't be setted along with [ComparisonArea2](../) option. | +| [get_ExcludeTables](./get_excludetables/)() const | Get and set the option that determines whether tables are excluded from comparison. This option cannot be set together with [ComparisonArea1](../) and [ComparisonArea2](../). The default value is **false**. | +| [set_AdditionalChangeMarks](./set_additionalchangemarks/)(bool) | Get and set the property that determines whether additional change markers are displayed. If set, displays change marks that are not on the current page but are present on another page. If the change lacates between words, the mark may not be positioned exactly relative to the whitespace character. The default value is **false**. | +| [set_ComparisonArea1](./set_comparisonarea1/)(System::SharedPtr\) | Get and set the comparison area. Used for the first page or document in the comparison method. This option can't be setted along with [ExcludeTables](../), [ExcludeAreas1](../) and [ExcludeAreas2](../) options. | +| [set_ComparisonArea2](./set_comparisonarea2/)(System::SharedPtr\) | Get and set the comparison area. Used for the second page or document in the comparison method. This option can't be setted along with [ExcludeTables](../), [ExcludeAreas1](../) and [ExcludeAreas2](../) options. | +| [set_ComparisonMode](./set_comparisonmode/)(Aspose::Pdf::Comparison::SideBySideComparison::ComparisonMode) | Gets and sets a comparison mode. The default value is [SideBySideComparison::ComparisonMode::IgnoreSpaces](../comparisonmode/). | +| [set_ExcludeAreas1](./set_excludeareas1/)(System::ArrayPtr\\>) | Get and set the exclude areas. Used for the first page or document in the comparison method. This option can be setted along with [ExcludeTables](../). This option can't be setted along with [ComparisonArea1](../) option. | +| [set_ExcludeAreas2](./set_excludeareas2/)(System::ArrayPtr\\>) | Get and set the exclude areas. Used for the second page or document in the comparison method. This option can be setted along with [ExcludeTables](../). This option can't be setted along with [ComparisonArea2](../) option. | +| [set_ExcludeTables](./set_excludetables/)(bool) | Get and set the option that determines whether tables are excluded from comparison. This option cannot be set together with [ComparisonArea1](../) and [ComparisonArea2](../). The default value is **false**. | +| [SideBySideComparisonOptions](./sidebysidecomparisonoptions/)() | Creates an instance of [SideBySideComparisonOptions](./) class. | +## See Also + +* Namespace [Aspose::Pdf::Comparison::SideBySideComparison](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/get_additionalchangemarks/_index.md b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/get_additionalchangemarks/_index.md new file mode 100644 index 0000000000..c4f72d026f --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/get_additionalchangemarks/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::get_AdditionalChangeMarks method +linktitle: get_AdditionalChangeMarks +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::get_AdditionalChangeMarks method. Get and set the property that determines whether additional change markers are displayed. If set, displays change marks that are not on the current page but are present on another page. If the change lacates between words, the mark may not be positioned exactly relative to the whitespace character. The default value is false in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/get_additionalchangemarks/ +--- +## SideBySideComparisonOptions::get_AdditionalChangeMarks method + + +Get and set the property that determines whether additional change markers are displayed. If set, displays change marks that are not on the current page but are present on another page. If the change lacates between words, the mark may not be positioned exactly relative to the whitespace character. The default value is **false**. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::get_AdditionalChangeMarks() const +``` + +## See Also + +* Class [SideBySideComparisonOptions](../) +* Namespace [Aspose::Pdf::Comparison::SideBySideComparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/get_comparisonarea1/_index.md b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/get_comparisonarea1/_index.md new file mode 100644 index 0000000000..1dc225a7ab --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/get_comparisonarea1/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::get_ComparisonArea1 method +linktitle: get_ComparisonArea1 +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::get_ComparisonArea1 method. Get and set the comparison area. Used for the first page or document in the comparison method. This option can''t be setted along with ExcludeTables, ExcludeAreas1 and ExcludeAreas2 options in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/get_comparisonarea1/ +--- +## SideBySideComparisonOptions::get_ComparisonArea1 method + + +Get and set the comparison area. Used for the first page or document in the comparison method. This option can't be setted along with [ExcludeTables](../), [ExcludeAreas1](../) and [ExcludeAreas2](../) options. + +```cpp +ASPOSE_PDF_SHARED_API const System::SharedPtr & Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::get_ComparisonArea1() const +``` + +## See Also + +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [SideBySideComparisonOptions](../) +* Namespace [Aspose::Pdf::Comparison::SideBySideComparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/get_comparisonarea2/_index.md b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/get_comparisonarea2/_index.md new file mode 100644 index 0000000000..5224662954 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/get_comparisonarea2/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::get_ComparisonArea2 method +linktitle: get_ComparisonArea2 +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::get_ComparisonArea2 method. Get and set the comparison area. Used for the second page or document in the comparison method. This option can''t be setted along with ExcludeTables, ExcludeAreas1 and ExcludeAreas2 options in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/get_comparisonarea2/ +--- +## SideBySideComparisonOptions::get_ComparisonArea2 method + + +Get and set the comparison area. Used for the second page or document in the comparison method. This option can't be setted along with [ExcludeTables](../), [ExcludeAreas1](../) and [ExcludeAreas2](../) options. + +```cpp +ASPOSE_PDF_SHARED_API const System::SharedPtr & Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::get_ComparisonArea2() const +``` + +## See Also + +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [SideBySideComparisonOptions](../) +* Namespace [Aspose::Pdf::Comparison::SideBySideComparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/get_comparisonmode/_index.md b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/get_comparisonmode/_index.md new file mode 100644 index 0000000000..c07538e771 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/get_comparisonmode/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::get_ComparisonMode method +linktitle: get_ComparisonMode +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::get_ComparisonMode method. Gets and sets a comparison mode. The default value is SideBySideComparison::ComparisonMode::IgnoreSpaces in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/get_comparisonmode/ +--- +## SideBySideComparisonOptions::get_ComparisonMode method + + +Gets and sets a comparison mode. The default value is [SideBySideComparison::ComparisonMode::IgnoreSpaces](../../comparisonmode/). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Comparison::SideBySideComparison::ComparisonMode Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::get_ComparisonMode() const +``` + +## See Also + +* Enum [ComparisonMode](../../comparisonmode/) +* Class [SideBySideComparisonOptions](../) +* Namespace [Aspose::Pdf::Comparison::SideBySideComparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/get_excludeareas1/_index.md b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/get_excludeareas1/_index.md new file mode 100644 index 0000000000..6e14b27669 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/get_excludeareas1/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::get_ExcludeAreas1 method +linktitle: get_ExcludeAreas1 +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::get_ExcludeAreas1 method. Get and set the exclude areas. Used for the first page or document in the comparison method. This option can be setted along with ExcludeTables. This option can''t be setted along with ComparisonArea1 option in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/get_excludeareas1/ +--- +## SideBySideComparisonOptions::get_ExcludeAreas1 method + + +Get and set the exclude areas. Used for the first page or document in the comparison method. This option can be setted along with [ExcludeTables](../). This option can't be setted along with [ComparisonArea1](../) option. + +```cpp +ASPOSE_PDF_SHARED_API const System::ArrayPtr> & Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::get_ExcludeAreas1() const +``` + +## See Also + +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [SideBySideComparisonOptions](../) +* Namespace [Aspose::Pdf::Comparison::SideBySideComparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/get_excludeareas2/_index.md b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/get_excludeareas2/_index.md new file mode 100644 index 0000000000..d8e7452c4f --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/get_excludeareas2/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::get_ExcludeAreas2 method +linktitle: get_ExcludeAreas2 +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::get_ExcludeAreas2 method. Get and set the exclude areas. Used for the second page or document in the comparison method. This option can be setted along with ExcludeTables. This option can''t be setted along with ComparisonArea2 option in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/get_excludeareas2/ +--- +## SideBySideComparisonOptions::get_ExcludeAreas2 method + + +Get and set the exclude areas. Used for the second page or document in the comparison method. This option can be setted along with [ExcludeTables](../). This option can't be setted along with [ComparisonArea2](../) option. + +```cpp +ASPOSE_PDF_SHARED_API const System::ArrayPtr> & Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::get_ExcludeAreas2() const +``` + +## See Also + +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [SideBySideComparisonOptions](../) +* Namespace [Aspose::Pdf::Comparison::SideBySideComparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/get_excludetables/_index.md b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/get_excludetables/_index.md new file mode 100644 index 0000000000..4d8ce3ad3c --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/get_excludetables/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::get_ExcludeTables method +linktitle: get_ExcludeTables +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::get_ExcludeTables method. Get and set the option that determines whether tables are excluded from comparison. This option cannot be set together with ComparisonArea1 and ComparisonArea2. The default value is false in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/get_excludetables/ +--- +## SideBySideComparisonOptions::get_ExcludeTables method + + +Get and set the option that determines whether tables are excluded from comparison. This option cannot be set together with [ComparisonArea1](../) and [ComparisonArea2](../). The default value is **false**. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::get_ExcludeTables() const +``` + +## See Also + +* Class [SideBySideComparisonOptions](../) +* Namespace [Aspose::Pdf::Comparison::SideBySideComparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/set_additionalchangemarks/_index.md b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/set_additionalchangemarks/_index.md new file mode 100644 index 0000000000..6fa32e1b12 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/set_additionalchangemarks/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::set_AdditionalChangeMarks method +linktitle: set_AdditionalChangeMarks +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::set_AdditionalChangeMarks method. Get and set the property that determines whether additional change markers are displayed. If set, displays change marks that are not on the current page but are present on another page. If the change lacates between words, the mark may not be positioned exactly relative to the whitespace character. The default value is false in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/set_additionalchangemarks/ +--- +## SideBySideComparisonOptions::set_AdditionalChangeMarks method + + +Get and set the property that determines whether additional change markers are displayed. If set, displays change marks that are not on the current page but are present on another page. If the change lacates between words, the mark may not be positioned exactly relative to the whitespace character. The default value is **false**. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::set_AdditionalChangeMarks(bool value) +``` + +## See Also + +* Class [SideBySideComparisonOptions](../) +* Namespace [Aspose::Pdf::Comparison::SideBySideComparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/set_comparisonarea1/_index.md b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/set_comparisonarea1/_index.md new file mode 100644 index 0000000000..cc8799d6a9 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/set_comparisonarea1/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::set_ComparisonArea1 method +linktitle: set_ComparisonArea1 +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::set_ComparisonArea1 method. Get and set the comparison area. Used for the first page or document in the comparison method. This option can''t be setted along with ExcludeTables, ExcludeAreas1 and ExcludeAreas2 options in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/set_comparisonarea1/ +--- +## SideBySideComparisonOptions::set_ComparisonArea1 method + + +Get and set the comparison area. Used for the first page or document in the comparison method. This option can't be setted along with [ExcludeTables](../), [ExcludeAreas1](../) and [ExcludeAreas2](../) options. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::set_ComparisonArea1(System::SharedPtr value) +``` + +## See Also + +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [SideBySideComparisonOptions](../) +* Namespace [Aspose::Pdf::Comparison::SideBySideComparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/set_comparisonarea2/_index.md b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/set_comparisonarea2/_index.md new file mode 100644 index 0000000000..48edc875ed --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/set_comparisonarea2/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::set_ComparisonArea2 method +linktitle: set_ComparisonArea2 +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::set_ComparisonArea2 method. Get and set the comparison area. Used for the second page or document in the comparison method. This option can''t be setted along with ExcludeTables, ExcludeAreas1 and ExcludeAreas2 options in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/set_comparisonarea2/ +--- +## SideBySideComparisonOptions::set_ComparisonArea2 method + + +Get and set the comparison area. Used for the second page or document in the comparison method. This option can't be setted along with [ExcludeTables](../), [ExcludeAreas1](../) and [ExcludeAreas2](../) options. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::set_ComparisonArea2(System::SharedPtr value) +``` + +## See Also + +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [SideBySideComparisonOptions](../) +* Namespace [Aspose::Pdf::Comparison::SideBySideComparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/set_comparisonmode/_index.md b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/set_comparisonmode/_index.md new file mode 100644 index 0000000000..78df27a5e8 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/set_comparisonmode/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::set_ComparisonMode method +linktitle: set_ComparisonMode +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::set_ComparisonMode method. Gets and sets a comparison mode. The default value is SideBySideComparison::ComparisonMode::IgnoreSpaces in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/set_comparisonmode/ +--- +## SideBySideComparisonOptions::set_ComparisonMode method + + +Gets and sets a comparison mode. The default value is [SideBySideComparison::ComparisonMode::IgnoreSpaces](../../comparisonmode/). + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::set_ComparisonMode(Aspose::Pdf::Comparison::SideBySideComparison::ComparisonMode value) +``` + +## See Also + +* Enum [ComparisonMode](../../comparisonmode/) +* Class [SideBySideComparisonOptions](../) +* Namespace [Aspose::Pdf::Comparison::SideBySideComparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/set_excludeareas1/_index.md b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/set_excludeareas1/_index.md new file mode 100644 index 0000000000..4aced085ad --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/set_excludeareas1/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::set_ExcludeAreas1 method +linktitle: set_ExcludeAreas1 +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::set_ExcludeAreas1 method. Get and set the exclude areas. Used for the first page or document in the comparison method. This option can be setted along with ExcludeTables. This option can''t be setted along with ComparisonArea1 option in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/set_excludeareas1/ +--- +## SideBySideComparisonOptions::set_ExcludeAreas1 method + + +Get and set the exclude areas. Used for the first page or document in the comparison method. This option can be setted along with [ExcludeTables](../). This option can't be setted along with [ComparisonArea1](../) option. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::set_ExcludeAreas1(System::ArrayPtr> value) +``` + +## See Also + +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [SideBySideComparisonOptions](../) +* Namespace [Aspose::Pdf::Comparison::SideBySideComparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/set_excludeareas2/_index.md b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/set_excludeareas2/_index.md new file mode 100644 index 0000000000..514515ecb6 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/set_excludeareas2/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::set_ExcludeAreas2 method +linktitle: set_ExcludeAreas2 +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::set_ExcludeAreas2 method. Get and set the exclude areas. Used for the second page or document in the comparison method. This option can be setted along with ExcludeTables. This option can''t be setted along with ComparisonArea2 option in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/set_excludeareas2/ +--- +## SideBySideComparisonOptions::set_ExcludeAreas2 method + + +Get and set the exclude areas. Used for the second page or document in the comparison method. This option can be setted along with [ExcludeTables](../). This option can't be setted along with [ComparisonArea2](../) option. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::set_ExcludeAreas2(System::ArrayPtr> value) +``` + +## See Also + +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [SideBySideComparisonOptions](../) +* Namespace [Aspose::Pdf::Comparison::SideBySideComparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/set_excludetables/_index.md b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/set_excludetables/_index.md new file mode 100644 index 0000000000..cfb1157749 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/set_excludetables/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::set_ExcludeTables method +linktitle: set_ExcludeTables +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::set_ExcludeTables method. Get and set the option that determines whether tables are excluded from comparison. This option cannot be set together with ComparisonArea1 and ComparisonArea2. The default value is false in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/set_excludetables/ +--- +## SideBySideComparisonOptions::set_ExcludeTables method + + +Get and set the option that determines whether tables are excluded from comparison. This option cannot be set together with [ComparisonArea1](../) and [ComparisonArea2](../). The default value is **false**. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::set_ExcludeTables(bool value) +``` + +## See Also + +* Class [SideBySideComparisonOptions](../) +* Namespace [Aspose::Pdf::Comparison::SideBySideComparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/sidebysidecomparisonoptions/_index.md b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/sidebysidecomparisonoptions/_index.md new file mode 100644 index 0000000000..fde02fccba --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/sidebysidecomparisonoptions/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::SideBySideComparisonOptions constructor +linktitle: SideBySideComparisonOptions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::SideBySideComparisonOptions constructor. Creates an instance of SideBySideComparisonOptions class in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidecomparisonoptions/sidebysidecomparisonoptions/ +--- +## SideBySideComparisonOptions::SideBySideComparisonOptions constructor + + +Creates an instance of [SideBySideComparisonOptions](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Comparison::SideBySideComparison::SideBySideComparisonOptions::SideBySideComparisonOptions() +``` + +## See Also + +* Class [SideBySideComparisonOptions](../) +* Namespace [Aspose::Pdf::Comparison::SideBySideComparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidepdfcomparer/_index.md b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidepdfcomparer/_index.md new file mode 100644 index 0000000000..703f31e936 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidepdfcomparer/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Comparison::SideBySideComparison::SideBySidePdfComparer class +linktitle: SideBySidePdfComparer +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Comparison::SideBySideComparison::SideBySidePdfComparer class in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidepdfcomparer/ +--- +## SideBySidePdfComparer class + + + + +```cpp +class SideBySidePdfComparer +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [Compare](./compare/)(System::SharedPtr\, System::SharedPtr\, System::String, System::SharedPtr\) | Compares two pages. The result is saved in a PDF document in which the first page is written first, and then the second. You can open it in Adobe Acrobat in Two-page view to see the changes side by side. Deletions are noted on the page on the left, and insertions are noted on the page on the right. | +| static [Compare](./compare/)(System::SharedPtr\, System::SharedPtr\, System::String, System::SharedPtr\) | Compares two documents. The pages are compared one by one. The pages of the compared documents are copied one after another into the resulting document. First the first page from the first document, then the first page from the second document. Next is the second one from the first document and then the second one from the second document, etc. You can open it in Adobe Acrobat in Two-page view to see the changes side by side. Deletions are noted on the page on the left, and insertions are noted on the page on the right. | +| [SideBySidePdfComparer](./sidebysidepdfcomparer/)() | | +## See Also + +* Namespace [Aspose::Pdf::Comparison::SideBySideComparison](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidepdfcomparer/compare/_index.md b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidepdfcomparer/compare/_index.md new file mode 100644 index 0000000000..d2f9c4bc53 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidepdfcomparer/compare/_index.md @@ -0,0 +1,129 @@ +--- +title: Aspose::Pdf::Comparison::SideBySideComparison::SideBySidePdfComparer::Compare method +linktitle: Compare +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::SideBySideComparison::SideBySidePdfComparer::Compare method. Compares two pages. The result is saved in a PDF document in which the first page is written first, and then the second. You can open it in Adobe Acrobat in Two-page view to see the changes side by side. Deletions are noted on the page on the left, and insertions are noted on the page on the right in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidepdfcomparer/compare/ +--- +## SideBySidePdfComparer::Compare(System::SharedPtr\, System::SharedPtr\, System::String, System::SharedPtr\) method + + +Compares two pages. The result is saved in a PDF document in which the first page is written first, and then the second. You can open it in Adobe Acrobat in Two-page view to see the changes side by side. Deletions are noted on the page on the left, and insertions are noted on the page on the right. + +```cpp +static ASPOSE_PDF_SHARED_API void Aspose::Pdf::Comparison::SideBySideComparison::SideBySidePdfComparer::Compare(System::SharedPtr page1, System::SharedPtr page2, System::String targetPdfPath, System::SharedPtr options) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page1 | System::SharedPtr\ | The first page to compare. | +| page2 | System::SharedPtr\ | The first page to compare. | +| targetPdfPath | System::String | The path to PDF-file to save a comparison result. | +| options | System::SharedPtr\ | The comparison options. | +## Remarks + + + + + + page1 + + + The first page to compare. + + + + + page2 + + + The first page to compare. + + + + + targetPdfPath + + + The path to PDF-file to save a comparison result. + + + + + options + + + The comparison options. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [SideBySideComparisonOptions](../../sidebysidecomparisonoptions/) +* Class [SideBySidePdfComparer](../) +* Namespace [Aspose::Pdf::Comparison::SideBySideComparison](../../) +* Library [Aspose.PDF for C++](../../../) +## SideBySidePdfComparer::Compare(System::SharedPtr\, System::SharedPtr\, System::String, System::SharedPtr\) method + + +Compares two documents. The pages are compared one by one. The pages of the compared documents are copied one after another into the resulting document. First the first page from the first document, then the first page from the second document. Next is the second one from the first document and then the second one from the second document, etc. You can open it in Adobe Acrobat in Two-page view to see the changes side by side. Deletions are noted on the page on the left, and insertions are noted on the page on the right. + +```cpp +static ASPOSE_PDF_SHARED_API void Aspose::Pdf::Comparison::SideBySideComparison::SideBySidePdfComparer::Compare(System::SharedPtr document1, System::SharedPtr document2, System::String targetPdfPath, System::SharedPtr options) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document1 | System::SharedPtr\ | The first document to compare. | +| document2 | System::SharedPtr\ | The second document to compare. | +| targetPdfPath | System::String | The path to PDF-file to save a comparison result. | +| options | System::SharedPtr\ | The comparison options. | +## Remarks + + + + + + document1 + + + The first document to compare. + + + + + document2 + + + The second document to compare. + + + + + targetPdfPath + + + The path to PDF-file to save a comparison result. + + + + + options + + + The comparison options. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [SideBySideComparisonOptions](../../sidebysidecomparisonoptions/) +* Class [SideBySidePdfComparer](../) +* Namespace [Aspose::Pdf::Comparison::SideBySideComparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidepdfcomparer/sidebysidepdfcomparer/_index.md b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidepdfcomparer/sidebysidepdfcomparer/_index.md new file mode 100644 index 0000000000..128959e3df --- /dev/null +++ b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidepdfcomparer/sidebysidepdfcomparer/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Comparison::SideBySideComparison::SideBySidePdfComparer::SideBySidePdfComparer constructor +linktitle: SideBySidePdfComparer +second_title: Aspose.PDF for C++ API Reference +description: 'How to use SideBySidePdfComparer constructor of Aspose::Pdf::Comparison::SideBySideComparison::SideBySidePdfComparer class in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.comparison.sidebysidecomparison/sidebysidepdfcomparer/sidebysidepdfcomparer/ +--- +## SideBySidePdfComparer::SideBySidePdfComparer constructor + + + + +```cpp +Aspose::Pdf::Comparison::SideBySideComparison::SideBySidePdfComparer::SideBySidePdfComparer()=delete +``` + +## See Also + +* Class [SideBySidePdfComparer](../) +* Namespace [Aspose::Pdf::Comparison::SideBySideComparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison/_index.md b/english/cpp/aspose.pdf.comparison/_index.md new file mode 100644 index 0000000000..52dd3efa24 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison/_index.md @@ -0,0 +1,26 @@ +--- +title: Aspose::Pdf::Comparison namespace +linktitle: Aspose::Pdf::Comparison +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Comparison namespace in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.comparison/ +--- + + + +## Classes + +| Class | Description | +| --- | --- | +| [ComparisonOptions](./comparisonoptions/) | Represents a PDF document comparison options class. | +| [ComparisonStatisticsBuilder](./comparisonstatisticsbuilder/) | Represents a class for building comparison statistics. | +| [DocumentComparisonStatistics](./documentcomparisonstatistics/) | Represents a document comparison statistics class. | +| [TextItemComparisonStatistics](./textitemcomparisonstatistics/) | Represents a text comparison ststistics class. | +| [TextPdfComparer](./textpdfcomparer/) | Represents a class to comparison two PDF pages or PDF documents. | +## Enums + +| Enum | Description | +| --- | --- | +| [EditOperationsOrder](./editoperationsorder/) | Specifies the order of edit operations. | diff --git a/english/cpp/aspose.pdf.comparison/comparisonoptions/_index.md b/english/cpp/aspose.pdf.comparison/comparisonoptions/_index.md new file mode 100644 index 0000000000..a052b48da7 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison/comparisonoptions/_index.md @@ -0,0 +1,37 @@ +--- +title: Aspose::Pdf::Comparison::ComparisonOptions class +linktitle: ComparisonOptions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::ComparisonOptions class. Represents a PDF document comparison options class in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.comparison/comparisonoptions/ +--- +## ComparisonOptions class + + +Represents a PDF document comparison options class. + +```cpp +class ComparisonOptions : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [ComparisonOptions](./comparisonoptions/)() | Creates a [ComparisonOptions](./) class instance. | +| [get_EditOperationsOrder](./get_editoperationsorder/)() const | Gets and sets the edit operations order. | +| [get_ExcludeAreas1](./get_excludeareas1/)() const | Get and set the exclude areas. Used for the first page or document in the comparison method. This option can be setted along with [ExcludeTables](../). This option can't be setted along with [ExtractionArea](../) option. | +| [get_ExcludeAreas2](./get_excludeareas2/)() const | Get and set the exclude areas. Used for the second page or document in the comparison method. This option can be setted along with [ExcludeTables](../). This option can't be setted along with [ExtractionArea](../) option. | +| [get_ExcludeTables](./get_excludetables/)() const | Get and set the option that determines whether tables are excluded from comparison. This option cannot be set together with [ExtractionArea](../) option. The default value is **false**. | +| [get_ExtractionArea](./get_extractionarea/)() const | Get and set the rectangular area in which the text of pages will be compared. This option can't be setted along with [ExcludeTables](../), [ExcludeAreas1](../) and [ExcludeAreas2](../) options. | +| [set_EditOperationsOrder](./set_editoperationsorder/)(Aspose::Pdf::Comparison::EditOperationsOrder) | Gets and sets the edit operations order. | +| [set_ExcludeAreas1](./set_excludeareas1/)(System::ArrayPtr\\>) | Get and set the exclude areas. Used for the first page or document in the comparison method. This option can be setted along with [ExcludeTables](../). This option can't be setted along with [ExtractionArea](../) option. | +| [set_ExcludeAreas2](./set_excludeareas2/)(System::ArrayPtr\\>) | Get and set the exclude areas. Used for the second page or document in the comparison method. This option can be setted along with [ExcludeTables](../). This option can't be setted along with [ExtractionArea](../) option. | +| [set_ExcludeTables](./set_excludetables/)(bool) | Get and set the option that determines whether tables are excluded from comparison. This option cannot be set together with [ExtractionArea](../) option. The default value is **false**. | +| [set_ExtractionArea](./set_extractionarea/)(System::SharedPtr\) | Get and set the rectangular area in which the text of pages will be compared. This option can't be setted along with [ExcludeTables](../), [ExcludeAreas1](../) and [ExcludeAreas2](../) options. | +## See Also + +* Namespace [Aspose::Pdf::Comparison](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.comparison/comparisonoptions/comparisonoptions/_index.md b/english/cpp/aspose.pdf.comparison/comparisonoptions/comparisonoptions/_index.md new file mode 100644 index 0000000000..16e923f917 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison/comparisonoptions/comparisonoptions/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Comparison::ComparisonOptions::ComparisonOptions constructor +linktitle: ComparisonOptions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::ComparisonOptions::ComparisonOptions constructor. Creates a ComparisonOptions class instance in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.comparison/comparisonoptions/comparisonoptions/ +--- +## ComparisonOptions::ComparisonOptions constructor + + +Creates a [ComparisonOptions](../) class instance. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Comparison::ComparisonOptions::ComparisonOptions() +``` + +## See Also + +* Class [ComparisonOptions](../) +* Namespace [Aspose::Pdf::Comparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison/comparisonoptions/get_editoperationsorder/_index.md b/english/cpp/aspose.pdf.comparison/comparisonoptions/get_editoperationsorder/_index.md new file mode 100644 index 0000000000..bed9c09a69 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison/comparisonoptions/get_editoperationsorder/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Comparison::ComparisonOptions::get_EditOperationsOrder method +linktitle: get_EditOperationsOrder +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::ComparisonOptions::get_EditOperationsOrder method. Gets and sets the edit operations order in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.comparison/comparisonoptions/get_editoperationsorder/ +--- +## ComparisonOptions::get_EditOperationsOrder method + + +Gets and sets the edit operations order. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Comparison::EditOperationsOrder Aspose::Pdf::Comparison::ComparisonOptions::get_EditOperationsOrder() const +``` + +## See Also + +* Enum [EditOperationsOrder](../../editoperationsorder/) +* Class [ComparisonOptions](../) +* Namespace [Aspose::Pdf::Comparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison/comparisonoptions/get_excludeareas1/_index.md b/english/cpp/aspose.pdf.comparison/comparisonoptions/get_excludeareas1/_index.md new file mode 100644 index 0000000000..971d0628b5 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison/comparisonoptions/get_excludeareas1/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Comparison::ComparisonOptions::get_ExcludeAreas1 method +linktitle: get_ExcludeAreas1 +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::ComparisonOptions::get_ExcludeAreas1 method. Get and set the exclude areas. Used for the first page or document in the comparison method. This option can be setted along with ExcludeTables. This option can''t be setted along with ExtractionArea option in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.comparison/comparisonoptions/get_excludeareas1/ +--- +## ComparisonOptions::get_ExcludeAreas1 method + + +Get and set the exclude areas. Used for the first page or document in the comparison method. This option can be setted along with [ExcludeTables](../). This option can't be setted along with [ExtractionArea](../) option. + +```cpp +ASPOSE_PDF_SHARED_API const System::ArrayPtr> & Aspose::Pdf::Comparison::ComparisonOptions::get_ExcludeAreas1() const +``` + +## See Also + +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [ComparisonOptions](../) +* Namespace [Aspose::Pdf::Comparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison/comparisonoptions/get_excludeareas2/_index.md b/english/cpp/aspose.pdf.comparison/comparisonoptions/get_excludeareas2/_index.md new file mode 100644 index 0000000000..916b1bbdd3 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison/comparisonoptions/get_excludeareas2/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Comparison::ComparisonOptions::get_ExcludeAreas2 method +linktitle: get_ExcludeAreas2 +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::ComparisonOptions::get_ExcludeAreas2 method. Get and set the exclude areas. Used for the second page or document in the comparison method. This option can be setted along with ExcludeTables. This option can''t be setted along with ExtractionArea option in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.comparison/comparisonoptions/get_excludeareas2/ +--- +## ComparisonOptions::get_ExcludeAreas2 method + + +Get and set the exclude areas. Used for the second page or document in the comparison method. This option can be setted along with [ExcludeTables](../). This option can't be setted along with [ExtractionArea](../) option. + +```cpp +ASPOSE_PDF_SHARED_API const System::ArrayPtr> & Aspose::Pdf::Comparison::ComparisonOptions::get_ExcludeAreas2() const +``` + +## See Also + +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [ComparisonOptions](../) +* Namespace [Aspose::Pdf::Comparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison/comparisonoptions/get_excludetables/_index.md b/english/cpp/aspose.pdf.comparison/comparisonoptions/get_excludetables/_index.md new file mode 100644 index 0000000000..f2a65ce9c9 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison/comparisonoptions/get_excludetables/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Comparison::ComparisonOptions::get_ExcludeTables method +linktitle: get_ExcludeTables +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::ComparisonOptions::get_ExcludeTables method. Get and set the option that determines whether tables are excluded from comparison. This option cannot be set together with ExtractionArea option. The default value is false in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.comparison/comparisonoptions/get_excludetables/ +--- +## ComparisonOptions::get_ExcludeTables method + + +Get and set the option that determines whether tables are excluded from comparison. This option cannot be set together with [ExtractionArea](../) option. The default value is **false**. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Comparison::ComparisonOptions::get_ExcludeTables() const +``` + +## See Also + +* Class [ComparisonOptions](../) +* Namespace [Aspose::Pdf::Comparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison/comparisonoptions/get_extractionarea/_index.md b/english/cpp/aspose.pdf.comparison/comparisonoptions/get_extractionarea/_index.md new file mode 100644 index 0000000000..7919c9de35 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison/comparisonoptions/get_extractionarea/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Comparison::ComparisonOptions::get_ExtractionArea method +linktitle: get_ExtractionArea +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::ComparisonOptions::get_ExtractionArea method. Get and set the rectangular area in which the text of pages will be compared. This option can''t be setted along with ExcludeTables, ExcludeAreas1 and ExcludeAreas2 options in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.comparison/comparisonoptions/get_extractionarea/ +--- +## ComparisonOptions::get_ExtractionArea method + + +Get and set the rectangular area in which the text of pages will be compared. This option can't be setted along with [ExcludeTables](../), [ExcludeAreas1](../) and [ExcludeAreas2](../) options. + +```cpp +ASPOSE_PDF_SHARED_API const System::SharedPtr & Aspose::Pdf::Comparison::ComparisonOptions::get_ExtractionArea() const +``` + +## See Also + +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [ComparisonOptions](../) +* Namespace [Aspose::Pdf::Comparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison/comparisonoptions/set_editoperationsorder/_index.md b/english/cpp/aspose.pdf.comparison/comparisonoptions/set_editoperationsorder/_index.md new file mode 100644 index 0000000000..e2e01f0b8e --- /dev/null +++ b/english/cpp/aspose.pdf.comparison/comparisonoptions/set_editoperationsorder/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Comparison::ComparisonOptions::set_EditOperationsOrder method +linktitle: set_EditOperationsOrder +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::ComparisonOptions::set_EditOperationsOrder method. Gets and sets the edit operations order in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.comparison/comparisonoptions/set_editoperationsorder/ +--- +## ComparisonOptions::set_EditOperationsOrder method + + +Gets and sets the edit operations order. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Comparison::ComparisonOptions::set_EditOperationsOrder(Aspose::Pdf::Comparison::EditOperationsOrder value) +``` + +## See Also + +* Enum [EditOperationsOrder](../../editoperationsorder/) +* Class [ComparisonOptions](../) +* Namespace [Aspose::Pdf::Comparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison/comparisonoptions/set_excludeareas1/_index.md b/english/cpp/aspose.pdf.comparison/comparisonoptions/set_excludeareas1/_index.md new file mode 100644 index 0000000000..4b27f93ad7 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison/comparisonoptions/set_excludeareas1/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Comparison::ComparisonOptions::set_ExcludeAreas1 method +linktitle: set_ExcludeAreas1 +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::ComparisonOptions::set_ExcludeAreas1 method. Get and set the exclude areas. Used for the first page or document in the comparison method. This option can be setted along with ExcludeTables. This option can''t be setted along with ExtractionArea option in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.comparison/comparisonoptions/set_excludeareas1/ +--- +## ComparisonOptions::set_ExcludeAreas1 method + + +Get and set the exclude areas. Used for the first page or document in the comparison method. This option can be setted along with [ExcludeTables](../). This option can't be setted along with [ExtractionArea](../) option. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Comparison::ComparisonOptions::set_ExcludeAreas1(System::ArrayPtr> value) +``` + +## See Also + +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [ComparisonOptions](../) +* Namespace [Aspose::Pdf::Comparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison/comparisonoptions/set_excludeareas2/_index.md b/english/cpp/aspose.pdf.comparison/comparisonoptions/set_excludeareas2/_index.md new file mode 100644 index 0000000000..e2197d616f --- /dev/null +++ b/english/cpp/aspose.pdf.comparison/comparisonoptions/set_excludeareas2/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Comparison::ComparisonOptions::set_ExcludeAreas2 method +linktitle: set_ExcludeAreas2 +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::ComparisonOptions::set_ExcludeAreas2 method. Get and set the exclude areas. Used for the second page or document in the comparison method. This option can be setted along with ExcludeTables. This option can''t be setted along with ExtractionArea option in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.comparison/comparisonoptions/set_excludeareas2/ +--- +## ComparisonOptions::set_ExcludeAreas2 method + + +Get and set the exclude areas. Used for the second page or document in the comparison method. This option can be setted along with [ExcludeTables](../). This option can't be setted along with [ExtractionArea](../) option. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Comparison::ComparisonOptions::set_ExcludeAreas2(System::ArrayPtr> value) +``` + +## See Also + +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [ComparisonOptions](../) +* Namespace [Aspose::Pdf::Comparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison/comparisonoptions/set_excludetables/_index.md b/english/cpp/aspose.pdf.comparison/comparisonoptions/set_excludetables/_index.md new file mode 100644 index 0000000000..8aae8eebf8 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison/comparisonoptions/set_excludetables/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Comparison::ComparisonOptions::set_ExcludeTables method +linktitle: set_ExcludeTables +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::ComparisonOptions::set_ExcludeTables method. Get and set the option that determines whether tables are excluded from comparison. This option cannot be set together with ExtractionArea option. The default value is false in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.comparison/comparisonoptions/set_excludetables/ +--- +## ComparisonOptions::set_ExcludeTables method + + +Get and set the option that determines whether tables are excluded from comparison. This option cannot be set together with [ExtractionArea](../) option. The default value is **false**. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Comparison::ComparisonOptions::set_ExcludeTables(bool value) +``` + +## See Also + +* Class [ComparisonOptions](../) +* Namespace [Aspose::Pdf::Comparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison/comparisonoptions/set_extractionarea/_index.md b/english/cpp/aspose.pdf.comparison/comparisonoptions/set_extractionarea/_index.md new file mode 100644 index 0000000000..6c67c3ce1d --- /dev/null +++ b/english/cpp/aspose.pdf.comparison/comparisonoptions/set_extractionarea/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Comparison::ComparisonOptions::set_ExtractionArea method +linktitle: set_ExtractionArea +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::ComparisonOptions::set_ExtractionArea method. Get and set the rectangular area in which the text of pages will be compared. This option can''t be setted along with ExcludeTables, ExcludeAreas1 and ExcludeAreas2 options in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.comparison/comparisonoptions/set_extractionarea/ +--- +## ComparisonOptions::set_ExtractionArea method + + +Get and set the rectangular area in which the text of pages will be compared. This option can't be setted along with [ExcludeTables](../), [ExcludeAreas1](../) and [ExcludeAreas2](../) options. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Comparison::ComparisonOptions::set_ExtractionArea(System::SharedPtr value) +``` + +## See Also + +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [ComparisonOptions](../) +* Namespace [Aspose::Pdf::Comparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison/comparisonstatisticsbuilder/_index.md b/english/cpp/aspose.pdf.comparison/comparisonstatisticsbuilder/_index.md new file mode 100644 index 0000000000..618fc06a57 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison/comparisonstatisticsbuilder/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Comparison::ComparisonStatisticsBuilder class +linktitle: ComparisonStatisticsBuilder +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::ComparisonStatisticsBuilder class. Represents a class for building comparison statistics in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.comparison/comparisonstatisticsbuilder/ +--- +## ComparisonStatisticsBuilder class + + +Represents a class for building comparison statistics. + +```cpp +class ComparisonStatisticsBuilder : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [BuildStatistics](./buildstatistics/)(System::SharedPtr\\>\>) | Creates a statistics object for the result of comparing PDF pages or flat document comparison in which entire documents are compared. | +| static [BuildStatistics](./buildstatistics/)(System::SharedPtr\\>\>\>\>) | Creates a statistics object for the result of a page comparison of a PDF document. | +## See Also + +* Namespace [Aspose::Pdf::Comparison](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.comparison/comparisonstatisticsbuilder/buildstatistics/_index.md b/english/cpp/aspose.pdf.comparison/comparisonstatisticsbuilder/buildstatistics/_index.md new file mode 100644 index 0000000000..e3e58a5b7f --- /dev/null +++ b/english/cpp/aspose.pdf.comparison/comparisonstatisticsbuilder/buildstatistics/_index.md @@ -0,0 +1,83 @@ +--- +title: Aspose::Pdf::Comparison::ComparisonStatisticsBuilder::BuildStatistics method +linktitle: BuildStatistics +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::ComparisonStatisticsBuilder::BuildStatistics method. Creates a statistics object for the result of comparing PDF pages or flat document comparison in which entire documents are compared in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.comparison/comparisonstatisticsbuilder/buildstatistics/ +--- +## ComparisonStatisticsBuilder::BuildStatistics(System::SharedPtr\\>\>) method + + +Creates a statistics object for the result of comparing PDF pages or flat document comparison in which entire documents are compared. + +```cpp +static System::SharedPtr Aspose::Pdf::Comparison::ComparisonStatisticsBuilder::BuildStatistics(System::SharedPtr>> diffs) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| diffs | System::SharedPtr\\>\> | The list of differences. | + +### ReturnValue + +A statistics instance. +## Remarks + + + + + + diffs + + + The list of differences. + + + +## See Also + +* Class [TextItemComparisonStatistics](../../textitemcomparisonstatistics/) +* Class [DiffOperation](../../../aspose.pdf.comparison.diff/diffoperation/) +* Class [ComparisonStatisticsBuilder](../) +* Namespace [Aspose::Pdf::Comparison](../../) +* Library [Aspose.PDF for C++](../../../) +## ComparisonStatisticsBuilder::BuildStatistics(System::SharedPtr\\>\>\>\>) method + + +Creates a statistics object for the result of a page comparison of a PDF document. + +```cpp +static System::SharedPtr Aspose::Pdf::Comparison::ComparisonStatisticsBuilder::BuildStatistics(System::SharedPtr>>>> diffs) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| diffs | System::SharedPtr\\>\>\>\> | The list of differences. | + +### ReturnValue + +A statistics instance. +## Remarks + + + + + + diffs + + + The list of differences. + + + +## See Also + +* Class [DocumentComparisonStatistics](../../documentcomparisonstatistics/) +* Class [DiffOperation](../../../aspose.pdf.comparison.diff/diffoperation/) +* Class [ComparisonStatisticsBuilder](../) +* Namespace [Aspose::Pdf::Comparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison/documentcomparisonstatistics/_index.md b/english/cpp/aspose.pdf.comparison/documentcomparisonstatistics/_index.md new file mode 100644 index 0000000000..07a104d21e --- /dev/null +++ b/english/cpp/aspose.pdf.comparison/documentcomparisonstatistics/_index.md @@ -0,0 +1,34 @@ +--- +title: Aspose::Pdf::Comparison::DocumentComparisonStatistics class +linktitle: DocumentComparisonStatistics +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::DocumentComparisonStatistics class. Represents a document comparison statistics class in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.comparison/documentcomparisonstatistics/ +--- +## DocumentComparisonStatistics class + + +Represents a document comparison statistics class. + +```cpp +class DocumentComparisonStatistics : public Aspose::Pdf::Comparison::TextItemComparisonStatistics +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_DeletedCharactersCount](../textitemcomparisonstatistics/get_deletedcharacterscount/)() const | Gets and sets the number of deleted characters. | +| [get_DeleteOperationsCount](../textitemcomparisonstatistics/get_deleteoperationscount/)() const | Gets and sets the number of delete operations. | +| [get_InsertedCharactersCount](../textitemcomparisonstatistics/get_insertedcharacterscount/)() const | Gets and sets the number of inseted characters. | +| [get_InsertOperationsCount](../textitemcomparisonstatistics/get_insertoperationscount/)() const | Gets and sets the number of insert operations. | +| [get_PagesStatistics](./get_pagesstatistics/)() const | Gets and sets the list of pages statistics. | +| [get_TotalCharacters](../textitemcomparisonstatistics/get_totalcharacters/)() const | Gets and sets the total number of characters. | +| [TextItemComparisonStatistics](../textitemcomparisonstatistics/textitemcomparisonstatistics/)() | | +## See Also + +* Class [TextItemComparisonStatistics](../textitemcomparisonstatistics/) +* Namespace [Aspose::Pdf::Comparison](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.comparison/documentcomparisonstatistics/get_pagesstatistics/_index.md b/english/cpp/aspose.pdf.comparison/documentcomparisonstatistics/get_pagesstatistics/_index.md new file mode 100644 index 0000000000..a956c5523c --- /dev/null +++ b/english/cpp/aspose.pdf.comparison/documentcomparisonstatistics/get_pagesstatistics/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Comparison::DocumentComparisonStatistics::get_PagesStatistics method +linktitle: get_PagesStatistics +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::DocumentComparisonStatistics::get_PagesStatistics method. Gets and sets the list of pages statistics in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.comparison/documentcomparisonstatistics/get_pagesstatistics/ +--- +## DocumentComparisonStatistics::get_PagesStatistics method + + +Gets and sets the list of pages statistics. + +```cpp +ASPOSE_PDF_SHARED_API const System::SharedPtr>> & Aspose::Pdf::Comparison::DocumentComparisonStatistics::get_PagesStatistics() const +``` + +## See Also + +* Class [TextItemComparisonStatistics](../../textitemcomparisonstatistics/) +* Class [DocumentComparisonStatistics](../) +* Namespace [Aspose::Pdf::Comparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison/editoperationsorder/_index.md b/english/cpp/aspose.pdf.comparison/editoperationsorder/_index.md new file mode 100644 index 0000000000..4875cf0d82 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison/editoperationsorder/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Comparison::EditOperationsOrder enum +linktitle: EditOperationsOrder +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::EditOperationsOrder enum. Specifies the order of edit operations in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.comparison/editoperationsorder/ +--- +## EditOperationsOrder enum + + +Specifies the order of edit operations. + +```cpp +enum class EditOperationsOrder +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| InsertFirst | 0 | Insert operations before delete operations. | +| DeleteFirst | 1 | Delete operations before insert operations. | + +## See Also + +* Namespace [Aspose::Pdf::Comparison](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.comparison/textitemcomparisonstatistics/_index.md b/english/cpp/aspose.pdf.comparison/textitemcomparisonstatistics/_index.md new file mode 100644 index 0000000000..c26d930566 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison/textitemcomparisonstatistics/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Comparison::TextItemComparisonStatistics class +linktitle: TextItemComparisonStatistics +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::TextItemComparisonStatistics class. Represents a text comparison ststistics class in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.comparison/textitemcomparisonstatistics/ +--- +## TextItemComparisonStatistics class + + +Represents a text comparison ststistics class. + +```cpp +class TextItemComparisonStatistics : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_DeletedCharactersCount](./get_deletedcharacterscount/)() const | Gets and sets the number of deleted characters. | +| [get_DeleteOperationsCount](./get_deleteoperationscount/)() const | Gets and sets the number of delete operations. | +| [get_InsertedCharactersCount](./get_insertedcharacterscount/)() const | Gets and sets the number of inseted characters. | +| [get_InsertOperationsCount](./get_insertoperationscount/)() const | Gets and sets the number of insert operations. | +| [get_TotalCharacters](./get_totalcharacters/)() const | Gets and sets the total number of characters. | +| [TextItemComparisonStatistics](./textitemcomparisonstatistics/)() | | +## See Also + +* Namespace [Aspose::Pdf::Comparison](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.comparison/textitemcomparisonstatistics/get_deletedcharacterscount/_index.md b/english/cpp/aspose.pdf.comparison/textitemcomparisonstatistics/get_deletedcharacterscount/_index.md new file mode 100644 index 0000000000..32bd9b6cdf --- /dev/null +++ b/english/cpp/aspose.pdf.comparison/textitemcomparisonstatistics/get_deletedcharacterscount/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Comparison::TextItemComparisonStatistics::get_DeletedCharactersCount method +linktitle: get_DeletedCharactersCount +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::TextItemComparisonStatistics::get_DeletedCharactersCount method. Gets and sets the number of deleted characters in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.comparison/textitemcomparisonstatistics/get_deletedcharacterscount/ +--- +## TextItemComparisonStatistics::get_DeletedCharactersCount method + + +Gets and sets the number of deleted characters. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Comparison::TextItemComparisonStatistics::get_DeletedCharactersCount() const +``` + +## See Also + +* Class [TextItemComparisonStatistics](../) +* Namespace [Aspose::Pdf::Comparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison/textitemcomparisonstatistics/get_deleteoperationscount/_index.md b/english/cpp/aspose.pdf.comparison/textitemcomparisonstatistics/get_deleteoperationscount/_index.md new file mode 100644 index 0000000000..d8404269ea --- /dev/null +++ b/english/cpp/aspose.pdf.comparison/textitemcomparisonstatistics/get_deleteoperationscount/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Comparison::TextItemComparisonStatistics::get_DeleteOperationsCount method +linktitle: get_DeleteOperationsCount +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::TextItemComparisonStatistics::get_DeleteOperationsCount method. Gets and sets the number of delete operations in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.comparison/textitemcomparisonstatistics/get_deleteoperationscount/ +--- +## TextItemComparisonStatistics::get_DeleteOperationsCount method + + +Gets and sets the number of delete operations. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Comparison::TextItemComparisonStatistics::get_DeleteOperationsCount() const +``` + +## See Also + +* Class [TextItemComparisonStatistics](../) +* Namespace [Aspose::Pdf::Comparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison/textitemcomparisonstatistics/get_insertedcharacterscount/_index.md b/english/cpp/aspose.pdf.comparison/textitemcomparisonstatistics/get_insertedcharacterscount/_index.md new file mode 100644 index 0000000000..f66dfb6075 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison/textitemcomparisonstatistics/get_insertedcharacterscount/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Comparison::TextItemComparisonStatistics::get_InsertedCharactersCount method +linktitle: get_InsertedCharactersCount +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::TextItemComparisonStatistics::get_InsertedCharactersCount method. Gets and sets the number of inseted characters in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.comparison/textitemcomparisonstatistics/get_insertedcharacterscount/ +--- +## TextItemComparisonStatistics::get_InsertedCharactersCount method + + +Gets and sets the number of inseted characters. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Comparison::TextItemComparisonStatistics::get_InsertedCharactersCount() const +``` + +## See Also + +* Class [TextItemComparisonStatistics](../) +* Namespace [Aspose::Pdf::Comparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison/textitemcomparisonstatistics/get_insertoperationscount/_index.md b/english/cpp/aspose.pdf.comparison/textitemcomparisonstatistics/get_insertoperationscount/_index.md new file mode 100644 index 0000000000..0339d8ef1a --- /dev/null +++ b/english/cpp/aspose.pdf.comparison/textitemcomparisonstatistics/get_insertoperationscount/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Comparison::TextItemComparisonStatistics::get_InsertOperationsCount method +linktitle: get_InsertOperationsCount +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::TextItemComparisonStatistics::get_InsertOperationsCount method. Gets and sets the number of insert operations in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.comparison/textitemcomparisonstatistics/get_insertoperationscount/ +--- +## TextItemComparisonStatistics::get_InsertOperationsCount method + + +Gets and sets the number of insert operations. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Comparison::TextItemComparisonStatistics::get_InsertOperationsCount() const +``` + +## See Also + +* Class [TextItemComparisonStatistics](../) +* Namespace [Aspose::Pdf::Comparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison/textitemcomparisonstatistics/get_totalcharacters/_index.md b/english/cpp/aspose.pdf.comparison/textitemcomparisonstatistics/get_totalcharacters/_index.md new file mode 100644 index 0000000000..b5e7335c56 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison/textitemcomparisonstatistics/get_totalcharacters/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Comparison::TextItemComparisonStatistics::get_TotalCharacters method +linktitle: get_TotalCharacters +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::TextItemComparisonStatistics::get_TotalCharacters method. Gets and sets the total number of characters in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.comparison/textitemcomparisonstatistics/get_totalcharacters/ +--- +## TextItemComparisonStatistics::get_TotalCharacters method + + +Gets and sets the total number of characters. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Comparison::TextItemComparisonStatistics::get_TotalCharacters() const +``` + +## See Also + +* Class [TextItemComparisonStatistics](../) +* Namespace [Aspose::Pdf::Comparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison/textitemcomparisonstatistics/textitemcomparisonstatistics/_index.md b/english/cpp/aspose.pdf.comparison/textitemcomparisonstatistics/textitemcomparisonstatistics/_index.md new file mode 100644 index 0000000000..cadf366b3d --- /dev/null +++ b/english/cpp/aspose.pdf.comparison/textitemcomparisonstatistics/textitemcomparisonstatistics/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Comparison::TextItemComparisonStatistics::TextItemComparisonStatistics constructor +linktitle: TextItemComparisonStatistics +second_title: Aspose.PDF for C++ API Reference +description: 'How to use TextItemComparisonStatistics constructor of Aspose::Pdf::Comparison::TextItemComparisonStatistics class in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.comparison/textitemcomparisonstatistics/textitemcomparisonstatistics/ +--- +## TextItemComparisonStatistics::TextItemComparisonStatistics constructor + + + + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Comparison::TextItemComparisonStatistics::TextItemComparisonStatistics() +``` + +## See Also + +* Class [TextItemComparisonStatistics](../) +* Namespace [Aspose::Pdf::Comparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison/textpdfcomparer/_index.md b/english/cpp/aspose.pdf.comparison/textpdfcomparer/_index.md new file mode 100644 index 0000000000..e512e821be --- /dev/null +++ b/english/cpp/aspose.pdf.comparison/textpdfcomparer/_index.md @@ -0,0 +1,35 @@ +--- +title: Aspose::Pdf::Comparison::TextPdfComparer class +linktitle: TextPdfComparer +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::TextPdfComparer class. Represents a class to comparison two PDF pages or PDF documents in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.comparison/textpdfcomparer/ +--- +## TextPdfComparer class + + +Represents a class to comparison two PDF pages or PDF documents. + +```cpp +class TextPdfComparer : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [AssemblyDestinationPageText](./assemblydestinationpagetext/)(System::SharedPtr\\>\>) | Restores changed text from the list of changes. | +| static [AssemblySourcePageText](./assemblysourcepagetext/)(System::SharedPtr\\>\>) | Restores the original text from the list of changes. | +| static [CompareDocumentsPageByPage](./comparedocumentspagebypage/)(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) | Compares two documents page by page. | +| static [CompareDocumentsPageByPage](./comparedocumentspagebypage/)(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\, System::String) | Compares two documents page by page. The result is saved in a PDF file. | +| static [CompareFlatDocuments](./compareflatdocuments/)(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) | Compares two documents page by page. The documents are compared as a whole. Before comparing text, the texts of document pages are combined into one text. | +| static [CompareFlatDocuments](./compareflatdocuments/)(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\, System::String) | Compares two documents page by page. The result is saved in a PDF file. The documents are compared as a whole. Before comparing text, the texts of document pages are combined into one text. | +| static [ComparePages](./comparepages/)(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) | Compares document pages. | +| static [CreateComparisonStatistics](./createcomparisonstatistics/)(System::SharedPtr\\>\>) | Gets comparison statistics. | +| static [CreateComparisonStatistics](./createcomparisonstatistics/)(System::SharedPtr\\>\>\>\>) | Gets documents comparison statistics. | +## See Also + +* Namespace [Aspose::Pdf::Comparison](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.comparison/textpdfcomparer/assemblydestinationpagetext/_index.md b/english/cpp/aspose.pdf.comparison/textpdfcomparer/assemblydestinationpagetext/_index.md new file mode 100644 index 0000000000..b191c96fdf --- /dev/null +++ b/english/cpp/aspose.pdf.comparison/textpdfcomparer/assemblydestinationpagetext/_index.md @@ -0,0 +1,45 @@ +--- +title: Aspose::Pdf::Comparison::TextPdfComparer::AssemblyDestinationPageText method +linktitle: AssemblyDestinationPageText +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::TextPdfComparer::AssemblyDestinationPageText method. Restores changed text from the list of changes in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.comparison/textpdfcomparer/assemblydestinationpagetext/ +--- +## TextPdfComparer::AssemblyDestinationPageText method + + +Restores changed text from the list of changes. + +```cpp +static ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Comparison::TextPdfComparer::AssemblyDestinationPageText(System::SharedPtr>> diffs) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| diffs | System::SharedPtr\\>\> | The list of changes. | + +### ReturnValue + +Original text. +## Remarks + + + + + + diffs + + + The list of changes. + + + +## See Also + +* Class [DiffOperation](../../../aspose.pdf.comparison.diff/diffoperation/) +* Class [TextPdfComparer](../) +* Namespace [Aspose::Pdf::Comparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison/textpdfcomparer/assemblysourcepagetext/_index.md b/english/cpp/aspose.pdf.comparison/textpdfcomparer/assemblysourcepagetext/_index.md new file mode 100644 index 0000000000..c828783fcd --- /dev/null +++ b/english/cpp/aspose.pdf.comparison/textpdfcomparer/assemblysourcepagetext/_index.md @@ -0,0 +1,45 @@ +--- +title: Aspose::Pdf::Comparison::TextPdfComparer::AssemblySourcePageText method +linktitle: AssemblySourcePageText +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::TextPdfComparer::AssemblySourcePageText method. Restores the original text from the list of changes in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.comparison/textpdfcomparer/assemblysourcepagetext/ +--- +## TextPdfComparer::AssemblySourcePageText method + + +Restores the original text from the list of changes. + +```cpp +static ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Comparison::TextPdfComparer::AssemblySourcePageText(System::SharedPtr>> diffs) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| diffs | System::SharedPtr\\>\> | The list of changes. | + +### ReturnValue + +Original text. +## Remarks + + + + + + diffs + + + The list of changes. + + + +## See Also + +* Class [DiffOperation](../../../aspose.pdf.comparison.diff/diffoperation/) +* Class [TextPdfComparer](../) +* Namespace [Aspose::Pdf::Comparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison/textpdfcomparer/comparedocumentspagebypage/_index.md b/english/cpp/aspose.pdf.comparison/textpdfcomparer/comparedocumentspagebypage/_index.md new file mode 100644 index 0000000000..2ab1786318 --- /dev/null +++ b/english/cpp/aspose.pdf.comparison/textpdfcomparer/comparedocumentspagebypage/_index.md @@ -0,0 +1,132 @@ +--- +title: Aspose::Pdf::Comparison::TextPdfComparer::CompareDocumentsPageByPage method +linktitle: CompareDocumentsPageByPage +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::TextPdfComparer::CompareDocumentsPageByPage method. Compares two documents page by page in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.comparison/textpdfcomparer/comparedocumentspagebypage/ +--- +## TextPdfComparer::CompareDocumentsPageByPage(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) method + + +Compares two documents page by page. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr>>>> Aspose::Pdf::Comparison::TextPdfComparer::CompareDocumentsPageByPage(System::SharedPtr document1, System::SharedPtr document2, System::SharedPtr options) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document1 | System::SharedPtr\ | First document.. | +| document2 | System::SharedPtr\ | Second document. | +| options | System::SharedPtr\ | [Comparison](../../) options. | + +### ReturnValue + +List of changes by page. +## Remarks + + + + + + document1 + + + First document.. + + + + + document2 + + + Second document. + + + + + options + + + + Comparison options. + + + +## See Also + +* Class [DiffOperation](../../../aspose.pdf.comparison.diff/diffoperation/) +* Class [Document](../../../aspose.pdf/document/) +* Class [ComparisonOptions](../../comparisonoptions/) +* Class [TextPdfComparer](../) +* Namespace [Aspose::Pdf::Comparison](../../) +* Library [Aspose.PDF for C++](../../../) +## TextPdfComparer::CompareDocumentsPageByPage(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\, System::String) method + + +Compares two documents page by page. The result is saved in a PDF file. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr>>>> Aspose::Pdf::Comparison::TextPdfComparer::CompareDocumentsPageByPage(System::SharedPtr document1, System::SharedPtr document2, System::SharedPtr options, System::String resultPdfDocumentPath) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document1 | System::SharedPtr\ | First document.. | +| document2 | System::SharedPtr\ | Second document. | +| options | System::SharedPtr\ | [Comparison](../../) options. | +| resultPdfDocumentPath | System::String | Path to the pdf file to save the comparison results. | + +### ReturnValue + +List of changes by page. +## Remarks + + + + + + document1 + + + First document.. + + + + + document2 + + + Second document. + + + + + options + + + + Comparison options. + + + + + resultPdfDocumentPath + + + Path to the pdf file to save the comparison results. + + + +## See Also + +* Class [DiffOperation](../../../aspose.pdf.comparison.diff/diffoperation/) +* Class [Document](../../../aspose.pdf/document/) +* Class [ComparisonOptions](../../comparisonoptions/) +* Class [TextPdfComparer](../) +* Namespace [Aspose::Pdf::Comparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison/textpdfcomparer/compareflatdocuments/_index.md b/english/cpp/aspose.pdf.comparison/textpdfcomparer/compareflatdocuments/_index.md new file mode 100644 index 0000000000..ae801d883c --- /dev/null +++ b/english/cpp/aspose.pdf.comparison/textpdfcomparer/compareflatdocuments/_index.md @@ -0,0 +1,132 @@ +--- +title: Aspose::Pdf::Comparison::TextPdfComparer::CompareFlatDocuments method +linktitle: CompareFlatDocuments +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::TextPdfComparer::CompareFlatDocuments method. Compares two documents page by page. The documents are compared as a whole. Before comparing text, the texts of document pages are combined into one text in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.comparison/textpdfcomparer/compareflatdocuments/ +--- +## TextPdfComparer::CompareFlatDocuments(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) method + + +Compares two documents page by page. The documents are compared as a whole. Before comparing text, the texts of document pages are combined into one text. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr>> Aspose::Pdf::Comparison::TextPdfComparer::CompareFlatDocuments(System::SharedPtr document1, System::SharedPtr document2, System::SharedPtr options) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document1 | System::SharedPtr\ | First document. | +| document2 | System::SharedPtr\ | Second document. | +| options | System::SharedPtr\ | [Comparison](../../) options. | + +### ReturnValue + +List of changes. +## Remarks + + + + + + document1 + + + First document. + + + + + document2 + + + Second document. + + + + + options + + + + Comparison options. + + + +## See Also + +* Class [DiffOperation](../../../aspose.pdf.comparison.diff/diffoperation/) +* Class [Document](../../../aspose.pdf/document/) +* Class [ComparisonOptions](../../comparisonoptions/) +* Class [TextPdfComparer](../) +* Namespace [Aspose::Pdf::Comparison](../../) +* Library [Aspose.PDF for C++](../../../) +## TextPdfComparer::CompareFlatDocuments(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\, System::String) method + + +Compares two documents page by page. The result is saved in a PDF file. The documents are compared as a whole. Before comparing text, the texts of document pages are combined into one text. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr>> Aspose::Pdf::Comparison::TextPdfComparer::CompareFlatDocuments(System::SharedPtr document1, System::SharedPtr document2, System::SharedPtr options, System::String resultPdfDocumentPath) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document1 | System::SharedPtr\ | First document. | +| document2 | System::SharedPtr\ | Second document. | +| options | System::SharedPtr\ | [Comparison](../../) options. | +| resultPdfDocumentPath | System::String | Path to the pdf file to save the comparison results. | + +### ReturnValue + +List of changes. +## Remarks + + + + + + document1 + + + First document. + + + + + document2 + + + Second document. + + + + + options + + + + Comparison options. + + + + + resultPdfDocumentPath + + + Path to the pdf file to save the comparison results. + + + +## See Also + +* Class [DiffOperation](../../../aspose.pdf.comparison.diff/diffoperation/) +* Class [Document](../../../aspose.pdf/document/) +* Class [ComparisonOptions](../../comparisonoptions/) +* Class [TextPdfComparer](../) +* Namespace [Aspose::Pdf::Comparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison/textpdfcomparer/comparepages/_index.md b/english/cpp/aspose.pdf.comparison/textpdfcomparer/comparepages/_index.md new file mode 100644 index 0000000000..b75bca247d --- /dev/null +++ b/english/cpp/aspose.pdf.comparison/textpdfcomparer/comparepages/_index.md @@ -0,0 +1,66 @@ +--- +title: Aspose::Pdf::Comparison::TextPdfComparer::ComparePages method +linktitle: ComparePages +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::TextPdfComparer::ComparePages method. Compares document pages in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.comparison/textpdfcomparer/comparepages/ +--- +## TextPdfComparer::ComparePages method + + +Compares document pages. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr>> Aspose::Pdf::Comparison::TextPdfComparer::ComparePages(System::SharedPtr page1, System::SharedPtr page2, System::SharedPtr options) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page1 | System::SharedPtr\ | First page. | +| page2 | System::SharedPtr\ | Second page. | +| options | System::SharedPtr\ | [Comparison](../../) options. | + +### ReturnValue + +The list of changes. +## Remarks + + + + + + page1 + + + First page. + + + + + page2 + + + Second page. + + + + + options + + + + Comparison options. + + + +## See Also + +* Class [DiffOperation](../../../aspose.pdf.comparison.diff/diffoperation/) +* Class [Page](../../../aspose.pdf/page/) +* Class [ComparisonOptions](../../comparisonoptions/) +* Class [TextPdfComparer](../) +* Namespace [Aspose::Pdf::Comparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.comparison/textpdfcomparer/createcomparisonstatistics/_index.md b/english/cpp/aspose.pdf.comparison/textpdfcomparer/createcomparisonstatistics/_index.md new file mode 100644 index 0000000000..be0f31d5ba --- /dev/null +++ b/english/cpp/aspose.pdf.comparison/textpdfcomparer/createcomparisonstatistics/_index.md @@ -0,0 +1,83 @@ +--- +title: Aspose::Pdf::Comparison::TextPdfComparer::CreateComparisonStatistics method +linktitle: CreateComparisonStatistics +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Comparison::TextPdfComparer::CreateComparisonStatistics method. Gets comparison statistics in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.comparison/textpdfcomparer/createcomparisonstatistics/ +--- +## TextPdfComparer::CreateComparisonStatistics(System::SharedPtr\\>\>) method + + +Gets comparison statistics. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Comparison::TextPdfComparer::CreateComparisonStatistics(System::SharedPtr>> diffs) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| diffs | System::SharedPtr\\>\> | The list of changes. | + +### ReturnValue + +The statistics. +## Remarks + + + + + + diffs + + + The list of changes. + + + +## See Also + +* Class [TextItemComparisonStatistics](../../textitemcomparisonstatistics/) +* Class [DiffOperation](../../../aspose.pdf.comparison.diff/diffoperation/) +* Class [TextPdfComparer](../) +* Namespace [Aspose::Pdf::Comparison](../../) +* Library [Aspose.PDF for C++](../../../) +## TextPdfComparer::CreateComparisonStatistics(System::SharedPtr\\>\>\>\>) method + + +Gets documents comparison statistics. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Comparison::TextPdfComparer::CreateComparisonStatistics(System::SharedPtr>>>> diffs) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| diffs | System::SharedPtr\\>\>\>\> | The list of changes. | + +### ReturnValue + +The statistics. +## Remarks + + + + + + diffs + + + The list of changes. + + + +## See Also + +* Class [DocumentComparisonStatistics](../../documentcomparisonstatistics/) +* Class [DiffOperation](../../../aspose.pdf.comparison.diff/diffoperation/) +* Class [TextPdfComparer](../) +* Namespace [Aspose::Pdf::Comparison](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/_index.md b/english/cpp/aspose.pdf.devices/_index.md new file mode 100644 index 0000000000..5c9ba0c53a --- /dev/null +++ b/english/cpp/aspose.pdf.devices/_index.md @@ -0,0 +1,40 @@ +--- +title: Aspose::Pdf::Devices namespace +linktitle: Aspose::Pdf::Devices +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Devices namespace in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.devices/ +--- + + + +## Classes + +| Class | Description | +| --- | --- | +| [BmpDevice](./bmpdevice/) | Represents image device that helps to save pdf document pages into bmp. | +| [Device](./device/) | Abstract class for all types of devices. [Device](./device/) is used to represent pdf document in some format. For example, document page can be represented as image or text. | +| [DicomDevice](./dicomdevice/) | Represents image device that helps to save pdf document pages into Dicom format. | +| [DocumentDevice](./documentdevice/) | Abstract class for all devices which is used to process the whole pdf document. | +| [EmfDevice](./emfdevice/) | Represents image device that helps to save pdf document pages into emf. | +| [GifDevice](./gifdevice/) | Represents image device that helps to save pdf document pages into gif. | +| [ImageDevice](./imagedevice/) | An abstract class for image devices. | +| [JpegDevice](./jpegdevice/) | Represents image device that helps to save pdf document pages into jpeg. | +| [Margins](./margins/) | This class represents margins of an image. | +| [PageDevice](./pagedevice/) | Abstract class for all devices which is used to process certain page the pdf document. | +| [PngDevice](./pngdevice/) | Represents image device that helps to save pdf document pages into png. | +| [Resolution](./resolution/) | Represents class for holding image resolution. | +| [TextDevice](./textdevice/) | Represents class for converting pdf document pages into text. | +| [ThumbnailDevice](./thumbnaildevice/) | Represents image device that save pdf document pages into Thumbnail image. | +| [TiffDevice](./tiffdevice/) | This class helps to save pdf document page by page into the one tiff image. | +| [TiffSettings](./tiffsettings/) | This class represents settings for importing pdf to Tiff. | +## Enums + +| Enum | Description | +| --- | --- | +| [ColorDepth](./colordepth/) | Used to specify the parameter value passed to a Tiff image device. | +| [CompressionType](./compressiontype/) | Used to specify the parameter value passed to a Tiff image device. | +| [FormPresentationMode](./formpresentationmode/) | Used to specify the form presentation mode when printing or converting to image pdf documents. | +| [ShapeType](./shapetype/) | This enum represents shape type for the extracted images. | diff --git a/english/cpp/aspose.pdf.devices/bmpdevice/_index.md b/english/cpp/aspose.pdf.devices/bmpdevice/_index.md new file mode 100644 index 0000000000..2994e89fca --- /dev/null +++ b/english/cpp/aspose.pdf.devices/bmpdevice/_index.md @@ -0,0 +1,50 @@ +--- +title: Aspose::Pdf::Devices::BmpDevice class +linktitle: BmpDevice +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::BmpDevice class. Represents image device that helps to save pdf document pages into bmp in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.devices/bmpdevice/ +--- +## BmpDevice class + + +Represents image device that helps to save pdf document pages into bmp. + +```cpp +class BmpDevice : public Aspose::Pdf::Devices::ImageDevice +``` + +## Methods + +| Method | Description | +| --- | --- | +| [BmpDevice](./bmpdevice/)() | Initializes a new instance of the [BmpDevice](./) class with default resolution. | +| [BmpDevice](./bmpdevice/)(System::SharedPtr\) | Initializes a new instance of the [BmpDevice](./) class. | +| [BmpDevice](./bmpdevice/)(int32_t, int32_t, System::SharedPtr\) | Initializes a new instance of the [BmpDevice](./) class with provided image dimensions and resolution. | +| [BmpDevice](./bmpdevice/)(System::SharedPtr\, System::SharedPtr\) | Initializes a new instance of the [BmpDevice](./) class with provided page size and resolution. | +| [BmpDevice](./bmpdevice/)(int32_t, int32_t) | Initializes a new instance of the [BmpDevice](./) class with provided image dimensions, default resolution (=150). | +| [BmpDevice](./bmpdevice/)(System::SharedPtr\) | Initializes a new instance of the [BmpDevice](./) class with provided page size, default resolution (=150). | +| [get_CoordinateType](../imagedevice/get_coordinatetype/)() const | Gets the page coordinate type (Media/Crop boxes). CropBox value is used by default. | +| [get_FormPresentationMode](../imagedevice/get_formpresentationmode/)() const | Gets form presentation mode. | +| [get_Height](../imagedevice/get_height/)() const | Gets image output height. | +| [get_RenderingOptions](../imagedevice/get_renderingoptions/)() const | Gets rendering options. | +| [get_Resolution](../imagedevice/get_resolution/)() const | Gets image resolution. | +| [get_Width](../imagedevice/get_width/)() const | Gets image output width. | +| [ImageDevice](../imagedevice/imagedevice/)() | Abstract initializer for [ImageDevice](../imagedevice/) descendants, set resolution to 150x150. | +| [ImageDevice](../imagedevice/imagedevice/)(System::SharedPtr\) | Abstract initializer for [ImageDevice](../imagedevice/) descendants. | +| [ImageDevice](../imagedevice/imagedevice/)(int32_t, int32_t) | Initializes a new instance of the [JpegDevice](../jpegdevice/) class with provided image dimensions and default resolution (=150). | +| [ImageDevice](../imagedevice/imagedevice/)(System::SharedPtr\) | Initializes a new instance of the [JpegDevice](../jpegdevice/) class with provided image dimensions and default resolution (=150). | +| [ImageDevice](../imagedevice/imagedevice/)(int32_t, int32_t, System::SharedPtr\) | Initializes a new instance of the [JpegDevice](../jpegdevice/) class with provided image dimensions and resolution. | +| [ImageDevice](../imagedevice/imagedevice/)(System::SharedPtr\, System::SharedPtr\) | Initializes a new instance of the [JpegDevice](../jpegdevice/) class with provided image dimensions and resolution. | +| [Process](./process/)(System::SharedPtr\, System::SharedPtr\) override | Converts the page into bmp and saves it in the output stream. | +| [Process](../pagedevice/process/)(System::SharedPtr\, System::String) | Perfoms some operation on the given page and saves results into the file. | +| [set_CoordinateType](../imagedevice/set_coordinatetype/)(PageCoordinateType) | Sets the page coordinate type (Media/Crop boxes). CropBox value is used by default. | +| [set_FormPresentationMode](../imagedevice/set_formpresentationmode/)(Aspose::Pdf::Devices::FormPresentationMode) | Sets form presentation mode. | +| [set_RenderingOptions](../imagedevice/set_renderingoptions/)(System::SharedPtr\) | Sets rendering options. | +## See Also + +* Class [ImageDevice](../imagedevice/) +* Namespace [Aspose::Pdf::Devices](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.devices/bmpdevice/bmpdevice/_index.md b/english/cpp/aspose.pdf.devices/bmpdevice/bmpdevice/_index.md new file mode 100644 index 0000000000..f69c6c08cb --- /dev/null +++ b/english/cpp/aspose.pdf.devices/bmpdevice/bmpdevice/_index.md @@ -0,0 +1,210 @@ +--- +title: Aspose::Pdf::Devices::BmpDevice::BmpDevice constructor +linktitle: BmpDevice +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::BmpDevice::BmpDevice constructor. Initializes a new instance of the BmpDevice class with default resolution in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.devices/bmpdevice/bmpdevice/ +--- +## BmpDevice::BmpDevice() constructor + + +Initializes a new instance of the [BmpDevice](../) class with default resolution. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::BmpDevice::BmpDevice() +``` + +## See Also + +* Class [BmpDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## BmpDevice::BmpDevice(System::SharedPtr\) constructor + + +Initializes a new instance of the [BmpDevice](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::BmpDevice::BmpDevice(System::SharedPtr resolution) +``` + +## See Also + +* Class [Resolution](../../resolution/) +* Class [BmpDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## BmpDevice::BmpDevice(int32_t, int32_t, System::SharedPtr\) constructor + + +Initializes a new instance of the [BmpDevice](../) class with provided image dimensions and resolution. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::BmpDevice::BmpDevice(int32_t width, int32_t height, System::SharedPtr resolution) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| width | int32_t | [Image](../../../aspose.pdf/image/) output width. | +| height | int32_t | [Image](../../../aspose.pdf/image/) output height. | +| resolution | System::SharedPtr\ | [Resolution](../../resolution/) for the result image file, see [Resolution](../../resolution/) class. | +## Remarks + + + + + + width + + + + Image output width. + + + + + height + + + + Image output height. + + + + + resolution + + + + Resolution for the result image file, see Resolution class. + + + +## See Also + +* Class [Resolution](../../resolution/) +* Class [BmpDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## BmpDevice::BmpDevice(System::SharedPtr\, System::SharedPtr\) constructor + + +Initializes a new instance of the [BmpDevice](../) class with provided page size and resolution. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::BmpDevice::BmpDevice(System::SharedPtr pageSize, System::SharedPtr resolution) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageSize | System::SharedPtr\ | [Page](../../../aspose.pdf/page/) size of the output image. | +| resolution | System::SharedPtr\ | [Resolution](../../resolution/) for the result image file, see [Resolution](../../resolution/) class. | +## Remarks + + + + + + pageSize + + + + Page size of the output image. + + + + + resolution + + + + Resolution for the result image file, see Resolution class. + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [Resolution](../../resolution/) +* Class [BmpDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## BmpDevice::BmpDevice(int32_t, int32_t) constructor + + +Initializes a new instance of the [BmpDevice](../) class with provided image dimensions, default resolution (=150). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::BmpDevice::BmpDevice(int32_t width, int32_t height) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| width | int32_t | [Image](../../../aspose.pdf/image/) output width. | +| height | int32_t | [Image](../../../aspose.pdf/image/) output height. | +## Remarks + + + + + + width + + + + Image output width. + + + + + height + + + + Image output height. + + + +## See Also + +* Class [BmpDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## BmpDevice::BmpDevice(System::SharedPtr\) constructor + + +Initializes a new instance of the [BmpDevice](../) class with provided page size, default resolution (=150). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::BmpDevice::BmpDevice(System::SharedPtr pageSize) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageSize | System::SharedPtr\ | [Page](../../../aspose.pdf/page/) size of the output image. | +## Remarks + + + + + + pageSize + + + + Page size of the output image. + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [BmpDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/bmpdevice/process/_index.md b/english/cpp/aspose.pdf.devices/bmpdevice/process/_index.md new file mode 100644 index 0000000000..b34d3e9649 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/bmpdevice/process/_index.md @@ -0,0 +1,50 @@ +--- +title: Aspose::Pdf::Devices::BmpDevice::Process method +linktitle: Process +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::BmpDevice::Process method. Converts the page into bmp and saves it in the output stream in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.devices/bmpdevice/process/ +--- +## BmpDevice::Process method + + +Converts the page into bmp and saves it in the output stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Devices::BmpDevice::Process(System::SharedPtr page, System::SharedPtr output) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The page to convert. | +| output | System::SharedPtr\ | Output stream with bmp image. | +## Remarks + + + + + + page + + + The page to convert. + + + + + output + + + Output stream with bmp image. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [BmpDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/colordepth/_index.md b/english/cpp/aspose.pdf.devices/colordepth/_index.md new file mode 100644 index 0000000000..6e92e84739 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/colordepth/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Devices::ColorDepth enum +linktitle: ColorDepth +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::ColorDepth enum. Used to specify the parameter value passed to a Tiff image device in C++.' +type: docs +weight: 1700 +url: /cpp/aspose.pdf.devices/colordepth/ +--- +## ColorDepth enum + + +Used to specify the parameter value passed to a Tiff image device. + +```cpp +enum class ColorDepth +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Default | 0 | Default color depth. 32 bit depth is used by default. | +| Format24bpp | 1 | Rgb 24 bit depth. | +| Format8bpp | 2 | 8 bits per pixel. Equal [PixelFormat::Format8bppIndexed](../) | +| Format4bpp | 3 | 4 bits per pixel. Equal [PixelFormat::Format4bppIndexed](../) | +| Format1bpp | 4 | 1 bit per pixel. Equal [PixelFormat::Format32bppRgb](../) | + +## See Also + +* Namespace [Aspose::Pdf::Devices](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.devices/compressiontype/_index.md b/english/cpp/aspose.pdf.devices/compressiontype/_index.md new file mode 100644 index 0000000000..b6ac74ef06 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/compressiontype/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Devices::CompressionType enum +linktitle: CompressionType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::CompressionType enum. Used to specify the parameter value passed to a Tiff image device in C++.' +type: docs +weight: 1800 +url: /cpp/aspose.pdf.devices/compressiontype/ +--- +## CompressionType enum + + +Used to specify the parameter value passed to a Tiff image device. + +```cpp +enum class CompressionType +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| LZW | 0 | Specifies the LZW compression scheme. Can be passed to the Tiff encoder as a parameter that belongs to the Compression category. | +| CCITT4 | 1 | Specifies the CCITT4 compression scheme. Can be passed to the CCITT4 encoder as a parameter that belongs to the Compression category. | +| CCITT3 | 2 | Specifies the CCITT3 compression scheme. Can be passed to the CCITT3 encoder as a parameter that belongs to the Compression category. | +| RLE | 3 | Specifies the RLE compression scheme. Can be passed to the RLE encoder as a parameter that belongs to the Compression category. | +| None | 4 | Specifies no compression. Can be passed to the Tiff encoder as a parameter that belongs to the compression category. | + +## See Also + +* Namespace [Aspose::Pdf::Devices](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.devices/device/_index.md b/english/cpp/aspose.pdf.devices/device/_index.md new file mode 100644 index 0000000000..aa002c471d --- /dev/null +++ b/english/cpp/aspose.pdf.devices/device/_index.md @@ -0,0 +1,22 @@ +--- +title: Aspose::Pdf::Devices::Device class +linktitle: Device +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::Device class. Abstract class for all types of devices. Device is used to represent pdf document in some format. For example, document page can be represented as image or text in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.devices/device/ +--- +## Device class + + +Abstract class for all types of devices. [Device](./) is used to represent pdf document in some format. For example, document page can be represented as image or text. + +```cpp +class Device : public System::Object +``` + +## See Also + +* Namespace [Aspose::Pdf::Devices](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.devices/dicomdevice/_index.md b/english/cpp/aspose.pdf.devices/dicomdevice/_index.md new file mode 100644 index 0000000000..ac38783b50 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/dicomdevice/_index.md @@ -0,0 +1,50 @@ +--- +title: Aspose::Pdf::Devices::DicomDevice class +linktitle: DicomDevice +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::DicomDevice class. Represents image device that helps to save pdf document pages into Dicom format in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.devices/dicomdevice/ +--- +## DicomDevice class + + +Represents image device that helps to save pdf document pages into Dicom format. + +```cpp +class DicomDevice : public Aspose::Pdf::Devices::ImageDevice +``` + +## Methods + +| Method | Description | +| --- | --- | +| [DicomDevice](./dicomdevice/)() | Initializes a new instance of the [DicomDevice](./) class with default resolution. | +| [DicomDevice](./dicomdevice/)(System::SharedPtr\) | Initializes a new instance of the [DicomDevice](./) class. | +| [DicomDevice](./dicomdevice/)(System::SharedPtr\) | Initializes a new instance of the [DicomDevice](./) class with provided page size, with default resolution (=150). | +| [DicomDevice](./dicomdevice/)(int32_t, int32_t) | Initializes a new instance of the [DicomDevice](./) class with provided image dimensions, with default resolution (=150). | +| [DicomDevice](./dicomdevice/)(System::SharedPtr\, System::SharedPtr\) | Initializes a new instance of the [DicomDevice](./) class with provided page size and resolution. | +| [DicomDevice](./dicomdevice/)(int32_t, int32_t, System::SharedPtr\) | Initializes a new instance of the [DicomDevice](./) class with provided image dimensions and resolution. | +| [get_CoordinateType](../imagedevice/get_coordinatetype/)() const | Gets the page coordinate type (Media/Crop boxes). CropBox value is used by default. | +| [get_FormPresentationMode](../imagedevice/get_formpresentationmode/)() const | Gets form presentation mode. | +| [get_Height](../imagedevice/get_height/)() const | Gets image output height. | +| [get_RenderingOptions](../imagedevice/get_renderingoptions/)() const | Gets rendering options. | +| [get_Resolution](../imagedevice/get_resolution/)() const | Gets image resolution. | +| [get_Width](../imagedevice/get_width/)() const | Gets image output width. | +| [ImageDevice](../imagedevice/imagedevice/)() | Abstract initializer for [ImageDevice](../imagedevice/) descendants, set resolution to 150x150. | +| [ImageDevice](../imagedevice/imagedevice/)(System::SharedPtr\) | Abstract initializer for [ImageDevice](../imagedevice/) descendants. | +| [ImageDevice](../imagedevice/imagedevice/)(int32_t, int32_t) | Initializes a new instance of the [JpegDevice](../jpegdevice/) class with provided image dimensions and default resolution (=150). | +| [ImageDevice](../imagedevice/imagedevice/)(System::SharedPtr\) | Initializes a new instance of the [JpegDevice](../jpegdevice/) class with provided image dimensions and default resolution (=150). | +| [ImageDevice](../imagedevice/imagedevice/)(int32_t, int32_t, System::SharedPtr\) | Initializes a new instance of the [JpegDevice](../jpegdevice/) class with provided image dimensions and resolution. | +| [ImageDevice](../imagedevice/imagedevice/)(System::SharedPtr\, System::SharedPtr\) | Initializes a new instance of the [JpegDevice](../jpegdevice/) class with provided image dimensions and resolution. | +| [Process](./process/)(System::SharedPtr\, System::SharedPtr\) override | Converts the page into Dicom and saves it in the output stream. | +| [Process](../pagedevice/process/)(System::SharedPtr\, System::String) | Perfoms some operation on the given page and saves results into the file. | +| [set_CoordinateType](../imagedevice/set_coordinatetype/)(PageCoordinateType) | Sets the page coordinate type (Media/Crop boxes). CropBox value is used by default. | +| [set_FormPresentationMode](../imagedevice/set_formpresentationmode/)(Aspose::Pdf::Devices::FormPresentationMode) | Sets form presentation mode. | +| [set_RenderingOptions](../imagedevice/set_renderingoptions/)(System::SharedPtr\) | Sets rendering options. | +## See Also + +* Class [ImageDevice](../imagedevice/) +* Namespace [Aspose::Pdf::Devices](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.devices/dicomdevice/dicomdevice/_index.md b/english/cpp/aspose.pdf.devices/dicomdevice/dicomdevice/_index.md new file mode 100644 index 0000000000..4a838d40ff --- /dev/null +++ b/english/cpp/aspose.pdf.devices/dicomdevice/dicomdevice/_index.md @@ -0,0 +1,210 @@ +--- +title: Aspose::Pdf::Devices::DicomDevice::DicomDevice constructor +linktitle: DicomDevice +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::DicomDevice::DicomDevice constructor. Initializes a new instance of the DicomDevice class with default resolution in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.devices/dicomdevice/dicomdevice/ +--- +## DicomDevice::DicomDevice() constructor + + +Initializes a new instance of the [DicomDevice](../) class with default resolution. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::DicomDevice::DicomDevice() +``` + +## See Also + +* Class [DicomDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## DicomDevice::DicomDevice(System::SharedPtr\) constructor + + +Initializes a new instance of the [DicomDevice](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::DicomDevice::DicomDevice(System::SharedPtr resolution) +``` + +## See Also + +* Class [Resolution](../../resolution/) +* Class [DicomDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## DicomDevice::DicomDevice(System::SharedPtr\) constructor + + +Initializes a new instance of the [DicomDevice](../) class with provided page size, with default resolution (=150). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::DicomDevice::DicomDevice(System::SharedPtr pageSize) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageSize | System::SharedPtr\ | [Page](../../../aspose.pdf/page/) size of the output image. | +## Remarks + + + + + + pageSize + + + + Page size of the output image. + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [DicomDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## DicomDevice::DicomDevice(int32_t, int32_t) constructor + + +Initializes a new instance of the [DicomDevice](../) class with provided image dimensions, with default resolution (=150). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::DicomDevice::DicomDevice(int32_t width, int32_t height) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| width | int32_t | [Image](../../../aspose.pdf/image/) output width. | +| height | int32_t | [Image](../../../aspose.pdf/image/) output height. | +## Remarks + + + + + + width + + + + Image output width. + + + + + height + + + + Image output height. + + + +## See Also + +* Class [DicomDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## DicomDevice::DicomDevice(System::SharedPtr\, System::SharedPtr\) constructor + + +Initializes a new instance of the [DicomDevice](../) class with provided page size and resolution. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::DicomDevice::DicomDevice(System::SharedPtr pageSize, System::SharedPtr resolution) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageSize | System::SharedPtr\ | [Page](../../../aspose.pdf/page/) size of the output image. | +| resolution | System::SharedPtr\ | [Resolution](../../resolution/) for the result image file, see [Resolution](../../resolution/) class. | +## Remarks + + + + + + pageSize + + + + Page size of the output image. + + + + + resolution + + + + Resolution for the result image file, see Resolution class. + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [Resolution](../../resolution/) +* Class [DicomDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## DicomDevice::DicomDevice(int32_t, int32_t, System::SharedPtr\) constructor + + +Initializes a new instance of the [DicomDevice](../) class with provided image dimensions and resolution. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::DicomDevice::DicomDevice(int32_t width, int32_t height, System::SharedPtr resolution) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| width | int32_t | [Image](../../../aspose.pdf/image/) output width. | +| height | int32_t | [Image](../../../aspose.pdf/image/) output height. | +| resolution | System::SharedPtr\ | [Resolution](../../resolution/) for the result image file, see [Resolution](../../resolution/) class. | +## Remarks + + + + + + width + + + + Image output width. + + + + + height + + + + Image output height. + + + + + resolution + + + + Resolution for the result image file, see Resolution class. + + + +## See Also + +* Class [Resolution](../../resolution/) +* Class [DicomDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/dicomdevice/process/_index.md b/english/cpp/aspose.pdf.devices/dicomdevice/process/_index.md new file mode 100644 index 0000000000..aa84a3c06b --- /dev/null +++ b/english/cpp/aspose.pdf.devices/dicomdevice/process/_index.md @@ -0,0 +1,50 @@ +--- +title: Aspose::Pdf::Devices::DicomDevice::Process method +linktitle: Process +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::DicomDevice::Process method. Converts the page into Dicom and saves it in the output stream in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.devices/dicomdevice/process/ +--- +## DicomDevice::Process method + + +Converts the page into Dicom and saves it in the output stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Devices::DicomDevice::Process(System::SharedPtr page, System::SharedPtr output) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The page to convert. | +| output | System::SharedPtr\ | Output stream with image. | +## Remarks + + + + + + page + + + The page to convert. + + + + + output + + + Output stream with image. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [DicomDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/documentdevice/_index.md b/english/cpp/aspose.pdf.devices/documentdevice/_index.md new file mode 100644 index 0000000000..00d376c369 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/documentdevice/_index.md @@ -0,0 +1,34 @@ +--- +title: Aspose::Pdf::Devices::DocumentDevice class +linktitle: DocumentDevice +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::DocumentDevice class. Abstract class for all devices which is used to process the whole pdf document in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.devices/documentdevice/ +--- +## DocumentDevice class + + +Abstract class for all devices which is used to process the whole pdf document. + +```cpp +class DocumentDevice : public Aspose::Pdf::Devices::PageDevice +``` + +## Methods + +| Method | Description | +| --- | --- | +| [DocumentDevice](./documentdevice/)() | | +| virtual [Process](./process/)(System::SharedPtr\, int32_t, int32_t, System::SharedPtr\) | Each device represents some operation on the document, e.g. we can convert pdf document into another format. | +| [Process](./process/)(System::SharedPtr\, System::SharedPtr\) | Processes the whole document and saves results into stream. | +| [Process](./process/)(System::SharedPtr\, System::String) | Processes the whole document and saves results into file. | +| [Process](./process/)(System::SharedPtr\, int32_t, int32_t, System::String) | Processes certain pages of the document and saves results into file. | +| virtual [Process](../pagedevice/process/)(System::SharedPtr\, System::SharedPtr\) | Perfoms some operation on the given page, e.g. converts page into graphic image. | +| [Process](../pagedevice/process/)(System::SharedPtr\, System::String) | Perfoms some operation on the given page and saves results into the file. | +## See Also + +* Class [PageDevice](../pagedevice/) +* Namespace [Aspose::Pdf::Devices](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.devices/documentdevice/documentdevice/_index.md b/english/cpp/aspose.pdf.devices/documentdevice/documentdevice/_index.md new file mode 100644 index 0000000000..ec72083a9e --- /dev/null +++ b/english/cpp/aspose.pdf.devices/documentdevice/documentdevice/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Devices::DocumentDevice::DocumentDevice constructor +linktitle: DocumentDevice +second_title: Aspose.PDF for C++ API Reference +description: 'How to use DocumentDevice constructor of Aspose::Pdf::Devices::DocumentDevice class in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.devices/documentdevice/documentdevice/ +--- +## DocumentDevice::DocumentDevice constructor + + + + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::DocumentDevice::DocumentDevice() +``` + +## See Also + +* Class [DocumentDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/documentdevice/process/_index.md b/english/cpp/aspose.pdf.devices/documentdevice/process/_index.md new file mode 100644 index 0000000000..a5b1369fa5 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/documentdevice/process/_index.md @@ -0,0 +1,209 @@ +--- +title: Aspose::Pdf::Devices::DocumentDevice::Process method +linktitle: Process +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::DocumentDevice::Process method. Each device represents some operation on the document, e.g. we can convert pdf document into another format in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.devices/documentdevice/process/ +--- +## DocumentDevice::Process(System::SharedPtr\, int32_t, int32_t, System::SharedPtr\) method + + +Each device represents some operation on the document, e.g. we can convert pdf document into another format. + +```cpp +virtual ASPOSE_PDF_SHARED_API void Aspose::Pdf::Devices::DocumentDevice::Process(System::SharedPtr document, int32_t fromPage, int32_t toPage, System::SharedPtr output)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | The document to process. | +| fromPage | int32_t | Defines the page from which to start processing. | +| toPage | int32_t | Defines the last page to process. | +| output | System::SharedPtr\ | Defines stream where the results of processing are stored. | +## Remarks + + + + + + document + + + The document to process. + + + + + fromPage + + + Defines the page from which to start processing. + + + + + toPage + + + Defines the last page to process. + + + + + output + + + Defines stream where the results of processing are stored. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [DocumentDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## DocumentDevice::Process(System::SharedPtr\, System::SharedPtr\) method + + +Processes the whole document and saves results into stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Devices::DocumentDevice::Process(System::SharedPtr document, System::SharedPtr output) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | The document to process. | +| output | System::SharedPtr\ | Defines stream where the results of processing are stored. | +## Remarks + + + + + + document + + + The document to process. + + + + + output + + + Defines stream where the results of processing are stored. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [DocumentDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## DocumentDevice::Process(System::SharedPtr\, System::String) method + + +Processes the whole document and saves results into file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Devices::DocumentDevice::Process(System::SharedPtr document, System::String outputFileName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | The document to process. | +| outputFileName | System::String | Defines file where the results of processing are stored. | +## Remarks + + + + + + document + + + The document to process. + + + + + outputFileName + + + Defines file where the results of processing are stored. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [DocumentDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## DocumentDevice::Process(System::SharedPtr\, int32_t, int32_t, System::String) method + + +Processes certain pages of the document and saves results into file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Devices::DocumentDevice::Process(System::SharedPtr document, int32_t fromPage, int32_t toPage, System::String outputFileName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | The document to process. | +| fromPage | int32_t | The first page to start processing. | +| toPage | int32_t | The last page of processing. | +| outputFileName | System::String | Defines file where the results of processing are stored. | +## Remarks + + + + + + document + + + The document to process. + + + + + fromPage + + + The first page to start processing. + + + + + toPage + + + The last page of processing. + + + + + outputFileName + + + Defines file where the results of processing are stored. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [DocumentDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/emfdevice/_index.md b/english/cpp/aspose.pdf.devices/emfdevice/_index.md new file mode 100644 index 0000000000..07ec5cb3fe --- /dev/null +++ b/english/cpp/aspose.pdf.devices/emfdevice/_index.md @@ -0,0 +1,50 @@ +--- +title: Aspose::Pdf::Devices::EmfDevice class +linktitle: EmfDevice +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::EmfDevice class. Represents image device that helps to save pdf document pages into emf in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.devices/emfdevice/ +--- +## EmfDevice class + + +Represents image device that helps to save pdf document pages into emf. + +```cpp +class EmfDevice : public Aspose::Pdf::Devices::ImageDevice +``` + +## Methods + +| Method | Description | +| --- | --- | +| [EmfDevice](./emfdevice/)() | Initializes a new instance of the [EmfDevice](./) class with default resolution of raster image written to emf. | +| [EmfDevice](./emfdevice/)(System::SharedPtr\) | Initializes a new instance of the [EmfDevice](./) class. | +| [EmfDevice](./emfdevice/)(int32_t, int32_t) | Initializes a new instance of the [EmfDevice](./) class with provided image dimensions, and default resolution for the raster image written to emf (=150) | +| [EmfDevice](./emfdevice/)(System::SharedPtr\) | Initializes a new instance of the [EmfDevice](./) class with provided page size, and default resolution for the raster image written to emf (=150) | +| [EmfDevice](./emfdevice/)(int32_t, int32_t, System::SharedPtr\) | Initializes a new instance of the [JpegDevice](../jpegdevice/) class with provided image dimensions, and resolution for the raster image written to emf. | +| [EmfDevice](./emfdevice/)(System::SharedPtr\, System::SharedPtr\) | Initializes a new instance of the [JpegDevice](../jpegdevice/) class with provided page size, and resolution for the raster image written to emf. | +| [get_CoordinateType](../imagedevice/get_coordinatetype/)() const | Gets the page coordinate type (Media/Crop boxes). CropBox value is used by default. | +| [get_FormPresentationMode](../imagedevice/get_formpresentationmode/)() const | Gets form presentation mode. | +| [get_Height](../imagedevice/get_height/)() const | Gets image output height. | +| [get_RenderingOptions](../imagedevice/get_renderingoptions/)() const | Gets rendering options. | +| [get_Resolution](../imagedevice/get_resolution/)() const | Gets image resolution. | +| [get_Width](../imagedevice/get_width/)() const | Gets image output width. | +| [ImageDevice](../imagedevice/imagedevice/)() | Abstract initializer for [ImageDevice](../imagedevice/) descendants, set resolution to 150x150. | +| [ImageDevice](../imagedevice/imagedevice/)(System::SharedPtr\) | Abstract initializer for [ImageDevice](../imagedevice/) descendants. | +| [ImageDevice](../imagedevice/imagedevice/)(int32_t, int32_t) | Initializes a new instance of the [JpegDevice](../jpegdevice/) class with provided image dimensions and default resolution (=150). | +| [ImageDevice](../imagedevice/imagedevice/)(System::SharedPtr\) | Initializes a new instance of the [JpegDevice](../jpegdevice/) class with provided image dimensions and default resolution (=150). | +| [ImageDevice](../imagedevice/imagedevice/)(int32_t, int32_t, System::SharedPtr\) | Initializes a new instance of the [JpegDevice](../jpegdevice/) class with provided image dimensions and resolution. | +| [ImageDevice](../imagedevice/imagedevice/)(System::SharedPtr\, System::SharedPtr\) | Initializes a new instance of the [JpegDevice](../jpegdevice/) class with provided image dimensions and resolution. | +| [Process](./process/)(System::SharedPtr\, System::SharedPtr\) override | Converts the page into emf and saves it in the output stream. | +| [Process](../pagedevice/process/)(System::SharedPtr\, System::String) | Perfoms some operation on the given page and saves results into the file. | +| [set_CoordinateType](../imagedevice/set_coordinatetype/)(PageCoordinateType) | Sets the page coordinate type (Media/Crop boxes). CropBox value is used by default. | +| [set_FormPresentationMode](../imagedevice/set_formpresentationmode/)(Aspose::Pdf::Devices::FormPresentationMode) | Sets form presentation mode. | +| [set_RenderingOptions](../imagedevice/set_renderingoptions/)(System::SharedPtr\) | Sets rendering options. | +## See Also + +* Class [ImageDevice](../imagedevice/) +* Namespace [Aspose::Pdf::Devices](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.devices/emfdevice/emfdevice/_index.md b/english/cpp/aspose.pdf.devices/emfdevice/emfdevice/_index.md new file mode 100644 index 0000000000..a958dd3ee8 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/emfdevice/emfdevice/_index.md @@ -0,0 +1,210 @@ +--- +title: Aspose::Pdf::Devices::EmfDevice::EmfDevice constructor +linktitle: EmfDevice +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::EmfDevice::EmfDevice constructor. Initializes a new instance of the EmfDevice class with default resolution of raster image written to emf in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.devices/emfdevice/emfdevice/ +--- +## EmfDevice::EmfDevice() constructor + + +Initializes a new instance of the [EmfDevice](../) class with default resolution of raster image written to emf. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::EmfDevice::EmfDevice() +``` + +## See Also + +* Class [EmfDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## EmfDevice::EmfDevice(System::SharedPtr\) constructor + + +Initializes a new instance of the [EmfDevice](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::EmfDevice::EmfDevice(System::SharedPtr resolution) +``` + +## See Also + +* Class [Resolution](../../resolution/) +* Class [EmfDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## EmfDevice::EmfDevice(int32_t, int32_t) constructor + + +Initializes a new instance of the [EmfDevice](../) class with provided image dimensions, and default resolution for the raster image written to emf (=150) + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::EmfDevice::EmfDevice(int32_t width, int32_t height) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| width | int32_t | [Image](../../../aspose.pdf/image/) output width. | +| height | int32_t | [Image](../../../aspose.pdf/image/) output height. | +## Remarks + + + + + + width + + + + Image output width. + + + + + height + + + + Image output height. + + + +## See Also + +* Class [EmfDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## EmfDevice::EmfDevice(System::SharedPtr\) constructor + + +Initializes a new instance of the [EmfDevice](../) class with provided page size, and default resolution for the raster image written to emf (=150) + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::EmfDevice::EmfDevice(System::SharedPtr pageSize) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageSize | System::SharedPtr\ | [Page](../../../aspose.pdf/page/) size of the output image. | +## Remarks + + + + + + pageSize + + + + Page size of the output image. + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [EmfDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## EmfDevice::EmfDevice(int32_t, int32_t, System::SharedPtr\) constructor + + +Initializes a new instance of the [JpegDevice](../../jpegdevice/) class with provided image dimensions, and resolution for the raster image written to emf. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::EmfDevice::EmfDevice(int32_t width, int32_t height, System::SharedPtr resolution) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| width | int32_t | [Image](../../../aspose.pdf/image/) output width. | +| height | int32_t | [Image](../../../aspose.pdf/image/) output height. | +| resolution | System::SharedPtr\ | [Resolution](../../resolution/) for the for the raster image written to emf, see [Resolution](../../resolution/) class. | +## Remarks + + + + + + width + + + + Image output width. + + + + + height + + + + Image output height. + + + + + resolution + + + + Resolution for the for the raster image written to emf, see Resolution class. + + + +## See Also + +* Class [Resolution](../../resolution/) +* Class [EmfDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## EmfDevice::EmfDevice(System::SharedPtr\, System::SharedPtr\) constructor + + +Initializes a new instance of the [JpegDevice](../../jpegdevice/) class with provided page size, and resolution for the raster image written to emf. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::EmfDevice::EmfDevice(System::SharedPtr pageSize, System::SharedPtr resolution) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageSize | System::SharedPtr\ | [Page](../../../aspose.pdf/page/) size of the output image. | +| resolution | System::SharedPtr\ | [Resolution](../../resolution/) for the for the raster image written to emf, see [Resolution](../../resolution/) class. | +## Remarks + + + + + + pageSize + + + + Page size of the output image. + + + + + resolution + + + + Resolution for the for the raster image written to emf, see Resolution class. + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [Resolution](../../resolution/) +* Class [EmfDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/emfdevice/process/_index.md b/english/cpp/aspose.pdf.devices/emfdevice/process/_index.md new file mode 100644 index 0000000000..61d788c738 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/emfdevice/process/_index.md @@ -0,0 +1,50 @@ +--- +title: Aspose::Pdf::Devices::EmfDevice::Process method +linktitle: Process +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::EmfDevice::Process method. Converts the page into emf and saves it in the output stream in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.devices/emfdevice/process/ +--- +## EmfDevice::Process method + + +Converts the page into emf and saves it in the output stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Devices::EmfDevice::Process(System::SharedPtr page, System::SharedPtr output) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The page to convert. | +| output | System::SharedPtr\ | Output stream with emf image. | +## Remarks + + + + + + page + + + The page to convert. + + + + + output + + + Output stream with emf image. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [EmfDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/formpresentationmode/_index.md b/english/cpp/aspose.pdf.devices/formpresentationmode/_index.md new file mode 100644 index 0000000000..ab4f822538 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/formpresentationmode/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Devices::FormPresentationMode enum +linktitle: FormPresentationMode +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::FormPresentationMode enum. Used to specify the form presentation mode when printing or converting to image pdf documents in C++.' +type: docs +weight: 1900 +url: /cpp/aspose.pdf.devices/formpresentationmode/ +--- +## FormPresentationMode enum + + +Used to specify the form presentation mode when printing or converting to image pdf documents. + +```cpp +enum class FormPresentationMode +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Production | 0 | Specifies Production form presentation mode (used by default). | +| Editor | 1 | Specifies Editor form presentation mode. | + +## See Also + +* Namespace [Aspose::Pdf::Devices](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.devices/gifdevice/_index.md b/english/cpp/aspose.pdf.devices/gifdevice/_index.md new file mode 100644 index 0000000000..5ed022f0a7 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/gifdevice/_index.md @@ -0,0 +1,50 @@ +--- +title: Aspose::Pdf::Devices::GifDevice class +linktitle: GifDevice +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::GifDevice class. Represents image device that helps to save pdf document pages into gif in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.devices/gifdevice/ +--- +## GifDevice class + + +Represents image device that helps to save pdf document pages into gif. + +```cpp +class GifDevice : public Aspose::Pdf::Devices::ImageDevice +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_CoordinateType](../imagedevice/get_coordinatetype/)() const | Gets the page coordinate type (Media/Crop boxes). CropBox value is used by default. | +| [get_FormPresentationMode](../imagedevice/get_formpresentationmode/)() const | Gets form presentation mode. | +| [get_Height](../imagedevice/get_height/)() const | Gets image output height. | +| [get_RenderingOptions](../imagedevice/get_renderingoptions/)() const | Gets rendering options. | +| [get_Resolution](../imagedevice/get_resolution/)() const | Gets image resolution. | +| [get_Width](../imagedevice/get_width/)() const | Gets image output width. | +| [GifDevice](./gifdevice/)() | Initializes a new instance of the [GifDevice](./) class with default resolution. | +| [GifDevice](./gifdevice/)(System::SharedPtr\) | Initializes a new instance of the [GifDevice](./) class. | +| [GifDevice](./gifdevice/)(int32_t, int32_t, System::SharedPtr\) | Initializes a new instance of the [GifDevice](./) class with provided image dimensions and resolution. | +| [GifDevice](./gifdevice/)(System::SharedPtr\, System::SharedPtr\) | Initializes a new instance of the [GifDevice](./) class with provided page size and resolution. | +| [GifDevice](./gifdevice/)(int32_t, int32_t) | Initializes a new instance of the [GifDevice](./) class with provided image dimensions, default resolution (=150). | +| [GifDevice](./gifdevice/)(System::SharedPtr\) | Initializes a new instance of the [GifDevice](./) class with provided page size, default resolution (=150). | +| [ImageDevice](../imagedevice/imagedevice/)() | Abstract initializer for [ImageDevice](../imagedevice/) descendants, set resolution to 150x150. | +| [ImageDevice](../imagedevice/imagedevice/)(System::SharedPtr\) | Abstract initializer for [ImageDevice](../imagedevice/) descendants. | +| [ImageDevice](../imagedevice/imagedevice/)(int32_t, int32_t) | Initializes a new instance of the [JpegDevice](../jpegdevice/) class with provided image dimensions and default resolution (=150). | +| [ImageDevice](../imagedevice/imagedevice/)(System::SharedPtr\) | Initializes a new instance of the [JpegDevice](../jpegdevice/) class with provided image dimensions and default resolution (=150). | +| [ImageDevice](../imagedevice/imagedevice/)(int32_t, int32_t, System::SharedPtr\) | Initializes a new instance of the [JpegDevice](../jpegdevice/) class with provided image dimensions and resolution. | +| [ImageDevice](../imagedevice/imagedevice/)(System::SharedPtr\, System::SharedPtr\) | Initializes a new instance of the [JpegDevice](../jpegdevice/) class with provided image dimensions and resolution. | +| [Process](./process/)(System::SharedPtr\, System::SharedPtr\) override | Converts the page into gif and saves it in the output stream. | +| [Process](../pagedevice/process/)(System::SharedPtr\, System::String) | Perfoms some operation on the given page and saves results into the file. | +| [set_CoordinateType](../imagedevice/set_coordinatetype/)(PageCoordinateType) | Sets the page coordinate type (Media/Crop boxes). CropBox value is used by default. | +| [set_FormPresentationMode](../imagedevice/set_formpresentationmode/)(Aspose::Pdf::Devices::FormPresentationMode) | Sets form presentation mode. | +| [set_RenderingOptions](../imagedevice/set_renderingoptions/)(System::SharedPtr\) | Sets rendering options. | +## See Also + +* Class [ImageDevice](../imagedevice/) +* Namespace [Aspose::Pdf::Devices](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.devices/gifdevice/gifdevice/_index.md b/english/cpp/aspose.pdf.devices/gifdevice/gifdevice/_index.md new file mode 100644 index 0000000000..1cea36e78a --- /dev/null +++ b/english/cpp/aspose.pdf.devices/gifdevice/gifdevice/_index.md @@ -0,0 +1,210 @@ +--- +title: Aspose::Pdf::Devices::GifDevice::GifDevice constructor +linktitle: GifDevice +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::GifDevice::GifDevice constructor. Initializes a new instance of the GifDevice class with default resolution in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.devices/gifdevice/gifdevice/ +--- +## GifDevice::GifDevice() constructor + + +Initializes a new instance of the [GifDevice](../) class with default resolution. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::GifDevice::GifDevice() +``` + +## See Also + +* Class [GifDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## GifDevice::GifDevice(System::SharedPtr\) constructor + + +Initializes a new instance of the [GifDevice](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::GifDevice::GifDevice(System::SharedPtr resolution) +``` + +## See Also + +* Class [Resolution](../../resolution/) +* Class [GifDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## GifDevice::GifDevice(int32_t, int32_t, System::SharedPtr\) constructor + + +Initializes a new instance of the [GifDevice](../) class with provided image dimensions and resolution. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::GifDevice::GifDevice(int32_t width, int32_t height, System::SharedPtr resolution) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| width | int32_t | [Image](../../../aspose.pdf/image/) output width. | +| height | int32_t | [Image](../../../aspose.pdf/image/) output height. | +| resolution | System::SharedPtr\ | [Resolution](../../resolution/) for the result image file, see [Resolution](../../resolution/) class. | +## Remarks + + + + + + width + + + + Image output width. + + + + + height + + + + Image output height. + + + + + resolution + + + + Resolution for the result image file, see Resolution class. + + + +## See Also + +* Class [Resolution](../../resolution/) +* Class [GifDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## GifDevice::GifDevice(System::SharedPtr\, System::SharedPtr\) constructor + + +Initializes a new instance of the [GifDevice](../) class with provided page size and resolution. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::GifDevice::GifDevice(System::SharedPtr pageSize, System::SharedPtr resolution) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageSize | System::SharedPtr\ | [Page](../../../aspose.pdf/page/) size of the output image. | +| resolution | System::SharedPtr\ | [Resolution](../../resolution/) for the result image file, see [Resolution](../../resolution/) class. | +## Remarks + + + + + + pageSize + + + + Page size of the output image. + + + + + resolution + + + + Resolution for the result image file, see Resolution class. + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [Resolution](../../resolution/) +* Class [GifDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## GifDevice::GifDevice(int32_t, int32_t) constructor + + +Initializes a new instance of the [GifDevice](../) class with provided image dimensions, default resolution (=150). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::GifDevice::GifDevice(int32_t width, int32_t height) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| width | int32_t | [Image](../../../aspose.pdf/image/) output width. | +| height | int32_t | [Image](../../../aspose.pdf/image/) output height. | +## Remarks + + + + + + width + + + + Image output width. + + + + + height + + + + Image output height. + + + +## See Also + +* Class [GifDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## GifDevice::GifDevice(System::SharedPtr\) constructor + + +Initializes a new instance of the [GifDevice](../) class with provided page size, default resolution (=150). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::GifDevice::GifDevice(System::SharedPtr pageSize) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageSize | System::SharedPtr\ | [Page](../../../aspose.pdf/page/) size of the output image. | +## Remarks + + + + + + pageSize + + + + Page size of the output image. + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [GifDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/gifdevice/process/_index.md b/english/cpp/aspose.pdf.devices/gifdevice/process/_index.md new file mode 100644 index 0000000000..fc3cdf27e7 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/gifdevice/process/_index.md @@ -0,0 +1,50 @@ +--- +title: Aspose::Pdf::Devices::GifDevice::Process method +linktitle: Process +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::GifDevice::Process method. Converts the page into gif and saves it in the output stream in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.devices/gifdevice/process/ +--- +## GifDevice::Process method + + +Converts the page into gif and saves it in the output stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Devices::GifDevice::Process(System::SharedPtr page, System::SharedPtr output) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The page to convert. | +| output | System::SharedPtr\ | Output stream with gif image. | +## Remarks + + + + + + page + + + The page to convert. + + + + + output + + + Output stream with gif image. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [GifDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/imagedevice/_index.md b/english/cpp/aspose.pdf.devices/imagedevice/_index.md new file mode 100644 index 0000000000..087d3c0467 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/imagedevice/_index.md @@ -0,0 +1,44 @@ +--- +title: Aspose::Pdf::Devices::ImageDevice class +linktitle: ImageDevice +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::ImageDevice class. An abstract class for image devices in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.devices/imagedevice/ +--- +## ImageDevice class + + +An abstract class for image devices. + +```cpp +class ImageDevice : public Aspose::Pdf::Devices::PageDevice +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_CoordinateType](./get_coordinatetype/)() const | Gets the page coordinate type (Media/Crop boxes). CropBox value is used by default. | +| [get_FormPresentationMode](./get_formpresentationmode/)() const | Gets form presentation mode. | +| [get_Height](./get_height/)() const | Gets image output height. | +| [get_RenderingOptions](./get_renderingoptions/)() const | Gets rendering options. | +| [get_Resolution](./get_resolution/)() const | Gets image resolution. | +| [get_Width](./get_width/)() const | Gets image output width. | +| [ImageDevice](./imagedevice/)() | Abstract initializer for [ImageDevice](./) descendants, set resolution to 150x150. | +| [ImageDevice](./imagedevice/)(System::SharedPtr\) | Abstract initializer for [ImageDevice](./) descendants. | +| [ImageDevice](./imagedevice/)(int32_t, int32_t) | Initializes a new instance of the [JpegDevice](../jpegdevice/) class with provided image dimensions and default resolution (=150). | +| [ImageDevice](./imagedevice/)(System::SharedPtr\) | Initializes a new instance of the [JpegDevice](../jpegdevice/) class with provided image dimensions and default resolution (=150). | +| [ImageDevice](./imagedevice/)(int32_t, int32_t, System::SharedPtr\) | Initializes a new instance of the [JpegDevice](../jpegdevice/) class with provided image dimensions and resolution. | +| [ImageDevice](./imagedevice/)(System::SharedPtr\, System::SharedPtr\) | Initializes a new instance of the [JpegDevice](../jpegdevice/) class with provided image dimensions and resolution. | +| virtual [Process](../pagedevice/process/)(System::SharedPtr\, System::SharedPtr\) | Perfoms some operation on the given page, e.g. converts page into graphic image. | +| [Process](../pagedevice/process/)(System::SharedPtr\, System::String) | Perfoms some operation on the given page and saves results into the file. | +| [set_CoordinateType](./set_coordinatetype/)(PageCoordinateType) | Sets the page coordinate type (Media/Crop boxes). CropBox value is used by default. | +| [set_FormPresentationMode](./set_formpresentationmode/)(Aspose::Pdf::Devices::FormPresentationMode) | Sets form presentation mode. | +| [set_RenderingOptions](./set_renderingoptions/)(System::SharedPtr\) | Sets rendering options. | +## See Also + +* Class [PageDevice](../pagedevice/) +* Namespace [Aspose::Pdf::Devices](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.devices/imagedevice/get_coordinatetype/_index.md b/english/cpp/aspose.pdf.devices/imagedevice/get_coordinatetype/_index.md new file mode 100644 index 0000000000..0c3c120e73 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/imagedevice/get_coordinatetype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Devices::ImageDevice::get_CoordinateType method +linktitle: get_CoordinateType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::ImageDevice::get_CoordinateType method. Gets the page coordinate type (Media/Crop boxes). CropBox value is used by default in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.devices/imagedevice/get_coordinatetype/ +--- +## ImageDevice::get_CoordinateType method + + +Gets the page coordinate type (Media/Crop boxes). CropBox value is used by default. + +```cpp +ASPOSE_PDF_SHARED_API PageCoordinateType Aspose::Pdf::Devices::ImageDevice::get_CoordinateType() const +``` + +## See Also + +* Enum [PageCoordinateType](../../../aspose.pdf/pagecoordinatetype/) +* Class [ImageDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/imagedevice/get_formpresentationmode/_index.md b/english/cpp/aspose.pdf.devices/imagedevice/get_formpresentationmode/_index.md new file mode 100644 index 0000000000..411d985302 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/imagedevice/get_formpresentationmode/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Devices::ImageDevice::get_FormPresentationMode method +linktitle: get_FormPresentationMode +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::ImageDevice::get_FormPresentationMode method. Gets form presentation mode in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.devices/imagedevice/get_formpresentationmode/ +--- +## ImageDevice::get_FormPresentationMode method + + +Gets form presentation mode. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::FormPresentationMode Aspose::Pdf::Devices::ImageDevice::get_FormPresentationMode() const +``` + +## See Also + +* Enum [FormPresentationMode](../../formpresentationmode/) +* Class [ImageDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/imagedevice/get_height/_index.md b/english/cpp/aspose.pdf.devices/imagedevice/get_height/_index.md new file mode 100644 index 0000000000..8a4e30944e --- /dev/null +++ b/english/cpp/aspose.pdf.devices/imagedevice/get_height/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Devices::ImageDevice::get_Height method +linktitle: get_Height +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::ImageDevice::get_Height method. Gets image output height in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.devices/imagedevice/get_height/ +--- +## ImageDevice::get_Height method + + +Gets image output height. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Devices::ImageDevice::get_Height() const +``` + +## See Also + +* Class [ImageDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/imagedevice/get_renderingoptions/_index.md b/english/cpp/aspose.pdf.devices/imagedevice/get_renderingoptions/_index.md new file mode 100644 index 0000000000..b973458a82 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/imagedevice/get_renderingoptions/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Devices::ImageDevice::get_RenderingOptions method +linktitle: get_RenderingOptions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::ImageDevice::get_RenderingOptions method. Gets rendering options in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.devices/imagedevice/get_renderingoptions/ +--- +## ImageDevice::get_RenderingOptions method + + +Gets rendering options. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Devices::ImageDevice::get_RenderingOptions() const +``` + +## See Also + +* Class [RenderingOptions](../../../aspose.pdf/renderingoptions/) +* Class [ImageDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/imagedevice/get_resolution/_index.md b/english/cpp/aspose.pdf.devices/imagedevice/get_resolution/_index.md new file mode 100644 index 0000000000..0e31f00600 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/imagedevice/get_resolution/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Devices::ImageDevice::get_Resolution method +linktitle: get_Resolution +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::ImageDevice::get_Resolution method. Gets image resolution in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.devices/imagedevice/get_resolution/ +--- +## ImageDevice::get_Resolution method + + +Gets image resolution. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Devices::ImageDevice::get_Resolution() const +``` + +## See Also + +* Class [Resolution](../../resolution/) +* Class [ImageDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/imagedevice/get_width/_index.md b/english/cpp/aspose.pdf.devices/imagedevice/get_width/_index.md new file mode 100644 index 0000000000..9855829b9a --- /dev/null +++ b/english/cpp/aspose.pdf.devices/imagedevice/get_width/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Devices::ImageDevice::get_Width method +linktitle: get_Width +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::ImageDevice::get_Width method. Gets image output width in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.devices/imagedevice/get_width/ +--- +## ImageDevice::get_Width method + + +Gets image output width. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Devices::ImageDevice::get_Width() const +``` + +## See Also + +* Class [ImageDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/imagedevice/imagedevice/_index.md b/english/cpp/aspose.pdf.devices/imagedevice/imagedevice/_index.md new file mode 100644 index 0000000000..19437aa809 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/imagedevice/imagedevice/_index.md @@ -0,0 +1,210 @@ +--- +title: Aspose::Pdf::Devices::ImageDevice::ImageDevice constructor +linktitle: ImageDevice +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::ImageDevice::ImageDevice constructor. Abstract initializer for ImageDevice descendants, set resolution to 150x150 in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.devices/imagedevice/imagedevice/ +--- +## ImageDevice::ImageDevice() constructor + + +Abstract initializer for [ImageDevice](../) descendants, set resolution to 150x150. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::ImageDevice::ImageDevice() +``` + +## See Also + +* Class [ImageDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## ImageDevice::ImageDevice(System::SharedPtr\) constructor + + +Abstract initializer for [ImageDevice](../) descendants. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::ImageDevice::ImageDevice(System::SharedPtr resolution) +``` + +## See Also + +* Class [Resolution](../../resolution/) +* Class [ImageDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## ImageDevice::ImageDevice(int32_t, int32_t) constructor + + +Initializes a new instance of the [JpegDevice](../../jpegdevice/) class with provided image dimensions and default resolution (=150). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::ImageDevice::ImageDevice(int32_t width, int32_t height) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| width | int32_t | [Image](../../../aspose.pdf/image/) output width. | +| height | int32_t | [Image](../../../aspose.pdf/image/) output height. | +## Remarks + + + + + + width + + + + Image output width. + + + + + height + + + + Image output height. + + + +## See Also + +* Class [ImageDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## ImageDevice::ImageDevice(System::SharedPtr\) constructor + + +Initializes a new instance of the [JpegDevice](../../jpegdevice/) class with provided image dimensions and default resolution (=150). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::ImageDevice::ImageDevice(System::SharedPtr pageSize) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageSize | System::SharedPtr\ | [Page](../../../aspose.pdf/page/) size of the output image. | +## Remarks + + + + + + pageSize + + + + Page size of the output image. + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [ImageDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## ImageDevice::ImageDevice(int32_t, int32_t, System::SharedPtr\) constructor + + +Initializes a new instance of the [JpegDevice](../../jpegdevice/) class with provided image dimensions and resolution. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::ImageDevice::ImageDevice(int32_t width, int32_t height, System::SharedPtr resolution) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| width | int32_t | [Image](../../../aspose.pdf/image/) output width. | +| height | int32_t | [Image](../../../aspose.pdf/image/) output height. | +| resolution | System::SharedPtr\ | [Resolution](../../resolution/) for the result image file, see [Resolution](../../resolution/) class. | +## Remarks + + + + + + width + + + + Image output width. + + + + + height + + + + Image output height. + + + + + resolution + + + + Resolution for the result image file, see Resolution class. + + + +## See Also + +* Class [Resolution](../../resolution/) +* Class [ImageDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## ImageDevice::ImageDevice(System::SharedPtr\, System::SharedPtr\) constructor + + +Initializes a new instance of the [JpegDevice](../../jpegdevice/) class with provided image dimensions and resolution. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::ImageDevice::ImageDevice(System::SharedPtr pageSize, System::SharedPtr resolution) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageSize | System::SharedPtr\ | [Page](../../../aspose.pdf/page/) size of the output image. | +| resolution | System::SharedPtr\ | [Resolution](../../resolution/) for the result image file, see [Resolution](../../resolution/) class. | +## Remarks + + + + + + pageSize + + + + Page size of the output image. + + + + + resolution + + + + Resolution for the result image file, see Resolution class. + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [Resolution](../../resolution/) +* Class [ImageDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/imagedevice/set_coordinatetype/_index.md b/english/cpp/aspose.pdf.devices/imagedevice/set_coordinatetype/_index.md new file mode 100644 index 0000000000..54dfa85464 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/imagedevice/set_coordinatetype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Devices::ImageDevice::set_CoordinateType method +linktitle: set_CoordinateType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::ImageDevice::set_CoordinateType method. Sets the page coordinate type (Media/Crop boxes). CropBox value is used by default in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.devices/imagedevice/set_coordinatetype/ +--- +## ImageDevice::set_CoordinateType method + + +Sets the page coordinate type (Media/Crop boxes). CropBox value is used by default. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Devices::ImageDevice::set_CoordinateType(PageCoordinateType value) +``` + +## See Also + +* Enum [PageCoordinateType](../../../aspose.pdf/pagecoordinatetype/) +* Class [ImageDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/imagedevice/set_formpresentationmode/_index.md b/english/cpp/aspose.pdf.devices/imagedevice/set_formpresentationmode/_index.md new file mode 100644 index 0000000000..5da9e51966 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/imagedevice/set_formpresentationmode/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Devices::ImageDevice::set_FormPresentationMode method +linktitle: set_FormPresentationMode +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::ImageDevice::set_FormPresentationMode method. Sets form presentation mode in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.devices/imagedevice/set_formpresentationmode/ +--- +## ImageDevice::set_FormPresentationMode method + + +Sets form presentation mode. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Devices::ImageDevice::set_FormPresentationMode(Aspose::Pdf::Devices::FormPresentationMode value) +``` + +## See Also + +* Enum [FormPresentationMode](../../formpresentationmode/) +* Class [ImageDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/imagedevice/set_renderingoptions/_index.md b/english/cpp/aspose.pdf.devices/imagedevice/set_renderingoptions/_index.md new file mode 100644 index 0000000000..5bd5bc7172 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/imagedevice/set_renderingoptions/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Devices::ImageDevice::set_RenderingOptions method +linktitle: set_RenderingOptions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::ImageDevice::set_RenderingOptions method. Sets rendering options in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.devices/imagedevice/set_renderingoptions/ +--- +## ImageDevice::set_RenderingOptions method + + +Sets rendering options. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Devices::ImageDevice::set_RenderingOptions(System::SharedPtr value) +``` + +## See Also + +* Class [RenderingOptions](../../../aspose.pdf/renderingoptions/) +* Class [ImageDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/jpegdevice/_index.md b/english/cpp/aspose.pdf.devices/jpegdevice/_index.md new file mode 100644 index 0000000000..562f30cb5b --- /dev/null +++ b/english/cpp/aspose.pdf.devices/jpegdevice/_index.md @@ -0,0 +1,54 @@ +--- +title: Aspose::Pdf::Devices::JpegDevice class +linktitle: JpegDevice +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::JpegDevice class. Represents image device that helps to save pdf document pages into jpeg in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.devices/jpegdevice/ +--- +## JpegDevice class + + +Represents image device that helps to save pdf document pages into jpeg. + +```cpp +class JpegDevice : public Aspose::Pdf::Devices::ImageDevice +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_CoordinateType](../imagedevice/get_coordinatetype/)() const | Gets the page coordinate type (Media/Crop boxes). CropBox value is used by default. | +| [get_FormPresentationMode](../imagedevice/get_formpresentationmode/)() const | Gets form presentation mode. | +| [get_Height](../imagedevice/get_height/)() const | Gets image output height. | +| [get_RenderingOptions](../imagedevice/get_renderingoptions/)() const | Gets rendering options. | +| [get_Resolution](../imagedevice/get_resolution/)() const | Gets image resolution. | +| [get_Width](../imagedevice/get_width/)() const | Gets image output width. | +| [ImageDevice](../imagedevice/imagedevice/)() | Abstract initializer for [ImageDevice](../imagedevice/) descendants, set resolution to 150x150. | +| [ImageDevice](../imagedevice/imagedevice/)(System::SharedPtr\) | Abstract initializer for [ImageDevice](../imagedevice/) descendants. | +| [ImageDevice](../imagedevice/imagedevice/)(int32_t, int32_t) | Initializes a new instance of the [JpegDevice](./) class with provided image dimensions and default resolution (=150). | +| [ImageDevice](../imagedevice/imagedevice/)(System::SharedPtr\) | Initializes a new instance of the [JpegDevice](./) class with provided image dimensions and default resolution (=150). | +| [ImageDevice](../imagedevice/imagedevice/)(int32_t, int32_t, System::SharedPtr\) | Initializes a new instance of the [JpegDevice](./) class with provided image dimensions and resolution. | +| [ImageDevice](../imagedevice/imagedevice/)(System::SharedPtr\, System::SharedPtr\) | Initializes a new instance of the [JpegDevice](./) class with provided image dimensions and resolution. | +| [JpegDevice](./jpegdevice/)() | Initializes a new instance of the [JpegDevice](./) class with default resolution and maximum quality. | +| [JpegDevice](./jpegdevice/)(System::SharedPtr\) | Initializes a new instance of the [JpegDevice](./) class. | +| [JpegDevice](./jpegdevice/)(int32_t) | Initializes a new instance of the [JpegDevice](./) class. | +| [JpegDevice](./jpegdevice/)(System::SharedPtr\, int32_t) | Initializes a new instance of the [JpegDevice](./) class. | +| [JpegDevice](./jpegdevice/)(int32_t, int32_t) | Initializes a new instance of the [JpegDevice](./) class with provided image dimensions, default resolution (=150) and maximum quality. | +| [JpegDevice](./jpegdevice/)(System::SharedPtr\) | Initializes a new instance of the [JpegDevice](./) class with provided page size, default resolution (=150) and maximum quality. | +| [JpegDevice](./jpegdevice/)(int32_t, int32_t, System::SharedPtr\) | Initializes a new instance of the [JpegDevice](./) class with provided image dimensions, resolution and maximum quality. | +| [JpegDevice](./jpegdevice/)(System::SharedPtr\, System::SharedPtr\) | Initializes a new instance of the [JpegDevice](./) class with provided page size, resolution and maximum quality. | +| [JpegDevice](./jpegdevice/)(int32_t, int32_t, System::SharedPtr\, int32_t) | Initializes a new instance of the [JpegDevice](./) class with provided image dimensions, resolution and quality. | +| [JpegDevice](./jpegdevice/)(System::SharedPtr\, System::SharedPtr\, int32_t) | Initializes a new instance of the [JpegDevice](./) class with provided page size, resolution and quality. | +| [Process](./process/)(System::SharedPtr\, System::SharedPtr\) override | Converts the page into jpeg and saves it in the output stream. | +| [Process](../pagedevice/process/)(System::SharedPtr\, System::String) | Perfoms some operation on the given page and saves results into the file. | +| [set_CoordinateType](../imagedevice/set_coordinatetype/)(PageCoordinateType) | Sets the page coordinate type (Media/Crop boxes). CropBox value is used by default. | +| [set_FormPresentationMode](../imagedevice/set_formpresentationmode/)(Aspose::Pdf::Devices::FormPresentationMode) | Sets form presentation mode. | +| [set_RenderingOptions](../imagedevice/set_renderingoptions/)(System::SharedPtr\) | Sets rendering options. | +## See Also + +* Class [ImageDevice](../imagedevice/) +* Namespace [Aspose::Pdf::Devices](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.devices/jpegdevice/jpegdevice/_index.md b/english/cpp/aspose.pdf.devices/jpegdevice/jpegdevice/_index.md new file mode 100644 index 0000000000..631b9c3923 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/jpegdevice/jpegdevice/_index.md @@ -0,0 +1,398 @@ +--- +title: Aspose::Pdf::Devices::JpegDevice::JpegDevice constructor +linktitle: JpegDevice +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::JpegDevice::JpegDevice constructor. Initializes a new instance of the JpegDevice class with default resolution and maximum quality in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.devices/jpegdevice/jpegdevice/ +--- +## JpegDevice::JpegDevice() constructor + + +Initializes a new instance of the [JpegDevice](../) class with default resolution and maximum quality. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::JpegDevice::JpegDevice() +``` + +## See Also + +* Class [JpegDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## JpegDevice::JpegDevice(System::SharedPtr\) constructor + + +Initializes a new instance of the [JpegDevice](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::JpegDevice::JpegDevice(System::SharedPtr resolution) +``` + +## See Also + +* Class [Resolution](../../resolution/) +* Class [JpegDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## JpegDevice::JpegDevice(int32_t) constructor + + +Initializes a new instance of the [JpegDevice](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::JpegDevice::JpegDevice(int32_t quality) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| quality | int32_t | Specifies the level of compression for an image. The range of useful values for the quality is from 0 to 100. The lower the number specified, the higher the compression and therefore the lower the quality of the image. Zero would give you the lowest quality image and 100 the highest. | +## Remarks + + + + + + quality + + + Specifies the level of compression for an image. The range of useful values for the quality is from 0 to 100. The lower the number specified, the higher the compression and therefore the lower the quality of the image. Zero would give you the lowest quality image and 100 the highest. + + + +## See Also + +* Class [JpegDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## JpegDevice::JpegDevice(System::SharedPtr\, int32_t) constructor + + +Initializes a new instance of the [JpegDevice](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::JpegDevice::JpegDevice(System::SharedPtr resolution, int32_t quality) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| resolution | System::SharedPtr\ | [Resolution](../../resolution/) for the result image file, see [Resolution](../../resolution/) class. | +| quality | int32_t | Specifies the level of compression for an image. The range of useful values for the quality is from 0 to 100. The lower the number specified, the higher the compression and therefore the lower the quality of the image. Zero would give you the lowest quality image and 100 the highest. | +## Remarks + + + + + + resolution + + + + Resolution for the result image file, see Resolution class. + + + + + quality + + + Specifies the level of compression for an image. The range of useful values for the quality is from 0 to 100. The lower the number specified, the higher the compression and therefore the lower the quality of the image. Zero would give you the lowest quality image and 100 the highest. + + + +## See Also + +* Class [Resolution](../../resolution/) +* Class [JpegDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## JpegDevice::JpegDevice(int32_t, int32_t) constructor + + +Initializes a new instance of the [JpegDevice](../) class with provided image dimensions, default resolution (=150) and maximum quality. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::JpegDevice::JpegDevice(int32_t width, int32_t height) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| width | int32_t | [Image](../../../aspose.pdf/image/) output width. | +| height | int32_t | [Image](../../../aspose.pdf/image/) output height. | +## Remarks + + + + + + width + + + + Image output width. + + + + + height + + + + Image output height. + + + +## See Also + +* Class [JpegDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## JpegDevice::JpegDevice(System::SharedPtr\) constructor + + +Initializes a new instance of the [JpegDevice](../) class with provided page size, default resolution (=150) and maximum quality. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::JpegDevice::JpegDevice(System::SharedPtr pageSize) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageSize | System::SharedPtr\ | [Page](../../../aspose.pdf/page/) size of the output image. | +## Remarks + + + + + + pageSize + + + + Page size of the output image. + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [JpegDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## JpegDevice::JpegDevice(int32_t, int32_t, System::SharedPtr\) constructor + + +Initializes a new instance of the [JpegDevice](../) class with provided image dimensions, resolution and maximum quality. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::JpegDevice::JpegDevice(int32_t width, int32_t height, System::SharedPtr resolution) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| width | int32_t | [Image](../../../aspose.pdf/image/) output width. | +| height | int32_t | [Image](../../../aspose.pdf/image/) output height. | +| resolution | System::SharedPtr\ | [Resolution](../../resolution/) for the result image file, see [Resolution](../../resolution/) class. | +## Remarks + + + + + + width + + + + Image output width. + + + + + height + + + + Image output height. + + + + + resolution + + + + Resolution for the result image file, see Resolution class. + + + +## See Also + +* Class [Resolution](../../resolution/) +* Class [JpegDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## JpegDevice::JpegDevice(System::SharedPtr\, System::SharedPtr\) constructor + + +Initializes a new instance of the [JpegDevice](../) class with provided page size, resolution and maximum quality. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::JpegDevice::JpegDevice(System::SharedPtr pageSize, System::SharedPtr resolution) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageSize | System::SharedPtr\ | [Page](../../../aspose.pdf/page/) size of the output image. | +| resolution | System::SharedPtr\ | [Resolution](../../resolution/) for the result image file, see [Resolution](../../resolution/) class. | +## Remarks + + + + + + pageSize + + + + Page size of the output image. + + + + + resolution + + + + Resolution for the result image file, see Resolution class. + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [Resolution](../../resolution/) +* Class [JpegDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## JpegDevice::JpegDevice(int32_t, int32_t, System::SharedPtr\, int32_t) constructor + + +Initializes a new instance of the [JpegDevice](../) class with provided image dimensions, resolution and quality. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::JpegDevice::JpegDevice(int32_t width, int32_t height, System::SharedPtr resolution, int32_t quality) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| width | int32_t | [Image](../../../aspose.pdf/image/) output width. | +| height | int32_t | [Image](../../../aspose.pdf/image/) output height. | +| resolution | System::SharedPtr\ | [Resolution](../../resolution/) for the result image file, see [Resolution](../../resolution/) class. | +| quality | int32_t | Specifies the level of compression for an image. The range of useful values for the quality is from 0 to 100. The lower the number specified, the higher the compression and therefore the lower the quality of the image. Zero would give you the lowest quality image and 100 the highest. | +## Remarks + + + + + + width + + + + Image output width. + + + + + height + + + + Image output height. + + + + + resolution + + + + Resolution for the result image file, see Resolution class. + + + + + quality + + + Specifies the level of compression for an image. The range of useful values for the quality is from 0 to 100. The lower the number specified, the higher the compression and therefore the lower the quality of the image. Zero would give you the lowest quality image and 100 the highest. + + + +## See Also + +* Class [Resolution](../../resolution/) +* Class [JpegDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## JpegDevice::JpegDevice(System::SharedPtr\, System::SharedPtr\, int32_t) constructor + + +Initializes a new instance of the [JpegDevice](../) class with provided page size, resolution and quality. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::JpegDevice::JpegDevice(System::SharedPtr pageSize, System::SharedPtr resolution, int32_t quality) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageSize | System::SharedPtr\ | [Page](../../../aspose.pdf/page/) size of the output image. | +| resolution | System::SharedPtr\ | [Resolution](../../resolution/) for the result image file, see [Resolution](../../resolution/) class. | +| quality | int32_t | Specifies the level of compression for an image. The range of useful values for the quality is from 0 to 100. The lower the number specified, the higher the compression and therefore the lower the quality of the image. Zero would give you the lowest quality image and 100 the highest. | +## Remarks + + + + + + pageSize + + + + Page size of the output image. + + + + + resolution + + + + Resolution for the result image file, see Resolution class. + + + + + quality + + + Specifies the level of compression for an image. The range of useful values for the quality is from 0 to 100. The lower the number specified, the higher the compression and therefore the lower the quality of the image. Zero would give you the lowest quality image and 100 the highest. + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [Resolution](../../resolution/) +* Class [JpegDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/jpegdevice/process/_index.md b/english/cpp/aspose.pdf.devices/jpegdevice/process/_index.md new file mode 100644 index 0000000000..5f42cb920f --- /dev/null +++ b/english/cpp/aspose.pdf.devices/jpegdevice/process/_index.md @@ -0,0 +1,50 @@ +--- +title: Aspose::Pdf::Devices::JpegDevice::Process method +linktitle: Process +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::JpegDevice::Process method. Converts the page into jpeg and saves it in the output stream in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.devices/jpegdevice/process/ +--- +## JpegDevice::Process method + + +Converts the page into jpeg and saves it in the output stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Devices::JpegDevice::Process(System::SharedPtr page, System::SharedPtr output) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The page to convert. | +| output | System::SharedPtr\ | Output stream with jpeg image. | +## Remarks + + + + + + page + + + The page to convert. + + + + + output + + + Output stream with jpeg image. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [JpegDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/margins/_index.md b/english/cpp/aspose.pdf.devices/margins/_index.md new file mode 100644 index 0000000000..01ea817c9f --- /dev/null +++ b/english/cpp/aspose.pdf.devices/margins/_index.md @@ -0,0 +1,36 @@ +--- +title: Aspose::Pdf::Devices::Margins class +linktitle: Margins +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::Margins class. This class represents margins of an image in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.devices/margins/ +--- +## Margins class + + +This class represents margins of an image. + +```cpp +class Margins : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_Bottom](./get_bottom/)() const | Gets the bottom. | +| [get_Left](./get_left/)() const | Gets the left. | +| [get_Right](./get_right/)() const | Gets the right. | +| [get_Top](./get_top/)() const | Gets the top. | +| [Margins](./margins/)(int32_t, int32_t, int32_t, int32_t) | Initializes a new instance of the [Margins](./) class. | +| [Margins](./margins/)() | Initializes a new instance of the [Margins](./) class. | +| [set_Bottom](./set_bottom/)(int32_t) | Sets the bottom. | +| [set_Left](./set_left/)(int32_t) | Sets the left. | +| [set_Right](./set_right/)(int32_t) | Sets the right. | +| [set_Top](./set_top/)(int32_t) | Sets the top. | +## See Also + +* Namespace [Aspose::Pdf::Devices](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.devices/margins/get_bottom/_index.md b/english/cpp/aspose.pdf.devices/margins/get_bottom/_index.md new file mode 100644 index 0000000000..3930b631fe --- /dev/null +++ b/english/cpp/aspose.pdf.devices/margins/get_bottom/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Devices::Margins::get_Bottom method +linktitle: get_Bottom +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::Margins::get_Bottom method. Gets the bottom in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.devices/margins/get_bottom/ +--- +## Margins::get_Bottom method + + +Gets the bottom. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Devices::Margins::get_Bottom() const +``` + +## Remarks + + +The bottom. +## See Also + +* Class [Margins](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/margins/get_left/_index.md b/english/cpp/aspose.pdf.devices/margins/get_left/_index.md new file mode 100644 index 0000000000..f79034569b --- /dev/null +++ b/english/cpp/aspose.pdf.devices/margins/get_left/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Devices::Margins::get_Left method +linktitle: get_Left +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::Margins::get_Left method. Gets the left in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.devices/margins/get_left/ +--- +## Margins::get_Left method + + +Gets the left. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Devices::Margins::get_Left() const +``` + +## Remarks + + +The left. +## See Also + +* Class [Margins](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/margins/get_right/_index.md b/english/cpp/aspose.pdf.devices/margins/get_right/_index.md new file mode 100644 index 0000000000..08d65cdf6f --- /dev/null +++ b/english/cpp/aspose.pdf.devices/margins/get_right/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Devices::Margins::get_Right method +linktitle: get_Right +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::Margins::get_Right method. Gets the right in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.devices/margins/get_right/ +--- +## Margins::get_Right method + + +Gets the right. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Devices::Margins::get_Right() const +``` + +## Remarks + + +The right. +## See Also + +* Class [Margins](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/margins/get_top/_index.md b/english/cpp/aspose.pdf.devices/margins/get_top/_index.md new file mode 100644 index 0000000000..06efbfc2df --- /dev/null +++ b/english/cpp/aspose.pdf.devices/margins/get_top/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Devices::Margins::get_Top method +linktitle: get_Top +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::Margins::get_Top method. Gets the top in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.devices/margins/get_top/ +--- +## Margins::get_Top method + + +Gets the top. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Devices::Margins::get_Top() const +``` + +## Remarks + + +The top. +## See Also + +* Class [Margins](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/margins/margins/_index.md b/english/cpp/aspose.pdf.devices/margins/margins/_index.md new file mode 100644 index 0000000000..0cb429d643 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/margins/margins/_index.md @@ -0,0 +1,81 @@ +--- +title: Aspose::Pdf::Devices::Margins::Margins constructor +linktitle: Margins +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::Margins::Margins constructor. Initializes a new instance of the Margins class in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.devices/margins/margins/ +--- +## Margins::Margins(int32_t, int32_t, int32_t, int32_t) constructor + + +Initializes a new instance of the [Margins](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::Margins::Margins(int32_t left, int32_t right, int32_t top, int32_t bottom) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| left | int32_t | The left coordinate. | +| right | int32_t | The right coordinate. | +| top | int32_t | The top coordinate. | +| bottom | int32_t | The bottom coordinate. | +## Remarks + + + + + + left + + + The left coordinate. + + + + + right + + + The right coordinate. + + + + + top + + + The top coordinate. + + + + + bottom + + + The bottom coordinate. + + + +## See Also + +* Class [Margins](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## Margins::Margins() constructor + + +Initializes a new instance of the [Margins](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::Margins::Margins() +``` + +## See Also + +* Class [Margins](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/margins/set_bottom/_index.md b/english/cpp/aspose.pdf.devices/margins/set_bottom/_index.md new file mode 100644 index 0000000000..57ed6952a8 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/margins/set_bottom/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Devices::Margins::set_Bottom method +linktitle: set_Bottom +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::Margins::set_Bottom method. Sets the bottom in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.devices/margins/set_bottom/ +--- +## Margins::set_Bottom method + + +Sets the bottom. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Devices::Margins::set_Bottom(int32_t value) +``` + +## Remarks + + +The bottom. +## See Also + +* Class [Margins](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/margins/set_left/_index.md b/english/cpp/aspose.pdf.devices/margins/set_left/_index.md new file mode 100644 index 0000000000..00fd90f8f1 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/margins/set_left/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Devices::Margins::set_Left method +linktitle: set_Left +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::Margins::set_Left method. Sets the left in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.devices/margins/set_left/ +--- +## Margins::set_Left method + + +Sets the left. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Devices::Margins::set_Left(int32_t value) +``` + +## Remarks + + +The left. +## See Also + +* Class [Margins](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/margins/set_right/_index.md b/english/cpp/aspose.pdf.devices/margins/set_right/_index.md new file mode 100644 index 0000000000..5205049e19 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/margins/set_right/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Devices::Margins::set_Right method +linktitle: set_Right +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::Margins::set_Right method. Sets the right in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.devices/margins/set_right/ +--- +## Margins::set_Right method + + +Sets the right. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Devices::Margins::set_Right(int32_t value) +``` + +## Remarks + + +The right. +## See Also + +* Class [Margins](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/margins/set_top/_index.md b/english/cpp/aspose.pdf.devices/margins/set_top/_index.md new file mode 100644 index 0000000000..1dafc5e2d2 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/margins/set_top/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Devices::Margins::set_Top method +linktitle: set_Top +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::Margins::set_Top method. Sets the top in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.devices/margins/set_top/ +--- +## Margins::set_Top method + + +Sets the top. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Devices::Margins::set_Top(int32_t value) +``` + +## Remarks + + +The top. +## See Also + +* Class [Margins](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/pagedevice/_index.md b/english/cpp/aspose.pdf.devices/pagedevice/_index.md new file mode 100644 index 0000000000..3b78ce1f46 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/pagedevice/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Devices::PageDevice class +linktitle: PageDevice +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::PageDevice class. Abstract class for all devices which is used to process certain page the pdf document in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.devices/pagedevice/ +--- +## PageDevice class + + +Abstract class for all devices which is used to process certain page the pdf document. + +```cpp +class PageDevice : public Aspose::Pdf::Devices::Device +``` + +## Methods + +| Method | Description | +| --- | --- | +| virtual [Process](./process/)(System::SharedPtr\, System::SharedPtr\) | Perfoms some operation on the given page, e.g. converts page into graphic image. | +| [Process](./process/)(System::SharedPtr\, System::String) | Perfoms some operation on the given page and saves results into the file. | +## See Also + +* Class [Device](../device/) +* Namespace [Aspose::Pdf::Devices](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.devices/pagedevice/process/_index.md b/english/cpp/aspose.pdf.devices/pagedevice/process/_index.md new file mode 100644 index 0000000000..d456f658e2 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/pagedevice/process/_index.md @@ -0,0 +1,91 @@ +--- +title: Aspose::Pdf::Devices::PageDevice::Process method +linktitle: Process +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::PageDevice::Process method. Perfoms some operation on the given page, e.g. converts page into graphic image in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.devices/pagedevice/process/ +--- +## PageDevice::Process(System::SharedPtr\, System::SharedPtr\) method + + +Perfoms some operation on the given page, e.g. converts page into graphic image. + +```cpp +virtual ASPOSE_PDF_SHARED_API void Aspose::Pdf::Devices::PageDevice::Process(System::SharedPtr page, System::SharedPtr output)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The page to process. | +| output | System::SharedPtr\ | This stream contains the results of processing. | +## Remarks + + + + + + page + + + The page to process. + + + + + output + + + This stream contains the results of processing. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [PageDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## PageDevice::Process(System::SharedPtr\, System::String) method + + +Perfoms some operation on the given page and saves results into the file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Devices::PageDevice::Process(System::SharedPtr page, System::String outputFileName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The page to process. | +| outputFileName | System::String | This file contains the results of processing. | +## Remarks + + + + + + page + + + The page to process. + + + + + outputFileName + + + This file contains the results of processing. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [PageDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/pngdevice/_index.md b/english/cpp/aspose.pdf.devices/pngdevice/_index.md new file mode 100644 index 0000000000..086472c9f0 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/pngdevice/_index.md @@ -0,0 +1,52 @@ +--- +title: Aspose::Pdf::Devices::PngDevice class +linktitle: PngDevice +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::PngDevice class. Represents image device that helps to save pdf document pages into png in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.devices/pngdevice/ +--- +## PngDevice class + + +Represents image device that helps to save pdf document pages into png. + +```cpp +class PngDevice : public Aspose::Pdf::Devices::ImageDevice +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_CoordinateType](../imagedevice/get_coordinatetype/)() const | Gets the page coordinate type (Media/Crop boxes). CropBox value is used by default. | +| [get_FormPresentationMode](../imagedevice/get_formpresentationmode/)() const | Gets form presentation mode. | +| [get_Height](../imagedevice/get_height/)() const | Gets image output height. | +| [get_RenderingOptions](../imagedevice/get_renderingoptions/)() const | Gets rendering options. | +| [get_Resolution](../imagedevice/get_resolution/)() const | Gets image resolution. | +| [get_TransparentBackground](./get_transparentbackground/)() const | Gets if image has transparent background. | +| [get_Width](../imagedevice/get_width/)() const | Gets image output width. | +| [ImageDevice](../imagedevice/imagedevice/)() | Abstract initializer for [ImageDevice](../imagedevice/) descendants, set resolution to 150x150. | +| [ImageDevice](../imagedevice/imagedevice/)(System::SharedPtr\) | Abstract initializer for [ImageDevice](../imagedevice/) descendants. | +| [ImageDevice](../imagedevice/imagedevice/)(int32_t, int32_t) | Initializes a new instance of the [JpegDevice](../jpegdevice/) class with provided image dimensions and default resolution (=150). | +| [ImageDevice](../imagedevice/imagedevice/)(System::SharedPtr\) | Initializes a new instance of the [JpegDevice](../jpegdevice/) class with provided image dimensions and default resolution (=150). | +| [ImageDevice](../imagedevice/imagedevice/)(int32_t, int32_t, System::SharedPtr\) | Initializes a new instance of the [JpegDevice](../jpegdevice/) class with provided image dimensions and resolution. | +| [ImageDevice](../imagedevice/imagedevice/)(System::SharedPtr\, System::SharedPtr\) | Initializes a new instance of the [JpegDevice](../jpegdevice/) class with provided image dimensions and resolution. | +| [PngDevice](./pngdevice/)() | Initializes a new instance of the [PngDevice](./) class with default resolution. | +| [PngDevice](./pngdevice/)(System::SharedPtr\) | Initializes a new instance of the [PngDevice](./) class. | +| [PngDevice](./pngdevice/)(int32_t, int32_t, System::SharedPtr\) | Initializes a new instance of the [PngDevice](./) class with provided image dimensions and resolution. | +| [PngDevice](./pngdevice/)(System::SharedPtr\, System::SharedPtr\) | Initializes a new instance of the [PngDevice](./) class with provided page size and resolution. | +| [PngDevice](./pngdevice/)(int32_t, int32_t) | Initializes a new instance of the [PngDevice](./) class with provided image dimensions, default resolution (=150). | +| [PngDevice](./pngdevice/)(System::SharedPtr\) | Initializes a new instance of the [PngDevice](./) class with provided page size, default resolution (=150). | +| [Process](./process/)(System::SharedPtr\, System::SharedPtr\) override | Converts the page into png and saves it in the output stream. | +| [Process](../pagedevice/process/)(System::SharedPtr\, System::String) | Perfoms some operation on the given page and saves results into the file. | +| [set_CoordinateType](../imagedevice/set_coordinatetype/)(PageCoordinateType) | Sets the page coordinate type (Media/Crop boxes). CropBox value is used by default. | +| [set_FormPresentationMode](../imagedevice/set_formpresentationmode/)(Aspose::Pdf::Devices::FormPresentationMode) | Sets form presentation mode. | +| [set_RenderingOptions](../imagedevice/set_renderingoptions/)(System::SharedPtr\) | Sets rendering options. | +| [set_TransparentBackground](./set_transparentbackground/)(bool) | Sets if image has transparent background. | +## See Also + +* Class [ImageDevice](../imagedevice/) +* Namespace [Aspose::Pdf::Devices](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.devices/pngdevice/get_transparentbackground/_index.md b/english/cpp/aspose.pdf.devices/pngdevice/get_transparentbackground/_index.md new file mode 100644 index 0000000000..22f1df367c --- /dev/null +++ b/english/cpp/aspose.pdf.devices/pngdevice/get_transparentbackground/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Devices::PngDevice::get_TransparentBackground method +linktitle: get_TransparentBackground +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::PngDevice::get_TransparentBackground method. Gets if image has transparent background in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.devices/pngdevice/get_transparentbackground/ +--- +## PngDevice::get_TransparentBackground method + + +Gets if image has transparent background. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Devices::PngDevice::get_TransparentBackground() const +``` + +## See Also + +* Class [PngDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/pngdevice/pngdevice/_index.md b/english/cpp/aspose.pdf.devices/pngdevice/pngdevice/_index.md new file mode 100644 index 0000000000..08e79fc7c2 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/pngdevice/pngdevice/_index.md @@ -0,0 +1,210 @@ +--- +title: Aspose::Pdf::Devices::PngDevice::PngDevice constructor +linktitle: PngDevice +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::PngDevice::PngDevice constructor. Initializes a new instance of the PngDevice class with default resolution in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.devices/pngdevice/pngdevice/ +--- +## PngDevice::PngDevice() constructor + + +Initializes a new instance of the [PngDevice](../) class with default resolution. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::PngDevice::PngDevice() +``` + +## See Also + +* Class [PngDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## PngDevice::PngDevice(System::SharedPtr\) constructor + + +Initializes a new instance of the [PngDevice](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::PngDevice::PngDevice(System::SharedPtr resolution) +``` + +## See Also + +* Class [Resolution](../../resolution/) +* Class [PngDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## PngDevice::PngDevice(int32_t, int32_t, System::SharedPtr\) constructor + + +Initializes a new instance of the [PngDevice](../) class with provided image dimensions and resolution. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::PngDevice::PngDevice(int32_t width, int32_t height, System::SharedPtr resolution) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| width | int32_t | [Image](../../../aspose.pdf/image/) output width. | +| height | int32_t | [Image](../../../aspose.pdf/image/) output height. | +| resolution | System::SharedPtr\ | [Resolution](../../resolution/) for the result image file, see [Resolution](../../resolution/) class. | +## Remarks + + + + + + width + + + + Image output width. + + + + + height + + + + Image output height. + + + + + resolution + + + + Resolution for the result image file, see Resolution class. + + + +## See Also + +* Class [Resolution](../../resolution/) +* Class [PngDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## PngDevice::PngDevice(System::SharedPtr\, System::SharedPtr\) constructor + + +Initializes a new instance of the [PngDevice](../) class with provided page size and resolution. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::PngDevice::PngDevice(System::SharedPtr pageSize, System::SharedPtr resolution) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageSize | System::SharedPtr\ | [Page](../../../aspose.pdf/page/) size of the output image. | +| resolution | System::SharedPtr\ | [Resolution](../../resolution/) for the result image file, see [Resolution](../../resolution/) class. | +## Remarks + + + + + + pageSize + + + + Page size of the output image. + + + + + resolution + + + + Resolution for the result image file, see Resolution class. + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [Resolution](../../resolution/) +* Class [PngDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## PngDevice::PngDevice(int32_t, int32_t) constructor + + +Initializes a new instance of the [PngDevice](../) class with provided image dimensions, default resolution (=150). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::PngDevice::PngDevice(int32_t width, int32_t height) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| width | int32_t | [Image](../../../aspose.pdf/image/) output width. | +| height | int32_t | [Image](../../../aspose.pdf/image/) output height. | +## Remarks + + + + + + width + + + + Image output width. + + + + + height + + + + Image output height. + + + +## See Also + +* Class [PngDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## PngDevice::PngDevice(System::SharedPtr\) constructor + + +Initializes a new instance of the [PngDevice](../) class with provided page size, default resolution (=150). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::PngDevice::PngDevice(System::SharedPtr pageSize) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageSize | System::SharedPtr\ | [Page](../../../aspose.pdf/page/) size of the output image. | +## Remarks + + + + + + pageSize + + + + Page size of the output image. + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [PngDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/pngdevice/process/_index.md b/english/cpp/aspose.pdf.devices/pngdevice/process/_index.md new file mode 100644 index 0000000000..49b0c55762 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/pngdevice/process/_index.md @@ -0,0 +1,50 @@ +--- +title: Aspose::Pdf::Devices::PngDevice::Process method +linktitle: Process +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::PngDevice::Process method. Converts the page into png and saves it in the output stream in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.devices/pngdevice/process/ +--- +## PngDevice::Process method + + +Converts the page into png and saves it in the output stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Devices::PngDevice::Process(System::SharedPtr page, System::SharedPtr output) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The page to convert. | +| output | System::SharedPtr\ | Output stream with png image. | +## Remarks + + + + + + page + + + The page to convert. + + + + + output + + + Output stream with png image. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [PngDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/pngdevice/set_transparentbackground/_index.md b/english/cpp/aspose.pdf.devices/pngdevice/set_transparentbackground/_index.md new file mode 100644 index 0000000000..a749694831 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/pngdevice/set_transparentbackground/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Devices::PngDevice::set_TransparentBackground method +linktitle: set_TransparentBackground +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::PngDevice::set_TransparentBackground method. Sets if image has transparent background in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.devices/pngdevice/set_transparentbackground/ +--- +## PngDevice::set_TransparentBackground method + + +Sets if image has transparent background. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Devices::PngDevice::set_TransparentBackground(bool value) +``` + +## See Also + +* Class [PngDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/resolution/_index.md b/english/cpp/aspose.pdf.devices/resolution/_index.md new file mode 100644 index 0000000000..d8f4582483 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/resolution/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Devices::Resolution class +linktitle: Resolution +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::Resolution class. Represents class for holding image resolution in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.devices/resolution/ +--- +## Resolution class + + +Represents class for holding image resolution. + +```cpp +class Resolution : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_X](./get_x/)() const | Gets horizontal image resolution. | +| [get_Y](./get_y/)() const | Gets vertical image resolution. | +| [Resolution](./resolution/)(int32_t) | Initializes a new instance of the [Resolution](./) class. | +| [Resolution](./resolution/)(int32_t, int32_t) | Initializes a new instance of the [Resolution](./) class. | +| [set_X](./set_x/)(int32_t) | Sets horizontal image resolution. | +| [set_Y](./set_y/)(int32_t) | Sets vertical image resolution. | +## See Also + +* Namespace [Aspose::Pdf::Devices](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.devices/resolution/get_x/_index.md b/english/cpp/aspose.pdf.devices/resolution/get_x/_index.md new file mode 100644 index 0000000000..84732f145a --- /dev/null +++ b/english/cpp/aspose.pdf.devices/resolution/get_x/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Devices::Resolution::get_X method +linktitle: get_X +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::Resolution::get_X method. Gets horizontal image resolution in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.devices/resolution/get_x/ +--- +## Resolution::get_X method + + +Gets horizontal image resolution. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Devices::Resolution::get_X() const +``` + +## See Also + +* Class [Resolution](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/resolution/get_y/_index.md b/english/cpp/aspose.pdf.devices/resolution/get_y/_index.md new file mode 100644 index 0000000000..135fc2e6ef --- /dev/null +++ b/english/cpp/aspose.pdf.devices/resolution/get_y/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Devices::Resolution::get_Y method +linktitle: get_Y +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::Resolution::get_Y method. Gets vertical image resolution in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.devices/resolution/get_y/ +--- +## Resolution::get_Y method + + +Gets vertical image resolution. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Devices::Resolution::get_Y() const +``` + +## See Also + +* Class [Resolution](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/resolution/resolution/_index.md b/english/cpp/aspose.pdf.devices/resolution/resolution/_index.md new file mode 100644 index 0000000000..44b6987d30 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/resolution/resolution/_index.md @@ -0,0 +1,80 @@ +--- +title: Aspose::Pdf::Devices::Resolution::Resolution constructor +linktitle: Resolution +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::Resolution::Resolution constructor. Initializes a new instance of the Resolution class in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.devices/resolution/resolution/ +--- +## Resolution::Resolution(int32_t) constructor + + +Initializes a new instance of the [Resolution](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::Resolution::Resolution(int32_t value) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| value | int32_t | Value which represents the horizontal and vertical resolution. | +## Remarks + + + + + + value + + + Value which represents the horizontal and vertical resolution. + + + +## See Also + +* Class [Resolution](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## Resolution::Resolution(int32_t, int32_t) constructor + + +Initializes a new instance of the [Resolution](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::Resolution::Resolution(int32_t valueX, int32_t valueY) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| valueX | int32_t | Horizontal resolution. | +| valueY | int32_t | Vertical resolution. | +## Remarks + + + + + + valueX + + + Horizontal resolution. + + + + + valueY + + + Vertical resolution. + + + +## See Also + +* Class [Resolution](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/resolution/set_x/_index.md b/english/cpp/aspose.pdf.devices/resolution/set_x/_index.md new file mode 100644 index 0000000000..ba7c471702 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/resolution/set_x/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Devices::Resolution::set_X method +linktitle: set_X +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::Resolution::set_X method. Sets horizontal image resolution in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.devices/resolution/set_x/ +--- +## Resolution::set_X method + + +Sets horizontal image resolution. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Devices::Resolution::set_X(int32_t value) +``` + +## See Also + +* Class [Resolution](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/resolution/set_y/_index.md b/english/cpp/aspose.pdf.devices/resolution/set_y/_index.md new file mode 100644 index 0000000000..6d8c68cc2d --- /dev/null +++ b/english/cpp/aspose.pdf.devices/resolution/set_y/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Devices::Resolution::set_Y method +linktitle: set_Y +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::Resolution::set_Y method. Sets vertical image resolution in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.devices/resolution/set_y/ +--- +## Resolution::set_Y method + + +Sets vertical image resolution. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Devices::Resolution::set_Y(int32_t value) +``` + +## See Also + +* Class [Resolution](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/shapetype/_index.md b/english/cpp/aspose.pdf.devices/shapetype/_index.md new file mode 100644 index 0000000000..48bbf9d87a --- /dev/null +++ b/english/cpp/aspose.pdf.devices/shapetype/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Devices::ShapeType enum +linktitle: ShapeType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::ShapeType enum. This enum represents shape type for the extracted images in C++.' +type: docs +weight: 2000 +url: /cpp/aspose.pdf.devices/shapetype/ +--- +## ShapeType enum + + +This enum represents shape type for the extracted images. + +```cpp +enum class ShapeType +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| None | 0 | Original image shape. | +| Landscape | 1 | Landscape Shape. | +| Portrait | 2 | Portrait Shape. | + +## See Also + +* Namespace [Aspose::Pdf::Devices](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.devices/textdevice/_index.md b/english/cpp/aspose.pdf.devices/textdevice/_index.md new file mode 100644 index 0000000000..6e727eb022 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/textdevice/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Devices::TextDevice class +linktitle: TextDevice +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::TextDevice class. Represents class for converting pdf document pages into text in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.devices/textdevice/ +--- +## TextDevice class + + +Represents class for converting pdf document pages into text. + +```cpp +class TextDevice : public Aspose::Pdf::Devices::PageDevice +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_Encoding](./get_encoding/)() const | Gets encoding of extracted text. | +| [get_ExtractionOptions](./get_extractionoptions/)() const | Gets text extraction options. | +| [Process](./process/)(System::SharedPtr\, System::SharedPtr\) override | Convert page and save it as text stream. | +| [Process](../pagedevice/process/)(System::SharedPtr\, System::String) | Perfoms some operation on the given page and saves results into the file. | +| [set_Encoding](./set_encoding/)(System::SharedPtr\) | Sets encoding of extracted text. | +| [set_ExtractionOptions](./set_extractionoptions/)(System::SharedPtr\) | Sets text extraction options. | +| [TextDevice](./textdevice/)(System::SharedPtr\) | Initializes a new instance of the [TextDevice](./) with text extraction options. | +| [TextDevice](./textdevice/)() | Initializes a new instance of the [TextDevice](./) with the Raw text formatting mode and Unicode text encoding. | +| [TextDevice](./textdevice/)(System::SharedPtr\) | Initializes a new instance of the [TextDevice](./) for the specified encoding. | +| [TextDevice](./textdevice/)(System::SharedPtr\, System::SharedPtr\) | Initializes a new instance of the [TextDevice](./) for the specified encoding with text extraction options. | +## Remarks + + +The [TextDevice](./) object is basically used to extract text from pdf page. +## See Also + +* Class [PageDevice](../pagedevice/) +* Namespace [Aspose::Pdf::Devices](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.devices/textdevice/get_encoding/_index.md b/english/cpp/aspose.pdf.devices/textdevice/get_encoding/_index.md new file mode 100644 index 0000000000..cf17b1fc55 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/textdevice/get_encoding/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Devices::TextDevice::get_Encoding method +linktitle: get_Encoding +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::TextDevice::get_Encoding method. Gets encoding of extracted text in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.devices/textdevice/get_encoding/ +--- +## TextDevice::get_Encoding method + + +Gets encoding of extracted text. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Devices::TextDevice::get_Encoding() const +``` + +## See Also + +* Class [TextDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/textdevice/get_extractionoptions/_index.md b/english/cpp/aspose.pdf.devices/textdevice/get_extractionoptions/_index.md new file mode 100644 index 0000000000..2c0261445c --- /dev/null +++ b/english/cpp/aspose.pdf.devices/textdevice/get_extractionoptions/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Devices::TextDevice::get_ExtractionOptions method +linktitle: get_ExtractionOptions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::TextDevice::get_ExtractionOptions method. Gets text extraction options in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.devices/textdevice/get_extractionoptions/ +--- +## TextDevice::get_ExtractionOptions method + + +Gets text extraction options. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Devices::TextDevice::get_ExtractionOptions() const +``` + +## See Also + +* Class [TextExtractionOptions](../../../aspose.pdf.text/textextractionoptions/) +* Class [TextDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/textdevice/process/_index.md b/english/cpp/aspose.pdf.devices/textdevice/process/_index.md new file mode 100644 index 0000000000..75a8729db0 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/textdevice/process/_index.md @@ -0,0 +1,50 @@ +--- +title: Aspose::Pdf::Devices::TextDevice::Process method +linktitle: Process +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::TextDevice::Process method. Convert page and save it as text stream in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.devices/textdevice/process/ +--- +## TextDevice::Process method + + +Convert page and save it as text stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Devices::TextDevice::Process(System::SharedPtr page, System::SharedPtr output) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The page to convert. | +| output | System::SharedPtr\ | Result stream. | +## Remarks + + + + + + page + + + The page to convert. + + + + + output + + + Result stream. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [TextDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/textdevice/set_encoding/_index.md b/english/cpp/aspose.pdf.devices/textdevice/set_encoding/_index.md new file mode 100644 index 0000000000..4b93c2a681 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/textdevice/set_encoding/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Devices::TextDevice::set_Encoding method +linktitle: set_Encoding +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::TextDevice::set_Encoding method. Sets encoding of extracted text in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.devices/textdevice/set_encoding/ +--- +## TextDevice::set_Encoding method + + +Sets encoding of extracted text. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Devices::TextDevice::set_Encoding(System::SharedPtr value) +``` + +## See Also + +* Class [TextDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/textdevice/set_extractionoptions/_index.md b/english/cpp/aspose.pdf.devices/textdevice/set_extractionoptions/_index.md new file mode 100644 index 0000000000..8a00faf004 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/textdevice/set_extractionoptions/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Devices::TextDevice::set_ExtractionOptions method +linktitle: set_ExtractionOptions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::TextDevice::set_ExtractionOptions method. Sets text extraction options in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.devices/textdevice/set_extractionoptions/ +--- +## TextDevice::set_ExtractionOptions method + + +Sets text extraction options. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Devices::TextDevice::set_ExtractionOptions(System::SharedPtr value) +``` + +## See Also + +* Class [TextExtractionOptions](../../../aspose.pdf.text/textextractionoptions/) +* Class [TextDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/textdevice/textdevice/_index.md b/english/cpp/aspose.pdf.devices/textdevice/textdevice/_index.md new file mode 100644 index 0000000000..6672001251 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/textdevice/textdevice/_index.md @@ -0,0 +1,129 @@ +--- +title: Aspose::Pdf::Devices::TextDevice::TextDevice constructor +linktitle: TextDevice +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::TextDevice::TextDevice constructor. Initializes a new instance of the TextDevice with text extraction options in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.devices/textdevice/textdevice/ +--- +## TextDevice::TextDevice(System::SharedPtr\) constructor + + +Initializes a new instance of the [TextDevice](../) with text extraction options. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::TextDevice::TextDevice(System::SharedPtr extractionOptions) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| extractionOptions | System::SharedPtr\ | [Text](../../../aspose.pdf.text/) extraction options. | +## Remarks + + + + + + extractionOptions + + + + Text extraction options. + + + +## See Also + +* Class [TextExtractionOptions](../../../aspose.pdf.text/textextractionoptions/) +* Class [TextDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## TextDevice::TextDevice() constructor + + +Initializes a new instance of the [TextDevice](../) with the Raw text formatting mode and Unicode text encoding. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::TextDevice::TextDevice() +``` + +## See Also + +* Class [TextDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## TextDevice::TextDevice(System::SharedPtr\) constructor + + +Initializes a new instance of the [TextDevice](../) for the specified encoding. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::TextDevice::TextDevice(System::SharedPtr encoding) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| encoding | System::SharedPtr\ | Encoding of extracted text | +## Remarks + + + + + + encoding + + + Encoding of extracted text + + + +## See Also + +* Class [TextDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## TextDevice::TextDevice(System::SharedPtr\, System::SharedPtr\) constructor + + +Initializes a new instance of the [TextDevice](../) for the specified encoding with text extraction options. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::TextDevice::TextDevice(System::SharedPtr extractionOptions, System::SharedPtr encoding) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| extractionOptions | System::SharedPtr\ | [Text](../../../aspose.pdf.text/) extraction options. | +| encoding | System::SharedPtr\ | Encoding of extracted text. | +## Remarks + + + + + + extractionOptions + + + + Text extraction options. + + + + + encoding + + + Encoding of extracted text. + + + +## See Also + +* Class [TextExtractionOptions](../../../aspose.pdf.text/textextractionoptions/) +* Class [TextDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/thumbnaildevice/_index.md b/english/cpp/aspose.pdf.devices/thumbnaildevice/_index.md new file mode 100644 index 0000000000..a71eb28584 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/thumbnaildevice/_index.md @@ -0,0 +1,46 @@ +--- +title: Aspose::Pdf::Devices::ThumbnailDevice class +linktitle: ThumbnailDevice +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::ThumbnailDevice class. Represents image device that save pdf document pages into Thumbnail image in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.devices/thumbnaildevice/ +--- +## ThumbnailDevice class + + +Represents image device that save pdf document pages into Thumbnail image. + +```cpp +class ThumbnailDevice : public Aspose::Pdf::Devices::ImageDevice +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_CoordinateType](../imagedevice/get_coordinatetype/)() const | Gets the page coordinate type (Media/Crop boxes). CropBox value is used by default. | +| [get_FormPresentationMode](../imagedevice/get_formpresentationmode/)() const | Gets form presentation mode. | +| [get_Height](../imagedevice/get_height/)() const | Gets image output height. | +| [get_RenderingOptions](../imagedevice/get_renderingoptions/)() const | Gets rendering options. | +| [get_Resolution](../imagedevice/get_resolution/)() const | Gets image resolution. | +| [get_Width](../imagedevice/get_width/)() const | Gets image output width. | +| [ImageDevice](../imagedevice/imagedevice/)() | Abstract initializer for [ImageDevice](../imagedevice/) descendants, set resolution to 150x150. | +| [ImageDevice](../imagedevice/imagedevice/)(System::SharedPtr\) | Abstract initializer for [ImageDevice](../imagedevice/) descendants. | +| [ImageDevice](../imagedevice/imagedevice/)(int32_t, int32_t) | Initializes a new instance of the [JpegDevice](../jpegdevice/) class with provided image dimensions and default resolution (=150). | +| [ImageDevice](../imagedevice/imagedevice/)(System::SharedPtr\) | Initializes a new instance of the [JpegDevice](../jpegdevice/) class with provided image dimensions and default resolution (=150). | +| [ImageDevice](../imagedevice/imagedevice/)(int32_t, int32_t, System::SharedPtr\) | Initializes a new instance of the [JpegDevice](../jpegdevice/) class with provided image dimensions and resolution. | +| [ImageDevice](../imagedevice/imagedevice/)(System::SharedPtr\, System::SharedPtr\) | Initializes a new instance of the [JpegDevice](../jpegdevice/) class with provided image dimensions and resolution. | +| [Process](./process/)(System::SharedPtr\, System::SharedPtr\) override | Converts the page into thumbnail image png and saves it in the output stream. | +| [Process](../pagedevice/process/)(System::SharedPtr\, System::String) | Perfoms some operation on the given page and saves results into the file. | +| [set_CoordinateType](../imagedevice/set_coordinatetype/)(PageCoordinateType) | Sets the page coordinate type (Media/Crop boxes). CropBox value is used by default. | +| [set_FormPresentationMode](../imagedevice/set_formpresentationmode/)(Aspose::Pdf::Devices::FormPresentationMode) | Sets form presentation mode. | +| [set_RenderingOptions](../imagedevice/set_renderingoptions/)(System::SharedPtr\) | Sets rendering options. | +| [ThumbnailDevice](./thumbnaildevice/)() | Initializes a new instance of the [ThumbnailDevice](./) class with default size of thumbnail image (200x200 pixels). | +| [ThumbnailDevice](./thumbnaildevice/)(int32_t, int32_t) | Initializes a new instance of the [ThumbnailDevice](./) class. | +## See Also + +* Class [ImageDevice](../imagedevice/) +* Namespace [Aspose::Pdf::Devices](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.devices/thumbnaildevice/process/_index.md b/english/cpp/aspose.pdf.devices/thumbnaildevice/process/_index.md new file mode 100644 index 0000000000..1409870adf --- /dev/null +++ b/english/cpp/aspose.pdf.devices/thumbnaildevice/process/_index.md @@ -0,0 +1,50 @@ +--- +title: Aspose::Pdf::Devices::ThumbnailDevice::Process method +linktitle: Process +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::ThumbnailDevice::Process method. Converts the page into thumbnail image png and saves it in the output stream in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.devices/thumbnaildevice/process/ +--- +## ThumbnailDevice::Process method + + +Converts the page into thumbnail image png and saves it in the output stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Devices::ThumbnailDevice::Process(System::SharedPtr page, System::SharedPtr output) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The page to convert. | +| output | System::SharedPtr\ | Output stream with png image. | +## Remarks + + + + + + page + + + The page to convert. + + + + + output + + + Output stream with png image. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [ThumbnailDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/thumbnaildevice/thumbnaildevice/_index.md b/english/cpp/aspose.pdf.devices/thumbnaildevice/thumbnaildevice/_index.md new file mode 100644 index 0000000000..ae0ce96c6a --- /dev/null +++ b/english/cpp/aspose.pdf.devices/thumbnaildevice/thumbnaildevice/_index.md @@ -0,0 +1,63 @@ +--- +title: Aspose::Pdf::Devices::ThumbnailDevice::ThumbnailDevice constructor +linktitle: ThumbnailDevice +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::ThumbnailDevice::ThumbnailDevice constructor. Initializes a new instance of the ThumbnailDevice class with default size of thumbnail image (200x200 pixels) in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.devices/thumbnaildevice/thumbnaildevice/ +--- +## ThumbnailDevice::ThumbnailDevice() constructor + + +Initializes a new instance of the [ThumbnailDevice](../) class with default size of thumbnail image (200x200 pixels). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::ThumbnailDevice::ThumbnailDevice() +``` + +## See Also + +* Class [ThumbnailDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## ThumbnailDevice::ThumbnailDevice(int32_t, int32_t) constructor + + +Initializes a new instance of the [ThumbnailDevice](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::ThumbnailDevice::ThumbnailDevice(int32_t width, int32_t height) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| width | int32_t | Thumbnail image output width. | +| height | int32_t | Thumbnail image output height. | +## Remarks + + + + + + width + + + Thumbnail image output width. + + + + + height + + + Thumbnail image output height. + + + +## See Also + +* Class [ThumbnailDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/tiffdevice/_index.md b/english/cpp/aspose.pdf.devices/tiffdevice/_index.md new file mode 100644 index 0000000000..0ef47edc9a --- /dev/null +++ b/english/cpp/aspose.pdf.devices/tiffdevice/_index.md @@ -0,0 +1,61 @@ +--- +title: Aspose::Pdf::Devices::TiffDevice class +linktitle: TiffDevice +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::TiffDevice class. This class helps to save pdf document page by page into the one tiff image in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.devices/tiffdevice/ +--- +## TiffDevice class + + +This class helps to save pdf document page by page into the one tiff image. + +```cpp +class TiffDevice : public Aspose::Pdf::Devices::DocumentDevice +``` + +## Methods + +| Method | Description | +| --- | --- | +| [BinarizeBradley](./binarizebradley/)(System::SharedPtr\, System::SharedPtr\, double) | Do Bradley binarization for input stream. | +| [DocumentDevice](../documentdevice/documentdevice/)() | | +| [get_FormPresentationMode](./get_formpresentationmode/)() const | Gets form presentation mode. | +| [get_Height](./get_height/)() const | Gets image output height. | +| [get_RenderingOptions](./get_renderingoptions/)() const | Gets rendering options. | +| [get_Resolution](./get_resolution/)() const | Gets image resolution. | +| [get_Settings](./get_settings/)() const | Gets settings for mapping pdf into tiff image. | +| [get_Width](./get_width/)() const | Gets image output width. | +| [Process](./process/)(System::SharedPtr\, int32_t, int32_t, System::SharedPtr\) override | Converts certain document pages into tiff and save it in the output stream. | +| [Process](./process/)(System::SharedPtr\, System::SharedPtr\) override | Perfoms some operation on the given page, e.g. converts page into graphic image. | +| [Process](../documentdevice/process/)(System::SharedPtr\, System::SharedPtr\) | Processes the whole document and saves results into stream. | +| [Process](../documentdevice/process/)(System::SharedPtr\, System::String) | Processes the whole document and saves results into file. | +| [Process](../documentdevice/process/)(System::SharedPtr\, int32_t, int32_t, System::String) | Processes certain pages of the document and saves results into file. | +| [Process](../pagedevice/process/)(System::SharedPtr\, System::String) | Perfoms some operation on the given page and saves results into the file. | +| [set_FormPresentationMode](./set_formpresentationmode/)(Aspose::Pdf::Devices::FormPresentationMode) | Sets form presentation mode. | +| [set_RenderingOptions](./set_renderingoptions/)(System::SharedPtr\) | Sets rendering options. | +| [TiffDevice](./tiffdevice/)(System::SharedPtr\) | Initializes a new instance of the [TiffDevice](./) class. | +| [TiffDevice](./tiffdevice/)(System::SharedPtr\, System::SharedPtr\) | Initializes a new instance of the [TiffDevice](./) class. | +| [TiffDevice](./tiffdevice/)(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) | Initializes a new instance of the [TiffDevice](./) class. | +| [TiffDevice](./tiffdevice/)(System::SharedPtr\) | Initializes a new instance of the [TiffDevice](./) class. | +| [TiffDevice](./tiffdevice/)(System::SharedPtr\, System::SharedPtr\) | Initializes a new instance of the [TiffDevice](./) class. | +| [TiffDevice](./tiffdevice/)() | Initializes a new instance of the [TiffDevice](./) class with default settings. | +| [TiffDevice](./tiffdevice/)(int32_t, int32_t, System::SharedPtr\, System::SharedPtr\) | Initializes a new instance of the [TiffDevice](./) class. | +| [TiffDevice](./tiffdevice/)(int32_t, int32_t, System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) | Initializes a new instance of the [TiffDevice](./) class. | +| [TiffDevice](./tiffdevice/)(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) | Initializes a new instance of the [TiffDevice](./) class. | +| [TiffDevice](./tiffdevice/)(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) | Initializes a new instance of the [TiffDevice](./) class. | +| [TiffDevice](./tiffdevice/)(int32_t, int32_t, System::SharedPtr\) | Initializes a new instance of the [TiffDevice](./) class. | +| [TiffDevice](./tiffdevice/)(System::SharedPtr\, System::SharedPtr\) | Initializes a new instance of the [TiffDevice](./) class. | +| [TiffDevice](./tiffdevice/)(int32_t, int32_t, System::SharedPtr\) | Initializes a new instance of the [TiffDevice](./) class. | +| [TiffDevice](./tiffdevice/)(int32_t, int32_t, System::SharedPtr\, System::SharedPtr\) | Initializes a new instance of the [TiffDevice](./) class. | +| [TiffDevice](./tiffdevice/)(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) | Initializes a new instance of the [TiffDevice](./) class. | +| [TiffDevice](./tiffdevice/)(System::SharedPtr\, System::SharedPtr\) | Initializes a new instance of the [TiffDevice](./) class. | +| [TiffDevice](./tiffdevice/)(int32_t, int32_t) | Initializes a new instance of the [TiffDevice](./) class. | +| [TiffDevice](./tiffdevice/)(System::SharedPtr\) | Initializes a new instance of the [TiffDevice](./) class. | +## See Also + +* Class [DocumentDevice](../documentdevice/) +* Namespace [Aspose::Pdf::Devices](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.devices/tiffdevice/binarizebradley/_index.md b/english/cpp/aspose.pdf.devices/tiffdevice/binarizebradley/_index.md new file mode 100644 index 0000000000..c2b442489e --- /dev/null +++ b/english/cpp/aspose.pdf.devices/tiffdevice/binarizebradley/_index.md @@ -0,0 +1,58 @@ +--- +title: Aspose::Pdf::Devices::TiffDevice::BinarizeBradley method +linktitle: BinarizeBradley +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::TiffDevice::BinarizeBradley method. Do Bradley binarization for input stream in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.devices/tiffdevice/binarizebradley/ +--- +## TiffDevice::BinarizeBradley method + + +Do Bradley binarization for input stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Devices::TiffDevice::BinarizeBradley(System::SharedPtr inputImageStream, System::SharedPtr outputImageStream, double threshold) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputImageStream | System::SharedPtr\ | The input image stream. | +| outputImageStream | System::SharedPtr\ | The output image stream. | +| threshold | double | The threshold value between 0.0 and 1.0. | +## Remarks + + + + + + inputImageStream + + + The input image stream. + + + + + outputImageStream + + + The output image stream. + + + + + threshold + + + The threshold value between 0.0 and 1.0. + + + +## See Also + +* Class [TiffDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/tiffdevice/get_formpresentationmode/_index.md b/english/cpp/aspose.pdf.devices/tiffdevice/get_formpresentationmode/_index.md new file mode 100644 index 0000000000..07f50ea94e --- /dev/null +++ b/english/cpp/aspose.pdf.devices/tiffdevice/get_formpresentationmode/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Devices::TiffDevice::get_FormPresentationMode method +linktitle: get_FormPresentationMode +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::TiffDevice::get_FormPresentationMode method. Gets form presentation mode in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.devices/tiffdevice/get_formpresentationmode/ +--- +## TiffDevice::get_FormPresentationMode method + + +Gets form presentation mode. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::FormPresentationMode Aspose::Pdf::Devices::TiffDevice::get_FormPresentationMode() const +``` + +## See Also + +* Enum [FormPresentationMode](../../formpresentationmode/) +* Class [TiffDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/tiffdevice/get_height/_index.md b/english/cpp/aspose.pdf.devices/tiffdevice/get_height/_index.md new file mode 100644 index 0000000000..0c3b6fcf8b --- /dev/null +++ b/english/cpp/aspose.pdf.devices/tiffdevice/get_height/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Devices::TiffDevice::get_Height method +linktitle: get_Height +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::TiffDevice::get_Height method. Gets image output height in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.devices/tiffdevice/get_height/ +--- +## TiffDevice::get_Height method + + +Gets image output height. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Devices::TiffDevice::get_Height() const +``` + +## See Also + +* Class [TiffDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/tiffdevice/get_renderingoptions/_index.md b/english/cpp/aspose.pdf.devices/tiffdevice/get_renderingoptions/_index.md new file mode 100644 index 0000000000..dac7aeaf7e --- /dev/null +++ b/english/cpp/aspose.pdf.devices/tiffdevice/get_renderingoptions/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Devices::TiffDevice::get_RenderingOptions method +linktitle: get_RenderingOptions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::TiffDevice::get_RenderingOptions method. Gets rendering options in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.devices/tiffdevice/get_renderingoptions/ +--- +## TiffDevice::get_RenderingOptions method + + +Gets rendering options. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Devices::TiffDevice::get_RenderingOptions() const +``` + +## See Also + +* Class [RenderingOptions](../../../aspose.pdf/renderingoptions/) +* Class [TiffDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/tiffdevice/get_resolution/_index.md b/english/cpp/aspose.pdf.devices/tiffdevice/get_resolution/_index.md new file mode 100644 index 0000000000..787c6d72e8 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/tiffdevice/get_resolution/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Devices::TiffDevice::get_Resolution method +linktitle: get_Resolution +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::TiffDevice::get_Resolution method. Gets image resolution in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.devices/tiffdevice/get_resolution/ +--- +## TiffDevice::get_Resolution method + + +Gets image resolution. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Devices::TiffDevice::get_Resolution() const +``` + +## See Also + +* Class [Resolution](../../resolution/) +* Class [TiffDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/tiffdevice/get_settings/_index.md b/english/cpp/aspose.pdf.devices/tiffdevice/get_settings/_index.md new file mode 100644 index 0000000000..537cf4e167 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/tiffdevice/get_settings/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Devices::TiffDevice::get_Settings method +linktitle: get_Settings +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::TiffDevice::get_Settings method. Gets settings for mapping pdf into tiff image in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.devices/tiffdevice/get_settings/ +--- +## TiffDevice::get_Settings method + + +Gets settings for mapping pdf into tiff image. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Devices::TiffDevice::get_Settings() const +``` + +## See Also + +* Class [TiffSettings](../../tiffsettings/) +* Class [TiffDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/tiffdevice/get_width/_index.md b/english/cpp/aspose.pdf.devices/tiffdevice/get_width/_index.md new file mode 100644 index 0000000000..7f50a269e4 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/tiffdevice/get_width/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Devices::TiffDevice::get_Width method +linktitle: get_Width +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::TiffDevice::get_Width method. Gets image output width in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.devices/tiffdevice/get_width/ +--- +## TiffDevice::get_Width method + + +Gets image output width. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Devices::TiffDevice::get_Width() const +``` + +## See Also + +* Class [TiffDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/tiffdevice/process/_index.md b/english/cpp/aspose.pdf.devices/tiffdevice/process/_index.md new file mode 100644 index 0000000000..1a72b642f3 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/tiffdevice/process/_index.md @@ -0,0 +1,109 @@ +--- +title: Aspose::Pdf::Devices::TiffDevice::Process method +linktitle: Process +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::TiffDevice::Process method. Converts certain document pages into tiff and save it in the output stream in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.devices/tiffdevice/process/ +--- +## TiffDevice::Process(System::SharedPtr\, int32_t, int32_t, System::SharedPtr\) method + + +Converts certain document pages into tiff and save it in the output stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Devices::TiffDevice::Process(System::SharedPtr document, int32_t fromPage, int32_t toPage, System::SharedPtr output) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | The document to convert. | +| fromPage | int32_t | Defines page number from which converting will start. | +| toPage | int32_t | Defines page number which will end the converting. | +| output | System::SharedPtr\ | Output stream with tiff image. | +## Remarks + + + + + + document + + + The document to convert. + + + + + fromPage + + + Defines page number from which converting will start. + + + + + toPage + + + Defines page number which will end the converting. + + + + + output + + + Output stream with tiff image. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [TiffDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## TiffDevice::Process(System::SharedPtr\, System::SharedPtr\) method + + +Perfoms some operation on the given page, e.g. converts page into graphic image. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Devices::TiffDevice::Process(System::SharedPtr page, System::SharedPtr output) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The page to process. | +| output | System::SharedPtr\ | This stream contains the results of processing. | +## Remarks + + + + + + page + + + The page to process. + + + + + output + + + This stream contains the results of processing. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [TiffDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/tiffdevice/set_formpresentationmode/_index.md b/english/cpp/aspose.pdf.devices/tiffdevice/set_formpresentationmode/_index.md new file mode 100644 index 0000000000..128bfb479f --- /dev/null +++ b/english/cpp/aspose.pdf.devices/tiffdevice/set_formpresentationmode/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Devices::TiffDevice::set_FormPresentationMode method +linktitle: set_FormPresentationMode +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::TiffDevice::set_FormPresentationMode method. Sets form presentation mode in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.devices/tiffdevice/set_formpresentationmode/ +--- +## TiffDevice::set_FormPresentationMode method + + +Sets form presentation mode. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Devices::TiffDevice::set_FormPresentationMode(Aspose::Pdf::Devices::FormPresentationMode value) +``` + +## See Also + +* Enum [FormPresentationMode](../../formpresentationmode/) +* Class [TiffDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/tiffdevice/set_renderingoptions/_index.md b/english/cpp/aspose.pdf.devices/tiffdevice/set_renderingoptions/_index.md new file mode 100644 index 0000000000..e8f72b50f0 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/tiffdevice/set_renderingoptions/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Devices::TiffDevice::set_RenderingOptions method +linktitle: set_RenderingOptions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::TiffDevice::set_RenderingOptions method. Sets rendering options in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.devices/tiffdevice/set_renderingoptions/ +--- +## TiffDevice::set_RenderingOptions method + + +Sets rendering options. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Devices::TiffDevice::set_RenderingOptions(System::SharedPtr value) +``` + +## See Also + +* Class [RenderingOptions](../../../aspose.pdf/renderingoptions/) +* Class [TiffDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/tiffdevice/tiffdevice/_index.md b/english/cpp/aspose.pdf.devices/tiffdevice/tiffdevice/_index.md new file mode 100644 index 0000000000..b7203d1d67 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/tiffdevice/tiffdevice/_index.md @@ -0,0 +1,863 @@ +--- +title: Aspose::Pdf::Devices::TiffDevice::TiffDevice constructor +linktitle: TiffDevice +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::TiffDevice::TiffDevice constructor. Initializes a new instance of the TiffDevice class in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.devices/tiffdevice/tiffdevice/ +--- +## TiffDevice::TiffDevice(System::SharedPtr\) constructor + + +Initializes a new instance of the [TiffDevice](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::TiffDevice::TiffDevice(System::SharedPtr resolution) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| resolution | System::SharedPtr\ | [Resolution](../../resolution/) for the result image file. | +## Remarks + + + + + + resolution + + + + Resolution for the result image file. + + + +## See Also + +* Class [Resolution](../../resolution/) +* Class [TiffDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## TiffDevice::TiffDevice(System::SharedPtr\, System::SharedPtr\) constructor + + +Initializes a new instance of the [TiffDevice](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::TiffDevice::TiffDevice(System::SharedPtr resolution, System::SharedPtr settings) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| resolution | System::SharedPtr\ | [Resolution](../../resolution/) for the output image. | +| settings | System::SharedPtr\ | Tiff settings, see [TiffSettings](../../tiffsettings/) class. | +## Remarks + + + + + + resolution + + + + Resolution for the output image. + + + + + settings + + + Tiff settings, see TiffSettings class. + + + +## See Also + +* Class [Resolution](../../resolution/) +* Class [TiffSettings](../../tiffsettings/) +* Class [TiffDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## TiffDevice::TiffDevice(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) constructor + + +Initializes a new instance of the [TiffDevice](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::TiffDevice::TiffDevice(System::SharedPtr resolution, System::SharedPtr settings, System::SharedPtr converter) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| resolution | System::SharedPtr\ | [Resolution](../../resolution/) for the output image. | +| settings | System::SharedPtr\ | Tiff settings, see [TiffSettings](../../tiffsettings/) class. | +| converter | System::SharedPtr\ | External converter | +## Remarks + + + + + + resolution + + + + Resolution for the output image. + + + + + settings + + + Tiff settings, see TiffSettings class. + + + + + converter + + + External converter + + + + +## See Also + +* Class [Resolution](../../resolution/) +* Class [TiffSettings](../../tiffsettings/) +* Class [IIndexBitmapConverter](../../../aspose.pdf/iindexbitmapconverter/) +* Class [TiffDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## TiffDevice::TiffDevice(System::SharedPtr\) constructor + + +Initializes a new instance of the [TiffDevice](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::TiffDevice::TiffDevice(System::SharedPtr settings) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| settings | System::SharedPtr\ | Tiff settings, see [TiffSettings](../../tiffsettings/) class. | +## Remarks + + + + + + settings + + + Tiff settings, see TiffSettings class. + + + +## See Also + +* Class [TiffSettings](../../tiffsettings/) +* Class [TiffDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## TiffDevice::TiffDevice(System::SharedPtr\, System::SharedPtr\) constructor + + +Initializes a new instance of the [TiffDevice](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::TiffDevice::TiffDevice(System::SharedPtr settings, System::SharedPtr converter) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| settings | System::SharedPtr\ | Tiff settings, see [TiffSettings](../../tiffsettings/) class. | +| converter | System::SharedPtr\ | External converter | +## Remarks + + + + + + settings + + + Tiff settings, see TiffSettings class. + + + + + converter + + + External converter + + + +## See Also + +* Class [TiffSettings](../../tiffsettings/) +* Class [IIndexBitmapConverter](../../../aspose.pdf/iindexbitmapconverter/) +* Class [TiffDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## TiffDevice::TiffDevice() constructor + + +Initializes a new instance of the [TiffDevice](../) class with default settings. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::TiffDevice::TiffDevice() +``` + +## See Also + +* Class [TiffDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## TiffDevice::TiffDevice(int32_t, int32_t, System::SharedPtr\, System::SharedPtr\) constructor + + +Initializes a new instance of the [TiffDevice](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::TiffDevice::TiffDevice(int32_t width, int32_t height, System::SharedPtr resolution, System::SharedPtr settings) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| width | int32_t | [Image](../../../aspose.pdf/image/) output width. | +| height | int32_t | [Image](../../../aspose.pdf/image/) output height. | +| resolution | System::SharedPtr\ | [Resolution](../../resolution/) for the output image. | +| settings | System::SharedPtr\ | Tiff settings, see [TiffSettings](../../tiffsettings/) class. | +## Remarks + + + + + + width + + + + Image output width. + + + + + height + + + + Image output height. + + + + + resolution + + + + Resolution for the output image. + + + + + settings + + + Tiff settings, see TiffSettings class. + + + +## See Also + +* Class [Resolution](../../resolution/) +* Class [TiffSettings](../../tiffsettings/) +* Class [TiffDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## TiffDevice::TiffDevice(int32_t, int32_t, System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) constructor + + +Initializes a new instance of the [TiffDevice](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::TiffDevice::TiffDevice(int32_t width, int32_t height, System::SharedPtr resolution, System::SharedPtr settings, System::SharedPtr converter) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| width | int32_t | [Image](../../../aspose.pdf/image/) output width. | +| height | int32_t | [Image](../../../aspose.pdf/image/) output height. | +| resolution | System::SharedPtr\ | [Resolution](../../resolution/) for the output image. | +| settings | System::SharedPtr\ | Tiff settings, see [TiffSettings](../../tiffsettings/) class. | +| converter | System::SharedPtr\ | External converter | +## Remarks + + + + + + width + + + + Image output width. + + + + + height + + + + Image output height. + + + + + resolution + + + + Resolution for the output image. + + + + + settings + + + Tiff settings, see TiffSettings class. + + + + + converter + + + External converter + + + +## See Also + +* Class [Resolution](../../resolution/) +* Class [TiffSettings](../../tiffsettings/) +* Class [IIndexBitmapConverter](../../../aspose.pdf/iindexbitmapconverter/) +* Class [TiffDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## TiffDevice::TiffDevice(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) constructor + + +Initializes a new instance of the [TiffDevice](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::TiffDevice::TiffDevice(System::SharedPtr pageSize, System::SharedPtr resolution, System::SharedPtr settings) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageSize | System::SharedPtr\ | [Page](../../../aspose.pdf/page/) size of the output image. | +| resolution | System::SharedPtr\ | [Resolution](../../resolution/) for the output image. | +| settings | System::SharedPtr\ | Tiff settings, see [TiffSettings](../../tiffsettings/) class. | +## Remarks + + + + + + pageSize + + + + Page size of the output image. + + + + + resolution + + + + Resolution for the output image. + + + + + settings + + + Tiff settings, see TiffSettings class. + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [Resolution](../../resolution/) +* Class [TiffSettings](../../tiffsettings/) +* Class [TiffDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## TiffDevice::TiffDevice(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) constructor + + +Initializes a new instance of the [TiffDevice](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::TiffDevice::TiffDevice(System::SharedPtr pageSize, System::SharedPtr resolution, System::SharedPtr settings, System::SharedPtr converter) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageSize | System::SharedPtr\ | [Page](../../../aspose.pdf/page/) size of the output image. | +| resolution | System::SharedPtr\ | [Resolution](../../resolution/) for the output image. | +| settings | System::SharedPtr\ | Tiff settings, see [TiffSettings](../../tiffsettings/) class. | +| converter | System::SharedPtr\ | External converter | +## Remarks + + + + + + pageSize + + + + Page size of the output image. + + + + + resolution + + + + Resolution for the output image. + + + + + settings + + + Tiff settings, see TiffSettings class. + + + + + converter + + + External converter + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [Resolution](../../resolution/) +* Class [TiffSettings](../../tiffsettings/) +* Class [IIndexBitmapConverter](../../../aspose.pdf/iindexbitmapconverter/) +* Class [TiffDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## TiffDevice::TiffDevice(int32_t, int32_t, System::SharedPtr\) constructor + + +Initializes a new instance of the [TiffDevice](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::TiffDevice::TiffDevice(int32_t width, int32_t height, System::SharedPtr resolution) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| width | int32_t | [Image](../../../aspose.pdf/image/) output width. | +| height | int32_t | [Image](../../../aspose.pdf/image/) output height. | +| resolution | System::SharedPtr\ | [Resolution](../../resolution/) for the output image. | +## Remarks + + + + + + width + + + + Image output width. + + + + + height + + + + Image output height. + + + + + resolution + + + + Resolution for the output image. + + + +## See Also + +* Class [Resolution](../../resolution/) +* Class [TiffDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## TiffDevice::TiffDevice(System::SharedPtr\, System::SharedPtr\) constructor + + +Initializes a new instance of the [TiffDevice](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::TiffDevice::TiffDevice(System::SharedPtr pageSize, System::SharedPtr resolution) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageSize | System::SharedPtr\ | [Page](../../../aspose.pdf/page/) size of the output image. | +| resolution | System::SharedPtr\ | [Resolution](../../resolution/) for the output image. | +## Remarks + + + + + + pageSize + + + + Page size of the output image. + + + + + resolution + + + + Resolution for the output image. + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [Resolution](../../resolution/) +* Class [TiffDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## TiffDevice::TiffDevice(int32_t, int32_t, System::SharedPtr\) constructor + + +Initializes a new instance of the [TiffDevice](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::TiffDevice::TiffDevice(int32_t width, int32_t height, System::SharedPtr settings) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| width | int32_t | [Image](../../../aspose.pdf/image/) output width. | +| height | int32_t | [Image](../../../aspose.pdf/image/) output height. | +| settings | System::SharedPtr\ | Tiff settings, see [TiffSettings](../../tiffsettings/) class. | +## Remarks + + + + + + width + + + + Image output width. + + + + + height + + + + Image output height. + + + + + settings + + + Tiff settings, see TiffSettings class. + + + +## See Also + +* Class [TiffSettings](../../tiffsettings/) +* Class [TiffDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## TiffDevice::TiffDevice(int32_t, int32_t, System::SharedPtr\, System::SharedPtr\) constructor + + +Initializes a new instance of the [TiffDevice](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::TiffDevice::TiffDevice(int32_t width, int32_t height, System::SharedPtr settings, System::SharedPtr converter) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| width | int32_t | [Image](../../../aspose.pdf/image/) output width. | +| height | int32_t | [Image](../../../aspose.pdf/image/) output height. | +| settings | System::SharedPtr\ | Tiff settings, see [TiffSettings](../../tiffsettings/) class. | +| converter | System::SharedPtr\ | External converter | +## Remarks + + + + + + width + + + + Image output width. + + + + + height + + + + Image output height. + + + + + settings + + + Tiff settings, see TiffSettings class. + + + + + converter + + + External converter + + + +## See Also + +* Class [TiffSettings](../../tiffsettings/) +* Class [IIndexBitmapConverter](../../../aspose.pdf/iindexbitmapconverter/) +* Class [TiffDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## TiffDevice::TiffDevice(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) constructor + + +Initializes a new instance of the [TiffDevice](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::TiffDevice::TiffDevice(System::SharedPtr pageSize, System::SharedPtr settings, System::SharedPtr converter) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageSize | System::SharedPtr\ | [Page](../../../aspose.pdf/page/) size of the output image. | +| settings | System::SharedPtr\ | Tiff settings, see [TiffSettings](../../tiffsettings/) class. | +| converter | System::SharedPtr\ | External converter | +## Remarks + + + + + + pageSize + + + + Page size of the output image. + + + + + settings + + + Tiff settings, see TiffSettings class. + + + + + converter + + + External converter + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [TiffSettings](../../tiffsettings/) +* Class [IIndexBitmapConverter](../../../aspose.pdf/iindexbitmapconverter/) +* Class [TiffDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## TiffDevice::TiffDevice(System::SharedPtr\, System::SharedPtr\) constructor + + +Initializes a new instance of the [TiffDevice](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::TiffDevice::TiffDevice(System::SharedPtr pageSize, System::SharedPtr settings) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageSize | System::SharedPtr\ | [Page](../../../aspose.pdf/page/) size of the output image. | +| settings | System::SharedPtr\ | Tiff settings, see [TiffSettings](../../tiffsettings/) class. | +## Remarks + + + + + + pageSize + + + + Page size of the output image. + + + + + settings + + + Tiff settings, see TiffSettings class. + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [TiffSettings](../../tiffsettings/) +* Class [TiffDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## TiffDevice::TiffDevice(int32_t, int32_t) constructor + + +Initializes a new instance of the [TiffDevice](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::TiffDevice::TiffDevice(int32_t width, int32_t height) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| width | int32_t | [Image](../../../aspose.pdf/image/) output width. | +| height | int32_t | [Image](../../../aspose.pdf/image/) output height. | +## Remarks + + + + + + width + + + + Image output width. + + + + + height + + + + Image output height. + + + +## See Also + +* Class [TiffDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## TiffDevice::TiffDevice(System::SharedPtr\) constructor + + +Initializes a new instance of the [TiffDevice](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::TiffDevice::TiffDevice(System::SharedPtr pageSize) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageSize | System::SharedPtr\ | [Page](../../../aspose.pdf/page/) size of the output image. | +## Remarks + + + + + + pageSize + + + + Page size of the output image. + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [TiffDevice](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/tiffsettings/_index.md b/english/cpp/aspose.pdf.devices/tiffsettings/_index.md new file mode 100644 index 0000000000..a326c42cb6 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/tiffsettings/_index.md @@ -0,0 +1,48 @@ +--- +title: Aspose::Pdf::Devices::TiffSettings class +linktitle: TiffSettings +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::TiffSettings class. This class represents settings for importing pdf to Tiff in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf.devices/tiffsettings/ +--- +## TiffSettings class + + +This class represents settings for importing pdf to Tiff. + +```cpp +class TiffSettings : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_Brightness](./get_brightness/)() const | Get or sets a value boundary of the transformation of colors in white and black. This parameter can be applied with EncoderValue.CompressionCCITT4, EncoderValue.CompressionCCITT3, EncoderValue.CompressionRle or [ColorDepth.Format1bpp](../colordepth/) == 1. | +| [get_Compression](./get_compression/)() const | Gets the type of the compression. | +| [get_CoordinateType](./get_coordinatetype/)() const | Get or sets the page coordinate type (Media/Crop boxes). CropBox value is used by default. | +| [get_Depth](./get_depth/)() const | Gets the color depth. | +| [get_Margins](./get_margins/)() const | Gets the margins. | +| [get_Shape](./get_shape/)() const | Gets the type of the shape. | +| [get_SkipBlankPages](./get_skipblankpages/)() const | Gets a value indicating whether to skip blank pages. | +| [set_Brightness](./set_brightness/)(float) | Get or sets a value boundary of the transformation of colors in white and black. This parameter can be applied with EncoderValue.CompressionCCITT4, EncoderValue.CompressionCCITT3, EncoderValue.CompressionRle or [ColorDepth.Format1bpp](../colordepth/) == 1. | +| [set_Compression](./set_compression/)(CompressionType) | Sets the type of the compression. | +| [set_CoordinateType](./set_coordinatetype/)(PageCoordinateType) | Get or sets the page coordinate type (Media/Crop boxes). CropBox value is used by default. | +| [set_Depth](./set_depth/)(ColorDepth) | Sets the color depth. | +| [set_Shape](./set_shape/)(ShapeType) | Sets the type of the shape. | +| [set_SkipBlankPages](./set_skipblankpages/)(bool) | Sets a value indicating whether to skip blank pages. | +| [TiffSettings](./tiffsettings/)() | Initializes a new instance of the [TiffSettings](./) class. | +| [TiffSettings](./tiffsettings/)(ShapeType) | Initializes a new instance of the [TiffSettings](./) class. | +| [TiffSettings](./tiffsettings/)(CompressionType) | Initializes a new instance of the [TiffSettings](./) class. | +| [TiffSettings](./tiffsettings/)(ColorDepth) | Initializes a new instance of the [TiffSettings](./) class. | +| [TiffSettings](./tiffsettings/)(System::SharedPtr\) | Initializes a new instance of the [TiffSettings](./) class. | +| [TiffSettings](./tiffsettings/)(CompressionType, ColorDepth, System::SharedPtr\) | Initializes a new instance of the [TiffSettings](./) class. | +| [TiffSettings](./tiffsettings/)(CompressionType, ColorDepth, System::SharedPtr\, bool) | Initializes a new instance of the [TiffSettings](./) class. | +| [TiffSettings](./tiffsettings/)(CompressionType, ColorDepth, System::SharedPtr\, bool, ShapeType) | Initializes a new instance of the [TiffSettings](./) class. | +| [TiffSettings](./tiffsettings/)(bool) | Initializes a new instance of the [TiffSettings](./) class. | +## See Also + +* Namespace [Aspose::Pdf::Devices](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.devices/tiffsettings/get_brightness/_index.md b/english/cpp/aspose.pdf.devices/tiffsettings/get_brightness/_index.md new file mode 100644 index 0000000000..0ff4636a64 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/tiffsettings/get_brightness/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Devices::TiffSettings::get_Brightness method +linktitle: get_Brightness +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::TiffSettings::get_Brightness method. Get or sets a value boundary of the transformation of colors in white and black. This parameter can be applied with EncoderValue.CompressionCCITT4, EncoderValue.CompressionCCITT3, EncoderValue.CompressionRle or ColorDepth.Format1bpp == 1 in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.devices/tiffsettings/get_brightness/ +--- +## TiffSettings::get_Brightness method + + +Get or sets a value boundary of the transformation of colors in white and black. This parameter can be applied with EncoderValue.CompressionCCITT4, EncoderValue.CompressionCCITT3, EncoderValue.CompressionRle or [ColorDepth.Format1bpp](../../colordepth/) == 1. + +```cpp +ASPOSE_PDF_SHARED_API float Aspose::Pdf::Devices::TiffSettings::get_Brightness() const +``` + +## Remarks + + +Value of brightness should be in the range from 0 to 1. By default value is equal to 0.33f +## See Also + +* Class [TiffSettings](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/tiffsettings/get_compression/_index.md b/english/cpp/aspose.pdf.devices/tiffsettings/get_compression/_index.md new file mode 100644 index 0000000000..5a7cd3a5ca --- /dev/null +++ b/english/cpp/aspose.pdf.devices/tiffsettings/get_compression/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Devices::TiffSettings::get_Compression method +linktitle: get_Compression +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::TiffSettings::get_Compression method. Gets the type of the compression in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.devices/tiffsettings/get_compression/ +--- +## TiffSettings::get_Compression method + + +Gets the type of the compression. + +```cpp +ASPOSE_PDF_SHARED_API CompressionType Aspose::Pdf::Devices::TiffSettings::get_Compression() const +``` + +## Remarks + + +Default value is [CompressionType.LZW](../../compressiontype/) + +The type of the compression. +## See Also + +* Enum [CompressionType](../../compressiontype/) +* Class [TiffSettings](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/tiffsettings/get_coordinatetype/_index.md b/english/cpp/aspose.pdf.devices/tiffsettings/get_coordinatetype/_index.md new file mode 100644 index 0000000000..788480d714 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/tiffsettings/get_coordinatetype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Devices::TiffSettings::get_CoordinateType method +linktitle: get_CoordinateType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::TiffSettings::get_CoordinateType method. Get or sets the page coordinate type (Media/Crop boxes). CropBox value is used by default in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.devices/tiffsettings/get_coordinatetype/ +--- +## TiffSettings::get_CoordinateType method + + +Get or sets the page coordinate type (Media/Crop boxes). CropBox value is used by default. + +```cpp +ASPOSE_PDF_SHARED_API PageCoordinateType Aspose::Pdf::Devices::TiffSettings::get_CoordinateType() const +``` + +## See Also + +* Enum [PageCoordinateType](../../../aspose.pdf/pagecoordinatetype/) +* Class [TiffSettings](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/tiffsettings/get_depth/_index.md b/english/cpp/aspose.pdf.devices/tiffsettings/get_depth/_index.md new file mode 100644 index 0000000000..4e8b417c5c --- /dev/null +++ b/english/cpp/aspose.pdf.devices/tiffsettings/get_depth/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Devices::TiffSettings::get_Depth method +linktitle: get_Depth +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::TiffSettings::get_Depth method. Gets the color depth in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.devices/tiffsettings/get_depth/ +--- +## TiffSettings::get_Depth method + + +Gets the color depth. + +```cpp +ASPOSE_PDF_SHARED_API ColorDepth Aspose::Pdf::Devices::TiffSettings::get_Depth() const +``` + +## Remarks + + +Default value is [ColorDepth.Default](../../colordepth/) + +The color depth. +## See Also + +* Enum [ColorDepth](../../colordepth/) +* Class [TiffSettings](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/tiffsettings/get_margins/_index.md b/english/cpp/aspose.pdf.devices/tiffsettings/get_margins/_index.md new file mode 100644 index 0000000000..a115aff027 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/tiffsettings/get_margins/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Devices::TiffSettings::get_Margins method +linktitle: get_Margins +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::TiffSettings::get_Margins method. Gets the margins in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.devices/tiffsettings/get_margins/ +--- +## TiffSettings::get_Margins method + + +Gets the margins. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Devices::TiffSettings::get_Margins() const +``` + +## See Also + +* Class [Margins](../../margins/) +* Class [TiffSettings](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/tiffsettings/get_shape/_index.md b/english/cpp/aspose.pdf.devices/tiffsettings/get_shape/_index.md new file mode 100644 index 0000000000..7f6078ab21 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/tiffsettings/get_shape/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Devices::TiffSettings::get_Shape method +linktitle: get_Shape +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::TiffSettings::get_Shape method. Gets the type of the shape in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.devices/tiffsettings/get_shape/ +--- +## TiffSettings::get_Shape method + + +Gets the type of the shape. + +```cpp +ASPOSE_PDF_SHARED_API ShapeType Aspose::Pdf::Devices::TiffSettings::get_Shape() const +``` + +## Remarks + + +Default value is [ShapeType.None](../../shapetype/) + +The type of the shape. +## See Also + +* Enum [ShapeType](../../shapetype/) +* Class [TiffSettings](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/tiffsettings/get_skipblankpages/_index.md b/english/cpp/aspose.pdf.devices/tiffsettings/get_skipblankpages/_index.md new file mode 100644 index 0000000000..3bfb884b34 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/tiffsettings/get_skipblankpages/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Devices::TiffSettings::get_SkipBlankPages method +linktitle: get_SkipBlankPages +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::TiffSettings::get_SkipBlankPages method. Gets a value indicating whether to skip blank pages in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.devices/tiffsettings/get_skipblankpages/ +--- +## TiffSettings::get_SkipBlankPages method + + +Gets a value indicating whether to skip blank pages. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Devices::TiffSettings::get_SkipBlankPages() const +``` + +## Remarks + + +Default value is false + +**true** if need to skip blank pages; otherwise, **false**. +## See Also + +* Class [TiffSettings](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/tiffsettings/set_brightness/_index.md b/english/cpp/aspose.pdf.devices/tiffsettings/set_brightness/_index.md new file mode 100644 index 0000000000..20c1801e98 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/tiffsettings/set_brightness/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Devices::TiffSettings::set_Brightness method +linktitle: set_Brightness +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::TiffSettings::set_Brightness method. Get or sets a value boundary of the transformation of colors in white and black. This parameter can be applied with EncoderValue.CompressionCCITT4, EncoderValue.CompressionCCITT3, EncoderValue.CompressionRle or ColorDepth.Format1bpp == 1 in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.devices/tiffsettings/set_brightness/ +--- +## TiffSettings::set_Brightness method + + +Get or sets a value boundary of the transformation of colors in white and black. This parameter can be applied with EncoderValue.CompressionCCITT4, EncoderValue.CompressionCCITT3, EncoderValue.CompressionRle or [ColorDepth.Format1bpp](../../colordepth/) == 1. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Devices::TiffSettings::set_Brightness(float value) +``` + +## Remarks + + +Value of brightness should be in the range from 0 to 1. By default value is equal to 0.33f +## See Also + +* Class [TiffSettings](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/tiffsettings/set_compression/_index.md b/english/cpp/aspose.pdf.devices/tiffsettings/set_compression/_index.md new file mode 100644 index 0000000000..01bdae33d8 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/tiffsettings/set_compression/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Devices::TiffSettings::set_Compression method +linktitle: set_Compression +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::TiffSettings::set_Compression method. Sets the type of the compression in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.devices/tiffsettings/set_compression/ +--- +## TiffSettings::set_Compression method + + +Sets the type of the compression. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Devices::TiffSettings::set_Compression(CompressionType value) +``` + +## Remarks + + +Default value is [CompressionType.LZW](../../compressiontype/) + +The type of the compression. +## See Also + +* Enum [CompressionType](../../compressiontype/) +* Class [TiffSettings](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/tiffsettings/set_coordinatetype/_index.md b/english/cpp/aspose.pdf.devices/tiffsettings/set_coordinatetype/_index.md new file mode 100644 index 0000000000..b6ec7c8efc --- /dev/null +++ b/english/cpp/aspose.pdf.devices/tiffsettings/set_coordinatetype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Devices::TiffSettings::set_CoordinateType method +linktitle: set_CoordinateType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::TiffSettings::set_CoordinateType method. Get or sets the page coordinate type (Media/Crop boxes). CropBox value is used by default in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.devices/tiffsettings/set_coordinatetype/ +--- +## TiffSettings::set_CoordinateType method + + +Get or sets the page coordinate type (Media/Crop boxes). CropBox value is used by default. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Devices::TiffSettings::set_CoordinateType(PageCoordinateType value) +``` + +## See Also + +* Enum [PageCoordinateType](../../../aspose.pdf/pagecoordinatetype/) +* Class [TiffSettings](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/tiffsettings/set_depth/_index.md b/english/cpp/aspose.pdf.devices/tiffsettings/set_depth/_index.md new file mode 100644 index 0000000000..758eef17db --- /dev/null +++ b/english/cpp/aspose.pdf.devices/tiffsettings/set_depth/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Devices::TiffSettings::set_Depth method +linktitle: set_Depth +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::TiffSettings::set_Depth method. Sets the color depth in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.devices/tiffsettings/set_depth/ +--- +## TiffSettings::set_Depth method + + +Sets the color depth. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Devices::TiffSettings::set_Depth(ColorDepth value) +``` + +## Remarks + + +Default value is [ColorDepth.Default](../../colordepth/) + +The color depth. +## See Also + +* Enum [ColorDepth](../../colordepth/) +* Class [TiffSettings](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/tiffsettings/set_shape/_index.md b/english/cpp/aspose.pdf.devices/tiffsettings/set_shape/_index.md new file mode 100644 index 0000000000..8e3ab556d9 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/tiffsettings/set_shape/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Devices::TiffSettings::set_Shape method +linktitle: set_Shape +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::TiffSettings::set_Shape method. Sets the type of the shape in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.devices/tiffsettings/set_shape/ +--- +## TiffSettings::set_Shape method + + +Sets the type of the shape. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Devices::TiffSettings::set_Shape(ShapeType value) +``` + +## Remarks + + +Default value is [ShapeType.None](../../shapetype/) + +The type of the shape. +## See Also + +* Enum [ShapeType](../../shapetype/) +* Class [TiffSettings](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/tiffsettings/set_skipblankpages/_index.md b/english/cpp/aspose.pdf.devices/tiffsettings/set_skipblankpages/_index.md new file mode 100644 index 0000000000..ae1944a2c7 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/tiffsettings/set_skipblankpages/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Devices::TiffSettings::set_SkipBlankPages method +linktitle: set_SkipBlankPages +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::TiffSettings::set_SkipBlankPages method. Sets a value indicating whether to skip blank pages in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.devices/tiffsettings/set_skipblankpages/ +--- +## TiffSettings::set_SkipBlankPages method + + +Sets a value indicating whether to skip blank pages. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Devices::TiffSettings::set_SkipBlankPages(bool value) +``` + +## Remarks + + +Default value is false + +**true** if need to skip blank pages; otherwise, **false**. +## See Also + +* Class [TiffSettings](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.devices/tiffsettings/tiffsettings/_index.md b/english/cpp/aspose.pdf.devices/tiffsettings/tiffsettings/_index.md new file mode 100644 index 0000000000..d6028a4b08 --- /dev/null +++ b/english/cpp/aspose.pdf.devices/tiffsettings/tiffsettings/_index.md @@ -0,0 +1,366 @@ +--- +title: Aspose::Pdf::Devices::TiffSettings::TiffSettings constructor +linktitle: TiffSettings +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Devices::TiffSettings::TiffSettings constructor. Initializes a new instance of the TiffSettings class in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.devices/tiffsettings/tiffsettings/ +--- +## TiffSettings::TiffSettings() constructor + + +Initializes a new instance of the [TiffSettings](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::TiffSettings::TiffSettings() +``` + +## See Also + +* Class [TiffSettings](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## TiffSettings::TiffSettings(ShapeType) constructor + + +Initializes a new instance of the [TiffSettings](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::TiffSettings::TiffSettings(ShapeType shapeType) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| shapeType | ShapeType | Type of the shape. | +## Remarks + + + + + + shapeType + + + Type of the shape. + + + +## See Also + +* Enum [ShapeType](../../shapetype/) +* Class [TiffSettings](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## TiffSettings::TiffSettings(CompressionType) constructor + + +Initializes a new instance of the [TiffSettings](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::TiffSettings::TiffSettings(CompressionType compressionType) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| compressionType | CompressionType | Type of the compression. | +## Remarks + + + + + + compressionType + + + Type of the compression. + + + +## See Also + +* Enum [CompressionType](../../compressiontype/) +* Class [TiffSettings](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## TiffSettings::TiffSettings(ColorDepth) constructor + + +Initializes a new instance of the [TiffSettings](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::TiffSettings::TiffSettings(ColorDepth colorDepth) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| colorDepth | ColorDepth | The color depth. | +## Remarks + + + + + + colorDepth + + + The color depth. + + + +## See Also + +* Enum [ColorDepth](../../colordepth/) +* Class [TiffSettings](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## TiffSettings::TiffSettings(System::SharedPtr\) constructor + + +Initializes a new instance of the [TiffSettings](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::TiffSettings::TiffSettings(System::SharedPtr margins) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| margins | System::SharedPtr\ | The margins. | +## Remarks + + + + + + margins + + + The margins. + + + +## See Also + +* Class [Margins](../../margins/) +* Class [TiffSettings](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## TiffSettings::TiffSettings(CompressionType, ColorDepth, System::SharedPtr\) constructor + + +Initializes a new instance of the [TiffSettings](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::TiffSettings::TiffSettings(CompressionType compressionType, ColorDepth colorDepth, System::SharedPtr margins) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| compressionType | CompressionType | Type of the compression. | +| colorDepth | ColorDepth | The color depth. | +| margins | System::SharedPtr\ | The margins. | +## Remarks + + + + + + compressionType + + + Type of the compression. + + + + + colorDepth + + + The color depth. + + + + + margins + + + The margins. + + + +## See Also + +* Enum [CompressionType](../../compressiontype/) +* Enum [ColorDepth](../../colordepth/) +* Class [Margins](../../margins/) +* Class [TiffSettings](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## TiffSettings::TiffSettings(CompressionType, ColorDepth, System::SharedPtr\, bool) constructor + + +Initializes a new instance of the [TiffSettings](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::TiffSettings::TiffSettings(CompressionType compressionType, ColorDepth colorDepth, System::SharedPtr margins, bool skipBlankPages) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| compressionType | CompressionType | Type of the compression. | +| colorDepth | ColorDepth | The color depth. | +| margins | System::SharedPtr\ | The margins. | +| skipBlankPages | bool | if set to **true** need to skip blank pages. | +## Remarks + + + + + + compressionType + + + Type of the compression. + + + + + colorDepth + + + The color depth. + + + + + margins + + + The margins. + + + + + skipBlankPages + + + if set to true need to skip blank pages. + + + +## See Also + +* Enum [CompressionType](../../compressiontype/) +* Enum [ColorDepth](../../colordepth/) +* Class [Margins](../../margins/) +* Class [TiffSettings](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## TiffSettings::TiffSettings(CompressionType, ColorDepth, System::SharedPtr\, bool, ShapeType) constructor + + +Initializes a new instance of the [TiffSettings](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::TiffSettings::TiffSettings(CompressionType compressionType, ColorDepth colorDepth, System::SharedPtr margins, bool skipBlankPages, ShapeType shapeType) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| compressionType | CompressionType | Type of the compression. | +| colorDepth | ColorDepth | The color depth. | +| margins | System::SharedPtr\ | The margins. | +| skipBlankPages | bool | if set to **true** need to skip blank pages. | +| shapeType | ShapeType | Type of the shape. | +## Remarks + + + + + + compressionType + + + Type of the compression. + + + + + colorDepth + + + The color depth. + + + + + margins + + + The margins. + + + + + skipBlankPages + + + if set to true need to skip blank pages. + + + + + shapeType + + + Type of the shape. + + + +## See Also + +* Enum [CompressionType](../../compressiontype/) +* Enum [ColorDepth](../../colordepth/) +* Class [Margins](../../margins/) +* Enum [ShapeType](../../shapetype/) +* Class [TiffSettings](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) +## TiffSettings::TiffSettings(bool) constructor + + +Initializes a new instance of the [TiffSettings](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::TiffSettings::TiffSettings(bool skipBlankPages) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| skipBlankPages | bool | if set to **true** [skip blank pages]. | +## Remarks + + + + + + skipBlankPages + + + if set to true [skip blank pages]. + + + +## See Also + +* Class [TiffSettings](../) +* Namespace [Aspose::Pdf::Devices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/_index.md b/english/cpp/aspose.pdf.drawing/_index.md new file mode 100644 index 0000000000..bd46aea1c4 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/_index.md @@ -0,0 +1,33 @@ +--- +title: Aspose::Pdf::Drawing namespace +linktitle: Aspose::Pdf::Drawing +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Drawing namespace in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.drawing/ +--- + + + +## Classes + +| Class | Description | +| --- | --- | +| [Arc](./arc/) | Represents arc. | +| [Circle](./circle/) | Represents circle. | +| [Curve](./curve/) | Represents bezier curve. | +| [Ellipse](./ellipse/) | Represents ellipse. | +| [GradientAxialShading](./gradientaxialshading/) | Represents gradient axial shading class. | +| [GradientRadialShading](./gradientradialshading/) | Represents gradient radial shading type. | +| [Graph](./graph/) | Represents graph - graphics generator paragraph. | +| [Line](./line/) | Represents line. | +| [Path](./path/) | Represents arc. | +| [PatternColorSpace](./patterncolorspace/) | Represents base pattern class. | +| [Rectangle](./rectangle/) | Represents rectangle. | +| [Shape](./shape/) | Represents shape - the base graphics object. | +## Enums + +| Enum | Description | +| --- | --- | +| [ImageFormat](./imageformat/) | This enum represents image formats. | diff --git a/english/cpp/aspose.pdf.drawing/arc/_index.md b/english/cpp/aspose.pdf.drawing/arc/_index.md new file mode 100644 index 0000000000..aefb6aa6f6 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/arc/_index.md @@ -0,0 +1,43 @@ +--- +title: Aspose::Pdf::Drawing::Arc class +linktitle: Arc +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Arc class. Represents arc in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.drawing/arc/ +--- +## Arc class + + +Represents arc. + +```cpp +class Arc : public Aspose::Pdf::Drawing::Shape +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Arc](./arc/)(float, float, float, float, float) | Initializes a new instance of the [Arc](./) class. | +| [get_Alpha](./get_alpha/)() const | Gets a float value that indicates the beginning angle degree of the arc. | +| [get_Beta](./get_beta/)() const | Gets a float value that indicates the ending angle degree of the arc. | +| [get_GraphInfo](../shape/get_graphinfo/)() const | Gets a [GraphInfo](../../aspose.pdf/graphinfo/) object that indicates the graph info,such as color, line width,etc. | +| [get_PosX](./get_posx/)() const | Gets a float value that indicates the x-coordinate of the center of the arc. | +| [get_PosY](./get_posy/)() const | Gets a float value that indicates the y-coordinate of the center of the arc. | +| [get_Radius](./get_radius/)() const | Gets a float value that indicates the radius of the arc. | +| [get_Text](../shape/get_text/)() const | Gets a text for shape. | +| [set_Alpha](./set_alpha/)(double) | Sets a float value that indicates the beginning angle degree of the arc. | +| [set_Beta](./set_beta/)(double) | Sets a float value that indicates the ending angle degree of the arc. | +| [set_GraphInfo](../shape/set_graphinfo/)(System::SharedPtr\) | Sets a [GraphInfo](../../aspose.pdf/graphinfo/) object that indicates the graph info,such as color, line width,etc. | +| [set_PosX](./set_posx/)(double) | Sets a float value that indicates the x-coordinate of the center of the arc. | +| [set_PosY](./set_posy/)(double) | Sets a float value that indicates the y-coordinate of the center of the arc. | +| [set_Radius](./set_radius/)(double) | Sets a float value that indicates the radius of the arc. | +| [set_Text](../shape/set_text/)(System::SharedPtr\) | Sets a text for shape. | +| [Shape](../shape/shape/)() | | +## See Also + +* Class [Shape](../shape/) +* Namespace [Aspose::Pdf::Drawing](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.drawing/arc/arc/_index.md b/english/cpp/aspose.pdf.drawing/arc/arc/_index.md new file mode 100644 index 0000000000..8e0e4a3d34 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/arc/arc/_index.md @@ -0,0 +1,76 @@ +--- +title: Aspose::Pdf::Drawing::Arc::Arc constructor +linktitle: Arc +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Arc::Arc constructor. Initializes a new instance of the Arc class in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.drawing/arc/arc/ +--- +## Arc::Arc constructor + + +Initializes a new instance of the [Arc](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Drawing::Arc::Arc(float posX, float posY, float radius, float alpha, float beta) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| posX | float | The x-coordinate of the center point of the arc. | +| posY | float | The y-coordinate of the center point of the arc. | +| radius | float | The radius value of the arc. | +| alpha | float | The beginning angle value of the arc. | +| beta | float | The end angle value of the arc. | +## Remarks + + + + + + posX + + + The x-coordinate of the center point of the arc. + + + + + posY + + + The y-coordinate of the center point of the arc. + + + + + radius + + + The radius value of the arc. + + + + + alpha + + + The beginning angle value of the arc. + + + + + beta + + + The end angle value of the arc. + + + +## See Also + +* Class [Arc](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/arc/get_alpha/_index.md b/english/cpp/aspose.pdf.drawing/arc/get_alpha/_index.md new file mode 100644 index 0000000000..90290f7c7c --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/arc/get_alpha/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Arc::get_Alpha method +linktitle: get_Alpha +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Arc::get_Alpha method. Gets a float value that indicates the beginning angle degree of the arc in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.drawing/arc/get_alpha/ +--- +## Arc::get_Alpha method + + +Gets a float value that indicates the beginning angle degree of the arc. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Drawing::Arc::get_Alpha() const +``` + +## See Also + +* Class [Arc](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/arc/get_beta/_index.md b/english/cpp/aspose.pdf.drawing/arc/get_beta/_index.md new file mode 100644 index 0000000000..deb2fff8c0 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/arc/get_beta/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Arc::get_Beta method +linktitle: get_Beta +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Arc::get_Beta method. Gets a float value that indicates the ending angle degree of the arc in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.drawing/arc/get_beta/ +--- +## Arc::get_Beta method + + +Gets a float value that indicates the ending angle degree of the arc. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Drawing::Arc::get_Beta() const +``` + +## See Also + +* Class [Arc](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/arc/get_posx/_index.md b/english/cpp/aspose.pdf.drawing/arc/get_posx/_index.md new file mode 100644 index 0000000000..4f5c6cc117 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/arc/get_posx/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Arc::get_PosX method +linktitle: get_PosX +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Arc::get_PosX method. Gets a float value that indicates the x-coordinate of the center of the arc in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.drawing/arc/get_posx/ +--- +## Arc::get_PosX method + + +Gets a float value that indicates the x-coordinate of the center of the arc. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Drawing::Arc::get_PosX() const +``` + +## See Also + +* Class [Arc](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/arc/get_posy/_index.md b/english/cpp/aspose.pdf.drawing/arc/get_posy/_index.md new file mode 100644 index 0000000000..8ab495043c --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/arc/get_posy/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Arc::get_PosY method +linktitle: get_PosY +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Arc::get_PosY method. Gets a float value that indicates the y-coordinate of the center of the arc in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.drawing/arc/get_posy/ +--- +## Arc::get_PosY method + + +Gets a float value that indicates the y-coordinate of the center of the arc. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Drawing::Arc::get_PosY() const +``` + +## See Also + +* Class [Arc](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/arc/get_radius/_index.md b/english/cpp/aspose.pdf.drawing/arc/get_radius/_index.md new file mode 100644 index 0000000000..8fceead43b --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/arc/get_radius/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Arc::get_Radius method +linktitle: get_Radius +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Arc::get_Radius method. Gets a float value that indicates the radius of the arc in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.drawing/arc/get_radius/ +--- +## Arc::get_Radius method + + +Gets a float value that indicates the radius of the arc. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Drawing::Arc::get_Radius() const +``` + +## See Also + +* Class [Arc](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/arc/set_alpha/_index.md b/english/cpp/aspose.pdf.drawing/arc/set_alpha/_index.md new file mode 100644 index 0000000000..e212e8f31e --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/arc/set_alpha/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Arc::set_Alpha method +linktitle: set_Alpha +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Arc::set_Alpha method. Sets a float value that indicates the beginning angle degree of the arc in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.drawing/arc/set_alpha/ +--- +## Arc::set_Alpha method + + +Sets a float value that indicates the beginning angle degree of the arc. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Drawing::Arc::set_Alpha(double value) +``` + +## See Also + +* Class [Arc](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/arc/set_beta/_index.md b/english/cpp/aspose.pdf.drawing/arc/set_beta/_index.md new file mode 100644 index 0000000000..30b7b02976 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/arc/set_beta/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Arc::set_Beta method +linktitle: set_Beta +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Arc::set_Beta method. Sets a float value that indicates the ending angle degree of the arc in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.drawing/arc/set_beta/ +--- +## Arc::set_Beta method + + +Sets a float value that indicates the ending angle degree of the arc. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Drawing::Arc::set_Beta(double value) +``` + +## See Also + +* Class [Arc](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/arc/set_posx/_index.md b/english/cpp/aspose.pdf.drawing/arc/set_posx/_index.md new file mode 100644 index 0000000000..a212fd595c --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/arc/set_posx/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Arc::set_PosX method +linktitle: set_PosX +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Arc::set_PosX method. Sets a float value that indicates the x-coordinate of the center of the arc in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.drawing/arc/set_posx/ +--- +## Arc::set_PosX method + + +Sets a float value that indicates the x-coordinate of the center of the arc. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Drawing::Arc::set_PosX(double value) +``` + +## See Also + +* Class [Arc](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/arc/set_posy/_index.md b/english/cpp/aspose.pdf.drawing/arc/set_posy/_index.md new file mode 100644 index 0000000000..4eaa60f2d3 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/arc/set_posy/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Arc::set_PosY method +linktitle: set_PosY +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Arc::set_PosY method. Sets a float value that indicates the y-coordinate of the center of the arc in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.drawing/arc/set_posy/ +--- +## Arc::set_PosY method + + +Sets a float value that indicates the y-coordinate of the center of the arc. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Drawing::Arc::set_PosY(double value) +``` + +## See Also + +* Class [Arc](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/arc/set_radius/_index.md b/english/cpp/aspose.pdf.drawing/arc/set_radius/_index.md new file mode 100644 index 0000000000..a28dd00b25 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/arc/set_radius/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Arc::set_Radius method +linktitle: set_Radius +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Arc::set_Radius method. Sets a float value that indicates the radius of the arc in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.drawing/arc/set_radius/ +--- +## Arc::set_Radius method + + +Sets a float value that indicates the radius of the arc. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Drawing::Arc::set_Radius(double value) +``` + +## See Also + +* Class [Arc](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/circle/_index.md b/english/cpp/aspose.pdf.drawing/circle/_index.md new file mode 100644 index 0000000000..04e351c2a3 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/circle/_index.md @@ -0,0 +1,39 @@ +--- +title: Aspose::Pdf::Drawing::Circle class +linktitle: Circle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Circle class. Represents circle in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.drawing/circle/ +--- +## Circle class + + +Represents circle. + +```cpp +class Circle : public Aspose::Pdf::Drawing::Shape +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Circle](./circle/)(float, float, float) | Initializes a new instance of the [Circle](./) class. | +| [get_GraphInfo](../shape/get_graphinfo/)() const | Gets a [GraphInfo](../../aspose.pdf/graphinfo/) object that indicates the graph info,such as color, line width,etc. | +| [get_PosX](./get_posx/)() const | Gets a float value that indicates the x-coordinate of the center of the circle. | +| [get_PosY](./get_posy/)() const | Gets a float value that indicates the y-coordinate of the center of the circle. | +| [get_Radius](./get_radius/)() const | Gets a float value that indicates the radius of the circle. | +| [get_Text](../shape/get_text/)() const | Gets a text for shape. | +| [set_GraphInfo](../shape/set_graphinfo/)(System::SharedPtr\) | Sets a [GraphInfo](../../aspose.pdf/graphinfo/) object that indicates the graph info,such as color, line width,etc. | +| [set_PosX](./set_posx/)(double) | Sets a float value that indicates the x-coordinate of the center of the circle. | +| [set_PosY](./set_posy/)(double) | Sets a float value that indicates the y-coordinate of the center of the circle. | +| [set_Radius](./set_radius/)(double) | Sets a float value that indicates the radius of the circle. | +| [set_Text](../shape/set_text/)(System::SharedPtr\) | Sets a text for shape. | +| [Shape](../shape/shape/)() | | +## See Also + +* Class [Shape](../shape/) +* Namespace [Aspose::Pdf::Drawing](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.drawing/circle/circle/_index.md b/english/cpp/aspose.pdf.drawing/circle/circle/_index.md new file mode 100644 index 0000000000..529f411048 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/circle/circle/_index.md @@ -0,0 +1,58 @@ +--- +title: Aspose::Pdf::Drawing::Circle::Circle constructor +linktitle: Circle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Circle::Circle constructor. Initializes a new instance of the Circle class in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.drawing/circle/circle/ +--- +## Circle::Circle constructor + + +Initializes a new instance of the [Circle](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Drawing::Circle::Circle(float posX, float posY, float radius) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| posX | float | The x-coordinate of the center of the circle. | +| posY | float | The y-coordinate of the center of the circle. | +| radius | float | The radius of the circle. | +## Remarks + + + + + + posX + + + The x-coordinate of the center of the circle. + + + + + posY + + + The y-coordinate of the center of the circle. + + + + + radius + + + The radius of the circle. + + + +## See Also + +* Class [Circle](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/circle/get_posx/_index.md b/english/cpp/aspose.pdf.drawing/circle/get_posx/_index.md new file mode 100644 index 0000000000..46f02a34fa --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/circle/get_posx/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Circle::get_PosX method +linktitle: get_PosX +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Circle::get_PosX method. Gets a float value that indicates the x-coordinate of the center of the circle in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.drawing/circle/get_posx/ +--- +## Circle::get_PosX method + + +Gets a float value that indicates the x-coordinate of the center of the circle. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Drawing::Circle::get_PosX() const +``` + +## See Also + +* Class [Circle](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/circle/get_posy/_index.md b/english/cpp/aspose.pdf.drawing/circle/get_posy/_index.md new file mode 100644 index 0000000000..d642622479 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/circle/get_posy/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Circle::get_PosY method +linktitle: get_PosY +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Circle::get_PosY method. Gets a float value that indicates the y-coordinate of the center of the circle in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.drawing/circle/get_posy/ +--- +## Circle::get_PosY method + + +Gets a float value that indicates the y-coordinate of the center of the circle. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Drawing::Circle::get_PosY() const +``` + +## See Also + +* Class [Circle](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/circle/get_radius/_index.md b/english/cpp/aspose.pdf.drawing/circle/get_radius/_index.md new file mode 100644 index 0000000000..c5e1bc7eed --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/circle/get_radius/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Circle::get_Radius method +linktitle: get_Radius +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Circle::get_Radius method. Gets a float value that indicates the radius of the circle in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.drawing/circle/get_radius/ +--- +## Circle::get_Radius method + + +Gets a float value that indicates the radius of the circle. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Drawing::Circle::get_Radius() const +``` + +## See Also + +* Class [Circle](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/circle/set_posx/_index.md b/english/cpp/aspose.pdf.drawing/circle/set_posx/_index.md new file mode 100644 index 0000000000..6571a4bd71 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/circle/set_posx/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Circle::set_PosX method +linktitle: set_PosX +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Circle::set_PosX method. Sets a float value that indicates the x-coordinate of the center of the circle in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.drawing/circle/set_posx/ +--- +## Circle::set_PosX method + + +Sets a float value that indicates the x-coordinate of the center of the circle. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Drawing::Circle::set_PosX(double value) +``` + +## See Also + +* Class [Circle](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/circle/set_posy/_index.md b/english/cpp/aspose.pdf.drawing/circle/set_posy/_index.md new file mode 100644 index 0000000000..65147c88f2 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/circle/set_posy/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Circle::set_PosY method +linktitle: set_PosY +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Circle::set_PosY method. Sets a float value that indicates the y-coordinate of the center of the circle in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.drawing/circle/set_posy/ +--- +## Circle::set_PosY method + + +Sets a float value that indicates the y-coordinate of the center of the circle. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Drawing::Circle::set_PosY(double value) +``` + +## See Also + +* Class [Circle](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/circle/set_radius/_index.md b/english/cpp/aspose.pdf.drawing/circle/set_radius/_index.md new file mode 100644 index 0000000000..0a06360853 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/circle/set_radius/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Circle::set_Radius method +linktitle: set_Radius +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Circle::set_Radius method. Sets a float value that indicates the radius of the circle in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.drawing/circle/set_radius/ +--- +## Circle::set_Radius method + + +Sets a float value that indicates the radius of the circle. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Drawing::Circle::set_Radius(double value) +``` + +## See Also + +* Class [Circle](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/curve/_index.md b/english/cpp/aspose.pdf.drawing/curve/_index.md new file mode 100644 index 0000000000..edc0692237 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/curve/_index.md @@ -0,0 +1,35 @@ +--- +title: Aspose::Pdf::Drawing::Curve class +linktitle: Curve +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Curve class. Represents bezier curve in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.drawing/curve/ +--- +## Curve class + + +Represents bezier curve. + +```cpp +class Curve : public Aspose::Pdf::Drawing::Shape +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Curve](./curve/)(System::ArrayPtr\) | Initializes a new instance of the [Curve](./) class. | +| [get_GraphInfo](../shape/get_graphinfo/)() const | Gets a [GraphInfo](../../aspose.pdf/graphinfo/) object that indicates the graph info,such as color, line width,etc. | +| [get_PositionArray](./get_positionarray/)() const | Gets a float position array. | +| [get_Text](../shape/get_text/)() const | Gets a text for shape. | +| [set_GraphInfo](../shape/set_graphinfo/)(System::SharedPtr\) | Sets a [GraphInfo](../../aspose.pdf/graphinfo/) object that indicates the graph info,such as color, line width,etc. | +| [set_PositionArray](./set_positionarray/)(System::ArrayPtr\) | Sets a float position array. | +| [set_Text](../shape/set_text/)(System::SharedPtr\) | Sets a text for shape. | +| [Shape](../shape/shape/)() | | +## See Also + +* Class [Shape](../shape/) +* Namespace [Aspose::Pdf::Drawing](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.drawing/curve/curve/_index.md b/english/cpp/aspose.pdf.drawing/curve/curve/_index.md new file mode 100644 index 0000000000..075a9ec572 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/curve/curve/_index.md @@ -0,0 +1,40 @@ +--- +title: Aspose::Pdf::Drawing::Curve::Curve constructor +linktitle: Curve +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Curve::Curve constructor. Initializes a new instance of the Curve class in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.drawing/curve/curve/ +--- +## Curve::Curve constructor + + +Initializes a new instance of the [Curve](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Drawing::Curve::Curve(System::ArrayPtr positionArray) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| positionArray | System::ArrayPtr\ | The position array of the control points of the curve.There should be four control points,so the length of the array should be eight. | +## Remarks + + + + + + positionArray + + + The position array of the control points of the curve.There should be four control points,so the length of the array should be eight. + + + +## See Also + +* Class [Curve](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/curve/get_positionarray/_index.md b/english/cpp/aspose.pdf.drawing/curve/get_positionarray/_index.md new file mode 100644 index 0000000000..fb11699802 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/curve/get_positionarray/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Curve::get_PositionArray method +linktitle: get_PositionArray +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Curve::get_PositionArray method. Gets a float position array in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.drawing/curve/get_positionarray/ +--- +## Curve::get_PositionArray method + + +Gets a float position array. + +```cpp +ASPOSE_PDF_SHARED_API System::ArrayPtr Aspose::Pdf::Drawing::Curve::get_PositionArray() const +``` + +## See Also + +* Class [Curve](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/curve/set_positionarray/_index.md b/english/cpp/aspose.pdf.drawing/curve/set_positionarray/_index.md new file mode 100644 index 0000000000..860bb69b2f --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/curve/set_positionarray/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Curve::set_PositionArray method +linktitle: set_PositionArray +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Curve::set_PositionArray method. Sets a float position array in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.drawing/curve/set_positionarray/ +--- +## Curve::set_PositionArray method + + +Sets a float position array. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Drawing::Curve::set_PositionArray(System::ArrayPtr value) +``` + +## See Also + +* Class [Curve](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/ellipse/_index.md b/english/cpp/aspose.pdf.drawing/ellipse/_index.md new file mode 100644 index 0000000000..6b307e5024 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/ellipse/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Drawing::Ellipse class +linktitle: Ellipse +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Ellipse class. Represents ellipse in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.drawing/ellipse/ +--- +## Ellipse class + + +Represents ellipse. + +```cpp +class Ellipse : public Aspose::Pdf::Drawing::Shape +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Ellipse](./ellipse/)(double, double, double, double) | Initializes a new instance of the [Ellipse](./) class. | +| [get_Bottom](./get_bottom/)() const | Gets a float value that indicates the bottom position of the ellipse. | +| [get_GraphInfo](../shape/get_graphinfo/)() const | Gets a [GraphInfo](../../aspose.pdf/graphinfo/) object that indicates the graph info,such as color, line width,etc. | +| [get_Height](./get_height/)() const | Gets a float value that indicates the height of the ellipse. | +| [get_Left](./get_left/)() const | Gets a float value that indicates the left position of the ellipse. | +| [get_Text](../shape/get_text/)() const | Gets a text for shape. | +| [get_Width](./get_width/)() const | Gets a float value that indicates the width of the ellipse. | +| [set_Bottom](./set_bottom/)(double) | Sets a float value that indicates the bottom position of the ellipse. | +| [set_GraphInfo](../shape/set_graphinfo/)(System::SharedPtr\) | Sets a [GraphInfo](../../aspose.pdf/graphinfo/) object that indicates the graph info,such as color, line width,etc. | +| [set_Height](./set_height/)(double) | Sets a float value that indicates the height of the ellipse. | +| [set_Left](./set_left/)(double) | Sets a float value that indicates the left position of the ellipse. | +| [set_Text](../shape/set_text/)(System::SharedPtr\) | Sets a text for shape. | +| [set_Width](./set_width/)(double) | Sets a float value that indicates the width of the ellipse. | +| [Shape](../shape/shape/)() | | +## See Also + +* Class [Shape](../shape/) +* Namespace [Aspose::Pdf::Drawing](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.drawing/ellipse/ellipse/_index.md b/english/cpp/aspose.pdf.drawing/ellipse/ellipse/_index.md new file mode 100644 index 0000000000..a23a4322de --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/ellipse/ellipse/_index.md @@ -0,0 +1,67 @@ +--- +title: Aspose::Pdf::Drawing::Ellipse::Ellipse constructor +linktitle: Ellipse +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Ellipse::Ellipse constructor. Initializes a new instance of the Ellipse class in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.drawing/ellipse/ellipse/ +--- +## Ellipse::Ellipse constructor + + +Initializes a new instance of the [Ellipse](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Drawing::Ellipse::Ellipse(double left, double bottom, double width, double height) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| left | double | The left position of the ellipse. | +| bottom | double | The bottom position of the ellipse. | +| width | double | The width of the ellipse. | +| height | double | The height of the ellipse. | +## Remarks + + + + + + left + + + The left position of the ellipse. + + + + + bottom + + + The bottom position of the ellipse. + + + + + width + + + The width of the ellipse. + + + + + height + + + The height of the ellipse. + + + +## See Also + +* Class [Ellipse](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/ellipse/get_bottom/_index.md b/english/cpp/aspose.pdf.drawing/ellipse/get_bottom/_index.md new file mode 100644 index 0000000000..7258a36b3b --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/ellipse/get_bottom/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Ellipse::get_Bottom method +linktitle: get_Bottom +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Ellipse::get_Bottom method. Gets a float value that indicates the bottom position of the ellipse in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.drawing/ellipse/get_bottom/ +--- +## Ellipse::get_Bottom method + + +Gets a float value that indicates the bottom position of the ellipse. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Drawing::Ellipse::get_Bottom() const +``` + +## See Also + +* Class [Ellipse](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/ellipse/get_height/_index.md b/english/cpp/aspose.pdf.drawing/ellipse/get_height/_index.md new file mode 100644 index 0000000000..c94a29a5b7 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/ellipse/get_height/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Ellipse::get_Height method +linktitle: get_Height +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Ellipse::get_Height method. Gets a float value that indicates the height of the ellipse in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.drawing/ellipse/get_height/ +--- +## Ellipse::get_Height method + + +Gets a float value that indicates the height of the ellipse. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Drawing::Ellipse::get_Height() const +``` + +## See Also + +* Class [Ellipse](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/ellipse/get_left/_index.md b/english/cpp/aspose.pdf.drawing/ellipse/get_left/_index.md new file mode 100644 index 0000000000..3854cbaf48 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/ellipse/get_left/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Ellipse::get_Left method +linktitle: get_Left +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Ellipse::get_Left method. Gets a float value that indicates the left position of the ellipse in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.drawing/ellipse/get_left/ +--- +## Ellipse::get_Left method + + +Gets a float value that indicates the left position of the ellipse. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Drawing::Ellipse::get_Left() const +``` + +## See Also + +* Class [Ellipse](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/ellipse/get_width/_index.md b/english/cpp/aspose.pdf.drawing/ellipse/get_width/_index.md new file mode 100644 index 0000000000..6b0c007d23 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/ellipse/get_width/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Ellipse::get_Width method +linktitle: get_Width +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Ellipse::get_Width method. Gets a float value that indicates the width of the ellipse in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.drawing/ellipse/get_width/ +--- +## Ellipse::get_Width method + + +Gets a float value that indicates the width of the ellipse. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Drawing::Ellipse::get_Width() const +``` + +## See Also + +* Class [Ellipse](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/ellipse/set_bottom/_index.md b/english/cpp/aspose.pdf.drawing/ellipse/set_bottom/_index.md new file mode 100644 index 0000000000..1b4e7df389 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/ellipse/set_bottom/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Ellipse::set_Bottom method +linktitle: set_Bottom +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Ellipse::set_Bottom method. Sets a float value that indicates the bottom position of the ellipse in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.drawing/ellipse/set_bottom/ +--- +## Ellipse::set_Bottom method + + +Sets a float value that indicates the bottom position of the ellipse. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Drawing::Ellipse::set_Bottom(double value) +``` + +## See Also + +* Class [Ellipse](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/ellipse/set_height/_index.md b/english/cpp/aspose.pdf.drawing/ellipse/set_height/_index.md new file mode 100644 index 0000000000..c21c88ccae --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/ellipse/set_height/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Ellipse::set_Height method +linktitle: set_Height +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Ellipse::set_Height method. Sets a float value that indicates the height of the ellipse in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.drawing/ellipse/set_height/ +--- +## Ellipse::set_Height method + + +Sets a float value that indicates the height of the ellipse. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Drawing::Ellipse::set_Height(double value) +``` + +## See Also + +* Class [Ellipse](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/ellipse/set_left/_index.md b/english/cpp/aspose.pdf.drawing/ellipse/set_left/_index.md new file mode 100644 index 0000000000..abc5cdb470 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/ellipse/set_left/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Ellipse::set_Left method +linktitle: set_Left +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Ellipse::set_Left method. Sets a float value that indicates the left position of the ellipse in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.drawing/ellipse/set_left/ +--- +## Ellipse::set_Left method + + +Sets a float value that indicates the left position of the ellipse. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Drawing::Ellipse::set_Left(double value) +``` + +## See Also + +* Class [Ellipse](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/ellipse/set_width/_index.md b/english/cpp/aspose.pdf.drawing/ellipse/set_width/_index.md new file mode 100644 index 0000000000..c88be6cd35 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/ellipse/set_width/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Ellipse::set_Width method +linktitle: set_Width +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Ellipse::set_Width method. Sets a float value that indicates the width of the ellipse in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.drawing/ellipse/set_width/ +--- +## Ellipse::set_Width method + + +Sets a float value that indicates the width of the ellipse. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Drawing::Ellipse::set_Width(double value) +``` + +## See Also + +* Class [Ellipse](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/gradientaxialshading/_index.md b/english/cpp/aspose.pdf.drawing/gradientaxialshading/_index.md new file mode 100644 index 0000000000..4e36ace5d0 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/gradientaxialshading/_index.md @@ -0,0 +1,38 @@ +--- +title: Aspose::Pdf::Drawing::GradientAxialShading class +linktitle: GradientAxialShading +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::GradientAxialShading class. Represents gradient axial shading class in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.drawing/gradientaxialshading/ +--- +## GradientAxialShading class + + +Represents gradient axial shading class. + +```cpp +class GradientAxialShading : public Aspose::Pdf::Drawing::PatternColorSpace +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_End](./get_end/)() const | Gets end point. | +| [get_EndColor](./get_endcolor/)() const | Gets end color. | +| [get_Start](./get_start/)() const | Gets start point. | +| [get_StartColor](./get_startcolor/)() const | Gets start color. | +| [GradientAxialShading](./gradientaxialshading/)() | Initializes a new instance of the [GradientAxialShading](./) class. | +| [GradientAxialShading](./gradientaxialshading/)(System::SharedPtr\, System::SharedPtr\) | Initializes a new instance of the [GradientAxialShading](./) class. | +| [PatternColorSpace](../patterncolorspace/patterncolorspace/)() | | +| [set_End](./set_end/)(System::SharedPtr\) | Sets end point. | +| [set_EndColor](./set_endcolor/)(System::SharedPtr\) | Sets end color. | +| [set_Start](./set_start/)(System::SharedPtr\) | Sets start point. | +| [set_StartColor](./set_startcolor/)(System::SharedPtr\) | Sets start color. | +## See Also + +* Class [PatternColorSpace](../patterncolorspace/) +* Namespace [Aspose::Pdf::Drawing](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.drawing/gradientaxialshading/get_end/_index.md b/english/cpp/aspose.pdf.drawing/gradientaxialshading/get_end/_index.md new file mode 100644 index 0000000000..606f8aa5df --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/gradientaxialshading/get_end/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Drawing::GradientAxialShading::get_End method +linktitle: get_End +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::GradientAxialShading::get_End method. Gets end point in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.drawing/gradientaxialshading/get_end/ +--- +## GradientAxialShading::get_End method + + +Gets end point. + +```cpp +ASPOSE_PDF_SHARED_API const System::SharedPtr & Aspose::Pdf::Drawing::GradientAxialShading::get_End() const +``` + +## See Also + +* Class [Point](../../../aspose.pdf/point/) +* Class [GradientAxialShading](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/gradientaxialshading/get_endcolor/_index.md b/english/cpp/aspose.pdf.drawing/gradientaxialshading/get_endcolor/_index.md new file mode 100644 index 0000000000..8e4e8aaef5 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/gradientaxialshading/get_endcolor/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Drawing::GradientAxialShading::get_EndColor method +linktitle: get_EndColor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::GradientAxialShading::get_EndColor method. Gets end color in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.drawing/gradientaxialshading/get_endcolor/ +--- +## GradientAxialShading::get_EndColor method + + +Gets end color. + +```cpp +ASPOSE_PDF_SHARED_API const System::SharedPtr & Aspose::Pdf::Drawing::GradientAxialShading::get_EndColor() const +``` + +## See Also + +* Class [Color](../../../aspose.pdf/color/) +* Class [GradientAxialShading](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/gradientaxialshading/get_start/_index.md b/english/cpp/aspose.pdf.drawing/gradientaxialshading/get_start/_index.md new file mode 100644 index 0000000000..42c5d14ca5 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/gradientaxialshading/get_start/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Drawing::GradientAxialShading::get_Start method +linktitle: get_Start +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::GradientAxialShading::get_Start method. Gets start point in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.drawing/gradientaxialshading/get_start/ +--- +## GradientAxialShading::get_Start method + + +Gets start point. + +```cpp +ASPOSE_PDF_SHARED_API const System::SharedPtr & Aspose::Pdf::Drawing::GradientAxialShading::get_Start() const +``` + +## See Also + +* Class [Point](../../../aspose.pdf/point/) +* Class [GradientAxialShading](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/gradientaxialshading/get_startcolor/_index.md b/english/cpp/aspose.pdf.drawing/gradientaxialshading/get_startcolor/_index.md new file mode 100644 index 0000000000..2a00a28b80 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/gradientaxialshading/get_startcolor/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Drawing::GradientAxialShading::get_StartColor method +linktitle: get_StartColor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::GradientAxialShading::get_StartColor method. Gets start color in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.drawing/gradientaxialshading/get_startcolor/ +--- +## GradientAxialShading::get_StartColor method + + +Gets start color. + +```cpp +ASPOSE_PDF_SHARED_API const System::SharedPtr & Aspose::Pdf::Drawing::GradientAxialShading::get_StartColor() const +``` + +## See Also + +* Class [Color](../../../aspose.pdf/color/) +* Class [GradientAxialShading](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/gradientaxialshading/gradientaxialshading/_index.md b/english/cpp/aspose.pdf.drawing/gradientaxialshading/gradientaxialshading/_index.md new file mode 100644 index 0000000000..a500ba285c --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/gradientaxialshading/gradientaxialshading/_index.md @@ -0,0 +1,64 @@ +--- +title: Aspose::Pdf::Drawing::GradientAxialShading::GradientAxialShading constructor +linktitle: GradientAxialShading +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::GradientAxialShading::GradientAxialShading constructor. Initializes a new instance of the GradientAxialShading class in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.drawing/gradientaxialshading/gradientaxialshading/ +--- +## GradientAxialShading::GradientAxialShading() constructor + + +Initializes a new instance of the [GradientAxialShading](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Drawing::GradientAxialShading::GradientAxialShading() +``` + +## See Also + +* Class [GradientAxialShading](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) +## GradientAxialShading::GradientAxialShading(System::SharedPtr\, System::SharedPtr\) constructor + + +Initializes a new instance of the [GradientAxialShading](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Drawing::GradientAxialShading::GradientAxialShading(System::SharedPtr startColor, System::SharedPtr endColor) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| startColor | System::SharedPtr\ | The start point. | +| endColor | System::SharedPtr\ | The end point. | +## Remarks + + + + + + startColor + + + The start point. + + + + + endColor + + + The end point. + + + +## See Also + +* Class [Color](../../../aspose.pdf/color/) +* Class [GradientAxialShading](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/gradientaxialshading/set_end/_index.md b/english/cpp/aspose.pdf.drawing/gradientaxialshading/set_end/_index.md new file mode 100644 index 0000000000..701dae05db --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/gradientaxialshading/set_end/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Drawing::GradientAxialShading::set_End method +linktitle: set_End +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::GradientAxialShading::set_End method. Sets end point in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.drawing/gradientaxialshading/set_end/ +--- +## GradientAxialShading::set_End method + + +Sets end point. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Drawing::GradientAxialShading::set_End(System::SharedPtr value) +``` + +## See Also + +* Class [Point](../../../aspose.pdf/point/) +* Class [GradientAxialShading](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/gradientaxialshading/set_endcolor/_index.md b/english/cpp/aspose.pdf.drawing/gradientaxialshading/set_endcolor/_index.md new file mode 100644 index 0000000000..271fd6b029 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/gradientaxialshading/set_endcolor/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Drawing::GradientAxialShading::set_EndColor method +linktitle: set_EndColor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::GradientAxialShading::set_EndColor method. Sets end color in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.drawing/gradientaxialshading/set_endcolor/ +--- +## GradientAxialShading::set_EndColor method + + +Sets end color. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Drawing::GradientAxialShading::set_EndColor(System::SharedPtr value) +``` + +## See Also + +* Class [Color](../../../aspose.pdf/color/) +* Class [GradientAxialShading](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/gradientaxialshading/set_start/_index.md b/english/cpp/aspose.pdf.drawing/gradientaxialshading/set_start/_index.md new file mode 100644 index 0000000000..014a691dc3 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/gradientaxialshading/set_start/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Drawing::GradientAxialShading::set_Start method +linktitle: set_Start +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::GradientAxialShading::set_Start method. Sets start point in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.drawing/gradientaxialshading/set_start/ +--- +## GradientAxialShading::set_Start method + + +Sets start point. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Drawing::GradientAxialShading::set_Start(System::SharedPtr value) +``` + +## See Also + +* Class [Point](../../../aspose.pdf/point/) +* Class [GradientAxialShading](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/gradientaxialshading/set_startcolor/_index.md b/english/cpp/aspose.pdf.drawing/gradientaxialshading/set_startcolor/_index.md new file mode 100644 index 0000000000..88f6a006ef --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/gradientaxialshading/set_startcolor/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Drawing::GradientAxialShading::set_StartColor method +linktitle: set_StartColor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::GradientAxialShading::set_StartColor method. Sets start color in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.drawing/gradientaxialshading/set_startcolor/ +--- +## GradientAxialShading::set_StartColor method + + +Sets start color. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Drawing::GradientAxialShading::set_StartColor(System::SharedPtr value) +``` + +## See Also + +* Class [Color](../../../aspose.pdf/color/) +* Class [GradientAxialShading](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/gradientradialshading/_index.md b/english/cpp/aspose.pdf.drawing/gradientradialshading/_index.md new file mode 100644 index 0000000000..77fabad114 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/gradientradialshading/_index.md @@ -0,0 +1,42 @@ +--- +title: Aspose::Pdf::Drawing::GradientRadialShading class +linktitle: GradientRadialShading +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::GradientRadialShading class. Represents gradient radial shading type in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.drawing/gradientradialshading/ +--- +## GradientRadialShading class + + +Represents gradient radial shading type. + +```cpp +class GradientRadialShading : public Aspose::Pdf::Drawing::PatternColorSpace +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_End](./get_end/)() const | Gets ending circle center point. | +| [get_EndColor](./get_endcolor/)() const | Gets end color. | +| [get_EndingRadius](./get_endingradius/)() const | Gets ending circle radius. | +| [get_Start](./get_start/)() const | Gets starting circle center point. | +| [get_StartColor](./get_startcolor/)() const | Gets start color. | +| [get_StartingRadius](./get_startingradius/)() const | Gets starting circle radius. | +| [GradientRadialShading](./gradientradialshading/)() | Initializes a new instance of the [GradientRadialShading](./) class. | +| [GradientRadialShading](./gradientradialshading/)(System::SharedPtr\, System::SharedPtr\) | Initializes a new instance of the [GradientRadialShading](./) class. | +| [PatternColorSpace](../patterncolorspace/patterncolorspace/)() | | +| [set_End](./set_end/)(System::SharedPtr\) | Sets ending circle center point. | +| [set_EndColor](./set_endcolor/)(System::SharedPtr\) | Sets end color. | +| [set_EndingRadius](./set_endingradius/)(double) | Sets ending circle radius. | +| [set_Start](./set_start/)(System::SharedPtr\) | Sets starting circle center point. | +| [set_StartColor](./set_startcolor/)(System::SharedPtr\) | Sets start color. | +| [set_StartingRadius](./set_startingradius/)(double) | Sets starting circle radius. | +## See Also + +* Class [PatternColorSpace](../patterncolorspace/) +* Namespace [Aspose::Pdf::Drawing](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.drawing/gradientradialshading/get_end/_index.md b/english/cpp/aspose.pdf.drawing/gradientradialshading/get_end/_index.md new file mode 100644 index 0000000000..49ff611b4d --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/gradientradialshading/get_end/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Drawing::GradientRadialShading::get_End method +linktitle: get_End +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::GradientRadialShading::get_End method. Gets ending circle center point in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.drawing/gradientradialshading/get_end/ +--- +## GradientRadialShading::get_End method + + +Gets ending circle center point. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Drawing::GradientRadialShading::get_End() const +``` + +## See Also + +* Class [Point](../../../aspose.pdf/point/) +* Class [GradientRadialShading](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/gradientradialshading/get_endcolor/_index.md b/english/cpp/aspose.pdf.drawing/gradientradialshading/get_endcolor/_index.md new file mode 100644 index 0000000000..66e6d84110 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/gradientradialshading/get_endcolor/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Drawing::GradientRadialShading::get_EndColor method +linktitle: get_EndColor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::GradientRadialShading::get_EndColor method. Gets end color in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.drawing/gradientradialshading/get_endcolor/ +--- +## GradientRadialShading::get_EndColor method + + +Gets end color. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Drawing::GradientRadialShading::get_EndColor() const +``` + +## See Also + +* Class [Color](../../../aspose.pdf/color/) +* Class [GradientRadialShading](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/gradientradialshading/get_endingradius/_index.md b/english/cpp/aspose.pdf.drawing/gradientradialshading/get_endingradius/_index.md new file mode 100644 index 0000000000..facab98ca7 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/gradientradialshading/get_endingradius/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::GradientRadialShading::get_EndingRadius method +linktitle: get_EndingRadius +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::GradientRadialShading::get_EndingRadius method. Gets ending circle radius in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.drawing/gradientradialshading/get_endingradius/ +--- +## GradientRadialShading::get_EndingRadius method + + +Gets ending circle radius. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Drawing::GradientRadialShading::get_EndingRadius() const +``` + +## See Also + +* Class [GradientRadialShading](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/gradientradialshading/get_start/_index.md b/english/cpp/aspose.pdf.drawing/gradientradialshading/get_start/_index.md new file mode 100644 index 0000000000..77f390021e --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/gradientradialshading/get_start/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Drawing::GradientRadialShading::get_Start method +linktitle: get_Start +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::GradientRadialShading::get_Start method. Gets starting circle center point in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.drawing/gradientradialshading/get_start/ +--- +## GradientRadialShading::get_Start method + + +Gets starting circle center point. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Drawing::GradientRadialShading::get_Start() const +``` + +## See Also + +* Class [Point](../../../aspose.pdf/point/) +* Class [GradientRadialShading](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/gradientradialshading/get_startcolor/_index.md b/english/cpp/aspose.pdf.drawing/gradientradialshading/get_startcolor/_index.md new file mode 100644 index 0000000000..112760b7c5 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/gradientradialshading/get_startcolor/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Drawing::GradientRadialShading::get_StartColor method +linktitle: get_StartColor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::GradientRadialShading::get_StartColor method. Gets start color in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.drawing/gradientradialshading/get_startcolor/ +--- +## GradientRadialShading::get_StartColor method + + +Gets start color. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Drawing::GradientRadialShading::get_StartColor() const +``` + +## See Also + +* Class [Color](../../../aspose.pdf/color/) +* Class [GradientRadialShading](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/gradientradialshading/get_startingradius/_index.md b/english/cpp/aspose.pdf.drawing/gradientradialshading/get_startingradius/_index.md new file mode 100644 index 0000000000..75dcc6dc84 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/gradientradialshading/get_startingradius/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::GradientRadialShading::get_StartingRadius method +linktitle: get_StartingRadius +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::GradientRadialShading::get_StartingRadius method. Gets starting circle radius in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.drawing/gradientradialshading/get_startingradius/ +--- +## GradientRadialShading::get_StartingRadius method + + +Gets starting circle radius. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Drawing::GradientRadialShading::get_StartingRadius() const +``` + +## See Also + +* Class [GradientRadialShading](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/gradientradialshading/gradientradialshading/_index.md b/english/cpp/aspose.pdf.drawing/gradientradialshading/gradientradialshading/_index.md new file mode 100644 index 0000000000..1c5dad4d2d --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/gradientradialshading/gradientradialshading/_index.md @@ -0,0 +1,64 @@ +--- +title: Aspose::Pdf::Drawing::GradientRadialShading::GradientRadialShading constructor +linktitle: GradientRadialShading +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::GradientRadialShading::GradientRadialShading constructor. Initializes a new instance of the GradientRadialShading class in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.drawing/gradientradialshading/gradientradialshading/ +--- +## GradientRadialShading::GradientRadialShading() constructor + + +Initializes a new instance of the [GradientRadialShading](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Drawing::GradientRadialShading::GradientRadialShading() +``` + +## See Also + +* Class [GradientRadialShading](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) +## GradientRadialShading::GradientRadialShading(System::SharedPtr\, System::SharedPtr\) constructor + + +Initializes a new instance of the [GradientRadialShading](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Drawing::GradientRadialShading::GradientRadialShading(System::SharedPtr startColor, System::SharedPtr endColor) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| startColor | System::SharedPtr\ | The starting circle color. | +| endColor | System::SharedPtr\ | The ending circle color. | +## Remarks + + + + + + startColor + + + The starting circle color. + + + + + endColor + + + The ending circle color. + + + +## See Also + +* Class [Color](../../../aspose.pdf/color/) +* Class [GradientRadialShading](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/gradientradialshading/set_end/_index.md b/english/cpp/aspose.pdf.drawing/gradientradialshading/set_end/_index.md new file mode 100644 index 0000000000..8645872e98 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/gradientradialshading/set_end/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Drawing::GradientRadialShading::set_End method +linktitle: set_End +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::GradientRadialShading::set_End method. Sets ending circle center point in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.drawing/gradientradialshading/set_end/ +--- +## GradientRadialShading::set_End method + + +Sets ending circle center point. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Drawing::GradientRadialShading::set_End(System::SharedPtr value) +``` + +## See Also + +* Class [Point](../../../aspose.pdf/point/) +* Class [GradientRadialShading](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/gradientradialshading/set_endcolor/_index.md b/english/cpp/aspose.pdf.drawing/gradientradialshading/set_endcolor/_index.md new file mode 100644 index 0000000000..c4ca52603e --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/gradientradialshading/set_endcolor/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Drawing::GradientRadialShading::set_EndColor method +linktitle: set_EndColor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::GradientRadialShading::set_EndColor method. Sets end color in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.drawing/gradientradialshading/set_endcolor/ +--- +## GradientRadialShading::set_EndColor method + + +Sets end color. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Drawing::GradientRadialShading::set_EndColor(System::SharedPtr value) +``` + +## See Also + +* Class [Color](../../../aspose.pdf/color/) +* Class [GradientRadialShading](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/gradientradialshading/set_endingradius/_index.md b/english/cpp/aspose.pdf.drawing/gradientradialshading/set_endingradius/_index.md new file mode 100644 index 0000000000..70a2890ae7 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/gradientradialshading/set_endingradius/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::GradientRadialShading::set_EndingRadius method +linktitle: set_EndingRadius +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::GradientRadialShading::set_EndingRadius method. Sets ending circle radius in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.drawing/gradientradialshading/set_endingradius/ +--- +## GradientRadialShading::set_EndingRadius method + + +Sets ending circle radius. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Drawing::GradientRadialShading::set_EndingRadius(double value) +``` + +## See Also + +* Class [GradientRadialShading](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/gradientradialshading/set_start/_index.md b/english/cpp/aspose.pdf.drawing/gradientradialshading/set_start/_index.md new file mode 100644 index 0000000000..25b41b3eb3 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/gradientradialshading/set_start/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Drawing::GradientRadialShading::set_Start method +linktitle: set_Start +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::GradientRadialShading::set_Start method. Sets starting circle center point in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.drawing/gradientradialshading/set_start/ +--- +## GradientRadialShading::set_Start method + + +Sets starting circle center point. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Drawing::GradientRadialShading::set_Start(System::SharedPtr value) +``` + +## See Also + +* Class [Point](../../../aspose.pdf/point/) +* Class [GradientRadialShading](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/gradientradialshading/set_startcolor/_index.md b/english/cpp/aspose.pdf.drawing/gradientradialshading/set_startcolor/_index.md new file mode 100644 index 0000000000..57e6309596 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/gradientradialshading/set_startcolor/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Drawing::GradientRadialShading::set_StartColor method +linktitle: set_StartColor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::GradientRadialShading::set_StartColor method. Sets start color in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.drawing/gradientradialshading/set_startcolor/ +--- +## GradientRadialShading::set_StartColor method + + +Sets start color. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Drawing::GradientRadialShading::set_StartColor(System::SharedPtr value) +``` + +## See Also + +* Class [Color](../../../aspose.pdf/color/) +* Class [GradientRadialShading](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/gradientradialshading/set_startingradius/_index.md b/english/cpp/aspose.pdf.drawing/gradientradialshading/set_startingradius/_index.md new file mode 100644 index 0000000000..40a7a24a54 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/gradientradialshading/set_startingradius/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::GradientRadialShading::set_StartingRadius method +linktitle: set_StartingRadius +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::GradientRadialShading::set_StartingRadius method. Sets starting circle radius in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.drawing/gradientradialshading/set_startingradius/ +--- +## GradientRadialShading::set_StartingRadius method + + +Sets starting circle radius. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Drawing::GradientRadialShading::set_StartingRadius(double value) +``` + +## See Also + +* Class [GradientRadialShading](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/graph/_index.md b/english/cpp/aspose.pdf.drawing/graph/_index.md new file mode 100644 index 0000000000..ed161adac7 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/graph/_index.md @@ -0,0 +1,67 @@ +--- +title: Aspose::Pdf::Drawing::Graph class +linktitle: Graph +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Graph class. Represents graph - graphics generator paragraph in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.drawing/graph/ +--- +## Graph class + + +Represents graph - graphics generator paragraph. + +```cpp +class Graph : public Aspose::Pdf::BaseParagraph +``` + +## Methods + +| Method | Description | +| --- | --- | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| [Clone](./clone/)() override | Clone the graph. | +| [get_Border](./get_border/)() const | Gets the border. | +| [get_GraphInfo](./get_graphinfo/)() const | Gets a [GraphInfo](../../aspose.pdf/graphinfo/) object that indicates the graph info,such as color, line width,etc. | +| [get_Height](./get_height/)() const | Gets a float value that indicates the graph height. The unit is point. | +| virtual [get_HorizontalAlignment](../../aspose.pdf/baseparagraph/get_horizontalalignment/)() | Gets a horizontal alignment of paragraph. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_IsChangePosition](./get_ischangeposition/)() const | Gets change curret position after process paragraph.(default true) | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_Left](./get_left/)() const | Gets the table left coordinate. | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| [get_Shapes](./get_shapes/)() const | Gets a [Shapes](../) collection that indicates all shapes in the graph. | +| [get_Title](./get_title/)() const | Gets a string value that indicates the title of the graph. | +| [get_Top](./get_top/)() const | Gets the table top coordinate. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| [get_Width](./get_width/)() const | Gets a float value that indicates the graph width. The unit is point. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [Graph](./graph/)(double, double) | Initializes a new instance of the [Graph](./) class. | +| [Graph](./graph/)(float, float) | Initializes a new instance of the [Graph](./) class. | +| [set_Border](./set_border/)(System::SharedPtr\) | Sets the border. | +| [set_GraphInfo](./set_graphinfo/)(System::SharedPtr\) | Sets a [GraphInfo](../../aspose.pdf/graphinfo/) object that indicates the graph info,such as color, line width,etc. | +| [set_Height](./set_height/)(double) | Sets a float value that indicates the graph height. The unit is point. | +| virtual [set_HorizontalAlignment](../../aspose.pdf/baseparagraph/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets a horizontal alignment of paragraph. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_IsChangePosition](./set_ischangeposition/)(bool) | Sets change curret position after process paragraph.(default true) | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_Left](./set_left/)(double) | Sets the table left coordinate. | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| [set_Shapes](./set_shapes/)(System::SharedPtr\\>\>) | Sets a [Shapes](../) collection that indicates all shapes in the graph. | +| [set_Title](./set_title/)(System::SharedPtr\) | Sets a string value that indicates the title of the graph. | +| [set_Top](./set_top/)(double) | Sets the table top coordinate. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| [set_Width](./set_width/)(double) | Sets a float value that indicates the graph width. The unit is point. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +## See Also + +* Class [BaseParagraph](../../aspose.pdf/baseparagraph/) +* Namespace [Aspose::Pdf::Drawing](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.drawing/graph/clone/_index.md b/english/cpp/aspose.pdf.drawing/graph/clone/_index.md new file mode 100644 index 0000000000..94c2df231b --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/graph/clone/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Drawing::Graph::Clone method +linktitle: Clone +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Graph::Clone method. Clone the graph in C++.' +type: docs +weight: 2000 +url: /cpp/aspose.pdf.drawing/graph/clone/ +--- +## Graph::Clone method + + +Clone the graph. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Drawing::Graph::Clone() override +``` + + +### ReturnValue + +The cloned object + +## See Also + +* Class [Graph](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/graph/get_border/_index.md b/english/cpp/aspose.pdf.drawing/graph/get_border/_index.md new file mode 100644 index 0000000000..c1c774532f --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/graph/get_border/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Drawing::Graph::get_Border method +linktitle: get_Border +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Graph::get_Border method. Gets the border in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.drawing/graph/get_border/ +--- +## Graph::get_Border method + + +Gets the border. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Drawing::Graph::get_Border() const +``` + +## See Also + +* Class [BorderInfo](../../../aspose.pdf/borderinfo/) +* Class [Graph](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/graph/get_graphinfo/_index.md b/english/cpp/aspose.pdf.drawing/graph/get_graphinfo/_index.md new file mode 100644 index 0000000000..25f7a6a84b --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/graph/get_graphinfo/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Drawing::Graph::get_GraphInfo method +linktitle: get_GraphInfo +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Graph::get_GraphInfo method. Gets a GraphInfo object that indicates the graph info,such as color, line width,etc in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.drawing/graph/get_graphinfo/ +--- +## Graph::get_GraphInfo method + + +Gets a [GraphInfo](../../../aspose.pdf/graphinfo/) object that indicates the graph info,such as color, line width,etc. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Drawing::Graph::get_GraphInfo() const +``` + +## See Also + +* Class [GraphInfo](../../../aspose.pdf/graphinfo/) +* Class [Graph](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/graph/get_height/_index.md b/english/cpp/aspose.pdf.drawing/graph/get_height/_index.md new file mode 100644 index 0000000000..b98d557fe0 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/graph/get_height/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Graph::get_Height method +linktitle: get_Height +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Graph::get_Height method. Gets a float value that indicates the graph height. The unit is point in C++.' +type: docs +weight: 1700 +url: /cpp/aspose.pdf.drawing/graph/get_height/ +--- +## Graph::get_Height method + + +Gets a float value that indicates the graph height. The unit is point. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Drawing::Graph::get_Height() const +``` + +## See Also + +* Class [Graph](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/graph/get_ischangeposition/_index.md b/english/cpp/aspose.pdf.drawing/graph/get_ischangeposition/_index.md new file mode 100644 index 0000000000..f5bcd0d9db --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/graph/get_ischangeposition/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Graph::get_IsChangePosition method +linktitle: get_IsChangePosition +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Graph::get_IsChangePosition method. Gets change curret position after process paragraph.(default true) in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.drawing/graph/get_ischangeposition/ +--- +## Graph::get_IsChangePosition method + + +Gets change curret position after process paragraph.(default true) + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Drawing::Graph::get_IsChangePosition() const +``` + +## See Also + +* Class [Graph](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/graph/get_left/_index.md b/english/cpp/aspose.pdf.drawing/graph/get_left/_index.md new file mode 100644 index 0000000000..73cdf8bd02 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/graph/get_left/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Graph::get_Left method +linktitle: get_Left +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Graph::get_Left method. Gets the table left coordinate in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.drawing/graph/get_left/ +--- +## Graph::get_Left method + + +Gets the table left coordinate. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Drawing::Graph::get_Left() const +``` + +## See Also + +* Class [Graph](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/graph/get_shapes/_index.md b/english/cpp/aspose.pdf.drawing/graph/get_shapes/_index.md new file mode 100644 index 0000000000..7c673dcecb --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/graph/get_shapes/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Drawing::Graph::get_Shapes method +linktitle: get_Shapes +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Graph::get_Shapes method. Gets a Shapes collection that indicates all shapes in the graph in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.drawing/graph/get_shapes/ +--- +## Graph::get_Shapes method + + +Gets a [Shapes](../) collection that indicates all shapes in the graph. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr>> Aspose::Pdf::Drawing::Graph::get_Shapes() const +``` + +## See Also + +* Class [Shape](../../shape/) +* Class [Graph](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/graph/get_title/_index.md b/english/cpp/aspose.pdf.drawing/graph/get_title/_index.md new file mode 100644 index 0000000000..ae801349fc --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/graph/get_title/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Drawing::Graph::get_Title method +linktitle: get_Title +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Graph::get_Title method. Gets a string value that indicates the title of the graph in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.drawing/graph/get_title/ +--- +## Graph::get_Title method + + +Gets a string value that indicates the title of the graph. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Drawing::Graph::get_Title() const +``` + +## See Also + +* Class [TextFragment](../../../aspose.pdf.text/textfragment/) +* Class [Graph](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/graph/get_top/_index.md b/english/cpp/aspose.pdf.drawing/graph/get_top/_index.md new file mode 100644 index 0000000000..d88f91a451 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/graph/get_top/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Graph::get_Top method +linktitle: get_Top +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Graph::get_Top method. Gets the table top coordinate in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.drawing/graph/get_top/ +--- +## Graph::get_Top method + + +Gets the table top coordinate. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Drawing::Graph::get_Top() const +``` + +## See Also + +* Class [Graph](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/graph/get_width/_index.md b/english/cpp/aspose.pdf.drawing/graph/get_width/_index.md new file mode 100644 index 0000000000..578cffd96d --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/graph/get_width/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Graph::get_Width method +linktitle: get_Width +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Graph::get_Width method. Gets a float value that indicates the graph width. The unit is point in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.drawing/graph/get_width/ +--- +## Graph::get_Width method + + +Gets a float value that indicates the graph width. The unit is point. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Drawing::Graph::get_Width() const +``` + +## See Also + +* Class [Graph](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/graph/graph/_index.md b/english/cpp/aspose.pdf.drawing/graph/graph/_index.md new file mode 100644 index 0000000000..e33ae3cab6 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/graph/graph/_index.md @@ -0,0 +1,94 @@ +--- +title: Aspose::Pdf::Drawing::Graph::Graph constructor +linktitle: Graph +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Graph::Graph constructor. Initializes a new instance of the Graph class in C++.' +type: docs +weight: 1900 +url: /cpp/aspose.pdf.drawing/graph/graph/ +--- +## Graph::Graph(double, double) constructor + + +Initializes a new instance of the [Graph](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Drawing::Graph::Graph(double width, double height) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| width | double | The width of the graph. | +| height | double | The height of the graph. | +## Remarks + + + + + + width + + + The width of the graph. + + + + + height + + + The height of the graph. + + + +## See Also + +* Class [Graph](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) +## Graph::Graph(float, float) constructor + + +Initializes a new instance of the [Graph](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Drawing::Graph::Graph(float width, float height) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| width | float | The width of the graph. | +| height | float | The height of the graph. | +## Remarks + + + + Deprecated + + Constructor is deprecated. Please use constructor with double instead + + + + + width + + + The width of the graph. + + + + + height + + + The height of the graph. + + + +## See Also + +* Class [Graph](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/graph/set_border/_index.md b/english/cpp/aspose.pdf.drawing/graph/set_border/_index.md new file mode 100644 index 0000000000..08f6ee9bbe --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/graph/set_border/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Drawing::Graph::set_Border method +linktitle: set_Border +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Graph::set_Border method. Sets the border in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.drawing/graph/set_border/ +--- +## Graph::set_Border method + + +Sets the border. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Drawing::Graph::set_Border(System::SharedPtr value) +``` + +## See Also + +* Class [BorderInfo](../../../aspose.pdf/borderinfo/) +* Class [Graph](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/graph/set_graphinfo/_index.md b/english/cpp/aspose.pdf.drawing/graph/set_graphinfo/_index.md new file mode 100644 index 0000000000..023b10fbe6 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/graph/set_graphinfo/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Drawing::Graph::set_GraphInfo method +linktitle: set_GraphInfo +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Graph::set_GraphInfo method. Sets a GraphInfo object that indicates the graph info,such as color, line width,etc in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.drawing/graph/set_graphinfo/ +--- +## Graph::set_GraphInfo method + + +Sets a [GraphInfo](../../../aspose.pdf/graphinfo/) object that indicates the graph info,such as color, line width,etc. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Drawing::Graph::set_GraphInfo(System::SharedPtr value) +``` + +## See Also + +* Class [GraphInfo](../../../aspose.pdf/graphinfo/) +* Class [Graph](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/graph/set_height/_index.md b/english/cpp/aspose.pdf.drawing/graph/set_height/_index.md new file mode 100644 index 0000000000..65e8e1e476 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/graph/set_height/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Graph::set_Height method +linktitle: set_Height +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Graph::set_Height method. Sets a float value that indicates the graph height. The unit is point in C++.' +type: docs +weight: 1800 +url: /cpp/aspose.pdf.drawing/graph/set_height/ +--- +## Graph::set_Height method + + +Sets a float value that indicates the graph height. The unit is point. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Drawing::Graph::set_Height(double value) +``` + +## See Also + +* Class [Graph](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/graph/set_ischangeposition/_index.md b/english/cpp/aspose.pdf.drawing/graph/set_ischangeposition/_index.md new file mode 100644 index 0000000000..be23c87387 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/graph/set_ischangeposition/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Graph::set_IsChangePosition method +linktitle: set_IsChangePosition +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Graph::set_IsChangePosition method. Sets change curret position after process paragraph.(default true) in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.drawing/graph/set_ischangeposition/ +--- +## Graph::set_IsChangePosition method + + +Sets change curret position after process paragraph.(default true) + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Drawing::Graph::set_IsChangePosition(bool value) +``` + +## See Also + +* Class [Graph](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/graph/set_left/_index.md b/english/cpp/aspose.pdf.drawing/graph/set_left/_index.md new file mode 100644 index 0000000000..51e6bf6c21 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/graph/set_left/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Graph::set_Left method +linktitle: set_Left +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Graph::set_Left method. Sets the table left coordinate in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.drawing/graph/set_left/ +--- +## Graph::set_Left method + + +Sets the table left coordinate. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Drawing::Graph::set_Left(double value) +``` + +## See Also + +* Class [Graph](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/graph/set_shapes/_index.md b/english/cpp/aspose.pdf.drawing/graph/set_shapes/_index.md new file mode 100644 index 0000000000..2955c24205 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/graph/set_shapes/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Drawing::Graph::set_Shapes method +linktitle: set_Shapes +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Graph::set_Shapes method. Sets a Shapes collection that indicates all shapes in the graph in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.drawing/graph/set_shapes/ +--- +## Graph::set_Shapes method + + +Sets a [Shapes](../) collection that indicates all shapes in the graph. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Drawing::Graph::set_Shapes(System::SharedPtr>> value) +``` + +## See Also + +* Class [Shape](../../shape/) +* Class [Graph](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/graph/set_title/_index.md b/english/cpp/aspose.pdf.drawing/graph/set_title/_index.md new file mode 100644 index 0000000000..9c9c405709 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/graph/set_title/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Drawing::Graph::set_Title method +linktitle: set_Title +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Graph::set_Title method. Sets a string value that indicates the title of the graph in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.drawing/graph/set_title/ +--- +## Graph::set_Title method + + +Sets a string value that indicates the title of the graph. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Drawing::Graph::set_Title(System::SharedPtr value) +``` + +## See Also + +* Class [TextFragment](../../../aspose.pdf.text/textfragment/) +* Class [Graph](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/graph/set_top/_index.md b/english/cpp/aspose.pdf.drawing/graph/set_top/_index.md new file mode 100644 index 0000000000..5131f6de5c --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/graph/set_top/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Graph::set_Top method +linktitle: set_Top +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Graph::set_Top method. Sets the table top coordinate in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.drawing/graph/set_top/ +--- +## Graph::set_Top method + + +Sets the table top coordinate. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Drawing::Graph::set_Top(double value) +``` + +## See Also + +* Class [Graph](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/graph/set_width/_index.md b/english/cpp/aspose.pdf.drawing/graph/set_width/_index.md new file mode 100644 index 0000000000..b85ae2000d --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/graph/set_width/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Graph::set_Width method +linktitle: set_Width +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Graph::set_Width method. Sets a float value that indicates the graph width. The unit is point in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf.drawing/graph/set_width/ +--- +## Graph::set_Width method + + +Sets a float value that indicates the graph width. The unit is point. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Drawing::Graph::set_Width(double value) +``` + +## See Also + +* Class [Graph](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/imageformat/_index.md b/english/cpp/aspose.pdf.drawing/imageformat/_index.md new file mode 100644 index 0000000000..575ec1823d --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/imageformat/_index.md @@ -0,0 +1,37 @@ +--- +title: Aspose::Pdf::Drawing::ImageFormat enum +linktitle: ImageFormat +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::ImageFormat enum. This enum represents image formats in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.drawing/imageformat/ +--- +## ImageFormat enum + + +This enum represents image formats. + +```cpp +enum class ImageFormat +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Bmp | 0 | BMP format. | +| Jpeg | 1 | JPEG format. | +| Gif | 2 | GIF format. | +| Png | 3 | PNG format. | +| Tiff | 4 | TIFF format. | +| Emf | 5 | EMF format. | +| Dicom | 6 | DICOM format. | +| MemoryBmp | 7 | MemoryBmp format. | +| Wmf | 8 | Wmf format. | +| Exif | 9 | Exif format. | + +## See Also + +* Namespace [Aspose::Pdf::Drawing](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.drawing/line/_index.md b/english/cpp/aspose.pdf.drawing/line/_index.md new file mode 100644 index 0000000000..8a6b5ae518 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/line/_index.md @@ -0,0 +1,35 @@ +--- +title: Aspose::Pdf::Drawing::Line class +linktitle: Line +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Line class. Represents line in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.drawing/line/ +--- +## Line class + + +Represents line. + +```cpp +class Line : public Aspose::Pdf::Drawing::Shape +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_GraphInfo](../shape/get_graphinfo/)() const | Gets a [GraphInfo](../../aspose.pdf/graphinfo/) object that indicates the graph info,such as color, line width,etc. | +| [get_PositionArray](./get_positionarray/)() const | Gets a [PositionArray](../) object that indicates the position array.The array is composed by coordinates of each control point of the line. directly. | +| [get_Text](../shape/get_text/)() const | Gets a text for shape. | +| [Line](./line/)(System::ArrayPtr\) | Initializes a new instance of the [Line](./) class. | +| [set_GraphInfo](../shape/set_graphinfo/)(System::SharedPtr\) | Sets a [GraphInfo](../../aspose.pdf/graphinfo/) object that indicates the graph info,such as color, line width,etc. | +| [set_PositionArray](./set_positionarray/)(System::ArrayPtr\) | Sets a [PositionArray](../) object that indicates the position array.The array is composed by coordinates of each control point of the line. directly. | +| [set_Text](../shape/set_text/)(System::SharedPtr\) | Sets a text for shape. | +| [Shape](../shape/shape/)() | | +## See Also + +* Class [Shape](../shape/) +* Namespace [Aspose::Pdf::Drawing](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.drawing/line/get_positionarray/_index.md b/english/cpp/aspose.pdf.drawing/line/get_positionarray/_index.md new file mode 100644 index 0000000000..649acf7afa --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/line/get_positionarray/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Line::get_PositionArray method +linktitle: get_PositionArray +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Line::get_PositionArray method. Gets a PositionArray object that indicates the position array.The array is composed by coordinates of each control point of the line. directly in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.drawing/line/get_positionarray/ +--- +## Line::get_PositionArray method + + +Gets a [PositionArray](../) object that indicates the position array.The array is composed by coordinates of each control point of the line. directly. + +```cpp +ASPOSE_PDF_SHARED_API System::ArrayPtr Aspose::Pdf::Drawing::Line::get_PositionArray() const +``` + +## See Also + +* Class [Line](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/line/line/_index.md b/english/cpp/aspose.pdf.drawing/line/line/_index.md new file mode 100644 index 0000000000..fc216e83ba --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/line/line/_index.md @@ -0,0 +1,40 @@ +--- +title: Aspose::Pdf::Drawing::Line::Line constructor +linktitle: Line +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Line::Line constructor. Initializes a new instance of the Line class in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.drawing/line/line/ +--- +## Line::Line constructor + + +Initializes a new instance of the [Line](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Drawing::Line::Line(System::ArrayPtr positionArray) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| positionArray | System::ArrayPtr\ | The line position array. | +## Remarks + + + + + + positionArray + + + The line position array. + + + +## See Also + +* Class [Line](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/line/set_positionarray/_index.md b/english/cpp/aspose.pdf.drawing/line/set_positionarray/_index.md new file mode 100644 index 0000000000..b5c115b391 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/line/set_positionarray/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Line::set_PositionArray method +linktitle: set_PositionArray +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Line::set_PositionArray method. Sets a PositionArray object that indicates the position array.The array is composed by coordinates of each control point of the line. directly in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.drawing/line/set_positionarray/ +--- +## Line::set_PositionArray method + + +Sets a [PositionArray](../) object that indicates the position array.The array is composed by coordinates of each control point of the line. directly. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Drawing::Line::set_PositionArray(System::ArrayPtr value) +``` + +## See Also + +* Class [Line](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/path/_index.md b/english/cpp/aspose.pdf.drawing/path/_index.md new file mode 100644 index 0000000000..4c38b1679e --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/path/_index.md @@ -0,0 +1,35 @@ +--- +title: Aspose::Pdf::Drawing::Path class +linktitle: Path +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Path class. Represents arc in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.drawing/path/ +--- +## Path class + + +Represents arc. + +```cpp +class Path : public Aspose::Pdf::Drawing::Shape +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_GraphInfo](../shape/get_graphinfo/)() const | Gets a [GraphInfo](../../aspose.pdf/graphinfo/) object that indicates the graph info,such as color, line width,etc. | +| [get_Shapes](./get_shapes/)() const | Gets shapes collection. | +| [get_Text](../shape/get_text/)() const | Gets a text for shape. | +| [Path](./path/)(System::ArrayPtr\\>) | Initializes a new instance of the [Path](./) class. | +| [Path](./path/)() | Initializes a new instance of the [Path](./) class. | +| [set_GraphInfo](../shape/set_graphinfo/)(System::SharedPtr\) | Sets a [GraphInfo](../../aspose.pdf/graphinfo/) object that indicates the graph info,such as color, line width,etc. | +| [set_Text](../shape/set_text/)(System::SharedPtr\) | Sets a text for shape. | +| [Shape](../shape/shape/)() | | +## See Also + +* Class [Shape](../shape/) +* Namespace [Aspose::Pdf::Drawing](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.drawing/path/get_shapes/_index.md b/english/cpp/aspose.pdf.drawing/path/get_shapes/_index.md new file mode 100644 index 0000000000..d07fe7f42b --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/path/get_shapes/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Drawing::Path::get_Shapes method +linktitle: get_Shapes +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Path::get_Shapes method. Gets shapes collection in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.drawing/path/get_shapes/ +--- +## Path::get_Shapes method + + +Gets shapes collection. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr>> Aspose::Pdf::Drawing::Path::get_Shapes() const +``` + +## See Also + +* Class [Shape](../../shape/) +* Class [Path](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/path/path/_index.md b/english/cpp/aspose.pdf.drawing/path/path/_index.md new file mode 100644 index 0000000000..ac151fe318 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/path/path/_index.md @@ -0,0 +1,55 @@ +--- +title: Aspose::Pdf::Drawing::Path::Path constructor +linktitle: Path +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Path::Path constructor. Initializes a new instance of the Path class in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.drawing/path/path/ +--- +## Path::Path(System::ArrayPtr\\>) constructor + + +Initializes a new instance of the [Path](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Drawing::Path::Path(System::ArrayPtr> shapes) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| shapes | System::ArrayPtr\\> | The shape array contains path segments set. | +## Remarks + + + + + + shapes + + + The shape array contains path segments set. + + + +## See Also + +* Class [Shape](../../shape/) +* Class [Path](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) +## Path::Path() constructor + + +Initializes a new instance of the [Path](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Drawing::Path::Path() +``` + +## See Also + +* Class [Path](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/patterncolorspace/_index.md b/english/cpp/aspose.pdf.drawing/patterncolorspace/_index.md new file mode 100644 index 0000000000..3492d14c34 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/patterncolorspace/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Drawing::PatternColorSpace class +linktitle: PatternColorSpace +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::PatternColorSpace class. Represents base pattern class in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.drawing/patterncolorspace/ +--- +## PatternColorSpace class + + +Represents base pattern class. + +```cpp +class PatternColorSpace : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [PatternColorSpace](./patterncolorspace/)() | | +## See Also + +* Namespace [Aspose::Pdf::Drawing](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.drawing/patterncolorspace/patterncolorspace/_index.md b/english/cpp/aspose.pdf.drawing/patterncolorspace/patterncolorspace/_index.md new file mode 100644 index 0000000000..963967592d --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/patterncolorspace/patterncolorspace/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::PatternColorSpace::PatternColorSpace constructor +linktitle: PatternColorSpace +second_title: Aspose.PDF for C++ API Reference +description: 'How to use PatternColorSpace constructor of Aspose::Pdf::Drawing::PatternColorSpace class in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.drawing/patterncolorspace/patterncolorspace/ +--- +## PatternColorSpace::PatternColorSpace constructor + + + + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Drawing::PatternColorSpace::PatternColorSpace() +``` + +## See Also + +* Class [PatternColorSpace](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/rectangle/_index.md b/english/cpp/aspose.pdf.drawing/rectangle/_index.md new file mode 100644 index 0000000000..6eabb88127 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/rectangle/_index.md @@ -0,0 +1,43 @@ +--- +title: Aspose::Pdf::Drawing::Rectangle class +linktitle: Rectangle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Rectangle class. Represents rectangle in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.drawing/rectangle/ +--- +## Rectangle class + + +Represents rectangle. + +```cpp +class Rectangle : public Aspose::Pdf::Drawing::Shape +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_Bottom](./get_bottom/)() const | Gets a float value that indicates the bottom position of the rectangle. | +| [get_GraphInfo](../shape/get_graphinfo/)() const | Gets a [GraphInfo](../../aspose.pdf/graphinfo/) object that indicates the graph info,such as color, line width,etc. | +| [get_Height](./get_height/)() const | Gets a float value that indicates the height of the rectangle. | +| [get_Left](./get_left/)() const | Gets a float value that indicates the left position of the rectangle. | +| [get_RoundedCornerRadius](./get_roundedcornerradius/)() const | Gets a float value that indicates the radius of rectangle corners. | +| [get_Text](../shape/get_text/)() const | Gets a text for shape. | +| [get_Width](./get_width/)() const | Gets a float value that indicates the width of the rectangle. | +| [Rectangle](./rectangle/)(float, float, float, float) | Initializes a new instance of the [Rectangle](./) class. | +| [set_Bottom](./set_bottom/)(double) | Sets a float value that indicates the bottom position of the rectangle. | +| [set_GraphInfo](../shape/set_graphinfo/)(System::SharedPtr\) | Sets a [GraphInfo](../../aspose.pdf/graphinfo/) object that indicates the graph info,such as color, line width,etc. | +| [set_Height](./set_height/)(double) | Sets a float value that indicates the height of the rectangle. | +| [set_Left](./set_left/)(double) | Sets a float value that indicates the left position of the rectangle. | +| [set_RoundedCornerRadius](./set_roundedcornerradius/)(double) | Sets a float value that indicates the radius of rectangle corners. | +| [set_Text](../shape/set_text/)(System::SharedPtr\) | Sets a text for shape. | +| [set_Width](./set_width/)(double) | Sets a float value that indicates the width of the rectangle. | +| [Shape](../shape/shape/)() | | +## See Also + +* Class [Shape](../shape/) +* Namespace [Aspose::Pdf::Drawing](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.drawing/rectangle/get_bottom/_index.md b/english/cpp/aspose.pdf.drawing/rectangle/get_bottom/_index.md new file mode 100644 index 0000000000..841bf1990e --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/rectangle/get_bottom/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Rectangle::get_Bottom method +linktitle: get_Bottom +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Rectangle::get_Bottom method. Gets a float value that indicates the bottom position of the rectangle in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.drawing/rectangle/get_bottom/ +--- +## Rectangle::get_Bottom method + + +Gets a float value that indicates the bottom position of the rectangle. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Drawing::Rectangle::get_Bottom() const +``` + +## See Also + +* Class [Rectangle](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/rectangle/get_height/_index.md b/english/cpp/aspose.pdf.drawing/rectangle/get_height/_index.md new file mode 100644 index 0000000000..2a1cb6b51d --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/rectangle/get_height/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Rectangle::get_Height method +linktitle: get_Height +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Rectangle::get_Height method. Gets a float value that indicates the height of the rectangle in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.drawing/rectangle/get_height/ +--- +## Rectangle::get_Height method + + +Gets a float value that indicates the height of the rectangle. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Drawing::Rectangle::get_Height() const +``` + +## See Also + +* Class [Rectangle](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/rectangle/get_left/_index.md b/english/cpp/aspose.pdf.drawing/rectangle/get_left/_index.md new file mode 100644 index 0000000000..4889fbbf06 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/rectangle/get_left/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Rectangle::get_Left method +linktitle: get_Left +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Rectangle::get_Left method. Gets a float value that indicates the left position of the rectangle in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.drawing/rectangle/get_left/ +--- +## Rectangle::get_Left method + + +Gets a float value that indicates the left position of the rectangle. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Drawing::Rectangle::get_Left() const +``` + +## See Also + +* Class [Rectangle](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/rectangle/get_roundedcornerradius/_index.md b/english/cpp/aspose.pdf.drawing/rectangle/get_roundedcornerradius/_index.md new file mode 100644 index 0000000000..08513c74d4 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/rectangle/get_roundedcornerradius/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Rectangle::get_RoundedCornerRadius method +linktitle: get_RoundedCornerRadius +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Rectangle::get_RoundedCornerRadius method. Gets a float value that indicates the radius of rectangle corners in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.drawing/rectangle/get_roundedcornerradius/ +--- +## Rectangle::get_RoundedCornerRadius method + + +Gets a float value that indicates the radius of rectangle corners. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Drawing::Rectangle::get_RoundedCornerRadius() const +``` + +## See Also + +* Class [Rectangle](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/rectangle/get_width/_index.md b/english/cpp/aspose.pdf.drawing/rectangle/get_width/_index.md new file mode 100644 index 0000000000..5b67ee9b42 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/rectangle/get_width/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Rectangle::get_Width method +linktitle: get_Width +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Rectangle::get_Width method. Gets a float value that indicates the width of the rectangle in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.drawing/rectangle/get_width/ +--- +## Rectangle::get_Width method + + +Gets a float value that indicates the width of the rectangle. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Drawing::Rectangle::get_Width() const +``` + +## See Also + +* Class [Rectangle](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/rectangle/rectangle/_index.md b/english/cpp/aspose.pdf.drawing/rectangle/rectangle/_index.md new file mode 100644 index 0000000000..0de457c065 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/rectangle/rectangle/_index.md @@ -0,0 +1,67 @@ +--- +title: Aspose::Pdf::Drawing::Rectangle::Rectangle constructor +linktitle: Rectangle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Rectangle::Rectangle constructor. Initializes a new instance of the Rectangle class in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.drawing/rectangle/rectangle/ +--- +## Rectangle::Rectangle constructor + + +Initializes a new instance of the [Rectangle](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Drawing::Rectangle::Rectangle(float left, float bottom, float width, float height) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| left | float | The left position of the rectangle. | +| bottom | float | The bottom position of the rectangle. | +| width | float | The width of the rectangle. | +| height | float | The height of the rectangle. | +## Remarks + + + + + + left + + + The left position of the rectangle. + + + + + bottom + + + The bottom position of the rectangle. + + + + + width + + + The width of the rectangle. + + + + + height + + + The height of the rectangle. + + + +## See Also + +* Class [Rectangle](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/rectangle/set_bottom/_index.md b/english/cpp/aspose.pdf.drawing/rectangle/set_bottom/_index.md new file mode 100644 index 0000000000..dc05ea34b4 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/rectangle/set_bottom/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Rectangle::set_Bottom method +linktitle: set_Bottom +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Rectangle::set_Bottom method. Sets a float value that indicates the bottom position of the rectangle in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.drawing/rectangle/set_bottom/ +--- +## Rectangle::set_Bottom method + + +Sets a float value that indicates the bottom position of the rectangle. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Drawing::Rectangle::set_Bottom(double value) +``` + +## See Also + +* Class [Rectangle](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/rectangle/set_height/_index.md b/english/cpp/aspose.pdf.drawing/rectangle/set_height/_index.md new file mode 100644 index 0000000000..15dcd9529f --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/rectangle/set_height/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Rectangle::set_Height method +linktitle: set_Height +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Rectangle::set_Height method. Sets a float value that indicates the height of the rectangle in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.drawing/rectangle/set_height/ +--- +## Rectangle::set_Height method + + +Sets a float value that indicates the height of the rectangle. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Drawing::Rectangle::set_Height(double value) +``` + +## See Also + +* Class [Rectangle](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/rectangle/set_left/_index.md b/english/cpp/aspose.pdf.drawing/rectangle/set_left/_index.md new file mode 100644 index 0000000000..6dc383ae83 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/rectangle/set_left/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Rectangle::set_Left method +linktitle: set_Left +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Rectangle::set_Left method. Sets a float value that indicates the left position of the rectangle in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.drawing/rectangle/set_left/ +--- +## Rectangle::set_Left method + + +Sets a float value that indicates the left position of the rectangle. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Drawing::Rectangle::set_Left(double value) +``` + +## See Also + +* Class [Rectangle](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/rectangle/set_roundedcornerradius/_index.md b/english/cpp/aspose.pdf.drawing/rectangle/set_roundedcornerradius/_index.md new file mode 100644 index 0000000000..1f7fbee8f3 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/rectangle/set_roundedcornerradius/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Rectangle::set_RoundedCornerRadius method +linktitle: set_RoundedCornerRadius +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Rectangle::set_RoundedCornerRadius method. Sets a float value that indicates the radius of rectangle corners in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.drawing/rectangle/set_roundedcornerradius/ +--- +## Rectangle::set_RoundedCornerRadius method + + +Sets a float value that indicates the radius of rectangle corners. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Drawing::Rectangle::set_RoundedCornerRadius(double value) +``` + +## See Also + +* Class [Rectangle](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/rectangle/set_width/_index.md b/english/cpp/aspose.pdf.drawing/rectangle/set_width/_index.md new file mode 100644 index 0000000000..cb08f9ad8d --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/rectangle/set_width/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Rectangle::set_Width method +linktitle: set_Width +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Rectangle::set_Width method. Sets a float value that indicates the width of the rectangle in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.drawing/rectangle/set_width/ +--- +## Rectangle::set_Width method + + +Sets a float value that indicates the width of the rectangle. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Drawing::Rectangle::set_Width(double value) +``` + +## See Also + +* Class [Rectangle](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/shape/_index.md b/english/cpp/aspose.pdf.drawing/shape/_index.md new file mode 100644 index 0000000000..bf94ef650e --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/shape/_index.md @@ -0,0 +1,31 @@ +--- +title: Aspose::Pdf::Drawing::Shape class +linktitle: Shape +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Shape class. Represents shape - the base graphics object in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.drawing/shape/ +--- +## Shape class + + +Represents shape - the base graphics object. + +```cpp +class Shape : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_GraphInfo](./get_graphinfo/)() const | Gets a [GraphInfo](../../aspose.pdf/graphinfo/) object that indicates the graph info,such as color, line width,etc. | +| [get_Text](./get_text/)() const | Gets a text for shape. | +| [set_GraphInfo](./set_graphinfo/)(System::SharedPtr\) | Sets a [GraphInfo](../../aspose.pdf/graphinfo/) object that indicates the graph info,such as color, line width,etc. | +| [set_Text](./set_text/)(System::SharedPtr\) | Sets a text for shape. | +| [Shape](./shape/)() | | +## See Also + +* Namespace [Aspose::Pdf::Drawing](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.drawing/shape/get_graphinfo/_index.md b/english/cpp/aspose.pdf.drawing/shape/get_graphinfo/_index.md new file mode 100644 index 0000000000..b474973629 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/shape/get_graphinfo/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Drawing::Shape::get_GraphInfo method +linktitle: get_GraphInfo +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Shape::get_GraphInfo method. Gets a GraphInfo object that indicates the graph info,such as color, line width,etc in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.drawing/shape/get_graphinfo/ +--- +## Shape::get_GraphInfo method + + +Gets a [GraphInfo](../../../aspose.pdf/graphinfo/) object that indicates the graph info,such as color, line width,etc. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Drawing::Shape::get_GraphInfo() const +``` + +## See Also + +* Class [GraphInfo](../../../aspose.pdf/graphinfo/) +* Class [Shape](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/shape/get_text/_index.md b/english/cpp/aspose.pdf.drawing/shape/get_text/_index.md new file mode 100644 index 0000000000..1aa04c7180 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/shape/get_text/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Drawing::Shape::get_Text method +linktitle: get_Text +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Shape::get_Text method. Gets a text for shape in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.drawing/shape/get_text/ +--- +## Shape::get_Text method + + +Gets a text for shape. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Drawing::Shape::get_Text() const +``` + +## See Also + +* Class [TextFragment](../../../aspose.pdf.text/textfragment/) +* Class [Shape](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/shape/set_graphinfo/_index.md b/english/cpp/aspose.pdf.drawing/shape/set_graphinfo/_index.md new file mode 100644 index 0000000000..f14c17a542 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/shape/set_graphinfo/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Drawing::Shape::set_GraphInfo method +linktitle: set_GraphInfo +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Shape::set_GraphInfo method. Sets a GraphInfo object that indicates the graph info,such as color, line width,etc in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.drawing/shape/set_graphinfo/ +--- +## Shape::set_GraphInfo method + + +Sets a [GraphInfo](../../../aspose.pdf/graphinfo/) object that indicates the graph info,such as color, line width,etc. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Drawing::Shape::set_GraphInfo(System::SharedPtr value) +``` + +## See Also + +* Class [GraphInfo](../../../aspose.pdf/graphinfo/) +* Class [Shape](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/shape/set_text/_index.md b/english/cpp/aspose.pdf.drawing/shape/set_text/_index.md new file mode 100644 index 0000000000..4e553201fa --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/shape/set_text/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Drawing::Shape::set_Text method +linktitle: set_Text +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Drawing::Shape::set_Text method. Sets a text for shape in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.drawing/shape/set_text/ +--- +## Shape::set_Text method + + +Sets a text for shape. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Drawing::Shape::set_Text(System::SharedPtr value) +``` + +## See Also + +* Class [TextFragment](../../../aspose.pdf.text/textfragment/) +* Class [Shape](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.drawing/shape/shape/_index.md b/english/cpp/aspose.pdf.drawing/shape/shape/_index.md new file mode 100644 index 0000000000..7a07a119e6 --- /dev/null +++ b/english/cpp/aspose.pdf.drawing/shape/shape/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Drawing::Shape::Shape constructor +linktitle: Shape +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Shape constructor of Aspose::Pdf::Drawing::Shape class in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.drawing/shape/shape/ +--- +## Shape::Shape constructor + + + + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Drawing::Shape::Shape() +``` + +## See Also + +* Class [Shape](../) +* Namespace [Aspose::Pdf::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.engine.commondata.text.cmaps/_index.md b/english/cpp/aspose.pdf.engine.commondata.text.cmaps/_index.md new file mode 100644 index 0000000000..d3c4e9ef81 --- /dev/null +++ b/english/cpp/aspose.pdf.engine.commondata.text.cmaps/_index.md @@ -0,0 +1,17 @@ +--- +title: Aspose::Pdf::Engine::CommonData::Text::CMaps namespace +linktitle: Aspose::Pdf::Engine::CommonData::Text::CMaps +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Engine::CommonData::Text::CMaps namespace in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.engine.commondata.text.cmaps/ +--- + + + +## Classes + +| Class | Description | +| --- | --- | +| [ICMapCodeSpaceRange](./icmapcodespacerange/) | Declares a functionality for codespace ranges used by all [CMaps](./). | diff --git a/english/cpp/aspose.pdf.engine.commondata.text.cmaps/icmapcodespacerange/_index.md b/english/cpp/aspose.pdf.engine.commondata.text.cmaps/icmapcodespacerange/_index.md new file mode 100644 index 0000000000..07aa650b84 --- /dev/null +++ b/english/cpp/aspose.pdf.engine.commondata.text.cmaps/icmapcodespacerange/_index.md @@ -0,0 +1,33 @@ +--- +title: Aspose::Pdf::Engine::CommonData::Text::CMaps::ICMapCodeSpaceRange class +linktitle: ICMapCodeSpaceRange +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Engine::CommonData::Text::CMaps::ICMapCodeSpaceRange class. Declares a functionality for codespace ranges used by all CMaps in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.engine.commondata.text.cmaps/icmapcodespacerange/ +--- +## ICMapCodeSpaceRange class + + +Declares a functionality for codespace ranges used by all [CMaps](../). + +```cpp +class ICMapCodeSpaceRange : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| virtual [GetAllBytes](./getallbytes/)(System::Details::ArrayView\, System::Details::ArrayView\) | Gets codespace range data - all start and end bytes. | +| virtual [GetSize](./getsize/)() | Returns size for codespace range. | +| virtual [HasPartialMatch](./haspartialmatch/)(System::ArrayPtr\, int32_t) | Detects is the passed raw code represented in byte array form has a partial match with CMap's codespace ranges - partial match means that first element(s) in array is in range(s) but all the raw code bytes are not fully in any range. | +| virtual [IsInRange](./isinrange/)(uint8_t) | Detects is passed code belongs to codespace range. | +| virtual [IsInRange](./isinrange/)(System::ArrayPtr\, int32_t) | Detects is passed code, represented as array of bytes belongs to codespace range. | +| virtual [IsInRange](./isinrange/)(char16_t) | Detects is passed code belongs to codespace range. | +| virtual [IsInRange](./isinrange/)(System::ArrayPtr\, int32_t) | Detects is passed code, represented as array of chars belongs to codespace range. | +## See Also + +* Namespace [Aspose::Pdf::Engine::CommonData::Text::CMaps](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.engine.commondata.text.cmaps/icmapcodespacerange/getallbytes/_index.md b/english/cpp/aspose.pdf.engine.commondata.text.cmaps/icmapcodespacerange/getallbytes/_index.md new file mode 100644 index 0000000000..14a12a01a5 --- /dev/null +++ b/english/cpp/aspose.pdf.engine.commondata.text.cmaps/icmapcodespacerange/getallbytes/_index.md @@ -0,0 +1,45 @@ +--- +title: Aspose::Pdf::Engine::CommonData::Text::CMaps::ICMapCodeSpaceRange::GetAllBytes method +linktitle: GetAllBytes +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Engine::CommonData::Text::CMaps::ICMapCodeSpaceRange::GetAllBytes method. Gets codespace range data - all start and end bytes in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.engine.commondata.text.cmaps/icmapcodespacerange/getallbytes/ +--- +## ICMapCodeSpaceRange::GetAllBytes method + + +Gets codespace range data - all start and end bytes. + +```cpp +virtual void Aspose::Pdf::Engine::CommonData::Text::CMaps::ICMapCodeSpaceRange::GetAllBytes(System::Details::ArrayView start, System::Details::ArrayView end)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| start | System::Details::ArrayView\ | | +| end | System::Details::ArrayView\ | | +## Remarks + + + + + + start + + + + + + end + + + + +## See Also + +* Class [ICMapCodeSpaceRange](../) +* Namespace [Aspose::Pdf::Engine::CommonData::Text::CMaps](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.engine.commondata.text.cmaps/icmapcodespacerange/getsize/_index.md b/english/cpp/aspose.pdf.engine.commondata.text.cmaps/icmapcodespacerange/getsize/_index.md new file mode 100644 index 0000000000..b0a11c2eb1 --- /dev/null +++ b/english/cpp/aspose.pdf.engine.commondata.text.cmaps/icmapcodespacerange/getsize/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Engine::CommonData::Text::CMaps::ICMapCodeSpaceRange::GetSize method +linktitle: GetSize +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Engine::CommonData::Text::CMaps::ICMapCodeSpaceRange::GetSize method. Returns size for codespace range in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.engine.commondata.text.cmaps/icmapcodespacerange/getsize/ +--- +## ICMapCodeSpaceRange::GetSize method + + +Returns size for codespace range. + +```cpp +virtual int32_t Aspose::Pdf::Engine::CommonData::Text::CMaps::ICMapCodeSpaceRange::GetSize()=0 +``` + + +### ReturnValue + + + +## See Also + +* Class [ICMapCodeSpaceRange](../) +* Namespace [Aspose::Pdf::Engine::CommonData::Text::CMaps](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.engine.commondata.text.cmaps/icmapcodespacerange/haspartialmatch/_index.md b/english/cpp/aspose.pdf.engine.commondata.text.cmaps/icmapcodespacerange/haspartialmatch/_index.md new file mode 100644 index 0000000000..b7f7821ed9 --- /dev/null +++ b/english/cpp/aspose.pdf.engine.commondata.text.cmaps/icmapcodespacerange/haspartialmatch/_index.md @@ -0,0 +1,53 @@ +--- +title: Aspose::Pdf::Engine::CommonData::Text::CMaps::ICMapCodeSpaceRange::HasPartialMatch method +linktitle: HasPartialMatch +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Engine::CommonData::Text::CMaps::ICMapCodeSpaceRange::HasPartialMatch method. Detects is the passed raw code represented in byte array form has a partial match with CMap''s codespace ranges - partial match means that first element(s) in array is in range(s) but all the raw code bytes are not fully in any range in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.engine.commondata.text.cmaps/icmapcodespacerange/haspartialmatch/ +--- +## ICMapCodeSpaceRange::HasPartialMatch method + + +Detects is the passed raw code represented in byte array form has a partial match with CMap's codespace ranges - partial match means that first element(s) in array is in range(s) but all the raw code bytes are not fully in any range. + +```cpp +virtual bool Aspose::Pdf::Engine::CommonData::Text::CMaps::ICMapCodeSpaceRange::HasPartialMatch(System::ArrayPtr values, int32_t size)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| values | System::ArrayPtr\ | raw code in a byte array form | +| size | int32_t | count of bytes in byte array | + +### ReturnValue + +true/false +## Remarks + + + + + + values + + + raw code in a byte array form + + + + + size + + + count of bytes in byte array + + + +## See Also + +* Class [ICMapCodeSpaceRange](../) +* Namespace [Aspose::Pdf::Engine::CommonData::Text::CMaps](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.engine.commondata.text.cmaps/icmapcodespacerange/isinrange/_index.md b/english/cpp/aspose.pdf.engine.commondata.text.cmaps/icmapcodespacerange/isinrange/_index.md new file mode 100644 index 0000000000..b8025987fb --- /dev/null +++ b/english/cpp/aspose.pdf.engine.commondata.text.cmaps/icmapcodespacerange/isinrange/_index.md @@ -0,0 +1,167 @@ +--- +title: Aspose::Pdf::Engine::CommonData::Text::CMaps::ICMapCodeSpaceRange::IsInRange method +linktitle: IsInRange +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Engine::CommonData::Text::CMaps::ICMapCodeSpaceRange::IsInRange method. Detects is passed code belongs to codespace range in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.engine.commondata.text.cmaps/icmapcodespacerange/isinrange/ +--- +## ICMapCodeSpaceRange::IsInRange(uint8_t) method + + +Detects is passed code belongs to codespace range. + +```cpp +virtual bool Aspose::Pdf::Engine::CommonData::Text::CMaps::ICMapCodeSpaceRange::IsInRange(uint8_t value)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| value | uint8_t | byte to check | + +### ReturnValue + +true/false +## Remarks + + + + + + value + + + byte to check + + + +## See Also + +* Class [ICMapCodeSpaceRange](../) +* Namespace [Aspose::Pdf::Engine::CommonData::Text::CMaps](../../) +* Library [Aspose.PDF for C++](../../../) +## ICMapCodeSpaceRange::IsInRange(System::ArrayPtr\, int32_t) method + + +Detects is passed code, represented as array of bytes belongs to codespace range. + +```cpp +virtual bool Aspose::Pdf::Engine::CommonData::Text::CMaps::ICMapCodeSpaceRange::IsInRange(System::ArrayPtr values, int32_t length)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| values | System::ArrayPtr\ | bytes to check | +| length | int32_t | count of bytes in a checked byte array | + +### ReturnValue + +true/false +## Remarks + + + + + + values + + + bytes to check + + + + + length + + + count of bytes in a checked byte array + + + +## See Also + +* Class [ICMapCodeSpaceRange](../) +* Namespace [Aspose::Pdf::Engine::CommonData::Text::CMaps](../../) +* Library [Aspose.PDF for C++](../../../) +## ICMapCodeSpaceRange::IsInRange(char16_t) method + + +Detects is passed code belongs to codespace range. + +```cpp +virtual bool Aspose::Pdf::Engine::CommonData::Text::CMaps::ICMapCodeSpaceRange::IsInRange(char16_t value)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| value | char16_t | byte to check | + +### ReturnValue + +true/false +## Remarks + + + + + + value + + + byte to check + + + +## See Also + +* Class [ICMapCodeSpaceRange](../) +* Namespace [Aspose::Pdf::Engine::CommonData::Text::CMaps](../../) +* Library [Aspose.PDF for C++](../../../) +## ICMapCodeSpaceRange::IsInRange(System::ArrayPtr\, int32_t) method + + +Detects is passed code, represented as array of chars belongs to codespace range. + +```cpp +virtual bool Aspose::Pdf::Engine::CommonData::Text::CMaps::ICMapCodeSpaceRange::IsInRange(System::ArrayPtr values, int32_t length)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| values | System::ArrayPtr\ | chars to check | +| length | int32_t | count of bytes in a checked char array | + +### ReturnValue + +true/false +## Remarks + + + + + + values + + + chars to check + + + + + length + + + count of bytes in a checked char array + + + +## See Also + +* Class [ICMapCodeSpaceRange](../) +* Namespace [Aspose::Pdf::Engine::CommonData::Text::CMaps](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.engine.commondata.text.fonts.utilities/_index.md b/english/cpp/aspose.pdf.engine.commondata.text.fonts.utilities/_index.md new file mode 100644 index 0000000000..e712339307 --- /dev/null +++ b/english/cpp/aspose.pdf.engine.commondata.text.fonts.utilities/_index.md @@ -0,0 +1,17 @@ +--- +title: Aspose::Pdf::Engine::CommonData::Text::Fonts::Utilities namespace +linktitle: Aspose::Pdf::Engine::CommonData::Text::Fonts::Utilities +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Engine::CommonData::Text::Fonts::Utilities namespace in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.engine.commondata.text.fonts.utilities/ +--- + + + +## Classes + +| Class | Description | +| --- | --- | +| [FontsRemover](./fontsremover/) | | diff --git a/english/cpp/aspose.pdf.engine.commondata.text.fonts.utilities/fontsremover/_index.md b/english/cpp/aspose.pdf.engine.commondata.text.fonts.utilities/fontsremover/_index.md new file mode 100644 index 0000000000..76eb72299d --- /dev/null +++ b/english/cpp/aspose.pdf.engine.commondata.text.fonts.utilities/fontsremover/_index.md @@ -0,0 +1,22 @@ +--- +title: Aspose::Pdf::Engine::CommonData::Text::Fonts::Utilities::FontsRemover class +linktitle: FontsRemover +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Engine::CommonData::Text::Fonts::Utilities::FontsRemover class in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.engine.commondata.text.fonts.utilities/fontsremover/ +--- +## FontsRemover class + + + + +```cpp +templateclass FontsRemover +``` + +## See Also + +* Namespace [Aspose::Pdf::Engine::CommonData::Text::Fonts::Utilities](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.engine.commondata/_index.md b/english/cpp/aspose.pdf.engine.commondata/_index.md new file mode 100644 index 0000000000..99cc8d29cb --- /dev/null +++ b/english/cpp/aspose.pdf.engine.commondata/_index.md @@ -0,0 +1,17 @@ +--- +title: Aspose::Pdf::Engine::CommonData namespace +linktitle: Aspose::Pdf::Engine::CommonData +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Engine::CommonData namespace in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.engine.commondata/ +--- + + + +## Classes + +| Class | Description | +| --- | --- | +| [IDocumentSecondaryStrategies](./idocumentsecondarystrategies/) | Purpose of this interface - to return different strategies which could be used if user sets special flag which affects usual logic. | diff --git a/english/cpp/aspose.pdf.engine.commondata/idocumentsecondarystrategies/_index.md b/english/cpp/aspose.pdf.engine.commondata/idocumentsecondarystrategies/_index.md new file mode 100644 index 0000000000..cb0f292fa4 --- /dev/null +++ b/english/cpp/aspose.pdf.engine.commondata/idocumentsecondarystrategies/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Engine::CommonData::IDocumentSecondaryStrategies class +linktitle: IDocumentSecondaryStrategies +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Engine::CommonData::IDocumentSecondaryStrategies class. Purpose of this interface - to return different strategies which could be used if user sets special flag which affects usual logic in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.engine.commondata/idocumentsecondarystrategies/ +--- +## IDocumentSecondaryStrategies class + + +Purpose of this interface - to return different strategies which could be used if user sets special flag which affects usual logic. + +```cpp +class IDocumentSecondaryStrategies : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| virtual [get_SimpleFontEncodingRule](./get_simplefontencodingrule/)() | | +## See Also + +* Namespace [Aspose::Pdf::Engine::CommonData](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.engine.commondata/idocumentsecondarystrategies/get_simplefontencodingrule/_index.md b/english/cpp/aspose.pdf.engine.commondata/idocumentsecondarystrategies/get_simplefontencodingrule/_index.md new file mode 100644 index 0000000000..7929f060e6 --- /dev/null +++ b/english/cpp/aspose.pdf.engine.commondata/idocumentsecondarystrategies/get_simplefontencodingrule/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Engine::CommonData::IDocumentSecondaryStrategies::get_SimpleFontEncodingRule method +linktitle: get_SimpleFontEncodingRule +second_title: Aspose.PDF for C++ API Reference +description: 'How to use get_SimpleFontEncodingRule method of Aspose::Pdf::Engine::CommonData::IDocumentSecondaryStrategies class in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.engine.commondata/idocumentsecondarystrategies/get_simplefontencodingrule/ +--- +## IDocumentSecondaryStrategies::get_SimpleFontEncodingRule method + + + + +```cpp +virtual Text::Encoding::PdfFontEncoding::SimpleFontEncodingRules Aspose::Pdf::Engine::CommonData::IDocumentSecondaryStrategies::get_SimpleFontEncodingRule()=0 +``` + +## See Also + +* Class [IDocumentSecondaryStrategies](../) +* Namespace [Aspose::Pdf::Engine::CommonData](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.engine.data/_index.md b/english/cpp/aspose.pdf.engine.data/_index.md new file mode 100644 index 0000000000..cb11f2899a --- /dev/null +++ b/english/cpp/aspose.pdf.engine.data/_index.md @@ -0,0 +1,17 @@ +--- +title: Aspose::Pdf::Engine::Data namespace +linktitle: Aspose::Pdf::Engine::Data +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Engine::Data namespace in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.engine.data/ +--- + + + +## Classes + +| Class | Description | +| --- | --- | +| [IPdfStringExtractionInfo](./ipdfstringextractioninfo/) | This interface represents additional info about decoded string. | diff --git a/english/cpp/aspose.pdf.engine.data/ipdfstringextractioninfo/_index.md b/english/cpp/aspose.pdf.engine.data/ipdfstringextractioninfo/_index.md new file mode 100644 index 0000000000..3707ce7c37 --- /dev/null +++ b/english/cpp/aspose.pdf.engine.data/ipdfstringextractioninfo/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Engine::Data::IPdfStringExtractionInfo class +linktitle: IPdfStringExtractionInfo +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Engine::Data::IPdfStringExtractionInfo class. This interface represents additional info about decoded string in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.engine.data/ipdfstringextractioninfo/ +--- +## IPdfStringExtractionInfo class + + +This interface represents additional info about decoded string. + +```cpp +class IPdfStringExtractionInfo : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| virtual [get_RawCodes](./get_rawcodes/)() | | +## See Also + +* Namespace [Aspose::Pdf::Engine::Data](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.engine.data/ipdfstringextractioninfo/get_rawcodes/_index.md b/english/cpp/aspose.pdf.engine.data/ipdfstringextractioninfo/get_rawcodes/_index.md new file mode 100644 index 0000000000..51e295fc8b --- /dev/null +++ b/english/cpp/aspose.pdf.engine.data/ipdfstringextractioninfo/get_rawcodes/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Engine::Data::IPdfStringExtractionInfo::get_RawCodes method +linktitle: get_RawCodes +second_title: Aspose.PDF for C++ API Reference +description: 'How to use get_RawCodes method of Aspose::Pdf::Engine::Data::IPdfStringExtractionInfo class in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.engine.data/ipdfstringextractioninfo/get_rawcodes/ +--- +## IPdfStringExtractionInfo::get_RawCodes method + + + + +```cpp +virtual System::ArrayPtr Aspose::Pdf::Engine::Data::IPdfStringExtractionInfo::get_RawCodes()=0 +``` + +## See Also + +* Class [IPdfStringExtractionInfo](../) +* Namespace [Aspose::Pdf::Engine::Data](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.engine.filters/_index.md b/english/cpp/aspose.pdf.engine.filters/_index.md new file mode 100644 index 0000000000..0e9fee172e --- /dev/null +++ b/english/cpp/aspose.pdf.engine.filters/_index.md @@ -0,0 +1,22 @@ +--- +title: Aspose::Pdf::Engine::Filters namespace +linktitle: Aspose::Pdf::Engine::Filters +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Engine::Filters namespace in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.engine.filters/ +--- + + + +## Classes + +| Class | Description | +| --- | --- | +| [FilterTypeConverter](./filtertypeconverter/) | | +## Enums + +| Enum | Description | +| --- | --- | +| [FilterType](./filtertype/) | | diff --git a/english/cpp/aspose.pdf.engine.filters/filtertype/_index.md b/english/cpp/aspose.pdf.engine.filters/filtertype/_index.md new file mode 100644 index 0000000000..93cf8f9ecf --- /dev/null +++ b/english/cpp/aspose.pdf.engine.filters/filtertype/_index.md @@ -0,0 +1,39 @@ +--- +title: Aspose::Pdf::Engine::Filters::FilterType enum +linktitle: FilterType +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Engine::Filters::FilterType enum in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.engine.filters/filtertype/ +--- +## FilterType enum + + + + +```cpp +enum class FilterType +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| None | 0 | | +| LZWDecode | 1 | | +| FlateDecode | 2 | | +| ASCIIHexDecode | 3 | | +| ASCII85Decode | 4 | | +| CCITTFaxDecode | 5 | | +| RunLengthDecode | 6 | | +| JBIG2Decode | 7 | | +| DCTDecode | 8 | | +| JPXDecode | 9 | | +| Crypt | 10 | | +| Composite | 11 | | + +## See Also + +* Namespace [Aspose::Pdf::Engine::Filters](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.engine.filters/filtertypeconverter/_index.md b/english/cpp/aspose.pdf.engine.filters/filtertypeconverter/_index.md new file mode 100644 index 0000000000..210c787c02 --- /dev/null +++ b/english/cpp/aspose.pdf.engine.filters/filtertypeconverter/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Engine::Filters::FilterTypeConverter class +linktitle: FilterTypeConverter +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Engine::Filters::FilterTypeConverter class in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.engine.filters/filtertypeconverter/ +--- +## FilterTypeConverter class + + + + +```cpp +class FilterTypeConverter : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [ToEnum](./toenum/)(System::String) | | +| static [ToString](./tostring/)(FilterType) | | +## See Also + +* Namespace [Aspose::Pdf::Engine::Filters](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.engine.filters/filtertypeconverter/toenum/_index.md b/english/cpp/aspose.pdf.engine.filters/filtertypeconverter/toenum/_index.md new file mode 100644 index 0000000000..2d5524cc64 --- /dev/null +++ b/english/cpp/aspose.pdf.engine.filters/filtertypeconverter/toenum/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Engine::Filters::FilterTypeConverter::ToEnum method +linktitle: ToEnum +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToEnum method of Aspose::Pdf::Engine::Filters::FilterTypeConverter class in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.engine.filters/filtertypeconverter/toenum/ +--- +## FilterTypeConverter::ToEnum method + + + + +```cpp +static ASPOSE_PDF_SHARED_API FilterType Aspose::Pdf::Engine::Filters::FilterTypeConverter::ToEnum(System::String value) +``` + +## See Also + +* Enum [FilterType](../../filtertype/) +* Class [FilterTypeConverter](../) +* Namespace [Aspose::Pdf::Engine::Filters](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.engine.filters/filtertypeconverter/tostring/_index.md b/english/cpp/aspose.pdf.engine.filters/filtertypeconverter/tostring/_index.md new file mode 100644 index 0000000000..55be1e0eec --- /dev/null +++ b/english/cpp/aspose.pdf.engine.filters/filtertypeconverter/tostring/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Engine::Filters::FilterTypeConverter::ToString method +linktitle: ToString +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ToString method of Aspose::Pdf::Engine::Filters::FilterTypeConverter class in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.engine.filters/filtertypeconverter/tostring/ +--- +## FilterTypeConverter::ToString method + + + + +```cpp +static ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Engine::Filters::FilterTypeConverter::ToString(FilterType value) +``` + +## See Also + +* Enum [FilterType](../../filtertype/) +* Class [FilterTypeConverter](../) +* Namespace [Aspose::Pdf::Engine::Filters](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/_index.md b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/_index.md new file mode 100644 index 0000000000..6370f5dcf3 --- /dev/null +++ b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers namespace +linktitle: Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers namespace in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/ +--- + + + +## Classes + +| Class | Description | +| --- | --- | +| [ExportFieldsOptions](./exportfieldsoptions/) | Represents base class of options for exporting form fields. | +| [ExportFieldsToJsonOptions](./exportfieldstojsonoptions/) | Represents options for exporting form fields to Json format. | +| [ExportImportMessages](./exportimportmessages/) | Contains various error messages for export and import operations of form fields. | +| [FieldSerializationResult](./fieldserializationresult/) | Represents the result of a form field serialization process. | +| [ImportFieldsOptions](./importfieldsoptions/) | Represents base class of options for importing form fields. | +| [ImportFieldsToJsonOptions](./importfieldstojsonoptions/) | Represents options for importing form fields to Json format. | +## Enums + +| Enum | Description | +| --- | --- | +| [FieldSerializationStatus](./fieldserializationstatus/) | Represents the status of the form field serialization. | diff --git a/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportfieldsoptions/_index.md b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportfieldsoptions/_index.md new file mode 100644 index 0000000000..74497a7f96 --- /dev/null +++ b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportfieldsoptions/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportFieldsOptions class +linktitle: ExportFieldsOptions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportFieldsOptions class. Represents base class of options for exporting form fields in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportfieldsoptions/ +--- +## ExportFieldsOptions class + + +Represents base class of options for exporting form fields. + +```cpp +class ExportFieldsOptions : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [ExportFieldsOptions](./exportfieldsoptions/)() | | +| [get_ExportPasswordValue](./get_exportpasswordvalue/)() const | Gets a value indicating whether the password value should be exported. | +| [set_ExportPasswordValue](./set_exportpasswordvalue/)(bool) | Sets a value indicating whether the password value should be exported. | +## See Also + +* Namespace [Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportfieldsoptions/exportfieldsoptions/_index.md b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportfieldsoptions/exportfieldsoptions/_index.md new file mode 100644 index 0000000000..cf90a37de7 --- /dev/null +++ b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportfieldsoptions/exportfieldsoptions/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportFieldsOptions::ExportFieldsOptions constructor +linktitle: ExportFieldsOptions +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ExportFieldsOptions constructor of Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportFieldsOptions class in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportfieldsoptions/exportfieldsoptions/ +--- +## ExportFieldsOptions::ExportFieldsOptions constructor + + + + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportFieldsOptions::ExportFieldsOptions() +``` + +## See Also + +* Class [ExportFieldsOptions](../) +* Namespace [Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportfieldsoptions/get_exportpasswordvalue/_index.md b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportfieldsoptions/get_exportpasswordvalue/_index.md new file mode 100644 index 0000000000..6c02614e46 --- /dev/null +++ b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportfieldsoptions/get_exportpasswordvalue/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportFieldsOptions::get_ExportPasswordValue method +linktitle: get_ExportPasswordValue +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportFieldsOptions::get_ExportPasswordValue method. Gets a value indicating whether the password value should be exported in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportfieldsoptions/get_exportpasswordvalue/ +--- +## ExportFieldsOptions::get_ExportPasswordValue method + + +Gets a value indicating whether the password value should be exported. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportFieldsOptions::get_ExportPasswordValue() const +``` + +## Remarks + + +**true** if the password value should be exported; otherwise, **false**. +## See Also + +* Class [ExportFieldsOptions](../) +* Namespace [Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportfieldsoptions/set_exportpasswordvalue/_index.md b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportfieldsoptions/set_exportpasswordvalue/_index.md new file mode 100644 index 0000000000..f3016945cc --- /dev/null +++ b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportfieldsoptions/set_exportpasswordvalue/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportFieldsOptions::set_ExportPasswordValue method +linktitle: set_ExportPasswordValue +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportFieldsOptions::set_ExportPasswordValue method. Sets a value indicating whether the password value should be exported in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportfieldsoptions/set_exportpasswordvalue/ +--- +## ExportFieldsOptions::set_ExportPasswordValue method + + +Sets a value indicating whether the password value should be exported. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportFieldsOptions::set_ExportPasswordValue(bool value) +``` + +## Remarks + + +**true** if the password value should be exported; otherwise, **false**. +## See Also + +* Class [ExportFieldsOptions](../) +* Namespace [Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportfieldstojsonoptions/_index.md b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportfieldstojsonoptions/_index.md new file mode 100644 index 0000000000..9690813942 --- /dev/null +++ b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportfieldstojsonoptions/_index.md @@ -0,0 +1,37 @@ +--- +title: Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportFieldsToJsonOptions class +linktitle: ExportFieldsToJsonOptions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportFieldsToJsonOptions class. Represents options for exporting form fields to Json format in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportfieldstojsonoptions/ +--- +## ExportFieldsToJsonOptions class + + +Represents options for exporting form fields to Json format. + +```cpp +class ExportFieldsToJsonOptions : public Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportFieldsOptions +``` + +## Methods + +| Method | Description | +| --- | --- | +| [ExportFieldsOptions](../exportfieldsoptions/exportfieldsoptions/)() | | +| [ExportFieldsToJsonOptions](./exportfieldstojsonoptions/)() | Initializes a new instance of the [ExportFieldsToJsonOptions](./) class. | +| [get_ExportPasswordValue](../exportfieldsoptions/get_exportpasswordvalue/)() const | Gets a value indicating whether the password value should be exported. | +| [get_WriteIndented](./get_writeindented/)() const | Gets a value indicating whether the Json output should be indented. | +| [set_ExportPasswordValue](../exportfieldsoptions/set_exportpasswordvalue/)(bool) | Sets a value indicating whether the password value should be exported. | +| [set_WriteIndented](./set_writeindented/)(bool) | Sets a value indicating whether the Json output should be indented. | +## Remarks + + +Inherits from [ExportFieldsOptions](../exportfieldsoptions/) and adds specific options for Json export. +## See Also + +* Class [ExportFieldsOptions](../exportfieldsoptions/) +* Namespace [Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportfieldstojsonoptions/exportfieldstojsonoptions/_index.md b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportfieldstojsonoptions/exportfieldstojsonoptions/_index.md new file mode 100644 index 0000000000..1ddd72d6d3 --- /dev/null +++ b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportfieldstojsonoptions/exportfieldstojsonoptions/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportFieldsToJsonOptions::ExportFieldsToJsonOptions constructor +linktitle: ExportFieldsToJsonOptions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportFieldsToJsonOptions::ExportFieldsToJsonOptions constructor. Initializes a new instance of the ExportFieldsToJsonOptions class in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportfieldstojsonoptions/exportfieldstojsonoptions/ +--- +## ExportFieldsToJsonOptions::ExportFieldsToJsonOptions constructor + + +Initializes a new instance of the [ExportFieldsToJsonOptions](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportFieldsToJsonOptions::ExportFieldsToJsonOptions() +``` + +## See Also + +* Class [ExportFieldsToJsonOptions](../) +* Namespace [Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportfieldstojsonoptions/get_writeindented/_index.md b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportfieldstojsonoptions/get_writeindented/_index.md new file mode 100644 index 0000000000..8fef59228a --- /dev/null +++ b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportfieldstojsonoptions/get_writeindented/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportFieldsToJsonOptions::get_WriteIndented method +linktitle: get_WriteIndented +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportFieldsToJsonOptions::get_WriteIndented method. Gets a value indicating whether the Json output should be indented in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportfieldstojsonoptions/get_writeindented/ +--- +## ExportFieldsToJsonOptions::get_WriteIndented method + + +Gets a value indicating whether the Json output should be indented. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportFieldsToJsonOptions::get_WriteIndented() const +``` + +## Remarks + + +**true** if the Json output should be indented; otherwise, **false**. +## See Also + +* Class [ExportFieldsToJsonOptions](../) +* Namespace [Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportfieldstojsonoptions/set_writeindented/_index.md b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportfieldstojsonoptions/set_writeindented/_index.md new file mode 100644 index 0000000000..b263fbee01 --- /dev/null +++ b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportfieldstojsonoptions/set_writeindented/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportFieldsToJsonOptions::set_WriteIndented method +linktitle: set_WriteIndented +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportFieldsToJsonOptions::set_WriteIndented method. Sets a value indicating whether the Json output should be indented in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportfieldstojsonoptions/set_writeindented/ +--- +## ExportFieldsToJsonOptions::set_WriteIndented method + + +Sets a value indicating whether the Json output should be indented. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportFieldsToJsonOptions::set_WriteIndented(bool value) +``` + +## Remarks + + +**true** if the Json output should be indented; otherwise, **false**. +## See Also + +* Class [ExportFieldsToJsonOptions](../) +* Namespace [Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/_index.md b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/_index.md new file mode 100644 index 0000000000..b11d941ed9 --- /dev/null +++ b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/_index.md @@ -0,0 +1,47 @@ +--- +title: Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages class +linktitle: ExportImportMessages +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages class. Contains various error messages for export and import operations of form fields in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/ +--- +## ExportImportMessages class + + +Contains various error messages for export and import operations of form fields. + +```cpp +class ExportImportMessages +``` + +## Methods + +| Method | Description | +| --- | --- | +| [ExportImportMessages](./exportimportmessages/)() | | +## Fields + +| Field | Description | +| --- | --- | +| static [AppearanceDObjectNotImporting](./appearancedobjectnotimporting/) | | +| static [AppearanceNNotPresented](./appearancennotpresented/) | | +| static [AppearanceRObjectNotImporting](./appearancerobjectnotimporting/) | | +| static [BarcodeSymbologyValueNotValid](./barcodesymbologyvaluenotvalid/) | | +| static [NotImplemented](./notimplemented/) | | +| static [PageIndexIsNotSet](./pageindexisnotset/) | | +| static [PageIsNull](./pageisnull/) | | +| static [PageNotFoundInDocument](./pagenotfoundindocument/) | | +| static [PartialNameIsNotSet](./partialnameisnotset/) | | +| static [RectangleImportError](./rectangleimporterror/) | | +| static [RectangleIsNotSet](./rectangleisnotset/) | | +| static [RectNotPresented](./rectnotpresented/) | | +| static [SupportExportOnly14StandardFonts](./supportexportonly14standardfonts/) | | +| static [UnknownExportError](./unknownexporterror/) | | +| static [UnknownFieldType](./unknownfieldtype/) | | +| static [UnknownImportError](./unknownimporterror/) | | +## See Also + +* Namespace [Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/appearancedobjectnotimporting/_index.md b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/appearancedobjectnotimporting/_index.md new file mode 100644 index 0000000000..a8b366680f --- /dev/null +++ b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/appearancedobjectnotimporting/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages::AppearanceDObjectNotImporting field +linktitle: AppearanceDObjectNotImporting +second_title: Aspose.PDF for C++ API Reference +description: 'How to use AppearanceDObjectNotImporting field of Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages class in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/appearancedobjectnotimporting/ +--- +## AppearanceDObjectNotImporting field + + + + +```cpp +static const System::String Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages::AppearanceDObjectNotImporting +``` + +## See Also + +* Class [ExportImportMessages](../) +* Namespace [Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/appearancennotpresented/_index.md b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/appearancennotpresented/_index.md new file mode 100644 index 0000000000..ce32b9bf03 --- /dev/null +++ b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/appearancennotpresented/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages::AppearanceNNotPresented field +linktitle: AppearanceNNotPresented +second_title: Aspose.PDF for C++ API Reference +description: 'How to use AppearanceNNotPresented field of Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages class in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/appearancennotpresented/ +--- +## AppearanceNNotPresented field + + + + +```cpp +static const System::String Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages::AppearanceNNotPresented +``` + +## See Also + +* Class [ExportImportMessages](../) +* Namespace [Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/appearancerobjectnotimporting/_index.md b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/appearancerobjectnotimporting/_index.md new file mode 100644 index 0000000000..52677c8783 --- /dev/null +++ b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/appearancerobjectnotimporting/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages::AppearanceRObjectNotImporting field +linktitle: AppearanceRObjectNotImporting +second_title: Aspose.PDF for C++ API Reference +description: 'How to use AppearanceRObjectNotImporting field of Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages class in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/appearancerobjectnotimporting/ +--- +## AppearanceRObjectNotImporting field + + + + +```cpp +static const System::String Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages::AppearanceRObjectNotImporting +``` + +## See Also + +* Class [ExportImportMessages](../) +* Namespace [Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/barcodesymbologyvaluenotvalid/_index.md b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/barcodesymbologyvaluenotvalid/_index.md new file mode 100644 index 0000000000..459a220815 --- /dev/null +++ b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/barcodesymbologyvaluenotvalid/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages::BarcodeSymbologyValueNotValid field +linktitle: BarcodeSymbologyValueNotValid +second_title: Aspose.PDF for C++ API Reference +description: 'How to use BarcodeSymbologyValueNotValid field of Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages class in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/barcodesymbologyvaluenotvalid/ +--- +## BarcodeSymbologyValueNotValid field + + + + +```cpp +static const System::String Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages::BarcodeSymbologyValueNotValid +``` + +## See Also + +* Class [ExportImportMessages](../) +* Namespace [Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/exportimportmessages/_index.md b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/exportimportmessages/_index.md new file mode 100644 index 0000000000..e30854dbae --- /dev/null +++ b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/exportimportmessages/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages::ExportImportMessages constructor +linktitle: ExportImportMessages +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ExportImportMessages constructor of Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages class in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/exportimportmessages/ +--- +## ExportImportMessages::ExportImportMessages constructor + + + + +```cpp +Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages::ExportImportMessages()=delete +``` + +## See Also + +* Class [ExportImportMessages](../) +* Namespace [Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/notimplemented/_index.md b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/notimplemented/_index.md new file mode 100644 index 0000000000..b22b9471c1 --- /dev/null +++ b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/notimplemented/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages::NotImplemented field +linktitle: NotImplemented +second_title: Aspose.PDF for C++ API Reference +description: 'How to use NotImplemented field of Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages class in C++.' +type: docs +weight: 1700 +url: /cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/notimplemented/ +--- +## NotImplemented field + + + + +```cpp +static const System::String Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages::NotImplemented +``` + +## See Also + +* Class [ExportImportMessages](../) +* Namespace [Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/pageindexisnotset/_index.md b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/pageindexisnotset/_index.md new file mode 100644 index 0000000000..1125d2c451 --- /dev/null +++ b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/pageindexisnotset/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages::PageIndexIsNotSet field +linktitle: PageIndexIsNotSet +second_title: Aspose.PDF for C++ API Reference +description: 'How to use PageIndexIsNotSet field of Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages class in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/pageindexisnotset/ +--- +## PageIndexIsNotSet field + + + + +```cpp +static const System::String Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages::PageIndexIsNotSet +``` + +## See Also + +* Class [ExportImportMessages](../) +* Namespace [Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/pageisnull/_index.md b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/pageisnull/_index.md new file mode 100644 index 0000000000..7d85b04e56 --- /dev/null +++ b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/pageisnull/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages::PageIsNull field +linktitle: PageIsNull +second_title: Aspose.PDF for C++ API Reference +description: 'How to use PageIsNull field of Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages class in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/pageisnull/ +--- +## PageIsNull field + + + + +```cpp +static const System::String Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages::PageIsNull +``` + +## See Also + +* Class [ExportImportMessages](../) +* Namespace [Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/pagenotfoundindocument/_index.md b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/pagenotfoundindocument/_index.md new file mode 100644 index 0000000000..34d2ff1b12 --- /dev/null +++ b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/pagenotfoundindocument/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages::PageNotFoundInDocument field +linktitle: PageNotFoundInDocument +second_title: Aspose.PDF for C++ API Reference +description: 'How to use PageNotFoundInDocument field of Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages class in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/pagenotfoundindocument/ +--- +## PageNotFoundInDocument field + + + + +```cpp +static const System::String Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages::PageNotFoundInDocument +``` + +## See Also + +* Class [ExportImportMessages](../) +* Namespace [Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/partialnameisnotset/_index.md b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/partialnameisnotset/_index.md new file mode 100644 index 0000000000..f05eb11e55 --- /dev/null +++ b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/partialnameisnotset/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages::PartialNameIsNotSet field +linktitle: PartialNameIsNotSet +second_title: Aspose.PDF for C++ API Reference +description: 'How to use PartialNameIsNotSet field of Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages class in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/partialnameisnotset/ +--- +## PartialNameIsNotSet field + + + + +```cpp +static const System::String Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages::PartialNameIsNotSet +``` + +## See Also + +* Class [ExportImportMessages](../) +* Namespace [Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/rectangleimporterror/_index.md b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/rectangleimporterror/_index.md new file mode 100644 index 0000000000..b468e335b7 --- /dev/null +++ b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/rectangleimporterror/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages::RectangleImportError field +linktitle: RectangleImportError +second_title: Aspose.PDF for C++ API Reference +description: 'How to use RectangleImportError field of Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages class in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/rectangleimporterror/ +--- +## RectangleImportError field + + + + +```cpp +static const System::String Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages::RectangleImportError +``` + +## See Also + +* Class [ExportImportMessages](../) +* Namespace [Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/rectangleisnotset/_index.md b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/rectangleisnotset/_index.md new file mode 100644 index 0000000000..e96f281b54 --- /dev/null +++ b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/rectangleisnotset/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages::RectangleIsNotSet field +linktitle: RectangleIsNotSet +second_title: Aspose.PDF for C++ API Reference +description: 'How to use RectangleIsNotSet field of Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages class in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/rectangleisnotset/ +--- +## RectangleIsNotSet field + + + + +```cpp +static const System::String Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages::RectangleIsNotSet +``` + +## See Also + +* Class [ExportImportMessages](../) +* Namespace [Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/rectnotpresented/_index.md b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/rectnotpresented/_index.md new file mode 100644 index 0000000000..1ceab0a784 --- /dev/null +++ b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/rectnotpresented/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages::RectNotPresented field +linktitle: RectNotPresented +second_title: Aspose.PDF for C++ API Reference +description: 'How to use RectNotPresented field of Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages class in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/rectnotpresented/ +--- +## RectNotPresented field + + + + +```cpp +static const System::String Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages::RectNotPresented +``` + +## See Also + +* Class [ExportImportMessages](../) +* Namespace [Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/supportexportonly14standardfonts/_index.md b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/supportexportonly14standardfonts/_index.md new file mode 100644 index 0000000000..8a39385583 --- /dev/null +++ b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/supportexportonly14standardfonts/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages::SupportExportOnly14StandardFonts field +linktitle: SupportExportOnly14StandardFonts +second_title: Aspose.PDF for C++ API Reference +description: 'How to use SupportExportOnly14StandardFonts field of Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages class in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/supportexportonly14standardfonts/ +--- +## SupportExportOnly14StandardFonts field + + + + +```cpp +static const System::String Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages::SupportExportOnly14StandardFonts +``` + +## See Also + +* Class [ExportImportMessages](../) +* Namespace [Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/unknownexporterror/_index.md b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/unknownexporterror/_index.md new file mode 100644 index 0000000000..9d532df7b1 --- /dev/null +++ b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/unknownexporterror/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages::UnknownExportError field +linktitle: UnknownExportError +second_title: Aspose.PDF for C++ API Reference +description: 'How to use UnknownExportError field of Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages class in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/unknownexporterror/ +--- +## UnknownExportError field + + + + +```cpp +static const System::String Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages::UnknownExportError +``` + +## See Also + +* Class [ExportImportMessages](../) +* Namespace [Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/unknownfieldtype/_index.md b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/unknownfieldtype/_index.md new file mode 100644 index 0000000000..1a96deef43 --- /dev/null +++ b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/unknownfieldtype/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages::UnknownFieldType field +linktitle: UnknownFieldType +second_title: Aspose.PDF for C++ API Reference +description: 'How to use UnknownFieldType field of Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages class in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/unknownfieldtype/ +--- +## UnknownFieldType field + + + + +```cpp +static const System::String Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages::UnknownFieldType +``` + +## See Also + +* Class [ExportImportMessages](../) +* Namespace [Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/unknownimporterror/_index.md b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/unknownimporterror/_index.md new file mode 100644 index 0000000000..91dae9a893 --- /dev/null +++ b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/unknownimporterror/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages::UnknownImportError field +linktitle: UnknownImportError +second_title: Aspose.PDF for C++ API Reference +description: 'How to use UnknownImportError field of Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages class in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/exportimportmessages/unknownimporterror/ +--- +## UnknownImportError field + + + + +```cpp +static const System::String Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ExportImportMessages::UnknownImportError +``` + +## See Also + +* Class [ExportImportMessages](../) +* Namespace [Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/fieldserializationresult/_index.md b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/fieldserializationresult/_index.md new file mode 100644 index 0000000000..fe60b22c85 --- /dev/null +++ b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/fieldserializationresult/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::FieldSerializationResult class +linktitle: FieldSerializationResult +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::FieldSerializationResult class. Represents the result of a form field serialization process in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/fieldserializationresult/ +--- +## FieldSerializationResult class + + +Represents the result of a form field serialization process. + +```cpp +class FieldSerializationResult : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_ErrorMessages](./get_errormessages/)() const | Gets the error messages associated with the serialization process. | +| [get_FieldFullName](./get_fieldfullname/)() const | Gets the full name of the field. | +| [get_FieldSerializationStatus](./get_fieldserializationstatus/)() const | Gets the status of the form field serialization. | +| [get_WarningMessages](./get_warningmessages/)() const | Gets the warning messages associated with the serialization process. | +## See Also + +* Namespace [Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/fieldserializationresult/get_errormessages/_index.md b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/fieldserializationresult/get_errormessages/_index.md new file mode 100644 index 0000000000..a0460372ef --- /dev/null +++ b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/fieldserializationresult/get_errormessages/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::FieldSerializationResult::get_ErrorMessages method +linktitle: get_ErrorMessages +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::FieldSerializationResult::get_ErrorMessages method. Gets the error messages associated with the serialization process in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/fieldserializationresult/get_errormessages/ +--- +## FieldSerializationResult::get_ErrorMessages method + + +Gets the error messages associated with the serialization process. + +```cpp +ASPOSE_PDF_SHARED_API const System::SharedPtr> & Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::FieldSerializationResult::get_ErrorMessages() const +``` + +## Remarks + + +A set of error messages. +## See Also + +* Class [FieldSerializationResult](../) +* Namespace [Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/fieldserializationresult/get_fieldfullname/_index.md b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/fieldserializationresult/get_fieldfullname/_index.md new file mode 100644 index 0000000000..5604205658 --- /dev/null +++ b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/fieldserializationresult/get_fieldfullname/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::FieldSerializationResult::get_FieldFullName method +linktitle: get_FieldFullName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::FieldSerializationResult::get_FieldFullName method. Gets the full name of the field in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/fieldserializationresult/get_fieldfullname/ +--- +## FieldSerializationResult::get_FieldFullName method + + +Gets the full name of the field. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::FieldSerializationResult::get_FieldFullName() const +``` + +## Remarks + + +The full name of the field. +## See Also + +* Class [FieldSerializationResult](../) +* Namespace [Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/fieldserializationresult/get_fieldserializationstatus/_index.md b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/fieldserializationresult/get_fieldserializationstatus/_index.md new file mode 100644 index 0000000000..86815d7976 --- /dev/null +++ b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/fieldserializationresult/get_fieldserializationstatus/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::FieldSerializationResult::get_FieldSerializationStatus method +linktitle: get_FieldSerializationStatus +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::FieldSerializationResult::get_FieldSerializationStatus method. Gets the status of the form field serialization in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/fieldserializationresult/get_fieldserializationstatus/ +--- +## FieldSerializationResult::get_FieldSerializationStatus method + + +Gets the status of the form field serialization. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::FieldSerializationStatus Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::FieldSerializationResult::get_FieldSerializationStatus() const +``` + +## Remarks + + +The serialization status of the form field. +## See Also + +* Enum [FieldSerializationStatus](../../fieldserializationstatus/) +* Class [FieldSerializationResult](../) +* Namespace [Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/fieldserializationresult/get_warningmessages/_index.md b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/fieldserializationresult/get_warningmessages/_index.md new file mode 100644 index 0000000000..8490eb1a05 --- /dev/null +++ b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/fieldserializationresult/get_warningmessages/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::FieldSerializationResult::get_WarningMessages method +linktitle: get_WarningMessages +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::FieldSerializationResult::get_WarningMessages method. Gets the warning messages associated with the serialization process in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/fieldserializationresult/get_warningmessages/ +--- +## FieldSerializationResult::get_WarningMessages method + + +Gets the warning messages associated with the serialization process. + +```cpp +ASPOSE_PDF_SHARED_API const System::SharedPtr> & Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::FieldSerializationResult::get_WarningMessages() const +``` + +## Remarks + + +A set of warning messages. +## See Also + +* Class [FieldSerializationResult](../) +* Namespace [Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/fieldserializationstatus/_index.md b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/fieldserializationstatus/_index.md new file mode 100644 index 0000000000..c044b9c699 --- /dev/null +++ b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/fieldserializationstatus/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::FieldSerializationStatus enum +linktitle: FieldSerializationStatus +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::FieldSerializationStatus enum. Represents the status of the form field serialization in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/fieldserializationstatus/ +--- +## FieldSerializationStatus enum + + +Represents the status of the form field serialization. + +```cpp +enum class FieldSerializationStatus +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Success | 0 | Indicates that the serialization was successful. | +| Warning | 1 | Indicates that the serialization completed with warnings. | +| Error | 2 | Indicates that the serialization encountered errors. | + +## See Also + +* Namespace [Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/importfieldsoptions/_index.md b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/importfieldsoptions/_index.md new file mode 100644 index 0000000000..84dd780587 --- /dev/null +++ b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/importfieldsoptions/_index.md @@ -0,0 +1,22 @@ +--- +title: Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ImportFieldsOptions class +linktitle: ImportFieldsOptions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ImportFieldsOptions class. Represents base class of options for importing form fields in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/importfieldsoptions/ +--- +## ImportFieldsOptions class + + +Represents base class of options for importing form fields. + +```cpp +class ImportFieldsOptions : public System::Object +``` + +## See Also + +* Namespace [Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/importfieldstojsonoptions/_index.md b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/importfieldstojsonoptions/_index.md new file mode 100644 index 0000000000..fba5c8aeb4 --- /dev/null +++ b/english/cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/importfieldstojsonoptions/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ImportFieldsToJsonOptions class +linktitle: ImportFieldsToJsonOptions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ImportFieldsToJsonOptions class. Represents options for importing form fields to Json format in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.engine.io.convertstrategies.converthelpers/importfieldstojsonoptions/ +--- +## ImportFieldsToJsonOptions class + + +Represents options for importing form fields to Json format. + +```cpp +class ImportFieldsToJsonOptions : public Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers::ImportFieldsOptions +``` + +## Remarks + + +Inherits from [ImportFieldsOptions](../importfieldsoptions/) and adds specific options for Json import. +## See Also + +* Class [ImportFieldsOptions](../importfieldsoptions/) +* Namespace [Aspose::Pdf::Engine::IO::ConvertStrategies::ConvertHelpers](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/_index.md b/english/cpp/aspose.pdf.facades/_index.md new file mode 100644 index 0000000000..eb6818b444 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/_index.md @@ -0,0 +1,77 @@ +--- +title: Aspose::Pdf::Facades namespace +linktitle: Aspose::Pdf::Facades +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Facades namespace in C++.' +type: docs +weight: 1700 +url: /cpp/aspose.pdf.facades/ +--- + + + +## Classes + +| Class | Description | +| --- | --- | +| [AutoFiller](./autofiller/) | Represents a class to receive data from database or other datasource, fills them into the designed fields of the template pdf and at last generates new pdf file or stream. It has two template file input modes:input as a stream or a pdf file. It has four types of output modes:one merged stream, one merged file, many small streams, many small files. It can recieve literal data contained in a **System.Data.DataTable**. | +| [BDCProperties](./bdcproperties/) | BDC operator properties. | +| [Bookmark](./bookmark/) | Represents a bookmark. | +| [Bookmarks](./bookmarks/) | Represents a collection of [Bookmark](./bookmark/) objects. | +| [DocumentPrivilege](./documentprivilege/) | Represents the privileges for accessing [Pdf](../aspose.pdf/) file. Refer to[PdfFileSecurity](./pdffilesecurity/). There are 4 ways using this class: 1.Using predefined privilege directly. 2.Based on a predefined privilege and change some specifical permissions. 3.Based on a predefined privilege and change some specifical Adobe Professional permissions combination. 4.Mixes the way2 and way3. | +| [Facade](./facade/) | Base facade class. | +| [FontColor](./fontcolor/) | Class representing color of the text. | +| [Form](./form/) | Class representing Acro form object. | +| [FormattedText](./formattedtext/) | Class which represents formatted text. Contains information about text and its color, size, style. | +| [FormEditor](./formeditor/) | Class for editing forms (ading/deleting field etc) | +| [FormFieldFacade](./formfieldfacade/) | Class for representing field properties. | +| [IFacade](./ifacade/) | General facade interface that defines common facades methods. | +| [ISaveableFacade](./isaveablefacade/) | [Facade](./facade/) interface that defines methods common for all saveable facades. | +| [LineInfo](./lineinfo/) | Represents the information of line. | +| [PdfAnnotationEditor](./pdfannotationeditor/) | Represents a class for work with PDF document annotations (comments). | +| [PdfBookmarkEditor](./pdfbookmarkeditor/) | Represents a class to work with PDF file's bookmarks including create, modify, export, import and delete. | +| [PdfContentEditor](./pdfcontenteditor/) | Represents a class to edit PDF file's content. | +| [PdfConverter](./pdfconverter/) | Represents a class to convert a pdf file's each page to images, supporting BMP, JPEG, PNG and TIFF now. Supported content in pdfs: pictures, form, comment. | +| [PdfExtractor](./pdfextractor/) | Class for extracting images and text from PDF document. | +| [PdfFileEditor](./pdffileeditor/) | Implements operations with PDF file: concatenation, splitting, extracting pages, making booklet, etc. | +| [PdfFileInfo](./pdffileinfo/) | Represents a class for accessing meta information of PDF document. | +| [PdfFileMend](./pdffilemend/) | Represents a class for adding texts and images on the pages of existing PDF document. | +| [PdfFileSanitization](./pdffilesanitization/) | Represents sanitization and recovery API. Use it if you can't create/open documents in any other way. | +| [PdfFileSecurity](./pdffilesecurity/) | Represents encrypting or decrypting a [Pdf](../aspose.pdf/) file with owner or user password, changing the security setting and password. | +| [PdfFileSignature](./pdffilesignature/) | Represents a class to sign a pdf file with a certificate. | +| [PdfFileStamp](./pdffilestamp/) | Class for adding stamps (watermark or background) to PDF files. | +| [PdfJavaScriptStripper](./pdfjavascriptstripper/) | Class for removing all Java Script code. | +| [PdfPageEditor](./pdfpageeditor/) | Represents a class to edit the PDF file's page, including rotating page, zooming page, moving position and changing page size. | +| [PdfPrintPageInfo](./pdfprintpageinfo/) | Represents an object that contains current printing page info. | +| [PdfProducer](./pdfproducer/) | Represents a class to produce PDF from other formats. | +| [PdfXmpMetadata](./pdfxmpmetadata/) | Class for manipulation with XMP metadata. | +| [ReplaceTextStrategy](./replacetextstrategy/) | This class contains parameters which define [PdfContentEditor](./pdfcontenteditor/) behavior when ReplaceText operation is performed. | +| [SaveableFacade](./saveablefacade/) | Base class for all saveable facades. | +| [Stamp](./stamp/) | Class represeting stamp. | +| [StampInfo](./stampinfo/) | Class representing stamp information. | +| [TextProperties](./textproperties/) | Represents text properties such as: text size, color, style etc. | +| [ViewerPreference](./viewerpreference/) | Describes viewer prefereces (page mode, non full screen page mode, page layout). | +## Enums + +| Enum | Description | +| --- | --- | +| [Algorithm](./algorithm/) | Represents algorithms which can be used to encrypt pdf document. | +| [AutoRotateMode](./autorotatemode/) | Direction of the rotation when document is printed. | +| [BlendingColorSpace](./blendingcolorspace/) | Class represents blending color space. | +| [DataType](./datatype/) | Enumerates field types definitions. | +| [DefaultMetadataProperties](./defaultmetadataproperties/) | Enumeration of standard XMP properties. | +| [EncodingType](./encodingtype/) | Enumerates encoding types of the text using. | +| [FieldType](./fieldtype/) | Enumeration of possible field types. | +| [FontStyle](./fontstyle/) | Enumerates 14 types of font. | +| [ImageMergeMode](./imagemergemode/) | Represents modes for merging images. | +| [KeySize](./keysize/) | Defines different key sizes which can be used to encrypt pdf documents. | +| [PositioningMode](./positioningmode/) | Defines positioning mode. Possible values include Legacy (backward compatibility) and Current (updated text position calculation method) | +| [PropertyFlag](./propertyflag/) | Enumeration of possible field flags. | +| [StampType](./stamptype/) | Describes stamp types. | +| [SubmitFormFlag](./submitformflag/) | Enumeration of possible submit form flags. | +| [WordWrapMode](./wordwrapmode/) | Defines word wrapping strategies. | +## Typedefs + +| Typedef | Description | +| --- | --- | +| [PdfQueryPageSettingsEventHandler](./pdfquerypagesettingseventhandler/) | | diff --git a/english/cpp/aspose.pdf.facades/algorithm/_index.md b/english/cpp/aspose.pdf.facades/algorithm/_index.md new file mode 100644 index 0000000000..3865ef2ed8 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/algorithm/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Facades::Algorithm enum +linktitle: Algorithm +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Algorithm enum. Represents algorithms which can be used to encrypt pdf document in C++.' +type: docs +weight: 3800 +url: /cpp/aspose.pdf.facades/algorithm/ +--- +## Algorithm enum + + +Represents algorithms which can be used to encrypt pdf document. + +```cpp +enum class Algorithm +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| RC4 | 0 | RC4 algorithm. | +| AES | 1 | AES algorithm. | + +## See Also + +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/autofiller/_index.md b/english/cpp/aspose.pdf.facades/autofiller/_index.md new file mode 100644 index 0000000000..2157dd3be2 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/autofiller/_index.md @@ -0,0 +1,51 @@ +--- +title: Aspose::Pdf::Facades::AutoFiller class +linktitle: AutoFiller +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::AutoFiller class. Represents a class to receive data from database or other datasource, fills them into the designed fields of the template pdf and at last generates new pdf file or stream. It has two template file input modes:input as a stream or a pdf file. It has four types of output modes:one merged stream, one merged file, many small streams, many small files. It can recieve literal data contained in a System.Data.DataTable in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.facades/autofiller/ +--- +## AutoFiller class + + +Represents a class to receive data from database or other datasource, fills them into the designed fields of the template pdf and at last generates new pdf file or stream. It has two template file input modes:input as a stream or a pdf file. It has four types of output modes:one merged stream, one merged file, many small streams, many small files. It can recieve literal data contained in a **System.Data.DataTable**. + +```cpp +class AutoFiller : public Aspose::Pdf::Facades::ISaveableFacade +``` + +## Methods + +| Method | Description | +| --- | --- | +| [AutoFiller](./autofiller/)() | | +| [BindPdf](./bindpdf/)(System::String) override | Binds a [Pdf](../../aspose.pdf/) file. | +| [BindPdf](./bindpdf/)(System::SharedPtr\) override | Binds a [Pdf](../../aspose.pdf/) file. | +| [BindPdf](./bindpdf/)(System::SharedPtr\) override | Binds a [Pdf](../../aspose.pdf/) document. | +| [Close](./close/)() override | Closes the object and output streams. | +| [Dispose](./dispose/)() override | Closes the object and output streams. | +| [get_BasicFileName](./get_basicfilename/)() const | Gets the basic file name if many small files will be generated. The generated file will be like "BasicFileName0","BasicFileName1",... It works with another property [GeneratingPath](../)GeneratingPath. | +| [get_GeneratingPath](./get_generatingpath/)() const | Gets the Generating Path of the small pdf files if many small pdf files to be generated. It works with another property [BasicFileName](../)BasicFileName. One of the four output modes. | +| [get_InputFileName](./get_inputfilename/)() const | Gets the input template file. One of two input modes. | +| [get_InputStream](./get_inputstream/)() const | Gets the input template stream. One of two input modes. | +| [get_OutputFileName](./get_outputfilename/)() const | Gets the one big merged output file. One of the four output modes. | +| [get_OutputStream](./get_outputstream/)() const | Gets the OutputStream. One of four output modes. Its classical use case is Response.OutputStream. Please refer to the online demo. | +| [get_OutputStreams](./get_outputstreams/)() const | Gets the many Output Streams. One of four output modes. | +| [Save](./save/)() | Saves all the pdfs. | +| [Save](./save/)(System::String) override | Saves all the pdfs. | +| [Save](./save/)(System::SharedPtr\) override | Saves all the pdfs. | +| [set_BasicFileName](./set_basicfilename/)(System::String) | Sets the basic file name if many small files will be generated. The generated file will be like "BasicFileName0","BasicFileName1",... It works with another property [GeneratingPath](../)GeneratingPath. | +| [set_GeneratingPath](./set_generatingpath/)(System::String) | Sets the Generating Path of the small pdf files if many small pdf files to be generated. It works with another property [BasicFileName](../)BasicFileName. One of the four output modes. | +| [set_InputFileName](./set_inputfilename/)(System::String) | Sets the input template file. One of two input modes. | +| [set_InputStream](./set_inputstream/)(System::SharedPtr\) | Sets the input template stream. One of two input modes. | +| [set_OutputFileName](./set_outputfilename/)(System::String) | Sets the one big merged output file. One of the four output modes. | +| [set_OutputStream](./set_outputstream/)(System::SharedPtr\) | Sets the OutputStream. One of four output modes. Its classical use case is Response.OutputStream. Please refer to the online demo. | +| [set_OutputStreams](./set_outputstreams/)(System::ArrayPtr\\>) | Sets the many Output Streams. One of four output modes. | +| [set_UnFlattenFields](./set_unflattenfields/)(System::ArrayPtr\) | Sets the fields which will not be flattened. If this property is not set, all the fields will be flattened. | +## See Also + +* Class [ISaveableFacade](../isaveablefacade/) +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/autofiller/autofiller/_index.md b/english/cpp/aspose.pdf.facades/autofiller/autofiller/_index.md new file mode 100644 index 0000000000..2611f40384 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/autofiller/autofiller/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::AutoFiller::AutoFiller constructor +linktitle: AutoFiller +second_title: Aspose.PDF for C++ API Reference +description: 'How to use AutoFiller constructor of Aspose::Pdf::Facades::AutoFiller class in C++.' +type: docs +weight: 2000 +url: /cpp/aspose.pdf.facades/autofiller/autofiller/ +--- +## AutoFiller::AutoFiller constructor + + + + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::AutoFiller::AutoFiller() +``` + +## See Also + +* Class [AutoFiller](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/autofiller/bindpdf/_index.md b/english/cpp/aspose.pdf.facades/autofiller/bindpdf/_index.md new file mode 100644 index 0000000000..d339a4c1cb --- /dev/null +++ b/english/cpp/aspose.pdf.facades/autofiller/bindpdf/_index.md @@ -0,0 +1,106 @@ +--- +title: Aspose::Pdf::Facades::AutoFiller::BindPdf method +linktitle: BindPdf +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::AutoFiller::BindPdf method. Binds a Pdf file in C++.' +type: docs +weight: 1700 +url: /cpp/aspose.pdf.facades/autofiller/bindpdf/ +--- +## AutoFiller::BindPdf(System::String) method + + +Binds a [Pdf](../../../aspose.pdf/) file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::AutoFiller::BindPdf(System::String srcFile) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| srcFile | System::String | [Pdf](../../../aspose.pdf/) file name. | +## Remarks + + + + + + srcFile + + + + Pdf file name. + + + +## See Also + +* Class [AutoFiller](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## AutoFiller::BindPdf(System::SharedPtr\) method + + +Binds a [Pdf](../../../aspose.pdf/) file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::AutoFiller::BindPdf(System::SharedPtr srcStream) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| srcStream | System::SharedPtr\ | [Pdf](../../../aspose.pdf/) file stream. | +## Remarks + + + + + + srcStream + + + + Pdf file stream. + + + +## See Also + +* Class [AutoFiller](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## AutoFiller::BindPdf(System::SharedPtr\) method + + +Binds a [Pdf](../../../aspose.pdf/) document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::AutoFiller::BindPdf(System::SharedPtr srcDoc) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| srcDoc | System::SharedPtr\ | [Pdf](../../../aspose.pdf/) document. | +## Remarks + + + + + + srcDoc + + + + Pdf document. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [AutoFiller](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/autofiller/close/_index.md b/english/cpp/aspose.pdf.facades/autofiller/close/_index.md new file mode 100644 index 0000000000..ba43fa051b --- /dev/null +++ b/english/cpp/aspose.pdf.facades/autofiller/close/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::AutoFiller::Close method +linktitle: Close +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::AutoFiller::Close method. Closes the object and output streams in C++.' +type: docs +weight: 1800 +url: /cpp/aspose.pdf.facades/autofiller/close/ +--- +## AutoFiller::Close method + + +Closes the object and output streams. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::AutoFiller::Close() override +``` + +## See Also + +* Class [AutoFiller](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/autofiller/dispose/_index.md b/english/cpp/aspose.pdf.facades/autofiller/dispose/_index.md new file mode 100644 index 0000000000..a226356609 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/autofiller/dispose/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::AutoFiller::Dispose method +linktitle: Dispose +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::AutoFiller::Dispose method. Closes the object and output streams in C++.' +type: docs +weight: 1900 +url: /cpp/aspose.pdf.facades/autofiller/dispose/ +--- +## AutoFiller::Dispose method + + +Closes the object and output streams. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::AutoFiller::Dispose() override +``` + +## See Also + +* Class [AutoFiller](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/autofiller/get_basicfilename/_index.md b/english/cpp/aspose.pdf.facades/autofiller/get_basicfilename/_index.md new file mode 100644 index 0000000000..ddbe5bce25 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/autofiller/get_basicfilename/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::AutoFiller::get_BasicFileName method +linktitle: get_BasicFileName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::AutoFiller::get_BasicFileName method. Gets the basic file name if many small files will be generated. The generated file will be like "BasicFileName0","BasicFileName1",... It works with another property GeneratingPathGeneratingPath in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.facades/autofiller/get_basicfilename/ +--- +## AutoFiller::get_BasicFileName method + + +Gets the basic file name if many small files will be generated. The generated file will be like "BasicFileName0","BasicFileName1",... It works with another property [GeneratingPath](../)GeneratingPath. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::AutoFiller::get_BasicFileName() const +``` + +## See Also + +* Class [AutoFiller](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/autofiller/get_generatingpath/_index.md b/english/cpp/aspose.pdf.facades/autofiller/get_generatingpath/_index.md new file mode 100644 index 0000000000..2e0bf5bc24 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/autofiller/get_generatingpath/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::AutoFiller::get_GeneratingPath method +linktitle: get_GeneratingPath +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::AutoFiller::get_GeneratingPath method. Gets the Generating Path of the small pdf files if many small pdf files to be generated. It works with another property BasicFileNameBasicFileName. One of the four output modes in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.facades/autofiller/get_generatingpath/ +--- +## AutoFiller::get_GeneratingPath method + + +Gets the Generating Path of the small pdf files if many small pdf files to be generated. It works with another property [BasicFileName](../)BasicFileName. One of the four output modes. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::AutoFiller::get_GeneratingPath() const +``` + +## See Also + +* Class [AutoFiller](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/autofiller/get_inputfilename/_index.md b/english/cpp/aspose.pdf.facades/autofiller/get_inputfilename/_index.md new file mode 100644 index 0000000000..cca9a9d782 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/autofiller/get_inputfilename/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::AutoFiller::get_InputFileName method +linktitle: get_InputFileName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::AutoFiller::get_InputFileName method. Gets the input template file. One of two input modes in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.facades/autofiller/get_inputfilename/ +--- +## AutoFiller::get_InputFileName method + + +Gets the input template file. One of two input modes. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::AutoFiller::get_InputFileName() const +``` + +## Remarks + + + + Deprecated + + Use BindPdf(inputFile) method for facade initialization. + + +## See Also + +* Class [AutoFiller](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/autofiller/get_inputstream/_index.md b/english/cpp/aspose.pdf.facades/autofiller/get_inputstream/_index.md new file mode 100644 index 0000000000..8076d54c87 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/autofiller/get_inputstream/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::AutoFiller::get_InputStream method +linktitle: get_InputStream +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::AutoFiller::get_InputStream method. Gets the input template stream. One of two input modes in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.facades/autofiller/get_inputstream/ +--- +## AutoFiller::get_InputStream method + + +Gets the input template stream. One of two input modes. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::AutoFiller::get_InputStream() const +``` + +## Remarks + + + + Deprecated + + Use BindPdf(inputStream) method for facade initialization. + + +## See Also + +* Class [AutoFiller](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/autofiller/get_outputfilename/_index.md b/english/cpp/aspose.pdf.facades/autofiller/get_outputfilename/_index.md new file mode 100644 index 0000000000..e54b885739 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/autofiller/get_outputfilename/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::AutoFiller::get_OutputFileName method +linktitle: get_OutputFileName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::AutoFiller::get_OutputFileName method. Gets the one big merged output file. One of the four output modes in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.facades/autofiller/get_outputfilename/ +--- +## AutoFiller::get_OutputFileName method + + +Gets the one big merged output file. One of the four output modes. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::AutoFiller::get_OutputFileName() const +``` + +## Remarks + + + + Deprecated + + Use Save(outputFile) method for getting facade results. + + +## See Also + +* Class [AutoFiller](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/autofiller/get_outputstream/_index.md b/english/cpp/aspose.pdf.facades/autofiller/get_outputstream/_index.md new file mode 100644 index 0000000000..d95bcecd6e --- /dev/null +++ b/english/cpp/aspose.pdf.facades/autofiller/get_outputstream/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::AutoFiller::get_OutputStream method +linktitle: get_OutputStream +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::AutoFiller::get_OutputStream method. Gets the OutputStream. One of four output modes. Its classical use case is Response.OutputStream. Please refer to the online demo in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.facades/autofiller/get_outputstream/ +--- +## AutoFiller::get_OutputStream method + + +Gets the OutputStream. One of four output modes. Its classical use case is Response.OutputStream. Please refer to the online demo. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::AutoFiller::get_OutputStream() const +``` + +## Remarks + + + + Deprecated + + Use Save(outputStream) method for getting facade results. + + +## See Also + +* Class [AutoFiller](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/autofiller/get_outputstreams/_index.md b/english/cpp/aspose.pdf.facades/autofiller/get_outputstreams/_index.md new file mode 100644 index 0000000000..27d7be093e --- /dev/null +++ b/english/cpp/aspose.pdf.facades/autofiller/get_outputstreams/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::AutoFiller::get_OutputStreams method +linktitle: get_OutputStreams +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::AutoFiller::get_OutputStreams method. Gets the many Output Streams. One of four output modes in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.facades/autofiller/get_outputstreams/ +--- +## AutoFiller::get_OutputStreams method + + +Gets the many Output Streams. One of four output modes. + +```cpp +ASPOSE_PDF_SHARED_API System::ArrayPtr> Aspose::Pdf::Facades::AutoFiller::get_OutputStreams() const +``` + +## See Also + +* Class [AutoFiller](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/autofiller/save/_index.md b/english/cpp/aspose.pdf.facades/autofiller/save/_index.md new file mode 100644 index 0000000000..d0d9887dcf --- /dev/null +++ b/english/cpp/aspose.pdf.facades/autofiller/save/_index.md @@ -0,0 +1,94 @@ +--- +title: Aspose::Pdf::Facades::AutoFiller::Save method +linktitle: Save +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::AutoFiller::Save method. Saves all the pdfs in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf.facades/autofiller/save/ +--- +## AutoFiller::Save() method + + +Saves all the pdfs. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::AutoFiller::Save() +``` + +## Remarks + + + + Deprecated + + Use Save(destination) method for saving facade results. + + +## See Also + +* Class [AutoFiller](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## AutoFiller::Save(System::String) method + + +Saves all the pdfs. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::AutoFiller::Save(System::String destFile) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| destFile | System::String | Output file name. | +## Remarks + + + + + + destFile + + + Output file name. + + + +## See Also + +* Class [AutoFiller](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## AutoFiller::Save(System::SharedPtr\) method + + +Saves all the pdfs. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::AutoFiller::Save(System::SharedPtr destStream) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| destStream | System::SharedPtr\ | Output stream. | +## Remarks + + + + + + destStream + + + Output stream. + + + +## See Also + +* Class [AutoFiller](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/autofiller/set_basicfilename/_index.md b/english/cpp/aspose.pdf.facades/autofiller/set_basicfilename/_index.md new file mode 100644 index 0000000000..6489684eea --- /dev/null +++ b/english/cpp/aspose.pdf.facades/autofiller/set_basicfilename/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::AutoFiller::set_BasicFileName method +linktitle: set_BasicFileName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::AutoFiller::set_BasicFileName method. Sets the basic file name if many small files will be generated. The generated file will be like "BasicFileName0","BasicFileName1",... It works with another property GeneratingPathGeneratingPath in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.facades/autofiller/set_basicfilename/ +--- +## AutoFiller::set_BasicFileName method + + +Sets the basic file name if many small files will be generated. The generated file will be like "BasicFileName0","BasicFileName1",... It works with another property [GeneratingPath](../)GeneratingPath. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::AutoFiller::set_BasicFileName(System::String value) +``` + +## See Also + +* Class [AutoFiller](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/autofiller/set_generatingpath/_index.md b/english/cpp/aspose.pdf.facades/autofiller/set_generatingpath/_index.md new file mode 100644 index 0000000000..08ea2ef15f --- /dev/null +++ b/english/cpp/aspose.pdf.facades/autofiller/set_generatingpath/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::AutoFiller::set_GeneratingPath method +linktitle: set_GeneratingPath +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::AutoFiller::set_GeneratingPath method. Sets the Generating Path of the small pdf files if many small pdf files to be generated. It works with another property BasicFileNameBasicFileName. One of the four output modes in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.facades/autofiller/set_generatingpath/ +--- +## AutoFiller::set_GeneratingPath method + + +Sets the Generating Path of the small pdf files if many small pdf files to be generated. It works with another property [BasicFileName](../)BasicFileName. One of the four output modes. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::AutoFiller::set_GeneratingPath(System::String value) +``` + +## See Also + +* Class [AutoFiller](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/autofiller/set_inputfilename/_index.md b/english/cpp/aspose.pdf.facades/autofiller/set_inputfilename/_index.md new file mode 100644 index 0000000000..a1baf351a5 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/autofiller/set_inputfilename/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::AutoFiller::set_InputFileName method +linktitle: set_InputFileName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::AutoFiller::set_InputFileName method. Sets the input template file. One of two input modes in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.facades/autofiller/set_inputfilename/ +--- +## AutoFiller::set_InputFileName method + + +Sets the input template file. One of two input modes. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::AutoFiller::set_InputFileName(System::String value) +``` + +## Remarks + + + + Deprecated + + Use BindPdf(inputFile) method for facade initialization. + + +## See Also + +* Class [AutoFiller](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/autofiller/set_inputstream/_index.md b/english/cpp/aspose.pdf.facades/autofiller/set_inputstream/_index.md new file mode 100644 index 0000000000..7c0b657976 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/autofiller/set_inputstream/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::AutoFiller::set_InputStream method +linktitle: set_InputStream +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::AutoFiller::set_InputStream method. Sets the input template stream. One of two input modes in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.facades/autofiller/set_inputstream/ +--- +## AutoFiller::set_InputStream method + + +Sets the input template stream. One of two input modes. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::AutoFiller::set_InputStream(System::SharedPtr value) +``` + +## Remarks + + + + Deprecated + + Use BindPdf(inputStream) method for facade initialization. + + +## See Also + +* Class [AutoFiller](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/autofiller/set_outputfilename/_index.md b/english/cpp/aspose.pdf.facades/autofiller/set_outputfilename/_index.md new file mode 100644 index 0000000000..02c22b619f --- /dev/null +++ b/english/cpp/aspose.pdf.facades/autofiller/set_outputfilename/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::AutoFiller::set_OutputFileName method +linktitle: set_OutputFileName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::AutoFiller::set_OutputFileName method. Sets the one big merged output file. One of the four output modes in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.facades/autofiller/set_outputfilename/ +--- +## AutoFiller::set_OutputFileName method + + +Sets the one big merged output file. One of the four output modes. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::AutoFiller::set_OutputFileName(System::String value) +``` + +## Remarks + + + + Deprecated + + Use Save(outputFile) method for getting facade results. + + +## See Also + +* Class [AutoFiller](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/autofiller/set_outputstream/_index.md b/english/cpp/aspose.pdf.facades/autofiller/set_outputstream/_index.md new file mode 100644 index 0000000000..742a2f1f11 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/autofiller/set_outputstream/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::AutoFiller::set_OutputStream method +linktitle: set_OutputStream +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::AutoFiller::set_OutputStream method. Sets the OutputStream. One of four output modes. Its classical use case is Response.OutputStream. Please refer to the online demo in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.facades/autofiller/set_outputstream/ +--- +## AutoFiller::set_OutputStream method + + +Sets the OutputStream. One of four output modes. Its classical use case is Response.OutputStream. Please refer to the online demo. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::AutoFiller::set_OutputStream(System::SharedPtr value) +``` + +## Remarks + + + + Deprecated + + Use Save(outputStream) method for getting facade results. + + +## See Also + +* Class [AutoFiller](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/autofiller/set_outputstreams/_index.md b/english/cpp/aspose.pdf.facades/autofiller/set_outputstreams/_index.md new file mode 100644 index 0000000000..4af265b12c --- /dev/null +++ b/english/cpp/aspose.pdf.facades/autofiller/set_outputstreams/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::AutoFiller::set_OutputStreams method +linktitle: set_OutputStreams +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::AutoFiller::set_OutputStreams method. Sets the many Output Streams. One of four output modes in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.facades/autofiller/set_outputstreams/ +--- +## AutoFiller::set_OutputStreams method + + +Sets the many Output Streams. One of four output modes. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::AutoFiller::set_OutputStreams(System::ArrayPtr> value) +``` + +## See Also + +* Class [AutoFiller](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/autofiller/set_unflattenfields/_index.md b/english/cpp/aspose.pdf.facades/autofiller/set_unflattenfields/_index.md new file mode 100644 index 0000000000..43bb556d27 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/autofiller/set_unflattenfields/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::AutoFiller::set_UnFlattenFields method +linktitle: set_UnFlattenFields +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::AutoFiller::set_UnFlattenFields method. Sets the fields which will not be flattened. If this property is not set, all the fields will be flattened in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.facades/autofiller/set_unflattenfields/ +--- +## AutoFiller::set_UnFlattenFields method + + +Sets the fields which will not be flattened. If this property is not set, all the fields will be flattened. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::AutoFiller::set_UnFlattenFields(System::ArrayPtr value) +``` + +## See Also + +* Class [AutoFiller](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/autorotatemode/_index.md b/english/cpp/aspose.pdf.facades/autorotatemode/_index.md new file mode 100644 index 0000000000..53a2ffcfdc --- /dev/null +++ b/english/cpp/aspose.pdf.facades/autorotatemode/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Facades::AutoRotateMode enum +linktitle: AutoRotateMode +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::AutoRotateMode enum. Direction of the rotation when document is printed in C++.' +type: docs +weight: 3900 +url: /cpp/aspose.pdf.facades/autorotatemode/ +--- +## AutoRotateMode enum + + +Direction of the rotation when document is printed. + +```cpp +enum class AutoRotateMode +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| None | 0 | No rotation. | +| ClockWise | 1 | Rotation direction is clockwise. | +| AntiClockWise | 2 | Rotation directon is counterclockwise. | + +## See Also + +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/bdcproperties/_index.md b/english/cpp/aspose.pdf.facades/bdcproperties/_index.md new file mode 100644 index 0000000000..692092786c --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bdcproperties/_index.md @@ -0,0 +1,33 @@ +--- +title: Aspose::Pdf::Facades::BDCProperties class +linktitle: BDCProperties +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::BDCProperties class. BDC operator properties in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.facades/bdcproperties/ +--- +## BDCProperties class + + +BDC operator properties. + +```cpp +class BDCProperties : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [BDCProperties](./bdcproperties/)(System::String, System::String) | Constructor for properties of BDC operator. | +| [BDCProperties](./bdcproperties/)(System::Nullable\, System::String, System::String) | Constructor for properties of BDC operator. | +| [get_E](./get_e/)() | Gets/sets Expansion text value. | +| [get_Lang](./get_lang/)() | Gets/sets Language value. | +| [get_MCID](./get_mcid/)() | Gets/sets MCID value. | +| [set_E](./set_e/)(System::String) | Gets/sets Expansion text value. | +| [set_Lang](./set_lang/)(System::String) | Gets/sets Language value. | +## See Also + +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/bdcproperties/bdcproperties/_index.md b/english/cpp/aspose.pdf.facades/bdcproperties/bdcproperties/_index.md new file mode 100644 index 0000000000..22918447d6 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bdcproperties/bdcproperties/_index.md @@ -0,0 +1,98 @@ +--- +title: Aspose::Pdf::Facades::BDCProperties::BDCProperties constructor +linktitle: BDCProperties +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::BDCProperties::BDCProperties constructor. Constructor for properties of BDC operator in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.facades/bdcproperties/bdcproperties/ +--- +## BDCProperties::BDCProperties(System::String, System::String) constructor + + +Constructor for properties of BDC operator. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::BDCProperties::BDCProperties(System::String lang=nullptr, System::String expansionText=nullptr) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| lang | System::String | Lang tag. | +| expansionText | System::String | Expansion text. | +## Remarks + + + + + + lang + + + Lang tag. + + + + + expansionText + + + Expansion text. + + + +## See Also + +* Class [BDCProperties](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## BDCProperties::BDCProperties(System::Nullable\, System::String, System::String) constructor + + +Constructor for properties of BDC operator. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::BDCProperties::BDCProperties(System::Nullable mcid, System::String lang=nullptr, System::String expansionText=nullptr) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| mcid | System::Nullable\ | MCID. | +| lang | System::String | Lang tag. | +| expansionText | System::String | Expansion text. | +## Remarks + + + + + + mcid + + + MCID. + + + + + lang + + + Lang tag. + + + + + expansionText + + + Expansion text. + + + +## See Also + +* Class [BDCProperties](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bdcproperties/get_e/_index.md b/english/cpp/aspose.pdf.facades/bdcproperties/get_e/_index.md new file mode 100644 index 0000000000..fc86b93765 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bdcproperties/get_e/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::BDCProperties::get_E method +linktitle: get_E +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::BDCProperties::get_E method. Gets/sets Expansion text value in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.facades/bdcproperties/get_e/ +--- +## BDCProperties::get_E method + + +Gets/sets Expansion text value. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::BDCProperties::get_E() +``` + +## See Also + +* Class [BDCProperties](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bdcproperties/get_lang/_index.md b/english/cpp/aspose.pdf.facades/bdcproperties/get_lang/_index.md new file mode 100644 index 0000000000..12bb809660 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bdcproperties/get_lang/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::BDCProperties::get_Lang method +linktitle: get_Lang +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::BDCProperties::get_Lang method. Gets/sets Language value in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.facades/bdcproperties/get_lang/ +--- +## BDCProperties::get_Lang method + + +Gets/sets Language value. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::BDCProperties::get_Lang() +``` + +## See Also + +* Class [BDCProperties](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bdcproperties/get_mcid/_index.md b/english/cpp/aspose.pdf.facades/bdcproperties/get_mcid/_index.md new file mode 100644 index 0000000000..74cfc4f28d --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bdcproperties/get_mcid/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::BDCProperties::get_MCID method +linktitle: get_MCID +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::BDCProperties::get_MCID method. Gets/sets MCID value in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.facades/bdcproperties/get_mcid/ +--- +## BDCProperties::get_MCID method + + +Gets/sets MCID value. + +```cpp +ASPOSE_PDF_SHARED_API System::Nullable Aspose::Pdf::Facades::BDCProperties::get_MCID() +``` + +## See Also + +* Class [BDCProperties](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bdcproperties/set_e/_index.md b/english/cpp/aspose.pdf.facades/bdcproperties/set_e/_index.md new file mode 100644 index 0000000000..5ca7473d6b --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bdcproperties/set_e/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::BDCProperties::set_E method +linktitle: set_E +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::BDCProperties::set_E method. Gets/sets Expansion text value in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.facades/bdcproperties/set_e/ +--- +## BDCProperties::set_E method + + +Gets/sets Expansion text value. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::BDCProperties::set_E(System::String value) +``` + +## See Also + +* Class [BDCProperties](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bdcproperties/set_lang/_index.md b/english/cpp/aspose.pdf.facades/bdcproperties/set_lang/_index.md new file mode 100644 index 0000000000..2f02ce4da6 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bdcproperties/set_lang/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::BDCProperties::set_Lang method +linktitle: set_Lang +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::BDCProperties::set_Lang method. Gets/sets Language value in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.facades/bdcproperties/set_lang/ +--- +## BDCProperties::set_Lang method + + +Gets/sets Language value. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::BDCProperties::set_Lang(System::String value) +``` + +## See Also + +* Class [BDCProperties](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/blendingcolorspace/_index.md b/english/cpp/aspose.pdf.facades/blendingcolorspace/_index.md new file mode 100644 index 0000000000..212b8d7617 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/blendingcolorspace/_index.md @@ -0,0 +1,31 @@ +--- +title: Aspose::Pdf::Facades::BlendingColorSpace enum +linktitle: BlendingColorSpace +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::BlendingColorSpace enum. Class represents blending color space in C++.' +type: docs +weight: 4000 +url: /cpp/aspose.pdf.facades/blendingcolorspace/ +--- +## BlendingColorSpace enum + + +Class represents blending color space. + +```cpp +enum class BlendingColorSpace +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| DontChange | 0 | The blending color space is not changed. | +| Auto | 1 | The blending color space is determined automatically. | +| DeviceRGB | 2 | Blending color space is set to DeviceRGB. | +| DeviceCMYK | 3 | Blending color space is set to DeviceCMYK. | + +## See Also + +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/bookmark/_index.md b/english/cpp/aspose.pdf.facades/bookmark/_index.md new file mode 100644 index 0000000000..ab2b34ef15 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bookmark/_index.md @@ -0,0 +1,64 @@ +--- +title: Aspose::Pdf::Facades::Bookmark class +linktitle: Bookmark +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Bookmark class. Represents a bookmark in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.facades/bookmark/ +--- +## Bookmark class + + +Represents a bookmark. + +```cpp +class Bookmark : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Bookmark](./bookmark/)() | Initializes a new instance of the [Bookmark](./) class. | +| [CompareTo](./compareto/)(const System::SharedPtr\\&) | | +| [get_Action](./get_action/)() const | Gets the action bound with the bookmark. If PageNumber is presented the action can not be specified. The action type includes: "GoTo", "GoToR", "Launch", "Named". | +| [get_BoldFlag](./get_boldflag/)() const | Gets the bold flag of bookmark's title. | +| [get_ChildItem](./get_childitem/)() | Gets bookmark's children. | +| [get_ChildItems](./get_childitems/)() const | Gets bookmark's children. | +| [get_Destination](./get_destination/)() const | Gets bookmark's destination page. Required if action is set as string.Empty. | +| [get_ItalicFlag](./get_italicflag/)() const | Gets the italic flag of bookmark's title. | +| [get_Level](./get_level/)() const | Gets bookmark's hierarchy level. | +| [get_Open](./get_open/)() const | Gets bookmark state (open, close). | +| [get_PageDisplay](./get_pagedisplay/)() const | Gets the type of display bookmark's destination page. | +| [get_PageDisplay_Bottom](./get_pagedisplay_bottom/)() const | Gets the bottom coordinate of page display. | +| [get_PageDisplay_Left](./get_pagedisplay_left/)() const | Gets the left coordinate of page display. | +| [get_PageDisplay_Right](./get_pagedisplay_right/)() const | Gets the right coordinate of page display. | +| [get_PageDisplay_Top](./get_pagedisplay_top/)() const | Gets the top coordinate of page display. | +| [get_PageDisplay_Zoom](./get_pagedisplay_zoom/)() const | Gets the zoom factor of page display. | +| [get_PageNumber](./get_pagenumber/)() const | Gets the number of bookmark's destination page. | +| [get_RemoteFile](./get_remotefile/)() const | Gets the file (path) which is required for "GoToR" action of bookmark. | +| [get_Title](./get_title/)() const | Gets bookmark's title. | +| [get_TitleColor](./get_titlecolor/)() const | Gets the color of bookmark's title. | +| [set_Action](./set_action/)(System::String) | Sets the action bound with the bookmark. If PageNumber is presented the action can not be specified. The action type includes: "GoTo", "GoToR", "Launch", "Named". | +| [set_BoldFlag](./set_boldflag/)(bool) | Sets the bold flag of bookmark's title. | +| [set_ChildItem](./set_childitem/)(System::SharedPtr\) | Sets bookmark's children. | +| [set_ChildItems](./set_childitems/)(System::SharedPtr\) | Sets bookmark's children. | +| [set_Destination](./set_destination/)(System::String) | Sets bookmark's destination page. Required if action is set as string.Empty. | +| [set_ItalicFlag](./set_italicflag/)(bool) | Sets the italic flag of bookmark's title. | +| [set_Level](./set_level/)(int32_t) | Sets bookmark's hierarchy level. | +| [set_Open](./set_open/)(bool) | Sets bookmark state (open, close). | +| [set_PageDisplay](./set_pagedisplay/)(System::String) | Sets the type of display bookmark's destination page. | +| [set_PageDisplay_Bottom](./set_pagedisplay_bottom/)(int32_t) | Sets the bottom coordinate of page display. | +| [set_PageDisplay_Left](./set_pagedisplay_left/)(int32_t) | Sets the left coordinate of page display. | +| [set_PageDisplay_Right](./set_pagedisplay_right/)(int32_t) | Sets the right coordinate of page display. | +| [set_PageDisplay_Top](./set_pagedisplay_top/)(int32_t) | Sets the top coordinate of page display. | +| [set_PageDisplay_Zoom](./set_pagedisplay_zoom/)(int32_t) | Sets the zoom factor of page display. | +| [set_PageNumber](./set_pagenumber/)(int32_t) | Sets the number of bookmark's destination page. | +| [set_RemoteFile](./set_remotefile/)(System::String) | Sets the file (path) which is required for "GoToR" action of bookmark. | +| [set_Title](./set_title/)(System::String) | Sets bookmark's title. | +| [set_TitleColor](./set_titlecolor/)(System::Drawing::Color) | Sets the color of bookmark's title. | +## See Also + +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/bookmark/bookmark/_index.md b/english/cpp/aspose.pdf.facades/bookmark/bookmark/_index.md new file mode 100644 index 0000000000..842e928fd9 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bookmark/bookmark/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Bookmark::Bookmark constructor +linktitle: Bookmark +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Bookmark::Bookmark constructor. Initializes a new instance of the Bookmark class in C++.' +type: docs +weight: 3700 +url: /cpp/aspose.pdf.facades/bookmark/bookmark/ +--- +## Bookmark::Bookmark constructor + + +Initializes a new instance of the [Bookmark](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::Bookmark::Bookmark() +``` + +## See Also + +* Class [Bookmark](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bookmark/compareto/_index.md b/english/cpp/aspose.pdf.facades/bookmark/compareto/_index.md new file mode 100644 index 0000000000..fcc8901856 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bookmark/compareto/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::Bookmark::CompareTo method +linktitle: CompareTo +second_title: Aspose.PDF for C++ API Reference +description: 'How to use CompareTo method of Aspose::Pdf::Facades::Bookmark class in C++.' +type: docs +weight: 3800 +url: /cpp/aspose.pdf.facades/bookmark/compareto/ +--- +## Bookmark::CompareTo method + + + + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::Bookmark::CompareTo(const System::SharedPtr &value) +``` + +## See Also + +* Class [Bookmark](../) +* Class [Bookmark](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bookmark/get_action/_index.md b/english/cpp/aspose.pdf.facades/bookmark/get_action/_index.md new file mode 100644 index 0000000000..6a06b7459a --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bookmark/get_action/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Bookmark::get_Action method +linktitle: get_Action +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Bookmark::get_Action method. Gets the action bound with the bookmark. If PageNumber is presented the action can not be specified. The action type includes: "GoTo", "GoToR", "Launch", "Named" in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.facades/bookmark/get_action/ +--- +## Bookmark::get_Action method + + +Gets the action bound with the bookmark. If PageNumber is presented the action can not be specified. The action type includes: "GoTo", "GoToR", "Launch", "Named". + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::Bookmark::get_Action() const +``` + +## See Also + +* Class [Bookmark](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bookmark/get_boldflag/_index.md b/english/cpp/aspose.pdf.facades/bookmark/get_boldflag/_index.md new file mode 100644 index 0000000000..659924e11c --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bookmark/get_boldflag/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Bookmark::get_BoldFlag method +linktitle: get_BoldFlag +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Bookmark::get_BoldFlag method. Gets the bold flag of bookmark''s title in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.facades/bookmark/get_boldflag/ +--- +## Bookmark::get_BoldFlag method + + +Gets the bold flag of bookmark's title. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::Bookmark::get_BoldFlag() const +``` + +## See Also + +* Class [Bookmark](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bookmark/get_childitem/_index.md b/english/cpp/aspose.pdf.facades/bookmark/get_childitem/_index.md new file mode 100644 index 0000000000..2dd2136caa --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bookmark/get_childitem/_index.md @@ -0,0 +1,33 @@ +--- +title: Aspose::Pdf::Facades::Bookmark::get_ChildItem method +linktitle: get_ChildItem +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Bookmark::get_ChildItem method. Gets bookmark''s children in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.facades/bookmark/get_childitem/ +--- +## Bookmark::get_ChildItem method + + +Gets bookmark's children. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::Bookmark::get_ChildItem() +``` + +## Remarks + + + + Deprecated + + Use ChildItems property instead of this one. + + +## See Also + +* Class [Bookmarks](../../bookmarks/) +* Class [Bookmark](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bookmark/get_childitems/_index.md b/english/cpp/aspose.pdf.facades/bookmark/get_childitems/_index.md new file mode 100644 index 0000000000..4a53f68099 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bookmark/get_childitems/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::Bookmark::get_ChildItems method +linktitle: get_ChildItems +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Bookmark::get_ChildItems method. Gets bookmark''s children in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.facades/bookmark/get_childitems/ +--- +## Bookmark::get_ChildItems method + + +Gets bookmark's children. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::Bookmark::get_ChildItems() const +``` + +## See Also + +* Class [Bookmarks](../../bookmarks/) +* Class [Bookmark](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bookmark/get_destination/_index.md b/english/cpp/aspose.pdf.facades/bookmark/get_destination/_index.md new file mode 100644 index 0000000000..de3f674f01 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bookmark/get_destination/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Bookmark::get_Destination method +linktitle: get_Destination +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Bookmark::get_Destination method. Gets bookmark''s destination page. Required if action is set as string.Empty in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.facades/bookmark/get_destination/ +--- +## Bookmark::get_Destination method + + +Gets bookmark's destination page. Required if action is set as string.Empty. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::Bookmark::get_Destination() const +``` + +## See Also + +* Class [Bookmark](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bookmark/get_italicflag/_index.md b/english/cpp/aspose.pdf.facades/bookmark/get_italicflag/_index.md new file mode 100644 index 0000000000..bac326b421 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bookmark/get_italicflag/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Bookmark::get_ItalicFlag method +linktitle: get_ItalicFlag +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Bookmark::get_ItalicFlag method. Gets the italic flag of bookmark''s title in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.facades/bookmark/get_italicflag/ +--- +## Bookmark::get_ItalicFlag method + + +Gets the italic flag of bookmark's title. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::Bookmark::get_ItalicFlag() const +``` + +## See Also + +* Class [Bookmark](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bookmark/get_level/_index.md b/english/cpp/aspose.pdf.facades/bookmark/get_level/_index.md new file mode 100644 index 0000000000..87b76c85d5 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bookmark/get_level/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Bookmark::get_Level method +linktitle: get_Level +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Bookmark::get_Level method. Gets bookmark''s hierarchy level in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.facades/bookmark/get_level/ +--- +## Bookmark::get_Level method + + +Gets bookmark's hierarchy level. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::Bookmark::get_Level() const +``` + +## See Also + +* Class [Bookmark](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bookmark/get_open/_index.md b/english/cpp/aspose.pdf.facades/bookmark/get_open/_index.md new file mode 100644 index 0000000000..3077b033e8 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bookmark/get_open/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Bookmark::get_Open method +linktitle: get_Open +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Bookmark::get_Open method. Gets bookmark state (open, close) in C++.' +type: docs +weight: 3500 +url: /cpp/aspose.pdf.facades/bookmark/get_open/ +--- +## Bookmark::get_Open method + + +Gets bookmark state (open, close). + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::Bookmark::get_Open() const +``` + +## See Also + +* Class [Bookmark](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bookmark/get_pagedisplay/_index.md b/english/cpp/aspose.pdf.facades/bookmark/get_pagedisplay/_index.md new file mode 100644 index 0000000000..e0c5534a93 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bookmark/get_pagedisplay/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Bookmark::get_PageDisplay method +linktitle: get_PageDisplay +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Bookmark::get_PageDisplay method. Gets the type of display bookmark''s destination page in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.facades/bookmark/get_pagedisplay/ +--- +## Bookmark::get_PageDisplay method + + +Gets the type of display bookmark's destination page. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::Bookmark::get_PageDisplay() const +``` + +## See Also + +* Class [Bookmark](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bookmark/get_pagedisplay_bottom/_index.md b/english/cpp/aspose.pdf.facades/bookmark/get_pagedisplay_bottom/_index.md new file mode 100644 index 0000000000..113a01883b --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bookmark/get_pagedisplay_bottom/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Bookmark::get_PageDisplay_Bottom method +linktitle: get_PageDisplay_Bottom +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Bookmark::get_PageDisplay_Bottom method. Gets the bottom coordinate of page display in C++.' +type: docs +weight: 1700 +url: /cpp/aspose.pdf.facades/bookmark/get_pagedisplay_bottom/ +--- +## Bookmark::get_PageDisplay_Bottom method + + +Gets the bottom coordinate of page display. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::Bookmark::get_PageDisplay_Bottom() const +``` + +## See Also + +* Class [Bookmark](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bookmark/get_pagedisplay_left/_index.md b/english/cpp/aspose.pdf.facades/bookmark/get_pagedisplay_left/_index.md new file mode 100644 index 0000000000..43e6a2445b --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bookmark/get_pagedisplay_left/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Bookmark::get_PageDisplay_Left method +linktitle: get_PageDisplay_Left +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Bookmark::get_PageDisplay_Left method. Gets the left coordinate of page display in C++.' +type: docs +weight: 1900 +url: /cpp/aspose.pdf.facades/bookmark/get_pagedisplay_left/ +--- +## Bookmark::get_PageDisplay_Left method + + +Gets the left coordinate of page display. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::Bookmark::get_PageDisplay_Left() const +``` + +## See Also + +* Class [Bookmark](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bookmark/get_pagedisplay_right/_index.md b/english/cpp/aspose.pdf.facades/bookmark/get_pagedisplay_right/_index.md new file mode 100644 index 0000000000..689fab19f6 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bookmark/get_pagedisplay_right/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Bookmark::get_PageDisplay_Right method +linktitle: get_PageDisplay_Right +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Bookmark::get_PageDisplay_Right method. Gets the right coordinate of page display in C++.' +type: docs +weight: 2100 +url: /cpp/aspose.pdf.facades/bookmark/get_pagedisplay_right/ +--- +## Bookmark::get_PageDisplay_Right method + + +Gets the right coordinate of page display. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::Bookmark::get_PageDisplay_Right() const +``` + +## See Also + +* Class [Bookmark](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bookmark/get_pagedisplay_top/_index.md b/english/cpp/aspose.pdf.facades/bookmark/get_pagedisplay_top/_index.md new file mode 100644 index 0000000000..e233567977 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bookmark/get_pagedisplay_top/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Bookmark::get_PageDisplay_Top method +linktitle: get_PageDisplay_Top +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Bookmark::get_PageDisplay_Top method. Gets the top coordinate of page display in C++.' +type: docs +weight: 2300 +url: /cpp/aspose.pdf.facades/bookmark/get_pagedisplay_top/ +--- +## Bookmark::get_PageDisplay_Top method + + +Gets the top coordinate of page display. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::Bookmark::get_PageDisplay_Top() const +``` + +## See Also + +* Class [Bookmark](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bookmark/get_pagedisplay_zoom/_index.md b/english/cpp/aspose.pdf.facades/bookmark/get_pagedisplay_zoom/_index.md new file mode 100644 index 0000000000..18bbc8b6ad --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bookmark/get_pagedisplay_zoom/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Bookmark::get_PageDisplay_Zoom method +linktitle: get_PageDisplay_Zoom +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Bookmark::get_PageDisplay_Zoom method. Gets the zoom factor of page display in C++.' +type: docs +weight: 2500 +url: /cpp/aspose.pdf.facades/bookmark/get_pagedisplay_zoom/ +--- +## Bookmark::get_PageDisplay_Zoom method + + +Gets the zoom factor of page display. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::Bookmark::get_PageDisplay_Zoom() const +``` + +## See Also + +* Class [Bookmark](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bookmark/get_pagenumber/_index.md b/english/cpp/aspose.pdf.facades/bookmark/get_pagenumber/_index.md new file mode 100644 index 0000000000..528b4f608c --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bookmark/get_pagenumber/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Bookmark::get_PageNumber method +linktitle: get_PageNumber +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Bookmark::get_PageNumber method. Gets the number of bookmark''s destination page in C++.' +type: docs +weight: 2700 +url: /cpp/aspose.pdf.facades/bookmark/get_pagenumber/ +--- +## Bookmark::get_PageNumber method + + +Gets the number of bookmark's destination page. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::Bookmark::get_PageNumber() const +``` + +## See Also + +* Class [Bookmark](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bookmark/get_remotefile/_index.md b/english/cpp/aspose.pdf.facades/bookmark/get_remotefile/_index.md new file mode 100644 index 0000000000..3c34e59749 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bookmark/get_remotefile/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Bookmark::get_RemoteFile method +linktitle: get_RemoteFile +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Bookmark::get_RemoteFile method. Gets the file (path) which is required for "GoToR" action of bookmark in C++.' +type: docs +weight: 2900 +url: /cpp/aspose.pdf.facades/bookmark/get_remotefile/ +--- +## Bookmark::get_RemoteFile method + + +Gets the file (path) which is required for "GoToR" action of bookmark. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::Bookmark::get_RemoteFile() const +``` + +## See Also + +* Class [Bookmark](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bookmark/get_title/_index.md b/english/cpp/aspose.pdf.facades/bookmark/get_title/_index.md new file mode 100644 index 0000000000..c861150c6a --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bookmark/get_title/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Bookmark::get_Title method +linktitle: get_Title +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Bookmark::get_Title method. Gets bookmark''s title in C++.' +type: docs +weight: 3100 +url: /cpp/aspose.pdf.facades/bookmark/get_title/ +--- +## Bookmark::get_Title method + + +Gets bookmark's title. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::Bookmark::get_Title() const +``` + +## See Also + +* Class [Bookmark](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bookmark/get_titlecolor/_index.md b/english/cpp/aspose.pdf.facades/bookmark/get_titlecolor/_index.md new file mode 100644 index 0000000000..4cc2a3688e --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bookmark/get_titlecolor/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Bookmark::get_TitleColor method +linktitle: get_TitleColor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Bookmark::get_TitleColor method. Gets the color of bookmark''s title in C++.' +type: docs +weight: 3300 +url: /cpp/aspose.pdf.facades/bookmark/get_titlecolor/ +--- +## Bookmark::get_TitleColor method + + +Gets the color of bookmark's title. + +```cpp +ASPOSE_PDF_SHARED_API System::Drawing::Color Aspose::Pdf::Facades::Bookmark::get_TitleColor() const +``` + +## See Also + +* Class [Bookmark](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bookmark/set_action/_index.md b/english/cpp/aspose.pdf.facades/bookmark/set_action/_index.md new file mode 100644 index 0000000000..1cf7d28552 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bookmark/set_action/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Bookmark::set_Action method +linktitle: set_Action +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Bookmark::set_Action method. Sets the action bound with the bookmark. If PageNumber is presented the action can not be specified. The action type includes: "GoTo", "GoToR", "Launch", "Named" in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.facades/bookmark/set_action/ +--- +## Bookmark::set_Action method + + +Sets the action bound with the bookmark. If PageNumber is presented the action can not be specified. The action type includes: "GoTo", "GoToR", "Launch", "Named". + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Bookmark::set_Action(System::String value) +``` + +## See Also + +* Class [Bookmark](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bookmark/set_boldflag/_index.md b/english/cpp/aspose.pdf.facades/bookmark/set_boldflag/_index.md new file mode 100644 index 0000000000..cb424ebf8f --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bookmark/set_boldflag/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Bookmark::set_BoldFlag method +linktitle: set_BoldFlag +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Bookmark::set_BoldFlag method. Sets the bold flag of bookmark''s title in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.facades/bookmark/set_boldflag/ +--- +## Bookmark::set_BoldFlag method + + +Sets the bold flag of bookmark's title. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Bookmark::set_BoldFlag(bool value) +``` + +## See Also + +* Class [Bookmark](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bookmark/set_childitem/_index.md b/english/cpp/aspose.pdf.facades/bookmark/set_childitem/_index.md new file mode 100644 index 0000000000..90b3ecd921 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bookmark/set_childitem/_index.md @@ -0,0 +1,33 @@ +--- +title: Aspose::Pdf::Facades::Bookmark::set_ChildItem method +linktitle: set_ChildItem +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Bookmark::set_ChildItem method. Sets bookmark''s children in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.facades/bookmark/set_childitem/ +--- +## Bookmark::set_ChildItem method + + +Sets bookmark's children. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Bookmark::set_ChildItem(System::SharedPtr value) +``` + +## Remarks + + + + Deprecated + + Use ChildItems property instead of this one. + + +## See Also + +* Class [Bookmarks](../../bookmarks/) +* Class [Bookmark](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bookmark/set_childitems/_index.md b/english/cpp/aspose.pdf.facades/bookmark/set_childitems/_index.md new file mode 100644 index 0000000000..e3c4a4fc65 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bookmark/set_childitems/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::Bookmark::set_ChildItems method +linktitle: set_ChildItems +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Bookmark::set_ChildItems method. Sets bookmark''s children in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.facades/bookmark/set_childitems/ +--- +## Bookmark::set_ChildItems method + + +Sets bookmark's children. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Bookmark::set_ChildItems(System::SharedPtr value) +``` + +## See Also + +* Class [Bookmarks](../../bookmarks/) +* Class [Bookmark](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bookmark/set_destination/_index.md b/english/cpp/aspose.pdf.facades/bookmark/set_destination/_index.md new file mode 100644 index 0000000000..1740059341 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bookmark/set_destination/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Bookmark::set_Destination method +linktitle: set_Destination +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Bookmark::set_Destination method. Sets bookmark''s destination page. Required if action is set as string.Empty in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.facades/bookmark/set_destination/ +--- +## Bookmark::set_Destination method + + +Sets bookmark's destination page. Required if action is set as string.Empty. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Bookmark::set_Destination(System::String value) +``` + +## See Also + +* Class [Bookmark](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bookmark/set_italicflag/_index.md b/english/cpp/aspose.pdf.facades/bookmark/set_italicflag/_index.md new file mode 100644 index 0000000000..9e5bea0f4e --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bookmark/set_italicflag/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Bookmark::set_ItalicFlag method +linktitle: set_ItalicFlag +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Bookmark::set_ItalicFlag method. Sets the italic flag of bookmark''s title in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.facades/bookmark/set_italicflag/ +--- +## Bookmark::set_ItalicFlag method + + +Sets the italic flag of bookmark's title. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Bookmark::set_ItalicFlag(bool value) +``` + +## See Also + +* Class [Bookmark](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bookmark/set_level/_index.md b/english/cpp/aspose.pdf.facades/bookmark/set_level/_index.md new file mode 100644 index 0000000000..d58fefbdb1 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bookmark/set_level/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Bookmark::set_Level method +linktitle: set_Level +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Bookmark::set_Level method. Sets bookmark''s hierarchy level in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.facades/bookmark/set_level/ +--- +## Bookmark::set_Level method + + +Sets bookmark's hierarchy level. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Bookmark::set_Level(int32_t value) +``` + +## See Also + +* Class [Bookmark](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bookmark/set_open/_index.md b/english/cpp/aspose.pdf.facades/bookmark/set_open/_index.md new file mode 100644 index 0000000000..936383f737 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bookmark/set_open/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Bookmark::set_Open method +linktitle: set_Open +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Bookmark::set_Open method. Sets bookmark state (open, close) in C++.' +type: docs +weight: 3600 +url: /cpp/aspose.pdf.facades/bookmark/set_open/ +--- +## Bookmark::set_Open method + + +Sets bookmark state (open, close). + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Bookmark::set_Open(bool value) +``` + +## See Also + +* Class [Bookmark](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bookmark/set_pagedisplay/_index.md b/english/cpp/aspose.pdf.facades/bookmark/set_pagedisplay/_index.md new file mode 100644 index 0000000000..8e359579ba --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bookmark/set_pagedisplay/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Bookmark::set_PageDisplay method +linktitle: set_PageDisplay +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Bookmark::set_PageDisplay method. Sets the type of display bookmark''s destination page in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf.facades/bookmark/set_pagedisplay/ +--- +## Bookmark::set_PageDisplay method + + +Sets the type of display bookmark's destination page. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Bookmark::set_PageDisplay(System::String value) +``` + +## See Also + +* Class [Bookmark](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bookmark/set_pagedisplay_bottom/_index.md b/english/cpp/aspose.pdf.facades/bookmark/set_pagedisplay_bottom/_index.md new file mode 100644 index 0000000000..baae421224 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bookmark/set_pagedisplay_bottom/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Bookmark::set_PageDisplay_Bottom method +linktitle: set_PageDisplay_Bottom +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Bookmark::set_PageDisplay_Bottom method. Sets the bottom coordinate of page display in C++.' +type: docs +weight: 1800 +url: /cpp/aspose.pdf.facades/bookmark/set_pagedisplay_bottom/ +--- +## Bookmark::set_PageDisplay_Bottom method + + +Sets the bottom coordinate of page display. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Bookmark::set_PageDisplay_Bottom(int32_t value) +``` + +## See Also + +* Class [Bookmark](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bookmark/set_pagedisplay_left/_index.md b/english/cpp/aspose.pdf.facades/bookmark/set_pagedisplay_left/_index.md new file mode 100644 index 0000000000..596f8be703 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bookmark/set_pagedisplay_left/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Bookmark::set_PageDisplay_Left method +linktitle: set_PageDisplay_Left +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Bookmark::set_PageDisplay_Left method. Sets the left coordinate of page display in C++.' +type: docs +weight: 2000 +url: /cpp/aspose.pdf.facades/bookmark/set_pagedisplay_left/ +--- +## Bookmark::set_PageDisplay_Left method + + +Sets the left coordinate of page display. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Bookmark::set_PageDisplay_Left(int32_t value) +``` + +## See Also + +* Class [Bookmark](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bookmark/set_pagedisplay_right/_index.md b/english/cpp/aspose.pdf.facades/bookmark/set_pagedisplay_right/_index.md new file mode 100644 index 0000000000..89299b8d37 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bookmark/set_pagedisplay_right/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Bookmark::set_PageDisplay_Right method +linktitle: set_PageDisplay_Right +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Bookmark::set_PageDisplay_Right method. Sets the right coordinate of page display in C++.' +type: docs +weight: 2200 +url: /cpp/aspose.pdf.facades/bookmark/set_pagedisplay_right/ +--- +## Bookmark::set_PageDisplay_Right method + + +Sets the right coordinate of page display. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Bookmark::set_PageDisplay_Right(int32_t value) +``` + +## See Also + +* Class [Bookmark](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bookmark/set_pagedisplay_top/_index.md b/english/cpp/aspose.pdf.facades/bookmark/set_pagedisplay_top/_index.md new file mode 100644 index 0000000000..e16356f7d5 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bookmark/set_pagedisplay_top/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Bookmark::set_PageDisplay_Top method +linktitle: set_PageDisplay_Top +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Bookmark::set_PageDisplay_Top method. Sets the top coordinate of page display in C++.' +type: docs +weight: 2400 +url: /cpp/aspose.pdf.facades/bookmark/set_pagedisplay_top/ +--- +## Bookmark::set_PageDisplay_Top method + + +Sets the top coordinate of page display. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Bookmark::set_PageDisplay_Top(int32_t value) +``` + +## See Also + +* Class [Bookmark](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bookmark/set_pagedisplay_zoom/_index.md b/english/cpp/aspose.pdf.facades/bookmark/set_pagedisplay_zoom/_index.md new file mode 100644 index 0000000000..d2c818c14d --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bookmark/set_pagedisplay_zoom/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Bookmark::set_PageDisplay_Zoom method +linktitle: set_PageDisplay_Zoom +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Bookmark::set_PageDisplay_Zoom method. Sets the zoom factor of page display in C++.' +type: docs +weight: 2600 +url: /cpp/aspose.pdf.facades/bookmark/set_pagedisplay_zoom/ +--- +## Bookmark::set_PageDisplay_Zoom method + + +Sets the zoom factor of page display. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Bookmark::set_PageDisplay_Zoom(int32_t value) +``` + +## See Also + +* Class [Bookmark](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bookmark/set_pagenumber/_index.md b/english/cpp/aspose.pdf.facades/bookmark/set_pagenumber/_index.md new file mode 100644 index 0000000000..5aba4f6732 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bookmark/set_pagenumber/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Bookmark::set_PageNumber method +linktitle: set_PageNumber +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Bookmark::set_PageNumber method. Sets the number of bookmark''s destination page in C++.' +type: docs +weight: 2800 +url: /cpp/aspose.pdf.facades/bookmark/set_pagenumber/ +--- +## Bookmark::set_PageNumber method + + +Sets the number of bookmark's destination page. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Bookmark::set_PageNumber(int32_t value) +``` + +## See Also + +* Class [Bookmark](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bookmark/set_remotefile/_index.md b/english/cpp/aspose.pdf.facades/bookmark/set_remotefile/_index.md new file mode 100644 index 0000000000..cf126611f6 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bookmark/set_remotefile/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Bookmark::set_RemoteFile method +linktitle: set_RemoteFile +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Bookmark::set_RemoteFile method. Sets the file (path) which is required for "GoToR" action of bookmark in C++.' +type: docs +weight: 3000 +url: /cpp/aspose.pdf.facades/bookmark/set_remotefile/ +--- +## Bookmark::set_RemoteFile method + + +Sets the file (path) which is required for "GoToR" action of bookmark. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Bookmark::set_RemoteFile(System::String value) +``` + +## See Also + +* Class [Bookmark](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bookmark/set_title/_index.md b/english/cpp/aspose.pdf.facades/bookmark/set_title/_index.md new file mode 100644 index 0000000000..da46d73bdb --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bookmark/set_title/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Bookmark::set_Title method +linktitle: set_Title +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Bookmark::set_Title method. Sets bookmark''s title in C++.' +type: docs +weight: 3200 +url: /cpp/aspose.pdf.facades/bookmark/set_title/ +--- +## Bookmark::set_Title method + + +Sets bookmark's title. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Bookmark::set_Title(System::String value) +``` + +## See Also + +* Class [Bookmark](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bookmark/set_titlecolor/_index.md b/english/cpp/aspose.pdf.facades/bookmark/set_titlecolor/_index.md new file mode 100644 index 0000000000..3c5186d9f7 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bookmark/set_titlecolor/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Bookmark::set_TitleColor method +linktitle: set_TitleColor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Bookmark::set_TitleColor method. Sets the color of bookmark''s title in C++.' +type: docs +weight: 3400 +url: /cpp/aspose.pdf.facades/bookmark/set_titlecolor/ +--- +## Bookmark::set_TitleColor method + + +Sets the color of bookmark's title. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Bookmark::set_TitleColor(System::Drawing::Color value) +``` + +## See Also + +* Class [Bookmark](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/bookmarks/_index.md b/english/cpp/aspose.pdf.facades/bookmarks/_index.md new file mode 100644 index 0000000000..d7d4f93915 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bookmarks/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Facades::Bookmarks class +linktitle: Bookmarks +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Bookmarks class. Represents a collection of Bookmark objects in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.facades/bookmarks/ +--- +## Bookmarks class + + +Represents a collection of [Bookmark](../bookmark/) objects. + +```cpp +class Bookmarks : public System::Collections::Generic::List> +``` + +## Methods + +| Method | Description | +| --- | --- | +| [SetTemplateWeakPtr](./settemplateweakptr/)(uint32_t) override | Set n'th template argument a weak pointer (rather than shared). Allows switching pointers in containers to weak mode. | +## See Also + +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/bookmarks/settemplateweakptr/_index.md b/english/cpp/aspose.pdf.facades/bookmarks/settemplateweakptr/_index.md new file mode 100644 index 0000000000..e43a53abfe --- /dev/null +++ b/english/cpp/aspose.pdf.facades/bookmarks/settemplateweakptr/_index.md @@ -0,0 +1,40 @@ +--- +title: Aspose::Pdf::Facades::Bookmarks::SetTemplateWeakPtr method +linktitle: SetTemplateWeakPtr +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Bookmarks::SetTemplateWeakPtr method. Set n''th template argument a weak pointer (rather than shared). Allows switching pointers in containers to weak mode in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.facades/bookmarks/settemplateweakptr/ +--- +## Bookmarks::SetTemplateWeakPtr method + + +Set n'th template argument a weak pointer (rather than shared). Allows switching pointers in containers to weak mode. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Bookmarks::SetTemplateWeakPtr(uint32_t argument) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| argument | uint32_t | Index of template argument to treat as weak poiner. | +## Remarks + + + + + + argument + + + Index of template argument to treat as weak poiner. + + + +## See Also + +* Class [Bookmarks](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/datatype/_index.md b/english/cpp/aspose.pdf.facades/datatype/_index.md new file mode 100644 index 0000000000..b936f65604 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/datatype/_index.md @@ -0,0 +1,33 @@ +--- +title: Aspose::Pdf::Facades::DataType enum +linktitle: DataType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::DataType enum. Enumerates field types definitions in C++.' +type: docs +weight: 4100 +url: /cpp/aspose.pdf.facades/datatype/ +--- +## DataType enum + + +Enumerates field types definitions. + +```cpp +enum class DataType +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| FDF | 0 | FDF stream. | +| XML | 1 | XML stream. | +| XFDF | 2 | XFDF stream. | +| PDF | 3 | PDF stream. | +| OLEDB | 4 | OLEDB database, such as MS Access. | +| ODBC | 5 | ODBC database, such as MS SQL Server. | + +## See Also + +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/defaultmetadataproperties/_index.md b/english/cpp/aspose.pdf.facades/defaultmetadataproperties/_index.md new file mode 100644 index 0000000000..5df83c4040 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/defaultmetadataproperties/_index.md @@ -0,0 +1,36 @@ +--- +title: Aspose::Pdf::Facades::DefaultMetadataProperties enum +linktitle: DefaultMetadataProperties +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::DefaultMetadataProperties enum. Enumeration of standard XMP properties in C++.' +type: docs +weight: 4200 +url: /cpp/aspose.pdf.facades/defaultmetadataproperties/ +--- +## DefaultMetadataProperties enum + + +Enumeration of standard XMP properties. + +```cpp +enum class DefaultMetadataProperties +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Advisory | 0 | xmp:Advisory property. An unordered array specifying properties that were edited outside the authoring application. Each item should contain a single /// namespace and XPath separated by one ASCII space | +| BaseURL | 1 | xmp:BaseURL property. The base URL for relative URLs in the document content. If this document contains Internet links, and those links are relative, /// they are relative to this base URL. This property provides a standard way for embedded relative URLs to be interpreted by tools. /// Web authoring tools should set the value based on their notion of where URLs will be interpreted | +| CreateDate | 2 | xmp:CreateDate property. The date and time the resource was originally created. | +| CreatorTool | 3 | xmp:CreatorTool property. The name of the first known tool used to create the resource. | +| Identifier | 4 | xmp:Identifier property. An unordered array of text strings that unambiguously identify the resource within a given context | +| MetadataDate | 5 | xmp:MetadataDate property. The date and time that any metadata for this resource was last changed | +| ModifyDate | 6 | xmp:ModifyDate property. The date and time the resource was last modified. | +| Nickname | 7 | xmp:Nickname property. A short informal name for the resource. | +| Thumbnails | 8 | xmp:Thumbnails property. An alternative array of thumbnail images for a file, which can differ in characteristics such as size or image encoding. | + +## See Also + +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/documentprivilege/_index.md b/english/cpp/aspose.pdf.facades/documentprivilege/_index.md new file mode 100644 index 0000000000..b88d827d2e --- /dev/null +++ b/english/cpp/aspose.pdf.facades/documentprivilege/_index.md @@ -0,0 +1,56 @@ +--- +title: Aspose::Pdf::Facades::DocumentPrivilege class +linktitle: DocumentPrivilege +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::DocumentPrivilege class. Represents the privileges for accessing Pdf file. Refer toPdfFileSecurity. There are 4 ways using this class: 1.Using predefined privilege directly. 2.Based on a predefined privilege and change some specifical permissions. 3.Based on a predefined privilege and change some specifical Adobe Professional permissions combination. 4.Mixes the way2 and way3 in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.facades/documentprivilege/ +--- +## DocumentPrivilege class + + +Represents the privileges for accessing [Pdf](../../aspose.pdf/) file. Refer to[PdfFileSecurity](../pdffilesecurity/). There are 4 ways using this class: 1.Using predefined privilege directly. 2.Based on a predefined privilege and change some specifical permissions. 3.Based on a predefined privilege and change some specifical Adobe Professional permissions combination. 4.Mixes the way2 and way3. + +```cpp +class DocumentPrivilege : public System::IComparable> +``` + +## Methods + +| Method | Description | +| --- | --- | +| [CompareTo](./compareto/)(System::SharedPtr\) override | Compares two [DocumentPrivilege](./) objects. | +| static [get_AllowAll](./get_allowall/)() | All allowed. | +| [get_AllowAssembly](./get_allowassembly/)() | Sets the permission which allow assembly or not. true is allow and false is forbidden. | +| [get_AllowCopy](./get_allowcopy/)() | Sets the permission which allow copy or not. true is allow and false is forbidden. | +| [get_AllowDegradedPrinting](./get_allowdegradedprinting/)() | Sets the permission which allow degraded printing or not. true is allow and false is forbidden. | +| [get_AllowFillIn](./get_allowfillin/)() | Sets the permission which allow fill in forms or not. true is allow and false is forbidden. | +| [get_AllowModifyAnnotations](./get_allowmodifyannotations/)() | Sets the permission which allow modify annotations or not. true is allow and false is forbidden. | +| [get_AllowModifyContents](./get_allowmodifycontents/)() | Sets the permission which allow modify contents or not. true is allow and false is forbidden. | +| [get_AllowPrint](./get_allowprint/)() | Sets the permission which allow print or not. true is allow and false is forbidden. | +| [get_AllowScreenReaders](./get_allowscreenreaders/)() | Sets the permission which allow screen readers or not. true is allow and false is forbidden. | +| static [get_Assembly](./get_assembly/)() | Allows assemblying file. | +| static [get_Copy](./get_copy/)() | Allows copying file. | +| static [get_DegradedPrinting](./get_degradedprinting/)() | Allows degraded printing. | +| static [get_FillIn](./get_fillin/)() | Allows filling forms in file. | +| static [get_ForbidAll](./get_forbidall/)() | All Forbidded. | +| static [get_ModifyAnnotations](./get_modifyannotations/)() | Allows modifying annotations of file. | +| static [get_ModifyContents](./get_modifycontents/)() | Allows modifying file. | +| static [get_Print](./get_print/)() | Allows printing file. | +| static [get_ScreenReaders](./get_screenreaders/)() | Allows to reader on screen only. | +| [set_AllowAssembly](./set_allowassembly/)(bool) | Sets the permission which allow assembly or not. true is allow and false is forbidden. | +| [set_AllowCopy](./set_allowcopy/)(bool) | Sets the permission which allow copy or not. true is allow and false is forbidden. | +| [set_AllowDegradedPrinting](./set_allowdegradedprinting/)(bool) | Sets the permission which allow degraded printing or not. true is allow and false is forbidden. | +| [set_AllowFillIn](./set_allowfillin/)(bool) | Sets the permission which allow fill in forms or not. true is allow and false is forbidden. | +| [set_AllowModifyAnnotations](./set_allowmodifyannotations/)(bool) | Sets the permission which allow modify annotations or not. true is allow and false is forbidden. | +| [set_AllowModifyContents](./set_allowmodifycontents/)(bool) | Sets the permission which allow modify contents or not. true is allow and false is forbidden. | +| [set_AllowPrint](./set_allowprint/)(bool) | Sets the permission which allow print or not. true is allow and false is forbidden. | +| [set_AllowScreenReaders](./set_allowscreenreaders/)(bool) | Sets the permission which allow screen readers or not. true is allow and false is forbidden. | +| [set_ChangeAllowLevel](./set_changeallowlevel/)(int32_t) | Sets the change level of document's privilege. Just as the Adobe Professional's Changes Allowed settings. 0: None. 1: Inserting, Deleting and Rotating pages. 2: Filling in form fields and signing existing signature fields. 3: Commenting, filling in form fields, and signing existing signature fields. 4: Any except extracting pages. | +| [set_CopyAllowLevel](./set_copyallowlevel/)(int32_t) | Sets the copy level of document's privilege. Just as the Adobe Professional's permission settings. 0: None. 1: Enable text access for screen reader devices for the visually impaired. 2: Enable copying of text, images and other content. | +| [set_PrintAllowLevel](./set_printallowlevel/)(int32_t) | Sets the print level of document's privilege. Just as the Adobe Professional's [Printing](../../aspose.pdf.printing/) Allowed settings. 0: None. 1: Low Resolution (150 dpi). 2: High Resolution. | +## See Also + +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/documentprivilege/compareto/_index.md b/english/cpp/aspose.pdf.facades/documentprivilege/compareto/_index.md new file mode 100644 index 0000000000..6b9b85e18d --- /dev/null +++ b/english/cpp/aspose.pdf.facades/documentprivilege/compareto/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::DocumentPrivilege::CompareTo method +linktitle: CompareTo +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::DocumentPrivilege::CompareTo method. Compares two DocumentPrivilege objects in C++.' +type: docs +weight: 2000 +url: /cpp/aspose.pdf.facades/documentprivilege/compareto/ +--- +## DocumentPrivilege::CompareTo method + + +Compares two [DocumentPrivilege](../) objects. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::DocumentPrivilege::CompareTo(System::SharedPtr obj) override +``` + +## See Also + +* Class [DocumentPrivilege](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/documentprivilege/get_allowall/_index.md b/english/cpp/aspose.pdf.facades/documentprivilege/get_allowall/_index.md new file mode 100644 index 0000000000..b88569028b --- /dev/null +++ b/english/cpp/aspose.pdf.facades/documentprivilege/get_allowall/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::DocumentPrivilege::get_AllowAll method +linktitle: get_AllowAll +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::DocumentPrivilege::get_AllowAll method. All allowed in C++.' +type: docs +weight: 2900 +url: /cpp/aspose.pdf.facades/documentprivilege/get_allowall/ +--- +## DocumentPrivilege::get_AllowAll method + + +All allowed. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::DocumentPrivilege::get_AllowAll() +``` + +## See Also + +* Class [DocumentPrivilege](../) +* Class [DocumentPrivilege](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/documentprivilege/get_allowassembly/_index.md b/english/cpp/aspose.pdf.facades/documentprivilege/get_allowassembly/_index.md new file mode 100644 index 0000000000..6a010f307a --- /dev/null +++ b/english/cpp/aspose.pdf.facades/documentprivilege/get_allowassembly/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::DocumentPrivilege::get_AllowAssembly method +linktitle: get_AllowAssembly +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::DocumentPrivilege::get_AllowAssembly method. Sets the permission which allow assembly or not. true is allow and false is forbidden in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.facades/documentprivilege/get_allowassembly/ +--- +## DocumentPrivilege::get_AllowAssembly method + + +Sets the permission which allow assembly or not. true is allow and false is forbidden. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::DocumentPrivilege::get_AllowAssembly() +``` + +## See Also + +* Class [DocumentPrivilege](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/documentprivilege/get_allowcopy/_index.md b/english/cpp/aspose.pdf.facades/documentprivilege/get_allowcopy/_index.md new file mode 100644 index 0000000000..764e1392cf --- /dev/null +++ b/english/cpp/aspose.pdf.facades/documentprivilege/get_allowcopy/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::DocumentPrivilege::get_AllowCopy method +linktitle: get_AllowCopy +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::DocumentPrivilege::get_AllowCopy method. Sets the permission which allow copy or not. true is allow and false is forbidden in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.facades/documentprivilege/get_allowcopy/ +--- +## DocumentPrivilege::get_AllowCopy method + + +Sets the permission which allow copy or not. true is allow and false is forbidden. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::DocumentPrivilege::get_AllowCopy() +``` + +## See Also + +* Class [DocumentPrivilege](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/documentprivilege/get_allowdegradedprinting/_index.md b/english/cpp/aspose.pdf.facades/documentprivilege/get_allowdegradedprinting/_index.md new file mode 100644 index 0000000000..f2f84dece1 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/documentprivilege/get_allowdegradedprinting/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::DocumentPrivilege::get_AllowDegradedPrinting method +linktitle: get_AllowDegradedPrinting +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::DocumentPrivilege::get_AllowDegradedPrinting method. Sets the permission which allow degraded printing or not. true is allow and false is forbidden in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.facades/documentprivilege/get_allowdegradedprinting/ +--- +## DocumentPrivilege::get_AllowDegradedPrinting method + + +Sets the permission which allow degraded printing or not. true is allow and false is forbidden. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::DocumentPrivilege::get_AllowDegradedPrinting() +``` + +## See Also + +* Class [DocumentPrivilege](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/documentprivilege/get_allowfillin/_index.md b/english/cpp/aspose.pdf.facades/documentprivilege/get_allowfillin/_index.md new file mode 100644 index 0000000000..b881128608 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/documentprivilege/get_allowfillin/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::DocumentPrivilege::get_AllowFillIn method +linktitle: get_AllowFillIn +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::DocumentPrivilege::get_AllowFillIn method. Sets the permission which allow fill in forms or not. true is allow and false is forbidden in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.facades/documentprivilege/get_allowfillin/ +--- +## DocumentPrivilege::get_AllowFillIn method + + +Sets the permission which allow fill in forms or not. true is allow and false is forbidden. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::DocumentPrivilege::get_AllowFillIn() +``` + +## See Also + +* Class [DocumentPrivilege](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/documentprivilege/get_allowmodifyannotations/_index.md b/english/cpp/aspose.pdf.facades/documentprivilege/get_allowmodifyannotations/_index.md new file mode 100644 index 0000000000..2c408371d2 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/documentprivilege/get_allowmodifyannotations/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::DocumentPrivilege::get_AllowModifyAnnotations method +linktitle: get_AllowModifyAnnotations +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::DocumentPrivilege::get_AllowModifyAnnotations method. Sets the permission which allow modify annotations or not. true is allow and false is forbidden in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.facades/documentprivilege/get_allowmodifyannotations/ +--- +## DocumentPrivilege::get_AllowModifyAnnotations method + + +Sets the permission which allow modify annotations or not. true is allow and false is forbidden. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::DocumentPrivilege::get_AllowModifyAnnotations() +``` + +## See Also + +* Class [DocumentPrivilege](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/documentprivilege/get_allowmodifycontents/_index.md b/english/cpp/aspose.pdf.facades/documentprivilege/get_allowmodifycontents/_index.md new file mode 100644 index 0000000000..ad81cde88e --- /dev/null +++ b/english/cpp/aspose.pdf.facades/documentprivilege/get_allowmodifycontents/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::DocumentPrivilege::get_AllowModifyContents method +linktitle: get_AllowModifyContents +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::DocumentPrivilege::get_AllowModifyContents method. Sets the permission which allow modify contents or not. true is allow and false is forbidden in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.facades/documentprivilege/get_allowmodifycontents/ +--- +## DocumentPrivilege::get_AllowModifyContents method + + +Sets the permission which allow modify contents or not. true is allow and false is forbidden. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::DocumentPrivilege::get_AllowModifyContents() +``` + +## See Also + +* Class [DocumentPrivilege](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/documentprivilege/get_allowprint/_index.md b/english/cpp/aspose.pdf.facades/documentprivilege/get_allowprint/_index.md new file mode 100644 index 0000000000..db40b5ee29 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/documentprivilege/get_allowprint/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::DocumentPrivilege::get_AllowPrint method +linktitle: get_AllowPrint +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::DocumentPrivilege::get_AllowPrint method. Sets the permission which allow print or not. true is allow and false is forbidden in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.facades/documentprivilege/get_allowprint/ +--- +## DocumentPrivilege::get_AllowPrint method + + +Sets the permission which allow print or not. true is allow and false is forbidden. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::DocumentPrivilege::get_AllowPrint() +``` + +## See Also + +* Class [DocumentPrivilege](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/documentprivilege/get_allowscreenreaders/_index.md b/english/cpp/aspose.pdf.facades/documentprivilege/get_allowscreenreaders/_index.md new file mode 100644 index 0000000000..09b2d73df9 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/documentprivilege/get_allowscreenreaders/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::DocumentPrivilege::get_AllowScreenReaders method +linktitle: get_AllowScreenReaders +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::DocumentPrivilege::get_AllowScreenReaders method. Sets the permission which allow screen readers or not. true is allow and false is forbidden in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.facades/documentprivilege/get_allowscreenreaders/ +--- +## DocumentPrivilege::get_AllowScreenReaders method + + +Sets the permission which allow screen readers or not. true is allow and false is forbidden. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::DocumentPrivilege::get_AllowScreenReaders() +``` + +## See Also + +* Class [DocumentPrivilege](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/documentprivilege/get_assembly/_index.md b/english/cpp/aspose.pdf.facades/documentprivilege/get_assembly/_index.md new file mode 100644 index 0000000000..6242777e80 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/documentprivilege/get_assembly/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::DocumentPrivilege::get_Assembly method +linktitle: get_Assembly +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::DocumentPrivilege::get_Assembly method. Allows assemblying file in C++.' +type: docs +weight: 2800 +url: /cpp/aspose.pdf.facades/documentprivilege/get_assembly/ +--- +## DocumentPrivilege::get_Assembly method + + +Allows assemblying file. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::DocumentPrivilege::get_Assembly() +``` + +## See Also + +* Class [DocumentPrivilege](../) +* Class [DocumentPrivilege](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/documentprivilege/get_copy/_index.md b/english/cpp/aspose.pdf.facades/documentprivilege/get_copy/_index.md new file mode 100644 index 0000000000..001fbac918 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/documentprivilege/get_copy/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::DocumentPrivilege::get_Copy method +linktitle: get_Copy +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::DocumentPrivilege::get_Copy method. Allows copying file in C++.' +type: docs +weight: 2400 +url: /cpp/aspose.pdf.facades/documentprivilege/get_copy/ +--- +## DocumentPrivilege::get_Copy method + + +Allows copying file. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::DocumentPrivilege::get_Copy() +``` + +## See Also + +* Class [DocumentPrivilege](../) +* Class [DocumentPrivilege](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/documentprivilege/get_degradedprinting/_index.md b/english/cpp/aspose.pdf.facades/documentprivilege/get_degradedprinting/_index.md new file mode 100644 index 0000000000..1d6136da8b --- /dev/null +++ b/english/cpp/aspose.pdf.facades/documentprivilege/get_degradedprinting/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::DocumentPrivilege::get_DegradedPrinting method +linktitle: get_DegradedPrinting +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::DocumentPrivilege::get_DegradedPrinting method. Allows degraded printing in C++.' +type: docs +weight: 2100 +url: /cpp/aspose.pdf.facades/documentprivilege/get_degradedprinting/ +--- +## DocumentPrivilege::get_DegradedPrinting method + + +Allows degraded printing. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::DocumentPrivilege::get_DegradedPrinting() +``` + +## See Also + +* Class [DocumentPrivilege](../) +* Class [DocumentPrivilege](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/documentprivilege/get_fillin/_index.md b/english/cpp/aspose.pdf.facades/documentprivilege/get_fillin/_index.md new file mode 100644 index 0000000000..d99183deb9 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/documentprivilege/get_fillin/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::DocumentPrivilege::get_FillIn method +linktitle: get_FillIn +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::DocumentPrivilege::get_FillIn method. Allows filling forms in file in C++.' +type: docs +weight: 2600 +url: /cpp/aspose.pdf.facades/documentprivilege/get_fillin/ +--- +## DocumentPrivilege::get_FillIn method + + +Allows filling forms in file. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::DocumentPrivilege::get_FillIn() +``` + +## See Also + +* Class [DocumentPrivilege](../) +* Class [DocumentPrivilege](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/documentprivilege/get_forbidall/_index.md b/english/cpp/aspose.pdf.facades/documentprivilege/get_forbidall/_index.md new file mode 100644 index 0000000000..bd06bf57a1 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/documentprivilege/get_forbidall/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::DocumentPrivilege::get_ForbidAll method +linktitle: get_ForbidAll +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::DocumentPrivilege::get_ForbidAll method. All Forbidded in C++.' +type: docs +weight: 3000 +url: /cpp/aspose.pdf.facades/documentprivilege/get_forbidall/ +--- +## DocumentPrivilege::get_ForbidAll method + + +All Forbidded. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::DocumentPrivilege::get_ForbidAll() +``` + +## See Also + +* Class [DocumentPrivilege](../) +* Class [DocumentPrivilege](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/documentprivilege/get_modifyannotations/_index.md b/english/cpp/aspose.pdf.facades/documentprivilege/get_modifyannotations/_index.md new file mode 100644 index 0000000000..bfc6e3f27f --- /dev/null +++ b/english/cpp/aspose.pdf.facades/documentprivilege/get_modifyannotations/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::DocumentPrivilege::get_ModifyAnnotations method +linktitle: get_ModifyAnnotations +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::DocumentPrivilege::get_ModifyAnnotations method. Allows modifying annotations of file in C++.' +type: docs +weight: 2500 +url: /cpp/aspose.pdf.facades/documentprivilege/get_modifyannotations/ +--- +## DocumentPrivilege::get_ModifyAnnotations method + + +Allows modifying annotations of file. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::DocumentPrivilege::get_ModifyAnnotations() +``` + +## See Also + +* Class [DocumentPrivilege](../) +* Class [DocumentPrivilege](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/documentprivilege/get_modifycontents/_index.md b/english/cpp/aspose.pdf.facades/documentprivilege/get_modifycontents/_index.md new file mode 100644 index 0000000000..b63738f42c --- /dev/null +++ b/english/cpp/aspose.pdf.facades/documentprivilege/get_modifycontents/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::DocumentPrivilege::get_ModifyContents method +linktitle: get_ModifyContents +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::DocumentPrivilege::get_ModifyContents method. Allows modifying file in C++.' +type: docs +weight: 2300 +url: /cpp/aspose.pdf.facades/documentprivilege/get_modifycontents/ +--- +## DocumentPrivilege::get_ModifyContents method + + +Allows modifying file. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::DocumentPrivilege::get_ModifyContents() +``` + +## See Also + +* Class [DocumentPrivilege](../) +* Class [DocumentPrivilege](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/documentprivilege/get_print/_index.md b/english/cpp/aspose.pdf.facades/documentprivilege/get_print/_index.md new file mode 100644 index 0000000000..6ced6046b6 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/documentprivilege/get_print/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::DocumentPrivilege::get_Print method +linktitle: get_Print +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::DocumentPrivilege::get_Print method. Allows printing file in C++.' +type: docs +weight: 2200 +url: /cpp/aspose.pdf.facades/documentprivilege/get_print/ +--- +## DocumentPrivilege::get_Print method + + +Allows printing file. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::DocumentPrivilege::get_Print() +``` + +## See Also + +* Class [DocumentPrivilege](../) +* Class [DocumentPrivilege](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/documentprivilege/get_screenreaders/_index.md b/english/cpp/aspose.pdf.facades/documentprivilege/get_screenreaders/_index.md new file mode 100644 index 0000000000..36e501e5dc --- /dev/null +++ b/english/cpp/aspose.pdf.facades/documentprivilege/get_screenreaders/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::DocumentPrivilege::get_ScreenReaders method +linktitle: get_ScreenReaders +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::DocumentPrivilege::get_ScreenReaders method. Allows to reader on screen only in C++.' +type: docs +weight: 2700 +url: /cpp/aspose.pdf.facades/documentprivilege/get_screenreaders/ +--- +## DocumentPrivilege::get_ScreenReaders method + + +Allows to reader on screen only. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::DocumentPrivilege::get_ScreenReaders() +``` + +## See Also + +* Class [DocumentPrivilege](../) +* Class [DocumentPrivilege](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/documentprivilege/set_allowassembly/_index.md b/english/cpp/aspose.pdf.facades/documentprivilege/set_allowassembly/_index.md new file mode 100644 index 0000000000..12d70ee89f --- /dev/null +++ b/english/cpp/aspose.pdf.facades/documentprivilege/set_allowassembly/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::DocumentPrivilege::set_AllowAssembly method +linktitle: set_AllowAssembly +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::DocumentPrivilege::set_AllowAssembly method. Sets the permission which allow assembly or not. true is allow and false is forbidden in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf.facades/documentprivilege/set_allowassembly/ +--- +## DocumentPrivilege::set_AllowAssembly method + + +Sets the permission which allow assembly or not. true is allow and false is forbidden. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::DocumentPrivilege::set_AllowAssembly(bool value) +``` + +## See Also + +* Class [DocumentPrivilege](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/documentprivilege/set_allowcopy/_index.md b/english/cpp/aspose.pdf.facades/documentprivilege/set_allowcopy/_index.md new file mode 100644 index 0000000000..2bed23b85e --- /dev/null +++ b/english/cpp/aspose.pdf.facades/documentprivilege/set_allowcopy/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::DocumentPrivilege::set_AllowCopy method +linktitle: set_AllowCopy +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::DocumentPrivilege::set_AllowCopy method. Sets the permission which allow copy or not. true is allow and false is forbidden in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.facades/documentprivilege/set_allowcopy/ +--- +## DocumentPrivilege::set_AllowCopy method + + +Sets the permission which allow copy or not. true is allow and false is forbidden. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::DocumentPrivilege::set_AllowCopy(bool value) +``` + +## See Also + +* Class [DocumentPrivilege](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/documentprivilege/set_allowdegradedprinting/_index.md b/english/cpp/aspose.pdf.facades/documentprivilege/set_allowdegradedprinting/_index.md new file mode 100644 index 0000000000..b2d2461a8c --- /dev/null +++ b/english/cpp/aspose.pdf.facades/documentprivilege/set_allowdegradedprinting/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::DocumentPrivilege::set_AllowDegradedPrinting method +linktitle: set_AllowDegradedPrinting +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::DocumentPrivilege::set_AllowDegradedPrinting method. Sets the permission which allow degraded printing or not. true is allow and false is forbidden in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.facades/documentprivilege/set_allowdegradedprinting/ +--- +## DocumentPrivilege::set_AllowDegradedPrinting method + + +Sets the permission which allow degraded printing or not. true is allow and false is forbidden. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::DocumentPrivilege::set_AllowDegradedPrinting(bool value) +``` + +## See Also + +* Class [DocumentPrivilege](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/documentprivilege/set_allowfillin/_index.md b/english/cpp/aspose.pdf.facades/documentprivilege/set_allowfillin/_index.md new file mode 100644 index 0000000000..5836cfa49d --- /dev/null +++ b/english/cpp/aspose.pdf.facades/documentprivilege/set_allowfillin/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::DocumentPrivilege::set_AllowFillIn method +linktitle: set_AllowFillIn +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::DocumentPrivilege::set_AllowFillIn method. Sets the permission which allow fill in forms or not. true is allow and false is forbidden in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.facades/documentprivilege/set_allowfillin/ +--- +## DocumentPrivilege::set_AllowFillIn method + + +Sets the permission which allow fill in forms or not. true is allow and false is forbidden. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::DocumentPrivilege::set_AllowFillIn(bool value) +``` + +## See Also + +* Class [DocumentPrivilege](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/documentprivilege/set_allowmodifyannotations/_index.md b/english/cpp/aspose.pdf.facades/documentprivilege/set_allowmodifyannotations/_index.md new file mode 100644 index 0000000000..a951f90a4b --- /dev/null +++ b/english/cpp/aspose.pdf.facades/documentprivilege/set_allowmodifyannotations/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::DocumentPrivilege::set_AllowModifyAnnotations method +linktitle: set_AllowModifyAnnotations +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::DocumentPrivilege::set_AllowModifyAnnotations method. Sets the permission which allow modify annotations or not. true is allow and false is forbidden in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.facades/documentprivilege/set_allowmodifyannotations/ +--- +## DocumentPrivilege::set_AllowModifyAnnotations method + + +Sets the permission which allow modify annotations or not. true is allow and false is forbidden. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::DocumentPrivilege::set_AllowModifyAnnotations(bool value) +``` + +## See Also + +* Class [DocumentPrivilege](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/documentprivilege/set_allowmodifycontents/_index.md b/english/cpp/aspose.pdf.facades/documentprivilege/set_allowmodifycontents/_index.md new file mode 100644 index 0000000000..cc788c08b7 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/documentprivilege/set_allowmodifycontents/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::DocumentPrivilege::set_AllowModifyContents method +linktitle: set_AllowModifyContents +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::DocumentPrivilege::set_AllowModifyContents method. Sets the permission which allow modify contents or not. true is allow and false is forbidden in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.facades/documentprivilege/set_allowmodifycontents/ +--- +## DocumentPrivilege::set_AllowModifyContents method + + +Sets the permission which allow modify contents or not. true is allow and false is forbidden. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::DocumentPrivilege::set_AllowModifyContents(bool value) +``` + +## See Also + +* Class [DocumentPrivilege](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/documentprivilege/set_allowprint/_index.md b/english/cpp/aspose.pdf.facades/documentprivilege/set_allowprint/_index.md new file mode 100644 index 0000000000..5c46b3bc01 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/documentprivilege/set_allowprint/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::DocumentPrivilege::set_AllowPrint method +linktitle: set_AllowPrint +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::DocumentPrivilege::set_AllowPrint method. Sets the permission which allow print or not. true is allow and false is forbidden in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.facades/documentprivilege/set_allowprint/ +--- +## DocumentPrivilege::set_AllowPrint method + + +Sets the permission which allow print or not. true is allow and false is forbidden. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::DocumentPrivilege::set_AllowPrint(bool value) +``` + +## See Also + +* Class [DocumentPrivilege](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/documentprivilege/set_allowscreenreaders/_index.md b/english/cpp/aspose.pdf.facades/documentprivilege/set_allowscreenreaders/_index.md new file mode 100644 index 0000000000..4dd652bcc3 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/documentprivilege/set_allowscreenreaders/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::DocumentPrivilege::set_AllowScreenReaders method +linktitle: set_AllowScreenReaders +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::DocumentPrivilege::set_AllowScreenReaders method. Sets the permission which allow screen readers or not. true is allow and false is forbidden in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.facades/documentprivilege/set_allowscreenreaders/ +--- +## DocumentPrivilege::set_AllowScreenReaders method + + +Sets the permission which allow screen readers or not. true is allow and false is forbidden. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::DocumentPrivilege::set_AllowScreenReaders(bool value) +``` + +## See Also + +* Class [DocumentPrivilege](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/documentprivilege/set_changeallowlevel/_index.md b/english/cpp/aspose.pdf.facades/documentprivilege/set_changeallowlevel/_index.md new file mode 100644 index 0000000000..d5eb7186a6 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/documentprivilege/set_changeallowlevel/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::DocumentPrivilege::set_ChangeAllowLevel method +linktitle: set_ChangeAllowLevel +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::DocumentPrivilege::set_ChangeAllowLevel method. Sets the change level of document''s privilege. Just as the Adobe Professional''s Changes Allowed settings. 0: None. 1: Inserting, Deleting and Rotating pages. 2: Filling in form fields and signing existing signature fields. 3: Commenting, filling in form fields, and signing existing signature fields. 4: Any except extracting pages in C++.' +type: docs +weight: 1800 +url: /cpp/aspose.pdf.facades/documentprivilege/set_changeallowlevel/ +--- +## DocumentPrivilege::set_ChangeAllowLevel method + + +Sets the change level of document's privilege. Just as the Adobe Professional's Changes Allowed settings. 0: None. 1: Inserting, Deleting and Rotating pages. 2: Filling in form fields and signing existing signature fields. 3: Commenting, filling in form fields, and signing existing signature fields. 4: Any except extracting pages. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::DocumentPrivilege::set_ChangeAllowLevel(int32_t value) +``` + +## See Also + +* Class [DocumentPrivilege](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/documentprivilege/set_copyallowlevel/_index.md b/english/cpp/aspose.pdf.facades/documentprivilege/set_copyallowlevel/_index.md new file mode 100644 index 0000000000..e84626c7a4 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/documentprivilege/set_copyallowlevel/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::DocumentPrivilege::set_CopyAllowLevel method +linktitle: set_CopyAllowLevel +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::DocumentPrivilege::set_CopyAllowLevel method. Sets the copy level of document''s privilege. Just as the Adobe Professional''s permission settings. 0: None. 1: Enable text access for screen reader devices for the visually impaired. 2: Enable copying of text, images and other content in C++.' +type: docs +weight: 1900 +url: /cpp/aspose.pdf.facades/documentprivilege/set_copyallowlevel/ +--- +## DocumentPrivilege::set_CopyAllowLevel method + + +Sets the copy level of document's privilege. Just as the Adobe Professional's permission settings. 0: None. 1: Enable text access for screen reader devices for the visually impaired. 2: Enable copying of text, images and other content. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::DocumentPrivilege::set_CopyAllowLevel(int32_t value) +``` + +## See Also + +* Class [DocumentPrivilege](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/documentprivilege/set_printallowlevel/_index.md b/english/cpp/aspose.pdf.facades/documentprivilege/set_printallowlevel/_index.md new file mode 100644 index 0000000000..e6e3dbea62 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/documentprivilege/set_printallowlevel/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::DocumentPrivilege::set_PrintAllowLevel method +linktitle: set_PrintAllowLevel +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::DocumentPrivilege::set_PrintAllowLevel method. Sets the print level of document''s privilege. Just as the Adobe Professional''s Printing Allowed settings. 0: None. 1: Low Resolution (150 dpi). 2: High Resolution in C++.' +type: docs +weight: 1700 +url: /cpp/aspose.pdf.facades/documentprivilege/set_printallowlevel/ +--- +## DocumentPrivilege::set_PrintAllowLevel method + + +Sets the print level of document's privilege. Just as the Adobe Professional's [Printing](../../../aspose.pdf.printing/) Allowed settings. 0: None. 1: Low Resolution (150 dpi). 2: High Resolution. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::DocumentPrivilege::set_PrintAllowLevel(int32_t value) +``` + +## See Also + +* Class [DocumentPrivilege](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/encodingtype/_index.md b/english/cpp/aspose.pdf.facades/encodingtype/_index.md new file mode 100644 index 0000000000..83b2508411 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/encodingtype/_index.md @@ -0,0 +1,34 @@ +--- +title: Aspose::Pdf::Facades::EncodingType enum +linktitle: EncodingType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::EncodingType enum. Enumerates encoding types of the text using in C++.' +type: docs +weight: 4300 +url: /cpp/aspose.pdf.facades/encodingtype/ +--- +## EncodingType enum + + +Enumerates encoding types of the text using. + +```cpp +enum class EncodingType +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Identity_h | 0 | The Unicode encoding with horizontal writing. | +| Identity_v | 1 | The Unicode encoding with vertical writing. | +| Cp1250 | 2 | A windows text encoding name. | +| Cp1252 | 3 | A windows text encoding name. | +| Cp1257 | 4 | A windows text encoding name. | +| Winansi | 5 | Windows ansi encoding. | +| Macroman | 6 | Mac os standard encoding for Latin text. | + +## See Also + +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/facade/_index.md b/english/cpp/aspose.pdf.facades/facade/_index.md new file mode 100644 index 0000000000..b5192e30d5 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/facade/_index.md @@ -0,0 +1,35 @@ +--- +title: Aspose::Pdf::Facades::Facade class +linktitle: Facade +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Facade class. Base facade class in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.facades/facade/ +--- +## Facade class + + +Base facade class. + +```cpp +class Facade : public virtual Aspose::Pdf::Facades::IFacade, + public Aspose::Pdf::LicenseManagement::IVentureLicenseTarget +``` + +## Methods + +| Method | Description | +| --- | --- | +| [BindPdf](./bindpdf/)(System::String) override | Initializes the facade. | +| [BindPdf](./bindpdf/)(System::SharedPtr\) override | Initializes the facade. | +| [BindPdf](./bindpdf/)(System::SharedPtr\) override | Initializes the facade. | +| virtual [BindPdf](../ifacade/bindpdf/)(System::SharedPtr\) | Binds PDF document for editing. | +| [Close](./close/)() override | Disposes [Aspose.Pdf.Document](../../aspose.pdf/document/) bound with a facade. | +| [Dispose](./dispose/)() override | Disposes the facade. | +| [get_Document](./get_document/)() const | Gets the document facade is working on. | +## See Also + +* Class [IFacade](../ifacade/) +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/facade/bindpdf/_index.md b/english/cpp/aspose.pdf.facades/facade/bindpdf/_index.md new file mode 100644 index 0000000000..c8e7d3128b --- /dev/null +++ b/english/cpp/aspose.pdf.facades/facade/bindpdf/_index.md @@ -0,0 +1,103 @@ +--- +title: Aspose::Pdf::Facades::Facade::BindPdf method +linktitle: BindPdf +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Facade::BindPdf method. Initializes the facade in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.facades/facade/bindpdf/ +--- +## Facade::BindPdf(System::String) method + + +Initializes the facade. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Facade::BindPdf(System::String srcFile) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| srcFile | System::String | The PDF file. | +## Remarks + + + + + + srcFile + + + The PDF file. + + + +## See Also + +* Class [Facade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## Facade::BindPdf(System::SharedPtr\) method + + +Initializes the facade. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Facade::BindPdf(System::SharedPtr srcStream) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| srcStream | System::SharedPtr\ | The stream of PDF file. | +## Remarks + + + + + + srcStream + + + The stream of PDF file. + + + +## See Also + +* Class [Facade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## Facade::BindPdf(System::SharedPtr\) method + + +Initializes the facade. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Facade::BindPdf(System::SharedPtr srcDoc) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| srcDoc | System::SharedPtr\ | The [Aspose.Pdf.Document](../../../aspose.pdf/document/) object. | +## Remarks + + + + + + srcDoc + + + The Aspose.Pdf.Document object. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [Facade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/facade/close/_index.md b/english/cpp/aspose.pdf.facades/facade/close/_index.md new file mode 100644 index 0000000000..04413957e5 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/facade/close/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Facade::Close method +linktitle: Close +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Facade::Close method. Disposes Aspose.Pdf.Document bound with a facade in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.facades/facade/close/ +--- +## Facade::Close method + + +Disposes [Aspose.Pdf.Document](../../../aspose.pdf/document/) bound with a facade. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Facade::Close() override +``` + +## See Also + +* Class [Facade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/facade/dispose/_index.md b/english/cpp/aspose.pdf.facades/facade/dispose/_index.md new file mode 100644 index 0000000000..e15788ce9a --- /dev/null +++ b/english/cpp/aspose.pdf.facades/facade/dispose/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Facade::Dispose method +linktitle: Dispose +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Facade::Dispose method. Disposes the facade in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.facades/facade/dispose/ +--- +## Facade::Dispose method + + +Disposes the facade. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Facade::Dispose() override +``` + +## See Also + +* Class [Facade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/facade/get_document/_index.md b/english/cpp/aspose.pdf.facades/facade/get_document/_index.md new file mode 100644 index 0000000000..e57fc30e8e --- /dev/null +++ b/english/cpp/aspose.pdf.facades/facade/get_document/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::Facade::get_Document method +linktitle: get_Document +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Facade::get_Document method. Gets the document facade is working on in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.facades/facade/get_document/ +--- +## Facade::get_Document method + + +Gets the document facade is working on. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::Facade::get_Document() const +``` + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [Facade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/fieldtype/_index.md b/english/cpp/aspose.pdf.facades/fieldtype/_index.md new file mode 100644 index 0000000000..a769a33ded --- /dev/null +++ b/english/cpp/aspose.pdf.facades/fieldtype/_index.md @@ -0,0 +1,40 @@ +--- +title: Aspose::Pdf::Facades::FieldType enum +linktitle: FieldType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FieldType enum. Enumeration of possible field types in C++.' +type: docs +weight: 4400 +url: /cpp/aspose.pdf.facades/fieldtype/ +--- +## FieldType enum + + +Enumeration of possible field types. + +```cpp +enum class FieldType +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Text | 0 | [Text](../../aspose.pdf.text/) field. | +| ComboBox | 1 | Combo box field. | +| ListBox | 2 | List box field. | +| Radio | 3 | Radio button field. | +| CheckBox | 4 | Check box field. | +| PushButton | 5 | Push button field. | +| MultiLineText | 6 | Multiline text field. | +| Barcode | 7 | Barcode field. | +| InvalidNameOrType | 8 | Invalid field type. | +| Signature | 9 | Signature field. | +| Image | 10 | [Image](../../aspose.pdf/image/) field. | +| Numeric | 11 | Numeric field. | +| DateTime | 12 | Date/time field. | + +## See Also + +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/fontcolor/_index.md b/english/cpp/aspose.pdf.facades/fontcolor/_index.md new file mode 100644 index 0000000000..7ef3b2f2b7 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/fontcolor/_index.md @@ -0,0 +1,34 @@ +--- +title: Aspose::Pdf::Facades::FontColor class +linktitle: FontColor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FontColor class. Class representing color of the text in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.facades/fontcolor/ +--- +## FontColor class + + +Class representing color of the text. + +```cpp +class FontColor : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [FontColor](./fontcolor/)(int32_t, int32_t, int32_t) | Initializes color with specified color components. | +| [FontColor](./fontcolor/)() | Initializes color. | +| [get_Blue](./get_blue/)() const | Blue component of color. | +| [get_Green](./get_green/)() const | Green component of color. | +| [get_Red](./get_red/)() const | Red component of color. | +| [set_Blue](./set_blue/)(int32_t) | Blue component of color. | +| [set_Green](./set_green/)(int32_t) | Green component of color. | +| [set_Red](./set_red/)(int32_t) | Red component of color. | +## See Also + +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/fontcolor/fontcolor/_index.md b/english/cpp/aspose.pdf.facades/fontcolor/fontcolor/_index.md new file mode 100644 index 0000000000..d313e70824 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/fontcolor/fontcolor/_index.md @@ -0,0 +1,72 @@ +--- +title: Aspose::Pdf::Facades::FontColor::FontColor constructor +linktitle: FontColor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FontColor::FontColor constructor. Initializes color with specified color components in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.facades/fontcolor/fontcolor/ +--- +## FontColor::FontColor(int32_t, int32_t, int32_t) constructor + + +Initializes color with specified color components. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::FontColor::FontColor(int32_t r, int32_t g, int32_t b) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| r | int32_t | Red component. | +| g | int32_t | Green component. | +| b | int32_t | Blue component. | +## Remarks + + + + + + r + + + Red component. + + + + + g + + + Green component. + + + + + b + + + Blue component. + + + +## See Also + +* Class [FontColor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## FontColor::FontColor() constructor + + +Initializes color. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::FontColor::FontColor() +``` + +## See Also + +* Class [FontColor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/fontcolor/get_blue/_index.md b/english/cpp/aspose.pdf.facades/fontcolor/get_blue/_index.md new file mode 100644 index 0000000000..7d3ee74f74 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/fontcolor/get_blue/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FontColor::get_Blue method +linktitle: get_Blue +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FontColor::get_Blue method. Blue component of color in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.facades/fontcolor/get_blue/ +--- +## FontColor::get_Blue method + + +Blue component of color. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::FontColor::get_Blue() const +``` + +## See Also + +* Class [FontColor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/fontcolor/get_green/_index.md b/english/cpp/aspose.pdf.facades/fontcolor/get_green/_index.md new file mode 100644 index 0000000000..eead734818 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/fontcolor/get_green/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FontColor::get_Green method +linktitle: get_Green +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FontColor::get_Green method. Green component of color in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.facades/fontcolor/get_green/ +--- +## FontColor::get_Green method + + +Green component of color. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::FontColor::get_Green() const +``` + +## See Also + +* Class [FontColor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/fontcolor/get_red/_index.md b/english/cpp/aspose.pdf.facades/fontcolor/get_red/_index.md new file mode 100644 index 0000000000..6e67ecd3c7 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/fontcolor/get_red/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FontColor::get_Red method +linktitle: get_Red +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FontColor::get_Red method. Red component of color in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.facades/fontcolor/get_red/ +--- +## FontColor::get_Red method + + +Red component of color. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::FontColor::get_Red() const +``` + +## See Also + +* Class [FontColor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/fontcolor/set_blue/_index.md b/english/cpp/aspose.pdf.facades/fontcolor/set_blue/_index.md new file mode 100644 index 0000000000..be31c4a28a --- /dev/null +++ b/english/cpp/aspose.pdf.facades/fontcolor/set_blue/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FontColor::set_Blue method +linktitle: set_Blue +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FontColor::set_Blue method. Blue component of color in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.facades/fontcolor/set_blue/ +--- +## FontColor::set_Blue method + + +Blue component of color. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FontColor::set_Blue(int32_t value) +``` + +## See Also + +* Class [FontColor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/fontcolor/set_green/_index.md b/english/cpp/aspose.pdf.facades/fontcolor/set_green/_index.md new file mode 100644 index 0000000000..4f58bae333 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/fontcolor/set_green/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FontColor::set_Green method +linktitle: set_Green +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FontColor::set_Green method. Green component of color in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.facades/fontcolor/set_green/ +--- +## FontColor::set_Green method + + +Green component of color. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FontColor::set_Green(int32_t value) +``` + +## See Also + +* Class [FontColor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/fontcolor/set_red/_index.md b/english/cpp/aspose.pdf.facades/fontcolor/set_red/_index.md new file mode 100644 index 0000000000..2a54d155e7 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/fontcolor/set_red/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FontColor::set_Red method +linktitle: set_Red +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FontColor::set_Red method. Red component of color in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.facades/fontcolor/set_red/ +--- +## FontColor::set_Red method + + +Red component of color. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FontColor::set_Red(int32_t value) +``` + +## See Also + +* Class [FontColor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/fontstyle/_index.md b/english/cpp/aspose.pdf.facades/fontstyle/_index.md new file mode 100644 index 0000000000..ac0455013d --- /dev/null +++ b/english/cpp/aspose.pdf.facades/fontstyle/_index.md @@ -0,0 +1,43 @@ +--- +title: Aspose::Pdf::Facades::FontStyle enum +linktitle: FontStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FontStyle enum. Enumerates 14 types of font in C++.' +type: docs +weight: 4500 +url: /cpp/aspose.pdf.facades/fontstyle/ +--- +## FontStyle enum + + +Enumerates 14 types of font. + +```cpp +enum class FontStyle +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Courier | 0 | Courier font. | +| CourierBold | 1 | Bold Courier font. | +| CourierOblique | 2 | Oblique Curier font. | +| CourierBoldOblique | 3 | Bold oblique Courier font. | +| Helvetica | 4 | Helvetica font. | +| HelveticaBold | 5 | Bold Helvetica font. | +| HelveticaOblique | 6 | Oblique Helvetica font. | +| HelveticaBoldOblique | 7 | Bold oblique Helvetica font. | +| Symbol | 8 | Symbol font. | +| TimesRoman | 9 | Times-Roman font. | +| TimesBold | 10 | Bold Times font. | +| TimesItalic | 11 | Italic Times font. | +| TimesBoldItalic | 12 | Bold italic Times font. | +| ZapfDingbats | 13 | ZapfDingbats font. | +| Unknown | 14 | Unknown font. Standard font will be used. | +| CjkFont | 15 | True Type Font for CJK supporting ,default is MS PGothic font. | + +## See Also + +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/form/_index.md b/english/cpp/aspose.pdf.facades/form/_index.md new file mode 100644 index 0000000000..d80e441194 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/_index.md @@ -0,0 +1,101 @@ +--- +title: Aspose::Pdf::Facades::Form class +linktitle: Form +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form class. Class representing Acro form object in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.facades/form/ +--- +## Form class + + +Class representing Acro form object. + +```cpp +class Form : public Aspose::Pdf::Facades::SaveableFacade +``` + +## Methods + +| Method | Description | +| --- | --- | +| [BindPdf](../facade/bindpdf/)(System::String) override | Initializes the facade. | +| [BindPdf](../facade/bindpdf/)(System::SharedPtr\) override | Initializes the facade. | +| [BindPdf](../facade/bindpdf/)(System::SharedPtr\) override | Initializes the facade. | +| virtual [BindPdf](../ifacade/bindpdf/)(System::SharedPtr\) | Binds PDF document for editing. | +| [Close](./close/)() override | Closes opened files without any changes. | +| [Dispose](../facade/dispose/)() override | Disposes the facade. | +| [ExportFdf](./exportfdf/)(System::SharedPtr\) | Exports the content of the fields of the pdf into the fdf stream. | +| [ExportXfdf](./exportxfdf/)(System::SharedPtr\) | Exports the content of the fields of the pdf into the xml stream. The button field's value will not be exported. | +| [ExportXml](./exportxml/)(System::SharedPtr\) | Exports the content of the fields of the pdf into the xml stream. The button field's value will not be exported. | +| [ExtractXfaData](./extractxfadata/)(System::SharedPtr\) | Extracts XFA data packet. | +| [FillBarcodeField](./fillbarcodefield/)(System::String, System::String) | Fill a barcode field according to its fully qualified field name. | +| [FillField](./fillfield/)(System::String, System::String) | Fills the field with a valid value according to a fully qualified field name. Before filling the fields, every field's names and its corresponding valid values must be known. Both the fields' name and values are case sensitive. Please note that [Aspose.Pdf.Facades](../) supports only full field names and does not work with partial field names in contrast with Aspose.Pdf.Kit; For example if field has full name "Form.Subform.TextField" you should specify full name and not "TextField". You can use FieldNames property to explore existing field names and search required field by its partial name. | +| [FillField](./fillfield/)(System::String, int32_t) | Fills the radio box field with a valid index value according to a fully qualified field name. Before filling the fields, only field's name must be known. While the value can be specified by its index. Notice: Only be applied to Radio Box, Combo Box and List Box fields. Please note that [Aspose.Pdf.Facades](../) supports only full field names and does not work with partial field names in contrast with Aspose.Pdf.Kit; For example if field has full name "Form.Subform.ListBoxField" you should specify full name and not "ListBoxField". You can use FieldNames property to explore existing field names and search required field by its partial name. | +| [FillField](./fillfield/)(System::String, bool) | Fills the check box field with a boolean value. Notice: Only be applied to Check Box. Please note that [Aspose.Pdf.Facades](../) supports only full field names and does not work with partial field names in contrast with Aspose.Pdf.Kit; For example if field has full name "Form.Subform.CheckBoxField" you should specify full name and not "CheckBoxField". You can use FieldNames property to explore existing field names and search required field by its partial name. | +| [FillField](./fillfield/)(System::String, System::ArrayPtr\) | Fill a field with multiple selections.Note: only for AcroForm List Box Field. | +| [FillField](./fillfield/)(System::String, System::String, bool) | Fills field with specified value. | +| [FillFields](./fillfields/)(System::ArrayPtr\, System::ArrayPtr\, System::SharedPtr\\&) | Fills the text box fields with a text values and save the document. Relevant for signed documents. Notice: Only be applied to [Text](../../aspose.pdf.text/) Box. Both the fields' name and values are case sensitive. | +| [FillImageField](./fillimagefield/)(System::String, System::String) | Pastes an image onto the existing button field as its appearance according to its fully qualified field name. | +| [FillImageField](./fillimagefield/)(System::String, System::SharedPtr\) | Overloads function of FillImageField. The input is a image stream. | +| [FlattenAllFields](./flattenallfields/)() | Flattens all the fields. | +| [FlattenField](./flattenfield/)(System::String) | Flattens a specified field with the fully qualified field name. Any other field will remain unchangable. If the fieldName is invalid, all the fields will remain unchangable. | +| [Form](./form/)(System::SharedPtr\, System::SharedPtr\) | Constructor of [Form](./) with two stream parameters. Specify same source and destination stream for incremental update. | +| [Form](./form/)() | Construtcor of [Form](./) without parameters. | +| [Form](./form/)(System::String) | Constructor of [Form](./). | +| [Form](./form/)(System::SharedPtr\) | Constructor for form. | +| [Form](./form/)(System::String, System::String) | Constructor of [Form](./) class. Specify same source file name and destination file name to perform incremental update. | +| [Form](./form/)(System::String, System::SharedPtr\) | Constructor of [Form](./). | +| [Form](./form/)(System::SharedPtr\, System::String) | Constructor of [Form](./). | +| [Form](./form/)(System::SharedPtr\) | Initializes new [Form](./) object on base of the *document* . | +| [Form](./form/)(System::SharedPtr\, System::String) | Initializes new [Form](./) object on base of the *document* . | +| [Form](./form/)(System::SharedPtr\, System::SharedPtr\) | Initializes new [Form](./) object on base of the *document* . | +| [Form](./form/)(System::SharedPtr\, System::SharedPtr\) | Creates form which will save result into HttpResponse object. | +| [Form](./form/)(System::String, System::SharedPtr\) | Creates form which will save result into HttpResponse object. | +| [get_AttachmentName](./get_attachmentname/)() const | Gets name of attachment when result of operation is stored into HttpResponse objects as attachment. | +| [get_ContentDisposition](./get_contentdisposition/)() const | Gets how content will be stored when result of operation is stored into HttpResponse object. Possible value: inline / attachment. Default: inline. | +| [get_DestFileName](./get_destfilename/)() const | Gets destiination file name. | +| [get_DestStream](./get_deststream/)() const | Gets destination stream. | +| [get_Document](../facade/get_document/)() const | Gets the document facade is working on. | +| [get_FieldNames](./get_fieldnames/)() | Gets list of field names on the form. | +| [get_FormSubmitButtonNames](./get_formsubmitbuttonnames/)() | Gets all form submit button names. | +| [get_ImportResult](./get_importresult/)() | Result of last import operation. Array of objects which descibre result of import for each field. | +| [get_Response](./get_response/)() const | Gets Response object where result of operation will be stored. | +| [get_SaveOptions](./get_saveoptions/)() const | Gets save options when result is stored as HttpResponse. Default value: [PdfSaveOptions](../../aspose.pdf/pdfsaveoptions/). | +| [get_SrcFileName](./get_srcfilename/)() const | Gets source file name. | +| [get_SrcStream](./get_srcstream/)() const | Gets source stream. | +| [GetButtonOptionCurrentValue](./getbuttonoptioncurrentvalue/)(System::String) | Returns the current value for radio button option fields. | +| [GetButtonOptionValues](./getbuttonoptionvalues/)(System::String) | Gets the radio button option fields and related values based on the field name. This method has meaning for radio button groups. | +| [GetField](./getfield/)(System::String) | Gets the field's value according to its field name. | +| [GetFieldFacade](./getfieldfacade/)(System::String) | Returns FrofmFieldFacade object containing all appearance attributes. | +| [GetFieldFlag](./getfieldflag/)(System::String) | Returns flags of the field. | +| [GetFieldLimit](./getfieldlimit/)(System::String) | Get the limitation of text field. | +| [GetFieldType](./getfieldtype/)(System::String) | Returns type of field. | +| [GetFullFieldName](./getfullfieldname/)(System::String) | Gets the full field name according to its short field name. | +| [GetRichText](./getrichtext/)(System::String) | Get a Rich [Text](../../aspose.pdf.text/) field's value, including the formattinf information of every character. | +| [GetSubmitFlags](./getsubmitflags/)(System::String) | Returns the submit button's submission flags. | +| [ImportFdf](./importfdf/)(System::SharedPtr\) | Imports the content of the fields from the fdf file and put them into the new pdf. | +| [ImportXfdf](./importxfdf/)(System::SharedPtr\) | Imports the content of the fields from the xfdf(xml) file and put them into the new pdf. | +| [ImportXml](./importxml/)(System::SharedPtr\) | Imports the content of the fields from the xml file and put them into the new pdf. | +| [ImportXml](./importxml/)(System::SharedPtr\, bool) | Imports the content of the fields from the xml file and put them into the new pdf. | +| [IsRequiredField](./isrequiredfield/)(System::String) | Determines whether field is required or not. | +| [RenameField](./renamefield/)(System::String, System::String) | Renames a field. Either AcroForm field or XFA field is OK. | +| [Save](./save/)() | Saves the value of the filled fields and close the opened [Pdf](../../aspose.pdf/) document. | +| [Save](./save/)(System::String) override | Saves document into specified file. | +| [Save](./save/)(System::SharedPtr\) override | Saves document into specified stream. | +| [set_AttachmentName](./set_attachmentname/)(System::String) | Sets name of attachment when result of operation is stored into HttpResponse objects as attachment. | +| [set_ContentDisposition](./set_contentdisposition/)(Aspose::Pdf::ContentDisposition) | Sets how content will be stored when result of operation is stored into HttpResponse object. Possible value: inline / attachment. Default: inline. | +| [set_ConvertTo](./set_convertto/)(PdfFormat) | Sets PDF file format. Result file will be saved in specified file format. If this property is not specified then file will be save in default PDF format without conversion. | +| [set_DestFileName](./set_destfilename/)(System::String) | Sets destiination file name. | +| [set_DestStream](./set_deststream/)(System::SharedPtr\) | Sets destination stream. | +| [set_Response](./set_response/)(System::SharedPtr\) | Sets Response object where result of operation will be stored. | +| [set_SaveOptions](./set_saveoptions/)(System::SharedPtr\) | Sets save options when result is stored as HttpResponse. Default value: [PdfSaveOptions](../../aspose.pdf/pdfsaveoptions/). | +| [set_SrcFileName](./set_srcfilename/)(System::String) | Sets source file name. | +| [set_SrcStream](./set_srcstream/)(System::SharedPtr\) | Sets source stream. | +| [SetXfaData](./setxfadata/)(System::SharedPtr\) | Replaces XFA data with specified data packet. Data packet may be extracted using ExtractXfaData. | +## See Also + +* Class [SaveableFacade](../saveablefacade/) +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/form/close/_index.md b/english/cpp/aspose.pdf.facades/form/close/_index.md new file mode 100644 index 0000000000..78debbf6ed --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/close/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Form::Close method +linktitle: Close +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::Close method. Closes opened files without any changes in C++.' +type: docs +weight: 3100 +url: /cpp/aspose.pdf.facades/form/close/ +--- +## Form::Close method + + +Closes opened files without any changes. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Form::Close() override +``` + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/exportfdf/_index.md b/english/cpp/aspose.pdf.facades/form/exportfdf/_index.md new file mode 100644 index 0000000000..dfc70ef9b3 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/exportfdf/_index.md @@ -0,0 +1,40 @@ +--- +title: Aspose::Pdf::Facades::Form::ExportFdf method +linktitle: ExportFdf +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::ExportFdf method. Exports the content of the fields of the pdf into the fdf stream in C++.' +type: docs +weight: 3600 +url: /cpp/aspose.pdf.facades/form/exportfdf/ +--- +## Form::ExportFdf method + + +Exports the content of the fields of the pdf into the fdf stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Form::ExportFdf(System::SharedPtr outputFdfStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputFdfStream | System::SharedPtr\ | The output fdf stream. | +## Remarks + + + + + + outputFdfStream + + + The output fdf stream. + + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/exportxfdf/_index.md b/english/cpp/aspose.pdf.facades/form/exportxfdf/_index.md new file mode 100644 index 0000000000..673199aaeb --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/exportxfdf/_index.md @@ -0,0 +1,40 @@ +--- +title: Aspose::Pdf::Facades::Form::ExportXfdf method +linktitle: ExportXfdf +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::ExportXfdf method. Exports the content of the fields of the pdf into the xml stream. The button field''s value will not be exported in C++.' +type: docs +weight: 4200 +url: /cpp/aspose.pdf.facades/form/exportxfdf/ +--- +## Form::ExportXfdf method + + +Exports the content of the fields of the pdf into the xml stream. The button field's value will not be exported. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Form::ExportXfdf(System::SharedPtr outputXfdfStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputXfdfStream | System::SharedPtr\ | The output xml stream. | +## Remarks + + + + + + outputXfdfStream + + + The output xml stream. + + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/exportxml/_index.md b/english/cpp/aspose.pdf.facades/form/exportxml/_index.md new file mode 100644 index 0000000000..24bc03643f --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/exportxml/_index.md @@ -0,0 +1,40 @@ +--- +title: Aspose::Pdf::Facades::Form::ExportXml method +linktitle: ExportXml +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::ExportXml method. Exports the content of the fields of the pdf into the xml stream. The button field''s value will not be exported in C++.' +type: docs +weight: 3800 +url: /cpp/aspose.pdf.facades/form/exportxml/ +--- +## Form::ExportXml method + + +Exports the content of the fields of the pdf into the xml stream. The button field's value will not be exported. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Form::ExportXml(System::SharedPtr outputXmlStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputXmlStream | System::SharedPtr\ | Output Xml stream. | +## Remarks + + + + + + outputXmlStream + + + Output Xml stream. + + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/extractxfadata/_index.md b/english/cpp/aspose.pdf.facades/form/extractxfadata/_index.md new file mode 100644 index 0000000000..3f07ab2100 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/extractxfadata/_index.md @@ -0,0 +1,40 @@ +--- +title: Aspose::Pdf::Facades::Form::ExtractXfaData method +linktitle: ExtractXfaData +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::ExtractXfaData method. Extracts XFA data packet in C++.' +type: docs +weight: 3900 +url: /cpp/aspose.pdf.facades/form/extractxfadata/ +--- +## Form::ExtractXfaData method + + +Extracts XFA data packet. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Form::ExtractXfaData(System::SharedPtr outputXmlStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputXmlStream | System::SharedPtr\ | Stream where XML data will be stored. | +## Remarks + + + + + + outputXmlStream + + + Stream where XML data will be stored. + + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/fillbarcodefield/_index.md b/english/cpp/aspose.pdf.facades/form/fillbarcodefield/_index.md new file mode 100644 index 0000000000..b25b23b3db --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/fillbarcodefield/_index.md @@ -0,0 +1,53 @@ +--- +title: Aspose::Pdf::Facades::Form::FillBarcodeField method +linktitle: FillBarcodeField +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::FillBarcodeField method. Fill a barcode field according to its fully qualified field name in C++.' +type: docs +weight: 3400 +url: /cpp/aspose.pdf.facades/form/fillbarcodefield/ +--- +## Form::FillBarcodeField method + + +Fill a barcode field according to its fully qualified field name. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::Form::FillBarcodeField(System::String fieldName, System::String data) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | The fully qualified field name. | +| data | System::String | The new barcode value. | + +### ReturnValue + +If filling succeed, return true; otherwise, false. +## Remarks + + + + + + fieldName + + + The fully qualified field name. + + + + + data + + + The new barcode value. + + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/fillfield/_index.md b/english/cpp/aspose.pdf.facades/form/fillfield/_index.md new file mode 100644 index 0000000000..25b21322ae --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/fillfield/_index.md @@ -0,0 +1,255 @@ +--- +title: Aspose::Pdf::Facades::Form::FillField method +linktitle: FillField +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::FillField method. Fills the field with a valid value according to a fully qualified field name. Before filling the fields, every field''s names and its corresponding valid values must be known. Both the fields'' name and values are case sensitive. Please note that Aspose.Pdf.Facades supports only full field names and does not work with partial field names in contrast with Aspose.Pdf.Kit; For example if field has full name "Form.Subform.TextField" you should specify full name and not "TextField". You can use FieldNames property to explore existing field names and search required field by its partial name in C++.' +type: docs +weight: 2300 +url: /cpp/aspose.pdf.facades/form/fillfield/ +--- +## Form::FillField(System::String, System::String) method + + +Fills the field with a valid value according to a fully qualified field name. Before filling the fields, every field's names and its corresponding valid values must be known. Both the fields' name and values are case sensitive. Please note that [Aspose.Pdf.Facades](../../) supports only full field names and does not work with partial field names in contrast with Aspose.Pdf.Kit; For example if field has full name "Form.Subform.TextField" you should specify full name and not "TextField". You can use FieldNames property to explore existing field names and search required field by its partial name. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::Form::FillField(System::String fieldName, System::String fieldValue) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | The field's name to be filled. | +| fieldValue | System::String | The field's value which must be a valid value for some fields. | + +### ReturnValue + +true if field is found and filled successfully. +## Remarks + + + + + + fieldName + + + The field's name to be filled. + + + + + fieldValue + + + The field's value which must be a valid value for some fields. + + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## Form::FillField(System::String, int32_t) method + + +Fills the radio box field with a valid index value according to a fully qualified field name. Before filling the fields, only field's name must be known. While the value can be specified by its index. Notice: Only be applied to Radio Box, Combo Box and List Box fields. Please note that [Aspose.Pdf.Facades](../../) supports only full field names and does not work with partial field names in contrast with Aspose.Pdf.Kit; For example if field has full name "Form.Subform.ListBoxField" you should specify full name and not "ListBoxField". You can use FieldNames property to explore existing field names and search required field by its partial name. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::Form::FillField(System::String fieldName, int32_t index) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | Name of field to be filled. | +| index | int32_t | Index of chosen item. | + +### ReturnValue + +true if field was found and successfully filled. +## Remarks + + + + + + fieldName + + + Name of field to be filled. + + + + + index + + + Index of chosen item. + + + + + +```cpp +Form form = new Form("PdfForm.pdf"); +form.FillField("listboxField", 2); +form.FillField("comboboxField", 2); +form.FillField("radiobuttonField", 2); +``` + +```cpp +//how to search field by its partial name: +Form form = new Form("input.pdf", "output.pdf"); +foreach(string fieldName in form.FieldNames) +{ + if (fieldName.EndsWith("ListBoxField")) + { + Console.WriteLine("Full name is: " + fieldName); + } +} +``` + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## Form::FillField(System::String, bool) method + + +Fills the check box field with a boolean value. Notice: Only be applied to Check Box. Please note that [Aspose.Pdf.Facades](../../) supports only full field names and does not work with partial field names in contrast with Aspose.Pdf.Kit; For example if field has full name "Form.Subform.CheckBoxField" you should specify full name and not "CheckBoxField". You can use FieldNames property to explore existing field names and search required field by its partial name. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::Form::FillField(System::String fieldName, bool beChecked) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | The field's name to be filled. | +| beChecked | bool | A boolean flag: true means to check the box, while false to uncheck it. | + +### ReturnValue + +true if field was found and successfully filled. +## Remarks + + + + + + fieldName + + + The field's name to be filled. + + + + + beChecked + + + A boolean flag: true means to check the box, while false to uncheck it. + + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## Form::FillField(System::String, System::ArrayPtr\) method + + +Fill a field with multiple selections.Note: only for AcroForm List Box Field. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Form::FillField(System::String fieldName, System::ArrayPtr fieldValues) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | The fully qualified field name. | +| fieldValues | System::ArrayPtr\ | A string array which contains several items to be selected. | +## Remarks + + + + + + fieldName + + + The fully qualified field name. + + + + + fieldValues + + + A string array which contains several items to be selected. + + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## Form::FillField(System::String, System::String, bool) method + + +Fills field with specified value. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::Form::FillField(System::String fieldName, System::String value, bool fitFontSize) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | Name of field | +| value | System::String | New value of the field | +| fitFontSize | bool | If true, the font size in the edit boxes will be fitted. | + +### ReturnValue + +true if field was found and successfully filled. +## Remarks + + + + + + fieldName + + + Name of field + + + + + value + + + New value of the field + + + + + fitFontSize + + + If true, the font size in the edit boxes will be fitted. + + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/fillfields/_index.md b/english/cpp/aspose.pdf.facades/form/fillfields/_index.md new file mode 100644 index 0000000000..e407cd4a92 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/fillfields/_index.md @@ -0,0 +1,62 @@ +--- +title: Aspose::Pdf::Facades::Form::FillFields method +linktitle: FillFields +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::FillFields method. Fills the text box fields with a text values and save the document. Relevant for signed documents. Notice: Only be applied to Text Box. Both the fields'' name and values are case sensitive in C++.' +type: docs +weight: 2400 +url: /cpp/aspose.pdf.facades/form/fillfields/ +--- +## Form::FillFields method + + +Fills the text box fields with a text values and save the document. Relevant for signed documents. Notice: Only be applied to [Text](../../../aspose.pdf.text/) Box. Both the fields' name and values are case sensitive. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::Form::FillFields(System::ArrayPtr fieldNames, System::ArrayPtr fieldValues, System::SharedPtr &output) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldNames | System::ArrayPtr\ | Names of fields. | +| fieldValues | System::ArrayPtr\ | New values of the fields. | +| output | System::SharedPtr\\& | Stream where document will be saved. | + +### ReturnValue + +true if fields was found and successfully filled. +## Remarks + + + + + + fieldNames + + + Names of fields. + + + + + fieldValues + + + New values of the fields. + + + + + output + + + Stream where document will be saved. + + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/fillimagefield/_index.md b/english/cpp/aspose.pdf.facades/form/fillimagefield/_index.md new file mode 100644 index 0000000000..c124e63042 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/fillimagefield/_index.md @@ -0,0 +1,89 @@ +--- +title: Aspose::Pdf::Facades::Form::FillImageField method +linktitle: FillImageField +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::FillImageField method. Pastes an image onto the existing button field as its appearance according to its fully qualified field name in C++.' +type: docs +weight: 4900 +url: /cpp/aspose.pdf.facades/form/fillimagefield/ +--- +## Form::FillImageField(System::String, System::String) method + + +Pastes an image onto the existing button field as its appearance according to its fully qualified field name. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Form::FillImageField(System::String fieldName, System::String imageFileName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | The fully qualified field name of the image button field. | +| imageFileName | System::String | The path of the image file, relative and absolute are both ok. | +## Remarks + + + + + + fieldName + + + The fully qualified field name of the image button field. + + + + + imageFileName + + + The path of the image file, relative and absolute are both ok. + + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## Form::FillImageField(System::String, System::SharedPtr\) method + + +Overloads function of FillImageField. The input is a image stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Form::FillImageField(System::String fieldName, System::SharedPtr imageStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | The fully qualified field name. | +| imageStream | System::SharedPtr\ | The image's stream. | +## Remarks + + + + + + fieldName + + + The fully qualified field name. + + + + + imageStream + + + The image's stream. + + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/flattenallfields/_index.md b/english/cpp/aspose.pdf.facades/form/flattenallfields/_index.md new file mode 100644 index 0000000000..e4be9c6a6a --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/flattenallfields/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Form::FlattenAllFields method +linktitle: FlattenAllFields +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::FlattenAllFields method. Flattens all the fields in C++.' +type: docs +weight: 3200 +url: /cpp/aspose.pdf.facades/form/flattenallfields/ +--- +## Form::FlattenAllFields method + + +Flattens all the fields. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Form::FlattenAllFields() +``` + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/flattenfield/_index.md b/english/cpp/aspose.pdf.facades/form/flattenfield/_index.md new file mode 100644 index 0000000000..d27cf40b21 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/flattenfield/_index.md @@ -0,0 +1,40 @@ +--- +title: Aspose::Pdf::Facades::Form::FlattenField method +linktitle: FlattenField +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::FlattenField method. Flattens a specified field with the fully qualified field name. Any other field will remain unchangable. If the fieldName is invalid, all the fields will remain unchangable in C++.' +type: docs +weight: 3300 +url: /cpp/aspose.pdf.facades/form/flattenfield/ +--- +## Form::FlattenField method + + +Flattens a specified field with the fully qualified field name. Any other field will remain unchangable. If the fieldName is invalid, all the fields will remain unchangable. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Form::FlattenField(System::String fieldName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | The name of the field to be flattened. | +## Remarks + + + + + + fieldName + + + The name of the field to be flattened. + + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/form/_index.md b/english/cpp/aspose.pdf.facades/form/form/_index.md new file mode 100644 index 0000000000..9149832fdd --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/form/_index.md @@ -0,0 +1,482 @@ +--- +title: Aspose::Pdf::Facades::Form::Form constructor +linktitle: Form +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::Form constructor. Constructor of Form with two stream parameters. Specify same source and destination stream for incremental update in C++.' +type: docs +weight: 2200 +url: /cpp/aspose.pdf.facades/form/form/ +--- +## Form::Form(System::SharedPtr\, System::SharedPtr\) constructor + + +Constructor of [Form](../) with two stream parameters. Specify same source and destination stream for incremental update. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::Form::Form(System::SharedPtr srcStream, System::SharedPtr destStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| srcStream | System::SharedPtr\ | Source stream. | +| destStream | System::SharedPtr\ | Destination stream. | +## Remarks + + + + Deprecated + + Use constructor without destination. + + + + + srcStream + + + Source stream. + + + + + destStream + + + Destination stream. + + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## Form::Form() constructor + + +Construtcor of [Form](../) without parameters. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::Form::Form() +``` + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## Form::Form(System::String) constructor + + +Constructor of [Form](../). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::Form::Form(System::String srcFileName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| srcFileName | System::String | Source file path. | +## Remarks + + + + + + srcFileName + + + Source file path. + + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## Form::Form(System::SharedPtr\) constructor + + +Constructor for form. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::Form::Form(System::SharedPtr srcStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| srcStream | System::SharedPtr\ | source stream. | +## Remarks + + + + + + srcStream + + + source stream. + + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## Form::Form(System::String, System::String) constructor + + +Constructor of [Form](../) class. Specify same source file name and destination file name to perform incremental update. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::Form::Form(System::String srcFileName, System::String destFileName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| srcFileName | System::String | Path of the source file. | +| destFileName | System::String | Path of the destination file. | +## Remarks + + + + Deprecated + + Use constructor without destination. + + + + + srcFileName + + + Path of the source file. + + + + + destFileName + + + Path of the destination file. + + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## Form::Form(System::String, System::SharedPtr\) constructor + + +Constructor of [Form](../). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::Form::Form(System::String srcFileName, System::SharedPtr destStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| srcFileName | System::String | Source file path. | +| destStream | System::SharedPtr\ | Destination file path. | +## Remarks + + + + Deprecated + + Use constructor without destination. + + + + + srcFileName + + + Source file path. + + + + + destStream + + + Destination file path. + + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## Form::Form(System::SharedPtr\, System::String) constructor + + +Constructor of [Form](../). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::Form::Form(System::SharedPtr srcStream, System::String destFileName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| srcStream | System::SharedPtr\ | Source stream. | +| destFileName | System::String | Destination file path. | +## Remarks + + + + Deprecated + + Use constructor without destination. + + + + + srcStream + + + Source stream. + + + + + destFileName + + + Destination file path. + + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## Form::Form(System::SharedPtr\) constructor + + +Initializes new [Form](../) object on base of the *document* . + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::Form::Form(System::SharedPtr document) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | [Pdf](../../../aspose.pdf/) document. | +## Remarks + + + + + + document + + + + Pdf document. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## Form::Form(System::SharedPtr\, System::String) constructor + + +Initializes new [Form](../) object on base of the *document* . + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::Form::Form(System::SharedPtr document, System::String destFileName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | [Pdf](../../../aspose.pdf/) document. | +| destFileName | System::String | Path of the destination file. | +## Remarks + + + + Deprecated + + Use constructor without destination. + + + + + document + + + + Pdf document. + + + + + destFileName + + + Path of the destination file. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## Form::Form(System::SharedPtr\, System::SharedPtr\) constructor + + +Initializes new [Form](../) object on base of the *document* . + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::Form::Form(System::SharedPtr document, System::SharedPtr destStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | [Pdf](../../../aspose.pdf/) document. | +| destStream | System::SharedPtr\ | Destination stream. | +## Remarks + + + + Deprecated + + Use constructor without destination. + + + + + document + + + + Pdf document. + + + + + destStream + + + Destination stream. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## Form::Form(System::SharedPtr\, System::SharedPtr\) constructor + + +Creates form which will save result into HttpResponse object. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::Form::Form(System::SharedPtr inputStream, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Stream containing source document. | +| response | System::SharedPtr\ | HttpResponse object where result will be saved. | +## Remarks + + + + Deprecated + + Use constructor without destination. + + + + + inputStream + + + Stream containing source document. + + + + + response + + + HttpResponse object where result will be saved. + + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## Form::Form(System::String, System::SharedPtr\) constructor + + +Creates form which will save result into HttpResponse object. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::Form::Form(System::String inputFile, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Name of input file. | +| response | System::SharedPtr\ | HttpResponse object where result will be stored. | +## Remarks + + + + Deprecated + + Use constructor without destination. + + + + + inputFile + + + Name of input file. + + + + + response + + + HttpResponse object where result will be stored. + + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/get_attachmentname/_index.md b/english/cpp/aspose.pdf.facades/form/get_attachmentname/_index.md new file mode 100644 index 0000000000..089acbbf56 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/get_attachmentname/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Form::get_AttachmentName method +linktitle: get_AttachmentName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::get_AttachmentName method. Gets name of attachment when result of operation is stored into HttpResponse objects as attachment in C++.' +type: docs +weight: 1900 +url: /cpp/aspose.pdf.facades/form/get_attachmentname/ +--- +## Form::get_AttachmentName method + + +Gets name of attachment when result of operation is stored into HttpResponse objects as attachment. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::Form::get_AttachmentName() const +``` + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/get_contentdisposition/_index.md b/english/cpp/aspose.pdf.facades/form/get_contentdisposition/_index.md new file mode 100644 index 0000000000..999911a08f --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/get_contentdisposition/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::Form::get_ContentDisposition method +linktitle: get_ContentDisposition +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::get_ContentDisposition method. Gets how content will be stored when result of operation is stored into HttpResponse object. Possible value: inline / attachment. Default: inline in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.facades/form/get_contentdisposition/ +--- +## Form::get_ContentDisposition method + + +Gets how content will be stored when result of operation is stored into HttpResponse object. Possible value: inline / attachment. Default: inline. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::ContentDisposition Aspose::Pdf::Facades::Form::get_ContentDisposition() const +``` + +## See Also + +* Enum [ContentDisposition](../../../aspose.pdf/contentdisposition/) +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/get_destfilename/_index.md b/english/cpp/aspose.pdf.facades/form/get_destfilename/_index.md new file mode 100644 index 0000000000..90f4d8ddbe --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/get_destfilename/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::Form::get_DestFileName method +linktitle: get_DestFileName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::get_DestFileName method. Gets destiination file name in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.facades/form/get_destfilename/ +--- +## Form::get_DestFileName method + + +Gets destiination file name. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::Form::get_DestFileName() const +``` + +## Remarks + + + + Deprecated + + Use Save(outputFile) method for getting facade results. + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/get_deststream/_index.md b/english/cpp/aspose.pdf.facades/form/get_deststream/_index.md new file mode 100644 index 0000000000..d39c5bfa82 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/get_deststream/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::Form::get_DestStream method +linktitle: get_DestStream +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::get_DestStream method. Gets destination stream in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.facades/form/get_deststream/ +--- +## Form::get_DestStream method + + +Gets destination stream. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::Form::get_DestStream() const +``` + +## Remarks + + + + Deprecated + + Use Save(outputStream) method for getting facade results. + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/get_fieldnames/_index.md b/english/cpp/aspose.pdf.facades/form/get_fieldnames/_index.md new file mode 100644 index 0000000000..e294503a86 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/get_fieldnames/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Form::get_FieldNames method +linktitle: get_FieldNames +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::get_FieldNames method. Gets list of field names on the form in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.facades/form/get_fieldnames/ +--- +## Form::get_FieldNames method + + +Gets list of field names on the form. + +```cpp +ASPOSE_PDF_SHARED_API System::ArrayPtr Aspose::Pdf::Facades::Form::get_FieldNames() +``` + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/get_formsubmitbuttonnames/_index.md b/english/cpp/aspose.pdf.facades/form/get_formsubmitbuttonnames/_index.md new file mode 100644 index 0000000000..ba3374ea14 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/get_formsubmitbuttonnames/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Form::get_FormSubmitButtonNames method +linktitle: get_FormSubmitButtonNames +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::get_FormSubmitButtonNames method. Gets all form submit button names in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.facades/form/get_formsubmitbuttonnames/ +--- +## Form::get_FormSubmitButtonNames method + + +Gets all form submit button names. + +```cpp +ASPOSE_PDF_SHARED_API System::ArrayPtr Aspose::Pdf::Facades::Form::get_FormSubmitButtonNames() +``` + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/get_importresult/_index.md b/english/cpp/aspose.pdf.facades/form/get_importresult/_index.md new file mode 100644 index 0000000000..e09396883d --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/get_importresult/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Form::get_ImportResult method +linktitle: get_ImportResult +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::get_ImportResult method. Result of last import operation. Array of objects which descibre result of import for each field in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.facades/form/get_importresult/ +--- +## Form::get_ImportResult method + + +Result of last import operation. Array of objects which descibre result of import for each field. + +```cpp +ASPOSE_PDF_SHARED_API System::ArrayPtr> Aspose::Pdf::Facades::Form::get_ImportResult() +``` + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/get_response/_index.md b/english/cpp/aspose.pdf.facades/form/get_response/_index.md new file mode 100644 index 0000000000..98fbafbb29 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/get_response/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Form::get_Response method +linktitle: get_Response +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::get_Response method. Gets Response object where result of operation will be stored in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.facades/form/get_response/ +--- +## Form::get_Response method + + +Gets Response object where result of operation will be stored. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::Form::get_Response() const +``` + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/get_saveoptions/_index.md b/english/cpp/aspose.pdf.facades/form/get_saveoptions/_index.md new file mode 100644 index 0000000000..8bd325e958 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/get_saveoptions/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::Form::get_SaveOptions method +linktitle: get_SaveOptions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::get_SaveOptions method. Gets save options when result is stored as HttpResponse. Default value: PdfSaveOptions in C++.' +type: docs +weight: 1700 +url: /cpp/aspose.pdf.facades/form/get_saveoptions/ +--- +## Form::get_SaveOptions method + + +Gets save options when result is stored as HttpResponse. Default value: [PdfSaveOptions](../../../aspose.pdf/pdfsaveoptions/). + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::Form::get_SaveOptions() const +``` + +## See Also + +* Class [SaveOptions](../../../aspose.pdf/saveoptions/) +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/get_srcfilename/_index.md b/english/cpp/aspose.pdf.facades/form/get_srcfilename/_index.md new file mode 100644 index 0000000000..f580c10d8c --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/get_srcfilename/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::Form::get_SrcFileName method +linktitle: get_SrcFileName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::get_SrcFileName method. Gets source file name in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.facades/form/get_srcfilename/ +--- +## Form::get_SrcFileName method + + +Gets source file name. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::Form::get_SrcFileName() const +``` + +## Remarks + + + + Deprecated + + Use BindPdf(inputFile) method for facade initialization. + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/get_srcstream/_index.md b/english/cpp/aspose.pdf.facades/form/get_srcstream/_index.md new file mode 100644 index 0000000000..8e22f27394 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/get_srcstream/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::Form::get_SrcStream method +linktitle: get_SrcStream +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::get_SrcStream method. Gets source stream in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.facades/form/get_srcstream/ +--- +## Form::get_SrcStream method + + +Gets source stream. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::Form::get_SrcStream() const +``` + +## Remarks + + + + Deprecated + + Use BindPdf(inputStream) method for facade initialization. + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/getbuttonoptioncurrentvalue/_index.md b/english/cpp/aspose.pdf.facades/form/getbuttonoptioncurrentvalue/_index.md new file mode 100644 index 0000000000..7b59cb6915 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/getbuttonoptioncurrentvalue/_index.md @@ -0,0 +1,44 @@ +--- +title: Aspose::Pdf::Facades::Form::GetButtonOptionCurrentValue method +linktitle: GetButtonOptionCurrentValue +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::GetButtonOptionCurrentValue method. Returns the current value for radio button option fields in C++.' +type: docs +weight: 2500 +url: /cpp/aspose.pdf.facades/form/getbuttonoptioncurrentvalue/ +--- +## Form::GetButtonOptionCurrentValue method + + +Returns the current value for radio button option fields. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::Form::GetButtonOptionCurrentValue(System::String fieldName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | Field Name | + +### ReturnValue + +String value for the current radio group optino. See also [GetButtonOptionValues](../getbuttonoptionvalues/) +## Remarks + + + + + + fieldName + + + Field Name + + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/getbuttonoptionvalues/_index.md b/english/cpp/aspose.pdf.facades/form/getbuttonoptionvalues/_index.md new file mode 100644 index 0000000000..40177bb8b6 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/getbuttonoptionvalues/_index.md @@ -0,0 +1,44 @@ +--- +title: Aspose::Pdf::Facades::Form::GetButtonOptionValues method +linktitle: GetButtonOptionValues +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::GetButtonOptionValues method. Gets the radio button option fields and related values based on the field name. This method has meaning for radio button groups in C++.' +type: docs +weight: 2600 +url: /cpp/aspose.pdf.facades/form/getbuttonoptionvalues/ +--- +## Form::GetButtonOptionValues method + + +Gets the radio button option fields and related values based on the field name. This method has meaning for radio button groups. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr> Aspose::Pdf::Facades::Form::GetButtonOptionValues(System::String fieldName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | Field Name | + +### ReturnValue + +Hash table of option values keyed by form item name +## Remarks + + + + + + fieldName + + + Field Name + + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/getfield/_index.md b/english/cpp/aspose.pdf.facades/form/getfield/_index.md new file mode 100644 index 0000000000..e29676291f --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/getfield/_index.md @@ -0,0 +1,44 @@ +--- +title: Aspose::Pdf::Facades::Form::GetField method +linktitle: GetField +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::GetField method. Gets the field''s value according to its field name in C++.' +type: docs +weight: 2700 +url: /cpp/aspose.pdf.facades/form/getfield/ +--- +## Form::GetField method + + +Gets the field's value according to its field name. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::Form::GetField(System::String fieldName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | The fully qualified field name. | + +### ReturnValue + +The field's value. +## Remarks + + + + + + fieldName + + + The fully qualified field name. + + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/getfieldfacade/_index.md b/english/cpp/aspose.pdf.facades/form/getfieldfacade/_index.md new file mode 100644 index 0000000000..89777ccd3d --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/getfieldfacade/_index.md @@ -0,0 +1,45 @@ +--- +title: Aspose::Pdf::Facades::Form::GetFieldFacade method +linktitle: GetFieldFacade +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::GetFieldFacade method. Returns FrofmFieldFacade object containing all appearance attributes in C++.' +type: docs +weight: 2100 +url: /cpp/aspose.pdf.facades/form/getfieldfacade/ +--- +## Form::GetFieldFacade method + + +Returns FrofmFieldFacade object containing all appearance attributes. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::Form::GetFieldFacade(System::String fieldName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | Name of field to read. | + +### ReturnValue + +[FormFieldFacade](../../formfieldfacade/) object +## Remarks + + + + + + fieldName + + + Name of field to read. + + + +## See Also + +* Class [FormFieldFacade](../../formfieldfacade/) +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/getfieldflag/_index.md b/english/cpp/aspose.pdf.facades/form/getfieldflag/_index.md new file mode 100644 index 0000000000..e51b983e9f --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/getfieldflag/_index.md @@ -0,0 +1,45 @@ +--- +title: Aspose::Pdf::Facades::Form::GetFieldFlag method +linktitle: GetFieldFlag +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::GetFieldFlag method. Returns flags of the field in C++.' +type: docs +weight: 4800 +url: /cpp/aspose.pdf.facades/form/getfieldflag/ +--- +## Form::GetFieldFlag method + + +Returns flags of the field. + +```cpp +ASPOSE_PDF_SHARED_API PropertyFlag Aspose::Pdf::Facades::Form::GetFieldFlag(System::String fieldName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | Field name | + +### ReturnValue + +Property flag (ReadOnly/ Required/NoExport +## Remarks + + + + + + fieldName + + + Field name + + + +## See Also + +* Enum [PropertyFlag](../../propertyflag/) +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/getfieldlimit/_index.md b/english/cpp/aspose.pdf.facades/form/getfieldlimit/_index.md new file mode 100644 index 0000000000..99f2f3b0d2 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/getfieldlimit/_index.md @@ -0,0 +1,44 @@ +--- +title: Aspose::Pdf::Facades::Form::GetFieldLimit method +linktitle: GetFieldLimit +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::GetFieldLimit method. Get the limitation of text field in C++.' +type: docs +weight: 2900 +url: /cpp/aspose.pdf.facades/form/getfieldlimit/ +--- +## Form::GetFieldLimit method + + +Get the limitation of text field. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::Form::GetFieldLimit(System::String fieldName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | The qualified field name. | + +### ReturnValue + +Return the limitation number of characters a text field can be filled. It not set, return 0. +## Remarks + + + + + + fieldName + + + The qualified field name. + + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/getfieldtype/_index.md b/english/cpp/aspose.pdf.facades/form/getfieldtype/_index.md new file mode 100644 index 0000000000..2161877915 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/getfieldtype/_index.md @@ -0,0 +1,45 @@ +--- +title: Aspose::Pdf::Facades::Form::GetFieldType method +linktitle: GetFieldType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::GetFieldType method. Returns type of field in C++.' +type: docs +weight: 4600 +url: /cpp/aspose.pdf.facades/form/getfieldtype/ +--- +## Form::GetFieldType method + + +Returns type of field. + +```cpp +ASPOSE_PDF_SHARED_API FieldType Aspose::Pdf::Facades::Form::GetFieldType(System::String fieldName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | Field name. | + +### ReturnValue + +Element of FileType enumeration corresponding to field type. +## Remarks + + + + + + fieldName + + + Field name. + + + +## See Also + +* Enum [FieldType](../../fieldtype/) +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/getfullfieldname/_index.md b/english/cpp/aspose.pdf.facades/form/getfullfieldname/_index.md new file mode 100644 index 0000000000..a2cfce33f9 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/getfullfieldname/_index.md @@ -0,0 +1,44 @@ +--- +title: Aspose::Pdf::Facades::Form::GetFullFieldName method +linktitle: GetFullFieldName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::GetFullFieldName method. Gets the full field name according to its short field name in C++.' +type: docs +weight: 2800 +url: /cpp/aspose.pdf.facades/form/getfullfieldname/ +--- +## Form::GetFullFieldName method + + +Gets the full field name according to its short field name. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::Form::GetFullFieldName(System::String fieldName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | The fully qualified field name. | + +### ReturnValue + +The full field name. +## Remarks + + + + + + fieldName + + + The fully qualified field name. + + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/getrichtext/_index.md b/english/cpp/aspose.pdf.facades/form/getrichtext/_index.md new file mode 100644 index 0000000000..27c893da8c --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/getrichtext/_index.md @@ -0,0 +1,44 @@ +--- +title: Aspose::Pdf::Facades::Form::GetRichText method +linktitle: GetRichText +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::GetRichText method. Get a Rich Text field''s value, including the formattinf information of every character in C++.' +type: docs +weight: 4400 +url: /cpp/aspose.pdf.facades/form/getrichtext/ +--- +## Form::GetRichText method + + +Get a Rich [Text](../../../aspose.pdf.text/) field's value, including the formattinf information of every character. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::Form::GetRichText(System::String fieldName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | The fully qualified field name of the Rich [Text](../../../aspose.pdf.text/) field. | + +### ReturnValue + +Return a string containing formatting information of the Rich [Text](../../../aspose.pdf.text/) field. +## Remarks + + + + + + fieldName + + + The fully qualified field name of the Rich Text field. + + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/getsubmitflags/_index.md b/english/cpp/aspose.pdf.facades/form/getsubmitflags/_index.md new file mode 100644 index 0000000000..0f9f830234 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/getsubmitflags/_index.md @@ -0,0 +1,45 @@ +--- +title: Aspose::Pdf::Facades::Form::GetSubmitFlags method +linktitle: GetSubmitFlags +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::GetSubmitFlags method. Returns the submit button''s submission flags in C++.' +type: docs +weight: 4500 +url: /cpp/aspose.pdf.facades/form/getsubmitflags/ +--- +## Form::GetSubmitFlags method + + +Returns the submit button's submission flags. + +```cpp +ASPOSE_PDF_SHARED_API SubmitFormFlag Aspose::Pdf::Facades::Form::GetSubmitFlags(System::String fieldName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | The qualified field name. | + +### ReturnValue + +Submission flags of the button. +## Remarks + + + + + + fieldName + + + The qualified field name. + + + +## See Also + +* Enum [SubmitFormFlag](../../submitformflag/) +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/importfdf/_index.md b/english/cpp/aspose.pdf.facades/form/importfdf/_index.md new file mode 100644 index 0000000000..653eb5b8fc --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/importfdf/_index.md @@ -0,0 +1,40 @@ +--- +title: Aspose::Pdf::Facades::Form::ImportFdf method +linktitle: ImportFdf +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::ImportFdf method. Imports the content of the fields from the fdf file and put them into the new pdf in C++.' +type: docs +weight: 3500 +url: /cpp/aspose.pdf.facades/form/importfdf/ +--- +## Form::ImportFdf method + + +Imports the content of the fields from the fdf file and put them into the new pdf. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Form::ImportFdf(System::SharedPtr inputFdfStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFdfStream | System::SharedPtr\ | The input fdf stream. | +## Remarks + + + + + + inputFdfStream + + + The input fdf stream. + + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/importxfdf/_index.md b/english/cpp/aspose.pdf.facades/form/importxfdf/_index.md new file mode 100644 index 0000000000..f61fba8bfb --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/importxfdf/_index.md @@ -0,0 +1,40 @@ +--- +title: Aspose::Pdf::Facades::Form::ImportXfdf method +linktitle: ImportXfdf +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::ImportXfdf method. Imports the content of the fields from the xfdf(xml) file and put them into the new pdf in C++.' +type: docs +weight: 4100 +url: /cpp/aspose.pdf.facades/form/importxfdf/ +--- +## Form::ImportXfdf method + + +Imports the content of the fields from the xfdf(xml) file and put them into the new pdf. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Form::ImportXfdf(System::SharedPtr inputXfdfStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputXfdfStream | System::SharedPtr\ | The input xfdf(xml) stream. | +## Remarks + + + + + + inputXfdfStream + + + The input xfdf(xml) stream. + + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/importxml/_index.md b/english/cpp/aspose.pdf.facades/form/importxml/_index.md new file mode 100644 index 0000000000..97ea3a1d81 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/importxml/_index.md @@ -0,0 +1,80 @@ +--- +title: Aspose::Pdf::Facades::Form::ImportXml method +linktitle: ImportXml +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::ImportXml method. Imports the content of the fields from the xml file and put them into the new pdf in C++.' +type: docs +weight: 3700 +url: /cpp/aspose.pdf.facades/form/importxml/ +--- +## Form::ImportXml(System::SharedPtr\) method + + +Imports the content of the fields from the xml file and put them into the new pdf. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Form::ImportXml(System::SharedPtr inputXmlStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputXmlStream | System::SharedPtr\ | Stream from which XML for import is read. | +## Remarks + + + + + + inputXmlStream + + + Stream from which XML for import is read. + + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## Form::ImportXml(System::SharedPtr\, bool) method + + +Imports the content of the fields from the xml file and put them into the new pdf. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Form::ImportXml(System::SharedPtr inputXmlStream, bool IgnoreFormTemplateChanges) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputXmlStream | System::SharedPtr\ | The input xml stream. | +| IgnoreFormTemplateChanges | bool | If this parameter is true then all changes of the XFA form template will not be saved | +## Remarks + + + + + + inputXmlStream + + + The input xml stream. + + + + + IgnoreFormTemplateChanges + + + If this parameter is true then all changes of the XFA form template will not be saved + + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/isrequiredfield/_index.md b/english/cpp/aspose.pdf.facades/form/isrequiredfield/_index.md new file mode 100644 index 0000000000..cf5cea77ae --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/isrequiredfield/_index.md @@ -0,0 +1,44 @@ +--- +title: Aspose::Pdf::Facades::Form::IsRequiredField method +linktitle: IsRequiredField +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::IsRequiredField method. Determines whether field is required or not in C++.' +type: docs +weight: 4700 +url: /cpp/aspose.pdf.facades/form/isrequiredfield/ +--- +## Form::IsRequiredField method + + +Determines whether field is required or not. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::Form::IsRequiredField(System::String fieldName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | The name of field. | + +### ReturnValue + +True - the field is required; otherwise, false. +## Remarks + + + + + + fieldName + + + The name of field. + + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/renamefield/_index.md b/english/cpp/aspose.pdf.facades/form/renamefield/_index.md new file mode 100644 index 0000000000..f814a5479f --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/renamefield/_index.md @@ -0,0 +1,49 @@ +--- +title: Aspose::Pdf::Facades::Form::RenameField method +linktitle: RenameField +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::RenameField method. Renames a field. Either AcroForm field or XFA field is OK in C++.' +type: docs +weight: 4300 +url: /cpp/aspose.pdf.facades/form/renamefield/ +--- +## Form::RenameField method + + +Renames a field. Either AcroForm field or XFA field is OK. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Form::RenameField(System::String fieldName, System::String newFieldName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | the old field name | +| newFieldName | System::String | the new field name | +## Remarks + + + + + + fieldName + + + the old field name + + + + + newFieldName + + + the new field name + + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/save/_index.md b/english/cpp/aspose.pdf.facades/form/save/_index.md new file mode 100644 index 0000000000..0d0d3845c3 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/save/_index.md @@ -0,0 +1,94 @@ +--- +title: Aspose::Pdf::Facades::Form::Save method +linktitle: Save +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::Save method. Saves the value of the filled fields and close the opened Pdf document in C++.' +type: docs +weight: 3000 +url: /cpp/aspose.pdf.facades/form/save/ +--- +## Form::Save() method + + +Saves the value of the filled fields and close the opened [Pdf](../../../aspose.pdf/) document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Form::Save() +``` + +## Remarks + + + + Deprecated + + Use Save(destination) method for saving facade results. + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## Form::Save(System::String) method + + +Saves document into specified file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Form::Save(System::String destFile) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| destFile | System::String | File where document will be saved. | +## Remarks + + + + + + destFile + + + File where document will be saved. + + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## Form::Save(System::SharedPtr\) method + + +Saves document into specified stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Form::Save(System::SharedPtr destStream) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| destStream | System::SharedPtr\ | Stream where document will be saved. | +## Remarks + + + + + + destStream + + + Stream where document will be saved. + + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/set_attachmentname/_index.md b/english/cpp/aspose.pdf.facades/form/set_attachmentname/_index.md new file mode 100644 index 0000000000..85f2fa3957 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/set_attachmentname/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Form::set_AttachmentName method +linktitle: set_AttachmentName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::set_AttachmentName method. Sets name of attachment when result of operation is stored into HttpResponse objects as attachment in C++.' +type: docs +weight: 2000 +url: /cpp/aspose.pdf.facades/form/set_attachmentname/ +--- +## Form::set_AttachmentName method + + +Sets name of attachment when result of operation is stored into HttpResponse objects as attachment. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Form::set_AttachmentName(System::String value) +``` + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/set_contentdisposition/_index.md b/english/cpp/aspose.pdf.facades/form/set_contentdisposition/_index.md new file mode 100644 index 0000000000..8f30384678 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/set_contentdisposition/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::Form::set_ContentDisposition method +linktitle: set_ContentDisposition +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::set_ContentDisposition method. Sets how content will be stored when result of operation is stored into HttpResponse object. Possible value: inline / attachment. Default: inline in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.facades/form/set_contentdisposition/ +--- +## Form::set_ContentDisposition method + + +Sets how content will be stored when result of operation is stored into HttpResponse object. Possible value: inline / attachment. Default: inline. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Form::set_ContentDisposition(Aspose::Pdf::ContentDisposition value) +``` + +## See Also + +* Enum [ContentDisposition](../../../aspose.pdf/contentdisposition/) +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/set_convertto/_index.md b/english/cpp/aspose.pdf.facades/form/set_convertto/_index.md new file mode 100644 index 0000000000..ff5d1e3123 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/set_convertto/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::Form::set_ConvertTo method +linktitle: set_ConvertTo +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::set_ConvertTo method. Sets PDF file format. Result file will be saved in specified file format. If this property is not specified then file will be save in default PDF format without conversion in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.facades/form/set_convertto/ +--- +## Form::set_ConvertTo method + + +Sets PDF file format. Result file will be saved in specified file format. If this property is not specified then file will be save in default PDF format without conversion. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Form::set_ConvertTo(PdfFormat value) +``` + +## See Also + +* Enum [PdfFormat](../../../aspose.pdf/pdfformat/) +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/set_destfilename/_index.md b/english/cpp/aspose.pdf.facades/form/set_destfilename/_index.md new file mode 100644 index 0000000000..705982de6c --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/set_destfilename/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::Form::set_DestFileName method +linktitle: set_DestFileName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::set_DestFileName method. Sets destiination file name in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.facades/form/set_destfilename/ +--- +## Form::set_DestFileName method + + +Sets destiination file name. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Form::set_DestFileName(System::String value) +``` + +## Remarks + + + + Deprecated + + Use Save(outputFile) method for getting facade results. + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/set_deststream/_index.md b/english/cpp/aspose.pdf.facades/form/set_deststream/_index.md new file mode 100644 index 0000000000..daa423b83e --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/set_deststream/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::Form::set_DestStream method +linktitle: set_DestStream +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::set_DestStream method. Sets destination stream in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.facades/form/set_deststream/ +--- +## Form::set_DestStream method + + +Sets destination stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Form::set_DestStream(System::SharedPtr value) +``` + +## Remarks + + + + Deprecated + + Use Save(outputStream) method for getting facade results. + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/set_response/_index.md b/english/cpp/aspose.pdf.facades/form/set_response/_index.md new file mode 100644 index 0000000000..37df76f95d --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/set_response/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Form::set_Response method +linktitle: set_Response +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::set_Response method. Sets Response object where result of operation will be stored in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf.facades/form/set_response/ +--- +## Form::set_Response method + + +Sets Response object where result of operation will be stored. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Form::set_Response(System::SharedPtr value) +``` + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/set_saveoptions/_index.md b/english/cpp/aspose.pdf.facades/form/set_saveoptions/_index.md new file mode 100644 index 0000000000..8fd7f9883d --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/set_saveoptions/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::Form::set_SaveOptions method +linktitle: set_SaveOptions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::set_SaveOptions method. Sets save options when result is stored as HttpResponse. Default value: PdfSaveOptions in C++.' +type: docs +weight: 1800 +url: /cpp/aspose.pdf.facades/form/set_saveoptions/ +--- +## Form::set_SaveOptions method + + +Sets save options when result is stored as HttpResponse. Default value: [PdfSaveOptions](../../../aspose.pdf/pdfsaveoptions/). + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Form::set_SaveOptions(System::SharedPtr value) +``` + +## See Also + +* Class [SaveOptions](../../../aspose.pdf/saveoptions/) +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/set_srcfilename/_index.md b/english/cpp/aspose.pdf.facades/form/set_srcfilename/_index.md new file mode 100644 index 0000000000..560273e06a --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/set_srcfilename/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::Form::set_SrcFileName method +linktitle: set_SrcFileName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::set_SrcFileName method. Sets source file name in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.facades/form/set_srcfilename/ +--- +## Form::set_SrcFileName method + + +Sets source file name. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Form::set_SrcFileName(System::String value) +``` + +## Remarks + + + + Deprecated + + Use BindPdf(inputFile) method for facade initialization. + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/set_srcstream/_index.md b/english/cpp/aspose.pdf.facades/form/set_srcstream/_index.md new file mode 100644 index 0000000000..a9a7dd74e8 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/set_srcstream/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::Form::set_SrcStream method +linktitle: set_SrcStream +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::set_SrcStream method. Sets source stream in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.facades/form/set_srcstream/ +--- +## Form::set_SrcStream method + + +Sets source stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Form::set_SrcStream(System::SharedPtr value) +``` + +## Remarks + + + + Deprecated + + Use BindPdf(inputStream) method for facade initialization. + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/form/setxfadata/_index.md b/english/cpp/aspose.pdf.facades/form/setxfadata/_index.md new file mode 100644 index 0000000000..e31ee6778d --- /dev/null +++ b/english/cpp/aspose.pdf.facades/form/setxfadata/_index.md @@ -0,0 +1,40 @@ +--- +title: Aspose::Pdf::Facades::Form::SetXfaData method +linktitle: SetXfaData +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Form::SetXfaData method. Replaces XFA data with specified data packet. Data packet may be extracted using ExtractXfaData in C++.' +type: docs +weight: 4000 +url: /cpp/aspose.pdf.facades/form/setxfadata/ +--- +## Form::SetXfaData method + + +Replaces XFA data with specified data packet. Data packet may be extracted using ExtractXfaData. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Form::SetXfaData(System::SharedPtr inputXmlStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputXmlStream | System::SharedPtr\ | Stream where XML is stored. | +## Remarks + + + + + + inputXmlStream + + + Stream where XML is stored. + + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formattedtext/_index.md b/english/cpp/aspose.pdf.facades/formattedtext/_index.md new file mode 100644 index 0000000000..ae9c5de471 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formattedtext/_index.md @@ -0,0 +1,45 @@ +--- +title: Aspose::Pdf::Facades::FormattedText class +linktitle: FormattedText +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormattedText class. Class which represents formatted text. Contains information about text and its color, size, style in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.facades/formattedtext/ +--- +## FormattedText class + + +Class which represents formatted text. Contains information about text and its color, size, style. + +```cpp +class FormattedText : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [AddNewLineText](./addnewlinetext/)(System::String) | Adds a new line to the [FormattedText](./) object and sets the newLineText to the next line's text. | +| [AddNewLineText](./addnewlinetext/)(System::String, float) | Adds a new line to the [FormattedText](./) object and sets the newLineText to the next line's text. | +| [FormattedText](./formattedtext/)() | Initializes [FormattedText](./). | +| [FormattedText](./formattedtext/)(System::String) | Initializes [FormattedText](./). | +| [FormattedText](./formattedtext/)(System::String, System::SharedPtr\, FontStyle, EncodingType, bool, float) | Initializes [FormattedText](./). | +| [FormattedText](./formattedtext/)(System::String, System::SharedPtr\, FontStyle, EncodingType, bool, float, float) | Initialize [FormattedText](./). | +| [FormattedText](./formattedtext/)(System::String, System::Drawing::Color, FontStyle, EncodingType, bool, float) | Initializes [FormattedText](./). | +| [FormattedText](./formattedtext/)(System::String, System::Drawing::Color, FontStyle, EncodingType, bool, float, float) | Initializes [FormattedText](./). | +| [FormattedText](./formattedtext/)(System::String, System::SharedPtr\, System::SharedPtr\, FontStyle, EncodingType, bool, float) | Initializes [FormattedText](./). | +| [FormattedText](./formattedtext/)(System::String, System::SharedPtr\, System::SharedPtr\, FontStyle, EncodingType, bool, float, float) | Initializes [FormattedText](./). | +| [FormattedText](./formattedtext/)(System::String, System::Drawing::Color, System::Drawing::Color, FontStyle, EncodingType, bool, float) | Initializes [FormattedText](./). | +| [FormattedText](./formattedtext/)(System::String, System::Drawing::Color, System::Drawing::Color, FontStyle, EncodingType, bool, float, float) | Initializes [FormattedText](./). | +| [FormattedText](./formattedtext/)(System::String, System::Drawing::Color, System::Drawing::Color, System::String, EncodingType, bool, float) | Initializes [FormattedText](./). | +| [FormattedText](./formattedtext/)(System::String, System::Drawing::Color, System::Drawing::Color) | Initializes [FormattedText](./). | +| [FormattedText](./formattedtext/)(System::String, System::Drawing::Color, System::String, EncodingType, bool, float) | Initializes [FormattedText](./). | +| [get_TextHeight](./get_textheight/)() const | Gets height of text. | +| [get_TextWidth](./get_textwidth/)() | Gets width of text. | +| [IsCjk](./iscjk/)() | Checks if text is CJK (Chinese, Japanese, or Korean). | +| [SetCjkFontStyle](./setcjkfontstyle/)() | Changes [FormattedText](./) font style for CJK (Chinese, Japanese, or Korean) font. | +## See Also + +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/formattedtext/addnewlinetext/_index.md b/english/cpp/aspose.pdf.facades/formattedtext/addnewlinetext/_index.md new file mode 100644 index 0000000000..9b4b6fa17e --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formattedtext/addnewlinetext/_index.md @@ -0,0 +1,82 @@ +--- +title: Aspose::Pdf::Facades::FormattedText::AddNewLineText method +linktitle: AddNewLineText +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormattedText::AddNewLineText method. Adds a new line to the FormattedText object and sets the newLineText to the next line''s text in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.facades/formattedtext/addnewlinetext/ +--- +## FormattedText::AddNewLineText(System::String) method + + +Adds a new line to the [FormattedText](../) object and sets the newLineText to the next line's text. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormattedText::AddNewLineText(System::String newLineText) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| newLineText | System::String | [Text](../../../aspose.pdf.text/) of new added line. | +## Remarks + + + + + + newLineText + + + + Text of new added line. + + + +## See Also + +* Class [FormattedText](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## FormattedText::AddNewLineText(System::String, float) method + + +Adds a new line to the [FormattedText](../) object and sets the newLineText to the next line's text. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormattedText::AddNewLineText(System::String newLineText, float lineSpacing) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| newLineText | System::String | [Text](../../../aspose.pdf.text/) of new added line. | +| lineSpacing | float | Spacing of the line. | +## Remarks + + + + + + newLineText + + + + Text of new added line. + + + + + lineSpacing + + + Spacing of the line. + + + +## See Also + +* Class [FormattedText](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formattedtext/formattedtext/_index.md b/english/cpp/aspose.pdf.facades/formattedtext/formattedtext/_index.md new file mode 100644 index 0000000000..7cb6addd5f --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formattedtext/formattedtext/_index.md @@ -0,0 +1,995 @@ +--- +title: Aspose::Pdf::Facades::FormattedText::FormattedText constructor +linktitle: FormattedText +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormattedText::FormattedText constructor. Initializes FormattedText in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.facades/formattedtext/formattedtext/ +--- +## FormattedText::FormattedText() constructor + + +Initializes [FormattedText](../). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::FormattedText::FormattedText() +``` + +## See Also + +* Class [FormattedText](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## FormattedText::FormattedText(System::String) constructor + + +Initializes [FormattedText](../). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::FormattedText::FormattedText(System::String text) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| text | System::String | [Text](../../../aspose.pdf.text/) which contained in [FormattedText](../). | +## Remarks + + + + + + text + + + + Text which contained in FormattedText. + + + +## See Also + +* Class [FormattedText](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## FormattedText::FormattedText(System::String, System::SharedPtr\, FontStyle, EncodingType, bool, float) constructor + + +Initializes [FormattedText](../). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::FormattedText::FormattedText(System::String text, System::SharedPtr fontColor, FontStyle fontStyle, EncodingType encodingType, bool embedded, float textSize) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| text | System::String | [Text](../../../aspose.pdf.text/) content of the string. | +| fontColor | System::SharedPtr\ | [Color](../../../aspose.pdf/color/) of the text. | +| fontStyle | FontStyle | Style of the text. | +| encodingType | EncodingType | Encoding type (value of EncodingType enumeration). | +| embedded | bool | True if the font will be embedded. | +| textSize | float | Size of the text. | +## Remarks + + + + + + text + + + + Text content of the string. + + + + + fontColor + + + + Color of the text. + + + + + fontStyle + + + Style of the text. + + + + + encodingType + + + Encoding type (value of EncodingType enumeration). + + + + + embedded + + + True if the font will be embedded. + + + + + textSize + + + Size of the text. + + + +## See Also + +* Class [FontColor](../../fontcolor/) +* Enum [FontStyle](../../fontstyle/) +* Enum [EncodingType](../../encodingtype/) +* Class [FormattedText](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## FormattedText::FormattedText(System::String, System::SharedPtr\, FontStyle, EncodingType, bool, float, float) constructor + + +Initialize [FormattedText](../). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::FormattedText::FormattedText(System::String text, System::SharedPtr fontColor, FontStyle textFont, EncodingType textEncoding, bool embedded, float textSize, float lineSpacing) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| text | System::String | [Text](../../../aspose.pdf.text/) content of the string. | +| fontColor | System::SharedPtr\ | [Color](../../../aspose.pdf/color/) of the text. | +| textFont | FontStyle | Font of the text. | +| textEncoding | EncodingType | Encoding of the text. | +| embedded | bool | True if text will be embedded. | +| textSize | float | Size of the text. | +| lineSpacing | float | Additional spacing. | +## Remarks + + + + + + text + + + + Text content of the string. + + + + + fontColor + + + + Color of the text. + + + + + textFont + + + Font of the text. + + + + + textEncoding + + + Encoding of the text. + + + + + embedded + + + True if text will be embedded. + + + + + textSize + + + Size of the text. + + + + + lineSpacing + + + Additional spacing. + + + +## See Also + +* Class [FontColor](../../fontcolor/) +* Enum [FontStyle](../../fontstyle/) +* Enum [EncodingType](../../encodingtype/) +* Class [FormattedText](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## FormattedText::FormattedText(System::String, System::Drawing::Color, FontStyle, EncodingType, bool, float) constructor + + +Initializes [FormattedText](../). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::FormattedText::FormattedText(System::String text, System::Drawing::Color color, FontStyle textFont, EncodingType textEncoding, bool embedded, float textSize) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| text | System::String | [Text](../../../aspose.pdf.text/) content of the string. | +| color | System::Drawing::Color | [Color](../../../aspose.pdf/color/) of the text. | +| textFont | FontStyle | Font of the text. | +| textEncoding | EncodingType | Encoding of the text. | +| embedded | bool | True if text will be embedded. | +| textSize | float | Size of the text. | +## Remarks + + + + + + text + + + + Text content of the string. + + + + + color + + + + Color of the text. + + + + + textFont + + + Font of the text. + + + + + textEncoding + + + Encoding of the text. + + + + + embedded + + + True if text will be embedded. + + + + + textSize + + + Size of the text. + + + +## See Also + +* Enum [FontStyle](../../fontstyle/) +* Enum [EncodingType](../../encodingtype/) +* Class [FormattedText](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## FormattedText::FormattedText(System::String, System::Drawing::Color, FontStyle, EncodingType, bool, float, float) constructor + + +Initializes [FormattedText](../). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::FormattedText::FormattedText(System::String text, System::Drawing::Color textColor, FontStyle textFont, EncodingType textEncoding, bool embedded, float textSize, float lineSpacing) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| text | System::String | [Text](../../../aspose.pdf.text/) contents of the string. | +| textColor | System::Drawing::Color | [Color](../../../aspose.pdf/color/) of the text. | +| textFont | FontStyle | Font of the text. | +| textEncoding | EncodingType | Encoding of the text. | +| embedded | bool | If true font will be embedded. | +| textSize | float | Size of the text. | +| lineSpacing | float | Additional spacing. | +## Remarks + + + + + + text + + + + Text contents of the string. + + + + + textColor + + + + Color of the text. + + + + + textFont + + + Font of the text. + + + + + textEncoding + + + Encoding of the text. + + + + + embedded + + + If true font will be embedded. + + + + + textSize + + + Size of the text. + + + + + lineSpacing + + + Additional spacing. + + + +## See Also + +* Enum [FontStyle](../../fontstyle/) +* Enum [EncodingType](../../encodingtype/) +* Class [FormattedText](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## FormattedText::FormattedText(System::String, System::SharedPtr\, System::SharedPtr\, FontStyle, EncodingType, bool, float) constructor + + +Initializes [FormattedText](../). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::FormattedText::FormattedText(System::String text, System::SharedPtr textColor, System::SharedPtr backColor, FontStyle textFont, EncodingType textEncoding, bool embedded, float textSize) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| text | System::String | [Text](../../../aspose.pdf.text/) content of the string. | +| textColor | System::SharedPtr\ | [Color](../../../aspose.pdf/color/) of the text. | +| backColor | System::SharedPtr\ | [Color](../../../aspose.pdf/color/) of background. | +| textFont | FontStyle | Font of the text. | +| textEncoding | EncodingType | Encoding of the text. | +| embedded | bool | If true font will be embedded. | +| textSize | float | Size of the text. | +## Remarks + + + + + + text + + + + Text content of the string. + + + + + textColor + + + + Color of the text. + + + + + backColor + + + + Color of background. + + + + + textFont + + + Font of the text. + + + + + textEncoding + + + Encoding of the text. + + + + + embedded + + + If true font will be embedded. + + + + + textSize + + + Size of the text. + + + +## See Also + +* Class [FontColor](../../fontcolor/) +* Enum [FontStyle](../../fontstyle/) +* Enum [EncodingType](../../encodingtype/) +* Class [FormattedText](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## FormattedText::FormattedText(System::String, System::SharedPtr\, System::SharedPtr\, FontStyle, EncodingType, bool, float, float) constructor + + +Initializes [FormattedText](../). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::FormattedText::FormattedText(System::String text, System::SharedPtr textColor, System::SharedPtr backColor, FontStyle textFont, EncodingType textEncoding, bool embedded, float textSize, float lineSpacing) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| text | System::String | [Text](../../../aspose.pdf.text/) content. | +| textColor | System::SharedPtr\ | [Color](../../../aspose.pdf/color/) of the text. | +| backColor | System::SharedPtr\ | [Color](../../../aspose.pdf/color/) of background. | +| textFont | FontStyle | Font of the text. | +| textEncoding | EncodingType | Encoding of the text. | +| embedded | bool | If true font will be embedded. | +| textSize | float | Size of the text. | +| lineSpacing | float | Additional spacing. | +## Remarks + + + + + + text + + + + Text content. + + + + + textColor + + + + Color of the text. + + + + + backColor + + + + Color of background. + + + + + textFont + + + Font of the text. + + + + + textEncoding + + + Encoding of the text. + + + + + embedded + + + If true font will be embedded. + + + + + textSize + + + Size of the text. + + + + + lineSpacing + + + Additional spacing. + + + +## See Also + +* Class [FontColor](../../fontcolor/) +* Enum [FontStyle](../../fontstyle/) +* Enum [EncodingType](../../encodingtype/) +* Class [FormattedText](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## FormattedText::FormattedText(System::String, System::Drawing::Color, System::Drawing::Color, FontStyle, EncodingType, bool, float) constructor + + +Initializes [FormattedText](../). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::FormattedText::FormattedText(System::String text, System::Drawing::Color textColor, System::Drawing::Color backColor, FontStyle textFont, EncodingType encoding, bool embedded, float textSize) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| text | System::String | [Text](../../../aspose.pdf.text/) content of the string. | +| textColor | System::Drawing::Color | [Color](../../../aspose.pdf/color/) of the text. | +| backColor | System::Drawing::Color | [Color](../../../aspose.pdf/color/) of background. | +| textFont | FontStyle | Font of the text. | +| encoding | EncodingType | Encoding of the text. | +| embedded | bool | True if font will be embedded. | +| textSize | float | Size of the text. | +## Remarks + + + + + + text + + + + Text content of the string. + + + + + textColor + + + + Color of the text. + + + + + backColor + + + + Color of background. + + + + + textFont + + + Font of the text. + + + + + encoding + + + Encoding of the text. + + + + + embedded + + + True if font will be embedded. + + + + + textSize + + + Size of the text. + + + +## See Also + +* Enum [FontStyle](../../fontstyle/) +* Enum [EncodingType](../../encodingtype/) +* Class [FormattedText](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## FormattedText::FormattedText(System::String, System::Drawing::Color, System::Drawing::Color, FontStyle, EncodingType, bool, float, float) constructor + + +Initializes [FormattedText](../). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::FormattedText::FormattedText(System::String text, System::Drawing::Color textColor, System::Drawing::Color backColor, FontStyle textFont, EncodingType textEncoding, bool embedded, float textSize, float lineSpacing) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| text | System::String | [Text](../../../aspose.pdf.text/) contents of the string. | +| textColor | System::Drawing::Color | [Color](../../../aspose.pdf/color/) of the text. | +| backColor | System::Drawing::Color | [Color](../../../aspose.pdf/color/) of the background. | +| textFont | FontStyle | Font of the text. | +| textEncoding | EncodingType | Encoding of the text. | +| embedded | bool | If true font is embedded. | +| textSize | float | Size of the text. | +| lineSpacing | float | Additional spacing. | +## Remarks + + + + + + text + + + + Text contents of the string. + + + + + textColor + + + + Color of the text. + + + + + backColor + + + + Color of the background. + + + + + textFont + + + Font of the text. + + + + + textEncoding + + + Encoding of the text. + + + + + embedded + + + If true font is embedded. + + + + + textSize + + + Size of the text. + + + + + lineSpacing + + + Additional spacing. + + + +## See Also + +* Enum [FontStyle](../../fontstyle/) +* Enum [EncodingType](../../encodingtype/) +* Class [FormattedText](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## FormattedText::FormattedText(System::String, System::Drawing::Color, System::Drawing::Color, System::String, EncodingType, bool, float) constructor + + +Initializes [FormattedText](../). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::FormattedText::FormattedText(System::String text, System::Drawing::Color textColor, System::Drawing::Color backColor, System::String fontName, EncodingType textEncoding, bool embedded, float fontSize) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| text | System::String | [Text](../../../aspose.pdf.text/) content. | +| textColor | System::Drawing::Color | [Color](../../../aspose.pdf/color/) of the text. | +| backColor | System::Drawing::Color | [Color](../../../aspose.pdf/color/) of background. | +| fontName | System::String | Font of the text. | +| textEncoding | EncodingType | Encoding of the text. | +| embedded | bool | If true font will be embedded. | +| fontSize | float | Size of the text. | +## Remarks + + + + + + text + + + + Text content. + + + + + textColor + + + + Color of the text. + + + + + backColor + + + + Color of background. + + + + + fontName + + + Font of the text. + + + + + textEncoding + + + Encoding of the text. + + + + + embedded + + + If true font will be embedded. + + + + + fontSize + + + Size of the text. + + + +## See Also + +* Enum [EncodingType](../../encodingtype/) +* Class [FormattedText](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## FormattedText::FormattedText(System::String, System::Drawing::Color, System::Drawing::Color) constructor + + +Initializes [FormattedText](../). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::FormattedText::FormattedText(System::String text, System::Drawing::Color textColor, System::Drawing::Color backColor) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| text | System::String | [Text](../../../aspose.pdf.text/) content. | +| textColor | System::Drawing::Color | [Color](../../../aspose.pdf/color/) of the text. | +| backColor | System::Drawing::Color | [Color](../../../aspose.pdf/color/) of background. | +## Remarks + + + + + + text + + + + Text content. + + + + + textColor + + + + Color of the text. + + + + + backColor + + + + Color of background. + + + +## See Also + +* Class [FormattedText](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## FormattedText::FormattedText(System::String, System::Drawing::Color, System::String, EncodingType, bool, float) constructor + + +Initializes [FormattedText](../). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::FormattedText::FormattedText(System::String text, System::Drawing::Color textColor, System::String fontName, EncodingType textEncoding, bool embedded, float fontSize) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| text | System::String | [Text](../../../aspose.pdf.text/) content. | +| textColor | System::Drawing::Color | [Color](../../../aspose.pdf/color/) of the text. | +| fontName | System::String | Font of the text. | +| textEncoding | EncodingType | Encoding of the text. | +| embedded | bool | If true font will be embedded. | +| fontSize | float | Size of the text. | +## Remarks + + + + + + text + + + + Text content. + + + + + textColor + + + + Color of the text. + + + + + fontName + + + Font of the text. + + + + + textEncoding + + + Encoding of the text. + + + + + embedded + + + If true font will be embedded. + + + + + fontSize + + + Size of the text. + + + +## See Also + +* Enum [EncodingType](../../encodingtype/) +* Class [FormattedText](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formattedtext/get_textheight/_index.md b/english/cpp/aspose.pdf.facades/formattedtext/get_textheight/_index.md new file mode 100644 index 0000000000..ec8d5e2caf --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formattedtext/get_textheight/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormattedText::get_TextHeight method +linktitle: get_TextHeight +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormattedText::get_TextHeight method. Gets height of text in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.facades/formattedtext/get_textheight/ +--- +## FormattedText::get_TextHeight method + + +Gets height of text. + +```cpp +ASPOSE_PDF_SHARED_API float Aspose::Pdf::Facades::FormattedText::get_TextHeight() const +``` + +## See Also + +* Class [FormattedText](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formattedtext/get_textwidth/_index.md b/english/cpp/aspose.pdf.facades/formattedtext/get_textwidth/_index.md new file mode 100644 index 0000000000..e4c06ad55a --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formattedtext/get_textwidth/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormattedText::get_TextWidth method +linktitle: get_TextWidth +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormattedText::get_TextWidth method. Gets width of text in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.facades/formattedtext/get_textwidth/ +--- +## FormattedText::get_TextWidth method + + +Gets width of text. + +```cpp +ASPOSE_PDF_SHARED_API float Aspose::Pdf::Facades::FormattedText::get_TextWidth() +``` + +## See Also + +* Class [FormattedText](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formattedtext/iscjk/_index.md b/english/cpp/aspose.pdf.facades/formattedtext/iscjk/_index.md new file mode 100644 index 0000000000..84b4eace33 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formattedtext/iscjk/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Facades::FormattedText::IsCjk method +linktitle: IsCjk +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormattedText::IsCjk method. Checks if text is CJK (Chinese, Japanese, or Korean) in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.facades/formattedtext/iscjk/ +--- +## FormattedText::IsCjk method + + +Checks if text is CJK (Chinese, Japanese, or Korean). + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::FormattedText::IsCjk() +``` + + +### ReturnValue + +True if text is CJK. Otherwise false. + +## See Also + +* Class [FormattedText](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formattedtext/setcjkfontstyle/_index.md b/english/cpp/aspose.pdf.facades/formattedtext/setcjkfontstyle/_index.md new file mode 100644 index 0000000000..8ee530b7cf --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formattedtext/setcjkfontstyle/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormattedText::SetCjkFontStyle method +linktitle: SetCjkFontStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormattedText::SetCjkFontStyle method. Changes FormattedText font style for CJK (Chinese, Japanese, or Korean) font in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.facades/formattedtext/setcjkfontstyle/ +--- +## FormattedText::SetCjkFontStyle method + + +Changes [FormattedText](../) font style for CJK (Chinese, Japanese, or Korean) font. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormattedText::SetCjkFontStyle() +``` + +## See Also + +* Class [FormattedText](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/_index.md b/english/cpp/aspose.pdf.facades/formeditor/_index.md new file mode 100644 index 0000000000..22486946d6 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/_index.md @@ -0,0 +1,108 @@ +--- +title: Aspose::Pdf::Facades::FormEditor class +linktitle: FormEditor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor class. Class for editing forms (ading/deleting field etc) in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.facades/formeditor/ +--- +## FormEditor class + + +Class for editing forms (ading/deleting field etc) + +```cpp +class FormEditor : public Aspose::Pdf::Facades::SaveableFacade +``` + +## Methods + +| Method | Description | +| --- | --- | +| [AddField](./addfield/)(FieldType, System::String, int32_t, float, float, float, float) | Add field of specified type to the form. | +| [AddField](./addfield/)(FieldType, System::String, System::String, int32_t, float, float, float, float) | Add field of specified type to the form. | +| [AddFieldScript](./addfieldscript/)(System::String, System::String) | Add JavaScript for a PushButton field. If old event exists, new event is added after it. | +| [AddListItem](./addlistitem/)(System::String, System::String) | Adds new item to the list box. | +| [AddListItem](./addlistitem/)(System::String, System::ArrayPtr\) | Add a new item with Export value to the existing list box field, only for AcroForm combo box field. | +| [AddSubmitBtn](./addsubmitbtn/)(System::String, int32_t, System::String, System::String, float, float, float, float) | Add submit button on the form. | +| [BindPdf](../facade/bindpdf/)(System::String) override | Initializes the facade. | +| [BindPdf](../facade/bindpdf/)(System::SharedPtr\) override | Initializes the facade. | +| [BindPdf](../facade/bindpdf/)(System::SharedPtr\) override | Initializes the facade. | +| virtual [BindPdf](../ifacade/bindpdf/)(System::SharedPtr\) | Binds PDF document for editing. | +| [Close](./close/)() override | Closes the facade. | +| [CopyInnerField](./copyinnerfield/)(System::String, System::String, int32_t) | Copies an existing field to the same position in specified page number. A new document will be produced, which contains everything the source document has except for the newly copied field. | +| [CopyInnerField](./copyinnerfield/)(System::String, System::String, int32_t, float, float) | Copies an existing field to a new position specified by both page number and ordinates. A new document will be produced, which contains everything the source document has except for the newly copied field. | +| [CopyOuterField](./copyouterfield/)(System::String, System::String) | Copies an existing field from one PDF document to another document with original page number and ordinates. Notice: Only for AcroForm fields (excluding radio box). | +| [CopyOuterField](./copyouterfield/)(System::String, System::String, int32_t) | Copies an existing field from one PDF document to another document with specified page number and original ordinates. Notice: Only for AcroForm fields (excluding radio box). | +| [CopyOuterField](./copyouterfield/)(System::String, System::String, int32_t, float, float) | Copies an existing field from one PDF document to another document with specified page number and ordinates. Notice: Only for AcroForm fields (excluding radio box). | +| [DecorateField](./decoratefield/)(System::String) | Changes visual attributes of the specified field. | +| [DecorateField](./decoratefield/)(FieldType) | Changes visual attributes of all fields with the specified field type. | +| [DecorateField](./decoratefield/)() | Changes visual attributes of all fields in the PDF document. | +| [DelListItem](./dellistitem/)(System::String, System::String) | Delete item from the list field. | +| [Dispose](../facade/dispose/)() override | Disposes the facade. | +| [FormEditor](./formeditor/)(System::SharedPtr\, System::SharedPtr\) | Constructor for [FormEditor](./). | +| [FormEditor](./formeditor/)(System::String, System::String) | Constructor for [FormEditor](./). | +| [FormEditor](./formeditor/)() | Constructor for [FormEditor](./). | +| [FormEditor](./formeditor/)(System::SharedPtr\) | Initializes new [FormEditor](./) object on base of the *document* . | +| [FormEditor](./formeditor/)(System::SharedPtr\, System::String) | Initializes new [FormEditor](./) object on base of the *document* . | +| [FormEditor](./formeditor/)(System::SharedPtr\, System::SharedPtr\) | Initializes new [FormEditor](./) object on base of the *document* . | +| [FormEditor](./formeditor/)(System::SharedPtr\, System::SharedPtr\) | Creates [FormEditor](./) which will save result into HttpResponse object. | +| [FormEditor](./formeditor/)(System::String, System::SharedPtr\) | Creates [FormEditor](./) which will save result into HttpResponse object. | +| [get_AttachmentName](./get_attachmentname/)() const | Gets name of attachment when result of operation is stored into HttpResponse objects as attachment. | +| [get_ContentDisposition](./get_contentdisposition/)() const | Gets how content will be stored when result of operation is stored into HttpResponse object. Possible value: inline / attachment. Default: inline. | +| [get_DestFileName](./get_destfilename/)() const | Gets destination file name. | +| [get_DestStream](./get_deststream/)() const | Gets destination stream. | +| [get_Document](../facade/get_document/)() const | Gets the document facade is working on. | +| [get_ExportItems](./get_exportitems/)() const | Sets options for combo box with export values. | +| [get_Facade](./get_facade/)() const | Sets visual attributes of the field. | +| [get_Items](./get_items/)() const | Sets items which will be added t onewly created list box or combo box. | +| [get_RadioButtonItemSize](./get_radiobuttonitemsize/)() const | Gets size of radio button item size (when new radio button field is added). ** formEditor = new [Aspose.Pdf.Facades.FormEditor](./)("PdfForm.pdf", "FormEditor_AddField_RadioButton.pdf"); formEditor.RadioGap = 4; formEditor.RadioHoriz = false; formEditor.RadioButtonItemSize = 20; formEditor.Items = new string[] { "First", "Second", "Third" }; formEditor.AddField([FieldType.Radio](../fieldtype/), "AddedRadioButtonField", "Second", 1, 10, 30, 110, 130); formEditor.Save(); ** | +| [get_RadioGap](./get_radiogap/)() | The member to record the gap between two neighboring radio buttons in pixels,default is 50. | +| [get_RadioHoriz](./get_radiohoriz/)() const | The flag to indicate whether the radios are arranged horizontally or vertically, default value is true. | +| [get_Response](./get_response/)() const | Gets Response object where result of operation will be stored. | +| [get_SaveOptions](./get_saveoptions/)() const | Gets save options when result is stored as HttpResponse. Default value: [PdfSaveOptions](../../aspose.pdf/pdfsaveoptions/). | +| [get_SrcFileName](./get_srcfilename/)() const | Gets name of source file. | +| [get_SrcStream](./get_srcstream/)() const | Gets source stream. | +| [get_SubmitFlag](./get_submitflag/)() const | Set the submit button's submission flags. | +| [GetFieldAppearance](./getfieldappearance/)(System::String) | Get field flags. | +| [MoveField](./movefield/)(System::String, float, float, float, float) | Set new position of field. | +| [RemoveField](./removefield/)(System::String) | Remove field from the form. | +| [RemoveFieldAction](./removefieldaction/)(System::String) | Remove submit action of the field. | +| [RenameField](./renamefield/)(System::String, System::String) | Change name of the field. | +| [ResetFacade](./resetfacade/)() | Reset all visual attribtues to empty value. | +| [ResetInnerFacade](./resetinnerfacade/)() | Reset all visual attribtues of inner facade to empty value. | +| [Save](./save/)() | Saves changes into destination file. | +| [Save](../saveablefacade/save/)(System::String) override | Saves the PDF document to the specified file. | +| [Save](../saveablefacade/save/)(System::SharedPtr\) override | Saves the PDF document to the specified stream. | +| [set_AttachmentName](./set_attachmentname/)(System::String) | Sets name of attachment when result of operation is stored into HttpResponse objects as attachment. | +| [set_ContentDisposition](./set_contentdisposition/)(Aspose::Pdf::ContentDisposition) | Sets how content will be stored when result of operation is stored into HttpResponse object. Possible value: inline / attachment. Default: inline. | +| [set_ConvertTo](./set_convertto/)(PdfFormat) | Sets PDF file format. Result file will be saved in specified file format. If this property is not specified then file will be save in default PDF format without conversion. | +| [set_DestFileName](./set_destfilename/)(System::String) | Sets destination file name. | +| [set_DestStream](./set_deststream/)(System::SharedPtr\) | Sets destination stream. | +| [set_ExportItems](./set_exportitems/)(System::ArrayPtr\\>) | Sets options for combo box with export values. | +| [set_Facade](./set_facade/)(System::SharedPtr\) | Sets visual attributes of the field. | +| [set_Items](./set_items/)(System::ArrayPtr\) | Sets items which will be added t onewly created list box or combo box. | +| [set_RadioButtonItemSize](./set_radiobuttonitemsize/)(double) | Sets size of radio button item size (when new radio button field is added). ** formEditor = new [Aspose.Pdf.Facades.FormEditor](./)("PdfForm.pdf", "FormEditor_AddField_RadioButton.pdf"); formEditor.RadioGap = 4; formEditor.RadioHoriz = false; formEditor.RadioButtonItemSize = 20; formEditor.Items = new string[] { "First", "Second", "Third" }; formEditor.AddField([FieldType.Radio](../fieldtype/), "AddedRadioButtonField", "Second", 1, 10, 30, 110, 130); formEditor.Save(); ** | +| [set_RadioGap](./set_radiogap/)(float) | The member to record the gap between two neighboring radio buttons in pixels,default is 50. | +| [set_RadioHoriz](./set_radiohoriz/)(bool) | The flag to indicate whether the radios are arranged horizontally or vertically, default value is true. | +| [set_Response](./set_response/)(System::SharedPtr\) | Sets Response object where result of operation will be stored. | +| [set_SaveOptions](./set_saveoptions/)(System::SharedPtr\) | Sets save options when result is stored as HttpResponse. Default value: [PdfSaveOptions](../../aspose.pdf/pdfsaveoptions/). | +| [set_SrcFileName](./set_srcfilename/)(System::String) | Sets name of source file. | +| [set_SrcStream](./set_srcstream/)(System::SharedPtr\) | Sets source stream. | +| [set_SubmitFlag](./set_submitflag/)(SubmitFormFlag) | Set the submit button's submission flags. | +| [SetFieldAlignment](./setfieldalignment/)(System::String, int32_t) | Set the alignment style of a text field. | +| [SetFieldAlignmentV](./setfieldalignmentv/)(System::String, int32_t) | Set the vertical alignment style of a text field. | +| [SetFieldAppearance](./setfieldappearance/)(System::String, Aspose::Pdf::Annotations::AnnotationFlags) | Set field flags. | +| [SetFieldAttribute](./setfieldattribute/)(System::String, PropertyFlag) | Set attributes of field. | +| [SetFieldCombNumber](./setfieldcombnumber/)(System::String, int32_t) | Sets number of combs for a regular single-line text field (the field is automatically divided into as many equally spaced positions, or combs, as the value of combNumber parameter). | +| [SetFieldLimit](./setfieldlimit/)(System::String, int32_t) | Sets maximum character count of the text field. | +| [SetFieldScript](./setfieldscript/)(System::String, System::String) | Set JavaScript for a PushButton field. If old JavaScript existed, it will be replaced by the new one. | +| [SetSubmitFlag](./setsubmitflag/)(System::String, SubmitFormFlag) | Set submit flag of submit button. | +| [SetSubmitUrl](./setsubmiturl/)(System::String, System::String) | Sets URL of the button. | +| [Single2Multiple](./single2multiple/)(System::String) | Change a single-lined text field to a multiple-lined one. | +## See Also + +* Class [SaveableFacade](../saveablefacade/) +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/addfield/_index.md b/english/cpp/aspose.pdf.facades/formeditor/addfield/_index.md new file mode 100644 index 0000000000..e5ed9b3336 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/addfield/_index.md @@ -0,0 +1,201 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::AddField method +linktitle: AddField +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::AddField method. Add field of specified type to the form in C++.' +type: docs +weight: 4200 +url: /cpp/aspose.pdf.facades/formeditor/addfield/ +--- +## FormEditor::AddField(FieldType, System::String, int32_t, float, float, float, float) method + + +Add field of specified type to the form. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::FormEditor::AddField(FieldType fieldType, System::String fieldName, int32_t pageNum, float llx, float lly, float urx, float ury) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldType | FieldType | Type of the field which must be added. | +| fieldName | System::String | Name of the field whic must be added. | +| pageNum | int32_t | [Page](../../../aspose.pdf/page/) number where new field must be placed. | +| llx | float | Abscissa of the lower-left corner of the field. | +| lly | float | Ordinate of the lower-left corner of the field. | +| urx | float | Abscissa of the upper-right corner of the field. | +| ury | float | Ordinate of the upper-right corner of the field. | + +### ReturnValue + +true if field was successfully added. +## Remarks + + + + + + fieldType + + + Type of the field which must be added. + + + + + fieldName + + + Name of the field whic must be added. + + + + + pageNum + + + + Page number where new field must be placed. + + + + + llx + + + Abscissa of the lower-left corner of the field. + + + + + lly + + + Ordinate of the lower-left corner of the field. + + + + + urx + + + Abscissa of the upper-right corner of the field. + + + + + ury + + + Ordinate of the upper-right corner of the field. + + + +## See Also + +* Enum [FieldType](../../fieldtype/) +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## FormEditor::AddField(FieldType, System::String, System::String, int32_t, float, float, float, float) method + + +Add field of specified type to the form. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::FormEditor::AddField(FieldType fieldType, System::String fieldName, System::String initValue, int32_t pageNum, float llx, float lly, float urx, float ury) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldType | FieldType | Type of the field which must be added. | +| fieldName | System::String | Name of the field whic must be added. | +| initValue | System::String | Initial value of the field. | +| pageNum | int32_t | [Page](../../../aspose.pdf/page/) number where new field must be placed. | +| llx | float | Abscissa of the lower-left corner of the field. | +| lly | float | Ordinate of the lower-left corner of the field. | +| urx | float | Abscissa of the upper-right corner of the field. | +| ury | float | Ordinate of the upper-right corner of the field. | + +### ReturnValue + +true if field was successfully added. +## Remarks + + + + + + fieldType + + + Type of the field which must be added. + + + + + fieldName + + + Name of the field whic must be added. + + + + + initValue + + + Initial value of the field. + + + + + pageNum + + + + Page number where new field must be placed. + + + + + llx + + + Abscissa of the lower-left corner of the field. + + + + + lly + + + Ordinate of the lower-left corner of the field. + + + + + urx + + + Abscissa of the upper-right corner of the field. + + + + + ury + + + Ordinate of the upper-right corner of the field. + + + +/// +## See Also + +* Enum [FieldType](../../fieldtype/) +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/addfieldscript/_index.md b/english/cpp/aspose.pdf.facades/formeditor/addfieldscript/_index.md new file mode 100644 index 0000000000..52a38f503d --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/addfieldscript/_index.md @@ -0,0 +1,53 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::AddFieldScript method +linktitle: AddFieldScript +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::AddFieldScript method. Add JavaScript for a PushButton field. If old event exists, new event is added after it in C++.' +type: docs +weight: 5500 +url: /cpp/aspose.pdf.facades/formeditor/addfieldscript/ +--- +## FormEditor::AddFieldScript method + + +Add JavaScript for a PushButton field. If old event exists, new event is added after it. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::FormEditor::AddFieldScript(System::String fieldName, System::String script) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | The fully qualified field name. | +| script | System::String | The Java script to be added/placed into a push button field. | + +### ReturnValue + +True in case script was added successfully. +## Remarks + + + + + + fieldName + + + The fully qualified field name. + + + + + script + + + The Java script to be added/placed into a push button field. + + + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/addlistitem/_index.md b/english/cpp/aspose.pdf.facades/formeditor/addlistitem/_index.md new file mode 100644 index 0000000000..26ac3f8068 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/addlistitem/_index.md @@ -0,0 +1,89 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::AddListItem method +linktitle: AddListItem +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::AddListItem method. Adds new item to the list box in C++.' +type: docs +weight: 5200 +url: /cpp/aspose.pdf.facades/formeditor/addlistitem/ +--- +## FormEditor::AddListItem(System::String, System::String) method + + +Adds new item to the list box. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormEditor::AddListItem(System::String fieldName, System::String itemName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | Name of the field ot which new item will be added. | +| itemName | System::String | Name if new item. | +## Remarks + + + + + + fieldName + + + Name of the field ot which new item will be added. + + + + + itemName + + + Name if new item. + + + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## FormEditor::AddListItem(System::String, System::ArrayPtr\) method + + +Add a new item with Export value to the existing list box field, only for AcroForm combo box field. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormEditor::AddListItem(System::String fieldName, System::ArrayPtr exportName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | Name of field to which items will be added. | +| exportName | System::ArrayPtr\ | A string array denoting a new list item with Export Value, i.e. (Item Label, Export Value). | +## Remarks + + + + + + fieldName + + + Name of field to which items will be added. + + + + + exportName + + + A string array denoting a new list item with Export Value, i.e. (Item Label, Export Value). + + + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/addsubmitbtn/_index.md b/english/cpp/aspose.pdf.facades/formeditor/addsubmitbtn/_index.md new file mode 100644 index 0000000000..6b9a4e6d0e --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/addsubmitbtn/_index.md @@ -0,0 +1,104 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::AddSubmitBtn method +linktitle: AddSubmitBtn +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::AddSubmitBtn method. Add submit button on the form in C++.' +type: docs +weight: 5100 +url: /cpp/aspose.pdf.facades/formeditor/addsubmitbtn/ +--- +## FormEditor::AddSubmitBtn method + + +Add submit button on the form. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormEditor::AddSubmitBtn(System::String fieldName, int32_t page, System::String label, System::String url, float llx, float lly, float urx, float ury) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | Name of new button. | +| page | int32_t | [Page](../../../aspose.pdf/page/) where button will be placed. | +| label | System::String | Button caption. | +| url | System::String | URL of the submit button. | +| llx | float | Abscissa of the lower-left corner. | +| lly | float | Ordinate of the lower-left corner. | +| urx | float | Abscissa of the upper-right corner. | +| ury | float | Ordinate of the upper-right corner. | +## Remarks + + + + + + fieldName + + + Name of new button. + + + + + page + + + + Page where button will be placed. + + + + + label + + + Button caption. + + + + + url + + + URL of the submit button. + + + + + llx + + + Abscissa of the lower-left corner. + + + + + lly + + + Ordinate of the lower-left corner. + + + + + urx + + + Abscissa of the upper-right corner. + + + + + ury + + + Ordinate of the upper-right corner. + + + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/close/_index.md b/english/cpp/aspose.pdf.facades/formeditor/close/_index.md new file mode 100644 index 0000000000..03c148bf13 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/close/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::Close method +linktitle: Close +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::Close method. Closes the facade in C++.' +type: docs +weight: 5900 +url: /cpp/aspose.pdf.facades/formeditor/close/ +--- +## FormEditor::Close method + + +Closes the facade. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormEditor::Close() override +``` + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/copyinnerfield/_index.md b/english/cpp/aspose.pdf.facades/formeditor/copyinnerfield/_index.md new file mode 100644 index 0000000000..1f0a8d4cf1 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/copyinnerfield/_index.md @@ -0,0 +1,125 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::CopyInnerField method +linktitle: CopyInnerField +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::CopyInnerField method. Copies an existing field to the same position in specified page number. A new document will be produced, which contains everything the source document has except for the newly copied field in C++.' +type: docs +weight: 4600 +url: /cpp/aspose.pdf.facades/formeditor/copyinnerfield/ +--- +## FormEditor::CopyInnerField(System::String, System::String, int32_t) method + + +Copies an existing field to the same position in specified page number. A new document will be produced, which contains everything the source document has except for the newly copied field. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormEditor::CopyInnerField(System::String fieldName, System::String newFieldName, int32_t pageNum) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | The old fully qualified field name. | +| newFieldName | System::String | The new fully qualified field name. If null, it will be set as fieldName + "~". | +| pageNum | int32_t | The number of page to hold the new field. If -1, new field will be copid to the same page as old one hosted. | +## Remarks + + + + + + fieldName + + + The old fully qualified field name. + + + + + newFieldName + + + The new fully qualified field name. If null, it will be set as fieldName + "~". + + + + + pageNum + + + The number of page to hold the new field. If -1, new field will be copid to the same page as old one hosted. + + + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## FormEditor::CopyInnerField(System::String, System::String, int32_t, float, float) method + + +Copies an existing field to a new position specified by both page number and ordinates. A new document will be produced, which contains everything the source document has except for the newly copied field. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormEditor::CopyInnerField(System::String fieldName, System::String newFieldName, int32_t pageNum, float abscissa, float ordinate) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | The old fully qualified field name. | +| newFieldName | System::String | The new fully qualified field name. If null, it will be set as fieldName + "~". | +| pageNum | int32_t | The number of page to hold the new field. If -1, new field will be copid to the same page as old one hosted. | +| abscissa | float | The abscissa of the new field. If -1, the abscissa will be equaled to the original one. | +| ordinate | float | The ordinate of the new field. If -1, the ordinate will be equaled to the original one. | +## Remarks + + + + + + fieldName + + + The old fully qualified field name. + + + + + newFieldName + + + The new fully qualified field name. If null, it will be set as fieldName + "~". + + + + + pageNum + + + The number of page to hold the new field. If -1, new field will be copid to the same page as old one hosted. + + + + + abscissa + + + The abscissa of the new field. If -1, the abscissa will be equaled to the original one. + + + + + ordinate + + + The ordinate of the new field. If -1, the ordinate will be equaled to the original one. + + + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/copyouterfield/_index.md b/english/cpp/aspose.pdf.facades/formeditor/copyouterfield/_index.md new file mode 100644 index 0000000000..4e9a14d6bc --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/copyouterfield/_index.md @@ -0,0 +1,165 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::CopyOuterField method +linktitle: CopyOuterField +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::CopyOuterField method. Copies an existing field from one PDF document to another document with original page number and ordinates. Notice: Only for AcroForm fields (excluding radio box) in C++.' +type: docs +weight: 4700 +url: /cpp/aspose.pdf.facades/formeditor/copyouterfield/ +--- +## FormEditor::CopyOuterField(System::String, System::String) method + + +Copies an existing field from one PDF document to another document with original page number and ordinates. Notice: Only for AcroForm fields (excluding radio box). + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormEditor::CopyOuterField(System::String srcFileName, System::String fieldName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| srcFileName | System::String | The name of PDF document which containes the field to be copied. | +| fieldName | System::String | The original fully qualified field name. | +## Remarks + + + + + + srcFileName + + + The name of PDF document which containes the field to be copied. + + + + + fieldName + + + The original fully qualified field name. + + + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## FormEditor::CopyOuterField(System::String, System::String, int32_t) method + + +Copies an existing field from one PDF document to another document with specified page number and original ordinates. Notice: Only for AcroForm fields (excluding radio box). + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormEditor::CopyOuterField(System::String srcFileName, System::String fieldName, int32_t pageNum) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| srcFileName | System::String | The name of PDF document which containes the field to be copied. | +| fieldName | System::String | The original fully qualified field name. | +| pageNum | int32_t | The number of page to hold the new field. If -1, new field will be copid to the same page as old one hosted. | +## Remarks + + + + + + srcFileName + + + The name of PDF document which containes the field to be copied. + + + + + fieldName + + + The original fully qualified field name. + + + + + pageNum + + + The number of page to hold the new field. If -1, new field will be copid to the same page as old one hosted. + + + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## FormEditor::CopyOuterField(System::String, System::String, int32_t, float, float) method + + +Copies an existing field from one PDF document to another document with specified page number and ordinates. Notice: Only for AcroForm fields (excluding radio box). + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormEditor::CopyOuterField(System::String srcFileName, System::String fieldName, int32_t pageNum, float abscissa, float ordinate) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| srcFileName | System::String | The name of PDF document which containes the field to be copied. | +| fieldName | System::String | The original fully qualified field name. | +| pageNum | int32_t | The number of page to hold the new field. If -1, new field will be copid to the same page as old one hosted. | +| abscissa | float | The abscissa of the new field. If -1, the abscissa will be equaled to the original one. | +| ordinate | float | The ordinate of the new field. If -1, the ordinate will be equaled to the original one. | +## Remarks + + + + + + srcFileName + + + The name of PDF document which containes the field to be copied. + + + + + fieldName + + + The original fully qualified field name. + + + + + pageNum + + + The number of page to hold the new field. If -1, new field will be copid to the same page as old one hosted. + + + + + abscissa + + + The abscissa of the new field. If -1, the abscissa will be equaled to the original one. + + + + + ordinate + + + The ordinate of the new field. If -1, the ordinate will be equaled to the original one. + + + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/decoratefield/_index.md b/english/cpp/aspose.pdf.facades/formeditor/decoratefield/_index.md new file mode 100644 index 0000000000..6363979094 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/decoratefield/_index.md @@ -0,0 +1,86 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::DecorateField method +linktitle: DecorateField +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::DecorateField method. Changes visual attributes of the specified field in C++.' +type: docs +weight: 4800 +url: /cpp/aspose.pdf.facades/formeditor/decoratefield/ +--- +## FormEditor::DecorateField(System::String) method + + +Changes visual attributes of the specified field. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormEditor::DecorateField(System::String fieldName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | The fully qualified field name. | +## Remarks + + + + + + fieldName + + + The fully qualified field name. + + + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## FormEditor::DecorateField(FieldType) method + + +Changes visual attributes of all fields with the specified field type. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormEditor::DecorateField(FieldType fieldType) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldType | FieldType | Type of fields which will be decorated. | +## Remarks + + + + + + fieldType + + + Type of fields which will be decorated. + + + +## See Also + +* Enum [FieldType](../../fieldtype/) +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## FormEditor::DecorateField() method + + +Changes visual attributes of all fields in the PDF document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormEditor::DecorateField() +``` + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/dellistitem/_index.md b/english/cpp/aspose.pdf.facades/formeditor/dellistitem/_index.md new file mode 100644 index 0000000000..238ae95d90 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/dellistitem/_index.md @@ -0,0 +1,49 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::DelListItem method +linktitle: DelListItem +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::DelListItem method. Delete item from the list field in C++.' +type: docs +weight: 5300 +url: /cpp/aspose.pdf.facades/formeditor/dellistitem/ +--- +## FormEditor::DelListItem method + + +Delete item from the list field. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormEditor::DelListItem(System::String fieldName, System::String itemName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | Name of the field. | +| itemName | System::String | Name of the item which must be deleted. | +## Remarks + + + + + + fieldName + + + Name of the field. + + + + + itemName + + + Name of the item which must be deleted. + + + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/formeditor/_index.md b/english/cpp/aspose.pdf.facades/formeditor/formeditor/_index.md new file mode 100644 index 0000000000..ab7929f2ed --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/formeditor/_index.md @@ -0,0 +1,330 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::FormEditor constructor +linktitle: FormEditor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::FormEditor constructor. Constructor for FormEditor in C++.' +type: docs +weight: 3200 +url: /cpp/aspose.pdf.facades/formeditor/formeditor/ +--- +## FormEditor::FormEditor(System::SharedPtr\, System::SharedPtr\) constructor + + +Constructor for [FormEditor](../). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::FormEditor::FormEditor(System::SharedPtr srcStream, System::SharedPtr destStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| srcStream | System::SharedPtr\ | Source stream. | +| destStream | System::SharedPtr\ | Destination stream. | +## Remarks + + + + Deprecated + + Use constructor without destination. + + + + + srcStream + + + Source stream. + + + + + destStream + + + Destination stream. + + + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## FormEditor::FormEditor(System::String, System::String) constructor + + +Constructor for [FormEditor](../). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::FormEditor::FormEditor(System::String srcFileName, System::String destFileName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| srcFileName | System::String | Name of source file. | +| destFileName | System::String | Name of destination file. | +## Remarks + + + + Deprecated + + Use constructor without destination. + + + + + srcFileName + + + Name of source file. + + + + + destFileName + + + Name of destination file. + + + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## FormEditor::FormEditor() constructor + + +Constructor for [FormEditor](../). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::FormEditor::FormEditor() +``` + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## FormEditor::FormEditor(System::SharedPtr\) constructor + + +Initializes new [FormEditor](../) object on base of the *document* . + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::FormEditor::FormEditor(System::SharedPtr document) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | [Pdf](../../../aspose.pdf/) document. | +## Remarks + + + + + + document + + + + Pdf document. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## FormEditor::FormEditor(System::SharedPtr\, System::String) constructor + + +Initializes new [FormEditor](../) object on base of the *document* . + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::FormEditor::FormEditor(System::SharedPtr document, System::String destFileName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | [Pdf](../../../aspose.pdf/) document. | +| destFileName | System::String | Path of the destination file. | +## Remarks + + + + Deprecated + + Use constructor without destination. + + + + + document + + + + Pdf document. + + + + + destFileName + + + Path of the destination file. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## FormEditor::FormEditor(System::SharedPtr\, System::SharedPtr\) constructor + + +Initializes new [FormEditor](../) object on base of the *document* . + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::FormEditor::FormEditor(System::SharedPtr document, System::SharedPtr destStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | [Pdf](../../../aspose.pdf/) document. | +| destStream | System::SharedPtr\ | Destination stream. | +## Remarks + + + + Deprecated + + Use constructor without destination. + + + + + document + + + + Pdf document. + + + + + destStream + + + Destination stream. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## FormEditor::FormEditor(System::SharedPtr\, System::SharedPtr\) constructor + + +Creates [FormEditor](../) which will save result into HttpResponse object. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::FormEditor::FormEditor(System::SharedPtr inputStream, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Source stream. | +| response | System::SharedPtr\ | HttpResponse object where result will be saved. | +## Remarks + + + + Deprecated + + Use constructor without destination. + + + + + inputStream + + + Source stream. + + + + + response + + + HttpResponse object where result will be saved. + + + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## FormEditor::FormEditor(System::String, System::SharedPtr\) constructor + + +Creates [FormEditor](../) which will save result into HttpResponse object. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::FormEditor::FormEditor(System::String inputFile, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Source file name. | +| response | System::SharedPtr\ | HttpResponse objects where result be saved. | +## Remarks + + + + Deprecated + + Use constructor without destination. + + + + + inputFile + + + Source file name. + + + + + response + + + HttpResponse objects where result be saved. + + + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/get_attachmentname/_index.md b/english/cpp/aspose.pdf.facades/formeditor/get_attachmentname/_index.md new file mode 100644 index 0000000000..877fccf1d1 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/get_attachmentname/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::get_AttachmentName method +linktitle: get_AttachmentName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::get_AttachmentName method. Gets name of attachment when result of operation is stored into HttpResponse objects as attachment in C++.' +type: docs +weight: 3000 +url: /cpp/aspose.pdf.facades/formeditor/get_attachmentname/ +--- +## FormEditor::get_AttachmentName method + + +Gets name of attachment when result of operation is stored into HttpResponse objects as attachment. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::FormEditor::get_AttachmentName() const +``` + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/get_contentdisposition/_index.md b/english/cpp/aspose.pdf.facades/formeditor/get_contentdisposition/_index.md new file mode 100644 index 0000000000..2da7f48c7b --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/get_contentdisposition/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::get_ContentDisposition method +linktitle: get_ContentDisposition +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::get_ContentDisposition method. Gets how content will be stored when result of operation is stored into HttpResponse object. Possible value: inline / attachment. Default: inline in C++.' +type: docs +weight: 2400 +url: /cpp/aspose.pdf.facades/formeditor/get_contentdisposition/ +--- +## FormEditor::get_ContentDisposition method + + +Gets how content will be stored when result of operation is stored into HttpResponse object. Possible value: inline / attachment. Default: inline. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::ContentDisposition Aspose::Pdf::Facades::FormEditor::get_ContentDisposition() const +``` + +## See Also + +* Enum [ContentDisposition](../../../aspose.pdf/contentdisposition/) +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/get_destfilename/_index.md b/english/cpp/aspose.pdf.facades/formeditor/get_destfilename/_index.md new file mode 100644 index 0000000000..500f897f25 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/get_destfilename/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::get_DestFileName method +linktitle: get_DestFileName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::get_DestFileName method. Gets destination file name in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.facades/formeditor/get_destfilename/ +--- +## FormEditor::get_DestFileName method + + +Gets destination file name. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::FormEditor::get_DestFileName() const +``` + +## Remarks + + + + Deprecated + + Use Save(outputFile) method for getting facade results. + + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/get_deststream/_index.md b/english/cpp/aspose.pdf.facades/formeditor/get_deststream/_index.md new file mode 100644 index 0000000000..ca08155a8f --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/get_deststream/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::get_DestStream method +linktitle: get_DestStream +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::get_DestStream method. Gets destination stream in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.facades/formeditor/get_deststream/ +--- +## FormEditor::get_DestStream method + + +Gets destination stream. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::FormEditor::get_DestStream() const +``` + +## Remarks + + + + Deprecated + + Use Save(outputStream) method for getting facade results. + + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/get_exportitems/_index.md b/english/cpp/aspose.pdf.facades/formeditor/get_exportitems/_index.md new file mode 100644 index 0000000000..501dd78c03 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/get_exportitems/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::get_ExportItems method +linktitle: get_ExportItems +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::get_ExportItems method. Sets options for combo box with export values in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.facades/formeditor/get_exportitems/ +--- +## FormEditor::get_ExportItems method + + +Sets options for combo box with export values. + +```cpp +ASPOSE_PDF_SHARED_API System::ArrayPtr> Aspose::Pdf::Facades::FormEditor::get_ExportItems() const +``` + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/get_facade/_index.md b/english/cpp/aspose.pdf.facades/formeditor/get_facade/_index.md new file mode 100644 index 0000000000..ad7aeab7c9 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/get_facade/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::get_Facade method +linktitle: get_Facade +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::get_Facade method. Sets visual attributes of the field in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.facades/formeditor/get_facade/ +--- +## FormEditor::get_Facade method + + +Sets visual attributes of the field. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::FormEditor::get_Facade() const +``` + +## See Also + +* Class [FormFieldFacade](../../formfieldfacade/) +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/get_items/_index.md b/english/cpp/aspose.pdf.facades/formeditor/get_items/_index.md new file mode 100644 index 0000000000..c2cab633e4 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/get_items/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::get_Items method +linktitle: get_Items +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::get_Items method. Sets items which will be added t onewly created list box or combo box in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.facades/formeditor/get_items/ +--- +## FormEditor::get_Items method + + +Sets items which will be added t onewly created list box or combo box. + +```cpp +ASPOSE_PDF_SHARED_API System::ArrayPtr Aspose::Pdf::Facades::FormEditor::get_Items() const +``` + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/get_radiobuttonitemsize/_index.md b/english/cpp/aspose.pdf.facades/formeditor/get_radiobuttonitemsize/_index.md new file mode 100644 index 0000000000..d5870b8fad --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/get_radiobuttonitemsize/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::get_RadioButtonItemSize method +linktitle: get_RadioButtonItemSize +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::get_RadioButtonItemSize method. Gets size of radio button item size (when new radio button field is added). formEditor = new Aspose.Pdf.Facades.FormEditor("PdfForm.pdf", "FormEditor_AddField_RadioButton.pdf"); formEditor.RadioGap = 4; formEditor.RadioHoriz = false; formEditor.RadioButtonItemSize = 20; formEditor.Items = new string[] { "First", "Second", "Third" }; formEditor.AddField(FieldType.Radio, "AddedRadioButtonField", "Second", 1, 10, 30, 110, 130); formEditor.Save(); in C++.' +type: docs +weight: 2000 +url: /cpp/aspose.pdf.facades/formeditor/get_radiobuttonitemsize/ +--- +## FormEditor::get_RadioButtonItemSize method + + +Gets size of radio button item size (when new radio button field is added). ** formEditor = new [Aspose.Pdf.Facades.FormEditor](../)("PdfForm.pdf", "FormEditor_AddField_RadioButton.pdf"); formEditor.RadioGap = 4; formEditor.RadioHoriz = false; formEditor.RadioButtonItemSize = 20; formEditor.Items = new string[] { "First", "Second", "Third" }; formEditor.AddField([FieldType.Radio](../../fieldtype/), "AddedRadioButtonField", "Second", 1, 10, 30, 110, 130); formEditor.Save(); ** + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Facades::FormEditor::get_RadioButtonItemSize() const +``` + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/get_radiogap/_index.md b/english/cpp/aspose.pdf.facades/formeditor/get_radiogap/_index.md new file mode 100644 index 0000000000..31024ad2b7 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/get_radiogap/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::get_RadioGap method +linktitle: get_RadioGap +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::get_RadioGap method. The member to record the gap between two neighboring radio buttons in pixels,default is 50 in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf.facades/formeditor/get_radiogap/ +--- +## FormEditor::get_RadioGap method + + +The member to record the gap between two neighboring radio buttons in pixels,default is 50. + +```cpp +ASPOSE_PDF_SHARED_API float Aspose::Pdf::Facades::FormEditor::get_RadioGap() +``` + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/get_radiohoriz/_index.md b/english/cpp/aspose.pdf.facades/formeditor/get_radiohoriz/_index.md new file mode 100644 index 0000000000..419e08d26e --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/get_radiohoriz/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::get_RadioHoriz method +linktitle: get_RadioHoriz +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::get_RadioHoriz method. The flag to indicate whether the radios are arranged horizontally or vertically, default value is true in C++.' +type: docs +weight: 1800 +url: /cpp/aspose.pdf.facades/formeditor/get_radiohoriz/ +--- +## FormEditor::get_RadioHoriz method + + +The flag to indicate whether the radios are arranged horizontally or vertically, default value is true. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::FormEditor::get_RadioHoriz() const +``` + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/get_response/_index.md b/english/cpp/aspose.pdf.facades/formeditor/get_response/_index.md new file mode 100644 index 0000000000..27018053c5 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/get_response/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::get_Response method +linktitle: get_Response +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::get_Response method. Gets Response object where result of operation will be stored in C++.' +type: docs +weight: 2600 +url: /cpp/aspose.pdf.facades/formeditor/get_response/ +--- +## FormEditor::get_Response method + + +Gets Response object where result of operation will be stored. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::FormEditor::get_Response() const +``` + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/get_saveoptions/_index.md b/english/cpp/aspose.pdf.facades/formeditor/get_saveoptions/_index.md new file mode 100644 index 0000000000..ad110b1483 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/get_saveoptions/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::get_SaveOptions method +linktitle: get_SaveOptions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::get_SaveOptions method. Gets save options when result is stored as HttpResponse. Default value: PdfSaveOptions in C++.' +type: docs +weight: 2800 +url: /cpp/aspose.pdf.facades/formeditor/get_saveoptions/ +--- +## FormEditor::get_SaveOptions method + + +Gets save options when result is stored as HttpResponse. Default value: [PdfSaveOptions](../../../aspose.pdf/pdfsaveoptions/). + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::FormEditor::get_SaveOptions() const +``` + +## See Also + +* Class [SaveOptions](../../../aspose.pdf/saveoptions/) +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/get_srcfilename/_index.md b/english/cpp/aspose.pdf.facades/formeditor/get_srcfilename/_index.md new file mode 100644 index 0000000000..e7fe4a41e1 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/get_srcfilename/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::get_SrcFileName method +linktitle: get_SrcFileName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::get_SrcFileName method. Gets name of source file in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.facades/formeditor/get_srcfilename/ +--- +## FormEditor::get_SrcFileName method + + +Gets name of source file. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::FormEditor::get_SrcFileName() const +``` + +## Remarks + + + + Deprecated + + Use BindPdf(inputFile) method for facade initialization. + + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/get_srcstream/_index.md b/english/cpp/aspose.pdf.facades/formeditor/get_srcstream/_index.md new file mode 100644 index 0000000000..2e36946194 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/get_srcstream/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::get_SrcStream method +linktitle: get_SrcStream +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::get_SrcStream method. Gets source stream in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.facades/formeditor/get_srcstream/ +--- +## FormEditor::get_SrcStream method + + +Gets source stream. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::FormEditor::get_SrcStream() const +``` + +## Remarks + + + + Deprecated + + Use BindPdf(inputStream) method for facade initialization. + + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/get_submitflag/_index.md b/english/cpp/aspose.pdf.facades/formeditor/get_submitflag/_index.md new file mode 100644 index 0000000000..4b4da45edb --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/get_submitflag/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::get_SubmitFlag method +linktitle: get_SubmitFlag +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::get_SubmitFlag method. Set the submit button''s submission flags in C++.' +type: docs +weight: 2200 +url: /cpp/aspose.pdf.facades/formeditor/get_submitflag/ +--- +## FormEditor::get_SubmitFlag method + + +Set the submit button's submission flags. + +```cpp +ASPOSE_PDF_SHARED_API SubmitFormFlag Aspose::Pdf::Facades::FormEditor::get_SubmitFlag() const +``` + +## See Also + +* Enum [SubmitFormFlag](../../submitformflag/) +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/getfieldappearance/_index.md b/english/cpp/aspose.pdf.facades/formeditor/getfieldappearance/_index.md new file mode 100644 index 0000000000..cad43a5718 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/getfieldappearance/_index.md @@ -0,0 +1,45 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::GetFieldAppearance method +linktitle: GetFieldAppearance +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::GetFieldAppearance method. Get field flags in C++.' +type: docs +weight: 3600 +url: /cpp/aspose.pdf.facades/formeditor/getfieldappearance/ +--- +## FormEditor::GetFieldAppearance method + + +Get field flags. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Annotations::AnnotationFlags Aspose::Pdf::Facades::FormEditor::GetFieldAppearance(System::String fieldName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | Name of the field. | + +### ReturnValue + +Set of field flags +## Remarks + + + + + + fieldName + + + Name of the field. + + + +## See Also + +* Enum [AnnotationFlags](../../../aspose.pdf.annotations/annotationflags/) +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/movefield/_index.md b/english/cpp/aspose.pdf.facades/formeditor/movefield/_index.md new file mode 100644 index 0000000000..ca6dd1d6d0 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/movefield/_index.md @@ -0,0 +1,80 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::MoveField method +linktitle: MoveField +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::MoveField method. Set new position of field in C++.' +type: docs +weight: 4100 +url: /cpp/aspose.pdf.facades/formeditor/movefield/ +--- +## FormEditor::MoveField method + + +Set new position of field. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::FormEditor::MoveField(System::String fieldName, float llx, float lly, float urx, float ury) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | Name of field which must be moved. | +| llx | float | Abscissa of the lower-left corner of the field. | +| lly | float | Ordinate of the lower-left coerner of the field. | +| urx | float | Abscissa of the upper-right corner of the field. | +| ury | float | Ordinate of the upper-right corner of the field. | + +### ReturnValue + +true if field position was changed successfully. +## Remarks + + + + + + fieldName + + + Name of field which must be moved. + + + + + llx + + + Abscissa of the lower-left corner of the field. + + + + + lly + + + Ordinate of the lower-left coerner of the field. + + + + + urx + + + Abscissa of the upper-right corner of the field. + + + + + ury + + + Ordinate of the upper-right corner of the field. + + + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/removefield/_index.md b/english/cpp/aspose.pdf.facades/formeditor/removefield/_index.md new file mode 100644 index 0000000000..2b5eacad45 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/removefield/_index.md @@ -0,0 +1,40 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::RemoveField method +linktitle: RemoveField +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::RemoveField method. Remove field from the form in C++.' +type: docs +weight: 4300 +url: /cpp/aspose.pdf.facades/formeditor/removefield/ +--- +## FormEditor::RemoveField method + + +Remove field from the form. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormEditor::RemoveField(System::String fieldName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | Name of the field which must be removed. | +## Remarks + + + + + + fieldName + + + Name of the field which must be removed. + + + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/removefieldaction/_index.md b/english/cpp/aspose.pdf.facades/formeditor/removefieldaction/_index.md new file mode 100644 index 0000000000..ab6f9a01ee --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/removefieldaction/_index.md @@ -0,0 +1,40 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::RemoveFieldAction method +linktitle: RemoveFieldAction +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::RemoveFieldAction method. Remove submit action of the field in C++.' +type: docs +weight: 5000 +url: /cpp/aspose.pdf.facades/formeditor/removefieldaction/ +--- +## FormEditor::RemoveFieldAction method + + +Remove submit action of the field. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormEditor::RemoveFieldAction(System::String fieldName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | Name of the field. | +## Remarks + + + + + + fieldName + + + Name of the field. + + + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/renamefield/_index.md b/english/cpp/aspose.pdf.facades/formeditor/renamefield/_index.md new file mode 100644 index 0000000000..aa3d065736 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/renamefield/_index.md @@ -0,0 +1,49 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::RenameField method +linktitle: RenameField +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::RenameField method. Change name of the field in C++.' +type: docs +weight: 4900 +url: /cpp/aspose.pdf.facades/formeditor/renamefield/ +--- +## FormEditor::RenameField method + + +Change name of the field. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormEditor::RenameField(System::String fieldName, System::String newFieldName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | Old name of the field. | +| newFieldName | System::String | New name of the field. | +## Remarks + + + + + + fieldName + + + Old name of the field. + + + + + newFieldName + + + New name of the field. + + + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/resetfacade/_index.md b/english/cpp/aspose.pdf.facades/formeditor/resetfacade/_index.md new file mode 100644 index 0000000000..27086b54b6 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/resetfacade/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::ResetFacade method +linktitle: ResetFacade +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::ResetFacade method. Reset all visual attribtues to empty value in C++.' +type: docs +weight: 4400 +url: /cpp/aspose.pdf.facades/formeditor/resetfacade/ +--- +## FormEditor::ResetFacade method + + +Reset all visual attribtues to empty value. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormEditor::ResetFacade() +``` + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/resetinnerfacade/_index.md b/english/cpp/aspose.pdf.facades/formeditor/resetinnerfacade/_index.md new file mode 100644 index 0000000000..1ddce9d2a1 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/resetinnerfacade/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::ResetInnerFacade method +linktitle: ResetInnerFacade +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::ResetInnerFacade method. Reset all visual attribtues of inner facade to empty value in C++.' +type: docs +weight: 4500 +url: /cpp/aspose.pdf.facades/formeditor/resetinnerfacade/ +--- +## FormEditor::ResetInnerFacade method + + +Reset all visual attribtues of inner facade to empty value. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormEditor::ResetInnerFacade() +``` + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/save/_index.md b/english/cpp/aspose.pdf.facades/formeditor/save/_index.md new file mode 100644 index 0000000000..ab56e10a9b --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/save/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::Save method +linktitle: Save +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::Save method. Saves changes into destination file in C++.' +type: docs +weight: 3300 +url: /cpp/aspose.pdf.facades/formeditor/save/ +--- +## FormEditor::Save method + + +Saves changes into destination file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormEditor::Save() +``` + +## Remarks + + + + Deprecated + + Use Save(destination) method for saving facade results. + +[FormEditor](../) formEditor = new [FormEditor](../)("InFile.pdf", "OutFile.pdf"); //make some changes... formEditor.Save(); +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/set_attachmentname/_index.md b/english/cpp/aspose.pdf.facades/formeditor/set_attachmentname/_index.md new file mode 100644 index 0000000000..a6c1fbd821 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/set_attachmentname/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::set_AttachmentName method +linktitle: set_AttachmentName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::set_AttachmentName method. Sets name of attachment when result of operation is stored into HttpResponse objects as attachment in C++.' +type: docs +weight: 3100 +url: /cpp/aspose.pdf.facades/formeditor/set_attachmentname/ +--- +## FormEditor::set_AttachmentName method + + +Sets name of attachment when result of operation is stored into HttpResponse objects as attachment. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormEditor::set_AttachmentName(System::String value) +``` + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/set_contentdisposition/_index.md b/english/cpp/aspose.pdf.facades/formeditor/set_contentdisposition/_index.md new file mode 100644 index 0000000000..40da02bb61 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/set_contentdisposition/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::set_ContentDisposition method +linktitle: set_ContentDisposition +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::set_ContentDisposition method. Sets how content will be stored when result of operation is stored into HttpResponse object. Possible value: inline / attachment. Default: inline in C++.' +type: docs +weight: 2500 +url: /cpp/aspose.pdf.facades/formeditor/set_contentdisposition/ +--- +## FormEditor::set_ContentDisposition method + + +Sets how content will be stored when result of operation is stored into HttpResponse object. Possible value: inline / attachment. Default: inline. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormEditor::set_ContentDisposition(Aspose::Pdf::ContentDisposition value) +``` + +## See Also + +* Enum [ContentDisposition](../../../aspose.pdf/contentdisposition/) +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/set_convertto/_index.md b/english/cpp/aspose.pdf.facades/formeditor/set_convertto/_index.md new file mode 100644 index 0000000000..7c4e94b7a0 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/set_convertto/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::set_ConvertTo method +linktitle: set_ConvertTo +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::set_ConvertTo method. Sets PDF file format. Result file will be saved in specified file format. If this property is not specified then file will be save in default PDF format without conversion in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.facades/formeditor/set_convertto/ +--- +## FormEditor::set_ConvertTo method + + +Sets PDF file format. Result file will be saved in specified file format. If this property is not specified then file will be save in default PDF format without conversion. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormEditor::set_ConvertTo(PdfFormat value) +``` + +## See Also + +* Enum [PdfFormat](../../../aspose.pdf/pdfformat/) +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/set_destfilename/_index.md b/english/cpp/aspose.pdf.facades/formeditor/set_destfilename/_index.md new file mode 100644 index 0000000000..f03c45c511 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/set_destfilename/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::set_DestFileName method +linktitle: set_DestFileName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::set_DestFileName method. Sets destination file name in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.facades/formeditor/set_destfilename/ +--- +## FormEditor::set_DestFileName method + + +Sets destination file name. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormEditor::set_DestFileName(System::String value) +``` + +## Remarks + + + + Deprecated + + Use Save(outputFile) method for getting facade results. + + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/set_deststream/_index.md b/english/cpp/aspose.pdf.facades/formeditor/set_deststream/_index.md new file mode 100644 index 0000000000..9e87f0a245 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/set_deststream/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::set_DestStream method +linktitle: set_DestStream +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::set_DestStream method. Sets destination stream in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.facades/formeditor/set_deststream/ +--- +## FormEditor::set_DestStream method + + +Sets destination stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormEditor::set_DestStream(System::SharedPtr value) +``` + +## Remarks + + + + Deprecated + + Use Save(outputStream) method for getting facade results. + + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/set_exportitems/_index.md b/english/cpp/aspose.pdf.facades/formeditor/set_exportitems/_index.md new file mode 100644 index 0000000000..204e4a34d1 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/set_exportitems/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::set_ExportItems method +linktitle: set_ExportItems +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::set_ExportItems method. Sets options for combo box with export values in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.facades/formeditor/set_exportitems/ +--- +## FormEditor::set_ExportItems method + + +Sets options for combo box with export values. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormEditor::set_ExportItems(System::ArrayPtr> value) +``` + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/set_facade/_index.md b/english/cpp/aspose.pdf.facades/formeditor/set_facade/_index.md new file mode 100644 index 0000000000..4742458cde --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/set_facade/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::set_Facade method +linktitle: set_Facade +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::set_Facade method. Sets visual attributes of the field in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.facades/formeditor/set_facade/ +--- +## FormEditor::set_Facade method + + +Sets visual attributes of the field. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormEditor::set_Facade(System::SharedPtr value) +``` + +## See Also + +* Class [FormFieldFacade](../../formfieldfacade/) +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/set_items/_index.md b/english/cpp/aspose.pdf.facades/formeditor/set_items/_index.md new file mode 100644 index 0000000000..03d0ef0636 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/set_items/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::set_Items method +linktitle: set_Items +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::set_Items method. Sets items which will be added t onewly created list box or combo box in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.facades/formeditor/set_items/ +--- +## FormEditor::set_Items method + + +Sets items which will be added t onewly created list box or combo box. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormEditor::set_Items(System::ArrayPtr value) +``` + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/set_radiobuttonitemsize/_index.md b/english/cpp/aspose.pdf.facades/formeditor/set_radiobuttonitemsize/_index.md new file mode 100644 index 0000000000..e975d918bf --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/set_radiobuttonitemsize/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::set_RadioButtonItemSize method +linktitle: set_RadioButtonItemSize +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::set_RadioButtonItemSize method. Sets size of radio button item size (when new radio button field is added). formEditor = new Aspose.Pdf.Facades.FormEditor("PdfForm.pdf", "FormEditor_AddField_RadioButton.pdf"); formEditor.RadioGap = 4; formEditor.RadioHoriz = false; formEditor.RadioButtonItemSize = 20; formEditor.Items = new string[] { "First", "Second", "Third" }; formEditor.AddField(FieldType.Radio, "AddedRadioButtonField", "Second", 1, 10, 30, 110, 130); formEditor.Save(); in C++.' +type: docs +weight: 2100 +url: /cpp/aspose.pdf.facades/formeditor/set_radiobuttonitemsize/ +--- +## FormEditor::set_RadioButtonItemSize method + + +Sets size of radio button item size (when new radio button field is added). ** formEditor = new [Aspose.Pdf.Facades.FormEditor](../)("PdfForm.pdf", "FormEditor_AddField_RadioButton.pdf"); formEditor.RadioGap = 4; formEditor.RadioHoriz = false; formEditor.RadioButtonItemSize = 20; formEditor.Items = new string[] { "First", "Second", "Third" }; formEditor.AddField([FieldType.Radio](../../fieldtype/), "AddedRadioButtonField", "Second", 1, 10, 30, 110, 130); formEditor.Save(); ** + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormEditor::set_RadioButtonItemSize(double value) +``` + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/set_radiogap/_index.md b/english/cpp/aspose.pdf.facades/formeditor/set_radiogap/_index.md new file mode 100644 index 0000000000..4565a8c7a8 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/set_radiogap/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::set_RadioGap method +linktitle: set_RadioGap +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::set_RadioGap method. The member to record the gap between two neighboring radio buttons in pixels,default is 50 in C++.' +type: docs +weight: 1700 +url: /cpp/aspose.pdf.facades/formeditor/set_radiogap/ +--- +## FormEditor::set_RadioGap method + + +The member to record the gap between two neighboring radio buttons in pixels,default is 50. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormEditor::set_RadioGap(float value) +``` + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/set_radiohoriz/_index.md b/english/cpp/aspose.pdf.facades/formeditor/set_radiohoriz/_index.md new file mode 100644 index 0000000000..0c0fe24393 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/set_radiohoriz/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::set_RadioHoriz method +linktitle: set_RadioHoriz +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::set_RadioHoriz method. The flag to indicate whether the radios are arranged horizontally or vertically, default value is true in C++.' +type: docs +weight: 1900 +url: /cpp/aspose.pdf.facades/formeditor/set_radiohoriz/ +--- +## FormEditor::set_RadioHoriz method + + +The flag to indicate whether the radios are arranged horizontally or vertically, default value is true. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormEditor::set_RadioHoriz(bool value) +``` + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/set_response/_index.md b/english/cpp/aspose.pdf.facades/formeditor/set_response/_index.md new file mode 100644 index 0000000000..24c4a406da --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/set_response/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::set_Response method +linktitle: set_Response +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::set_Response method. Sets Response object where result of operation will be stored in C++.' +type: docs +weight: 2700 +url: /cpp/aspose.pdf.facades/formeditor/set_response/ +--- +## FormEditor::set_Response method + + +Sets Response object where result of operation will be stored. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormEditor::set_Response(System::SharedPtr value) +``` + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/set_saveoptions/_index.md b/english/cpp/aspose.pdf.facades/formeditor/set_saveoptions/_index.md new file mode 100644 index 0000000000..7b506c2ebc --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/set_saveoptions/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::set_SaveOptions method +linktitle: set_SaveOptions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::set_SaveOptions method. Sets save options when result is stored as HttpResponse. Default value: PdfSaveOptions in C++.' +type: docs +weight: 2900 +url: /cpp/aspose.pdf.facades/formeditor/set_saveoptions/ +--- +## FormEditor::set_SaveOptions method + + +Sets save options when result is stored as HttpResponse. Default value: [PdfSaveOptions](../../../aspose.pdf/pdfsaveoptions/). + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormEditor::set_SaveOptions(System::SharedPtr value) +``` + +## See Also + +* Class [SaveOptions](../../../aspose.pdf/saveoptions/) +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/set_srcfilename/_index.md b/english/cpp/aspose.pdf.facades/formeditor/set_srcfilename/_index.md new file mode 100644 index 0000000000..8204ee3100 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/set_srcfilename/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::set_SrcFileName method +linktitle: set_SrcFileName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::set_SrcFileName method. Sets name of source file in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.facades/formeditor/set_srcfilename/ +--- +## FormEditor::set_SrcFileName method + + +Sets name of source file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormEditor::set_SrcFileName(System::String value) +``` + +## Remarks + + + + Deprecated + + Use BindPdf(inputFile) method for facade initialization. + + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/set_srcstream/_index.md b/english/cpp/aspose.pdf.facades/formeditor/set_srcstream/_index.md new file mode 100644 index 0000000000..6520130c8c --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/set_srcstream/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::set_SrcStream method +linktitle: set_SrcStream +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::set_SrcStream method. Sets source stream in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.facades/formeditor/set_srcstream/ +--- +## FormEditor::set_SrcStream method + + +Sets source stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormEditor::set_SrcStream(System::SharedPtr value) +``` + +## Remarks + + + + Deprecated + + Use BindPdf(inputStream) method for facade initialization. + + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/set_submitflag/_index.md b/english/cpp/aspose.pdf.facades/formeditor/set_submitflag/_index.md new file mode 100644 index 0000000000..232e270f83 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/set_submitflag/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::set_SubmitFlag method +linktitle: set_SubmitFlag +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::set_SubmitFlag method. Set the submit button''s submission flags in C++.' +type: docs +weight: 2300 +url: /cpp/aspose.pdf.facades/formeditor/set_submitflag/ +--- +## FormEditor::set_SubmitFlag method + + +Set the submit button's submission flags. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormEditor::set_SubmitFlag(SubmitFormFlag value) +``` + +## See Also + +* Enum [SubmitFormFlag](../../submitformflag/) +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/setfieldalignment/_index.md b/english/cpp/aspose.pdf.facades/formeditor/setfieldalignment/_index.md new file mode 100644 index 0000000000..c98c7be733 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/setfieldalignment/_index.md @@ -0,0 +1,53 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::SetFieldAlignment method +linktitle: SetFieldAlignment +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::SetFieldAlignment method. Set the alignment style of a text field in C++.' +type: docs +weight: 5700 +url: /cpp/aspose.pdf.facades/formeditor/setfieldalignment/ +--- +## FormEditor::SetFieldAlignment method + + +Set the alignment style of a text field. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::FormEditor::SetFieldAlignment(System::String fieldName, int32_t alignment) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | The qualified field name. | +| alignment | int32_t | The alignment style definition, including [FormFieldFacade.AlignLeft](../../formfieldfacade/alignleft/), [FormFieldFacade.AlignCenter](../../formfieldfacade/aligncenter/) and [FormFieldFacade.AlignRight](../../formfieldfacade/alignright/). | + +### ReturnValue + +true if true if field was found and alignment was set. +## Remarks + + + + + + fieldName + + + The qualified field name. + + + + + alignment + + + The alignment style definition, including FormFieldFacade.AlignLeft, FormFieldFacade.AlignCenter and FormFieldFacade.AlignRight. + + + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/setfieldalignmentv/_index.md b/english/cpp/aspose.pdf.facades/formeditor/setfieldalignmentv/_index.md new file mode 100644 index 0000000000..c11966333b --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/setfieldalignmentv/_index.md @@ -0,0 +1,53 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::SetFieldAlignmentV method +linktitle: SetFieldAlignmentV +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::SetFieldAlignmentV method. Set the vertical alignment style of a text field in C++.' +type: docs +weight: 5800 +url: /cpp/aspose.pdf.facades/formeditor/setfieldalignmentv/ +--- +## FormEditor::SetFieldAlignmentV method + + +Set the vertical alignment style of a text field. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::FormEditor::SetFieldAlignmentV(System::String fieldName, int32_t alignment) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | The qualified field name. | +| alignment | int32_t | The alignment style definition, including [FormFieldFacade.AlignTop](../../formfieldfacade/aligntop/), [FormFieldFacade.AlignMiddle](../../formfieldfacade/alignmiddle/) and [FormFieldFacade.AlignRight](../../formfieldfacade/alignright/). | + +### ReturnValue + +true if field was found and alignment was successfully filled. +## Remarks + + + + + + fieldName + + + The qualified field name. + + + + + alignment + + + The alignment style definition, including FormFieldFacade.AlignTop, FormFieldFacade.AlignMiddle and FormFieldFacade.AlignRight. + + + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/setfieldappearance/_index.md b/english/cpp/aspose.pdf.facades/formeditor/setfieldappearance/_index.md new file mode 100644 index 0000000000..f16753fe10 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/setfieldappearance/_index.md @@ -0,0 +1,54 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::SetFieldAppearance method +linktitle: SetFieldAppearance +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::SetFieldAppearance method. Set field flags in C++.' +type: docs +weight: 3500 +url: /cpp/aspose.pdf.facades/formeditor/setfieldappearance/ +--- +## FormEditor::SetFieldAppearance method + + +Set field flags. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::FormEditor::SetFieldAppearance(System::String fieldName, Aspose::Pdf::Annotations::AnnotationFlags flags) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | Name of field whose flags should be updated. | +| flags | Aspose::Pdf::Annotations::AnnotationFlags | Flag of the field. | + +### ReturnValue + +true if flags were updated successfully. +## Remarks + + + + + + fieldName + + + Name of field whose flags should be updated. + + + + + flags + + + Flag of the field. + + + +## See Also + +* Enum [AnnotationFlags](../../../aspose.pdf.annotations/annotationflags/) +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/setfieldattribute/_index.md b/english/cpp/aspose.pdf.facades/formeditor/setfieldattribute/_index.md new file mode 100644 index 0000000000..66a13563cd --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/setfieldattribute/_index.md @@ -0,0 +1,54 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::SetFieldAttribute method +linktitle: SetFieldAttribute +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::SetFieldAttribute method. Set attributes of field in C++.' +type: docs +weight: 3400 +url: /cpp/aspose.pdf.facades/formeditor/setfieldattribute/ +--- +## FormEditor::SetFieldAttribute method + + +Set attributes of field. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::FormEditor::SetFieldAttribute(System::String fieldName, PropertyFlag flag) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | Name of field which attributes should be set. | +| flag | PropertyFlag | Flag (NoExport/ReadOnly/Required) | + +### ReturnValue + +true if attribute was set successfully. +## Remarks + + + + + + fieldName + + + Name of field which attributes should be set. + + + + + flag + + + Flag (NoExport/ReadOnly/Required) + + + +## See Also + +* Enum [PropertyFlag](../../propertyflag/) +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/setfieldcombnumber/_index.md b/english/cpp/aspose.pdf.facades/formeditor/setfieldcombnumber/_index.md new file mode 100644 index 0000000000..f5edc0aea6 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/setfieldcombnumber/_index.md @@ -0,0 +1,53 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::SetFieldCombNumber method +linktitle: SetFieldCombNumber +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::SetFieldCombNumber method. Sets number of combs for a regular single-line text field (the field is automatically divided into as many equally spaced positions, or combs, as the value of combNumber parameter) in C++.' +type: docs +weight: 4000 +url: /cpp/aspose.pdf.facades/formeditor/setfieldcombnumber/ +--- +## FormEditor::SetFieldCombNumber method + + +Sets number of combs for a regular single-line text field (the field is automatically divided into as many equally spaced positions, or combs, as the value of combNumber parameter). + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::FormEditor::SetFieldCombNumber(System::String fieldName, int32_t combNumber) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | The qualified field name. | +| combNumber | int32_t | The number of combs to divide the field into. | + +### ReturnValue + +If success, return true;else false. +## Remarks + + + + + + fieldName + + + The qualified field name. + + + + + combNumber + + + The number of combs to divide the field into. + + + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/setfieldlimit/_index.md b/english/cpp/aspose.pdf.facades/formeditor/setfieldlimit/_index.md new file mode 100644 index 0000000000..861530cdc9 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/setfieldlimit/_index.md @@ -0,0 +1,53 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::SetFieldLimit method +linktitle: SetFieldLimit +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::SetFieldLimit method. Sets maximum character count of the text field in C++.' +type: docs +weight: 3900 +url: /cpp/aspose.pdf.facades/formeditor/setfieldlimit/ +--- +## FormEditor::SetFieldLimit method + + +Sets maximum character count of the text field. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::FormEditor::SetFieldLimit(System::String fieldName, int32_t fieldLimit) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | Name of the text field. | +| fieldLimit | int32_t | New value of limit for the field. | + +### ReturnValue + +true if field limit was successfully set. +## Remarks + + + + + + fieldName + + + Name of the text field. + + + + + fieldLimit + + + New value of limit for the field. + + + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/setfieldscript/_index.md b/english/cpp/aspose.pdf.facades/formeditor/setfieldscript/_index.md new file mode 100644 index 0000000000..b2c31cad24 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/setfieldscript/_index.md @@ -0,0 +1,53 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::SetFieldScript method +linktitle: SetFieldScript +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::SetFieldScript method. Set JavaScript for a PushButton field. If old JavaScript existed, it will be replaced by the new one in C++.' +type: docs +weight: 5400 +url: /cpp/aspose.pdf.facades/formeditor/setfieldscript/ +--- +## FormEditor::SetFieldScript method + + +Set JavaScript for a PushButton field. If old JavaScript existed, it will be replaced by the new one. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::FormEditor::SetFieldScript(System::String fieldName, System::String script) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | The fully qualified field name. | +| script | System::String | The Java script to be added/placed into a push button field. | + +### ReturnValue + +true if field scrip was successfully set. +## Remarks + + + + + + fieldName + + + The fully qualified field name. + + + + + script + + + The Java script to be added/placed into a push button field. + + + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/setsubmitflag/_index.md b/english/cpp/aspose.pdf.facades/formeditor/setsubmitflag/_index.md new file mode 100644 index 0000000000..398b1204ef --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/setsubmitflag/_index.md @@ -0,0 +1,54 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::SetSubmitFlag method +linktitle: SetSubmitFlag +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::SetSubmitFlag method. Set submit flag of submit button in C++.' +type: docs +weight: 3700 +url: /cpp/aspose.pdf.facades/formeditor/setsubmitflag/ +--- +## FormEditor::SetSubmitFlag method + + +Set submit flag of submit button. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::FormEditor::SetSubmitFlag(System::String fieldName, SubmitFormFlag submitFormFlag) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | Name of submit button. | +| submitFormFlag | SubmitFormFlag | Submit flag. | + +### ReturnValue + +true if field was found and submit flag was successfully set. +## Remarks + + + + + + fieldName + + + Name of submit button. + + + + + submitFormFlag + + + Submit flag. + + + +## See Also + +* Enum [SubmitFormFlag](../../submitformflag/) +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/setsubmiturl/_index.md b/english/cpp/aspose.pdf.facades/formeditor/setsubmiturl/_index.md new file mode 100644 index 0000000000..684a90b0c3 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/setsubmiturl/_index.md @@ -0,0 +1,53 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::SetSubmitUrl method +linktitle: SetSubmitUrl +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::SetSubmitUrl method. Sets URL of the button in C++.' +type: docs +weight: 3800 +url: /cpp/aspose.pdf.facades/formeditor/setsubmiturl/ +--- +## FormEditor::SetSubmitUrl method + + +Sets URL of the button. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::FormEditor::SetSubmitUrl(System::String fieldName, System::String url) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | Submit button name. | +| url | System::String | Fully qualified URL. | + +### ReturnValue + +true if URL for button was successfully set. +## Remarks + + + + + + fieldName + + + Submit button name. + + + + + url + + + Fully qualified URL. + + + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formeditor/single2multiple/_index.md b/english/cpp/aspose.pdf.facades/formeditor/single2multiple/_index.md new file mode 100644 index 0000000000..da24906652 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formeditor/single2multiple/_index.md @@ -0,0 +1,44 @@ +--- +title: Aspose::Pdf::Facades::FormEditor::Single2Multiple method +linktitle: Single2Multiple +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormEditor::Single2Multiple method. Change a single-lined text field to a multiple-lined one in C++.' +type: docs +weight: 5600 +url: /cpp/aspose.pdf.facades/formeditor/single2multiple/ +--- +## FormEditor::Single2Multiple method + + +Change a single-lined text field to a multiple-lined one. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::FormEditor::Single2Multiple(System::String fieldName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | The qualified field name. | + +### ReturnValue + +If success, return true;else false. +## Remarks + + + + + + fieldName + + + The qualified field name. + + + +## See Also + +* Class [FormEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/_index.md new file mode 100644 index 0000000000..34d0f15213 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/_index.md @@ -0,0 +1,93 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade class +linktitle: FormFieldFacade +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade class. Class for representing field properties in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.facades/formfieldfacade/ +--- +## FormFieldFacade class + + +Class for representing field properties. + +```cpp +class FormFieldFacade : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [FormFieldFacade](./formfieldfacade/)() | | +| [get_Alignment](./get_alignment/)() const | The alignment of a field text, default is left alignment. | +| [get_BackgroundColor](./get_backgroundcolor/)() const | The color of a field background, default is white. | +| [get_BorderColor](./get_bordercolor/)() const | The color of a field border. | +| [get_BorderStyle](./get_borderstyle/)() const | The style of a field border. | +| [get_BorderWidth](./get_borderwidth/)() const | The width of a field border. | +| [get_Box](./get_box/)() const | A rectangle object holding field's location. | +| [get_ButtonStyle](./get_buttonstyle/)() const | The style of check box or radio box field, defined by FormFieldFacade.CheckBoxStyle*. | +| [get_Caption](./get_caption/)() const | The normal caption of form field. | +| [get_CustomFont](./get_customfont/)() const | Gets name of the font when this is non-standart (other then 14 standard fonts). | +| [get_ExportItems](./get_exportitems/)() const | The options for adding a list/combo/radio box. | +| [get_Font](./get_font/)() const | The font type of a field text. | +| [get_FontSize](./get_fontsize/)() const | The size of a field text. | +| [get_Items](./get_items/)() const | An array of string, each representing an option of a combo box/list/radio box field. | +| [get_PageNumber](./get_pagenumber/)() const | An integer value holding the number of page on which field locates. | +| [get_Position](./get_position/)() const | A rectangle object holding field's location. | +| [get_Rotation](./get_rotation/)() const | The rotation of a field text. | +| [get_TextColor](./get_textcolor/)() const | The color of the field text. | +| [get_TextEncoding](./get_textencoding/)() const | The text encoding type of the field text. | +| [Reset](./reset/)() | Reset all visual attribtues to empty value. | +| [set_Alignment](./set_alignment/)(int32_t) | The alignment of a field text, default is left alignment. | +| [set_BackgroundColor](./set_backgroundcolor/)(System::Drawing::Color) | The color of a field background, default is white. | +| [set_BorderColor](./set_bordercolor/)(System::Drawing::Color) | The color of a field border. | +| [set_BorderStyle](./set_borderstyle/)(int32_t) | The style of a field border. | +| [set_BorderWidth](./set_borderwidth/)(float) | The width of a field border. | +| [set_Box](./set_box/)(System::Drawing::Rectangle) | A rectangle object holding field's location. | +| [set_ButtonStyle](./set_buttonstyle/)(int32_t) | The style of check box or radio box field, defined by FormFieldFacade.CheckBoxStyle*. | +| [set_Caption](./set_caption/)(System::String) | The normal caption of form field. | +| [set_CustomFont](./set_customfont/)(System::String) | Sets name of the font when this is non-standart (other then 14 standard fonts). | +| [set_ExportItems](./set_exportitems/)(System::ArrayPtr\\>) | The options for adding a list/combo/radio box. | +| [set_Font](./set_font/)(FontStyle) | The font type of a field text. | +| [set_FontSize](./set_fontsize/)(float) | The size of a field text. | +| [set_Items](./set_items/)(System::ArrayPtr\) | An array of string, each representing an option of a combo box/list/radio box field. | +| [set_PageNumber](./set_pagenumber/)(int32_t) | An integer value holding the number of page on which field locates. | +| [set_Position](./set_position/)(System::ArrayPtr\) | A rectangle object holding field's location. | +| [set_Rotation](./set_rotation/)(int32_t) | The rotation of a field text. | +| [set_TextColor](./set_textcolor/)(System::Drawing::Color) | The color of the field text. | +| [set_TextEncoding](./set_textencoding/)(EncodingType) | The text encoding type of the field text. | +## Fields + +| Field | Description | +| --- | --- | +| static constexpr [AlignBottom](./alignbottom/) | Defines vertical aglignment as bottom style. | +| static constexpr [AlignCenter](./aligncenter/) | Defines aglignment to center style. | +| static constexpr [AlignJustified](./alignjustified/) | Defines text justification alignment style. | +| static constexpr [AlignLeft](./alignleft/) | Defines aglignment to left style. | +| static constexpr [AlignMiddle](./alignmiddle/) | Defines vertical aglignment as middle style. | +| static constexpr [AlignRight](./alignright/) | Defines aglignment to right style. | +| static constexpr [AlignTop](./aligntop/) | Defines vertical aglignment as top style. | +| static constexpr [AlignUndefined](./alignundefined/) | Undefined aglignment style. | +| static constexpr [BorderStyleBeveled](./borderstylebeveled/) | Defines a beveled border style. | +| static constexpr [BorderStyleDashed](./borderstyledashed/) | Defines a dashed border style. | +| static constexpr [BorderStyleInset](./borderstyleinset/) | Defines an inseted border style. | +| static constexpr [BorderStyleSolid](./borderstylesolid/) | Defines a solid border style. | +| static constexpr [BorderStyleUndefined](./borderstyleundefined/) | Undefined border style. | +| static constexpr [BorderStyleUnderline](./borderstyleunderline/) | Defines an underlined border style. | +| static constexpr [BorderWidthMedium](./borderwidthmedium/) | Defines a medium border width. | +| static constexpr [BorderWidthThick](./borderwidththick/) | Defines a thick border width. | +| static constexpr [BorderWidthThin](./borderwidththin/) | Defines a thin border width. | +| static constexpr [BorderWidthUndefined](./borderwidthundefined/) | Undefined border width. | +| static constexpr [CheckBoxStyleCheck](./checkboxstylecheck/) | Defines the shape of a check box field when it checked. | +| static constexpr [CheckBoxStyleCircle](./checkboxstylecircle/) | Defines a circle check box style. | +| static constexpr [CheckBoxStyleCross](./checkboxstylecross/) | Defines a cross check box style. | +| static constexpr [CheckBoxStyleDiamond](./checkboxstylediamond/) | Defines a diamond check box style. | +| static constexpr [CheckBoxStyleSquare](./checkboxstylesquare/) | Defines a square check box style. | +| static constexpr [CheckBoxStyleStar](./checkboxstylestar/) | Defines a star check box style. | +| static constexpr [CheckBoxStyleUndefined](./checkboxstyleundefined/) | Defines an undefined check box style. | +## See Also + +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/alignbottom/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/alignbottom/_index.md new file mode 100644 index 0000000000..0b2fd3fc88 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/alignbottom/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::AlignBottom field +linktitle: AlignBottom +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::AlignBottom field. Defines vertical aglignment as bottom style in C++.' +type: docs +weight: 5600 +url: /cpp/aspose.pdf.facades/formfieldfacade/alignbottom/ +--- +## AlignBottom field + + +Defines vertical aglignment as bottom style. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::FormFieldFacade::AlignBottom +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/aligncenter/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/aligncenter/_index.md new file mode 100644 index 0000000000..b50d1d33fb --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/aligncenter/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::AlignCenter field +linktitle: AlignCenter +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::AlignCenter field. Defines aglignment to center style in C++.' +type: docs +weight: 5000 +url: /cpp/aspose.pdf.facades/formfieldfacade/aligncenter/ +--- +## AlignCenter field + + +Defines aglignment to center style. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::FormFieldFacade::AlignCenter +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/alignjustified/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/alignjustified/_index.md new file mode 100644 index 0000000000..b8a4504667 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/alignjustified/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::AlignJustified field +linktitle: AlignJustified +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::AlignJustified field. Defines text justification alignment style in C++.' +type: docs +weight: 5300 +url: /cpp/aspose.pdf.facades/formfieldfacade/alignjustified/ +--- +## AlignJustified field + + +Defines text justification alignment style. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::FormFieldFacade::AlignJustified +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/alignleft/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/alignleft/_index.md new file mode 100644 index 0000000000..55c5f666bb --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/alignleft/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::AlignLeft field +linktitle: AlignLeft +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::AlignLeft field. Defines aglignment to left style in C++.' +type: docs +weight: 4900 +url: /cpp/aspose.pdf.facades/formfieldfacade/alignleft/ +--- +## AlignLeft field + + +Defines aglignment to left style. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::FormFieldFacade::AlignLeft +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/alignmiddle/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/alignmiddle/_index.md new file mode 100644 index 0000000000..ef221cfc9c --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/alignmiddle/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::AlignMiddle field +linktitle: AlignMiddle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::AlignMiddle field. Defines vertical aglignment as middle style in C++.' +type: docs +weight: 5500 +url: /cpp/aspose.pdf.facades/formfieldfacade/alignmiddle/ +--- +## AlignMiddle field + + +Defines vertical aglignment as middle style. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::FormFieldFacade::AlignMiddle +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/alignright/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/alignright/_index.md new file mode 100644 index 0000000000..e86b3929b4 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/alignright/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::AlignRight field +linktitle: AlignRight +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::AlignRight field. Defines aglignment to right style in C++.' +type: docs +weight: 5100 +url: /cpp/aspose.pdf.facades/formfieldfacade/alignright/ +--- +## AlignRight field + + +Defines aglignment to right style. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::FormFieldFacade::AlignRight +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/aligntop/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/aligntop/_index.md new file mode 100644 index 0000000000..fedb7a6876 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/aligntop/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::AlignTop field +linktitle: AlignTop +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::AlignTop field. Defines vertical aglignment as top style in C++.' +type: docs +weight: 5400 +url: /cpp/aspose.pdf.facades/formfieldfacade/aligntop/ +--- +## AlignTop field + + +Defines vertical aglignment as top style. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::FormFieldFacade::AlignTop +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/alignundefined/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/alignundefined/_index.md new file mode 100644 index 0000000000..92379a3946 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/alignundefined/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::AlignUndefined field +linktitle: AlignUndefined +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::AlignUndefined field. Undefined aglignment style in C++.' +type: docs +weight: 5200 +url: /cpp/aspose.pdf.facades/formfieldfacade/alignundefined/ +--- +## AlignUndefined field + + +Undefined aglignment style. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::FormFieldFacade::AlignUndefined +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/borderstylebeveled/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/borderstylebeveled/_index.md new file mode 100644 index 0000000000..28dc299c95 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/borderstylebeveled/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::BorderStyleBeveled field +linktitle: BorderStyleBeveled +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::BorderStyleBeveled field. Defines a beveled border style in C++.' +type: docs +weight: 4500 +url: /cpp/aspose.pdf.facades/formfieldfacade/borderstylebeveled/ +--- +## BorderStyleBeveled field + + +Defines a beveled border style. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::FormFieldFacade::BorderStyleBeveled +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/borderstyledashed/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/borderstyledashed/_index.md new file mode 100644 index 0000000000..7566956fb8 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/borderstyledashed/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::BorderStyleDashed field +linktitle: BorderStyleDashed +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::BorderStyleDashed field. Defines a dashed border style in C++.' +type: docs +weight: 4400 +url: /cpp/aspose.pdf.facades/formfieldfacade/borderstyledashed/ +--- +## BorderStyleDashed field + + +Defines a dashed border style. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::FormFieldFacade::BorderStyleDashed +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/borderstyleinset/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/borderstyleinset/_index.md new file mode 100644 index 0000000000..343d10258f --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/borderstyleinset/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::BorderStyleInset field +linktitle: BorderStyleInset +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::BorderStyleInset field. Defines an inseted border style in C++.' +type: docs +weight: 4600 +url: /cpp/aspose.pdf.facades/formfieldfacade/borderstyleinset/ +--- +## BorderStyleInset field + + +Defines an inseted border style. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::FormFieldFacade::BorderStyleInset +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/borderstylesolid/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/borderstylesolid/_index.md new file mode 100644 index 0000000000..58a8867121 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/borderstylesolid/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::BorderStyleSolid field +linktitle: BorderStyleSolid +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::BorderStyleSolid field. Defines a solid border style in C++.' +type: docs +weight: 4300 +url: /cpp/aspose.pdf.facades/formfieldfacade/borderstylesolid/ +--- +## BorderStyleSolid field + + +Defines a solid border style. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::FormFieldFacade::BorderStyleSolid +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/borderstyleundefined/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/borderstyleundefined/_index.md new file mode 100644 index 0000000000..037fa71f12 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/borderstyleundefined/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::BorderStyleUndefined field +linktitle: BorderStyleUndefined +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::BorderStyleUndefined field. Undefined border style in C++.' +type: docs +weight: 4800 +url: /cpp/aspose.pdf.facades/formfieldfacade/borderstyleundefined/ +--- +## BorderStyleUndefined field + + +Undefined border style. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::FormFieldFacade::BorderStyleUndefined +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/borderstyleunderline/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/borderstyleunderline/_index.md new file mode 100644 index 0000000000..7b020dabc6 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/borderstyleunderline/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::BorderStyleUnderline field +linktitle: BorderStyleUnderline +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::BorderStyleUnderline field. Defines an underlined border style in C++.' +type: docs +weight: 4700 +url: /cpp/aspose.pdf.facades/formfieldfacade/borderstyleunderline/ +--- +## BorderStyleUnderline field + + +Defines an underlined border style. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::FormFieldFacade::BorderStyleUnderline +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/borderwidthmedium/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/borderwidthmedium/_index.md new file mode 100644 index 0000000000..1a82e933f7 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/borderwidthmedium/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::BorderWidthMedium field +linktitle: BorderWidthMedium +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::BorderWidthMedium field. Defines a medium border width in C++.' +type: docs +weight: 4100 +url: /cpp/aspose.pdf.facades/formfieldfacade/borderwidthmedium/ +--- +## BorderWidthMedium field + + +Defines a medium border width. + +```cpp +static ASPOSE_PDF_SHARED_API float Aspose::Pdf::Facades::FormFieldFacade::BorderWidthMedium +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/borderwidththick/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/borderwidththick/_index.md new file mode 100644 index 0000000000..3d50ed17a3 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/borderwidththick/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::BorderWidthThick field +linktitle: BorderWidthThick +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::BorderWidthThick field. Defines a thick border width in C++.' +type: docs +weight: 4200 +url: /cpp/aspose.pdf.facades/formfieldfacade/borderwidththick/ +--- +## BorderWidthThick field + + +Defines a thick border width. + +```cpp +static ASPOSE_PDF_SHARED_API float Aspose::Pdf::Facades::FormFieldFacade::BorderWidthThick +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/borderwidththin/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/borderwidththin/_index.md new file mode 100644 index 0000000000..2fba0147a2 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/borderwidththin/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::BorderWidthThin field +linktitle: BorderWidthThin +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::BorderWidthThin field. Defines a thin border width in C++.' +type: docs +weight: 4000 +url: /cpp/aspose.pdf.facades/formfieldfacade/borderwidththin/ +--- +## BorderWidthThin field + + +Defines a thin border width. + +```cpp +static ASPOSE_PDF_SHARED_API float Aspose::Pdf::Facades::FormFieldFacade::BorderWidthThin +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/borderwidthundefined/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/borderwidthundefined/_index.md new file mode 100644 index 0000000000..6a446cf77d --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/borderwidthundefined/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::BorderWidthUndefined field +linktitle: BorderWidthUndefined +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::BorderWidthUndefined field. Undefined border width in C++.' +type: docs +weight: 3900 +url: /cpp/aspose.pdf.facades/formfieldfacade/borderwidthundefined/ +--- +## BorderWidthUndefined field + + +Undefined border width. + +```cpp +static ASPOSE_PDF_SHARED_API float Aspose::Pdf::Facades::FormFieldFacade::BorderWidthUndefined +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/checkboxstylecheck/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/checkboxstylecheck/_index.md new file mode 100644 index 0000000000..d5cf8921a6 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/checkboxstylecheck/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::CheckBoxStyleCheck field +linktitle: CheckBoxStyleCheck +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::CheckBoxStyleCheck field. Defines the shape of a check box field when it checked in C++.' +type: docs +weight: 5800 +url: /cpp/aspose.pdf.facades/formfieldfacade/checkboxstylecheck/ +--- +## CheckBoxStyleCheck field + + +Defines the shape of a check box field when it checked. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::FormFieldFacade::CheckBoxStyleCheck +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/checkboxstylecircle/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/checkboxstylecircle/_index.md new file mode 100644 index 0000000000..9cb0fc61d7 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/checkboxstylecircle/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::CheckBoxStyleCircle field +linktitle: CheckBoxStyleCircle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::CheckBoxStyleCircle field. Defines a circle check box style in C++.' +type: docs +weight: 5700 +url: /cpp/aspose.pdf.facades/formfieldfacade/checkboxstylecircle/ +--- +## CheckBoxStyleCircle field + + +Defines a circle check box style. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::FormFieldFacade::CheckBoxStyleCircle +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/checkboxstylecross/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/checkboxstylecross/_index.md new file mode 100644 index 0000000000..ef21700f2f --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/checkboxstylecross/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::CheckBoxStyleCross field +linktitle: CheckBoxStyleCross +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::CheckBoxStyleCross field. Defines a cross check box style in C++.' +type: docs +weight: 5900 +url: /cpp/aspose.pdf.facades/formfieldfacade/checkboxstylecross/ +--- +## CheckBoxStyleCross field + + +Defines a cross check box style. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::FormFieldFacade::CheckBoxStyleCross +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/checkboxstylediamond/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/checkboxstylediamond/_index.md new file mode 100644 index 0000000000..9ec5133791 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/checkboxstylediamond/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::CheckBoxStyleDiamond field +linktitle: CheckBoxStyleDiamond +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::CheckBoxStyleDiamond field. Defines a diamond check box style in C++.' +type: docs +weight: 6000 +url: /cpp/aspose.pdf.facades/formfieldfacade/checkboxstylediamond/ +--- +## CheckBoxStyleDiamond field + + +Defines a diamond check box style. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::FormFieldFacade::CheckBoxStyleDiamond +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/checkboxstylesquare/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/checkboxstylesquare/_index.md new file mode 100644 index 0000000000..716f3d3486 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/checkboxstylesquare/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::CheckBoxStyleSquare field +linktitle: CheckBoxStyleSquare +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::CheckBoxStyleSquare field. Defines a square check box style in C++.' +type: docs +weight: 6200 +url: /cpp/aspose.pdf.facades/formfieldfacade/checkboxstylesquare/ +--- +## CheckBoxStyleSquare field + + +Defines a square check box style. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::FormFieldFacade::CheckBoxStyleSquare +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/checkboxstylestar/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/checkboxstylestar/_index.md new file mode 100644 index 0000000000..1f09e7bd91 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/checkboxstylestar/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::CheckBoxStyleStar field +linktitle: CheckBoxStyleStar +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::CheckBoxStyleStar field. Defines a star check box style in C++.' +type: docs +weight: 6100 +url: /cpp/aspose.pdf.facades/formfieldfacade/checkboxstylestar/ +--- +## CheckBoxStyleStar field + + +Defines a star check box style. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::FormFieldFacade::CheckBoxStyleStar +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/checkboxstyleundefined/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/checkboxstyleundefined/_index.md new file mode 100644 index 0000000000..54afa915f2 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/checkboxstyleundefined/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::CheckBoxStyleUndefined field +linktitle: CheckBoxStyleUndefined +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::CheckBoxStyleUndefined field. Defines an undefined check box style in C++.' +type: docs +weight: 6300 +url: /cpp/aspose.pdf.facades/formfieldfacade/checkboxstyleundefined/ +--- +## CheckBoxStyleUndefined field + + +Defines an undefined check box style. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::FormFieldFacade::CheckBoxStyleUndefined +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/formfieldfacade/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/formfieldfacade/_index.md new file mode 100644 index 0000000000..b5c0abd16e --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/formfieldfacade/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::FormFieldFacade constructor +linktitle: FormFieldFacade +second_title: Aspose.PDF for C++ API Reference +description: 'How to use FormFieldFacade constructor of Aspose::Pdf::Facades::FormFieldFacade class in C++.' +type: docs +weight: 3800 +url: /cpp/aspose.pdf.facades/formfieldfacade/formfieldfacade/ +--- +## FormFieldFacade::FormFieldFacade constructor + + + + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::FormFieldFacade::FormFieldFacade() +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/get_alignment/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/get_alignment/_index.md new file mode 100644 index 0000000000..23dd689980 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/get_alignment/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::get_Alignment method +linktitle: get_Alignment +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::get_Alignment method. The alignment of a field text, default is left alignment in C++.' +type: docs +weight: 1700 +url: /cpp/aspose.pdf.facades/formfieldfacade/get_alignment/ +--- +## FormFieldFacade::get_Alignment method + + +The alignment of a field text, default is left alignment. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::FormFieldFacade::get_Alignment() const +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/get_backgroundcolor/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/get_backgroundcolor/_index.md new file mode 100644 index 0000000000..aefaad25d3 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/get_backgroundcolor/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::get_BackgroundColor method +linktitle: get_BackgroundColor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::get_BackgroundColor method. The color of a field background, default is white in C++.' +type: docs +weight: 3500 +url: /cpp/aspose.pdf.facades/formfieldfacade/get_backgroundcolor/ +--- +## FormFieldFacade::get_BackgroundColor method + + +The color of a field background, default is white. + +```cpp +ASPOSE_PDF_SHARED_API System::Drawing::Color Aspose::Pdf::Facades::FormFieldFacade::get_BackgroundColor() const +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/get_bordercolor/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/get_bordercolor/_index.md new file mode 100644 index 0000000000..fb50cceacf --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/get_bordercolor/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::get_BorderColor method +linktitle: get_BorderColor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::get_BorderColor method. The color of a field border in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.facades/formfieldfacade/get_bordercolor/ +--- +## FormFieldFacade::get_BorderColor method + + +The color of a field border. + +```cpp +ASPOSE_PDF_SHARED_API System::Drawing::Color Aspose::Pdf::Facades::FormFieldFacade::get_BorderColor() const +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/get_borderstyle/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/get_borderstyle/_index.md new file mode 100644 index 0000000000..2042d81bb0 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/get_borderstyle/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::get_BorderStyle method +linktitle: get_BorderStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::get_BorderStyle method. The style of a field border in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.facades/formfieldfacade/get_borderstyle/ +--- +## FormFieldFacade::get_BorderStyle method + + +The style of a field border. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::FormFieldFacade::get_BorderStyle() const +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/get_borderwidth/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/get_borderwidth/_index.md new file mode 100644 index 0000000000..6abab436ad --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/get_borderwidth/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::get_BorderWidth method +linktitle: get_BorderWidth +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::get_BorderWidth method. The width of a field border in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.facades/formfieldfacade/get_borderwidth/ +--- +## FormFieldFacade::get_BorderWidth method + + +The width of a field border. + +```cpp +ASPOSE_PDF_SHARED_API float Aspose::Pdf::Facades::FormFieldFacade::get_BorderWidth() const +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/get_box/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/get_box/_index.md new file mode 100644 index 0000000000..267f6bb64a --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/get_box/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::get_Box method +linktitle: get_Box +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::get_Box method. A rectangle object holding field''s location in C++.' +type: docs +weight: 2500 +url: /cpp/aspose.pdf.facades/formfieldfacade/get_box/ +--- +## FormFieldFacade::get_Box method + + +A rectangle object holding field's location. + +```cpp +ASPOSE_PDF_SHARED_API System::Drawing::Rectangle Aspose::Pdf::Facades::FormFieldFacade::get_Box() const +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/get_buttonstyle/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/get_buttonstyle/_index.md new file mode 100644 index 0000000000..ec075b3603 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/get_buttonstyle/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::get_ButtonStyle method +linktitle: get_ButtonStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::get_ButtonStyle method. The style of check box or radio box field, defined by FormFieldFacade.CheckBoxStyle* in C++.' +type: docs +weight: 2300 +url: /cpp/aspose.pdf.facades/formfieldfacade/get_buttonstyle/ +--- +## FormFieldFacade::get_ButtonStyle method + + +The style of check box or radio box field, defined by FormFieldFacade.CheckBoxStyle*. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::FormFieldFacade::get_ButtonStyle() const +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/get_caption/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/get_caption/_index.md new file mode 100644 index 0000000000..ae67a1c59b --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/get_caption/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::get_Caption method +linktitle: get_Caption +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::get_Caption method. The normal caption of form field in C++.' +type: docs +weight: 2100 +url: /cpp/aspose.pdf.facades/formfieldfacade/get_caption/ +--- +## FormFieldFacade::get_Caption method + + +The normal caption of form field. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::FormFieldFacade::get_Caption() const +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/get_customfont/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/get_customfont/_index.md new file mode 100644 index 0000000000..e54ced0418 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/get_customfont/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::get_CustomFont method +linktitle: get_CustomFont +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::get_CustomFont method. Gets name of the font when this is non-standart (other then 14 standard fonts) in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.facades/formfieldfacade/get_customfont/ +--- +## FormFieldFacade::get_CustomFont method + + +Gets name of the font when this is non-standart (other then 14 standard fonts). + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::FormFieldFacade::get_CustomFont() const +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/get_exportitems/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/get_exportitems/_index.md new file mode 100644 index 0000000000..720707d57a --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/get_exportitems/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::get_ExportItems method +linktitle: get_ExportItems +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::get_ExportItems method. The options for adding a list/combo/radio box in C++.' +type: docs +weight: 3300 +url: /cpp/aspose.pdf.facades/formfieldfacade/get_exportitems/ +--- +## FormFieldFacade::get_ExportItems method + + +The options for adding a list/combo/radio box. + +```cpp +ASPOSE_PDF_SHARED_API System::ArrayPtr> Aspose::Pdf::Facades::FormFieldFacade::get_ExportItems() const +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/get_font/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/get_font/_index.md new file mode 100644 index 0000000000..e186f082fa --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/get_font/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::get_Font method +linktitle: get_Font +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::get_Font method. The font type of a field text in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.facades/formfieldfacade/get_font/ +--- +## FormFieldFacade::get_Font method + + +The font type of a field text. + +```cpp +ASPOSE_PDF_SHARED_API FontStyle Aspose::Pdf::Facades::FormFieldFacade::get_Font() const +``` + +## See Also + +* Enum [FontStyle](../../fontstyle/) +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/get_fontsize/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/get_fontsize/_index.md new file mode 100644 index 0000000000..847ba8f4df --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/get_fontsize/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::get_FontSize method +linktitle: get_FontSize +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::get_FontSize method. The size of a field text in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.facades/formfieldfacade/get_fontsize/ +--- +## FormFieldFacade::get_FontSize method + + +The size of a field text. + +```cpp +ASPOSE_PDF_SHARED_API float Aspose::Pdf::Facades::FormFieldFacade::get_FontSize() const +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/get_items/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/get_items/_index.md new file mode 100644 index 0000000000..97bd2b4c91 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/get_items/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::get_Items method +linktitle: get_Items +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::get_Items method. An array of string, each representing an option of a combo box/list/radio box field in C++.' +type: docs +weight: 3100 +url: /cpp/aspose.pdf.facades/formfieldfacade/get_items/ +--- +## FormFieldFacade::get_Items method + + +An array of string, each representing an option of a combo box/list/radio box field. + +```cpp +ASPOSE_PDF_SHARED_API System::ArrayPtr Aspose::Pdf::Facades::FormFieldFacade::get_Items() const +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/get_pagenumber/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/get_pagenumber/_index.md new file mode 100644 index 0000000000..1df46fa2e7 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/get_pagenumber/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::get_PageNumber method +linktitle: get_PageNumber +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::get_PageNumber method. An integer value holding the number of page on which field locates in C++.' +type: docs +weight: 2900 +url: /cpp/aspose.pdf.facades/formfieldfacade/get_pagenumber/ +--- +## FormFieldFacade::get_PageNumber method + + +An integer value holding the number of page on which field locates. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::FormFieldFacade::get_PageNumber() const +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/get_position/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/get_position/_index.md new file mode 100644 index 0000000000..c5195c284d --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/get_position/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::get_Position method +linktitle: get_Position +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::get_Position method. A rectangle object holding field''s location in C++.' +type: docs +weight: 2700 +url: /cpp/aspose.pdf.facades/formfieldfacade/get_position/ +--- +## FormFieldFacade::get_Position method + + +A rectangle object holding field's location. + +```cpp +ASPOSE_PDF_SHARED_API System::ArrayPtr Aspose::Pdf::Facades::FormFieldFacade::get_Position() const +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/get_rotation/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/get_rotation/_index.md new file mode 100644 index 0000000000..4fb9b7cc0a --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/get_rotation/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::get_Rotation method +linktitle: get_Rotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::get_Rotation method. The rotation of a field text in C++.' +type: docs +weight: 1900 +url: /cpp/aspose.pdf.facades/formfieldfacade/get_rotation/ +--- +## FormFieldFacade::get_Rotation method + + +The rotation of a field text. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::FormFieldFacade::get_Rotation() const +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/get_textcolor/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/get_textcolor/_index.md new file mode 100644 index 0000000000..a5350c5cb6 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/get_textcolor/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::get_TextColor method +linktitle: get_TextColor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::get_TextColor method. The color of the field text in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.facades/formfieldfacade/get_textcolor/ +--- +## FormFieldFacade::get_TextColor method + + +The color of the field text. + +```cpp +ASPOSE_PDF_SHARED_API System::Drawing::Color Aspose::Pdf::Facades::FormFieldFacade::get_TextColor() const +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/get_textencoding/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/get_textencoding/_index.md new file mode 100644 index 0000000000..a1f6d8e609 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/get_textencoding/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::get_TextEncoding method +linktitle: get_TextEncoding +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::get_TextEncoding method. The text encoding type of the field text in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.facades/formfieldfacade/get_textencoding/ +--- +## FormFieldFacade::get_TextEncoding method + + +The text encoding type of the field text. + +```cpp +ASPOSE_PDF_SHARED_API EncodingType Aspose::Pdf::Facades::FormFieldFacade::get_TextEncoding() const +``` + +## See Also + +* Enum [EncodingType](../../encodingtype/) +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/reset/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/reset/_index.md new file mode 100644 index 0000000000..517f57bf88 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/reset/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::Reset method +linktitle: Reset +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::Reset method. Reset all visual attribtues to empty value in C++.' +type: docs +weight: 3700 +url: /cpp/aspose.pdf.facades/formfieldfacade/reset/ +--- +## FormFieldFacade::Reset method + + +Reset all visual attribtues to empty value. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormFieldFacade::Reset() +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/set_alignment/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/set_alignment/_index.md new file mode 100644 index 0000000000..b37170d8dc --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/set_alignment/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::set_Alignment method +linktitle: set_Alignment +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::set_Alignment method. The alignment of a field text, default is left alignment in C++.' +type: docs +weight: 1800 +url: /cpp/aspose.pdf.facades/formfieldfacade/set_alignment/ +--- +## FormFieldFacade::set_Alignment method + + +The alignment of a field text, default is left alignment. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormFieldFacade::set_Alignment(int32_t value) +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/set_backgroundcolor/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/set_backgroundcolor/_index.md new file mode 100644 index 0000000000..a621af7305 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/set_backgroundcolor/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::set_BackgroundColor method +linktitle: set_BackgroundColor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::set_BackgroundColor method. The color of a field background, default is white in C++.' +type: docs +weight: 3600 +url: /cpp/aspose.pdf.facades/formfieldfacade/set_backgroundcolor/ +--- +## FormFieldFacade::set_BackgroundColor method + + +The color of a field background, default is white. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormFieldFacade::set_BackgroundColor(System::Drawing::Color value) +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/set_bordercolor/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/set_bordercolor/_index.md new file mode 100644 index 0000000000..0533841dfa --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/set_bordercolor/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::set_BorderColor method +linktitle: set_BorderColor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::set_BorderColor method. The color of a field border in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.facades/formfieldfacade/set_bordercolor/ +--- +## FormFieldFacade::set_BorderColor method + + +The color of a field border. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormFieldFacade::set_BorderColor(System::Drawing::Color value) +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/set_borderstyle/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/set_borderstyle/_index.md new file mode 100644 index 0000000000..2ee6498a2e --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/set_borderstyle/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::set_BorderStyle method +linktitle: set_BorderStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::set_BorderStyle method. The style of a field border in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.facades/formfieldfacade/set_borderstyle/ +--- +## FormFieldFacade::set_BorderStyle method + + +The style of a field border. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormFieldFacade::set_BorderStyle(int32_t value) +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/set_borderwidth/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/set_borderwidth/_index.md new file mode 100644 index 0000000000..9e3ff71bbe --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/set_borderwidth/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::set_BorderWidth method +linktitle: set_BorderWidth +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::set_BorderWidth method. The width of a field border in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.facades/formfieldfacade/set_borderwidth/ +--- +## FormFieldFacade::set_BorderWidth method + + +The width of a field border. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormFieldFacade::set_BorderWidth(float value) +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/set_box/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/set_box/_index.md new file mode 100644 index 0000000000..e36896cd9b --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/set_box/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::set_Box method +linktitle: set_Box +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::set_Box method. A rectangle object holding field''s location in C++.' +type: docs +weight: 2600 +url: /cpp/aspose.pdf.facades/formfieldfacade/set_box/ +--- +## FormFieldFacade::set_Box method + + +A rectangle object holding field's location. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormFieldFacade::set_Box(System::Drawing::Rectangle value) +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/set_buttonstyle/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/set_buttonstyle/_index.md new file mode 100644 index 0000000000..7beae6d3d2 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/set_buttonstyle/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::set_ButtonStyle method +linktitle: set_ButtonStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::set_ButtonStyle method. The style of check box or radio box field, defined by FormFieldFacade.CheckBoxStyle* in C++.' +type: docs +weight: 2400 +url: /cpp/aspose.pdf.facades/formfieldfacade/set_buttonstyle/ +--- +## FormFieldFacade::set_ButtonStyle method + + +The style of check box or radio box field, defined by FormFieldFacade.CheckBoxStyle*. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormFieldFacade::set_ButtonStyle(int32_t value) +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/set_caption/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/set_caption/_index.md new file mode 100644 index 0000000000..38a8ae4750 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/set_caption/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::set_Caption method +linktitle: set_Caption +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::set_Caption method. The normal caption of form field in C++.' +type: docs +weight: 2200 +url: /cpp/aspose.pdf.facades/formfieldfacade/set_caption/ +--- +## FormFieldFacade::set_Caption method + + +The normal caption of form field. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormFieldFacade::set_Caption(System::String value) +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/set_customfont/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/set_customfont/_index.md new file mode 100644 index 0000000000..77bae6d2bc --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/set_customfont/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::set_CustomFont method +linktitle: set_CustomFont +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::set_CustomFont method. Sets name of the font when this is non-standart (other then 14 standard fonts) in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.facades/formfieldfacade/set_customfont/ +--- +## FormFieldFacade::set_CustomFont method + + +Sets name of the font when this is non-standart (other then 14 standard fonts). + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormFieldFacade::set_CustomFont(System::String value) +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/set_exportitems/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/set_exportitems/_index.md new file mode 100644 index 0000000000..845ea94a8b --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/set_exportitems/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::set_ExportItems method +linktitle: set_ExportItems +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::set_ExportItems method. The options for adding a list/combo/radio box in C++.' +type: docs +weight: 3400 +url: /cpp/aspose.pdf.facades/formfieldfacade/set_exportitems/ +--- +## FormFieldFacade::set_ExportItems method + + +The options for adding a list/combo/radio box. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormFieldFacade::set_ExportItems(System::ArrayPtr> value) +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/set_font/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/set_font/_index.md new file mode 100644 index 0000000000..cab3036ca2 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/set_font/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::set_Font method +linktitle: set_Font +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::set_Font method. The font type of a field text in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.facades/formfieldfacade/set_font/ +--- +## FormFieldFacade::set_Font method + + +The font type of a field text. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormFieldFacade::set_Font(FontStyle value) +``` + +## See Also + +* Enum [FontStyle](../../fontstyle/) +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/set_fontsize/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/set_fontsize/_index.md new file mode 100644 index 0000000000..c1dbf4e9aa --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/set_fontsize/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::set_FontSize method +linktitle: set_FontSize +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::set_FontSize method. The size of a field text in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.facades/formfieldfacade/set_fontsize/ +--- +## FormFieldFacade::set_FontSize method + + +The size of a field text. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormFieldFacade::set_FontSize(float value) +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/set_items/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/set_items/_index.md new file mode 100644 index 0000000000..e1ad453bbc --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/set_items/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::set_Items method +linktitle: set_Items +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::set_Items method. An array of string, each representing an option of a combo box/list/radio box field in C++.' +type: docs +weight: 3200 +url: /cpp/aspose.pdf.facades/formfieldfacade/set_items/ +--- +## FormFieldFacade::set_Items method + + +An array of string, each representing an option of a combo box/list/radio box field. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormFieldFacade::set_Items(System::ArrayPtr value) +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/set_pagenumber/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/set_pagenumber/_index.md new file mode 100644 index 0000000000..36c8b69bda --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/set_pagenumber/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::set_PageNumber method +linktitle: set_PageNumber +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::set_PageNumber method. An integer value holding the number of page on which field locates in C++.' +type: docs +weight: 3000 +url: /cpp/aspose.pdf.facades/formfieldfacade/set_pagenumber/ +--- +## FormFieldFacade::set_PageNumber method + + +An integer value holding the number of page on which field locates. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormFieldFacade::set_PageNumber(int32_t value) +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/set_position/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/set_position/_index.md new file mode 100644 index 0000000000..d3f44e4540 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/set_position/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::set_Position method +linktitle: set_Position +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::set_Position method. A rectangle object holding field''s location in C++.' +type: docs +weight: 2800 +url: /cpp/aspose.pdf.facades/formfieldfacade/set_position/ +--- +## FormFieldFacade::set_Position method + + +A rectangle object holding field's location. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormFieldFacade::set_Position(System::ArrayPtr value) +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/set_rotation/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/set_rotation/_index.md new file mode 100644 index 0000000000..938538af94 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/set_rotation/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::set_Rotation method +linktitle: set_Rotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::set_Rotation method. The rotation of a field text in C++.' +type: docs +weight: 2000 +url: /cpp/aspose.pdf.facades/formfieldfacade/set_rotation/ +--- +## FormFieldFacade::set_Rotation method + + +The rotation of a field text. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormFieldFacade::set_Rotation(int32_t value) +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/set_textcolor/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/set_textcolor/_index.md new file mode 100644 index 0000000000..20468811ab --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/set_textcolor/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::set_TextColor method +linktitle: set_TextColor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::set_TextColor method. The color of the field text in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.facades/formfieldfacade/set_textcolor/ +--- +## FormFieldFacade::set_TextColor method + + +The color of the field text. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormFieldFacade::set_TextColor(System::Drawing::Color value) +``` + +## See Also + +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/formfieldfacade/set_textencoding/_index.md b/english/cpp/aspose.pdf.facades/formfieldfacade/set_textencoding/_index.md new file mode 100644 index 0000000000..41f018027c --- /dev/null +++ b/english/cpp/aspose.pdf.facades/formfieldfacade/set_textencoding/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::FormFieldFacade::set_TextEncoding method +linktitle: set_TextEncoding +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::FormFieldFacade::set_TextEncoding method. The text encoding type of the field text in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf.facades/formfieldfacade/set_textencoding/ +--- +## FormFieldFacade::set_TextEncoding method + + +The text encoding type of the field text. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::FormFieldFacade::set_TextEncoding(EncodingType value) +``` + +## See Also + +* Enum [EncodingType](../../encodingtype/) +* Class [FormFieldFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/ifacade/_index.md b/english/cpp/aspose.pdf.facades/ifacade/_index.md new file mode 100644 index 0000000000..24ad305efe --- /dev/null +++ b/english/cpp/aspose.pdf.facades/ifacade/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Facades::IFacade class +linktitle: IFacade +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::IFacade class. General facade interface that defines common facades methods in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.facades/ifacade/ +--- +## IFacade class + + +General facade interface that defines common facades methods. + +```cpp +class IFacade : public System::IDisposable +``` + +## Methods + +| Method | Description | +| --- | --- | +| virtual [BindPdf](./bindpdf/)(System::String) | Binds PDF document for editing. | +| virtual [BindPdf](./bindpdf/)(System::SharedPtr\) | Binds PDF document for editing. | +| virtual [BindPdf](./bindpdf/)(System::SharedPtr\) | Binds PDF document for editing. | +| virtual [Close](./close/)() | Releases any resources associates with the current facade. | +## See Also + +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/ifacade/bindpdf/_index.md b/english/cpp/aspose.pdf.facades/ifacade/bindpdf/_index.md new file mode 100644 index 0000000000..8f0a97efad --- /dev/null +++ b/english/cpp/aspose.pdf.facades/ifacade/bindpdf/_index.md @@ -0,0 +1,103 @@ +--- +title: Aspose::Pdf::Facades::IFacade::BindPdf method +linktitle: BindPdf +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::IFacade::BindPdf method. Binds PDF document for editing in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.facades/ifacade/bindpdf/ +--- +## IFacade::BindPdf(System::String) method + + +Binds PDF document for editing. + +```cpp +virtual void Aspose::Pdf::Facades::IFacade::BindPdf(System::String srcFile)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| srcFile | System::String | The path of input PDF document. | +## Remarks + + + + + + srcFile + + + The path of input PDF document. + + + +## See Also + +* Class [IFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## IFacade::BindPdf(System::SharedPtr\) method + + +Binds PDF document for editing. + +```cpp +virtual void Aspose::Pdf::Facades::IFacade::BindPdf(System::SharedPtr srcStream)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| srcStream | System::SharedPtr\ | The stream of input PDF document. | +## Remarks + + + + + + srcStream + + + The stream of input PDF document. + + + +## See Also + +* Class [IFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## IFacade::BindPdf(System::SharedPtr\) method + + +Binds PDF document for editing. + +```cpp +virtual void Aspose::Pdf::Facades::IFacade::BindPdf(System::SharedPtr srcDoc)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| srcDoc | System::SharedPtr\ | Input PDF document. | +## Remarks + + + + + + srcDoc + + + Input PDF document. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [IFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/ifacade/close/_index.md b/english/cpp/aspose.pdf.facades/ifacade/close/_index.md new file mode 100644 index 0000000000..bb7c79bdad --- /dev/null +++ b/english/cpp/aspose.pdf.facades/ifacade/close/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::IFacade::Close method +linktitle: Close +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::IFacade::Close method. Releases any resources associates with the current facade in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.facades/ifacade/close/ +--- +## IFacade::Close method + + +Releases any resources associates with the current facade. + +```cpp +virtual void Aspose::Pdf::Facades::IFacade::Close()=0 +``` + +## See Also + +* Class [IFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/imagemergemode/_index.md b/english/cpp/aspose.pdf.facades/imagemergemode/_index.md new file mode 100644 index 0000000000..8dd72c83f5 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/imagemergemode/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Facades::ImageMergeMode enum +linktitle: ImageMergeMode +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::ImageMergeMode enum. Represents modes for merging images in C++.' +type: docs +weight: 4600 +url: /cpp/aspose.pdf.facades/imagemergemode/ +--- +## ImageMergeMode enum + + +Represents modes for merging images. + +```cpp +enum class ImageMergeMode +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Vertical | 1 | Images merged vertically. | +| Horizontal | 2 | Images merged horizontally. | +| Center | 3 | Images aligned by center. | + +## See Also + +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/isaveablefacade/_index.md b/english/cpp/aspose.pdf.facades/isaveablefacade/_index.md new file mode 100644 index 0000000000..a1c8de3b9a --- /dev/null +++ b/english/cpp/aspose.pdf.facades/isaveablefacade/_index.md @@ -0,0 +1,33 @@ +--- +title: Aspose::Pdf::Facades::ISaveableFacade class +linktitle: ISaveableFacade +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::ISaveableFacade class. Facade interface that defines methods common for all saveable facades in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.facades/isaveablefacade/ +--- +## ISaveableFacade class + + +[Facade](../facade/) interface that defines methods common for all saveable facades. + +```cpp +class ISaveableFacade : public virtual Aspose::Pdf::Facades::IFacade +``` + +## Methods + +| Method | Description | +| --- | --- | +| virtual [BindPdf](../ifacade/bindpdf/)(System::String) | Binds PDF document for editing. | +| virtual [BindPdf](../ifacade/bindpdf/)(System::SharedPtr\) | Binds PDF document for editing. | +| virtual [BindPdf](../ifacade/bindpdf/)(System::SharedPtr\) | Binds PDF document for editing. | +| virtual [Close](../ifacade/close/)() | Releases any resources associates with the current facade. | +| virtual [Save](./save/)(System::String) | Saves the result PDF document to file. | +| virtual [Save](./save/)(System::SharedPtr\) | Saves the result PDF document to stream. | +## See Also + +* Class [IFacade](../ifacade/) +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/isaveablefacade/save/_index.md b/english/cpp/aspose.pdf.facades/isaveablefacade/save/_index.md new file mode 100644 index 0000000000..4a444a1a1f --- /dev/null +++ b/english/cpp/aspose.pdf.facades/isaveablefacade/save/_index.md @@ -0,0 +1,71 @@ +--- +title: Aspose::Pdf::Facades::ISaveableFacade::Save method +linktitle: Save +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::ISaveableFacade::Save method. Saves the result PDF document to file in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.facades/isaveablefacade/save/ +--- +## ISaveableFacade::Save(System::String) method + + +Saves the result PDF document to file. + +```cpp +virtual void Aspose::Pdf::Facades::ISaveableFacade::Save(System::String destFile)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| destFile | System::String | The path of output PDF document. | +## Remarks + + + + + + destFile + + + The path of output PDF document. + + + +## See Also + +* Class [ISaveableFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## ISaveableFacade::Save(System::SharedPtr\) method + + +Saves the result PDF document to stream. + +```cpp +virtual void Aspose::Pdf::Facades::ISaveableFacade::Save(System::SharedPtr destStream)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| destStream | System::SharedPtr\ | The stream of output PDF document. | +## Remarks + + + + + + destStream + + + The stream of output PDF document. + + + +## See Also + +* Class [ISaveableFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/keysize/_index.md b/english/cpp/aspose.pdf.facades/keysize/_index.md new file mode 100644 index 0000000000..3b54005c12 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/keysize/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Facades::KeySize enum +linktitle: KeySize +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::KeySize enum. Defines different key sizes which can be used to encrypt pdf documents in C++.' +type: docs +weight: 4700 +url: /cpp/aspose.pdf.facades/keysize/ +--- +## KeySize enum + + +Defines different key sizes which can be used to encrypt pdf documents. + +```cpp +enum class KeySize +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| x40 | 0 | 40 bit key. Such key size is used with RC4 algorithm and provides low level of security. Nevertheless old versions of pdf documents can be encrypted only with such keys (v. 1.3 and lower); | +| x128 | 1 | 128 bit key. Both RC4 and AES algorithms can use such key size. | +| x256 | 2 | 256 bit key. Such key size can be used only with AES and is recognized with the last Adobe Reader versions (starting from v.9). | + +## See Also + +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/lineinfo/_index.md b/english/cpp/aspose.pdf.facades/lineinfo/_index.md new file mode 100644 index 0000000000..7b820669c2 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/lineinfo/_index.md @@ -0,0 +1,39 @@ +--- +title: Aspose::Pdf::Facades::LineInfo class +linktitle: LineInfo +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::LineInfo class. Represents the information of line in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.facades/lineinfo/ +--- +## LineInfo class + + +Represents the information of line. + +```cpp +class LineInfo : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_BorderStyle](./get_borderstyle/)() const | Gets the border style of a line, 0 represents solid, 1 represents dashed, 2 represents beleved, 3 represents insert, 4 represents underline. | +| [get_LineColor](./get_linecolor/)() const | Gets the color of a line. | +| [get_LineDashPattern](./get_linedashpattern/)() const | Gets the dash pattern of a line. | +| [get_LineWidth](./get_linewidth/)() const | Gets the width of a line. | +| [get_VerticeCoordinate](./get_verticecoordinate/)() const | Gets an array of numbers representing the alternating horizontal and vertical,coordinates, respectively, of each vertex. | +| [get_Visibility](./get_visibility/)() const | Gets the visibility of a line. | +| [LineInfo](./lineinfo/)() | | +| [set_BorderStyle](./set_borderstyle/)(int32_t) | Sets the border style of a line, 0 represents solid, 1 represents dashed, 2 represents beleved, 3 represents insert, 4 represents underline. | +| [set_LineColor](./set_linecolor/)(System::Drawing::Color) | Sets the color of a line. | +| [set_LineDashPattern](./set_linedashpattern/)(System::ArrayPtr\) | Sets the dash pattern of a line. | +| [set_LineWidth](./set_linewidth/)(int32_t) | Sets the width of a line. | +| [set_VerticeCoordinate](./set_verticecoordinate/)(System::ArrayPtr\) | Sets an array of numbers representing the alternating horizontal and vertical,coordinates, respectively, of each vertex. | +| [set_Visibility](./set_visibility/)(bool) | Sets the visibility of a line. | +## See Also + +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/lineinfo/get_borderstyle/_index.md b/english/cpp/aspose.pdf.facades/lineinfo/get_borderstyle/_index.md new file mode 100644 index 0000000000..129176da84 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/lineinfo/get_borderstyle/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::LineInfo::get_BorderStyle method +linktitle: get_BorderStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::LineInfo::get_BorderStyle method. Gets the border style of a line, 0 represents solid, 1 represents dashed, 2 represents beleved, 3 represents insert, 4 represents underline in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.facades/lineinfo/get_borderstyle/ +--- +## LineInfo::get_BorderStyle method + + +Gets the border style of a line, 0 represents solid, 1 represents dashed, 2 represents beleved, 3 represents insert, 4 represents underline. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::LineInfo::get_BorderStyle() const +``` + +## See Also + +* Class [LineInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/lineinfo/get_linecolor/_index.md b/english/cpp/aspose.pdf.facades/lineinfo/get_linecolor/_index.md new file mode 100644 index 0000000000..1833c8d5b8 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/lineinfo/get_linecolor/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::LineInfo::get_LineColor method +linktitle: get_LineColor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::LineInfo::get_LineColor method. Gets the color of a line in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.facades/lineinfo/get_linecolor/ +--- +## LineInfo::get_LineColor method + + +Gets the color of a line. + +```cpp +ASPOSE_PDF_SHARED_API System::Drawing::Color Aspose::Pdf::Facades::LineInfo::get_LineColor() const +``` + +## See Also + +* Class [LineInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/lineinfo/get_linedashpattern/_index.md b/english/cpp/aspose.pdf.facades/lineinfo/get_linedashpattern/_index.md new file mode 100644 index 0000000000..dc488b62f8 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/lineinfo/get_linedashpattern/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::LineInfo::get_LineDashPattern method +linktitle: get_LineDashPattern +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::LineInfo::get_LineDashPattern method. Gets the dash pattern of a line in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.facades/lineinfo/get_linedashpattern/ +--- +## LineInfo::get_LineDashPattern method + + +Gets the dash pattern of a line. + +```cpp +ASPOSE_PDF_SHARED_API System::ArrayPtr Aspose::Pdf::Facades::LineInfo::get_LineDashPattern() const +``` + +## See Also + +* Class [LineInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/lineinfo/get_linewidth/_index.md b/english/cpp/aspose.pdf.facades/lineinfo/get_linewidth/_index.md new file mode 100644 index 0000000000..2ada2eebcd --- /dev/null +++ b/english/cpp/aspose.pdf.facades/lineinfo/get_linewidth/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::LineInfo::get_LineWidth method +linktitle: get_LineWidth +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::LineInfo::get_LineWidth method. Gets the width of a line in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.facades/lineinfo/get_linewidth/ +--- +## LineInfo::get_LineWidth method + + +Gets the width of a line. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::LineInfo::get_LineWidth() const +``` + +## See Also + +* Class [LineInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/lineinfo/get_verticecoordinate/_index.md b/english/cpp/aspose.pdf.facades/lineinfo/get_verticecoordinate/_index.md new file mode 100644 index 0000000000..3774ae9455 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/lineinfo/get_verticecoordinate/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::LineInfo::get_VerticeCoordinate method +linktitle: get_VerticeCoordinate +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::LineInfo::get_VerticeCoordinate method. Gets an array of numbers representing the alternating horizontal and vertical,coordinates, respectively, of each vertex in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.facades/lineinfo/get_verticecoordinate/ +--- +## LineInfo::get_VerticeCoordinate method + + +Gets an array of numbers representing the alternating horizontal and vertical,coordinates, respectively, of each vertex. + +```cpp +ASPOSE_PDF_SHARED_API System::ArrayPtr Aspose::Pdf::Facades::LineInfo::get_VerticeCoordinate() const +``` + +## See Also + +* Class [LineInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/lineinfo/get_visibility/_index.md b/english/cpp/aspose.pdf.facades/lineinfo/get_visibility/_index.md new file mode 100644 index 0000000000..ba6fcddda6 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/lineinfo/get_visibility/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::LineInfo::get_Visibility method +linktitle: get_Visibility +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::LineInfo::get_Visibility method. Gets the visibility of a line in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.facades/lineinfo/get_visibility/ +--- +## LineInfo::get_Visibility method + + +Gets the visibility of a line. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::LineInfo::get_Visibility() const +``` + +## See Also + +* Class [LineInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/lineinfo/lineinfo/_index.md b/english/cpp/aspose.pdf.facades/lineinfo/lineinfo/_index.md new file mode 100644 index 0000000000..ccbc3e2870 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/lineinfo/lineinfo/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::LineInfo::LineInfo constructor +linktitle: LineInfo +second_title: Aspose.PDF for C++ API Reference +description: 'How to use LineInfo constructor of Aspose::Pdf::Facades::LineInfo class in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.facades/lineinfo/lineinfo/ +--- +## LineInfo::LineInfo constructor + + + + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::LineInfo::LineInfo() +``` + +## See Also + +* Class [LineInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/lineinfo/set_borderstyle/_index.md b/english/cpp/aspose.pdf.facades/lineinfo/set_borderstyle/_index.md new file mode 100644 index 0000000000..b4ad37f837 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/lineinfo/set_borderstyle/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::LineInfo::set_BorderStyle method +linktitle: set_BorderStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::LineInfo::set_BorderStyle method. Sets the border style of a line, 0 represents solid, 1 represents dashed, 2 represents beleved, 3 represents insert, 4 represents underline in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.facades/lineinfo/set_borderstyle/ +--- +## LineInfo::set_BorderStyle method + + +Sets the border style of a line, 0 represents solid, 1 represents dashed, 2 represents beleved, 3 represents insert, 4 represents underline. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::LineInfo::set_BorderStyle(int32_t value) +``` + +## See Also + +* Class [LineInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/lineinfo/set_linecolor/_index.md b/english/cpp/aspose.pdf.facades/lineinfo/set_linecolor/_index.md new file mode 100644 index 0000000000..9ea9cbd9aa --- /dev/null +++ b/english/cpp/aspose.pdf.facades/lineinfo/set_linecolor/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::LineInfo::set_LineColor method +linktitle: set_LineColor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::LineInfo::set_LineColor method. Sets the color of a line in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.facades/lineinfo/set_linecolor/ +--- +## LineInfo::set_LineColor method + + +Sets the color of a line. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::LineInfo::set_LineColor(System::Drawing::Color value) +``` + +## See Also + +* Class [LineInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/lineinfo/set_linedashpattern/_index.md b/english/cpp/aspose.pdf.facades/lineinfo/set_linedashpattern/_index.md new file mode 100644 index 0000000000..b11456fafb --- /dev/null +++ b/english/cpp/aspose.pdf.facades/lineinfo/set_linedashpattern/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::LineInfo::set_LineDashPattern method +linktitle: set_LineDashPattern +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::LineInfo::set_LineDashPattern method. Sets the dash pattern of a line in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.facades/lineinfo/set_linedashpattern/ +--- +## LineInfo::set_LineDashPattern method + + +Sets the dash pattern of a line. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::LineInfo::set_LineDashPattern(System::ArrayPtr value) +``` + +## See Also + +* Class [LineInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/lineinfo/set_linewidth/_index.md b/english/cpp/aspose.pdf.facades/lineinfo/set_linewidth/_index.md new file mode 100644 index 0000000000..c044f5679a --- /dev/null +++ b/english/cpp/aspose.pdf.facades/lineinfo/set_linewidth/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::LineInfo::set_LineWidth method +linktitle: set_LineWidth +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::LineInfo::set_LineWidth method. Sets the width of a line in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.facades/lineinfo/set_linewidth/ +--- +## LineInfo::set_LineWidth method + + +Sets the width of a line. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::LineInfo::set_LineWidth(int32_t value) +``` + +## See Also + +* Class [LineInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/lineinfo/set_verticecoordinate/_index.md b/english/cpp/aspose.pdf.facades/lineinfo/set_verticecoordinate/_index.md new file mode 100644 index 0000000000..812fca2757 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/lineinfo/set_verticecoordinate/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::LineInfo::set_VerticeCoordinate method +linktitle: set_VerticeCoordinate +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::LineInfo::set_VerticeCoordinate method. Sets an array of numbers representing the alternating horizontal and vertical,coordinates, respectively, of each vertex in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.facades/lineinfo/set_verticecoordinate/ +--- +## LineInfo::set_VerticeCoordinate method + + +Sets an array of numbers representing the alternating horizontal and vertical,coordinates, respectively, of each vertex. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::LineInfo::set_VerticeCoordinate(System::ArrayPtr value) +``` + +## See Also + +* Class [LineInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/lineinfo/set_visibility/_index.md b/english/cpp/aspose.pdf.facades/lineinfo/set_visibility/_index.md new file mode 100644 index 0000000000..8860c0e727 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/lineinfo/set_visibility/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::LineInfo::set_Visibility method +linktitle: set_Visibility +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::LineInfo::set_Visibility method. Sets the visibility of a line in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.facades/lineinfo/set_visibility/ +--- +## LineInfo::set_Visibility method + + +Sets the visibility of a line. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::LineInfo::set_Visibility(bool value) +``` + +## See Also + +* Class [LineInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfannotationeditor/_index.md b/english/cpp/aspose.pdf.facades/pdfannotationeditor/_index.md new file mode 100644 index 0000000000..1f8fc3e1f7 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfannotationeditor/_index.md @@ -0,0 +1,63 @@ +--- +title: Aspose::Pdf::Facades::PdfAnnotationEditor class +linktitle: PdfAnnotationEditor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfAnnotationEditor class. Represents a class for work with PDF document annotations (comments) in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.facades/pdfannotationeditor/ +--- +## PdfAnnotationEditor class + + +Represents a class for work with PDF document annotations (comments). + +```cpp +class PdfAnnotationEditor : public Aspose::Pdf::Facades::SaveableFacade +``` + +## Methods + +| Method | Description | +| --- | --- | +| [BindPdf](../facade/bindpdf/)(System::String) override | Initializes the facade. | +| [BindPdf](../facade/bindpdf/)(System::SharedPtr\) override | Initializes the facade. | +| [BindPdf](../facade/bindpdf/)(System::SharedPtr\) override | Initializes the facade. | +| virtual [BindPdf](../ifacade/bindpdf/)(System::SharedPtr\) | Binds PDF document for editing. | +| [Close](../facade/close/)() override | Disposes [Aspose.Pdf.Document](../../aspose.pdf/document/) bound with a facade. | +| [DeleteAnnotation](./deleteannotation/)(System::String) | Deletes the annotation with specified annotation name. | +| [DeleteAnnotations](./deleteannotations/)() | Deletes all annotations in the document. | +| [DeleteAnnotations](./deleteannotations/)(System::String) | Deletes all annotations of the specified type in the document. | +| [Dispose](../facade/dispose/)() override | Disposes the facade. | +| [ExportAnnotationsToXfdf](./exportannotationstoxfdf/)(System::SharedPtr\) | Exports annotations to stream. | +| [ExportAnnotationsXfdf](./exportannotationsxfdf/)(System::SharedPtr\, int32_t, int32_t, System::ArrayPtr\) | Exports the content of the specified annotation types into XFDF. | +| [ExportAnnotationsXfdf](./exportannotationsxfdf/)(System::SharedPtr\, int32_t, int32_t, System::ArrayPtr\) | Exports the content of the specified annotations types into XFDF. | +| [ExtractAnnotations](./extractannotations/)(int32_t, int32_t, System::ArrayPtr\) | Gets the list of annotations of the specified types. | +| [ExtractAnnotations](./extractannotations/)(int32_t, int32_t, System::ArrayPtr\) | Gets the list of annotations of the specified types. | +| [FlatteningAnnotations](./flatteningannotations/)() | Flattens all annotations in the document. | +| [FlatteningAnnotations](./flatteningannotations/)(System::SharedPtr\) | Flattens all annotations in the document. | +| [FlatteningAnnotations](./flatteningannotations/)(int32_t, int32_t, System::ArrayPtr\) | Flattens the annotations of the specified types. | +| [get_Document](../facade/get_document/)() const | Gets the document facade is working on. | +| [ImportAnnotationFromXfdf](./importannotationfromxfdf/)(System::String) | Imports all annotations from XFDF file. | +| [ImportAnnotationFromXfdf](./importannotationfromxfdf/)(System::String, System::ArrayPtr\) | Imports the specified annotations from XFDF file. | +| [ImportAnnotationFromXfdf](./importannotationfromxfdf/)(System::SharedPtr\, System::ArrayPtr\) | Imports the specified annotations from XFDF data stream. | +| [ImportAnnotationFromXfdf](./importannotationfromxfdf/)(System::SharedPtr\) | Imports all annotations from XFDF data stream. | +| [ImportAnnotations](./importannotations/)(System::ArrayPtr\, System::ArrayPtr\) | Imports the specified annotations into document from array of another PDF documents. | +| [ImportAnnotations](./importannotations/)(System::ArrayPtr\) | Imports annotations into document from array of another PDF documents. | +| [ImportAnnotations](./importannotations/)(System::ArrayPtr\\>, System::ArrayPtr\) | Imports the specified annotations into document from array of another PDF document streams. | +| [ImportAnnotations](./importannotations/)(System::ArrayPtr\\>) | Imports annotations into document from array of another PDF document streams. | +| [ImportAnnotationsFromFdf](./importannotationsfromfdf/)(System::String) | Imports all annotations from FDF file. | +| [ImportAnnotationsFromXfdf](./importannotationsfromxfdf/)(System::String) | Imports all annotations from XFDF file. | +| [ImportAnnotationsFromXfdf](./importannotationsfromxfdf/)(System::SharedPtr\) | Imports all annotations from XFDF data stream. | +| [ModifyAnnotations](./modifyannotations/)(int32_t, int32_t, System::SharedPtr\) | Modifies the annotations of the specifed type on the specified page range. It supports to modify next annotation properties: Modified, Title, Contents, [Color](../../aspose.pdf/color/), Subject and Open. | +| [ModifyAnnotationsAuthor](./modifyannotationsauthor/)(int32_t, int32_t, System::String, System::String) | Modifies the author of annotations on the specified page range. | +| [PdfAnnotationEditor](./pdfannotationeditor/)() | Initializes new [PdfAnnotationEditor](./) object. | +| [PdfAnnotationEditor](./pdfannotationeditor/)(System::SharedPtr\) | Initializes new [PdfAnnotationEditor](./) object on base of the *document* . | +| [RedactArea](./redactarea/)(int32_t, System::SharedPtr\, System::Drawing::Color) | Redacts area on the specified page. All contents is removed. | +| [Save](../saveablefacade/save/)(System::String) override | Saves the PDF document to the specified file. | +| [Save](../saveablefacade/save/)(System::SharedPtr\) override | Saves the PDF document to the specified stream. | +## See Also + +* Class [SaveableFacade](../saveablefacade/) +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/pdfannotationeditor/deleteannotation/_index.md b/english/cpp/aspose.pdf.facades/pdfannotationeditor/deleteannotation/_index.md new file mode 100644 index 0000000000..ac0315655b --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfannotationeditor/deleteannotation/_index.md @@ -0,0 +1,43 @@ +--- +title: Aspose::Pdf::Facades::PdfAnnotationEditor::DeleteAnnotation method +linktitle: DeleteAnnotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfAnnotationEditor::DeleteAnnotation method. Deletes the annotation with specified annotation name in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.facades/pdfannotationeditor/deleteannotation/ +--- +## PdfAnnotationEditor::DeleteAnnotation method + + +Deletes the annotation with specified annotation name. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfAnnotationEditor::DeleteAnnotation(System::String annotName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| annotName | System::String | The annotation name | +## Remarks + + + + + + annotName + + + The annotation name + + + + + + +## See Also + +* Class [PdfAnnotationEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfannotationeditor/deleteannotations/_index.md b/english/cpp/aspose.pdf.facades/pdfannotationeditor/deleteannotations/_index.md new file mode 100644 index 0000000000..76ee5d5d62 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfannotationeditor/deleteannotations/_index.md @@ -0,0 +1,54 @@ +--- +title: Aspose::Pdf::Facades::PdfAnnotationEditor::DeleteAnnotations method +linktitle: DeleteAnnotations +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfAnnotationEditor::DeleteAnnotations method. Deletes all annotations in the document in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.facades/pdfannotationeditor/deleteannotations/ +--- +## PdfAnnotationEditor::DeleteAnnotations() method + + +Deletes all annotations in the document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfAnnotationEditor::DeleteAnnotations() +``` + +## See Also + +* Class [PdfAnnotationEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfAnnotationEditor::DeleteAnnotations(System::String) method + + +Deletes all annotations of the specified type in the document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfAnnotationEditor::DeleteAnnotations(System::String annotType) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| annotType | System::String | The type of annotation will be deleted. | +## Remarks + + + + + + annotType + + + The type of annotation will be deleted. + + + +## See Also + +* Class [PdfAnnotationEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfannotationeditor/exportannotationstoxfdf/_index.md b/english/cpp/aspose.pdf.facades/pdfannotationeditor/exportannotationstoxfdf/_index.md new file mode 100644 index 0000000000..b6e3d91ff1 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfannotationeditor/exportannotationstoxfdf/_index.md @@ -0,0 +1,40 @@ +--- +title: Aspose::Pdf::Facades::PdfAnnotationEditor::ExportAnnotationsToXfdf method +linktitle: ExportAnnotationsToXfdf +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfAnnotationEditor::ExportAnnotationsToXfdf method. Exports annotations to stream in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.facades/pdfannotationeditor/exportannotationstoxfdf/ +--- +## PdfAnnotationEditor::ExportAnnotationsToXfdf method + + +Exports annotations to stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfAnnotationEditor::ExportAnnotationsToXfdf(System::SharedPtr xmlOutputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| xmlOutputStream | System::SharedPtr\ | Output stream. | +## Remarks + + + + + + xmlOutputStream + + + Output stream. + + + +## See Also + +* Class [PdfAnnotationEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfannotationeditor/exportannotationsxfdf/_index.md b/english/cpp/aspose.pdf.facades/pdfannotationeditor/exportannotationsxfdf/_index.md new file mode 100644 index 0000000000..693bf981d6 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfannotationeditor/exportannotationsxfdf/_index.md @@ -0,0 +1,126 @@ +--- +title: Aspose::Pdf::Facades::PdfAnnotationEditor::ExportAnnotationsXfdf method +linktitle: ExportAnnotationsXfdf +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfAnnotationEditor::ExportAnnotationsXfdf method. Exports the content of the specified annotation types into XFDF in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.facades/pdfannotationeditor/exportannotationsxfdf/ +--- +## PdfAnnotationEditor::ExportAnnotationsXfdf(System::SharedPtr\, int32_t, int32_t, System::ArrayPtr\) method + + +Exports the content of the specified annotation types into XFDF. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfAnnotationEditor::ExportAnnotationsXfdf(System::SharedPtr xmlOutputStream, int32_t start, int32_t end, System::ArrayPtr annotTypes) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| xmlOutputStream | System::SharedPtr\ | The output XFDF stream. | +| start | int32_t | Start page from which the annotations of the document will be exported. | +| end | int32_t | End page to which the annotations of the document will be exported. | +| annotTypes | System::ArrayPtr\ | The array of annotation types need be exported. | +## Remarks + + + + + + xmlOutputStream + + + The output XFDF stream. + + + + + start + + + Start page from which the annotations of the document will be exported. + + + + + end + + + End page to which the annotations of the document will be exported. + + + + + annotTypes + + + The array of annotation types need be exported. + + + +## See Also + +* Class [PdfAnnotationEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfAnnotationEditor::ExportAnnotationsXfdf(System::SharedPtr\, int32_t, int32_t, System::ArrayPtr\) method + + +Exports the content of the specified annotations types into XFDF. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfAnnotationEditor::ExportAnnotationsXfdf(System::SharedPtr xmlOutputStream, int32_t start, int32_t end, System::ArrayPtr annotTypes) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| xmlOutputStream | System::SharedPtr\ | The output XFDF stream. | +| start | int32_t | Start page from which the annotations of the document will be exported. | +| end | int32_t | End page to which the annotations of the document will be exported. | +| annotTypes | System::ArrayPtr\ | The array of annotation types need be exported. | +## Remarks + + + + + + xmlOutputStream + + + The output XFDF stream. + + + + + start + + + Start page from which the annotations of the document will be exported. + + + + + end + + + End page to which the annotations of the document will be exported. + + + + + annotTypes + + + The array of annotation types need be exported. + + + +## See Also + +* Enum [AnnotationType](../../../aspose.pdf.annotations/annotationtype/) +* Class [PdfAnnotationEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfannotationeditor/extractannotations/_index.md b/english/cpp/aspose.pdf.facades/pdfannotationeditor/extractannotations/_index.md new file mode 100644 index 0000000000..37f9e5a152 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfannotationeditor/extractannotations/_index.md @@ -0,0 +1,118 @@ +--- +title: Aspose::Pdf::Facades::PdfAnnotationEditor::ExtractAnnotations method +linktitle: ExtractAnnotations +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfAnnotationEditor::ExtractAnnotations method. Gets the list of annotations of the specified types in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.facades/pdfannotationeditor/extractannotations/ +--- +## PdfAnnotationEditor::ExtractAnnotations(int32_t, int32_t, System::ArrayPtr\) method + + +Gets the list of annotations of the specified types. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr>> Aspose::Pdf::Facades::PdfAnnotationEditor::ExtractAnnotations(int32_t start, int32_t end, System::ArrayPtr annotTypes) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| start | int32_t | Start page from which the annotations will be selected. | +| end | int32_t | End page to which the annotations will be selected. | +| annotTypes | System::ArrayPtr\ | The array of needed annotation types. | + +### ReturnValue + +[Annotations](../../../aspose.pdf.annotations/) list. +## Remarks + + + + + + start + + + Start page from which the annotations will be selected. + + + + + end + + + End page to which the annotations will be selected. + + + + + annotTypes + + + The array of needed annotation types. + + + +## See Also + +* Class [Annotation](../../../aspose.pdf.annotations/annotation/) +* Class [PdfAnnotationEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfAnnotationEditor::ExtractAnnotations(int32_t, int32_t, System::ArrayPtr\) method + + +Gets the list of annotations of the specified types. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr>> Aspose::Pdf::Facades::PdfAnnotationEditor::ExtractAnnotations(int32_t start, int32_t end, System::ArrayPtr annotTypes) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| start | int32_t | Start page from which the annotations will be selected. | +| end | int32_t | End page to which the annotations will be selected. | +| annotTypes | System::ArrayPtr\ | The array of needed annotation types. | + +### ReturnValue + +[Annotations](../../../aspose.pdf.annotations/) list. +## Remarks + + + + + + start + + + Start page from which the annotations will be selected. + + + + + end + + + End page to which the annotations will be selected. + + + + + annotTypes + + + The array of needed annotation types. + + + +## See Also + +* Class [Annotation](../../../aspose.pdf.annotations/annotation/) +* Enum [AnnotationType](../../../aspose.pdf.annotations/annotationtype/) +* Class [PdfAnnotationEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfannotationeditor/flatteningannotations/_index.md b/english/cpp/aspose.pdf.facades/pdfannotationeditor/flatteningannotations/_index.md new file mode 100644 index 0000000000..aa74c6ab2c --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfannotationeditor/flatteningannotations/_index.md @@ -0,0 +1,104 @@ +--- +title: Aspose::Pdf::Facades::PdfAnnotationEditor::FlatteningAnnotations method +linktitle: FlatteningAnnotations +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfAnnotationEditor::FlatteningAnnotations method. Flattens all annotations in the document in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.facades/pdfannotationeditor/flatteningannotations/ +--- +## PdfAnnotationEditor::FlatteningAnnotations() method + + +Flattens all annotations in the document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfAnnotationEditor::FlatteningAnnotations() +``` + +## See Also + +* Class [PdfAnnotationEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfAnnotationEditor::FlatteningAnnotations(System::SharedPtr\) method + + +Flattens all annotations in the document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfAnnotationEditor::FlatteningAnnotations(System::SharedPtr flattenSettings) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| flattenSettings | System::SharedPtr\ | Specifies modes of flattening. | +## Remarks + + + + + + flattenSettings + + + Specifies modes of flattening. + + + +## See Also + +* Class [PdfAnnotationEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfAnnotationEditor::FlatteningAnnotations(int32_t, int32_t, System::ArrayPtr\) method + + +Flattens the annotations of the specified types. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfAnnotationEditor::FlatteningAnnotations(int32_t start, int32_t end, System::ArrayPtr annotType) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| start | int32_t | The start page. | +| end | int32_t | Then end page. | +| annotType | System::ArrayPtr\ | The annotation types should be flattened. | +## Remarks + + + + + + start + + + The start page. + + + + + end + + + Then end page. + + + + + annotType + + + The annotation types should be flattened. + + + +## See Also + +* Enum [AnnotationType](../../../aspose.pdf.annotations/annotationtype/) +* Class [PdfAnnotationEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfannotationeditor/importannotationfromxfdf/_index.md b/english/cpp/aspose.pdf.facades/pdfannotationeditor/importannotationfromxfdf/_index.md new file mode 100644 index 0000000000..5c626e7641 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfannotationeditor/importannotationfromxfdf/_index.md @@ -0,0 +1,163 @@ +--- +title: Aspose::Pdf::Facades::PdfAnnotationEditor::ImportAnnotationFromXfdf method +linktitle: ImportAnnotationFromXfdf +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfAnnotationEditor::ImportAnnotationFromXfdf method. Imports all annotations from XFDF file in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.facades/pdfannotationeditor/importannotationfromxfdf/ +--- +## PdfAnnotationEditor::ImportAnnotationFromXfdf(System::String) method + + +Imports all annotations from XFDF file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfAnnotationEditor::ImportAnnotationFromXfdf(System::String xfdfFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| xfdfFile | System::String | The input XFDF file. | +## Remarks + + + + Deprecated + + Method is obsolete, please use ImportAnnotationsFromXfdf instead + + + + + xfdfFile + + + The input XFDF file. + + + +## See Also + +* Class [PdfAnnotationEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfAnnotationEditor::ImportAnnotationFromXfdf(System::String, System::ArrayPtr\) method + + +Imports the specified annotations from XFDF file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfAnnotationEditor::ImportAnnotationFromXfdf(System::String xfdfFile, System::ArrayPtr annotType) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| xfdfFile | System::String | The input XFDF file. | +| annotType | System::ArrayPtr\ | The annotations array to be imported. | +## Remarks + + + + + + xfdfFile + + + The input XFDF file. + + + + + annotType + + + The annotations array to be imported. + + + +## See Also + +* Enum [AnnotationType](../../../aspose.pdf.annotations/annotationtype/) +* Class [PdfAnnotationEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfAnnotationEditor::ImportAnnotationFromXfdf(System::SharedPtr\, System::ArrayPtr\) method + + +Imports the specified annotations from XFDF data stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfAnnotationEditor::ImportAnnotationFromXfdf(System::SharedPtr xfdfStream, System::ArrayPtr annotType) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| xfdfStream | System::SharedPtr\ | The input XFDF data stream. | +| annotType | System::ArrayPtr\ | The array of annotation types to be imported. | +## Remarks + + + + + + xfdfStream + + + The input XFDF data stream. + + + + + annotType + + + The array of annotation types to be imported. + + + +## See Also + +* Enum [AnnotationType](../../../aspose.pdf.annotations/annotationtype/) +* Class [PdfAnnotationEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfAnnotationEditor::ImportAnnotationFromXfdf(System::SharedPtr\) method + + +Imports all annotations from XFDF data stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfAnnotationEditor::ImportAnnotationFromXfdf(System::SharedPtr xfdfStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| xfdfStream | System::SharedPtr\ | The input XFDF data stream. | +## Remarks + + + + Deprecated + + Method is obsolete, please use ImportAnnotationsFromXfdf instead + + + + + xfdfStream + + + The input XFDF data stream. + + + +## See Also + +* Class [PdfAnnotationEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfannotationeditor/importannotations/_index.md b/english/cpp/aspose.pdf.facades/pdfannotationeditor/importannotations/_index.md new file mode 100644 index 0000000000..7a9750d515 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfannotationeditor/importannotations/_index.md @@ -0,0 +1,153 @@ +--- +title: Aspose::Pdf::Facades::PdfAnnotationEditor::ImportAnnotations method +linktitle: ImportAnnotations +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfAnnotationEditor::ImportAnnotations method. Imports the specified annotations into document from array of another PDF documents in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.facades/pdfannotationeditor/importannotations/ +--- +## PdfAnnotationEditor::ImportAnnotations(System::ArrayPtr\, System::ArrayPtr\) method + + +Imports the specified annotations into document from array of another PDF documents. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfAnnotationEditor::ImportAnnotations(System::ArrayPtr annotFile, System::ArrayPtr annotType) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| annotFile | System::ArrayPtr\ | The array of paths of PDF documents that contain source annotations. | +| annotType | System::ArrayPtr\ | The array of annotation types to be imported. | +## Remarks + + + + + + annotFile + + + The array of paths of PDF documents that contain source annotations. + + + + + annotType + + + The array of annotation types to be imported. + + + +## See Also + +* Enum [AnnotationType](../../../aspose.pdf.annotations/annotationtype/) +* Class [PdfAnnotationEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfAnnotationEditor::ImportAnnotations(System::ArrayPtr\) method + + +Imports annotations into document from array of another PDF documents. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfAnnotationEditor::ImportAnnotations(System::ArrayPtr annotFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| annotFile | System::ArrayPtr\ | The array of paths of PDF documents that contain source annotations. | +## Remarks + + + + + + annotFile + + + The array of paths of PDF documents that contain source annotations. + + + +## See Also + +* Class [PdfAnnotationEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfAnnotationEditor::ImportAnnotations(System::ArrayPtr\\>, System::ArrayPtr\) method + + +Imports the specified annotations into document from array of another PDF document streams. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfAnnotationEditor::ImportAnnotations(System::ArrayPtr> annotFileStream, System::ArrayPtr annotType) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| annotFileStream | System::ArrayPtr\\> | The array of streams of PDF documents that contain source annotations. | +| annotType | System::ArrayPtr\ | The annotation types to be imported. | +## Remarks + + + + + + annotFileStream + + + The array of streams of PDF documents that contain source annotations. + + + + + annotType + + + The annotation types to be imported. + + + +## See Also + +* Enum [AnnotationType](../../../aspose.pdf.annotations/annotationtype/) +* Class [PdfAnnotationEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfAnnotationEditor::ImportAnnotations(System::ArrayPtr\\>) method + + +Imports annotations into document from array of another PDF document streams. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfAnnotationEditor::ImportAnnotations(System::ArrayPtr> annotFileStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| annotFileStream | System::ArrayPtr\\> | The array of streams of PDF documents that contain source annotations. | +## Remarks + + + + + + annotFileStream + + + The array of streams of PDF documents that contain source annotations. + + + +## See Also + +* Class [PdfAnnotationEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfannotationeditor/importannotationsfromfdf/_index.md b/english/cpp/aspose.pdf.facades/pdfannotationeditor/importannotationsfromfdf/_index.md new file mode 100644 index 0000000000..4628fee767 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfannotationeditor/importannotationsfromfdf/_index.md @@ -0,0 +1,40 @@ +--- +title: Aspose::Pdf::Facades::PdfAnnotationEditor::ImportAnnotationsFromFdf method +linktitle: ImportAnnotationsFromFdf +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfAnnotationEditor::ImportAnnotationsFromFdf method. Imports all annotations from FDF file in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.facades/pdfannotationeditor/importannotationsfromfdf/ +--- +## PdfAnnotationEditor::ImportAnnotationsFromFdf method + + +Imports all annotations from FDF file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfAnnotationEditor::ImportAnnotationsFromFdf(System::String fdfFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fdfFile | System::String | The input FDF file. | +## Remarks + + + + + + fdfFile + + + The input FDF file. + + + +## See Also + +* Class [PdfAnnotationEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfannotationeditor/importannotationsfromxfdf/_index.md b/english/cpp/aspose.pdf.facades/pdfannotationeditor/importannotationsfromxfdf/_index.md new file mode 100644 index 0000000000..fa3e570644 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfannotationeditor/importannotationsfromxfdf/_index.md @@ -0,0 +1,71 @@ +--- +title: Aspose::Pdf::Facades::PdfAnnotationEditor::ImportAnnotationsFromXfdf method +linktitle: ImportAnnotationsFromXfdf +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfAnnotationEditor::ImportAnnotationsFromXfdf method. Imports all annotations from XFDF file in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.facades/pdfannotationeditor/importannotationsfromxfdf/ +--- +## PdfAnnotationEditor::ImportAnnotationsFromXfdf(System::String) method + + +Imports all annotations from XFDF file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfAnnotationEditor::ImportAnnotationsFromXfdf(System::String xfdfFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| xfdfFile | System::String | The input XFDF file. | +## Remarks + + + + + + xfdfFile + + + The input XFDF file. + + + +## See Also + +* Class [PdfAnnotationEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfAnnotationEditor::ImportAnnotationsFromXfdf(System::SharedPtr\) method + + +Imports all annotations from XFDF data stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfAnnotationEditor::ImportAnnotationsFromXfdf(System::SharedPtr xfdfStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| xfdfStream | System::SharedPtr\ | The input XFDF data stream. | +## Remarks + + + + + + xfdfStream + + + The input XFDF data stream. + + + +## See Also + +* Class [PdfAnnotationEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfannotationeditor/modifyannotations/_index.md b/english/cpp/aspose.pdf.facades/pdfannotationeditor/modifyannotations/_index.md new file mode 100644 index 0000000000..7e280dff91 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfannotationeditor/modifyannotations/_index.md @@ -0,0 +1,59 @@ +--- +title: Aspose::Pdf::Facades::PdfAnnotationEditor::ModifyAnnotations method +linktitle: ModifyAnnotations +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfAnnotationEditor::ModifyAnnotations method. Modifies the annotations of the specifed type on the specified page range. It supports to modify next annotation properties: Modified, Title, Contents, Color, Subject and Open in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.facades/pdfannotationeditor/modifyannotations/ +--- +## PdfAnnotationEditor::ModifyAnnotations method + + +Modifies the annotations of the specifed type on the specified page range. It supports to modify next annotation properties: Modified, Title, Contents, [Color](../../../aspose.pdf/color/), Subject and Open. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfAnnotationEditor::ModifyAnnotations(int32_t start, int32_t end, System::SharedPtr annotation) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| start | int32_t | The start page number. | +| end | int32_t | The end page number. | +| annotation | System::SharedPtr\ | The annotation object contains new properties. | +## Remarks + + + + + + start + + + The start page number. + + + + + end + + + The end page number. + + + + + annotation + + + The annotation object contains new properties. + + + +## See Also + +* Class [Annotation](../../../aspose.pdf.annotations/annotation/) +* Class [PdfAnnotationEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfannotationeditor/modifyannotationsauthor/_index.md b/english/cpp/aspose.pdf.facades/pdfannotationeditor/modifyannotationsauthor/_index.md new file mode 100644 index 0000000000..dc7b61600a --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfannotationeditor/modifyannotationsauthor/_index.md @@ -0,0 +1,67 @@ +--- +title: Aspose::Pdf::Facades::PdfAnnotationEditor::ModifyAnnotationsAuthor method +linktitle: ModifyAnnotationsAuthor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfAnnotationEditor::ModifyAnnotationsAuthor method. Modifies the author of annotations on the specified page range in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.facades/pdfannotationeditor/modifyannotationsauthor/ +--- +## PdfAnnotationEditor::ModifyAnnotationsAuthor method + + +Modifies the author of annotations on the specified page range. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfAnnotationEditor::ModifyAnnotationsAuthor(int32_t start, int32_t end, System::String srcAuthor, System::String desAuthor) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| start | int32_t | The start page number. | +| end | int32_t | The end page number. | +| srcAuthor | System::String | The author that must be modified. | +| desAuthor | System::String | The new author. | +## Remarks + + + + + + start + + + The start page number. + + + + + end + + + The end page number. + + + + + srcAuthor + + + The author that must be modified. + + + + + desAuthor + + + The new author. + + + +## See Also + +* Class [PdfAnnotationEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfannotationeditor/pdfannotationeditor/_index.md b/english/cpp/aspose.pdf.facades/pdfannotationeditor/pdfannotationeditor/_index.md new file mode 100644 index 0000000000..a3e002542f --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfannotationeditor/pdfannotationeditor/_index.md @@ -0,0 +1,56 @@ +--- +title: Aspose::Pdf::Facades::PdfAnnotationEditor::PdfAnnotationEditor constructor +linktitle: PdfAnnotationEditor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfAnnotationEditor::PdfAnnotationEditor constructor. Initializes new PdfAnnotationEditor object in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.facades/pdfannotationeditor/pdfannotationeditor/ +--- +## PdfAnnotationEditor::PdfAnnotationEditor() constructor + + +Initializes new [PdfAnnotationEditor](../) object. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfAnnotationEditor::PdfAnnotationEditor() +``` + +## See Also + +* Class [PdfAnnotationEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfAnnotationEditor::PdfAnnotationEditor(System::SharedPtr\) constructor + + +Initializes new [PdfAnnotationEditor](../) object on base of the *document* . + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfAnnotationEditor::PdfAnnotationEditor(System::SharedPtr document) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | [Pdf](../../../aspose.pdf/) document. | +## Remarks + + + + + + document + + + + Pdf document. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [PdfAnnotationEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfannotationeditor/redactarea/_index.md b/english/cpp/aspose.pdf.facades/pdfannotationeditor/redactarea/_index.md new file mode 100644 index 0000000000..2d53e8f181 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfannotationeditor/redactarea/_index.md @@ -0,0 +1,59 @@ +--- +title: Aspose::Pdf::Facades::PdfAnnotationEditor::RedactArea method +linktitle: RedactArea +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfAnnotationEditor::RedactArea method. Redacts area on the specified page. All contents is removed in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.facades/pdfannotationeditor/redactarea/ +--- +## PdfAnnotationEditor::RedactArea method + + +Redacts area on the specified page. All contents is removed. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfAnnotationEditor::RedactArea(int32_t pageIndex, System::SharedPtr rect, System::Drawing::Color color) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageIndex | int32_t | Index of the page. | +| rect | System::SharedPtr\ | Area rectangle. | +| color | System::Drawing::Color | Filling color. | +## Remarks + + + + + + pageIndex + + + Index of the page. + + + + + rect + + + Area rectangle. + + + + + color + + + Filling color. + + + +## See Also + +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [PdfAnnotationEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfbookmarkeditor/_index.md b/english/cpp/aspose.pdf.facades/pdfbookmarkeditor/_index.md new file mode 100644 index 0000000000..37b2531dcf --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfbookmarkeditor/_index.md @@ -0,0 +1,56 @@ +--- +title: Aspose::Pdf::Facades::PdfBookmarkEditor class +linktitle: PdfBookmarkEditor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfBookmarkEditor class. Represents a class to work with PDF file''s bookmarks including create, modify, export, import and delete in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf.facades/pdfbookmarkeditor/ +--- +## PdfBookmarkEditor class + + +Represents a class to work with PDF file's bookmarks including create, modify, export, import and delete. + +```cpp +class PdfBookmarkEditor : public Aspose::Pdf::Facades::SaveableFacade +``` + +## Methods + +| Method | Description | +| --- | --- | +| [BindPdf](../facade/bindpdf/)(System::String) override | Initializes the facade. | +| [BindPdf](../facade/bindpdf/)(System::SharedPtr\) override | Initializes the facade. | +| [BindPdf](../facade/bindpdf/)(System::SharedPtr\) override | Initializes the facade. | +| virtual [BindPdf](../ifacade/bindpdf/)(System::SharedPtr\) | Binds PDF document for editing. | +| [Close](../facade/close/)() override | Disposes [Aspose.Pdf.Document](../../aspose.pdf/document/) bound with a facade. | +| [CreateBookmarkOfPage](./createbookmarkofpage/)(System::String, int32_t) | Creates bookmark for the specified page. | +| [CreateBookmarkOfPage](./createbookmarkofpage/)(System::ArrayPtr\, System::ArrayPtr\) | Creates bookmarks for the specified pages. | +| [CreateBookmarks](./createbookmarks/)() | Creates bookmarks for all pages. | +| [CreateBookmarks](./createbookmarks/)(System::SharedPtr\) | Creates the specified bookmark in the document. The method can be used for forming nested bookmarks hierarchy. | +| [CreateBookmarks](./createbookmarks/)(System::Drawing::Color, bool, bool) | Create bookmarks for all pages with specified color and style (bold, italic). | +| [DeleteBookmarks](./deletebookmarks/)() | Deletes all bookmarks of the PDF document. | +| [DeleteBookmarks](./deletebookmarks/)(System::String) | Deletes the bookmark of the PDF document. | +| [Dispose](../facade/dispose/)() override | Disposes the facade. | +| static [ExportBookmarksToHtml](./exportbookmarkstohtml/)(System::String, System::String) | Exports bookmarks to HTML file. | +| [ExportBookmarksToXML](./exportbookmarkstoxml/)(System::String) | Exports bookmarks to XML file. | +| [ExportBookmarksToXML](./exportbookmarkstoxml/)(System::SharedPtr\) | Exports bookmarks to XML stream. | +| [ExtractBookmarks](./extractbookmarks/)() | Extracts bookmarks of all levels from the document. | +| [ExtractBookmarks](./extractbookmarks/)(bool) | Extracts bookmarks of all levels from the document. | +| [ExtractBookmarks](./extractbookmarks/)(System::String) | Extracts the bookmarks with the specified title. | +| [ExtractBookmarks](./extractbookmarks/)(System::SharedPtr\) | Extracts the children of a bookmark with a title like in specified bookamrk. | +| [ExtractBookmarksToHTML](./extractbookmarkstohtml/)(System::String, System::String) | Exports bookmarks to HTML file. | +| [get_Document](../facade/get_document/)() const | Gets the document facade is working on. | +| [ImportBookmarksWithXML](./importbookmarkswithxml/)(System::String) | Imports bookmarks to the document from XML file. | +| [ImportBookmarksWithXML](./importbookmarkswithxml/)(System::SharedPtr\) | Imports bookmarks to the document from XML file. | +| [ModifyBookmarks](./modifybookmarks/)(System::String, System::String) | Modifys bookmark title according to the specified bookmark title. | +| [PdfBookmarkEditor](./pdfbookmarkeditor/)() | Initializes new [PdfBookmarkEditor](./) object. | +| [PdfBookmarkEditor](./pdfbookmarkeditor/)(System::SharedPtr\) | Initializes new [PdfBookmarkEditor](./) object on base of the *document* . | +| [Save](../saveablefacade/save/)(System::String) override | Saves the PDF document to the specified file. | +| [Save](../saveablefacade/save/)(System::SharedPtr\) override | Saves the PDF document to the specified stream. | +## See Also + +* Class [SaveableFacade](../saveablefacade/) +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/pdfbookmarkeditor/createbookmarkofpage/_index.md b/english/cpp/aspose.pdf.facades/pdfbookmarkeditor/createbookmarkofpage/_index.md new file mode 100644 index 0000000000..c9e3e49be6 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfbookmarkeditor/createbookmarkofpage/_index.md @@ -0,0 +1,91 @@ +--- +title: Aspose::Pdf::Facades::PdfBookmarkEditor::CreateBookmarkOfPage method +linktitle: CreateBookmarkOfPage +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfBookmarkEditor::CreateBookmarkOfPage method. Creates bookmark for the specified page in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.facades/pdfbookmarkeditor/createbookmarkofpage/ +--- +## PdfBookmarkEditor::CreateBookmarkOfPage(System::String, int32_t) method + + +Creates bookmark for the specified page. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfBookmarkEditor::CreateBookmarkOfPage(System::String bookmarkName, int32_t pageNumber) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| bookmarkName | System::String | The specified bookmark name. | +| pageNumber | int32_t | The specified desination page. | +## Remarks + + + + + + bookmarkName + + + The specified bookmark name. + + + + + pageNumber + + + The specified desination page. + + + +## See Also + +* Class [PdfBookmarkEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfBookmarkEditor::CreateBookmarkOfPage(System::ArrayPtr\, System::ArrayPtr\) method + + +Creates bookmarks for the specified pages. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfBookmarkEditor::CreateBookmarkOfPage(System::ArrayPtr bookmarkName, System::ArrayPtr pageNumber) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| bookmarkName | System::ArrayPtr\ | [Bookmarks](../../bookmarks/) title array. | +| pageNumber | System::ArrayPtr\ | [Bookmarks](../../bookmarks/) desination page array. | +## Remarks + + + + + + bookmarkName + + + + Bookmarks title array. + + + + + pageNumber + + + + Bookmarks desination page array. + + + +## See Also + +* Class [PdfBookmarkEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfbookmarkeditor/createbookmarks/_index.md b/english/cpp/aspose.pdf.facades/pdfbookmarkeditor/createbookmarks/_index.md new file mode 100644 index 0000000000..6e70c17bd4 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfbookmarkeditor/createbookmarks/_index.md @@ -0,0 +1,104 @@ +--- +title: Aspose::Pdf::Facades::PdfBookmarkEditor::CreateBookmarks method +linktitle: CreateBookmarks +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfBookmarkEditor::CreateBookmarks method. Creates bookmarks for all pages in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.facades/pdfbookmarkeditor/createbookmarks/ +--- +## PdfBookmarkEditor::CreateBookmarks() method + + +Creates bookmarks for all pages. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfBookmarkEditor::CreateBookmarks() +``` + +## See Also + +* Class [PdfBookmarkEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfBookmarkEditor::CreateBookmarks(System::SharedPtr\) method + + +Creates the specified bookmark in the document. The method can be used for forming nested bookmarks hierarchy. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfBookmarkEditor::CreateBookmarks(System::SharedPtr bookmark) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| bookmark | System::SharedPtr\ | The bookmark will be added to the document. | +## Remarks + + + + + + bookmark + + + The bookmark will be added to the document. + + + +## See Also + +* Class [Bookmark](../../bookmark/) +* Class [PdfBookmarkEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfBookmarkEditor::CreateBookmarks(System::Drawing::Color, bool, bool) method + + +Create bookmarks for all pages with specified color and style (bold, italic). + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfBookmarkEditor::CreateBookmarks(System::Drawing::Color color, bool boldFlag, bool italicFlag) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| color | System::Drawing::Color | The color of title. | +| boldFlag | bool | The flag of bold attribution. | +| italicFlag | bool | The flag of italic attribution. | +## Remarks + + + + + + color + + + The color of title. + + + + + boldFlag + + + The flag of bold attribution. + + + + + italicFlag + + + The flag of italic attribution. + + + +## See Also + +* Class [PdfBookmarkEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfbookmarkeditor/deletebookmarks/_index.md b/english/cpp/aspose.pdf.facades/pdfbookmarkeditor/deletebookmarks/_index.md new file mode 100644 index 0000000000..db56700168 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfbookmarkeditor/deletebookmarks/_index.md @@ -0,0 +1,54 @@ +--- +title: Aspose::Pdf::Facades::PdfBookmarkEditor::DeleteBookmarks method +linktitle: DeleteBookmarks +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfBookmarkEditor::DeleteBookmarks method. Deletes all bookmarks of the PDF document in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.facades/pdfbookmarkeditor/deletebookmarks/ +--- +## PdfBookmarkEditor::DeleteBookmarks() method + + +Deletes all bookmarks of the PDF document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfBookmarkEditor::DeleteBookmarks() +``` + +## See Also + +* Class [PdfBookmarkEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfBookmarkEditor::DeleteBookmarks(System::String) method + + +Deletes the bookmark of the PDF document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfBookmarkEditor::DeleteBookmarks(System::String title) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| title | System::String | The title of bookmark deleted. | +## Remarks + + + + + + title + + + The title of bookmark deleted. + + + +## See Also + +* Class [PdfBookmarkEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfbookmarkeditor/exportbookmarkstohtml/_index.md b/english/cpp/aspose.pdf.facades/pdfbookmarkeditor/exportbookmarkstohtml/_index.md new file mode 100644 index 0000000000..78512a86d2 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfbookmarkeditor/exportbookmarkstohtml/_index.md @@ -0,0 +1,49 @@ +--- +title: Aspose::Pdf::Facades::PdfBookmarkEditor::ExportBookmarksToHtml method +linktitle: ExportBookmarksToHtml +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfBookmarkEditor::ExportBookmarksToHtml method. Exports bookmarks to HTML file in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.facades/pdfbookmarkeditor/exportbookmarkstohtml/ +--- +## PdfBookmarkEditor::ExportBookmarksToHtml method + + +Exports bookmarks to HTML file. + +```cpp +static ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfBookmarkEditor::ExportBookmarksToHtml(System::String inPdfFile, System::String outHtmlFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inPdfFile | System::String | Input PDF file which bookmarks will be exported. | +| outHtmlFile | System::String | Output HTML file | +## Remarks + + + + + + inPdfFile + + + Input PDF file which bookmarks will be exported. + + + + + outHtmlFile + + + Output HTML file + + + +## See Also + +* Class [PdfBookmarkEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfbookmarkeditor/exportbookmarkstoxml/_index.md b/english/cpp/aspose.pdf.facades/pdfbookmarkeditor/exportbookmarkstoxml/_index.md new file mode 100644 index 0000000000..f660824047 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfbookmarkeditor/exportbookmarkstoxml/_index.md @@ -0,0 +1,71 @@ +--- +title: Aspose::Pdf::Facades::PdfBookmarkEditor::ExportBookmarksToXML method +linktitle: ExportBookmarksToXML +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfBookmarkEditor::ExportBookmarksToXML method. Exports bookmarks to XML file in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.facades/pdfbookmarkeditor/exportbookmarkstoxml/ +--- +## PdfBookmarkEditor::ExportBookmarksToXML(System::String) method + + +Exports bookmarks to XML file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfBookmarkEditor::ExportBookmarksToXML(System::String xmlFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| xmlFile | System::String | The output XML file. | +## Remarks + + + + + + xmlFile + + + The output XML file. + + + +## See Also + +* Class [PdfBookmarkEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfBookmarkEditor::ExportBookmarksToXML(System::SharedPtr\) method + + +Exports bookmarks to XML stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfBookmarkEditor::ExportBookmarksToXML(System::SharedPtr stream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| stream | System::SharedPtr\ | Output stream where data will be stored. | +## Remarks + + + + + + stream + + + Output stream where data will be stored. + + + +## See Also + +* Class [PdfBookmarkEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfbookmarkeditor/extractbookmarks/_index.md b/english/cpp/aspose.pdf.facades/pdfbookmarkeditor/extractbookmarks/_index.md new file mode 100644 index 0000000000..560c34f9f7 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfbookmarkeditor/extractbookmarks/_index.md @@ -0,0 +1,138 @@ +--- +title: Aspose::Pdf::Facades::PdfBookmarkEditor::ExtractBookmarks method +linktitle: ExtractBookmarks +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfBookmarkEditor::ExtractBookmarks method. Extracts bookmarks of all levels from the document in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.facades/pdfbookmarkeditor/extractbookmarks/ +--- +## PdfBookmarkEditor::ExtractBookmarks() method + + +Extracts bookmarks of all levels from the document. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::PdfBookmarkEditor::ExtractBookmarks() +``` + + +### ReturnValue + +The bookmarks collection of all bookmarks that exist in the document. + +## See Also + +* Class [Bookmarks](../../bookmarks/) +* Class [PdfBookmarkEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfBookmarkEditor::ExtractBookmarks(bool) method + + +Extracts bookmarks of all levels from the document. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::PdfBookmarkEditor::ExtractBookmarks(bool upperLevel) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| upperLevel | bool | If true, extracts only upper level bookmarks. Else, extracts all bookmarks recursively. | + +### ReturnValue + +List of extracted bookmarks. +## Remarks + + + + + + upperLevel + + + If true, extracts only upper level bookmarks. Else, extracts all bookmarks recursively. + + + +## See Also + +* Class [Bookmarks](../../bookmarks/) +* Class [PdfBookmarkEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfBookmarkEditor::ExtractBookmarks(System::String) method + + +Extracts the bookmarks with the specified title. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::PdfBookmarkEditor::ExtractBookmarks(System::String title) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| title | System::String | Extracted item title. | + +### ReturnValue + +[Bookmark](../../bookmark/) collection has items with the same title. +## Remarks + + + + + + title + + + Extracted item title. + + + +## See Also + +* Class [Bookmarks](../../bookmarks/) +* Class [PdfBookmarkEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfBookmarkEditor::ExtractBookmarks(System::SharedPtr\) method + + +Extracts the children of a bookmark with a title like in specified bookamrk. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::PdfBookmarkEditor::ExtractBookmarks(System::SharedPtr bookmark) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| bookmark | System::SharedPtr\ | The specified bookamrk. | + +### ReturnValue + +[Bookmark](../../bookmark/) collection with child bookmarks. +## Remarks + + + + + + bookmark + + + The specified bookamrk. + + + +## See Also + +* Class [Bookmarks](../../bookmarks/) +* Class [Bookmark](../../bookmark/) +* Class [PdfBookmarkEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfbookmarkeditor/extractbookmarkstohtml/_index.md b/english/cpp/aspose.pdf.facades/pdfbookmarkeditor/extractbookmarkstohtml/_index.md new file mode 100644 index 0000000000..5257659d86 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfbookmarkeditor/extractbookmarkstohtml/_index.md @@ -0,0 +1,54 @@ +--- +title: Aspose::Pdf::Facades::PdfBookmarkEditor::ExtractBookmarksToHTML method +linktitle: ExtractBookmarksToHTML +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfBookmarkEditor::ExtractBookmarksToHTML method. Exports bookmarks to HTML file in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.facades/pdfbookmarkeditor/extractbookmarkstohtml/ +--- +## PdfBookmarkEditor::ExtractBookmarksToHTML method + + +Exports bookmarks to HTML file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfBookmarkEditor::ExtractBookmarksToHTML(System::String pdfFile, System::String cssFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pdfFile | System::String | The PDF file which bookmarks will be exported. | +| cssFile | System::String | The CSS file to display HTML file, can be null. | +## Remarks + + + + Deprecated + + Use PdfBookmarkEditor.ExportBookmarksToHtml instead. + + + + + pdfFile + + + The PDF file which bookmarks will be exported. + + + + + cssFile + + + The CSS file to display HTML file, can be null. + + + +## See Also + +* Class [PdfBookmarkEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfbookmarkeditor/importbookmarkswithxml/_index.md b/english/cpp/aspose.pdf.facades/pdfbookmarkeditor/importbookmarkswithxml/_index.md new file mode 100644 index 0000000000..e7999a1505 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfbookmarkeditor/importbookmarkswithxml/_index.md @@ -0,0 +1,71 @@ +--- +title: Aspose::Pdf::Facades::PdfBookmarkEditor::ImportBookmarksWithXML method +linktitle: ImportBookmarksWithXML +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfBookmarkEditor::ImportBookmarksWithXML method. Imports bookmarks to the document from XML file in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.facades/pdfbookmarkeditor/importbookmarkswithxml/ +--- +## PdfBookmarkEditor::ImportBookmarksWithXML(System::String) method + + +Imports bookmarks to the document from XML file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfBookmarkEditor::ImportBookmarksWithXML(System::String xmlFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| xmlFile | System::String | The XML file containing bookmarks list. | +## Remarks + + + + + + xmlFile + + + The XML file containing bookmarks list. + + + +## See Also + +* Class [PdfBookmarkEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfBookmarkEditor::ImportBookmarksWithXML(System::SharedPtr\) method + + +Imports bookmarks to the document from XML file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfBookmarkEditor::ImportBookmarksWithXML(System::SharedPtr stream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| stream | System::SharedPtr\ | Stream with bookmarks data. | +## Remarks + + + + + + stream + + + Stream with bookmarks data. + + + +## See Also + +* Class [PdfBookmarkEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfbookmarkeditor/modifybookmarks/_index.md b/english/cpp/aspose.pdf.facades/pdfbookmarkeditor/modifybookmarks/_index.md new file mode 100644 index 0000000000..711211b861 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfbookmarkeditor/modifybookmarks/_index.md @@ -0,0 +1,49 @@ +--- +title: Aspose::Pdf::Facades::PdfBookmarkEditor::ModifyBookmarks method +linktitle: ModifyBookmarks +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfBookmarkEditor::ModifyBookmarks method. Modifys bookmark title according to the specified bookmark title in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.facades/pdfbookmarkeditor/modifybookmarks/ +--- +## PdfBookmarkEditor::ModifyBookmarks method + + +Modifys bookmark title according to the specified bookmark title. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfBookmarkEditor::ModifyBookmarks(System::String sTitle, System::String dTitle) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| sTitle | System::String | Source bookmark title. | +| dTitle | System::String | Modified bookmark title. | +## Remarks + + + + + + sTitle + + + Source bookmark title. + + + + + dTitle + + + Modified bookmark title. + + + +## See Also + +* Class [PdfBookmarkEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfbookmarkeditor/pdfbookmarkeditor/_index.md b/english/cpp/aspose.pdf.facades/pdfbookmarkeditor/pdfbookmarkeditor/_index.md new file mode 100644 index 0000000000..f842d52c75 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfbookmarkeditor/pdfbookmarkeditor/_index.md @@ -0,0 +1,56 @@ +--- +title: Aspose::Pdf::Facades::PdfBookmarkEditor::PdfBookmarkEditor constructor +linktitle: PdfBookmarkEditor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfBookmarkEditor::PdfBookmarkEditor constructor. Initializes new PdfBookmarkEditor object in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.facades/pdfbookmarkeditor/pdfbookmarkeditor/ +--- +## PdfBookmarkEditor::PdfBookmarkEditor() constructor + + +Initializes new [PdfBookmarkEditor](../) object. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfBookmarkEditor::PdfBookmarkEditor() +``` + +## See Also + +* Class [PdfBookmarkEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfBookmarkEditor::PdfBookmarkEditor(System::SharedPtr\) constructor + + +Initializes new [PdfBookmarkEditor](../) object on base of the *document* . + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfBookmarkEditor::PdfBookmarkEditor(System::SharedPtr document) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | [Pdf](../../../aspose.pdf/) document. | +## Remarks + + + + + + document + + + + Pdf document. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [PdfBookmarkEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/_index.md new file mode 100644 index 0000000000..334bdaeb0d --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/_index.md @@ -0,0 +1,116 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor class +linktitle: PdfContentEditor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor class. Represents a class to edit PDF file''s content in C++.' +type: docs +weight: 1700 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/ +--- +## PdfContentEditor class + + +Represents a class to edit PDF file's content. + +```cpp +class PdfContentEditor : public Aspose::Pdf::Facades::SaveableFacade +``` + +## Methods + +| Method | Description | +| --- | --- | +| [AddDocumentAdditionalAction](./adddocumentadditionalaction/)(System::String, System::String) | Adds additional action for document event. | +| [AddDocumentAttachment](./adddocumentattachment/)(System::String, System::String) | Adds document attachment with no annotation. | +| [AddDocumentAttachment](./adddocumentattachment/)(System::SharedPtr\, System::String, System::String) | Adds document attachment with no annotation. | +| [BindPdf](./bindpdf/)(System::String) override | Binds a PDF file for editing. | +| [BindPdf](./bindpdf/)(System::SharedPtr\) override | Binds a PDF stream for editing. | +| [BindPdf](../facade/bindpdf/)(System::SharedPtr\) override | Initializes the facade. | +| virtual [BindPdf](../ifacade/bindpdf/)(System::SharedPtr\) | Binds PDF document for editing. | +| [ChangeViewerPreference](./changeviewerpreference/)(int32_t) | Changes the view preference. | +| [Close](./close/)() override | Closes opened document. | +| [CreateApplicationLink](./createapplicationlink/)(System::Drawing::Rectangle, System::String, int32_t, System::Drawing::Color, System::ArrayPtr\\>) | Creates a link to launch an application in PDF document. | +| [CreateApplicationLink](./createapplicationlink/)(System::Drawing::Rectangle, System::String, int32_t, System::Drawing::Color) | Creates a link to launch an application in PDF document. | +| [CreateApplicationLink](./createapplicationlink/)(System::Drawing::Rectangle, System::String, int32_t) | Creates a link to launch an application in PDF document. | +| [CreateBookmarksAction](./createbookmarksaction/)(System::String, System::Drawing::Color, bool, bool, System::String, System::String, System::String) | Creates a bookmark with the specified action. | +| [CreateCaret](./createcaret/)(int32_t, System::Drawing::Rectangle, System::Drawing::Rectangle, System::String, System::String, System::Drawing::Color) | Creates caret annotation. | +| [CreateCustomActionLink](./createcustomactionlink/)(System::Drawing::Rectangle, int32_t, System::Drawing::Color, System::ArrayPtr\\>) | Creates a link to custom actions in PDF document. | +| [CreateFileAttachment](./createfileattachment/)(System::Drawing::Rectangle, System::String, System::String, int32_t, System::String) | Creates file attachment annotation. | +| [CreateFileAttachment](./createfileattachment/)(System::Drawing::Rectangle, System::String, System::String, int32_t, System::String, double) | Creates file attachment annotation. | +| [CreateFileAttachment](./createfileattachment/)(System::Drawing::Rectangle, System::String, System::SharedPtr\, System::String, int32_t, System::String) | Creates file attachment annotation. | +| [CreateFileAttachment](./createfileattachment/)(System::Drawing::Rectangle, System::String, System::SharedPtr\, System::String, int32_t, System::String, double) | Creates file attachment annotation. | +| [CreateFreeText](./createfreetext/)(System::Drawing::Rectangle, System::String, int32_t) | Creates free text annotation in PDF document. | +| [CreateJavaScriptLink](./createjavascriptlink/)(System::String, System::Drawing::Rectangle, int32_t, System::Drawing::Color) | Creates a link to JavaScript in PDF document. | +| [CreateLine](./createline/)(System::Drawing::Rectangle, System::String, float, float, float, float, int32_t, int32_t, System::Drawing::Color, System::String, System::ArrayPtr\, System::ArrayPtr\) | Creates line annotation. | +| [CreateLocalLink](./createlocallink/)(System::Drawing::Rectangle, int32_t, int32_t, System::Drawing::Color, System::ArrayPtr\\>) | Creates a local link in PDF document. | +| [CreateLocalLink](./createlocallink/)(System::Drawing::Rectangle, int32_t, int32_t, System::Drawing::Color) | Creates a local link in PDF document. | +| [CreateLocalLink](./createlocallink/)(System::Drawing::Rectangle, int32_t, int32_t) | Creates a local link in PDF document. | +| [CreateMarkup](./createmarkup/)(System::Drawing::Rectangle, System::String, int32_t, int32_t, System::Drawing::Color) | Creates markup annotation it PDF document. | +| [CreateMovie](./createmovie/)(System::Drawing::Rectangle, System::String, int32_t) | Creates Movie [Annotations](../../aspose.pdf.annotations/). | +| [CreatePdfDocumentLink](./createpdfdocumentlink/)(System::Drawing::Rectangle, System::String, int32_t, int32_t, System::Drawing::Color, System::ArrayPtr\\>) | Creates a link to another PDF document page. | +| [CreatePdfDocumentLink](./createpdfdocumentlink/)(System::Drawing::Rectangle, System::String, int32_t, int32_t, System::Drawing::Color) | Creates a link to another PDF document page. | +| [CreatePdfDocumentLink](./createpdfdocumentlink/)(System::Drawing::Rectangle, System::String, int32_t, int32_t) | Creates a link to another PDF document page. | +| [CreatePolygon](./createpolygon/)(System::SharedPtr\, int32_t, System::Drawing::Rectangle, System::String) | Creates polygon annotation. | +| [CreatePolyLine](./createpolyline/)(System::SharedPtr\, int32_t, System::Drawing::Rectangle, System::String) | Creates polyline annotation. | +| [CreatePopup](./createpopup/)(System::Drawing::Rectangle, System::String, bool, int32_t) | Creates popup annotation in PDF document. | +| [CreateRubberStamp](./createrubberstamp/)(int32_t, System::Drawing::Rectangle, System::String, System::String, System::Drawing::Color) | Creates a rubber stamp annotation. | +| [CreateRubberStamp](./createrubberstamp/)(int32_t, System::Drawing::Rectangle, System::String, System::Drawing::Color, System::String) | Creates a rubber stamp annotation. | +| [CreateRubberStamp](./createrubberstamp/)(int32_t, System::Drawing::Rectangle, System::String, System::Drawing::Color, System::SharedPtr\) | Creates a rubber stamp annotation. | +| [CreateSound](./createsound/)(System::Drawing::Rectangle, System::String, System::String, int32_t, System::String) | Creates Sound [Annotations](../../aspose.pdf.annotations/). | +| [CreateSquareCircle](./createsquarecircle/)(System::Drawing::Rectangle, System::String, System::Drawing::Color, bool, int32_t, int32_t) | Creates square-circle annotation. | +| [CreateText](./createtext/)(System::Drawing::Rectangle, System::String, System::String, bool, System::String, int32_t) | Creates text annotation in PDF document. | +| [CreateWebLink](./createweblink/)(System::Drawing::Rectangle, System::String, int32_t, System::Drawing::Color, System::ArrayPtr\\>) | Creates a web link in PDF document. | +| [CreateWebLink](./createweblink/)(System::Drawing::Rectangle, System::String, int32_t, System::Drawing::Color) | Creates a web link in PDF document. | +| [CreateWebLink](./createweblink/)(System::Drawing::Rectangle, System::String, int32_t) | Creates a web link in PDF document. | +| [DeleteAttachments](./deleteattachments/)() | Deletes all attachments in PDF document. | +| [DeleteImage](./deleteimage/)(int32_t, System::ArrayPtr\) | Deletes the specified images on the specified page. | +| [DeleteImage](./deleteimage/)() | Deletes all images from PDF document. | +| [DeleteStamp](./deletestamp/)(int32_t, System::ArrayPtr\) | Deletes multiple stamps on the specified page by stamp indexes. | +| [DeleteStampById](./deletestampbyid/)(int32_t, int32_t) | Deletes stamp on the specified page by stamp ID. | +| [DeleteStampById](./deletestampbyid/)(int32_t) | Delete stamp by ID from all pages of the document. | +| [DeleteStampByIds](./deletestampbyids/)(System::ArrayPtr\) | Deletes stamps with specified IDs from all pages of the document. | +| [DeleteStampByIds](./deletestampbyids/)(int32_t, System::ArrayPtr\) | Deletes stamps on the specified page by multiple stamp IDs. | +| [Dispose](../facade/dispose/)() override | Disposes the facade. | +| [DrawCurve](./drawcurve/)(System::SharedPtr\, int32_t, System::Drawing::Rectangle, System::String) | Creates curve annotation. | +| [ExtractLink](./extractlink/)() | Extracts the collection of Link instances contained in PDF document. | +| [get_Document](../facade/get_document/)() const | Gets the document facade is working on. | +| [get_ReplaceTextStrategy](./get_replacetextstrategy/)() const | A set of parameters for replace text operation. | +| [get_TextEditOptions](./get_texteditoptions/)() const | Gets text edit options. | +| [get_TextReplaceOptions](./get_textreplaceoptions/)() const | Gets text replace options. | +| [get_TextSearchOptions](./get_textsearchoptions/)() const | Gets text search options. | +| [GetStamps](./getstamps/)(int32_t) | Returns array of stamps on the page. | +| [GetViewerPreference](./getviewerpreference/)() | Returns the view preference. | +| [HideStampById](./hidestampbyid/)(int32_t, int32_t) | Hides the stamp. After hiding, stamp visibility may be restored with ShowStampById method. | +| [MoveStamp](./movestamp/)(int32_t, int32_t, double, double) | Changes position of the stamp on page. | +| [MoveStampById](./movestampbyid/)(int32_t, int32_t, double, double) | Changes position of the stamp on page. | +| [PdfContentEditor](./pdfcontenteditor/)() | The constructor of the [PdfContentEditor](./) object. | +| [PdfContentEditor](./pdfcontenteditor/)(System::SharedPtr\) | Initializes new [PdfContentEditor](./) object on base of the *document* . | +| [RemoveDocumentOpenAction](./removedocumentopenaction/)() | Removes open action from the document. This operation is useful when concatenating multiple documents that use explicit 'GoTo' action on startup. | +| [ReplaceImage](./replaceimage/)(int32_t, int32_t, System::String) | Replaces the specified image on the specified page of PDF document with another image. | +| [ReplaceText](./replacetext/)(System::String, int32_t, System::String, System::SharedPtr\) | Replaces text in the PDF file on the specified page. [TextState](../) object (font family, color) can be specified to replaced text. | +| [ReplaceText](./replacetext/)(System::String, System::String) | Replaces text in the PDF file. | +| [ReplaceText](./replacetext/)(System::String, int32_t, System::String) | Replaces text in the PDF file on the specified page. | +| [ReplaceText](./replacetext/)(System::String, System::String, System::SharedPtr\) | Replaces text in the PDF file using specified [TextState](../) object. | +| [ReplaceText](./replacetext/)(System::String, System::String, int32_t) | Replaces text in the PDF file and sets font size. | +| [Save](../saveablefacade/save/)(System::String) override | Saves the PDF document to the specified file. | +| [Save](../saveablefacade/save/)(System::SharedPtr\) override | Saves the PDF document to the specified stream. | +| [set_ReplaceTextStrategy](./set_replacetextstrategy/)(System::SharedPtr\) | A set of parameters for replace text operation. | +| [set_TextEditOptions](./set_texteditoptions/)(System::SharedPtr\) | Sets text edit options. | +| [set_TextReplaceOptions](./set_textreplaceoptions/)(System::SharedPtr\) | Sets text replace options. | +| [set_TextSearchOptions](./set_textsearchoptions/)(System::SharedPtr\) | Sets text search options. | +| [ShowStampById](./showstampbyid/)(int32_t, int32_t) | Shows stamp which was hidden by HiddenStampById. | +## Fields + +| Field | Description | +| --- | --- | +| static [DocumentClose](./documentclose/) | A document event type. Closes a document. | +| static [DocumentOpen](./documentopen/) | A document event type. Opens a document. | +| static [DocumentPrinted](./documentprinted/) | A document event type. Excute a action after printing. | +| static [DocumentSaved](./documentsaved/) | A document event type. Excute a action after saving. | +| static [DocumentWillPrint](./documentwillprint/) | A document event type. Excute a action before printing. | +| static [DocumentWillSave](./documentwillsave/) | A document event type. Excute a action before saving. | +## See Also + +* Class [SaveableFacade](../saveablefacade/) +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/adddocumentadditionalaction/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/adddocumentadditionalaction/_index.md new file mode 100644 index 0000000000..42c4d36060 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/adddocumentadditionalaction/_index.md @@ -0,0 +1,49 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::AddDocumentAdditionalAction method +linktitle: AddDocumentAdditionalAction +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::AddDocumentAdditionalAction method. Adds additional action for document event in C++.' +type: docs +weight: 3200 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/adddocumentadditionalaction/ +--- +## PdfContentEditor::AddDocumentAdditionalAction method + + +Adds additional action for document event. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::AddDocumentAdditionalAction(System::String eventType, System::String code) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| eventType | System::String | The document event types. | +| code | System::String | The code of JavaScript. | +## Remarks + + + + + + eventType + + + The document event types. + + + + + code + + + The code of JavaScript. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/adddocumentattachment/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/adddocumentattachment/_index.md new file mode 100644 index 0000000000..ef600a539f --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/adddocumentattachment/_index.md @@ -0,0 +1,100 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::AddDocumentAttachment method +linktitle: AddDocumentAttachment +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::AddDocumentAttachment method. Adds document attachment with no annotation in C++.' +type: docs +weight: 2200 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/adddocumentattachment/ +--- +## PdfContentEditor::AddDocumentAttachment(System::String, System::String) method + + +Adds document attachment with no annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::AddDocumentAttachment(System::String fileAttachmentPath, System::String description) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fileAttachmentPath | System::String | The path of the file will be attached. | +| description | System::String | The description information. | +## Remarks + + + + + + fileAttachmentPath + + + The path of the file will be attached. + + + + + description + + + The description information. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfContentEditor::AddDocumentAttachment(System::SharedPtr\, System::String, System::String) method + + +Adds document attachment with no annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::AddDocumentAttachment(System::SharedPtr fileAttachmentStream, System::String fileAttachmentName, System::String description) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fileAttachmentStream | System::SharedPtr\ | The stream of the file will be attached. | +| fileAttachmentName | System::String | The attachment name. | +| description | System::String | The description information. | +## Remarks + + + + + + fileAttachmentStream + + + The stream of the file will be attached. + + + + + fileAttachmentName + + + The attachment name. + + + + + + + description + + + The description information. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/bindpdf/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/bindpdf/_index.md new file mode 100644 index 0000000000..ba01de8476 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/bindpdf/_index.md @@ -0,0 +1,71 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::BindPdf method +linktitle: BindPdf +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::BindPdf method. Binds a PDF file for editing in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/bindpdf/ +--- +## PdfContentEditor::BindPdf(System::String) method + + +Binds a PDF file for editing. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::BindPdf(System::String inputFile) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | A PDF file to be edited. | +## Remarks + + + + + + inputFile + + + A PDF file to be edited. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfContentEditor::BindPdf(System::SharedPtr\) method + + +Binds a PDF stream for editing. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::BindPdf(System::SharedPtr inputStream) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | A PDF stream to be edited. | +## Remarks + + + + + + inputStream + + + A PDF stream to be edited. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/changeviewerpreference/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/changeviewerpreference/_index.md new file mode 100644 index 0000000000..816d011c55 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/changeviewerpreference/_index.md @@ -0,0 +1,40 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::ChangeViewerPreference method +linktitle: ChangeViewerPreference +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::ChangeViewerPreference method. Changes the view preference in C++.' +type: docs +weight: 3400 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/changeviewerpreference/ +--- +## PdfContentEditor::ChangeViewerPreference method + + +Changes the view preference. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::ChangeViewerPreference(int32_t viewerAttribution) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| viewerAttribution | int32_t | The view attribution defined in the [ViewerPreference](../../viewerpreference/) class. | +## Remarks + + + + + + viewerAttribution + + + The view attribution defined in the ViewerPreference class. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/close/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/close/_index.md new file mode 100644 index 0000000000..4394b8ecff --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/close/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::Close method +linktitle: Close +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::Close method. Closes opened document in C++.' +type: docs +weight: 5000 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/close/ +--- +## PdfContentEditor::Close method + + +Closes opened document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::Close() override +``` + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/createapplicationlink/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/createapplicationlink/_index.md new file mode 100644 index 0000000000..f6649def0b --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/createapplicationlink/_index.md @@ -0,0 +1,184 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::CreateApplicationLink method +linktitle: CreateApplicationLink +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::CreateApplicationLink method. Creates a link to launch an application in PDF document in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/createapplicationlink/ +--- +## PdfContentEditor::CreateApplicationLink(System::Drawing::Rectangle, System::String, int32_t, System::Drawing::Color, System::ArrayPtr\\>) method + + +Creates a link to launch an application in PDF document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::CreateApplicationLink(System::Drawing::Rectangle rect, System::String application, int32_t page, System::Drawing::Color clr, System::ArrayPtr> actionName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| rect | System::Drawing::Rectangle | The rectangle for active click. | +| application | System::String | The path of application to be launched. | +| page | int32_t | The number of original page where rectangle bound with link will be created. | +| clr | System::Drawing::Color | The colour of rectangle for active click. | +| actionName | System::ArrayPtr\\> | The array of actions (members of PredefinedAction enum) corresponding to executing menu items in Acrobat viewer. | +## Remarks + + + + + + rect + + + The rectangle for active click. + + + + + application + + + The path of application to be launched. + + + + + page + + + The number of original page where rectangle bound with link will be created. + + + + + clr + + + The colour of rectangle for active click. + + + + + actionName + + + The array of actions (members of PredefinedAction enum) corresponding to executing menu items in Acrobat viewer. + + + +/// +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfContentEditor::CreateApplicationLink(System::Drawing::Rectangle, System::String, int32_t, System::Drawing::Color) method + + +Creates a link to launch an application in PDF document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::CreateApplicationLink(System::Drawing::Rectangle rect, System::String application, int32_t page, System::Drawing::Color clr) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| rect | System::Drawing::Rectangle | The rectangle for active click. | +| application | System::String | The path of application to be launched. | +| page | int32_t | The number of original page where rectangle bound with link will be created. | +| clr | System::Drawing::Color | The colour of rectangle for active click. | +## Remarks + + + + + + rect + + + The rectangle for active click. + + + + + application + + + The path of application to be launched. + + + + + page + + + The number of original page where rectangle bound with link will be created. + + + + + clr + + + The colour of rectangle for active click. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfContentEditor::CreateApplicationLink(System::Drawing::Rectangle, System::String, int32_t) method + + +Creates a link to launch an application in PDF document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::CreateApplicationLink(System::Drawing::Rectangle rect, System::String application, int32_t page) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| rect | System::Drawing::Rectangle | The rectangle for active click. | +| application | System::String | The path of application to be launched. | +| page | int32_t | The number of original page where rectangle bound with link will be created. | +## Remarks + + + + + + rect + + + The rectangle for active click. + + + + + application + + + The path of application to be launched. + + + + + page + + + The number of original page where rectangle bound with link will be created. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/createbookmarksaction/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/createbookmarksaction/_index.md new file mode 100644 index 0000000000..90c95238cc --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/createbookmarksaction/_index.md @@ -0,0 +1,94 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::CreateBookmarksAction method +linktitle: CreateBookmarksAction +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::CreateBookmarksAction method. Creates a bookmark with the specified action in C++.' +type: docs +weight: 3100 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/createbookmarksaction/ +--- +## PdfContentEditor::CreateBookmarksAction method + + +Creates a bookmark with the specified action. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::CreateBookmarksAction(System::String title, System::Drawing::Color color, bool boldFlag, bool italicFlag, System::String file, System::String actionType, System::String destination) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| title | System::String | The title of the bookmark. | +| color | System::Drawing::Color | The colour of the bookmark's title. | +| boldFlag | bool | The flag of bold attribution. | +| italicFlag | bool | The flag of italic attribution. | +| file | System::String | Another file or application required when the action type is "GoToR" or "Launch". | +| actionType | System::String | The action type. The value can be: "GoToR", "Launch", "GoTo", "URI". | +| destination | System::String | The local destination or remote destination or URL. | +## Remarks + + + + + + title + + + The title of the bookmark. + + + + + color + + + The colour of the bookmark's title. + + + + + boldFlag + + + The flag of bold attribution. + + + + + italicFlag + + + The flag of italic attribution. + + + + + file + + + Another file or application required when the action type is "GoToR" or "Launch". + + + + + actionType + + + The action type. The value can be: "GoToR", "Launch", "GoTo", "URI". + + + + + destination + + + The local destination or remote destination or URL. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/createcaret/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/createcaret/_index.md new file mode 100644 index 0000000000..99eb33ae1a --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/createcaret/_index.md @@ -0,0 +1,88 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::CreateCaret method +linktitle: CreateCaret +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::CreateCaret method. Creates caret annotation in C++.' +type: docs +weight: 2900 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/createcaret/ +--- +## PdfContentEditor::CreateCaret method + + +Creates caret annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::CreateCaret(int32_t page, System::Drawing::Rectangle annotRect, System::Drawing::Rectangle caretRect, System::String symbol, System::String annotContents, System::Drawing::Color color) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | int32_t | The number of original page where the annotation will be created. | +| annotRect | System::Drawing::Rectangle | The annotation rectangle defining the location of the annotation on the page. | +| caretRect | System::Drawing::Rectangle | The actual boundaries of the underlying caret. | +| symbol | System::String | A symbol will be associated with the caret. Value can be: "P" (Paragraph), "None". | +| annotContents | System::String | The contents of the annotation. | +| color | System::Drawing::Color | The color of the annotation. | +## Remarks + + + + + + page + + + The number of original page where the annotation will be created. + + + + + annotRect + + + The annotation rectangle defining the location of the annotation on the page. + + + + + caretRect + + + The actual boundaries of the underlying caret. + + + + + symbol + + + A symbol will be associated with the caret. Value can be: "P" (Paragraph), "None". + + + + + annotContents + + + The contents of the annotation. + + + + + color + + + The color of the annotation. + + + + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/createcustomactionlink/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/createcustomactionlink/_index.md new file mode 100644 index 0000000000..e1b837b4a8 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/createcustomactionlink/_index.md @@ -0,0 +1,68 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::CreateCustomActionLink method +linktitle: CreateCustomActionLink +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::CreateCustomActionLink method. Creates a link to custom actions in PDF document in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/createcustomactionlink/ +--- +## PdfContentEditor::CreateCustomActionLink method + + +Creates a link to custom actions in PDF document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::CreateCustomActionLink(System::Drawing::Rectangle rect, int32_t originalPage, System::Drawing::Color color, System::ArrayPtr> actionName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| rect | System::Drawing::Rectangle | The rectangle for active click. | +| originalPage | int32_t | The number of original page where rectangle bound with link will be created. | +| color | System::Drawing::Color | The colour of rectangle for active click. | +| actionName | System::ArrayPtr\\> | The array of actions (members of PredefinedAction enum) corresponding to executing menu items in Acrobat viewer. | +## Remarks + + + + + + rect + + + The rectangle for active click. + + + + + originalPage + + + The number of original page where rectangle bound with link will be created. + + + + + color + + + The colour of rectangle for active click. + + + + + actionName + + + The array of actions (members of PredefinedAction enum) corresponding to executing menu items in Acrobat viewer. + + + +/// +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/createfileattachment/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/createfileattachment/_index.md new file mode 100644 index 0000000000..ba249fd322 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/createfileattachment/_index.md @@ -0,0 +1,313 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::CreateFileAttachment method +linktitle: CreateFileAttachment +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::CreateFileAttachment method. Creates file attachment annotation in C++.' +type: docs +weight: 2100 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/createfileattachment/ +--- +## PdfContentEditor::CreateFileAttachment(System::Drawing::Rectangle, System::String, System::String, int32_t, System::String) method + + +Creates file attachment annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::CreateFileAttachment(System::Drawing::Rectangle rect, System::String contents, System::String filePath, int32_t page, System::String name) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| rect | System::Drawing::Rectangle | The annotation rectangle defining the location of the annotation on the page. | +| contents | System::String | The contents of the annotation. | +| filePath | System::String | The path of the file will be attached. | +| page | int32_t | The number of original page where the annotation will be created. | +| name | System::String | The name of an icon will be used in displaying the annotation. This value can be: "Graph", "PushPin", "Paperclip", "Tag". | +## Remarks + + + + + + rect + + + The annotation rectangle defining the location of the annotation on the page. + + + + + contents + + + The contents of the annotation. + + + + + filePath + + + The path of the file will be attached. + + + + + page + + + The number of original page where the annotation will be created. + + + + + name + + + The name of an icon will be used in displaying the annotation. This value can be: "Graph", "PushPin", "Paperclip", "Tag". + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfContentEditor::CreateFileAttachment(System::Drawing::Rectangle, System::String, System::String, int32_t, System::String, double) method + + +Creates file attachment annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::CreateFileAttachment(System::Drawing::Rectangle rect, System::String contents, System::String filePath, int32_t page, System::String name, double opacity) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| rect | System::Drawing::Rectangle | The annotation rectangle defining the location of the annotation on the page. | +| contents | System::String | The contents of the annotation. | +| filePath | System::String | The path of the file will be attached. | +| page | int32_t | The number of original page where the annotation will be created. | +| name | System::String | The name of an icon will be used in displaying the annotation. This value can be: "Graph", "PushPin", "Paperclip", "Tag". | +| opacity | double | Icon's opacity from 0 to 1: 0 - completely transparant, 1 - completely opaque. | +## Remarks + + + + + + rect + + + The annotation rectangle defining the location of the annotation on the page. + + + + + contents + + + The contents of the annotation. + + + + + filePath + + + The path of the file will be attached. + + + + + page + + + The number of original page where the annotation will be created. + + + + + name + + + The name of an icon will be used in displaying the annotation. This value can be: "Graph", "PushPin", "Paperclip", "Tag". + + + + + opacity + + + Icon's opacity from 0 to 1: 0 - completely transparant, 1 - completely opaque. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfContentEditor::CreateFileAttachment(System::Drawing::Rectangle, System::String, System::SharedPtr\, System::String, int32_t, System::String) method + + +Creates file attachment annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::CreateFileAttachment(System::Drawing::Rectangle rect, System::String contents, System::SharedPtr attachmentStream, System::String attachmentName, int32_t page, System::String name) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| rect | System::Drawing::Rectangle | The annotation rectangle defining the location of the annotation on the page. | +| contents | System::String | The contents of the annotation. | +| attachmentStream | System::SharedPtr\ | The attachment file stream. | +| attachmentName | System::String | The attachment name. | +| page | int32_t | The number of original page where the annotation will be created. | +| name | System::String | The name of an icon will be used in displaying the annotation. This value can be: "Graph", "PushPin", "Paperclip", "Tag". | +## Remarks + + + + + + rect + + + The annotation rectangle defining the location of the annotation on the page. + + + + + contents + + + The contents of the annotation. + + + + + attachmentStream + + + The attachment file stream. + + + + + attachmentName + + + The attachment name. + + + + + page + + + The number of original page where the annotation will be created. + + + + + name + + + The name of an icon will be used in displaying the annotation. This value can be: "Graph", "PushPin", "Paperclip", "Tag". + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfContentEditor::CreateFileAttachment(System::Drawing::Rectangle, System::String, System::SharedPtr\, System::String, int32_t, System::String, double) method + + +Creates file attachment annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::CreateFileAttachment(System::Drawing::Rectangle rect, System::String contents, System::SharedPtr attachmentStream, System::String attachmentName, int32_t page, System::String name, double opacity) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| rect | System::Drawing::Rectangle | The annotation rectangle defining the location of the annotation on the page. | +| contents | System::String | The contents of the annotation. | +| attachmentStream | System::SharedPtr\ | The attachment file stream. | +| attachmentName | System::String | The attachment name. | +| page | int32_t | The number of original page where the annotation will be created. | +| name | System::String | The name of an icon will be used in displaying the annotation. This value can be: "Graph", "PushPin", "Paperclip", "Tag". | +| opacity | double | Icon's opacity from 0 to 1: 0 - completely transparant, 1 - completely opaque. | +## Remarks + + + + + + rect + + + The annotation rectangle defining the location of the annotation on the page. + + + + + contents + + + The contents of the annotation. + + + + + attachmentStream + + + The attachment file stream. + + + + + attachmentName + + + The attachment name. + + + + + page + + + The number of original page where the annotation will be created. + + + + + name + + + The name of an icon will be used in displaying the annotation. This value can be: "Graph", "PushPin", "Paperclip", "Tag". + + + + + opacity + + + Icon's opacity from 0 to 1: 0 - completely transparant, 1 - completely opaque. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/createfreetext/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/createfreetext/_index.md new file mode 100644 index 0000000000..8dccf94d15 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/createfreetext/_index.md @@ -0,0 +1,58 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::CreateFreeText method +linktitle: CreateFreeText +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::CreateFreeText method. Creates free text annotation in PDF document in C++.' +type: docs +weight: 1800 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/createfreetext/ +--- +## PdfContentEditor::CreateFreeText method + + +Creates free text annotation in PDF document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::CreateFreeText(System::Drawing::Rectangle rect, System::String contents, int32_t page) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| rect | System::Drawing::Rectangle | The annotation rectangle defining the location of the annotation on the page. | +| contents | System::String | The contents of the annotation. | +| page | int32_t | The number of original page where the text annotation will be created. | +## Remarks + + + + + + rect + + + The annotation rectangle defining the location of the annotation on the page. + + + + + contents + + + The contents of the annotation. + + + + + page + + + The number of original page where the text annotation will be created. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/createjavascriptlink/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/createjavascriptlink/_index.md new file mode 100644 index 0000000000..5130b4ef19 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/createjavascriptlink/_index.md @@ -0,0 +1,67 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::CreateJavaScriptLink method +linktitle: CreateJavaScriptLink +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::CreateJavaScriptLink method. Creates a link to JavaScript in PDF document in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/createjavascriptlink/ +--- +## PdfContentEditor::CreateJavaScriptLink method + + +Creates a link to JavaScript in PDF document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::CreateJavaScriptLink(System::String code, System::Drawing::Rectangle rect, int32_t originalPage, System::Drawing::Color color) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| code | System::String | The JavaScript code. | +| rect | System::Drawing::Rectangle | The rectangle for active click. | +| originalPage | int32_t | The number of original page where rectangle bound with link will be created. | +| color | System::Drawing::Color | The colour of rectangle for active click. | +## Remarks + + + + + + code + + + The JavaScript code. + + + + + rect + + + The rectangle for active click. + + + + + originalPage + + + The number of original page where rectangle bound with link will be created. + + + + + color + + + The colour of rectangle for active click. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/createline/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/createline/_index.md new file mode 100644 index 0000000000..5d3dc95c38 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/createline/_index.md @@ -0,0 +1,139 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::CreateLine method +linktitle: CreateLine +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::CreateLine method. Creates line annotation in C++.' +type: docs +weight: 2400 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/createline/ +--- +## PdfContentEditor::CreateLine method + + +Creates line annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::CreateLine(System::Drawing::Rectangle rect, System::String contents, float x1, float y1, float x2, float y2, int32_t page, int32_t border, System::Drawing::Color clr, System::String borderStyle, System::ArrayPtr dashArray, System::ArrayPtr LEArray) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| rect | System::Drawing::Rectangle | The annotation rectangle defining the location of the annotation on the page. | +| contents | System::String | The contents of the annotation. | +| x1 | float | The starting horizontal coordinate of the line. | +| y1 | float | The starting vertical coordinate of the line. | +| x2 | float | The ending horizontal coordinate of the line. | +| y2 | float | The ending vertical coordinate of the line. | +| page | int32_t | The number of original page where the annotation will be created. | +| border | int32_t | The border width in points. If this value is 0 no border is drawn. Default value is 1. | +| clr | System::Drawing::Color | The color of line. | +| borderStyle | System::String | The border style specifying the width and dash pattern to be used in drawing the line. This value can be: "S" (Solid), "D" (Dashed), "B" (Beveled), "I" (Inset), "U" (Underline). | +| dashArray | System::ArrayPtr\ | A dash array defining a pattern of dashes and gaps to be used in drawing a dashed border. If it is used, borderSyle must be accordingly set to "D". | +| LEArray | System::ArrayPtr\ | An array of two values respectively specifying the beginning and ending style of the drawing line. The values can be: "Square", "Circle", "Diamond", "OpenArrow", "ClosedArrow", "None", "Butt", "ROpenArrow", "RClosedArrow", "Slash". | +## Remarks + + + + + + rect + + + The annotation rectangle defining the location of the annotation on the page. + + + + + contents + + + The contents of the annotation. + + + + + x1 + + + The starting horizontal coordinate of the line. + + + + + y1 + + + The starting vertical coordinate of the line. + + + + + x2 + + + The ending horizontal coordinate of the line. + + + + + y2 + + + The ending vertical coordinate of the line. + + + + + page + + + The number of original page where the annotation will be created. + + + + + border + + + The border width in points. If this value is 0 no border is drawn. Default value is 1. + + + + + clr + + + The color of line. + + + + + borderStyle + + + The border style specifying the width and dash pattern to be used in drawing the line. This value can be: "S" (Solid), "D" (Dashed), "B" (Beveled), "I" (Inset), "U" (Underline). + + + + + dashArray + + + A dash array defining a pattern of dashes and gaps to be used in drawing a dashed border. If it is used, borderSyle must be accordingly set to "D". + + + + + LEArray + + + An array of two values respectively specifying the beginning and ending style of the drawing line. The values can be: "Square", "Circle", "Diamond", "OpenArrow", "ClosedArrow", "None", "Butt", "ROpenArrow", "RClosedArrow", "Slash". + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/createlocallink/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/createlocallink/_index.md new file mode 100644 index 0000000000..5b60c13401 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/createlocallink/_index.md @@ -0,0 +1,183 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::CreateLocalLink method +linktitle: CreateLocalLink +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::CreateLocalLink method. Creates a local link in PDF document in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/createlocallink/ +--- +## PdfContentEditor::CreateLocalLink(System::Drawing::Rectangle, int32_t, int32_t, System::Drawing::Color, System::ArrayPtr\\>) method + + +Creates a local link in PDF document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::CreateLocalLink(System::Drawing::Rectangle rect, int32_t desPage, int32_t originalPage, System::Drawing::Color clr, System::ArrayPtr> actionName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| rect | System::Drawing::Rectangle | The rectangle for active click. | +| desPage | int32_t | The destination page. | +| originalPage | int32_t | The number of original page where rectangle bound with local link will be created. | +| clr | System::Drawing::Color | The colour of rectangle for active click. | +| actionName | System::ArrayPtr\\> | The array of actions (members of PredefinedAction enum) corresponding to executing menu items in Acrobat viewer. | +## Remarks + + + + + + rect + + + The rectangle for active click. + + + + + desPage + + + The destination page. + + + + + originalPage + + + The number of original page where rectangle bound with local link will be created. + + + + + clr + + + The colour of rectangle for active click. + + + + + actionName + + + The array of actions (members of PredefinedAction enum) corresponding to executing menu items in Acrobat viewer. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfContentEditor::CreateLocalLink(System::Drawing::Rectangle, int32_t, int32_t, System::Drawing::Color) method + + +Creates a local link in PDF document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::CreateLocalLink(System::Drawing::Rectangle rect, int32_t desPage, int32_t originalPage, System::Drawing::Color clr) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| rect | System::Drawing::Rectangle | The rectangle for active click. | +| desPage | int32_t | The destination page. | +| originalPage | int32_t | The number of original page where rectangle bound with local link will be created. | +| clr | System::Drawing::Color | The colour of rectangle for active click. | +## Remarks + + + + + + rect + + + The rectangle for active click. + + + + + desPage + + + The destination page. + + + + + originalPage + + + The number of original page where rectangle bound with local link will be created. + + + + + clr + + + The colour of rectangle for active click. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfContentEditor::CreateLocalLink(System::Drawing::Rectangle, int32_t, int32_t) method + + +Creates a local link in PDF document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::CreateLocalLink(System::Drawing::Rectangle rect, int32_t desPage, int32_t originalPage) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| rect | System::Drawing::Rectangle | The rectangle for active click. | +| desPage | int32_t | The destination page. | +| originalPage | int32_t | The number of original page where rectangle bound with local link will be created. | +## Remarks + + + + + + rect + + + The rectangle for active click. + + + + + desPage + + + The destination page. + + + + + originalPage + + + The number of original page where rectangle bound with local link will be created. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/createmarkup/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/createmarkup/_index.md new file mode 100644 index 0000000000..34b3f45753 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/createmarkup/_index.md @@ -0,0 +1,76 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::CreateMarkup method +linktitle: CreateMarkup +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::CreateMarkup method. Creates markup annotation it PDF document in C++.' +type: docs +weight: 1900 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/createmarkup/ +--- +## PdfContentEditor::CreateMarkup method + + +Creates markup annotation it PDF document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::CreateMarkup(System::Drawing::Rectangle rect, System::String contents, int32_t type, int32_t page, System::Drawing::Color clr) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| rect | System::Drawing::Rectangle | The rectangle defining the location of the annotation on the page. | +| contents | System::String | The contents of the annotation. | +| type | int32_t | The type of markup annotation. Can be 0 (Highlight), 1 (Underline), 2 (StrikeOut), 3 (Squiggly). | +| page | int32_t | The number of original page where the annotation will be created. | +| clr | System::Drawing::Color | The color of markup. | +## Remarks + + + + + + rect + + + The rectangle defining the location of the annotation on the page. + + + + + contents + + + The contents of the annotation. + + + + + type + + + The type of markup annotation. Can be 0 (Highlight), 1 (Underline), 2 (StrikeOut), 3 (Squiggly). + + + + + page + + + The number of original page where the annotation will be created. + + + + + clr + + + The color of markup. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/createmovie/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/createmovie/_index.md new file mode 100644 index 0000000000..df4c78355d --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/createmovie/_index.md @@ -0,0 +1,58 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::CreateMovie method +linktitle: CreateMovie +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::CreateMovie method. Creates Movie Annotations in C++.' +type: docs +weight: 3900 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/createmovie/ +--- +## PdfContentEditor::CreateMovie method + + +Creates Movie [Annotations](../../../aspose.pdf.annotations/). + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::CreateMovie(System::Drawing::Rectangle rect, System::String filePath, int32_t page) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| rect | System::Drawing::Rectangle | The annotation rectangle defining the location of the annotation on the page. | +| filePath | System::String | The path of movie file to be played. | +| page | int32_t | The page in which the Line annotation is created. | +## Remarks + + + + + + rect + + + The annotation rectangle defining the location of the annotation on the page. + + + + + filePath + + + The path of movie file to be played. + + + + + page + + + The page in which the Line annotation is created. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/createpdfdocumentlink/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/createpdfdocumentlink/_index.md new file mode 100644 index 0000000000..670a9471cb --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/createpdfdocumentlink/_index.md @@ -0,0 +1,210 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::CreatePdfDocumentLink method +linktitle: CreatePdfDocumentLink +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::CreatePdfDocumentLink method. Creates a link to another PDF document page in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/createpdfdocumentlink/ +--- +## PdfContentEditor::CreatePdfDocumentLink(System::Drawing::Rectangle, System::String, int32_t, int32_t, System::Drawing::Color, System::ArrayPtr\\>) method + + +Creates a link to another PDF document page. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::CreatePdfDocumentLink(System::Drawing::Rectangle rect, System::String remotePdf, int32_t originalPage, int32_t destinationPage, System::Drawing::Color clr, System::ArrayPtr> actionName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| rect | System::Drawing::Rectangle | The rectangle for active click. | +| remotePdf | System::String | The PDF document which page will be opened. | +| originalPage | int32_t | The number of original page where rectangle bound with link will be created. | +| destinationPage | int32_t | The destination page. | +| clr | System::Drawing::Color | The colour of rectangle for active click. | +| actionName | System::ArrayPtr\\> | The array of actions (members of PredefinedAction enum) corresponding to executing menu items in Acrobat viewer. | +## Remarks + + + + + + rect + + + The rectangle for active click. + + + + + remotePdf + + + The PDF document which page will be opened. + + + + + originalPage + + + The number of original page where rectangle bound with link will be created. + + + + + destinationPage + + + The destination page. + + + + + clr + + + The colour of rectangle for active click. + + + + + actionName + + + The array of actions (members of PredefinedAction enum) corresponding to executing menu items in Acrobat viewer. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfContentEditor::CreatePdfDocumentLink(System::Drawing::Rectangle, System::String, int32_t, int32_t, System::Drawing::Color) method + + +Creates a link to another PDF document page. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::CreatePdfDocumentLink(System::Drawing::Rectangle rect, System::String remotePdf, int32_t originalPage, int32_t destinationPage, System::Drawing::Color clr) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| rect | System::Drawing::Rectangle | The rectangle for active click. | +| remotePdf | System::String | The PDF document which page will be opened. | +| originalPage | int32_t | The number of original page where rectangle bound with link will be created. | +| destinationPage | int32_t | The destination page. | +| clr | System::Drawing::Color | The colour of rectangle for active click. | +## Remarks + + + + + + rect + + + The rectangle for active click. + + + + + remotePdf + + + The PDF document which page will be opened. + + + + + originalPage + + + The number of original page where rectangle bound with link will be created. + + + + + destinationPage + + + The destination page. + + + + + clr + + + The colour of rectangle for active click. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfContentEditor::CreatePdfDocumentLink(System::Drawing::Rectangle, System::String, int32_t, int32_t) method + + +Creates a link to another PDF document page. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::CreatePdfDocumentLink(System::Drawing::Rectangle rect, System::String remotePdf, int32_t originalPage, int32_t destinationPage) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| rect | System::Drawing::Rectangle | The rectangle for active click. | +| remotePdf | System::String | The PDF document which page will be opened. | +| originalPage | int32_t | The number of original page where rectangle bound with link will be created. | +| destinationPage | int32_t | The destination page. | +## Remarks + + + + + + rect + + + The rectangle for active click. + + + + + remotePdf + + + The PDF document which page will be opened. + + + + + originalPage + + + The number of original page where rectangle bound with link will be created. + + + + + destinationPage + + + The destination page. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/createpolygon/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/createpolygon/_index.md new file mode 100644 index 0000000000..b0644c1b8a --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/createpolygon/_index.md @@ -0,0 +1,68 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::CreatePolygon method +linktitle: CreatePolygon +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::CreatePolygon method. Creates polygon annotation in C++.' +type: docs +weight: 2700 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/createpolygon/ +--- +## PdfContentEditor::CreatePolygon method + + +Creates polygon annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::CreatePolygon(System::SharedPtr lineInfo, int32_t page, System::Drawing::Rectangle annotRect, System::String annotContents) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| lineInfo | System::SharedPtr\ | The instance of [LineInfo](../../lineinfo/) class. | +| page | int32_t | The number of original page where the annotation will be created. | +| annotRect | System::Drawing::Rectangle | The annotation rectangle defining the location of the annotation on the page. | +| annotContents | System::String | The contents of the annotation. | +## Remarks + + + + + + lineInfo + + + The instance of LineInfo class. + + + + + page + + + The number of original page where the annotation will be created. + + + + + annotRect + + + The annotation rectangle defining the location of the annotation on the page. + + + + + annotContents + + + The contents of the annotation. + + + +## See Also + +* Class [LineInfo](../../lineinfo/) +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/createpolyline/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/createpolyline/_index.md new file mode 100644 index 0000000000..0836618bdd --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/createpolyline/_index.md @@ -0,0 +1,68 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::CreatePolyLine method +linktitle: CreatePolyLine +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::CreatePolyLine method. Creates polyline annotation in C++.' +type: docs +weight: 2800 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/createpolyline/ +--- +## PdfContentEditor::CreatePolyLine method + + +Creates polyline annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::CreatePolyLine(System::SharedPtr lineInfo, int32_t page, System::Drawing::Rectangle annotRect, System::String annotContents) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| lineInfo | System::SharedPtr\ | The instance of [LineInfo](../../lineinfo/) class. | +| page | int32_t | The number of original page where the annotation will be created. | +| annotRect | System::Drawing::Rectangle | The annotation rectangle defining the location of the annotation on the page. | +| annotContents | System::String | The contents of the annotation. | +## Remarks + + + + + + lineInfo + + + The instance of LineInfo class. + + + + + page + + + The number of original page where the annotation will be created. + + + + + annotRect + + + The annotation rectangle defining the location of the annotation on the page. + + + + + annotContents + + + The contents of the annotation. + + + +## See Also + +* Class [LineInfo](../../lineinfo/) +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/createpopup/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/createpopup/_index.md new file mode 100644 index 0000000000..6db5fbfab6 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/createpopup/_index.md @@ -0,0 +1,67 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::CreatePopup method +linktitle: CreatePopup +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::CreatePopup method. Creates popup annotation in PDF document in C++.' +type: docs +weight: 2000 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/createpopup/ +--- +## PdfContentEditor::CreatePopup method + + +Creates popup annotation in PDF document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::CreatePopup(System::Drawing::Rectangle rect, System::String contents, bool open, int32_t page) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| rect | System::Drawing::Rectangle | The annotation rectangle defining the location of the annotation on the page. | +| contents | System::String | The contents of the annotation. | +| open | bool | A flag specifying whether the pop-up annotation should initially be displayed open. | +| page | int32_t | The number of original page where the annotation will be created. | +## Remarks + + + + + + rect + + + The annotation rectangle defining the location of the annotation on the page. + + + + + contents + + + The contents of the annotation. + + + + + open + + + A flag specifying whether the pop-up annotation should initially be displayed open. + + + + + page + + + The number of original page where the annotation will be created. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/createrubberstamp/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/createrubberstamp/_index.md new file mode 100644 index 0000000000..1e1e5d4e3d --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/createrubberstamp/_index.md @@ -0,0 +1,210 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::CreateRubberStamp method +linktitle: CreateRubberStamp +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::CreateRubberStamp method. Creates a rubber stamp annotation in C++.' +type: docs +weight: 3000 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/createrubberstamp/ +--- +## PdfContentEditor::CreateRubberStamp(int32_t, System::Drawing::Rectangle, System::String, System::String, System::Drawing::Color) method + + +Creates a rubber stamp annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::CreateRubberStamp(int32_t page, System::Drawing::Rectangle annotRect, System::String icon, System::String annotContents, System::Drawing::Color color) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | int32_t | The number of original page where the annotation will be created. | +| annotRect | System::Drawing::Rectangle | The annotation rectangle defining the location of the annotation on the page. | +| icon | System::String | An icon is to be used in displaying the annotation. Default value: 'Draft'. | +| annotContents | System::String | The contents of the annotation. | +| color | System::Drawing::Color | The color of the annotation. | +## Remarks + + + + + + page + + + The number of original page where the annotation will be created. + + + + + annotRect + + + The annotation rectangle defining the location of the annotation on the page. + + + + + icon + + + An icon is to be used in displaying the annotation. Default value: 'Draft'. + + + + + annotContents + + + The contents of the annotation. + + + + + color + + + The color of the annotation. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfContentEditor::CreateRubberStamp(int32_t, System::Drawing::Rectangle, System::String, System::Drawing::Color, System::String) method + + +Creates a rubber stamp annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::CreateRubberStamp(int32_t page, System::Drawing::Rectangle annotRect, System::String annotContents, System::Drawing::Color color, System::String appearanceFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | int32_t | The number of original page where the annotation will be created. | +| annotRect | System::Drawing::Rectangle | The annotation rectangle defining the location of the annotation on the page. | +| annotContents | System::String | The contents of the annotation. | +| color | System::Drawing::Color | The colour of the annotation. | +| appearanceFile | System::String | The path of appearance file. | +## Remarks + + + + + + page + + + The number of original page where the annotation will be created. + + + + + annotRect + + + The annotation rectangle defining the location of the annotation on the page. + + + + + annotContents + + + The contents of the annotation. + + + + + color + + + The colour of the annotation. + + + + + appearanceFile + + + The path of appearance file. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfContentEditor::CreateRubberStamp(int32_t, System::Drawing::Rectangle, System::String, System::Drawing::Color, System::SharedPtr\) method + + +Creates a rubber stamp annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::CreateRubberStamp(int32_t page, System::Drawing::Rectangle annotRect, System::String annotContents, System::Drawing::Color color, System::SharedPtr appearanceStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | int32_t | The number of original page where the annotation will be created. | +| annotRect | System::Drawing::Rectangle | The annotation rectangle defining the location of the annotation on the page. | +| annotContents | System::String | The contents of the annotation. | +| color | System::Drawing::Color | The colour of the annotation. | +| appearanceStream | System::SharedPtr\ | The stream of appearance file. | +## Remarks + + + + + + page + + + The number of original page where the annotation will be created. + + + + + annotRect + + + The annotation rectangle defining the location of the annotation on the page. + + + + + annotContents + + + The contents of the annotation. + + + + + color + + + The colour of the annotation. + + + + + appearanceStream + + + The stream of appearance file. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/createsound/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/createsound/_index.md new file mode 100644 index 0000000000..0b201a40ba --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/createsound/_index.md @@ -0,0 +1,76 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::CreateSound method +linktitle: CreateSound +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::CreateSound method. Creates Sound Annotations in C++.' +type: docs +weight: 4000 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/createsound/ +--- +## PdfContentEditor::CreateSound method + + +Creates Sound [Annotations](../../../aspose.pdf.annotations/). + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::CreateSound(System::Drawing::Rectangle rect, System::String filePath, System::String name, int32_t page, System::String rate) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| rect | System::Drawing::Rectangle | The annotation rectangle defining the location of the annotation on the page. | +| filePath | System::String | The file path of sound file. | +| name | System::String | The name of an icon to be used in displaying the annotation,include:Speaker and Mic. | +| page | int32_t | The page in which the Sound annotation is created. | +| rate | System::String | The sampling rate, in samples per second. | +## Remarks + + + + + + rect + + + The annotation rectangle defining the location of the annotation on the page. + + + + + filePath + + + The file path of sound file. + + + + + name + + + The name of an icon to be used in displaying the annotation,include:Speaker and Mic. + + + + + page + + + The page in which the Sound annotation is created. + + + + + rate + + + The sampling rate, in samples per second. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/createsquarecircle/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/createsquarecircle/_index.md new file mode 100644 index 0000000000..aadffa7dfd --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/createsquarecircle/_index.md @@ -0,0 +1,85 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::CreateSquareCircle method +linktitle: CreateSquareCircle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::CreateSquareCircle method. Creates square-circle annotation in C++.' +type: docs +weight: 2500 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/createsquarecircle/ +--- +## PdfContentEditor::CreateSquareCircle method + + +Creates square-circle annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::CreateSquareCircle(System::Drawing::Rectangle rect, System::String contents, System::Drawing::Color clr, bool square, int32_t page, int32_t borderWidth) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| rect | System::Drawing::Rectangle | The annotation rectangle defining the location of the annotation on the page. | +| contents | System::String | The contents of the annotation. | +| clr | System::Drawing::Color | The colour of square or circle. | +| square | bool | True (square), false (sircle). | +| page | int32_t | The number of original page where the annotation will be created. | +| borderWidth | int32_t | The border width of square or circle. | +## Remarks + + + + + + rect + + + The annotation rectangle defining the location of the annotation on the page. + + + + + contents + + + The contents of the annotation. + + + + + clr + + + The colour of square or circle. + + + + + square + + + True (square), false (sircle). + + + + + page + + + The number of original page where the annotation will be created. + + + + + borderWidth + + + The border width of square or circle. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/createtext/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/createtext/_index.md new file mode 100644 index 0000000000..45cc1ea9f3 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/createtext/_index.md @@ -0,0 +1,85 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::CreateText method +linktitle: CreateText +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::CreateText method. Creates text annotation in PDF document in C++.' +type: docs +weight: 1700 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/createtext/ +--- +## PdfContentEditor::CreateText method + + +Creates text annotation in PDF document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::CreateText(System::Drawing::Rectangle rect, System::String title, System::String contents, bool open, System::String icon, int32_t page) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| rect | System::Drawing::Rectangle | The annotation rectangle defining the location of the annotation on the page. | +| title | System::String | The title of the annotation. | +| contents | System::String | The contents of the annotation. | +| open | bool | A flag specifying whether the annotation should initially be displayed open. | +| icon | System::String | The name of an icon will be used in displaying the annotation. This value can be: "Comment", "Key", "Note", "Help", "NewParagraph", "Paragraph", "Insert" | +| page | int32_t | The number of original page where the text annotation will be created. | +## Remarks + + + + + + rect + + + The annotation rectangle defining the location of the annotation on the page. + + + + + title + + + The title of the annotation. + + + + + contents + + + The contents of the annotation. + + + + + open + + + A flag specifying whether the annotation should initially be displayed open. + + + + + icon + + + The name of an icon will be used in displaying the annotation. This value can be: "Comment", "Key", "Note", "Help", "NewParagraph", "Paragraph", "Insert" + + + + + page + + + The number of original page where the text annotation will be created. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/createweblink/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/createweblink/_index.md new file mode 100644 index 0000000000..718221def9 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/createweblink/_index.md @@ -0,0 +1,183 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::CreateWebLink method +linktitle: CreateWebLink +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::CreateWebLink method. Creates a web link in PDF document in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/createweblink/ +--- +## PdfContentEditor::CreateWebLink(System::Drawing::Rectangle, System::String, int32_t, System::Drawing::Color, System::ArrayPtr\\>) method + + +Creates a web link in PDF document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::CreateWebLink(System::Drawing::Rectangle rect, System::String url, int32_t originalPage, System::Drawing::Color clr, System::ArrayPtr> actionName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| rect | System::Drawing::Rectangle | The rectangle for active click. | +| url | System::String | The web link destination. | +| originalPage | int32_t | The number of original page on which rectangle bound with web link will be created. | +| clr | System::Drawing::Color | The colour of rectangle for active click. | +| actionName | System::ArrayPtr\\> | The array of actions (members of PredefinedAction enum) corresponding to executing menu items in Acrobat viewer. | +## Remarks + + + + + + rect + + + The rectangle for active click. + + + + + url + + + The web link destination. + + + + + originalPage + + + The number of original page on which rectangle bound with web link will be created. + + + + + clr + + + The colour of rectangle for active click. + + + + + actionName + + + The array of actions (members of PredefinedAction enum) corresponding to executing menu items in Acrobat viewer. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfContentEditor::CreateWebLink(System::Drawing::Rectangle, System::String, int32_t, System::Drawing::Color) method + + +Creates a web link in PDF document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::CreateWebLink(System::Drawing::Rectangle rect, System::String url, int32_t originalPage, System::Drawing::Color clr) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| rect | System::Drawing::Rectangle | The rectangle for active click. | +| url | System::String | The web link destination. | +| originalPage | int32_t | The number of original page where rectangle bound with web link will be created. | +| clr | System::Drawing::Color | The colour of rectangle for active click. | +## Remarks + + + + + + rect + + + The rectangle for active click. + + + + + url + + + The web link destination. + + + + + originalPage + + + The number of original page where rectangle bound with web link will be created. + + + + + clr + + + The colour of rectangle for active click. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfContentEditor::CreateWebLink(System::Drawing::Rectangle, System::String, int32_t) method + + +Creates a web link in PDF document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::CreateWebLink(System::Drawing::Rectangle rect, System::String url, int32_t originalPage) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| rect | System::Drawing::Rectangle | The rectangle for active click. | +| url | System::String | The web link destination. | +| originalPage | int32_t | The number of original page where rectangle bound with web link will be created. | +## Remarks + + + + + + rect + + + The rectangle for active click. + + + + + url + + + The web link destination. + + + + + originalPage + + + The number of original page where rectangle bound with web link will be created. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/deleteattachments/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/deleteattachments/_index.md new file mode 100644 index 0000000000..4c106efd6b --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/deleteattachments/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::DeleteAttachments method +linktitle: DeleteAttachments +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::DeleteAttachments method. Deletes all attachments in PDF document in C++.' +type: docs +weight: 2300 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/deleteattachments/ +--- +## PdfContentEditor::DeleteAttachments method + + +Deletes all attachments in PDF document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::DeleteAttachments() +``` + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/deleteimage/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/deleteimage/_index.md new file mode 100644 index 0000000000..f7482ce7d7 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/deleteimage/_index.md @@ -0,0 +1,63 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::DeleteImage method +linktitle: DeleteImage +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::DeleteImage method. Deletes the specified images on the specified page in C++.' +type: docs +weight: 3700 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/deleteimage/ +--- +## PdfContentEditor::DeleteImage(int32_t, System::ArrayPtr\) method + + +Deletes the specified images on the specified page. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::DeleteImage(int32_t pageNumber, System::ArrayPtr index) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageNumber | int32_t | The number of page on which images must be deleted. | +| index | System::ArrayPtr\ | An array repsents images' indexes. | +## Remarks + + + + + + pageNumber + + + The number of page on which images must be deleted. + + + + + index + + + An array repsents images' indexes. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfContentEditor::DeleteImage() method + + +Deletes all images from PDF document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::DeleteImage() +``` + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/deletestamp/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/deletestamp/_index.md new file mode 100644 index 0000000000..0c6207d69e --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/deletestamp/_index.md @@ -0,0 +1,51 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::DeleteStamp method +linktitle: DeleteStamp +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::DeleteStamp method. Deletes multiple stamps on the specified page by stamp indexes in C++.' +type: docs +weight: 4100 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/deletestamp/ +--- +## PdfContentEditor::DeleteStamp method + + +Deletes multiple stamps on the specified page by stamp indexes. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::DeleteStamp(int32_t pageNumber, System::ArrayPtr index) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageNumber | int32_t | [Page](../../../aspose.pdf/page/) number where stamp will be deleted. | +| index | System::ArrayPtr\ | [Stamp](../../stamp/) indexes. | +## Remarks + + + + + + pageNumber + + + + Page number where stamp will be deleted. + + + + + index + + + + Stamp indexes. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/deletestampbyid/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/deletestampbyid/_index.md new file mode 100644 index 0000000000..1cfe482661 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/deletestampbyid/_index.md @@ -0,0 +1,84 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::DeleteStampById method +linktitle: DeleteStampById +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::DeleteStampById method. Deletes stamp on the specified page by stamp ID in C++.' +type: docs +weight: 4300 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/deletestampbyid/ +--- +## PdfContentEditor::DeleteStampById(int32_t, int32_t) method + + +Deletes stamp on the specified page by stamp ID. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::DeleteStampById(int32_t pageNumber, int32_t stampId) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageNumber | int32_t | [Page](../../../aspose.pdf/page/) number where stamp will be deleted. | +| stampId | int32_t | Identifier of stanp which should be deleted. | +## Remarks + + + + + + pageNumber + + + + Page number where stamp will be deleted. + + + + + stampId + + + Identifier of stanp which should be deleted. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfContentEditor::DeleteStampById(int32_t) method + + +Delete stamp by ID from all pages of the document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::DeleteStampById(int32_t stampId) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| stampId | int32_t | Identifier of stamp which should be deleted. | +## Remarks + + + + + + stampId + + + Identifier of stamp which should be deleted. + + + + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/deletestampbyids/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/deletestampbyids/_index.md new file mode 100644 index 0000000000..2d369f316c --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/deletestampbyids/_index.md @@ -0,0 +1,81 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::DeleteStampByIds method +linktitle: DeleteStampByIds +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::DeleteStampByIds method. Deletes stamps with specified IDs from all pages of the document in C++.' +type: docs +weight: 4200 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/deletestampbyids/ +--- +## PdfContentEditor::DeleteStampByIds(System::ArrayPtr\) method + + +Deletes stamps with specified IDs from all pages of the document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::DeleteStampByIds(System::ArrayPtr stampIds) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| stampIds | System::ArrayPtr\ | Array of stamp IDs. | +## Remarks + + + + + + stampIds + + + Array of stamp IDs. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfContentEditor::DeleteStampByIds(int32_t, System::ArrayPtr\) method + + +Deletes stamps on the specified page by multiple stamp IDs. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::DeleteStampByIds(int32_t pageNumber, System::ArrayPtr stampIds) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageNumber | int32_t | [Page](../../../aspose.pdf/page/) number where stamps will be deleted. | +| stampIds | System::ArrayPtr\ | Array of stamp IDs. | +## Remarks + + + + + + pageNumber + + + + Page number where stamps will be deleted. + + + + + stampIds + + + Array of stamp IDs. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/documentclose/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/documentclose/_index.md new file mode 100644 index 0000000000..d305013045 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/documentclose/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::DocumentClose field +linktitle: DocumentClose +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::DocumentClose field. A document event type. Closes a document in C++.' +type: docs +weight: 5200 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/documentclose/ +--- +## DocumentClose field + + +A document event type. Closes a document. + +```cpp +static const ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::PdfContentEditor::DocumentClose +``` + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/documentopen/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/documentopen/_index.md new file mode 100644 index 0000000000..b52723a94c --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/documentopen/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::DocumentOpen field +linktitle: DocumentOpen +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::DocumentOpen field. A document event type. Opens a document in C++.' +type: docs +weight: 5100 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/documentopen/ +--- +## DocumentOpen field + + +A document event type. Opens a document. + +```cpp +static const ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::PdfContentEditor::DocumentOpen +``` + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/documentprinted/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/documentprinted/_index.md new file mode 100644 index 0000000000..84c2b4fcce --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/documentprinted/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::DocumentPrinted field +linktitle: DocumentPrinted +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::DocumentPrinted field. A document event type. Excute a action after printing in C++.' +type: docs +weight: 5600 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/documentprinted/ +--- +## DocumentPrinted field + + +A document event type. Excute a action after printing. + +```cpp +static const ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::PdfContentEditor::DocumentPrinted +``` + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/documentsaved/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/documentsaved/_index.md new file mode 100644 index 0000000000..3f42c08269 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/documentsaved/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::DocumentSaved field +linktitle: DocumentSaved +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::DocumentSaved field. A document event type. Excute a action after saving in C++.' +type: docs +weight: 5400 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/documentsaved/ +--- +## DocumentSaved field + + +A document event type. Excute a action after saving. + +```cpp +static const ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::PdfContentEditor::DocumentSaved +``` + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/documentwillprint/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/documentwillprint/_index.md new file mode 100644 index 0000000000..c58539dda9 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/documentwillprint/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::DocumentWillPrint field +linktitle: DocumentWillPrint +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::DocumentWillPrint field. A document event type. Excute a action before printing in C++.' +type: docs +weight: 5500 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/documentwillprint/ +--- +## DocumentWillPrint field + + +A document event type. Excute a action before printing. + +```cpp +static const ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::PdfContentEditor::DocumentWillPrint +``` + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/documentwillsave/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/documentwillsave/_index.md new file mode 100644 index 0000000000..c21ad763b1 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/documentwillsave/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::DocumentWillSave field +linktitle: DocumentWillSave +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::DocumentWillSave field. A document event type. Excute a action before saving in C++.' +type: docs +weight: 5300 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/documentwillsave/ +--- +## DocumentWillSave field + + +A document event type. Excute a action before saving. + +```cpp +static const ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::PdfContentEditor::DocumentWillSave +``` + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/drawcurve/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/drawcurve/_index.md new file mode 100644 index 0000000000..ae036ab62a --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/drawcurve/_index.md @@ -0,0 +1,68 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::DrawCurve method +linktitle: DrawCurve +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::DrawCurve method. Creates curve annotation in C++.' +type: docs +weight: 2600 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/drawcurve/ +--- +## PdfContentEditor::DrawCurve method + + +Creates curve annotation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::DrawCurve(System::SharedPtr lineInfo, int32_t page, System::Drawing::Rectangle annotRect, System::String annotContents) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| lineInfo | System::SharedPtr\ | The instance of [LineInfo](../../lineinfo/) class. | +| page | int32_t | The number of original page where the annotation will be created. | +| annotRect | System::Drawing::Rectangle | The annotation rectangle defining the location of the annotation on the page. | +| annotContents | System::String | The contents of the annotation. | +## Remarks + + + + + + lineInfo + + + The instance of LineInfo class. + + + + + page + + + The number of original page where the annotation will be created. + + + + + annotRect + + + The annotation rectangle defining the location of the annotation on the page. + + + + + annotContents + + + The contents of the annotation. + + + +## See Also + +* Class [LineInfo](../../lineinfo/) +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/extractlink/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/extractlink/_index.md new file mode 100644 index 0000000000..b755f26c06 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/extractlink/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::ExtractLink method +linktitle: ExtractLink +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::ExtractLink method. Extracts the collection of Link instances contained in PDF document in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/extractlink/ +--- +## PdfContentEditor::ExtractLink method + + +Extracts the collection of Link instances contained in PDF document. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr>> Aspose::Pdf::Facades::PdfContentEditor::ExtractLink() +``` + + +### ReturnValue + +The collection of Link objects + +## See Also + +* Class [Annotation](../../../aspose.pdf.annotations/annotation/) +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/get_replacetextstrategy/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/get_replacetextstrategy/_index.md new file mode 100644 index 0000000000..18c2c26c7f --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/get_replacetextstrategy/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::get_ReplaceTextStrategy method +linktitle: get_ReplaceTextStrategy +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::get_ReplaceTextStrategy method. A set of parameters for replace text operation in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/get_replacetextstrategy/ +--- +## PdfContentEditor::get_ReplaceTextStrategy method + + +A set of parameters for replace text operation. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::PdfContentEditor::get_ReplaceTextStrategy() const +``` + +## See Also + +* Class [ReplaceTextStrategy](../../replacetextstrategy/) +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/get_texteditoptions/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/get_texteditoptions/_index.md new file mode 100644 index 0000000000..c258297408 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/get_texteditoptions/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::get_TextEditOptions method +linktitle: get_TextEditOptions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::get_TextEditOptions method. Gets text edit options in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/get_texteditoptions/ +--- +## PdfContentEditor::get_TextEditOptions method + + +Gets text edit options. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::PdfContentEditor::get_TextEditOptions() const +``` + +## See Also + +* Class [TextEditOptions](../../../aspose.pdf.text/texteditoptions/) +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/get_textreplaceoptions/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/get_textreplaceoptions/_index.md new file mode 100644 index 0000000000..a55429def2 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/get_textreplaceoptions/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::get_TextReplaceOptions method +linktitle: get_TextReplaceOptions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::get_TextReplaceOptions method. Gets text replace options in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/get_textreplaceoptions/ +--- +## PdfContentEditor::get_TextReplaceOptions method + + +Gets text replace options. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::PdfContentEditor::get_TextReplaceOptions() const +``` + +## See Also + +* Class [TextReplaceOptions](../../../aspose.pdf.text/textreplaceoptions/) +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/get_textsearchoptions/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/get_textsearchoptions/_index.md new file mode 100644 index 0000000000..8d0bb20fef --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/get_textsearchoptions/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::get_TextSearchOptions method +linktitle: get_TextSearchOptions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::get_TextSearchOptions method. Gets text search options in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/get_textsearchoptions/ +--- +## PdfContentEditor::get_TextSearchOptions method + + +Gets text search options. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::PdfContentEditor::get_TextSearchOptions() const +``` + +## See Also + +* Class [TextSearchOptions](../../../aspose.pdf.text/textsearchoptions/) +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/getstamps/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/getstamps/_index.md new file mode 100644 index 0000000000..10c999864a --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/getstamps/_index.md @@ -0,0 +1,46 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::GetStamps method +linktitle: GetStamps +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::GetStamps method. Returns array of stamps on the page in C++.' +type: docs +weight: 4900 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/getstamps/ +--- +## PdfContentEditor::GetStamps method + + +Returns array of stamps on the page. + +```cpp +ASPOSE_PDF_SHARED_API System::ArrayPtr> Aspose::Pdf::Facades::PdfContentEditor::GetStamps(int32_t pageNumber) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageNumber | int32_t | [Page](../../../aspose.pdf/page/) number where stamps will be searched. | + +### ReturnValue + +Array of stamps. +## Remarks + + + + + + pageNumber + + + + Page number where stamps will be searched. + + + +## See Also + +* Class [StampInfo](../../stampinfo/) +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/getviewerpreference/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/getviewerpreference/_index.md new file mode 100644 index 0000000000..2ff01398c0 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/getviewerpreference/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::GetViewerPreference method +linktitle: GetViewerPreference +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::GetViewerPreference method. Returns the view preference in C++.' +type: docs +weight: 3500 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/getviewerpreference/ +--- +## PdfContentEditor::GetViewerPreference method + + +Returns the view preference. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfContentEditor::GetViewerPreference() +``` + + +### ReturnValue + +Returns set of ViewerPrefernece flags + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/hidestampbyid/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/hidestampbyid/_index.md new file mode 100644 index 0000000000..0a6199d873 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/hidestampbyid/_index.md @@ -0,0 +1,49 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::HideStampById method +linktitle: HideStampById +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::HideStampById method. Hides the stamp. After hiding, stamp visibility may be restored with ShowStampById method in C++.' +type: docs +weight: 4400 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/hidestampbyid/ +--- +## PdfContentEditor::HideStampById method + + +Hides the stamp. After hiding, stamp visibility may be restored with ShowStampById method. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::HideStampById(int32_t pageNumber, int32_t stampId) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageNumber | int32_t | Number of the page. | +| stampId | int32_t | Identifier of stamp which should be hidden. | +## Remarks + + + + + + pageNumber + + + Number of the page. + + + + + stampId + + + Identifier of stamp which should be hidden. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/movestamp/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/movestamp/_index.md new file mode 100644 index 0000000000..20ea121a12 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/movestamp/_index.md @@ -0,0 +1,67 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::MoveStamp method +linktitle: MoveStamp +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::MoveStamp method. Changes position of the stamp on page in C++.' +type: docs +weight: 4700 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/movestamp/ +--- +## PdfContentEditor::MoveStamp method + + +Changes position of the stamp on page. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::MoveStamp(int32_t pageNumber, int32_t stampIndex, double x, double y) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageNumber | int32_t | Number of page. | +| stampIndex | int32_t | Index of stamp on the page. | +| x | double | New stamp horizontal position. | +| y | double | New stamp vertical position. | +## Remarks + + + + + + pageNumber + + + Number of page. + + + + + stampIndex + + + Index of stamp on the page. + + + + + x + + + New stamp horizontal position. + + + + + y + + + New stamp vertical position. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/movestampbyid/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/movestampbyid/_index.md new file mode 100644 index 0000000000..003ef90b80 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/movestampbyid/_index.md @@ -0,0 +1,67 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::MoveStampById method +linktitle: MoveStampById +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::MoveStampById method. Changes position of the stamp on page in C++.' +type: docs +weight: 4600 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/movestampbyid/ +--- +## PdfContentEditor::MoveStampById method + + +Changes position of the stamp on page. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::MoveStampById(int32_t pageNumber, int32_t stampId, double x, double y) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageNumber | int32_t | Numer of page. | +| stampId | int32_t | Identifier of stamp which should be moved. | +| x | double | New stamp horizontal pozition on the page. | +| y | double | New stamp vertical position on the page. | +## Remarks + + + + + + pageNumber + + + Numer of page. + + + + + stampId + + + Identifier of stamp which should be moved. + + + + + x + + + New stamp horizontal pozition on the page. + + + + + y + + + New stamp vertical position on the page. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/pdfcontenteditor/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/pdfcontenteditor/_index.md new file mode 100644 index 0000000000..804739e842 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/pdfcontenteditor/_index.md @@ -0,0 +1,56 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::PdfContentEditor constructor +linktitle: PdfContentEditor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::PdfContentEditor constructor. The constructor of the PdfContentEditor object in C++.' +type: docs +weight: 4800 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/pdfcontenteditor/ +--- +## PdfContentEditor::PdfContentEditor() constructor + + +The constructor of the [PdfContentEditor](../) object. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfContentEditor::PdfContentEditor() +``` + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfContentEditor::PdfContentEditor(System::SharedPtr\) constructor + + +Initializes new [PdfContentEditor](../) object on base of the *document* . + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfContentEditor::PdfContentEditor(System::SharedPtr document) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | [Pdf](../../../aspose.pdf/) document. | +## Remarks + + + + + + document + + + + Pdf document. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/removedocumentopenaction/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/removedocumentopenaction/_index.md new file mode 100644 index 0000000000..e9fded4290 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/removedocumentopenaction/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::RemoveDocumentOpenAction method +linktitle: RemoveDocumentOpenAction +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::RemoveDocumentOpenAction method. Removes open action from the document. This operation is useful when concatenating multiple documents that use explicit ''GoTo'' action on startup in C++.' +type: docs +weight: 3300 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/removedocumentopenaction/ +--- +## PdfContentEditor::RemoveDocumentOpenAction method + + +Removes open action from the document. This operation is useful when concatenating multiple documents that use explicit 'GoTo' action on startup. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::RemoveDocumentOpenAction() +``` + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/replaceimage/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/replaceimage/_index.md new file mode 100644 index 0000000000..219780b050 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/replaceimage/_index.md @@ -0,0 +1,58 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::ReplaceImage method +linktitle: ReplaceImage +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::ReplaceImage method. Replaces the specified image on the specified page of PDF document with another image in C++.' +type: docs +weight: 3600 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/replaceimage/ +--- +## PdfContentEditor::ReplaceImage method + + +Replaces the specified image on the specified page of PDF document with another image. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::ReplaceImage(int32_t pageNumber, int32_t index, System::String imageFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageNumber | int32_t | The number of page on which the image is replaced. | +| index | int32_t | The index of the image object must be replaced. | +| imageFile | System::String | The image file will be used for replacing. | +## Remarks + + + + + + pageNumber + + + The number of page on which the image is replaced. + + + + + index + + + The index of the image object must be replaced. + + + + + imageFile + + + The image file will be used for replacing. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/replacetext/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/replacetext/_index.md new file mode 100644 index 0000000000..5b69760468 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/replacetext/_index.md @@ -0,0 +1,280 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::ReplaceText method +linktitle: ReplaceText +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::ReplaceText method. Replaces text in the PDF file on the specified page. TextState object (font family, color) can be specified to replaced text in C++.' +type: docs +weight: 3800 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/replacetext/ +--- +## PdfContentEditor::ReplaceText(System::String, int32_t, System::String, System::SharedPtr\) method + + +Replaces text in the PDF file on the specified page. [TextState](../) object (font family, color) can be specified to replaced text. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfContentEditor::ReplaceText(System::String srcString, int32_t thePage, System::String destString, System::SharedPtr textState) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| srcString | System::String | The string to be replaced. | +| thePage | int32_t | [Page](../../../aspose.pdf/page/) number (0 means "all pages"). | +| destString | System::String | The replaced string. | +| textState | System::SharedPtr\ | [Text](../../../aspose.pdf.text/) state ([Text](../../../aspose.pdf.text/)[Color](../../../aspose.pdf/color/), Font etc). | + +### ReturnValue + +Returns true if replacement was made. +## Remarks + + + + + + srcString + + + The string to be replaced. + + + + + thePage + + + + Page number (0 means "all pages"). + + + + + destString + + + The replaced string. + + + + + textState + + + + Text state (TextColor, Font etc). + + + +## See Also + +* Class [TextState](../../../aspose.pdf.text/textstate/) +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfContentEditor::ReplaceText(System::String, System::String) method + + +Replaces text in the PDF file. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfContentEditor::ReplaceText(System::String srcString, System::String destString) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| srcString | System::String | The string to be replaced. | +| destString | System::String | Replacing string. | + +### ReturnValue + +Returns true if replacement was made. +## Remarks + + + + + + srcString + + + The string to be replaced. + + + + + destString + + + Replacing string. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfContentEditor::ReplaceText(System::String, int32_t, System::String) method + + +Replaces text in the PDF file on the specified page. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfContentEditor::ReplaceText(System::String srcString, int32_t thePage, System::String destString) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| srcString | System::String | The sting to be replaced. | +| thePage | int32_t | [Page](../../../aspose.pdf/page/) number (0 for all pages) | +| destString | System::String | Replacing string. | + +### ReturnValue + +Returns true if replacement was made. +## Remarks + + + + + + srcString + + + The sting to be replaced. + + + + + thePage + + + + Page number (0 for all pages) + + + + + destString + + + Replacing string. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfContentEditor::ReplaceText(System::String, System::String, System::SharedPtr\) method + + +Replaces text in the PDF file using specified [TextState](../) object. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfContentEditor::ReplaceText(System::String srcString, System::String destString, System::SharedPtr textState) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| srcString | System::String | String to be replaced | +| destString | System::String | Replacing string | +| textState | System::SharedPtr\ | [Text](../../../aspose.pdf.text/) state ([Text](../../../aspose.pdf.text/)[Color](../../../aspose.pdf/color/), Font etc) | + +### ReturnValue + +Returns true if replacement was made. +## Remarks + + + + + + srcString + + + String to be replaced + + + + + destString + + + Replacing string + + + + + textState + + + + Text state (TextColor, Font etc) + + + +## See Also + +* Class [TextState](../../../aspose.pdf.text/textstate/) +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfContentEditor::ReplaceText(System::String, System::String, int32_t) method + + +Replaces text in the PDF file and sets font size. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfContentEditor::ReplaceText(System::String srcString, System::String destString, int32_t fontSize) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| srcString | System::String | String to be replaced. | +| destString | System::String | Replacing string. | +| fontSize | int32_t | Font size. | + +### ReturnValue + +Returns true if replacement was made. +## Remarks + + + + + + srcString + + + String to be replaced. + + + + + destString + + + Replacing string. + + + + + fontSize + + + Font size. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/set_replacetextstrategy/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/set_replacetextstrategy/_index.md new file mode 100644 index 0000000000..b0dde9e7f0 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/set_replacetextstrategy/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::set_ReplaceTextStrategy method +linktitle: set_ReplaceTextStrategy +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::set_ReplaceTextStrategy method. A set of parameters for replace text operation in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/set_replacetextstrategy/ +--- +## PdfContentEditor::set_ReplaceTextStrategy method + + +A set of parameters for replace text operation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::set_ReplaceTextStrategy(System::SharedPtr value) +``` + +## See Also + +* Class [ReplaceTextStrategy](../../replacetextstrategy/) +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/set_texteditoptions/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/set_texteditoptions/_index.md new file mode 100644 index 0000000000..317efc282f --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/set_texteditoptions/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::set_TextEditOptions method +linktitle: set_TextEditOptions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::set_TextEditOptions method. Sets text edit options in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/set_texteditoptions/ +--- +## PdfContentEditor::set_TextEditOptions method + + +Sets text edit options. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::set_TextEditOptions(System::SharedPtr value) +``` + +## See Also + +* Class [TextEditOptions](../../../aspose.pdf.text/texteditoptions/) +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/set_textreplaceoptions/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/set_textreplaceoptions/_index.md new file mode 100644 index 0000000000..3de4f3fc09 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/set_textreplaceoptions/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::set_TextReplaceOptions method +linktitle: set_TextReplaceOptions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::set_TextReplaceOptions method. Sets text replace options in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/set_textreplaceoptions/ +--- +## PdfContentEditor::set_TextReplaceOptions method + + +Sets text replace options. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::set_TextReplaceOptions(System::SharedPtr value) +``` + +## See Also + +* Class [TextReplaceOptions](../../../aspose.pdf.text/textreplaceoptions/) +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/set_textsearchoptions/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/set_textsearchoptions/_index.md new file mode 100644 index 0000000000..d7272947a4 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/set_textsearchoptions/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::set_TextSearchOptions method +linktitle: set_TextSearchOptions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::set_TextSearchOptions method. Sets text search options in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/set_textsearchoptions/ +--- +## PdfContentEditor::set_TextSearchOptions method + + +Sets text search options. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::set_TextSearchOptions(System::SharedPtr value) +``` + +## See Also + +* Class [TextSearchOptions](../../../aspose.pdf.text/textsearchoptions/) +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfcontenteditor/showstampbyid/_index.md b/english/cpp/aspose.pdf.facades/pdfcontenteditor/showstampbyid/_index.md new file mode 100644 index 0000000000..bf6047aca5 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfcontenteditor/showstampbyid/_index.md @@ -0,0 +1,49 @@ +--- +title: Aspose::Pdf::Facades::PdfContentEditor::ShowStampById method +linktitle: ShowStampById +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfContentEditor::ShowStampById method. Shows stamp which was hidden by HiddenStampById in C++.' +type: docs +weight: 4500 +url: /cpp/aspose.pdf.facades/pdfcontenteditor/showstampbyid/ +--- +## PdfContentEditor::ShowStampById method + + +Shows stamp which was hidden by HiddenStampById. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfContentEditor::ShowStampById(int32_t pageNumber, int32_t stampId) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageNumber | int32_t | Number of the page. | +| stampId | int32_t | Identifier of stamp which should be shown. | +## Remarks + + + + + + pageNumber + + + Number of the page. + + + + + stampId + + + Identifier of stamp which should be shown. + + + +## See Also + +* Class [PdfContentEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfconverter/_index.md b/english/cpp/aspose.pdf.facades/pdfconverter/_index.md new file mode 100644 index 0000000000..8025a0cc9b --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfconverter/_index.md @@ -0,0 +1,103 @@ +--- +title: Aspose::Pdf::Facades::PdfConverter class +linktitle: PdfConverter +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfConverter class. Represents a class to convert a pdf file''s each page to images, supporting BMP, JPEG, PNG and TIFF now. Supported content in pdfs: pictures, form, comment in C++.' +type: docs +weight: 1800 +url: /cpp/aspose.pdf.facades/pdfconverter/ +--- +## PdfConverter class + + +Represents a class to convert a pdf file's each page to images, supporting BMP, JPEG, PNG and TIFF now. Supported content in pdfs: pictures, form, comment. + +```cpp +class PdfConverter : public Aspose::Pdf::Facades::Facade +``` + +## Methods + +| Method | Description | +| --- | --- | +| [BindPdf](./bindpdf/)(System::String) override | Binds a [Pdf](../../aspose.pdf/) file for converting. | +| [BindPdf](./bindpdf/)(System::SharedPtr\) override | Binds a [Pdf](../../aspose.pdf/) Stream for convert. | +| [BindPdf](../facade/bindpdf/)(System::SharedPtr\) override | Initializes the facade. | +| virtual [BindPdf](../ifacade/bindpdf/)(System::SharedPtr\) | Binds PDF document for editing. | +| [Close](./close/)() override | Close the instance of [PdfConverter](./) and release the resources. | +| [Dispose](../facade/dispose/)() override | Disposes the facade. | +| [DoConvert](./doconvert/)() | Do some initial works for converting a pdf document to images. | +| [get_CoordinateType](./get_coordinatetype/)() const | Gets the page coordinate type (Media/Crop boxes). CropBox value is used by default. | +| [get_Document](../facade/get_document/)() const | Gets the document facade is working on. | +| [get_EndPage](./get_endpage/)() | Gets end position which you want to convert. | +| [get_FormPresentationMode](./get_formpresentationmode/)() const | Gets form presentation mode. | +| [get_PageCount](./get_pagecount/)() | Gets the page count. | +| [get_Password](./get_password/)() const | Gets document OwnerPassword. | +| [get_RenderingOptions](./get_renderingoptions/)() const | Gets rendering options. | +| [get_Resolution](./get_resolution/)() const | Gets resolution during convertting. The higher resolution, the slower convertting speed. The default value is 150. | +| [get_ShowHiddenAreas](./get_showhiddenareas/)() const | Gets flag that controls visibility of hidden areas on the page. | +| [get_StartPage](./get_startpage/)() const | Gets start position which you want to convert. The minimal value is 1. | +| [get_UserPassword](./get_userpassword/)() const | Gets document UserPassword. | +| [GetNextImage](./getnextimage/)(System::String) | Saves image to file with default image format - jpeg. | +| [GetNextImage](./getnextimage/)(System::String, System::SharedPtr\) | Saves image to file with ith given page size and default image format - jpeg. | +| [GetNextImage](./getnextimage/)(System::String, System::SharedPtr\) | Saves image to file with the givin image format. | +| [GetNextImage](./getnextimage/)(System::String, System::SharedPtr\, System::SharedPtr\) | Saves image to file with given page size and image format. | +| [GetNextImage](./getnextimage/)(System::SharedPtr\) | Saves image to stream with default image format - jpeg. | +| [GetNextImage](./getnextimage/)(System::SharedPtr\, System::SharedPtr\) | Saves image to stream with given page size. | +| [GetNextImage](./getnextimage/)(System::SharedPtr\, System::SharedPtr\) | Saves image to stream with given image format. | +| [GetNextImage](./getnextimage/)(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) | Saves image to stream with given page size. | +| [GetNextImage](./getnextimage/)(System::String, System::SharedPtr\, int32_t, int32_t, int32_t) | Saves image to file with the given image format, dimensions and quality. | +| [GetNextImage](./getnextimage/)(System::SharedPtr\, System::SharedPtr\, int32_t, int32_t, int32_t) | Saves image to stream with the givin image format, dimensions and quality. | +| [GetNextImage](./getnextimage/)(System::String, System::SharedPtr\, double, double, int32_t) | Saves image to file with the givin image format, image size, and quality. | +| [GetNextImage](./getnextimage/)(System::SharedPtr\, System::SharedPtr\, double, double, int32_t) | Saves image to stream with the givin image format, size and quality. | +| [GetNextImage](./getnextimage/)(System::String, System::SharedPtr\, int32_t, int32_t) | Saves image to file with the given image format and dimensions. | +| [GetNextImage](./getnextimage/)(System::SharedPtr\, System::SharedPtr\, int32_t, int32_t) | Saves image to stream with the givin image format, size and quality. | +| [GetNextImage](./getnextimage/)(System::SharedPtr\, System::SharedPtr\, int32_t) | Saves image to stream with given image format and quality. | +| [GetNextImage](./getnextimage/)(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\, int32_t) | Saves image to stream with given page size, image format and quality. | +| [GetNextImage](./getnextimage/)(System::String, System::SharedPtr\, int32_t) | Saves image to file with given image format and quality. | +| [GetNextImage](./getnextimage/)(System::String, System::SharedPtr\, System::SharedPtr\, int32_t) | Saves image to file with given page size, image format and quality. | +| [HasNextImage](./hasnextimage/)() | Indicates whether the pdf file has more images or not. | +| static [MergeImages](./mergeimages/)(System::SharedPtr\\>\>, Aspose::Pdf::Drawing::ImageFormat, ImageMergeMode, System::Nullable\, System::Nullable\) | Merges list of image streams as one image stream. Png/jpg/tiff outputs formats are supported, in case of using non supported format output stream encoded as Jpeg by default. | +| static [MergeImagesAsTiff](./mergeimagesastiff/)(System::SharedPtr\\>\>) | Merges list of tiff streams as one multiple frames tiff stream. | +| [PdfConverter](./pdfconverter/)() | Initializes new [PdfConverter](./) object. | +| [PdfConverter](./pdfconverter/)(System::SharedPtr\) | Initializes new [PdfConverter](./) object on base of the *document* . | +| [SaveAsTIFF](./saveastiff/)(System::String) | Converts each pages of a pdf document to images and saves images to a single TIFF file. | +| [SaveAsTIFF](./saveastiff/)(System::String, Aspose::Pdf::Devices::CompressionType) | Converts each pages of a pdf document to images and saves images to a single TIFF file. | +| [SaveAsTIFF](./saveastiff/)(System::String, int32_t, int32_t) | Converts each pages of a pdf document to images with dimensions, and saves images to a single TIFF file. | +| [SaveAsTIFF](./saveastiff/)(System::String, System::SharedPtr\) | Converts each pages of a pdf document to images with page size and saves images to a single TIFF file. | +| [SaveAsTIFF](./saveastiff/)(System::String, System::SharedPtr\, System::SharedPtr\) | Converts each pages of a pdf document to images with page size and saves images to a single TIFF file. | +| [SaveAsTIFF](./saveastiff/)(System::String, int32_t, int32_t, Aspose::Pdf::Devices::CompressionType) | Converts each pages of a pdf document to images with dimensions, and saves images to a single TIFF file. | +| [SaveAsTIFF](./saveastiff/)(System::String, int32_t, int32_t, System::SharedPtr\) | Converts each pages of a pdf document to images with dimensions, and saves images to a single TIFF file. | +| [SaveAsTIFF](./saveastiff/)(System::String, int32_t, int32_t, System::SharedPtr\, System::SharedPtr\) | Converts each pages of a pdf document to images with dimensions, and saves images to a single TIFF file. | +| [SaveAsTIFF](./saveastiff/)(System::SharedPtr\) | Converts each pages of a pdf document to images and saves images to a single TIFF stream. | +| [SaveAsTIFF](./saveastiff/)(System::SharedPtr\, Aspose::Pdf::Devices::CompressionType) | Converts each pages of a pdf document to images and saves images to a single TIFF file. | +| [SaveAsTIFF](./saveastiff/)(System::SharedPtr\, System::SharedPtr\) | Converts each pages of a pdf document to images with page size and saves images to a single TIFF stream. | +| [SaveAsTIFF](./saveastiff/)(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) | Converts each pages of a pdf document to images with page size and saves images to a single TIFF stream. | +| [SaveAsTIFF](./saveastiff/)(System::SharedPtr\, int32_t, int32_t) | Converts each pages of a pdf document to images with dimensions, and saves images to a single TIFF stream. | +| [SaveAsTIFF](./saveastiff/)(System::SharedPtr\, int32_t, int32_t, Aspose::Pdf::Devices::CompressionType) | Converts each pages of a pdf document to images with dimensions, and saves images to a single TIFF stream. | +| [SaveAsTIFF](./saveastiff/)(System::SharedPtr\, int32_t, int32_t, System::SharedPtr\) | Converts each pages of a pdf document to images with dimensions, and saves images to a single TIFF stream. | +| [SaveAsTIFF](./saveastiff/)(System::SharedPtr\, int32_t, int32_t, System::SharedPtr\, System::SharedPtr\) | Converts each pages of a pdf document to images with dimensions, and saves images to a single TIFF stream. | +| [SaveAsTIFF](./saveastiff/)(System::String, System::SharedPtr\) | Converts each pages of a pdf document to images with and saves images to a single TIFF file. | +| [SaveAsTIFF](./saveastiff/)(System::String, System::SharedPtr\, System::SharedPtr\) | Converts each pages of a pdf document to images with and saves images to a single TIFF file. | +| [SaveAsTIFF](./saveastiff/)(System::SharedPtr\, System::SharedPtr\) | Converts each pages of a pdf document to images and saves images to a single TIFF stream. | +| [SaveAsTIFF](./saveastiff/)(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) | Converts each pages of a pdf document to images and saves images to a single TIFF stream. | +| [SaveAsTIFFClassF](./saveastiffclassf/)(System::String, int32_t, int32_t) | Converts each pages of a pdf document to images and save images to a single TIFF ClassF file. | +| [SaveAsTIFFClassF](./saveastiffclassf/)(System::String, System::SharedPtr\) | Converts each pages of a pdf document to images and save images to a single TIFF ClassF file. | +| [SaveAsTIFFClassF](./saveastiffclassf/)(System::SharedPtr\, int32_t, int32_t) | Converts each pages of a pdf document to images and save images to a single TIFF ClassF stream. | +| [SaveAsTIFFClassF](./saveastiffclassf/)(System::SharedPtr\, System::SharedPtr\) | Converts each pages of a pdf document to images and save images to a single TIFF ClassF stream. | +| [SaveAsTIFFClassF](./saveastiffclassf/)(System::String) | Converts each pages of a pdf document to images and save images to a single TIFF ClassF file. | +| [SaveAsTIFFClassF](./saveastiffclassf/)(System::SharedPtr\) | Converts each pages of a pdf document to images and save images to a single TIFF ClassF stream. | +| [set_CoordinateType](./set_coordinatetype/)(PageCoordinateType) | Sets the page coordinate type (Media/Crop boxes). CropBox value is used by default. | +| [set_EndPage](./set_endpage/)(int32_t) | Sets end position which you want to convert. | +| [set_FormPresentationMode](./set_formpresentationmode/)(Aspose::Pdf::Devices::FormPresentationMode) | Sets form presentation mode. | +| [set_Password](./set_password/)(System::String) | Sets document OwnerPassword. | +| [set_RenderingOptions](./set_renderingoptions/)(System::SharedPtr\) | Sets rendering options. | +| [set_Resolution](./set_resolution/)(System::SharedPtr\) | Sets resolution during convertting. The higher resolution, the slower convertting speed. The default value is 150. | +| [set_ShowHiddenAreas](./set_showhiddenareas/)(bool) | Sets flag that controls visibility of hidden areas on the page. | +| [set_StartPage](./set_startpage/)(int32_t) | Sets start position which you want to convert. The minimal value is 1. | +| [set_UserPassword](./set_userpassword/)(System::String) | Sets document UserPassword. | +## See Also + +* Class [Facade](../facade/) +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/pdfconverter/bindpdf/_index.md b/english/cpp/aspose.pdf.facades/pdfconverter/bindpdf/_index.md new file mode 100644 index 0000000000..31bae459f5 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfconverter/bindpdf/_index.md @@ -0,0 +1,72 @@ +--- +title: Aspose::Pdf::Facades::PdfConverter::BindPdf method +linktitle: BindPdf +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfConverter::BindPdf method. Binds a Pdf file for converting in C++.' +type: docs +weight: 2500 +url: /cpp/aspose.pdf.facades/pdfconverter/bindpdf/ +--- +## PdfConverter::BindPdf(System::String) method + + +Binds a [Pdf](../../../aspose.pdf/) file for converting. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::BindPdf(System::String inputFile) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | The pdf file. | +## Remarks + + + + + + inputFile + + + The pdf file. + + + + +## See Also + +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::BindPdf(System::SharedPtr\) method + + +Binds a [Pdf](../../../aspose.pdf/) Stream for convert. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::BindPdf(System::SharedPtr inputStream) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | The pdf Stream. | +## Remarks + + + + + + inputStream + + + The pdf Stream. + + + +## See Also + +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfconverter/close/_index.md b/english/cpp/aspose.pdf.facades/pdfconverter/close/_index.md new file mode 100644 index 0000000000..02eb2f45d6 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfconverter/close/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfConverter::Close method +linktitle: Close +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfConverter::Close method. Close the instance of PdfConverter and release the resources in C++.' +type: docs +weight: 2700 +url: /cpp/aspose.pdf.facades/pdfconverter/close/ +--- +## PdfConverter::Close method + + +Close the instance of [PdfConverter](../) and release the resources. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::Close() override +``` + +## See Also + +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfconverter/doconvert/_index.md b/english/cpp/aspose.pdf.facades/pdfconverter/doconvert/_index.md new file mode 100644 index 0000000000..794d3137d6 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfconverter/doconvert/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfConverter::DoConvert method +linktitle: DoConvert +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfConverter::DoConvert method. Do some initial works for converting a pdf document to images in C++.' +type: docs +weight: 2000 +url: /cpp/aspose.pdf.facades/pdfconverter/doconvert/ +--- +## PdfConverter::DoConvert method + + +Do some initial works for converting a pdf document to images. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::DoConvert() +``` + +## See Also + +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfconverter/get_coordinatetype/_index.md b/english/cpp/aspose.pdf.facades/pdfconverter/get_coordinatetype/_index.md new file mode 100644 index 0000000000..8ba67626b6 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfconverter/get_coordinatetype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::PdfConverter::get_CoordinateType method +linktitle: get_CoordinateType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfConverter::get_CoordinateType method. Gets the page coordinate type (Media/Crop boxes). CropBox value is used by default in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.facades/pdfconverter/get_coordinatetype/ +--- +## PdfConverter::get_CoordinateType method + + +Gets the page coordinate type (Media/Crop boxes). CropBox value is used by default. + +```cpp +ASPOSE_PDF_SHARED_API PageCoordinateType Aspose::Pdf::Facades::PdfConverter::get_CoordinateType() const +``` + +## See Also + +* Enum [PageCoordinateType](../../../aspose.pdf/pagecoordinatetype/) +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfconverter/get_endpage/_index.md b/english/cpp/aspose.pdf.facades/pdfconverter/get_endpage/_index.md new file mode 100644 index 0000000000..c53fff7513 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfconverter/get_endpage/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfConverter::get_EndPage method +linktitle: get_EndPage +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfConverter::get_EndPage method. Gets end position which you want to convert in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.facades/pdfconverter/get_endpage/ +--- +## PdfConverter::get_EndPage method + + +Gets end position which you want to convert. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfConverter::get_EndPage() +``` + +## See Also + +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfconverter/get_formpresentationmode/_index.md b/english/cpp/aspose.pdf.facades/pdfconverter/get_formpresentationmode/_index.md new file mode 100644 index 0000000000..bbfb153aa7 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfconverter/get_formpresentationmode/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::PdfConverter::get_FormPresentationMode method +linktitle: get_FormPresentationMode +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfConverter::get_FormPresentationMode method. Gets form presentation mode in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.facades/pdfconverter/get_formpresentationmode/ +--- +## PdfConverter::get_FormPresentationMode method + + +Gets form presentation mode. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Devices::FormPresentationMode Aspose::Pdf::Facades::PdfConverter::get_FormPresentationMode() const +``` + +## See Also + +* Enum [FormPresentationMode](../../../aspose.pdf.devices/formpresentationmode/) +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfconverter/get_pagecount/_index.md b/english/cpp/aspose.pdf.facades/pdfconverter/get_pagecount/_index.md new file mode 100644 index 0000000000..3e37d90913 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfconverter/get_pagecount/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfConverter::get_PageCount method +linktitle: get_PageCount +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfConverter::get_PageCount method. Gets the page count in C++.' +type: docs +weight: 1900 +url: /cpp/aspose.pdf.facades/pdfconverter/get_pagecount/ +--- +## PdfConverter::get_PageCount method + + +Gets the page count. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfConverter::get_PageCount() +``` + +## See Also + +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfconverter/get_password/_index.md b/english/cpp/aspose.pdf.facades/pdfconverter/get_password/_index.md new file mode 100644 index 0000000000..81e404c10f --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfconverter/get_password/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfConverter::get_Password method +linktitle: get_Password +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfConverter::get_Password method. Gets document OwnerPassword in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.facades/pdfconverter/get_password/ +--- +## PdfConverter::get_Password method + + +Gets document OwnerPassword. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::PdfConverter::get_Password() const +``` + +## See Also + +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfconverter/get_renderingoptions/_index.md b/english/cpp/aspose.pdf.facades/pdfconverter/get_renderingoptions/_index.md new file mode 100644 index 0000000000..579b9028a5 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfconverter/get_renderingoptions/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::PdfConverter::get_RenderingOptions method +linktitle: get_RenderingOptions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfConverter::get_RenderingOptions method. Gets rendering options in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.facades/pdfconverter/get_renderingoptions/ +--- +## PdfConverter::get_RenderingOptions method + + +Gets rendering options. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::PdfConverter::get_RenderingOptions() const +``` + +## See Also + +* Class [RenderingOptions](../../../aspose.pdf/renderingoptions/) +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfconverter/get_resolution/_index.md b/english/cpp/aspose.pdf.facades/pdfconverter/get_resolution/_index.md new file mode 100644 index 0000000000..8433cabc29 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfconverter/get_resolution/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::PdfConverter::get_Resolution method +linktitle: get_Resolution +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfConverter::get_Resolution method. Gets resolution during convertting. The higher resolution, the slower convertting speed. The default value is 150 in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.facades/pdfconverter/get_resolution/ +--- +## PdfConverter::get_Resolution method + + +Gets resolution during convertting. The higher resolution, the slower convertting speed. The default value is 150. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::PdfConverter::get_Resolution() const +``` + +## See Also + +* Class [Resolution](../../../aspose.pdf.devices/resolution/) +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfconverter/get_showhiddenareas/_index.md b/english/cpp/aspose.pdf.facades/pdfconverter/get_showhiddenareas/_index.md new file mode 100644 index 0000000000..98ccf8c57a --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfconverter/get_showhiddenareas/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::PdfConverter::get_ShowHiddenAreas method +linktitle: get_ShowHiddenAreas +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfConverter::get_ShowHiddenAreas method. Gets flag that controls visibility of hidden areas on the page in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.facades/pdfconverter/get_showhiddenareas/ +--- +## PdfConverter::get_ShowHiddenAreas method + + +Gets flag that controls visibility of hidden areas on the page. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfConverter::get_ShowHiddenAreas() const +``` + +## Remarks + + + + Deprecated + + CoordinateType property should be used instead of ShowHiddenAreas. + + +## See Also + +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfconverter/get_startpage/_index.md b/english/cpp/aspose.pdf.facades/pdfconverter/get_startpage/_index.md new file mode 100644 index 0000000000..d3aeaabde4 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfconverter/get_startpage/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfConverter::get_StartPage method +linktitle: get_StartPage +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfConverter::get_StartPage method. Gets start position which you want to convert. The minimal value is 1 in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.facades/pdfconverter/get_startpage/ +--- +## PdfConverter::get_StartPage method + + +Gets start position which you want to convert. The minimal value is 1. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfConverter::get_StartPage() const +``` + +## See Also + +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfconverter/get_userpassword/_index.md b/english/cpp/aspose.pdf.facades/pdfconverter/get_userpassword/_index.md new file mode 100644 index 0000000000..0a5654a3e3 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfconverter/get_userpassword/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfConverter::get_UserPassword method +linktitle: get_UserPassword +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfConverter::get_UserPassword method. Gets document UserPassword in C++.' +type: docs +weight: 1700 +url: /cpp/aspose.pdf.facades/pdfconverter/get_userpassword/ +--- +## PdfConverter::get_UserPassword method + + +Gets document UserPassword. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::PdfConverter::get_UserPassword() const +``` + +## See Also + +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfconverter/getnextimage/_index.md b/english/cpp/aspose.pdf.facades/pdfconverter/getnextimage/_index.md new file mode 100644 index 0000000000..925b106463 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfconverter/getnextimage/_index.md @@ -0,0 +1,933 @@ +--- +title: Aspose::Pdf::Facades::PdfConverter::GetNextImage method +linktitle: GetNextImage +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfConverter::GetNextImage method. Saves image to file with default image format - jpeg in C++.' +type: docs +weight: 2400 +url: /cpp/aspose.pdf.facades/pdfconverter/getnextimage/ +--- +## PdfConverter::GetNextImage(System::String) method + + +Saves image to file with default image format - jpeg. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::GetNextImage(System::String outputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputFile | System::String | The file path and name to save the image. | +## Remarks + + + + + + outputFile + + + The file path and name to save the image. + + + +## See Also + +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::GetNextImage(System::String, System::SharedPtr\) method + + +Saves image to file with ith given page size and default image format - jpeg. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::GetNextImage(System::String outputFile, System::SharedPtr pageSize) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputFile | System::String | The file path and name to save the image. | +| pageSize | System::SharedPtr\ | The page size of the image. | +## Remarks + + + + + + outputFile + + + The file path and name to save the image. + + + + + pageSize + + + The page size of the image. + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::GetNextImage(System::String, System::SharedPtr\) method + + +Saves image to file with the givin image format. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::GetNextImage(System::String outputFile, System::SharedPtr format) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputFile | System::String | The file path and name to save the image. | +| format | System::SharedPtr\ | The format of the image. | +## Remarks + + + + + + outputFile + + + The file path and name to save the image. + + + + + format + + + The format of the image. + + + +## See Also + +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::GetNextImage(System::String, System::SharedPtr\, System::SharedPtr\) method + + +Saves image to file with given page size and image format. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::GetNextImage(System::String outputFile, System::SharedPtr pageSize, System::SharedPtr format) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputFile | System::String | The file path and name to save the image. | +| pageSize | System::SharedPtr\ | The page size of the image. | +| format | System::SharedPtr\ | The format of the image. | +## Remarks + + + + + + outputFile + + + The file path and name to save the image. + + + + + pageSize + + + The page size of the image. + + + + + format + + + The format of the image. + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::GetNextImage(System::SharedPtr\) method + + +Saves image to stream with default image format - jpeg. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::GetNextImage(System::SharedPtr outputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputStream | System::SharedPtr\ | The stream to save the image. | +## Remarks + + + + + + outputStream + + + The stream to save the image. + + + +## See Also + +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::GetNextImage(System::SharedPtr\, System::SharedPtr\) method + + +Saves image to stream with given page size. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::GetNextImage(System::SharedPtr outputStream, System::SharedPtr pageSize) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputStream | System::SharedPtr\ | The stream to save the image. | +| pageSize | System::SharedPtr\ | The page size of the image. | +## Remarks + + + + + + outputStream + + + The stream to save the image. + + + + + pageSize + + + The page size of the image. + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::GetNextImage(System::SharedPtr\, System::SharedPtr\) method + + +Saves image to stream with given image format. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::GetNextImage(System::SharedPtr outputStream, System::SharedPtr format) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputStream | System::SharedPtr\ | The stream to save the image. | +| format | System::SharedPtr\ | The format of the image. | +## Remarks + + + + + + outputStream + + + The stream to save the image. + + + + + format + + + The format of the image. + + + +## See Also + +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::GetNextImage(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) method + + +Saves image to stream with given page size. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::GetNextImage(System::SharedPtr outputStream, System::SharedPtr pageSize, System::SharedPtr format) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputStream | System::SharedPtr\ | The stream to save the image. | +| pageSize | System::SharedPtr\ | The page size of the image. | +| format | System::SharedPtr\ | The format of the image. | +## Remarks + + + + + + outputStream + + + The stream to save the image. + + + + + pageSize + + + The page size of the image. + + + + + format + + + The format of the image. + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::GetNextImage(System::String, System::SharedPtr\, int32_t, int32_t, int32_t) method + + +Saves image to file with the given image format, dimensions and quality. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::GetNextImage(System::String outputFile, System::SharedPtr format, int32_t imageWidth, int32_t imageHeight, int32_t quality) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputFile | System::String | The file path and name to save the image. | +| format | System::SharedPtr\ | The format of the image. | +| imageWidth | int32_t | The image width, the unit is pixel. | +| imageHeight | int32_t | The image height, the unit is pixel. | +| quality | int32_t | The Jpeg file's quality (0~100), 0 is lowest and 100 is highest | +## Remarks + + + + + + outputFile + + + The file path and name to save the image. + + + + + format + + + The format of the image. + + + + + imageWidth + + + The image width, the unit is pixel. + + + + + imageHeight + + + The image height, the unit is pixel. + + + + + quality + + + The Jpeg file's quality (0~100), 0 is lowest and 100 is highest + + + +## See Also + +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::GetNextImage(System::SharedPtr\, System::SharedPtr\, int32_t, int32_t, int32_t) method + + +Saves image to stream with the givin image format, dimensions and quality. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::GetNextImage(System::SharedPtr outputStream, System::SharedPtr format, int32_t imageWidth, int32_t imageHeight, int32_t quality) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputStream | System::SharedPtr\ | The stream to save the image. | +| format | System::SharedPtr\ | The format of the image. | +| imageWidth | int32_t | The image width, the unit is pixel. | +| imageHeight | int32_t | The image height, the unit is pixel. | +| quality | int32_t | The Jpeg file's quality (0~100), 0 is lowest and 100 is highest | +## Remarks + + + + + + outputStream + + + The stream to save the image. + + + + + format + + + The format of the image. + + + + + imageWidth + + + The image width, the unit is pixel. + + + + + imageHeight + + + The image height, the unit is pixel. + + + + + quality + + + The Jpeg file's quality (0~100), 0 is lowest and 100 is highest + + + +## See Also + +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::GetNextImage(System::String, System::SharedPtr\, double, double, int32_t) method + + +Saves image to file with the givin image format, image size, and quality. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::GetNextImage(System::String outputFile, System::SharedPtr format, double imageWidth, double imageHeight, int32_t quality) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputFile | System::String | The file path and name to save the image. | +| format | System::SharedPtr\ | The format of the image. | +| imageWidth | double | The image width, the unit is pixels. | +| imageHeight | double | The image height, the unit is pixels.. | +| quality | int32_t | The Jpeg file's quality (0~100), 0 is lowest and 100 is highest | +## Remarks + + + + + + outputFile + + + The file path and name to save the image. + + + + + format + + + The format of the image. + + + + + imageWidth + + + The image width, the unit is pixels. + + + + + imageHeight + + + The image height, the unit is pixels.. + + + + + quality + + + The Jpeg file's quality (0~100), 0 is lowest and 100 is highest + + + +## See Also + +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::GetNextImage(System::SharedPtr\, System::SharedPtr\, double, double, int32_t) method + + +Saves image to stream with the givin image format, size and quality. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::GetNextImage(System::SharedPtr outputStream, System::SharedPtr format, double imageWidth, double imageHeight, int32_t quality) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputStream | System::SharedPtr\ | The stream to save the image. | +| format | System::SharedPtr\ | The format of the image. | +| imageWidth | double | The image width, the unit is pixel. | +| imageHeight | double | The image height, the unit is pixel. | +| quality | int32_t | The Jpeg file's quality (0~100), 0 is lowest and 100 is highest | +## Remarks + + + + + + outputStream + + + The stream to save the image. + + + + + format + + + The format of the image. + + + + + imageWidth + + + The image width, the unit is pixel. + + + + + imageHeight + + + The image height, the unit is pixel. + + + + + quality + + + The Jpeg file's quality (0~100), 0 is lowest and 100 is highest + + + +## See Also + +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::GetNextImage(System::String, System::SharedPtr\, int32_t, int32_t) method + + +Saves image to file with the given image format and dimensions. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::GetNextImage(System::String outputFile, System::SharedPtr format, int32_t imageWidth, int32_t imageHeight) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputFile | System::String | The file path and name to save the image. | +| format | System::SharedPtr\ | The format of the image. | +| imageWidth | int32_t | The image width, the unit is pixel. | +| imageHeight | int32_t | The image height, the unit is pixel. | +## Remarks + + + + + + outputFile + + + The file path and name to save the image. + + + + + format + + + The format of the image. + + + + + imageWidth + + + The image width, the unit is pixel. + + + + + imageHeight + + + The image height, the unit is pixel. + + + +## See Also + +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::GetNextImage(System::SharedPtr\, System::SharedPtr\, int32_t, int32_t) method + + +Saves image to stream with the givin image format, size and quality. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::GetNextImage(System::SharedPtr outputStream, System::SharedPtr format, int32_t imageWidth, int32_t imageHeight) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputStream | System::SharedPtr\ | The stream to save the image. | +| format | System::SharedPtr\ | The format of the image. | +| imageWidth | int32_t | The image width, the unit is pixel. | +| imageHeight | int32_t | The image height, the unit is pixel. | +## Remarks + + + + + + outputStream + + + The stream to save the image. + + + + + format + + + The format of the image. + + + + + imageWidth + + + The image width, the unit is pixel. + + + + + imageHeight + + + The image height, the unit is pixel. + + + +## See Also + +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::GetNextImage(System::SharedPtr\, System::SharedPtr\, int32_t) method + + +Saves image to stream with given image format and quality. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::GetNextImage(System::SharedPtr outputStream, System::SharedPtr format, int32_t quality) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputStream | System::SharedPtr\ | The stream to save the image. | +| format | System::SharedPtr\ | The format of the image. | +| quality | int32_t | The Jpeg file's quality (0~100), 0 is lowest and 100 is highest | +## Remarks + + + + + + outputStream + + + The stream to save the image. + + + + + format + + + The format of the image. + + + + + quality + + + The Jpeg file's quality (0~100), 0 is lowest and 100 is highest + + + +## See Also + +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::GetNextImage(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\, int32_t) method + + +Saves image to stream with given page size, image format and quality. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::GetNextImage(System::SharedPtr outputStream, System::SharedPtr pageSize, System::SharedPtr format, int32_t quality) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputStream | System::SharedPtr\ | The stream to save the image. | +| pageSize | System::SharedPtr\ | The page size of the image. | +| format | System::SharedPtr\ | The format of the image. | +| quality | int32_t | The Jpeg file's quality (0~100), 0 is lowest and 100 is highest | +## Remarks + + + + + + outputStream + + + The stream to save the image. + + + + + pageSize + + + The page size of the image. + + + + + format + + + The format of the image. + + + + + quality + + + The Jpeg file's quality (0~100), 0 is lowest and 100 is highest + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::GetNextImage(System::String, System::SharedPtr\, int32_t) method + + +Saves image to file with given image format and quality. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::GetNextImage(System::String outputFile, System::SharedPtr format, int32_t quality) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputFile | System::String | The file path and name to save the image. | +| format | System::SharedPtr\ | The format of the image. | +| quality | int32_t | The Jpeg file's quality (0~100), 0 is lowest and 100 is highest | +## Remarks + + + + + + outputFile + + + The file path and name to save the image. + + + + + format + + + The format of the image. + + + + + quality + + + The Jpeg file's quality (0~100), 0 is lowest and 100 is highest + + + +## See Also + +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::GetNextImage(System::String, System::SharedPtr\, System::SharedPtr\, int32_t) method + + +Saves image to file with given page size, image format and quality. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::GetNextImage(System::String outputFile, System::SharedPtr pageSize, System::SharedPtr format, int32_t quality) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputFile | System::String | The file path and name to save the image. | +| pageSize | System::SharedPtr\ | The page size of the image. | +| format | System::SharedPtr\ | The format of the image. | +| quality | int32_t | The Jpeg file's quality (0~100), 0 is lowest and 100 is highest | +## Remarks + + + + + + outputFile + + + The file path and name to save the image. + + + + + pageSize + + + The page size of the image. + + + + + format + + + The format of the image. + + + + + quality + + + The Jpeg file's quality (0~100), 0 is lowest and 100 is highest + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfconverter/hasnextimage/_index.md b/english/cpp/aspose.pdf.facades/pdfconverter/hasnextimage/_index.md new file mode 100644 index 0000000000..4869accdcf --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfconverter/hasnextimage/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Facades::PdfConverter::HasNextImage method +linktitle: HasNextImage +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfConverter::HasNextImage method. Indicates whether the pdf file has more images or not in C++.' +type: docs +weight: 2300 +url: /cpp/aspose.pdf.facades/pdfconverter/hasnextimage/ +--- +## PdfConverter::HasNextImage method + + +Indicates whether the pdf file has more images or not. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfConverter::HasNextImage() +``` + + +### ReturnValue + +Can get more images or not, true if can, or false. + +## See Also + +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfconverter/mergeimages/_index.md b/english/cpp/aspose.pdf.facades/pdfconverter/mergeimages/_index.md new file mode 100644 index 0000000000..7329dc06c2 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfconverter/mergeimages/_index.md @@ -0,0 +1,83 @@ +--- +title: Aspose::Pdf::Facades::PdfConverter::MergeImages method +linktitle: MergeImages +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfConverter::MergeImages method. Merges list of image streams as one image stream. Png/jpg/tiff outputs formats are supported, in case of using non supported format output stream encoded as Jpeg by default in C++.' +type: docs +weight: 2800 +url: /cpp/aspose.pdf.facades/pdfconverter/mergeimages/ +--- +## PdfConverter::MergeImages method + + +Merges list of image streams as one image stream. Png/jpg/tiff outputs formats are supported, in case of using non supported format output stream encoded as Jpeg by default. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::PdfConverter::MergeImages(System::SharedPtr>> inputImagesStreams, Aspose::Pdf::Drawing::ImageFormat outputImageFormat, ImageMergeMode mergeMode, System::Nullable horizontal, System::Nullable vertical) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputImagesStreams | System::SharedPtr\\>\> | The list of image streams to merge. | +| outputImageFormat | Aspose::Pdf::Drawing::ImageFormat | [Image](../../../aspose.pdf/image/) output format for merged stream. | +| mergeMode | ImageMergeMode | Merge mode. Used for Png/Jpg formats. | +| horizontal | System::Nullable\ | Horizontal ratio to set canvas width for output image stream. Used for Png/Jpg formats with [ImageMergeMode.Center](../../imagemergemode/) only. | +| vertical | System::Nullable\ | Vertical ratio to set canvas height for output image stream. Used for Png/Jpg formats with [ImageMergeMode.Center](../../imagemergemode/) only. | + +### ReturnValue + +[Image](../../../aspose.pdf/image/) stream encoded as output image format. +## Remarks + + + + + + inputImagesStreams + + + The list of image streams to merge. + + + + + outputImageFormat + + + + Image output format for merged stream. + + + + + mergeMode + + + Merge mode. Used for Png/Jpg formats. + + + + + horizontal + + + Horizontal ratio to set canvas width for output image stream. Used for Png/Jpg formats with ImageMergeMode.Center only. + + + + + vertical + + + Vertical ratio to set canvas height for output image stream. Used for Png/Jpg formats with ImageMergeMode.Center only. + + + +## See Also + +* Enum [ImageFormat](../../../aspose.pdf.drawing/imageformat/) +* Enum [ImageMergeMode](../../imagemergemode/) +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfconverter/mergeimagesastiff/_index.md b/english/cpp/aspose.pdf.facades/pdfconverter/mergeimagesastiff/_index.md new file mode 100644 index 0000000000..88f607adf1 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfconverter/mergeimagesastiff/_index.md @@ -0,0 +1,44 @@ +--- +title: Aspose::Pdf::Facades::PdfConverter::MergeImagesAsTiff method +linktitle: MergeImagesAsTiff +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfConverter::MergeImagesAsTiff method. Merges list of tiff streams as one multiple frames tiff stream in C++.' +type: docs +weight: 2900 +url: /cpp/aspose.pdf.facades/pdfconverter/mergeimagesastiff/ +--- +## PdfConverter::MergeImagesAsTiff method + + +Merges list of tiff streams as one multiple frames tiff stream. + +```cpp +static ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::PdfConverter::MergeImagesAsTiff(System::SharedPtr>> inputImagesStreams) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputImagesStreams | System::SharedPtr\\>\> | The list of tiff streams. | + +### ReturnValue + +Multiple frames tiff stream. +## Remarks + + + + + + inputImagesStreams + + + The list of tiff streams. + + + +## See Also + +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfconverter/pdfconverter/_index.md b/english/cpp/aspose.pdf.facades/pdfconverter/pdfconverter/_index.md new file mode 100644 index 0000000000..5eb7bc933b --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfconverter/pdfconverter/_index.md @@ -0,0 +1,56 @@ +--- +title: Aspose::Pdf::Facades::PdfConverter::PdfConverter constructor +linktitle: PdfConverter +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfConverter::PdfConverter constructor. Initializes new PdfConverter object in C++.' +type: docs +weight: 2600 +url: /cpp/aspose.pdf.facades/pdfconverter/pdfconverter/ +--- +## PdfConverter::PdfConverter() constructor + + +Initializes new [PdfConverter](../) object. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfConverter::PdfConverter() +``` + +## See Also + +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::PdfConverter(System::SharedPtr\) constructor + + +Initializes new [PdfConverter](../) object on base of the *document* . + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfConverter::PdfConverter(System::SharedPtr document) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | [Pdf](../../../aspose.pdf/) document. | +## Remarks + + + + + + document + + + + Pdf document. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfconverter/saveastiff/_index.md b/english/cpp/aspose.pdf.facades/pdfconverter/saveastiff/_index.md new file mode 100644 index 0000000000..3bddfabc9e --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfconverter/saveastiff/_index.md @@ -0,0 +1,993 @@ +--- +title: Aspose::Pdf::Facades::PdfConverter::SaveAsTIFF method +linktitle: SaveAsTIFF +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfConverter::SaveAsTIFF method. Converts each pages of a pdf document to images and saves images to a single TIFF file in C++.' +type: docs +weight: 2100 +url: /cpp/aspose.pdf.facades/pdfconverter/saveastiff/ +--- +## PdfConverter::SaveAsTIFF(System::String) method + + +Converts each pages of a pdf document to images and saves images to a single TIFF file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::SaveAsTIFF(System::String outputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputFile | System::String | The file to save the TIFF image. | +## Remarks + + + + + + outputFile + + + The file to save the TIFF image. + + + +## See Also + +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::SaveAsTIFF(System::String, Aspose::Pdf::Devices::CompressionType) method + + +Converts each pages of a pdf document to images and saves images to a single TIFF file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::SaveAsTIFF(System::String outputFile, Aspose::Pdf::Devices::CompressionType compressionType) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputFile | System::String | The output file. | +| compressionType | Aspose::Pdf::Devices::CompressionType | Type of the compression. | +## Remarks + + + + + + outputFile + + + The output file. + + + + + compressionType + + + Type of the compression. + + + +## See Also + +* Enum [CompressionType](../../../aspose.pdf.devices/compressiontype/) +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::SaveAsTIFF(System::String, int32_t, int32_t) method + + +Converts each pages of a pdf document to images with dimensions, and saves images to a single TIFF file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::SaveAsTIFF(System::String outputFile, int32_t imageWidth, int32_t imageHeight) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputFile | System::String | The file name to save the TIFF image | +| imageWidth | int32_t | The image width, the unit is pixel. | +| imageHeight | int32_t | The image height, the unit is pixel. | +## Remarks + + + + + + outputFile + + + The file name to save the TIFF image + + + + + imageWidth + + + The image width, the unit is pixel. + + + + + imageHeight + + + The image height, the unit is pixel. + + + +## See Also + +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::SaveAsTIFF(System::String, System::SharedPtr\) method + + +Converts each pages of a pdf document to images with page size and saves images to a single TIFF file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::SaveAsTIFF(System::String outputFile, System::SharedPtr pageSize) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputFile | System::String | The file name to save the TIFF image | +| pageSize | System::SharedPtr\ | The page size of the image. | +## Remarks + + + + + + outputFile + + + The file name to save the TIFF image + + + + + pageSize + + + The page size of the image. + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::SaveAsTIFF(System::String, System::SharedPtr\, System::SharedPtr\) method + + +Converts each pages of a pdf document to images with page size and saves images to a single TIFF file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::SaveAsTIFF(System::String outputFile, System::SharedPtr pageSize, System::SharedPtr settings) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputFile | System::String | The file name to save the TIFF image | +| pageSize | System::SharedPtr\ | The page size of the image. | +| settings | System::SharedPtr\ | Settings object that defines TIFF parameters. | +## Remarks + + + + + + outputFile + + + The file name to save the TIFF image + + + + + pageSize + + + The page size of the image. + + + + + settings + + + Settings object that defines TIFF parameters. + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [TiffSettings](../../../aspose.pdf.devices/tiffsettings/) +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::SaveAsTIFF(System::String, int32_t, int32_t, Aspose::Pdf::Devices::CompressionType) method + + +Converts each pages of a pdf document to images with dimensions, and saves images to a single TIFF file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::SaveAsTIFF(System::String outputFile, int32_t imageWidth, int32_t imageHeight, Aspose::Pdf::Devices::CompressionType compressionType) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputFile | System::String | The file name to save the TIFF image | +| imageWidth | int32_t | The image width, the unit is pixel. | +| imageHeight | int32_t | The image height, the unit is pixel. | +| compressionType | Aspose::Pdf::Devices::CompressionType | Type of the compression. | +## Remarks + + + + + + outputFile + + + The file name to save the TIFF image + + + + + imageWidth + + + The image width, the unit is pixel. + + + + + imageHeight + + + The image height, the unit is pixel. + + + + + compressionType + + + Type of the compression. + + + +## See Also + +* Enum [CompressionType](../../../aspose.pdf.devices/compressiontype/) +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::SaveAsTIFF(System::String, int32_t, int32_t, System::SharedPtr\) method + + +Converts each pages of a pdf document to images with dimensions, and saves images to a single TIFF file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::SaveAsTIFF(System::String outputFile, int32_t imageWidth, int32_t imageHeight, System::SharedPtr settings) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputFile | System::String | The file name to save the TIFF image | +| imageWidth | int32_t | The image width, the unit is pixel. | +| imageHeight | int32_t | The image height, the unit is pixel. | +| settings | System::SharedPtr\ | Settings object that defines TIFF parameters. | +## Remarks + + + + + + outputFile + + + The file name to save the TIFF image + + + + + imageWidth + + + The image width, the unit is pixel. + + + + + imageHeight + + + The image height, the unit is pixel. + + + + + settings + + + Settings object that defines TIFF parameters. + + + +## See Also + +* Class [TiffSettings](../../../aspose.pdf.devices/tiffsettings/) +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::SaveAsTIFF(System::String, int32_t, int32_t, System::SharedPtr\, System::SharedPtr\) method + + +Converts each pages of a pdf document to images with dimensions, and saves images to a single TIFF file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::SaveAsTIFF(System::String outputFile, int32_t imageWidth, int32_t imageHeight, System::SharedPtr settings, System::SharedPtr converter) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputFile | System::String | The file name to save the TIFF image | +| imageWidth | int32_t | The image width, the unit is pixel. | +| imageHeight | int32_t | The image height, the unit is pixel. | +| settings | System::SharedPtr\ | Settings object that defines TIFF parameters. | +| converter | System::SharedPtr\ | External converter | +## Remarks + + + + + + outputFile + + + The file name to save the TIFF image + + + + + imageWidth + + + The image width, the unit is pixel. + + + + + imageHeight + + + The image height, the unit is pixel. + + + + + settings + + + Settings object that defines TIFF parameters. + + + + + converter + + + External converter + + + +## See Also + +* Class [TiffSettings](../../../aspose.pdf.devices/tiffsettings/) +* Class [IIndexBitmapConverter](../../../aspose.pdf/iindexbitmapconverter/) +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::SaveAsTIFF(System::SharedPtr\) method + + +Converts each pages of a pdf document to images and saves images to a single TIFF stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::SaveAsTIFF(System::SharedPtr outputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputStream | System::SharedPtr\ | The stream to save the TIFF image. | +## Remarks + + + + + + outputStream + + + The stream to save the TIFF image. + + + +## See Also + +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::SaveAsTIFF(System::SharedPtr\, Aspose::Pdf::Devices::CompressionType) method + + +Converts each pages of a pdf document to images and saves images to a single TIFF file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::SaveAsTIFF(System::SharedPtr outputStream, Aspose::Pdf::Devices::CompressionType compressionType) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputStream | System::SharedPtr\ | The output stream. | +| compressionType | Aspose::Pdf::Devices::CompressionType | Type of the compression. | +## Remarks + + + + + + outputStream + + + The output stream. + + + + + compressionType + + + Type of the compression. + + + +## See Also + +* Enum [CompressionType](../../../aspose.pdf.devices/compressiontype/) +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::SaveAsTIFF(System::SharedPtr\, System::SharedPtr\) method + + +Converts each pages of a pdf document to images with page size and saves images to a single TIFF stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::SaveAsTIFF(System::SharedPtr outputStream, System::SharedPtr pageSize) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputStream | System::SharedPtr\ | The stream to save the TIFF image. | +| pageSize | System::SharedPtr\ | The page size of the image. | +## Remarks + + + + + + outputStream + + + The stream to save the TIFF image. + + + + + pageSize + + + The page size of the image. + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::SaveAsTIFF(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) method + + +Converts each pages of a pdf document to images with page size and saves images to a single TIFF stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::SaveAsTIFF(System::SharedPtr outputStream, System::SharedPtr pageSize, System::SharedPtr settings) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputStream | System::SharedPtr\ | The stream to save the TIFF image. | +| pageSize | System::SharedPtr\ | The page size of the image. | +| settings | System::SharedPtr\ | Settings object that defines TIFF parameters. | +## Remarks + + + + + + outputStream + + + The stream to save the TIFF image. + + + + + pageSize + + + The page size of the image. + + + + + settings + + + Settings object that defines TIFF parameters. + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [TiffSettings](../../../aspose.pdf.devices/tiffsettings/) +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::SaveAsTIFF(System::SharedPtr\, int32_t, int32_t) method + + +Converts each pages of a pdf document to images with dimensions, and saves images to a single TIFF stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::SaveAsTIFF(System::SharedPtr outputStream, int32_t imageWidth, int32_t imageHeight) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputStream | System::SharedPtr\ | The stream to save the TIFF image. | +| imageWidth | int32_t | The image width, the unit is pixel. | +| imageHeight | int32_t | The image height, the unit is pixel. | +## Remarks + + + + + + outputStream + + + The stream to save the TIFF image. + + + + + imageWidth + + + The image width, the unit is pixel. + + + + + imageHeight + + + The image height, the unit is pixel. + + + +## See Also + +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::SaveAsTIFF(System::SharedPtr\, int32_t, int32_t, Aspose::Pdf::Devices::CompressionType) method + + +Converts each pages of a pdf document to images with dimensions, and saves images to a single TIFF stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::SaveAsTIFF(System::SharedPtr outputStream, int32_t imageWidth, int32_t imageHeight, Aspose::Pdf::Devices::CompressionType compressionType) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputStream | System::SharedPtr\ | The stream to save the TIFF image. | +| imageWidth | int32_t | The image width, the unit is pixel. | +| imageHeight | int32_t | The image height, the unit is pixel. | +| compressionType | Aspose::Pdf::Devices::CompressionType | Type of the compression. | +## Remarks + + + + + + outputStream + + + The stream to save the TIFF image. + + + + + imageWidth + + + The image width, the unit is pixel. + + + + + imageHeight + + + The image height, the unit is pixel. + + + + + compressionType + + + Type of the compression. + + + +## See Also + +* Enum [CompressionType](../../../aspose.pdf.devices/compressiontype/) +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::SaveAsTIFF(System::SharedPtr\, int32_t, int32_t, System::SharedPtr\) method + + +Converts each pages of a pdf document to images with dimensions, and saves images to a single TIFF stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::SaveAsTIFF(System::SharedPtr outputStream, int32_t imageWidth, int32_t imageHeight, System::SharedPtr settings) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputStream | System::SharedPtr\ | The stream to save the TIFF image. | +| imageWidth | int32_t | The image width, the unit is pixel. | +| imageHeight | int32_t | The image height, the unit is pixel. | +| settings | System::SharedPtr\ | Settings object that defines TIFF parameters. | +## Remarks + + + + + + outputStream + + + The stream to save the TIFF image. + + + + + imageWidth + + + The image width, the unit is pixel. + + + + + imageHeight + + + The image height, the unit is pixel. + + + + + settings + + + Settings object that defines TIFF parameters. + + + +## See Also + +* Class [TiffSettings](../../../aspose.pdf.devices/tiffsettings/) +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::SaveAsTIFF(System::SharedPtr\, int32_t, int32_t, System::SharedPtr\, System::SharedPtr\) method + + +Converts each pages of a pdf document to images with dimensions, and saves images to a single TIFF stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::SaveAsTIFF(System::SharedPtr outputStream, int32_t imageWidth, int32_t imageHeight, System::SharedPtr settings, System::SharedPtr converter) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputStream | System::SharedPtr\ | The stream to save the TIFF image. | +| imageWidth | int32_t | The image width, the unit is pixel. | +| imageHeight | int32_t | The image height, the unit is pixel. | +| settings | System::SharedPtr\ | Settings object that defines TIFF parameters. | +| converter | System::SharedPtr\ | External converter | +## Remarks + + + + + + outputStream + + + The stream to save the TIFF image. + + + + + imageWidth + + + The image width, the unit is pixel. + + + + + imageHeight + + + The image height, the unit is pixel. + + + + + settings + + + Settings object that defines TIFF parameters. + + + + + converter + + + External converter + + + +## See Also + +* Class [TiffSettings](../../../aspose.pdf.devices/tiffsettings/) +* Class [IIndexBitmapConverter](../../../aspose.pdf/iindexbitmapconverter/) +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::SaveAsTIFF(System::String, System::SharedPtr\) method + + +Converts each pages of a pdf document to images with and saves images to a single TIFF file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::SaveAsTIFF(System::String outputFile, System::SharedPtr settings) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputFile | System::String | The file name to save the TIFF image | +| settings | System::SharedPtr\ | Settings object that defines TIFF parameters. | +## Remarks + + + + + + outputFile + + + The file name to save the TIFF image + + + + + settings + + + Settings object that defines TIFF parameters. + + + +## See Also + +* Class [TiffSettings](../../../aspose.pdf.devices/tiffsettings/) +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::SaveAsTIFF(System::String, System::SharedPtr\, System::SharedPtr\) method + + +Converts each pages of a pdf document to images with and saves images to a single TIFF file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::SaveAsTIFF(System::String outputFile, System::SharedPtr settings, System::SharedPtr converter) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputFile | System::String | The file name to save the TIFF image | +| settings | System::SharedPtr\ | Settings object that defines TIFF parameters. | +| converter | System::SharedPtr\ | External converter | +## Remarks + + + + + + outputFile + + + The file name to save the TIFF image + + + + + settings + + + Settings object that defines TIFF parameters. + + + + + converter + + + External converter + + + +## See Also + +* Class [TiffSettings](../../../aspose.pdf.devices/tiffsettings/) +* Class [IIndexBitmapConverter](../../../aspose.pdf/iindexbitmapconverter/) +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::SaveAsTIFF(System::SharedPtr\, System::SharedPtr\) method + + +Converts each pages of a pdf document to images and saves images to a single TIFF stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::SaveAsTIFF(System::SharedPtr outputStream, System::SharedPtr settings) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputStream | System::SharedPtr\ | The stream to save the TIFF image. | +| settings | System::SharedPtr\ | Settings object that defines TIFF parameters. | +## Remarks + + + + + + outputStream + + + The stream to save the TIFF image. + + + + + settings + + + Settings object that defines TIFF parameters. + + + +## See Also + +* Class [TiffSettings](../../../aspose.pdf.devices/tiffsettings/) +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::SaveAsTIFF(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) method + + +Converts each pages of a pdf document to images and saves images to a single TIFF stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::SaveAsTIFF(System::SharedPtr outputStream, System::SharedPtr settings, System::SharedPtr converter) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputStream | System::SharedPtr\ | The stream to save the TIFF image. | +| settings | System::SharedPtr\ | Settings object that defines TIFF parameters. | +| converter | System::SharedPtr\ | External converter | +## Remarks + + + + + + outputStream + + + The stream to save the TIFF image. + + + + + settings + + + Settings object that defines TIFF parameters. + + + + + converter + + + External converter + + + +## See Also + +* Class [TiffSettings](../../../aspose.pdf.devices/tiffsettings/) +* Class [IIndexBitmapConverter](../../../aspose.pdf/iindexbitmapconverter/) +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfconverter/saveastiffclassf/_index.md b/english/cpp/aspose.pdf.facades/pdfconverter/saveastiffclassf/_index.md new file mode 100644 index 0000000000..2c6b9d9040 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfconverter/saveastiffclassf/_index.md @@ -0,0 +1,251 @@ +--- +title: Aspose::Pdf::Facades::PdfConverter::SaveAsTIFFClassF method +linktitle: SaveAsTIFFClassF +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfConverter::SaveAsTIFFClassF method. Converts each pages of a pdf document to images and save images to a single TIFF ClassF file in C++.' +type: docs +weight: 2200 +url: /cpp/aspose.pdf.facades/pdfconverter/saveastiffclassf/ +--- +## PdfConverter::SaveAsTIFFClassF(System::String, int32_t, int32_t) method + + +Converts each pages of a pdf document to images and save images to a single TIFF ClassF file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::SaveAsTIFFClassF(System::String outputFile, int32_t imageWidth, int32_t imageHeight) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputFile | System::String | The stream to save the TIFF image. | +| imageWidth | int32_t | The image width, the unit is pixel. | +| imageHeight | int32_t | The image height, the unit is pixel. | +## Remarks + + + + + + outputFile + + + The stream to save the TIFF image. + + + + + imageWidth + + + The image width, the unit is pixel. + + + + + imageHeight + + + The image height, the unit is pixel. + + + +## See Also + +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::SaveAsTIFFClassF(System::String, System::SharedPtr\) method + + +Converts each pages of a pdf document to images and save images to a single TIFF ClassF file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::SaveAsTIFFClassF(System::String outputFile, System::SharedPtr pageSize) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputFile | System::String | The stream to save the TIFF image. | +| pageSize | System::SharedPtr\ | The page size of the image. | +## Remarks + + + + + + outputFile + + + The stream to save the TIFF image. + + + + + pageSize + + + The page size of the image. + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::SaveAsTIFFClassF(System::SharedPtr\, int32_t, int32_t) method + + +Converts each pages of a pdf document to images and save images to a single TIFF ClassF stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::SaveAsTIFFClassF(System::SharedPtr outputStream, int32_t imageWidth, int32_t imageHeight) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputStream | System::SharedPtr\ | The stream to save the TIFF image. | +| imageWidth | int32_t | The image width, the unit is pixel. | +| imageHeight | int32_t | The image height, the unit is pixel. | +## Remarks + + + + + + outputStream + + + The stream to save the TIFF image. + + + + + imageWidth + + + The image width, the unit is pixel. + + + + + imageHeight + + + The image height, the unit is pixel. + + + +## See Also + +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::SaveAsTIFFClassF(System::SharedPtr\, System::SharedPtr\) method + + +Converts each pages of a pdf document to images and save images to a single TIFF ClassF stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::SaveAsTIFFClassF(System::SharedPtr outputStream, System::SharedPtr pageSize) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputStream | System::SharedPtr\ | The stream to save the TIFF image. | +| pageSize | System::SharedPtr\ | The page size of the image. | +## Remarks + + + + + + outputStream + + + The stream to save the TIFF image. + + + + + pageSize + + + The page size of the image. + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::SaveAsTIFFClassF(System::String) method + + +Converts each pages of a pdf document to images and save images to a single TIFF ClassF file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::SaveAsTIFFClassF(System::String outputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputFile | System::String | The stream to save the TIFF image. | +## Remarks + + + + + + outputFile + + + The stream to save the TIFF image. + + + +## See Also + +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfConverter::SaveAsTIFFClassF(System::SharedPtr\) method + + +Converts each pages of a pdf document to images and save images to a single TIFF ClassF stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::SaveAsTIFFClassF(System::SharedPtr outputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputStream | System::SharedPtr\ | The stream to save the TIFF image. | +## Remarks + + + + + + outputStream + + + The stream to save the TIFF image. + + + +## See Also + +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfconverter/set_coordinatetype/_index.md b/english/cpp/aspose.pdf.facades/pdfconverter/set_coordinatetype/_index.md new file mode 100644 index 0000000000..ecf8b8f3fe --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfconverter/set_coordinatetype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::PdfConverter::set_CoordinateType method +linktitle: set_CoordinateType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfConverter::set_CoordinateType method. Sets the page coordinate type (Media/Crop boxes). CropBox value is used by default in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.facades/pdfconverter/set_coordinatetype/ +--- +## PdfConverter::set_CoordinateType method + + +Sets the page coordinate type (Media/Crop boxes). CropBox value is used by default. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::set_CoordinateType(PageCoordinateType value) +``` + +## See Also + +* Enum [PageCoordinateType](../../../aspose.pdf/pagecoordinatetype/) +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfconverter/set_endpage/_index.md b/english/cpp/aspose.pdf.facades/pdfconverter/set_endpage/_index.md new file mode 100644 index 0000000000..996e4a65fb --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfconverter/set_endpage/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfConverter::set_EndPage method +linktitle: set_EndPage +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfConverter::set_EndPage method. Sets end position which you want to convert in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.facades/pdfconverter/set_endpage/ +--- +## PdfConverter::set_EndPage method + + +Sets end position which you want to convert. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::set_EndPage(int32_t value) +``` + +## See Also + +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfconverter/set_formpresentationmode/_index.md b/english/cpp/aspose.pdf.facades/pdfconverter/set_formpresentationmode/_index.md new file mode 100644 index 0000000000..bf8abe67a5 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfconverter/set_formpresentationmode/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::PdfConverter::set_FormPresentationMode method +linktitle: set_FormPresentationMode +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfConverter::set_FormPresentationMode method. Sets form presentation mode in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.facades/pdfconverter/set_formpresentationmode/ +--- +## PdfConverter::set_FormPresentationMode method + + +Sets form presentation mode. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::set_FormPresentationMode(Aspose::Pdf::Devices::FormPresentationMode value) +``` + +## See Also + +* Enum [FormPresentationMode](../../../aspose.pdf.devices/formpresentationmode/) +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfconverter/set_password/_index.md b/english/cpp/aspose.pdf.facades/pdfconverter/set_password/_index.md new file mode 100644 index 0000000000..5440292618 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfconverter/set_password/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfConverter::set_Password method +linktitle: set_Password +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfConverter::set_Password method. Sets document OwnerPassword in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf.facades/pdfconverter/set_password/ +--- +## PdfConverter::set_Password method + + +Sets document OwnerPassword. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::set_Password(System::String value) +``` + +## See Also + +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfconverter/set_renderingoptions/_index.md b/english/cpp/aspose.pdf.facades/pdfconverter/set_renderingoptions/_index.md new file mode 100644 index 0000000000..3d5757b6e5 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfconverter/set_renderingoptions/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::PdfConverter::set_RenderingOptions method +linktitle: set_RenderingOptions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfConverter::set_RenderingOptions method. Sets rendering options in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.facades/pdfconverter/set_renderingoptions/ +--- +## PdfConverter::set_RenderingOptions method + + +Sets rendering options. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::set_RenderingOptions(System::SharedPtr value) +``` + +## See Also + +* Class [RenderingOptions](../../../aspose.pdf/renderingoptions/) +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfconverter/set_resolution/_index.md b/english/cpp/aspose.pdf.facades/pdfconverter/set_resolution/_index.md new file mode 100644 index 0000000000..22359f7b19 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfconverter/set_resolution/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::PdfConverter::set_Resolution method +linktitle: set_Resolution +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfConverter::set_Resolution method. Sets resolution during convertting. The higher resolution, the slower convertting speed. The default value is 150 in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.facades/pdfconverter/set_resolution/ +--- +## PdfConverter::set_Resolution method + + +Sets resolution during convertting. The higher resolution, the slower convertting speed. The default value is 150. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::set_Resolution(System::SharedPtr value) +``` + +## See Also + +* Class [Resolution](../../../aspose.pdf.devices/resolution/) +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfconverter/set_showhiddenareas/_index.md b/english/cpp/aspose.pdf.facades/pdfconverter/set_showhiddenareas/_index.md new file mode 100644 index 0000000000..1a5fff1639 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfconverter/set_showhiddenareas/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::PdfConverter::set_ShowHiddenAreas method +linktitle: set_ShowHiddenAreas +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfConverter::set_ShowHiddenAreas method. Sets flag that controls visibility of hidden areas on the page in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.facades/pdfconverter/set_showhiddenareas/ +--- +## PdfConverter::set_ShowHiddenAreas method + + +Sets flag that controls visibility of hidden areas on the page. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::set_ShowHiddenAreas(bool value) +``` + +## Remarks + + + + Deprecated + + CoordinateType property should be used instead of ShowHiddenAreas. + + +## See Also + +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfconverter/set_startpage/_index.md b/english/cpp/aspose.pdf.facades/pdfconverter/set_startpage/_index.md new file mode 100644 index 0000000000..f430005c15 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfconverter/set_startpage/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfConverter::set_StartPage method +linktitle: set_StartPage +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfConverter::set_StartPage method. Sets start position which you want to convert. The minimal value is 1 in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.facades/pdfconverter/set_startpage/ +--- +## PdfConverter::set_StartPage method + + +Sets start position which you want to convert. The minimal value is 1. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::set_StartPage(int32_t value) +``` + +## See Also + +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfconverter/set_userpassword/_index.md b/english/cpp/aspose.pdf.facades/pdfconverter/set_userpassword/_index.md new file mode 100644 index 0000000000..a86dfa4ee2 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfconverter/set_userpassword/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfConverter::set_UserPassword method +linktitle: set_UserPassword +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfConverter::set_UserPassword method. Sets document UserPassword in C++.' +type: docs +weight: 1800 +url: /cpp/aspose.pdf.facades/pdfconverter/set_userpassword/ +--- +## PdfConverter::set_UserPassword method + + +Sets document UserPassword. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfConverter::set_UserPassword(System::String value) +``` + +## See Also + +* Class [PdfConverter](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfextractor/_index.md b/english/cpp/aspose.pdf.facades/pdfextractor/_index.md new file mode 100644 index 0000000000..905e653c48 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfextractor/_index.md @@ -0,0 +1,71 @@ +--- +title: Aspose::Pdf::Facades::PdfExtractor class +linktitle: PdfExtractor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfExtractor class. Class for extracting images and text from PDF document in C++.' +type: docs +weight: 1900 +url: /cpp/aspose.pdf.facades/pdfextractor/ +--- +## PdfExtractor class + + +Class for extracting images and text from PDF document. + +```cpp +class PdfExtractor : public Aspose::Pdf::Facades::Facade +``` + +## Methods + +| Method | Description | +| --- | --- | +| [BindPdf](./bindpdf/)(System::String) override | Bind input PDF file. | +| [BindPdf](./bindpdf/)(System::SharedPtr\) override | Binds PDF document from stream. | +| [BindPdf](../facade/bindpdf/)(System::SharedPtr\) override | Initializes the facade. | +| virtual [BindPdf](../ifacade/bindpdf/)(System::SharedPtr\) | Binds PDF document for editing. | +| [Close](../facade/close/)() override | Disposes [Aspose.Pdf.Document](../../aspose.pdf/document/) bound with a facade. | +| [Dispose](../facade/dispose/)() override | Disposes the facade. | +| [ExtractAttachment](./extractattachment/)() | Extracts attachments from a [Pdf](../../aspose.pdf/) document. | +| [ExtractAttachment](./extractattachment/)(System::String) | Extracts attachment to PDF file by attachment name. | +| [ExtractImage](./extractimage/)() | Extract images from PDF file. | +| [ExtractText](./extracttext/)() | Extracts text from a [Pdf](../../aspose.pdf/) document using Unicode encoding. | +| [ExtractText](./extracttext/)(System::SharedPtr\) | Extracts text from a [Pdf](../../aspose.pdf/) document using specified encoding. | +| [get_Document](../facade/get_document/)() const | Gets the document facade is working on. | +| [get_EndPage](./get_endpage/)() const | Gets end page in the page range where extracting operation will be performed. | +| [get_ExtractImageMode](./get_extractimagemode/)() const | Sets the mode for extract images process. | +| [get_ExtractTextMode](./get_extracttextmode/)() const | Sets the mode for extract text's result. | +| [get_IsBidi](./get_isbidi/)() | Is true when text has hebriew or arabic symbols. This case must be specially considered because string functions change their behaviour and start process text from right to left (except numbers and other non text chars). | +| [get_Password](./get_password/)() const | Gets input file's password. | +| [get_Resolution](./get_resolution/)() const | Set or gets resolution for extracted images. Default value is 150. Images which have greater resolution value are more clear. However increasing resolution value results in increasing time and memory needed to extract images. Usually to get clear image it's enough to set resolution to 150 or 300. | +| [get_StartPage](./get_startpage/)() const | Gets start page in the page range where extracting operation will be performed. | +| [get_TextSearchOptions](./get_textsearchoptions/)() const | Gets text search options. | +| [GetAttachment](./getattachment/)(System::String) | Stores attachment into file. | +| [GetAttachment](./getattachment/)() | Saves all the attachment file to streams. | +| [GetAttachmentInfo](./getattachmentinfo/)() | Gets the list of attachments. | +| [GetAttachNames](./getattachnames/)() | Returns list of attachments in PDF file. [Note](../../aspose.pdf/note/): ExtractAttachments must be called before using this method. | +| [GetNextImage](./getnextimage/)(System::String) | Retrieves next image from PDF document. [Note](../../aspose.pdf/note/): ExtractImage must be called before using of this method. | +| [GetNextImage](./getnextimage/)(System::String, System::SharedPtr\) | Retrieves next image from PDF document with given image format. [Note](../../aspose.pdf/note/): ExtractImage must be called before using of this method. | +| [GetNextImage](./getnextimage/)(System::SharedPtr\, System::SharedPtr\) | Retrieve next image from PDF file and stores it into stream with given image format. | +| [GetNextImage](./getnextimage/)(System::SharedPtr\) | Retrieve next image from PDF file and stores it into stream. | +| [GetNextPageText](./getnextpagetext/)(System::String) | Saves one page's text to file. | +| [GetNextPageText](./getnextpagetext/)(System::SharedPtr\) | Saves one page's text to stream. | +| [GetText](./gettext/)(System::String) | Saves text to file. see also:[ExtractText](./extracttext/) | +| [GetText](./gettext/)(System::SharedPtr\) | Saves text to stream. see also:[ExtractText](./extracttext/) | +| [GetText](./gettext/)(System::SharedPtr\, bool) | Saves text to stream. see also:[ExtractText](./extracttext/) | +| [HasNextImage](./hasnextimage/)() | Checks if more images are accessible in PDF document. [Note](../../aspose.pdf/note/): ExtractImage must be called before using of this method. | +| [HasNextPageText](./hasnextpagetext/)() | Indicates that whether can get more texts or not. | +| [PdfExtractor](./pdfextractor/)() | Initializes new [PdfExtractor](./) object. | +| [PdfExtractor](./pdfextractor/)(System::SharedPtr\) | Initializes new [PdfExtractor](./) object on base of the *document* . | +| [set_EndPage](./set_endpage/)(int32_t) | Sets end page in the page range where extracting operation will be performed. | +| [set_ExtractImageMode](./set_extractimagemode/)(Aspose::Pdf::ExtractImageMode) | Sets the mode for extract images process. | +| [set_ExtractTextMode](./set_extracttextmode/)(int32_t) | Sets the mode for extract text's result. | +| [set_Password](./set_password/)(System::String) | Sets input file's password. | +| [set_Resolution](./set_resolution/)(int32_t) | Set or gets resolution for extracted images. Default value is 150. Images which have greater resolution value are more clear. However increasing resolution value results in increasing time and memory needed to extract images. Usually to get clear image it's enough to set resolution to 150 or 300. | +| [set_StartPage](./set_startpage/)(int32_t) | Sets start page in the page range where extracting operation will be performed. | +| [set_TextSearchOptions](./set_textsearchoptions/)(System::SharedPtr\) | Sets text search options. | +## See Also + +* Class [Facade](../facade/) +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/pdfextractor/bindpdf/_index.md b/english/cpp/aspose.pdf.facades/pdfextractor/bindpdf/_index.md new file mode 100644 index 0000000000..d27047bf0d --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfextractor/bindpdf/_index.md @@ -0,0 +1,71 @@ +--- +title: Aspose::Pdf::Facades::PdfExtractor::BindPdf method +linktitle: BindPdf +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfExtractor::BindPdf method. Bind input PDF file in C++.' +type: docs +weight: 1800 +url: /cpp/aspose.pdf.facades/pdfextractor/bindpdf/ +--- +## PdfExtractor::BindPdf(System::String) method + + +Bind input PDF file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfExtractor::BindPdf(System::String inputFile) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | PDF file to bind | +## Remarks + + + + + + inputFile + + + PDF file to bind + + + +## See Also + +* Class [PdfExtractor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfExtractor::BindPdf(System::SharedPtr\) method + + +Binds PDF document from stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfExtractor::BindPdf(System::SharedPtr inputStream) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Stream containing PDF document data | +## Remarks + + + + + + inputStream + + + Stream containing PDF document data + + + +## See Also + +* Class [PdfExtractor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfextractor/extractattachment/_index.md b/english/cpp/aspose.pdf.facades/pdfextractor/extractattachment/_index.md new file mode 100644 index 0000000000..41fd81145e --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfextractor/extractattachment/_index.md @@ -0,0 +1,54 @@ +--- +title: Aspose::Pdf::Facades::PdfExtractor::ExtractAttachment method +linktitle: ExtractAttachment +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfExtractor::ExtractAttachment method. Extracts attachments from a Pdf document in C++.' +type: docs +weight: 2300 +url: /cpp/aspose.pdf.facades/pdfextractor/extractattachment/ +--- +## PdfExtractor::ExtractAttachment() method + + +Extracts attachments from a [Pdf](../../../aspose.pdf/) document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfExtractor::ExtractAttachment() +``` + +## See Also + +* Class [PdfExtractor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfExtractor::ExtractAttachment(System::String) method + + +Extracts attachment to PDF file by attachment name. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfExtractor::ExtractAttachment(System::String attachmentFileName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| attachmentFileName | System::String | Name of attachment to extract | +## Remarks + + + + + + attachmentFileName + + + Name of attachment to extract + + + +## See Also + +* Class [PdfExtractor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfextractor/extractimage/_index.md b/english/cpp/aspose.pdf.facades/pdfextractor/extractimage/_index.md new file mode 100644 index 0000000000..30941028d0 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfextractor/extractimage/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfExtractor::ExtractImage method +linktitle: ExtractImage +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfExtractor::ExtractImage method. Extract images from PDF file in C++.' +type: docs +weight: 1900 +url: /cpp/aspose.pdf.facades/pdfextractor/extractimage/ +--- +## PdfExtractor::ExtractImage method + + +Extract images from PDF file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfExtractor::ExtractImage() +``` + +## See Also + +* Class [PdfExtractor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfextractor/extracttext/_index.md b/english/cpp/aspose.pdf.facades/pdfextractor/extracttext/_index.md new file mode 100644 index 0000000000..399630a396 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfextractor/extracttext/_index.md @@ -0,0 +1,54 @@ +--- +title: Aspose::Pdf::Facades::PdfExtractor::ExtractText method +linktitle: ExtractText +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfExtractor::ExtractText method. Extracts text from a Pdf document using Unicode encoding in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf.facades/pdfextractor/extracttext/ +--- +## PdfExtractor::ExtractText() method + + +Extracts text from a [Pdf](../../../aspose.pdf/) document using Unicode encoding. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfExtractor::ExtractText() +``` + +## See Also + +* Class [PdfExtractor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfExtractor::ExtractText(System::SharedPtr\) method + + +Extracts text from a [Pdf](../../../aspose.pdf/) document using specified encoding. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfExtractor::ExtractText(System::SharedPtr encoding) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| encoding | System::SharedPtr\ | The encoding of the extracted text. | +## Remarks + + + + + + encoding + + + The encoding of the extracted text. + + + +## See Also + +* Class [PdfExtractor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfextractor/get_endpage/_index.md b/english/cpp/aspose.pdf.facades/pdfextractor/get_endpage/_index.md new file mode 100644 index 0000000000..477f37f2d7 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfextractor/get_endpage/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfExtractor::get_EndPage method +linktitle: get_EndPage +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfExtractor::get_EndPage method. Gets end page in the page range where extracting operation will be performed in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.facades/pdfextractor/get_endpage/ +--- +## PdfExtractor::get_EndPage method + + +Gets end page in the page range where extracting operation will be performed. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfExtractor::get_EndPage() const +``` + +## See Also + +* Class [PdfExtractor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfextractor/get_extractimagemode/_index.md b/english/cpp/aspose.pdf.facades/pdfextractor/get_extractimagemode/_index.md new file mode 100644 index 0000000000..37216124e1 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfextractor/get_extractimagemode/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Facades::PdfExtractor::get_ExtractImageMode method +linktitle: get_ExtractImageMode +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfExtractor::get_ExtractImageMode method. Sets the mode for extract images process in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.facades/pdfextractor/get_extractimagemode/ +--- +## PdfExtractor::get_ExtractImageMode method + + +Sets the mode for extract images process. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::ExtractImageMode Aspose::Pdf::Facades::PdfExtractor::get_ExtractImageMode() const +``` + +## Remarks + + +Default value is [ExtractImageMode.DefinedInResources](../../../aspose.pdf/extractimagemode/) that extracts all images defined in resources. + +To extract actually shown images [ExtractImageMode.ActuallyUsed](../../../aspose.pdf/extractimagemode/) mode should be used. +## See Also + +* Enum [ExtractImageMode](../../../aspose.pdf/extractimagemode/) +* Class [PdfExtractor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfextractor/get_extracttextmode/_index.md b/english/cpp/aspose.pdf.facades/pdfextractor/get_extracttextmode/_index.md new file mode 100644 index 0000000000..f090021c8a --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfextractor/get_extracttextmode/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Facades::PdfExtractor::get_ExtractTextMode method +linktitle: get_ExtractTextMode +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfExtractor::get_ExtractTextMode method. Sets the mode for extract text''s result in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.facades/pdfextractor/get_extracttextmode/ +--- +## PdfExtractor::get_ExtractTextMode method + + +Sets the mode for extract text's result. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfExtractor::get_ExtractTextMode() const +``` + +## Remarks + + +0 is pure text mode and 1 is raw ordering mode. Default is 0. +## See Also + +* Class [PdfExtractor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfextractor/get_isbidi/_index.md b/english/cpp/aspose.pdf.facades/pdfextractor/get_isbidi/_index.md new file mode 100644 index 0000000000..2ebe77048f --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfextractor/get_isbidi/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfExtractor::get_IsBidi method +linktitle: get_IsBidi +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfExtractor::get_IsBidi method. Is true when text has hebriew or arabic symbols. This case must be specially considered because string functions change their behaviour and start process text from right to left (except numbers and other non text chars) in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.facades/pdfextractor/get_isbidi/ +--- +## PdfExtractor::get_IsBidi method + + +Is true when text has hebriew or arabic symbols. This case must be specially considered because string functions change their behaviour and start process text from right to left (except numbers and other non text chars). + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfExtractor::get_IsBidi() +``` + +## See Also + +* Class [PdfExtractor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfextractor/get_password/_index.md b/english/cpp/aspose.pdf.facades/pdfextractor/get_password/_index.md new file mode 100644 index 0000000000..95ed5b9826 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfextractor/get_password/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfExtractor::get_Password method +linktitle: get_Password +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfExtractor::get_Password method. Gets input file''s password in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.facades/pdfextractor/get_password/ +--- +## PdfExtractor::get_Password method + + +Gets input file's password. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::PdfExtractor::get_Password() const +``` + +## See Also + +* Class [PdfExtractor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfextractor/get_resolution/_index.md b/english/cpp/aspose.pdf.facades/pdfextractor/get_resolution/_index.md new file mode 100644 index 0000000000..ee96f2858a --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfextractor/get_resolution/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfExtractor::get_Resolution method +linktitle: get_Resolution +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfExtractor::get_Resolution method. Set or gets resolution for extracted images. Default value is 150. Images which have greater resolution value are more clear. However increasing resolution value results in increasing time and memory needed to extract images. Usually to get clear image it''s enough to set resolution to 150 or 300 in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.facades/pdfextractor/get_resolution/ +--- +## PdfExtractor::get_Resolution method + + +Set or gets resolution for extracted images. Default value is 150. Images which have greater resolution value are more clear. However increasing resolution value results in increasing time and memory needed to extract images. Usually to get clear image it's enough to set resolution to 150 or 300. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfExtractor::get_Resolution() const +``` + +## See Also + +* Class [PdfExtractor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfextractor/get_startpage/_index.md b/english/cpp/aspose.pdf.facades/pdfextractor/get_startpage/_index.md new file mode 100644 index 0000000000..03e3c0518d --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfextractor/get_startpage/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfExtractor::get_StartPage method +linktitle: get_StartPage +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfExtractor::get_StartPage method. Gets start page in the page range where extracting operation will be performed in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.facades/pdfextractor/get_startpage/ +--- +## PdfExtractor::get_StartPage method + + +Gets start page in the page range where extracting operation will be performed. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfExtractor::get_StartPage() const +``` + +## See Also + +* Class [PdfExtractor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfextractor/get_textsearchoptions/_index.md b/english/cpp/aspose.pdf.facades/pdfextractor/get_textsearchoptions/_index.md new file mode 100644 index 0000000000..3acc666c80 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfextractor/get_textsearchoptions/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::PdfExtractor::get_TextSearchOptions method +linktitle: get_TextSearchOptions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfExtractor::get_TextSearchOptions method. Gets text search options in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.facades/pdfextractor/get_textsearchoptions/ +--- +## PdfExtractor::get_TextSearchOptions method + + +Gets text search options. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::PdfExtractor::get_TextSearchOptions() const +``` + +## See Also + +* Class [TextSearchOptions](../../../aspose.pdf.text/textsearchoptions/) +* Class [PdfExtractor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfextractor/getattachment/_index.md b/english/cpp/aspose.pdf.facades/pdfextractor/getattachment/_index.md new file mode 100644 index 0000000000..ff8f3fa171 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfextractor/getattachment/_index.md @@ -0,0 +1,59 @@ +--- +title: Aspose::Pdf::Facades::PdfExtractor::GetAttachment method +linktitle: GetAttachment +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfExtractor::GetAttachment method. Stores attachment into file in C++.' +type: docs +weight: 2400 +url: /cpp/aspose.pdf.facades/pdfextractor/getattachment/ +--- +## PdfExtractor::GetAttachment(System::String) method + + +Stores attachment into file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfExtractor::GetAttachment(System::String outputPath) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputPath | System::String | Directory path where attachment(s) will be stored. Null or empty string means attachment(s) will be placed in the application directory. | +## Remarks + + + + + + outputPath + + + Directory path where attachment(s) will be stored. Null or empty string means attachment(s) will be placed in the application directory. + + + +## See Also + +* Class [PdfExtractor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfExtractor::GetAttachment() method + + +Saves all the attachment file to streams. + +```cpp +ASPOSE_PDF_SHARED_API System::ArrayPtr> Aspose::Pdf::Facades::PdfExtractor::GetAttachment() +``` + + +### ReturnValue + +The stream array of the attachment file in the pdf document. + +## See Also + +* Class [PdfExtractor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfextractor/getattachmentinfo/_index.md b/english/cpp/aspose.pdf.facades/pdfextractor/getattachmentinfo/_index.md new file mode 100644 index 0000000000..09725d2f44 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfextractor/getattachmentinfo/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Facades::PdfExtractor::GetAttachmentInfo method +linktitle: GetAttachmentInfo +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfExtractor::GetAttachmentInfo method. Gets the list of attachments in C++.' +type: docs +weight: 2800 +url: /cpp/aspose.pdf.facades/pdfextractor/getattachmentinfo/ +--- +## PdfExtractor::GetAttachmentInfo method + + +Gets the list of attachments. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr>> Aspose::Pdf::Facades::PdfExtractor::GetAttachmentInfo() +``` + + +### ReturnValue + +Returns a List>. + +## See Also + +* Class [FileSpecification](../../../aspose.pdf/filespecification/) +* Class [PdfExtractor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfextractor/getattachnames/_index.md b/english/cpp/aspose.pdf.facades/pdfextractor/getattachnames/_index.md new file mode 100644 index 0000000000..3a23736cb1 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfextractor/getattachnames/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Facades::PdfExtractor::GetAttachNames method +linktitle: GetAttachNames +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfExtractor::GetAttachNames method. Returns list of attachments in PDF file. Note: ExtractAttachments must be called before using this method in C++.' +type: docs +weight: 2200 +url: /cpp/aspose.pdf.facades/pdfextractor/getattachnames/ +--- +## PdfExtractor::GetAttachNames method + + +Returns list of attachments in PDF file. [Note](../../../aspose.pdf/note/): ExtractAttachments must be called before using this method. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr> Aspose::Pdf::Facades::PdfExtractor::GetAttachNames() +``` + + +### ReturnValue + +List of attachments + +## See Also + +* Class [PdfExtractor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfextractor/getnextimage/_index.md b/english/cpp/aspose.pdf.facades/pdfextractor/getnextimage/_index.md new file mode 100644 index 0000000000..42a967bf7e --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfextractor/getnextimage/_index.md @@ -0,0 +1,167 @@ +--- +title: Aspose::Pdf::Facades::PdfExtractor::GetNextImage method +linktitle: GetNextImage +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfExtractor::GetNextImage method. Retrieves next image from PDF document. Note: ExtractImage must be called before using of this method in C++.' +type: docs +weight: 2100 +url: /cpp/aspose.pdf.facades/pdfextractor/getnextimage/ +--- +## PdfExtractor::GetNextImage(System::String) method + + +Retrieves next image from PDF document. [Note](../../../aspose.pdf/note/): ExtractImage must be called before using of this method. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfExtractor::GetNextImage(System::String outputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputFile | System::String | File where image will be stored | + +### ReturnValue + +True is image is successfully extracted +## Remarks + + + + + + outputFile + + + File where image will be stored + + + +## See Also + +* Class [PdfExtractor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfExtractor::GetNextImage(System::String, System::SharedPtr\) method + + +Retrieves next image from PDF document with given image format. [Note](../../../aspose.pdf/note/): ExtractImage must be called before using of this method. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfExtractor::GetNextImage(System::String outputFile, System::SharedPtr format) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputFile | System::String | File where image will be stored | +| format | System::SharedPtr\ | The format of the image. | + +### ReturnValue + +True is image is successfully extracted +## Remarks + + + + + + outputFile + + + File where image will be stored + + + + + format + + + The format of the image. + + + +## See Also + +* Class [PdfExtractor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfExtractor::GetNextImage(System::SharedPtr\, System::SharedPtr\) method + + +Retrieve next image from PDF file and stores it into stream with given image format. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfExtractor::GetNextImage(System::SharedPtr outputStream, System::SharedPtr format) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputStream | System::SharedPtr\ | Stream where image data will be saved | +| format | System::SharedPtr\ | The format of the image. | + +### ReturnValue + +True in case the image is successfully extracted. +## Remarks + + + + + + outputStream + + + Stream where image data will be saved + + + + + format + + + The format of the image. + + + +## See Also + +* Class [PdfExtractor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfExtractor::GetNextImage(System::SharedPtr\) method + + +Retrieve next image from PDF file and stores it into stream. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfExtractor::GetNextImage(System::SharedPtr outputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputStream | System::SharedPtr\ | Stream where image data will be saved | + +### ReturnValue + +True in case the image is successfully extracted. +## Remarks + + + + + + outputStream + + + Stream where image data will be saved + + + +## See Also + +* Class [PdfExtractor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfextractor/getnextpagetext/_index.md b/english/cpp/aspose.pdf.facades/pdfextractor/getnextpagetext/_index.md new file mode 100644 index 0000000000..b1717653c9 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfextractor/getnextpagetext/_index.md @@ -0,0 +1,71 @@ +--- +title: Aspose::Pdf::Facades::PdfExtractor::GetNextPageText method +linktitle: GetNextPageText +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfExtractor::GetNextPageText method. Saves one page''s text to file in C++.' +type: docs +weight: 2600 +url: /cpp/aspose.pdf.facades/pdfextractor/getnextpagetext/ +--- +## PdfExtractor::GetNextPageText(System::String) method + + +Saves one page's text to file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfExtractor::GetNextPageText(System::String outputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputFile | System::String | The file path and name to save the text. | +## Remarks + + + + + + outputFile + + + The file path and name to save the text. + + + +## See Also + +* Class [PdfExtractor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfExtractor::GetNextPageText(System::SharedPtr\) method + + +Saves one page's text to stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfExtractor::GetNextPageText(System::SharedPtr outputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputStream | System::SharedPtr\ | The stream to save the text. | +## Remarks + + + + + + outputStream + + + The stream to save the text. + + + +## See Also + +* Class [PdfExtractor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfextractor/gettext/_index.md b/english/cpp/aspose.pdf.facades/pdfextractor/gettext/_index.md new file mode 100644 index 0000000000..5c73357a81 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfextractor/gettext/_index.md @@ -0,0 +1,111 @@ +--- +title: Aspose::Pdf::Facades::PdfExtractor::GetText method +linktitle: GetText +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfExtractor::GetText method. Saves text to file. see also:ExtractText in C++.' +type: docs +weight: 1700 +url: /cpp/aspose.pdf.facades/pdfextractor/gettext/ +--- +## PdfExtractor::GetText(System::String) method + + +Saves text to file. see also:[ExtractText](../extracttext/) + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfExtractor::GetText(System::String outputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputFile | System::String | The file path and name to save the text. | +## Remarks + + + + + + outputFile + + + The file path and name to save the text. + + + +## See Also + +* Class [PdfExtractor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfExtractor::GetText(System::SharedPtr\) method + + +Saves text to stream. see also:[ExtractText](../extracttext/) + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfExtractor::GetText(System::SharedPtr outputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputStream | System::SharedPtr\ | The stream to save the text. | +## Remarks + + + + + + outputStream + + + The stream to save the text. + + + +## See Also + +* Class [PdfExtractor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfExtractor::GetText(System::SharedPtr\, bool) method + + +Saves text to stream. see also:[ExtractText](../extracttext/) + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfExtractor::GetText(System::SharedPtr outputStream, bool filterNotAscii) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputStream | System::SharedPtr\ | The stream to save the text. | +| filterNotAscii | bool | If this parameter is true all Not ASCII symbols will be removed | +## Remarks + + + + + + outputStream + + + The stream to save the text. + + + + + filterNotAscii + + + If this parameter is true all Not ASCII symbols will be removed + + + +## See Also + +* Class [PdfExtractor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfextractor/hasnextimage/_index.md b/english/cpp/aspose.pdf.facades/pdfextractor/hasnextimage/_index.md new file mode 100644 index 0000000000..f7d59b351d --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfextractor/hasnextimage/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Facades::PdfExtractor::HasNextImage method +linktitle: HasNextImage +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfExtractor::HasNextImage method. Checks if more images are accessible in PDF document. Note: ExtractImage must be called before using of this method in C++.' +type: docs +weight: 2000 +url: /cpp/aspose.pdf.facades/pdfextractor/hasnextimage/ +--- +## PdfExtractor::HasNextImage method + + +Checks if more images are accessible in PDF document. [Note](../../../aspose.pdf/note/): ExtractImage must be called before using of this method. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfExtractor::HasNextImage() +``` + + +### ReturnValue + +Trues if more images are accessible + +## See Also + +* Class [PdfExtractor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfextractor/hasnextpagetext/_index.md b/english/cpp/aspose.pdf.facades/pdfextractor/hasnextpagetext/_index.md new file mode 100644 index 0000000000..f2d64e8624 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfextractor/hasnextpagetext/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Facades::PdfExtractor::HasNextPageText method +linktitle: HasNextPageText +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfExtractor::HasNextPageText method. Indicates that whether can get more texts or not in C++.' +type: docs +weight: 2500 +url: /cpp/aspose.pdf.facades/pdfextractor/hasnextpagetext/ +--- +## PdfExtractor::HasNextPageText method + + +Indicates that whether can get more texts or not. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfExtractor::HasNextPageText() +``` + + +### ReturnValue + +Can get more texts or not, true is can, or false. + +## See Also + +* Class [PdfExtractor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfextractor/pdfextractor/_index.md b/english/cpp/aspose.pdf.facades/pdfextractor/pdfextractor/_index.md new file mode 100644 index 0000000000..c743cff584 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfextractor/pdfextractor/_index.md @@ -0,0 +1,56 @@ +--- +title: Aspose::Pdf::Facades::PdfExtractor::PdfExtractor constructor +linktitle: PdfExtractor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfExtractor::PdfExtractor constructor. Initializes new PdfExtractor object in C++.' +type: docs +weight: 2700 +url: /cpp/aspose.pdf.facades/pdfextractor/pdfextractor/ +--- +## PdfExtractor::PdfExtractor() constructor + + +Initializes new [PdfExtractor](../) object. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfExtractor::PdfExtractor() +``` + +## See Also + +* Class [PdfExtractor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfExtractor::PdfExtractor(System::SharedPtr\) constructor + + +Initializes new [PdfExtractor](../) object on base of the *document* . + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfExtractor::PdfExtractor(System::SharedPtr document) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | [Pdf](../../../aspose.pdf/) document. | +## Remarks + + + + + + document + + + + Pdf document. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [PdfExtractor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfextractor/set_endpage/_index.md b/english/cpp/aspose.pdf.facades/pdfextractor/set_endpage/_index.md new file mode 100644 index 0000000000..368ea03aec --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfextractor/set_endpage/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfExtractor::set_EndPage method +linktitle: set_EndPage +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfExtractor::set_EndPage method. Sets end page in the page range where extracting operation will be performed in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.facades/pdfextractor/set_endpage/ +--- +## PdfExtractor::set_EndPage method + + +Sets end page in the page range where extracting operation will be performed. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfExtractor::set_EndPage(int32_t value) +``` + +## See Also + +* Class [PdfExtractor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfextractor/set_extractimagemode/_index.md b/english/cpp/aspose.pdf.facades/pdfextractor/set_extractimagemode/_index.md new file mode 100644 index 0000000000..ab748fcb11 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfextractor/set_extractimagemode/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Facades::PdfExtractor::set_ExtractImageMode method +linktitle: set_ExtractImageMode +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfExtractor::set_ExtractImageMode method. Sets the mode for extract images process in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.facades/pdfextractor/set_extractimagemode/ +--- +## PdfExtractor::set_ExtractImageMode method + + +Sets the mode for extract images process. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfExtractor::set_ExtractImageMode(Aspose::Pdf::ExtractImageMode value) +``` + +## Remarks + + +Default value is [ExtractImageMode.DefinedInResources](../../../aspose.pdf/extractimagemode/) that extracts all images defined in resources. + +To extract actually shown images [ExtractImageMode.ActuallyUsed](../../../aspose.pdf/extractimagemode/) mode should be used. +## See Also + +* Enum [ExtractImageMode](../../../aspose.pdf/extractimagemode/) +* Class [PdfExtractor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfextractor/set_extracttextmode/_index.md b/english/cpp/aspose.pdf.facades/pdfextractor/set_extracttextmode/_index.md new file mode 100644 index 0000000000..f231e66248 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfextractor/set_extracttextmode/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Facades::PdfExtractor::set_ExtractTextMode method +linktitle: set_ExtractTextMode +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfExtractor::set_ExtractTextMode method. Sets the mode for extract text''s result in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.facades/pdfextractor/set_extracttextmode/ +--- +## PdfExtractor::set_ExtractTextMode method + + +Sets the mode for extract text's result. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfExtractor::set_ExtractTextMode(int32_t value) +``` + +## Remarks + + +0 is pure text mode and 1 is raw ordering mode. Default is 0. +## See Also + +* Class [PdfExtractor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfextractor/set_password/_index.md b/english/cpp/aspose.pdf.facades/pdfextractor/set_password/_index.md new file mode 100644 index 0000000000..681914646f --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfextractor/set_password/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfExtractor::set_Password method +linktitle: set_Password +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfExtractor::set_Password method. Sets input file''s password in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.facades/pdfextractor/set_password/ +--- +## PdfExtractor::set_Password method + + +Sets input file's password. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfExtractor::set_Password(System::String value) +``` + +## See Also + +* Class [PdfExtractor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfextractor/set_resolution/_index.md b/english/cpp/aspose.pdf.facades/pdfextractor/set_resolution/_index.md new file mode 100644 index 0000000000..164e6171dc --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfextractor/set_resolution/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfExtractor::set_Resolution method +linktitle: set_Resolution +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfExtractor::set_Resolution method. Set or gets resolution for extracted images. Default value is 150. Images which have greater resolution value are more clear. However increasing resolution value results in increasing time and memory needed to extract images. Usually to get clear image it''s enough to set resolution to 150 or 300 in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.facades/pdfextractor/set_resolution/ +--- +## PdfExtractor::set_Resolution method + + +Set or gets resolution for extracted images. Default value is 150. Images which have greater resolution value are more clear. However increasing resolution value results in increasing time and memory needed to extract images. Usually to get clear image it's enough to set resolution to 150 or 300. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfExtractor::set_Resolution(int32_t value) +``` + +## See Also + +* Class [PdfExtractor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfextractor/set_startpage/_index.md b/english/cpp/aspose.pdf.facades/pdfextractor/set_startpage/_index.md new file mode 100644 index 0000000000..b43c40ebdb --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfextractor/set_startpage/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfExtractor::set_StartPage method +linktitle: set_StartPage +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfExtractor::set_StartPage method. Sets start page in the page range where extracting operation will be performed in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.facades/pdfextractor/set_startpage/ +--- +## PdfExtractor::set_StartPage method + + +Sets start page in the page range where extracting operation will be performed. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfExtractor::set_StartPage(int32_t value) +``` + +## See Also + +* Class [PdfExtractor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfextractor/set_textsearchoptions/_index.md b/english/cpp/aspose.pdf.facades/pdfextractor/set_textsearchoptions/_index.md new file mode 100644 index 0000000000..3877bff684 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfextractor/set_textsearchoptions/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::PdfExtractor::set_TextSearchOptions method +linktitle: set_TextSearchOptions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfExtractor::set_TextSearchOptions method. Sets text search options in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.facades/pdfextractor/set_textsearchoptions/ +--- +## PdfExtractor::set_TextSearchOptions method + + +Sets text search options. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfExtractor::set_TextSearchOptions(System::SharedPtr value) +``` + +## See Also + +* Class [TextSearchOptions](../../../aspose.pdf.text/textsearchoptions/) +* Class [PdfExtractor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/_index.md new file mode 100644 index 0000000000..92a26fe112 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/_index.md @@ -0,0 +1,219 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor class +linktitle: PdfFileEditor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor class. Implements operations with PDF file: concatenation, splitting, extracting pages, making booklet, etc in C++.' +type: docs +weight: 2000 +url: /cpp/aspose.pdf.facades/pdffileeditor/ +--- +## PdfFileEditor class + + +Implements operations with PDF file: concatenation, splitting, extracting pages, making booklet, etc. + +```cpp +class PdfFileEditor : public Aspose::Pdf::LicenseManagement::IVentureLicenseTarget +``` + +## Methods + +| Method | Description | +| --- | --- | +| [AddMargins](./addmargins/)(System::SharedPtr\, System::SharedPtr\, System::ArrayPtr\, double, double, double, double) | Resizes page contents and add specifed margins. Margins are specified in default space units. | +| [AddMargins](./addmargins/)(System::String, System::String, System::ArrayPtr\, double, double, double, double) | Resizes page contents and add specifed margins. Margins are specified in default space units. | +| [AddMarginsPct](./addmarginspct/)(System::SharedPtr\, System::SharedPtr\, System::ArrayPtr\, double, double, double, double) | Resizes page contents and add specified margins. Margins are specified in percents of intitial page size. | +| [AddMarginsPct](./addmarginspct/)(System::String, System::String, System::ArrayPtr\, double, double, double, double) | Resizes page contents and add specified margins. Margins are specified in percents of intitial page size. | +| [AddPageBreak](./addpagebreak/)(System::SharedPtr\, System::SharedPtr\, System::ArrayPtr\\>) | Adds page breaks into document pages. | +| [AddPageBreak](./addpagebreak/)(System::String, System::String, System::ArrayPtr\\>) | Adds page breaks into document pages. | +| [AddPageBreak](./addpagebreak/)(System::SharedPtr\, System::SharedPtr\, System::ArrayPtr\\>) | Adds page breaks into document pages. | +| [Append](./append/)(System::SharedPtr\, System::ArrayPtr\\>, int32_t, int32_t, System::SharedPtr\) | Appends pages, which are chosen from array of documents in portStreams. The result document includes firstInputFile and all portStreams documents pages in the range startPage to endPage. | +| [Append](./append/)(System::String, System::ArrayPtr\, int32_t, int32_t, System::String) | Appends pages, which are chosen from portFiles documents. The result document includes firstInputFile and all portFiles documents pages in the range startPage to endPage. | +| [Append](./append/)(System::String, System::String, int32_t, int32_t, System::String) | Appends pages, which are chosen from portFile within the range from startPage to endPage, in portFile at the end of firstInputFile. | +| [Append](./append/)(System::SharedPtr\, System::SharedPtr\, int32_t, int32_t, System::SharedPtr\) | Appends pages,which are chosen from portStream within the range from startPage to endPage, in portStream at the end of firstInputStream. | +| [Append](./append/)(System::SharedPtr\, System::ArrayPtr\\>, int32_t, int32_t, System::SharedPtr\) | Appends documents to source document and saves result into response object. | +| [Append](./append/)(System::String, System::ArrayPtr\, int32_t, int32_t, System::SharedPtr\) | Appends documents to source document and saves result into HttpResponse object. | +| [Concatenate](./concatenate/)(System::String, System::String, System::String) | Concatenates two files. | +| [Concatenate](./concatenate/)(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) | Concatenates two files. | +| [Concatenate](./concatenate/)(System::ArrayPtr\\>, System::SharedPtr\) | Concatenates documents. | +| [Concatenate](./concatenate/)(System::ArrayPtr\, System::String) | Concatenates files into one file. | +| [Concatenate](./concatenate/)(System::ArrayPtr\\>, System::SharedPtr\) | Concatenates files. | +| [Concatenate](./concatenate/)(System::String, System::String, System::String, System::String) | Merges two [Pdf](../../aspose.pdf/) documents into a new [Pdf](../../aspose.pdf/) document with pages in alternate ways and fill the blank places with blank pages. e.g.: document1 has 5 pages: p1, p2, p3, p4, p5. document2 has 3 pages: p1', p2', p3'. Merging the two [Pdf](../../aspose.pdf/) document will produce the result document with pages:p1, p1', p2, p2', p3, p3', p4, blankpage, p5, blankpage. | +| [Concatenate](./concatenate/)(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) | Merges two [Pdf](../../aspose.pdf/) documents into a new [Pdf](../../aspose.pdf/) document with pages in alternate ways and fill the blank places with blank pages. e.g.: document1 has 5 pages: p1, p2, p3, p4, p5. document2 has 3 pages: p1', p2', p3'. Merging the two [Pdf](../../aspose.pdf/) document will produce the result document with pages:p1, p1', p2, p2', p3, p3', p4, blankpage, p5, blankpage. | +| [Concatenate](./concatenate/)(System::ArrayPtr\, System::SharedPtr\) | Concatenates files and saves reslt into HttpResposnse object. | +| [Concatenate](./concatenate/)(System::ArrayPtr\\>, System::SharedPtr\) | Concatenates files and stores result into HttpResponse object. | +| [Delete](./delete/)(System::String, System::ArrayPtr\, System::String) | Deletes pages specified by number array from input file, saves as a new [Pdf](../../aspose.pdf/) file. | +| [Delete](./delete/)(System::SharedPtr\, System::ArrayPtr\, System::SharedPtr\) | Deletes pages specified by number array from input file, saves as a new [Pdf](../../aspose.pdf/) file. | +| [Delete](./delete/)(System::String, System::ArrayPtr\, System::SharedPtr\) | Deletes specified pages from document and stores result into HttpResponse object. | +| [Delete](./delete/)(System::SharedPtr\, System::ArrayPtr\, System::SharedPtr\) | Deletes specified pages from document and saves result into HttpResponse object. | +| [Extract](./extract/)(System::String, int32_t, int32_t, System::String) | Extracts pages from input file,saves as a new [Pdf](../../aspose.pdf/) file. | +| [Extract](./extract/)(System::String, System::ArrayPtr\, System::String) | Extracts pages specified by number array, saves as a new PDF file. | +| [Extract](./extract/)(System::SharedPtr\, int32_t, int32_t, System::SharedPtr\) | Extracts pages from input file,saves as a new [Pdf](../../aspose.pdf/) file. | +| [Extract](./extract/)(System::SharedPtr\, System::ArrayPtr\, System::SharedPtr\) | Extracts pages specified by number array, saves as a new [Pdf](../../aspose.pdf/) file. | +| [Extract](./extract/)(System::SharedPtr\, System::ArrayPtr\, System::SharedPtr\) | Extracts specified pages form source file and stores result into HttpResponse object. | +| [Extract](./extract/)(System::String, System::ArrayPtr\, System::SharedPtr\) | Extracts specified pages from source file and stores result into HttpResponse object. | +| [get_AllowConcatenateExceptions](./get_allowconcatenateexceptions/)() | If set to true, exceptions are thrown if error occured. Else excetion are not thrown and methods return false if failed. | +| [get_AttachmentName](./get_attachmentname/)() const | Gets name of attachment when result of operation is stored into HttpResponse objects as attachment. | +| [get_CloseConcatenatedStreams](./get_closeconcatenatedstreams/)() const | If set to true, streams are closed after operation. | +| [get_ConcatenationPacketSize](./get_concatenationpacketsize/)() const | Number of documents concatenated before new incremental update was made during concatenation when UseDiskBuffer is set to true. | +| [get_ContentDisposition](./get_contentdisposition/)() const | Gets how content will be stored when result of operation is stored into HttpResponse object. Possible value: inline / attachment. Default: inline. | +| [get_ConversionLog](./get_conversionlog/)() | Gets log of conversion process. | +| [get_CopyLogicalStructure](./get_copylogicalstructure/)() const | If true then logical structure of the file is copied when concatenation is performed. | +| [get_CopyOutlines](./get_copyoutlines/)() const | If true then outlines will be copied. | +| [get_CorruptedFileAction](./get_corruptedfileaction/)() const | This property defines behavior when concatenating process met corrupted file. Possible values are: StopWithError and ConcatenateIgnoringCorrupted. | +| [get_CorruptedItems](./get_corrupteditems/)() | Array of encountered problems when concatenation was performed. For every corrupted document from passed to [Concatenate()](./concatenate/) function new **CorruptedItem** entry is created. This property may be used only when CorruptedFileAction is ConcatenateIgnoringCorrupted. | +| [get_IncrementalUpdates](./get_incrementalupdates/)() const | If true, incremental updates are made during concatenation. | +| [get_KeepActions](./get_keepactions/)() const | If true actions will be copied from source documents. Defaulkt value : true. | +| [get_KeepFieldsUnique](./get_keepfieldsunique/)() const | If true then field names will be made unique when forms are concatenated. Suffixes will be added to field names, suffix template may be specified in UniqueSuffix property. | +| [get_LastException](./get_lastexception/)() const | Gets last occured exception. May be used to check the reason of failure. | +| [get_MergeDuplicateLayers](./get_mergeduplicatelayers/)() const | Optional contents of concatentated documents with equal names will be merged into one layer in resulstant document if this property is true. Else, layers with equal names will be save as different layers in resultant document. | +| [get_MergeDuplicateOutlines](./get_mergeduplicateoutlines/)() const | If true, duplicate outlines are merged. | +| [get_OptimizeSize](./get_optimizesize/)() const | Gets optimization flag. Equal resource streams in resultant file are merged into one PDF object if this flag set. This allows to decrease resultant file size but may cause slower execution and larger memory requirements. Default value: false. | +| [get_OwnerPassword](./get_ownerpassword/)() const | Sets owner's password if the source input [Pdf](../../aspose.pdf/) file is encrypted. This property is not implemented yet. | +| [get_PreserveUserRights](./get_preserveuserrights/)() const | If true, user rights of first document are applied to concatenated document. User rights of all other documents are ignored. | +| [get_RemoveSignatures](./get_removesignatures/)() const | If true, all signatures will be removed from fields (fields will remain); otherwise, you can get invalid signatures. | +| [get_SaveOptions](./get_saveoptions/)() const | Gets save options when result is stored as HttpResponse. Default value: [PdfSaveOptions](../../aspose.pdf/pdfsaveoptions/). | +| [get_UniqueSuffix](./get_uniquesuffix/)() const | Format of the suffix which is added to field name to make it unique when forms are concatenated. This string must contain NUM% substring which will be replaced with numbers. For example if UniqueSuffix = "ABC%NUM%" then for field "fieldName" names will be: fieldNameABC1, fieldNameABC2, fieldNameABC3 etc. | +| [get_UseDiskBuffer](./get_usediskbuffer/)() | If this option used then destination document will be saved on disk periodically and further concatenation will appllied to it as incremental updates. | +| [Insert](./insert/)(System::String, int32_t, System::String, int32_t, int32_t, System::String) | Inserts pages from an other file into the [Pdf](../../aspose.pdf/) file at a position. | +| [Insert](./insert/)(System::SharedPtr\, int32_t, System::SharedPtr\, int32_t, int32_t, System::SharedPtr\) | Inserts pages from an other file into the input [Pdf](../../aspose.pdf/) file. | +| [Insert](./insert/)(System::String, int32_t, System::String, System::ArrayPtr\, System::String) | Inserts pages from an other file into the input [Pdf](../../aspose.pdf/) file. | +| [Insert](./insert/)(System::SharedPtr\, int32_t, System::SharedPtr\, System::ArrayPtr\, System::SharedPtr\) | Inserts pages from an other file into the input [Pdf](../../aspose.pdf/) file. | +| [Insert](./insert/)(System::String, int32_t, System::String, System::ArrayPtr\, System::SharedPtr\) | Inserts contents of file into source file and stores result into HttpResponse object. | +| [Insert](./insert/)(System::SharedPtr\, int32_t, System::SharedPtr\, System::ArrayPtr\, System::SharedPtr\) | Inserts document into other document and stores result into response object. | +| [MakeBooklet](./makebooklet/)(System::String, System::String) | Makes booklet from the input file to output file. | +| [MakeBooklet](./makebooklet/)(System::SharedPtr\, System::SharedPtr\) | Makes booklet from the InputStream to outputStream. | +| [MakeBooklet](./makebooklet/)(System::String, System::String, System::SharedPtr\) | Makes booklet from the inputFile to outputFile. | +| [MakeBooklet](./makebooklet/)(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) | Makes booklet from the input stream and save result into output stream. | +| [MakeBooklet](./makebooklet/)(System::String, System::String, System::ArrayPtr\, System::ArrayPtr\) | Makes customized booklet from the firstInputFile to outputFile. | +| [MakeBooklet](./makebooklet/)(System::SharedPtr\, System::SharedPtr\, System::ArrayPtr\, System::ArrayPtr\) | Makes customized booklet from the firstInputStream to outputStream. | +| [MakeBooklet](./makebooklet/)(System::String, System::String, System::SharedPtr\, System::ArrayPtr\, System::ArrayPtr\) | Makes customized booklet from the firstInputFile to outputFile. | +| [MakeBooklet](./makebooklet/)(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\, System::ArrayPtr\, System::ArrayPtr\) | Makes booklet from the firstInputStream to outputStream. | +| [MakeBooklet](./makebooklet/)(System::String, System::SharedPtr\, System::ArrayPtr\, System::ArrayPtr\, System::SharedPtr\) | Makes booklet from source file and stores result into HttpResponse objects. | +| [MakeBooklet](./makebooklet/)(System::SharedPtr\, System::SharedPtr\, System::ArrayPtr\, System::ArrayPtr\, System::SharedPtr\) | Make booklet from PDF file and stores it into HttpResponse. | +| [MakeBooklet](./makebooklet/)(System::String, System::SharedPtr\, System::SharedPtr\) | Makes booklet from source file and stores result into HttpResponse objects. | +| [MakeBooklet](./makebooklet/)(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) | Makes booklet from source file and stores result into HttpResponse. | +| [MakeNUp](./makenup/)(System::String, System::String, int32_t, int32_t) | Makes N-Up document from the firstInputFile to outputFile. | +| [MakeNUp](./makenup/)(System::SharedPtr\, System::SharedPtr\, int32_t, int32_t) | Makes N-Up document from the input stream and saves result into output stream. | +| [MakeNUp](./makenup/)(System::SharedPtr\, System::SharedPtr\, int32_t, int32_t, System::SharedPtr\) | Makes N-Up document from the first input stream to output stream. | +| [MakeNUp](./makenup/)(System::String, System::String, System::String) | Makes N-Up document from the two input PDF files to outputFile. Each page of outputFile will contain two pages, one page is from the first input file and another is from the second input file. The two pages are piled up horizontally. | +| [MakeNUp](./makenup/)(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) | Makes N-Up document from the two input PDF streams to outputStream. | +| [MakeNUp](./makenup/)(System::ArrayPtr\, System::String, bool) | Makes N-Up document from the multi input PDF files to outputFile. Each page of outputFile will contain multi pages, which are combination with pages in the input files of the same page number. The multi pages piled up horizontally if isSidewise is true and piled up vertically if isSidewise is false. | +| [MakeNUp](./makenup/)(System::ArrayPtr\\>, System::SharedPtr\, bool) | Makes N-Up document from the multi input PDF streams to outputStream. Each page of outputStream will contain multi pages, which are combination with pages in the input streams of the same page number. The multi-pages piled up horizontally if isSidewise is true and piled up vertically if isSidewise is false. | +| [MakeNUp](./makenup/)(System::String, System::String, int32_t, int32_t, System::SharedPtr\) | Makes N-Up document from the input file to outputFile. | +| [MakeNUp](./makenup/)(System::SharedPtr\, int32_t, int32_t, System::SharedPtr\, System::SharedPtr\) | Makes N-up document and stores result into HttpResponse object. | +| [MakeNUp](./makenup/)(System::String, int32_t, int32_t, System::SharedPtr\, System::SharedPtr\) | Makes N-up document and stores result into HttpResponse object. | +| [MakeNUp](./makenup/)(System::String, int32_t, int32_t, System::SharedPtr\) | Makes N-up document and stores result into HttpResponse. | +| [MakeNUp](./makenup/)(System::SharedPtr\, int32_t, int32_t, System::SharedPtr\) | Makes N-up document and stores result into HttpResponse. | +| [PdfFileEditor](./pdffileeditor/)() | [PdfFileEditor](./) constructor. | +| [ResizeContents](./resizecontents/)(System::SharedPtr\, System::SharedPtr\, System::ArrayPtr\, System::SharedPtr\) | Resizes contents of pages of the document. | +| [ResizeContents](./resizecontents/)(System::SharedPtr\, System::SharedPtr\, System::ArrayPtr\, double, double) | Resizes contents of document pages. Shrinks contents of page and adds margins. New size of contents is specified in default space units. | +| [ResizeContents](./resizecontents/)(System::String, System::String, System::ArrayPtr\, double, double) | Resizes contents of document pages. Shrinks contents of page and adds margins. New size of contents is specified in default space units. | +| [ResizeContents](./resizecontents/)(System::String, System::String, System::ArrayPtr\, System::SharedPtr\) | Resizes contents of pages in document. If page is shrinked blank margins are added around the page. | +| [ResizeContents](./resizecontents/)(System::SharedPtr\, System::ArrayPtr\, System::SharedPtr\) | Resizes pages of document. Blank margins are added around of shrinked page. | +| [ResizeContents](./resizecontents/)(System::SharedPtr\, System::SharedPtr\) | Resizes pages of document. Blank margins are added around of shrinked page. | +| [ResizeContents](./resizecontents/)(System::String, System::ArrayPtr\, System::SharedPtr\, System::SharedPtr\) | Resizes contents of pages in document. If page is shrinked blank margins are added around the page. Result is stored into HttpResponse object. | +| [ResizeContents](./resizecontents/)(System::SharedPtr\, System::ArrayPtr\, System::SharedPtr\, System::SharedPtr\) | Resizes contents of pages in document. If page is shrinked blank margins are added around the page. Result is stored into HttpResponse object. | +| [ResizeContentsPct](./resizecontentspct/)(System::SharedPtr\, System::SharedPtr\, System::ArrayPtr\, double, double) | Resizes contents of document pages. Shrinks contents of page and adds margins. New contents size is specified in percents. | +| [ResizeContentsPct](./resizecontentspct/)(System::String, System::String, System::ArrayPtr\, double, double) | Resizes contents of document pages. Shrinks contents of page and adds margins. New contents size is specified in percents. | +| [set_AllowConcatenateExceptions](./set_allowconcatenateexceptions/)(bool) | If set to true, exceptions are thrown if error occured. Else excetion are not thrown and methods return false if failed. | +| [set_AttachmentName](./set_attachmentname/)(System::String) | Sets name of attachment when result of operation is stored into HttpResponse objects as attachment. | +| [set_CloseConcatenatedStreams](./set_closeconcatenatedstreams/)(bool) | If set to true, streams are closed after operation. | +| [set_ConcatenationPacketSize](./set_concatenationpacketsize/)(int32_t) | Number of documents concatenated before new incremental update was made during concatenation when UseDiskBuffer is set to true. | +| [set_ContentDisposition](./set_contentdisposition/)(Aspose::Pdf::ContentDisposition) | Sets how content will be stored when result of operation is stored into HttpResponse object. Possible value: inline / attachment. Default: inline. | +| [set_ConvertTo](./set_convertto/)(PdfFormat) | Sets PDF file format. Result file will be saved in specified file format. If this property is not specified then file will be save in default PDF format without conversion. | +| [set_CopyLogicalStructure](./set_copylogicalstructure/)(bool) | If true then logical structure of the file is copied when concatenation is performed. | +| [set_CopyOutlines](./set_copyoutlines/)(bool) | If true then outlines will be copied. | +| [set_CorruptedFileAction](./set_corruptedfileaction/)(PdfFileEditor::ConcatenateCorruptedFileAction) | This property defines behavior when concatenating process met corrupted file. Possible values are: StopWithError and ConcatenateIgnoringCorrupted. | +| [set_IncrementalUpdates](./set_incrementalupdates/)(bool) | If true, incremental updates are made during concatenation. | +| [set_KeepActions](./set_keepactions/)(bool) | If true actions will be copied from source documents. Defaulkt value : true. | +| [set_KeepFieldsUnique](./set_keepfieldsunique/)(bool) | If true then field names will be made unique when forms are concatenated. Suffixes will be added to field names, suffix template may be specified in UniqueSuffix property. | +| [set_MergeDuplicateLayers](./set_mergeduplicatelayers/)(bool) | Optional contents of concatentated documents with equal names will be merged into one layer in resulstant document if this property is true. Else, layers with equal names will be save as different layers in resultant document. | +| [set_MergeDuplicateOutlines](./set_mergeduplicateoutlines/)(bool) | If true, duplicate outlines are merged. | +| [set_OptimizeSize](./set_optimizesize/)(bool) | Sets optimization flag. Equal resource streams in resultant file are merged into one PDF object if this flag set. This allows to decrease resultant file size but may cause slower execution and larger memory requirements. Default value: false. | +| [set_OwnerPassword](./set_ownerpassword/)(System::String) | Sets owner's password if the source input [Pdf](../../aspose.pdf/) file is encrypted. This property is not implemented yet. | +| [set_PreserveUserRights](./set_preserveuserrights/)(bool) | If true, user rights of first document are applied to concatenated document. User rights of all other documents are ignored. | +| [set_RemoveSignatures](./set_removesignatures/)(bool) | If true, all signatures will be removed from fields (fields will remain); otherwise, you can get invalid signatures. | +| [set_SaveOptions](./set_saveoptions/)(System::SharedPtr\) | Sets save options when result is stored as HttpResponse. Default value: [PdfSaveOptions](../../aspose.pdf/pdfsaveoptions/). | +| [set_UniqueSuffix](./set_uniquesuffix/)(System::String) | Format of the suffix which is added to field name to make it unique when forms are concatenated. This string must contain NUM% substring which will be replaced with numbers. For example if UniqueSuffix = "ABC%NUM%" then for field "fieldName" names will be: fieldNameABC1, fieldNameABC2, fieldNameABC3 etc. | +| [set_UseDiskBuffer](./set_usediskbuffer/)(bool) | If this option used then destination document will be saved on disk periodically and further concatenation will appllied to it as incremental updates. | +| [SplitFromFirst](./splitfromfirst/)(System::String, int32_t, System::String) | Splits [Pdf](../../aspose.pdf/) file from first page to specified location,and saves the front part as a new file. | +| [SplitFromFirst](./splitfromfirst/)(System::SharedPtr\, int32_t, System::SharedPtr\) | Splits from start to specified location,and saves the front part in output Stream. | +| [SplitFromFirst](./splitfromfirst/)(System::String, int32_t, System::SharedPtr\) | Splits document from first page to location and saves result into HttpResponse objects. | +| [SplitFromFirst](./splitfromfirst/)(System::SharedPtr\, int32_t, System::SharedPtr\) | Splits document from start to specified location and stores result into HttpResponse object. | +| [SplitToBulks](./splittobulks/)(System::String, System::ArrayPtr\\>) | Splits the [Pdf](../../aspose.pdf/) file into several documents.The documents can be single-page or multi-pages. | +| [SplitToBulks](./splittobulks/)(System::SharedPtr\, System::ArrayPtr\\>) | Splits the [Pdf](../../aspose.pdf/) file into several documents.The documents can be single-page or multi-pages. | +| [SplitToEnd](./splittoend/)(System::String, int32_t, System::String) | Splits from location, and saves the rear part as a new file. | +| [SplitToEnd](./splittoend/)(System::SharedPtr\, int32_t, System::SharedPtr\) | Splits from specified location, and saves the rear part as a new file Stream. | +| [SplitToEnd](./splittoend/)(System::SharedPtr\, int32_t, System::SharedPtr\) | Splits from specified location, and saves the rear part into HttpResponse object. | +| [SplitToEnd](./splittoend/)(System::String, int32_t, System::SharedPtr\) | Splits from specified location, and saves the rear part into HttpResponse object. | +| [SplitToPages](./splittopages/)(System::String) | Splits the PDF file into single-page documents. | +| [SplitToPages](./splittopages/)(System::SharedPtr\) | Splits the [Pdf](../../aspose.pdf/) file into single-page documents. | +| [SplitToPages](./splittopages/)(System::String, System::String) | Split the [Pdf](../../aspose.pdf/) file into single-page documents and saves it into specified path. Path is specifield by field name temaplate. | +| [SplitToPages](./splittopages/)(System::SharedPtr\, System::String) | Split the [Pdf](../../aspose.pdf/) file into single-page documents and saves it into specified path. Path is specifield by field name temaplate. | +| [TryAppend](./tryappend/)(System::SharedPtr\, System::ArrayPtr\\>, int32_t, int32_t, System::SharedPtr\) | Appends pages, which are chosen from array of documents in portStreams. The result document includes firstInputFile and all portStreams documents pages in the range startPage to endPage. | +| [TryAppend](./tryappend/)(System::String, System::ArrayPtr\, int32_t, int32_t, System::String) | Appends pages, which are chosen from portFiles documents. The result document includes firstInputFile and all portFiles documents pages in the range startPage to endPage. | +| [TryAppend](./tryappend/)(System::SharedPtr\, System::ArrayPtr\\>, int32_t, int32_t, System::SharedPtr\) | Appends documents to source document and saves result into response object. | +| [TryAppend](./tryappend/)(System::String, System::ArrayPtr\, int32_t, int32_t, System::SharedPtr\) | Appends documents to source document and saves result into HttpResponse object. | +| [TryConcatenate](./tryconcatenate/)(System::String, System::String, System::String) | Concatenates two files. | +| [TryConcatenate](./tryconcatenate/)(System::ArrayPtr\\>, System::SharedPtr\) | Concatenates documents. | +| [TryConcatenate](./tryconcatenate/)(System::ArrayPtr\, System::String) | Concatenates files into one file. | +| [TryConcatenate](./tryconcatenate/)(System::ArrayPtr\\>, System::SharedPtr\) | Concatenates files. | +| [TryConcatenate](./tryconcatenate/)(System::String, System::String, System::String, System::String) | Merges two [Pdf](../../aspose.pdf/) documents into a new [Pdf](../../aspose.pdf/) document with pages in alternate ways and fill the blank places with blank pages. e.g.: document1 has 5 pages: p1, p2, p3, p4, p5. document2 has 3 pages: p1', p2', p3'. Merging the two [Pdf](../../aspose.pdf/) document will produce the result document with pages:p1, p1', p2, p2', p3, p3', p4, blankpage, p5, blankpage. | +| [TryConcatenate](./tryconcatenate/)(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) | Merges two [Pdf](../../aspose.pdf/) documents into a new [Pdf](../../aspose.pdf/) document with pages in alternate ways and fill the blank places with blank pages. e.g.: document1 has 5 pages: p1, p2, p3, p4, p5. document2 has 3 pages: p1', p2', p3'. Merging the two [Pdf](../../aspose.pdf/) document will produce the result document with pages:p1, p1', p2, p2', p3, p3', p4, blankpage, p5, blankpage. | +| [TryConcatenate](./tryconcatenate/)(System::ArrayPtr\, System::SharedPtr\) | Concatenates files and saves reslt into HttpResposnse object. | +| [TryConcatenate](./tryconcatenate/)(System::ArrayPtr\\>, System::SharedPtr\) | Concatenates files and stores result into HttpResponse object. | +| [TryDelete](./trydelete/)(System::String, System::ArrayPtr\, System::String) | Deletes pages specified by number array from input file, saves as a new [Pdf](../../aspose.pdf/) file. | +| [TryDelete](./trydelete/)(System::SharedPtr\, System::ArrayPtr\, System::SharedPtr\) | Deletes pages specified by number array from input file, saves as a new [Pdf](../../aspose.pdf/) file. | +| [TryDelete](./trydelete/)(System::String, System::ArrayPtr\, System::SharedPtr\) | Deletes specified pages from document and stores result into HttpResponse object. | +| [TryDelete](./trydelete/)(System::SharedPtr\, System::ArrayPtr\, System::SharedPtr\) | Deletes specified pages from document and saves result into HttpResponse object. | +| [TryExtract](./tryextract/)(System::String, int32_t, int32_t, System::String) | Extracts pages from input file,saves as a new [Pdf](../../aspose.pdf/) file. | +| [TryExtract](./tryextract/)(System::String, System::ArrayPtr\, System::String) | Extracts pages specified by number array, saves as a new PDF file. | +| [TryExtract](./tryextract/)(System::SharedPtr\, System::ArrayPtr\, System::SharedPtr\) | Extracts pages specified by number array, saves as a new [Pdf](../../aspose.pdf/) file. | +| [TryExtract](./tryextract/)(System::SharedPtr\, System::ArrayPtr\, System::SharedPtr\) | Extracts specified pages form source file and stores result into HttpResponse object. | +| [TryExtract](./tryextract/)(System::String, System::ArrayPtr\, System::SharedPtr\) | Extracts specified pages from source file and stores result into HttpResponse object. | +| [TryInsert](./tryinsert/)(System::String, int32_t, System::String, System::ArrayPtr\, System::String) | Inserts pages from an other file into the input [Pdf](../../aspose.pdf/) file. | +| [TryInsert](./tryinsert/)(System::SharedPtr\, int32_t, System::SharedPtr\, System::ArrayPtr\, System::SharedPtr\) | Inserts pages from an other file into the input [Pdf](../../aspose.pdf/) file. | +| [TryInsert](./tryinsert/)(System::String, int32_t, System::String, System::ArrayPtr\, System::SharedPtr\) | Inserts contents of file into source file and stores result into HttpResponse object. | +| [TryInsert](./tryinsert/)(System::SharedPtr\, int32_t, System::SharedPtr\, System::ArrayPtr\, System::SharedPtr\) | Inserts document into other document and stores result into response object. | +| [TryMakeBooklet](./trymakebooklet/)(System::String, System::String) | Makes booklet from the input file to output file. | +| [TryMakeBooklet](./trymakebooklet/)(System::SharedPtr\, System::SharedPtr\) | Makes booklet from the InputStream to outputStream. | +| [TryMakeBooklet](./trymakebooklet/)(System::String, System::String, System::SharedPtr\) | Makes booklet from the inputFile to outputFile. | +| [TryMakeBooklet](./trymakebooklet/)(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) | Makes booklet from the input stream and save result into output stream. | +| [TryMakeBooklet](./trymakebooklet/)(System::String, System::String, System::ArrayPtr\, System::ArrayPtr\) | Makes customized booklet from the firstInputFile to outputFile. | +| [TryMakeBooklet](./trymakebooklet/)(System::SharedPtr\, System::SharedPtr\, System::ArrayPtr\, System::ArrayPtr\) | Makes customized booklet from the firstInputStream to outputStream. | +| [TryMakeBooklet](./trymakebooklet/)(System::String, System::String, System::SharedPtr\, System::ArrayPtr\, System::ArrayPtr\) | Makes customized booklet from the firstInputFile to outputFile. | +| [TryMakeBooklet](./trymakebooklet/)(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\, System::ArrayPtr\, System::ArrayPtr\) | Makes booklet from the firstInputStream to outputStream. | +| [TryMakeBooklet](./trymakebooklet/)(System::String, System::SharedPtr\, System::ArrayPtr\, System::ArrayPtr\, System::SharedPtr\) | Makes booklet from source file and stores result into HttpResponse objects. | +| [TryMakeBooklet](./trymakebooklet/)(System::SharedPtr\, System::SharedPtr\, System::ArrayPtr\, System::ArrayPtr\, System::SharedPtr\) | Make booklet from PDF file and stores it into HttpResponse. | +| [TryMakeBooklet](./trymakebooklet/)(System::String, System::SharedPtr\, System::SharedPtr\) | Makes booklet from source file and stores result into HttpResponse objects. | +| [TryMakeBooklet](./trymakebooklet/)(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) | Makes booklet from source file and stores result into HttpResponse. | +| [TryMakeNUp](./trymakenup/)(System::String, System::String, int32_t, int32_t) | Makes N-Up document from the firstInputFile to outputFile. | +| [TryMakeNUp](./trymakenup/)(System::SharedPtr\, System::SharedPtr\, int32_t, int32_t) | Makes N-Up document from the input stream and saves result into output stream. | +| [TryMakeNUp](./trymakenup/)(System::SharedPtr\, System::SharedPtr\, int32_t, int32_t, System::SharedPtr\) | Makes N-Up document from the first input stream to output stream. | +| [TryMakeNUp](./trymakenup/)(System::String, System::String, System::String) | Makes N-Up document from the two input PDF files to outputFile. Each page of outputFile will contain two pages, one page is from the first input file and another is from the second input file. The two pages are piled up horizontally. | +| [TryMakeNUp](./trymakenup/)(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) | Makes N-Up document from the two input PDF streams to outputStream. | +| [TryMakeNUp](./trymakenup/)(System::ArrayPtr\, System::String, bool) | Makes N-Up document from the multi input PDF files to outputFile. Each page of outputFile will contain multi pages, which are combination with pages in the input files of the same page number. The multi pages piled up horizontally if isSidewise is true and piled up vertically if isSidewise is false. | +| [TryMakeNUp](./trymakenup/)(System::ArrayPtr\\>, System::SharedPtr\, bool) | Makes N-Up document from the multi input PDF streams to outputStream. Each page of outputStream will contain multi pages, which are combination with pages in the input streams of the same page number. The multi-pages piled up horizontally if isSidewise is true and piled up vertically if isSidewise is false. | +| [TryMakeNUp](./trymakenup/)(System::String, System::String, int32_t, int32_t, System::SharedPtr\) | Makes N-Up document from the input file to outputFile. | +| [TryMakeNUp](./trymakenup/)(System::String, int32_t, int32_t, System::SharedPtr\, System::SharedPtr\) | Makes N-up document and stores result into HttpResponse object. | +| [TryMakeNUp](./trymakenup/)(System::SharedPtr\, int32_t, int32_t, System::SharedPtr\, System::SharedPtr\) | Makes N-up document and stores result into HttpResponse object. | +| [TryMakeNUp](./trymakenup/)(System::String, int32_t, int32_t, System::SharedPtr\) | Makes N-up document and stores result into HttpResponse. | +| [TryMakeNUp](./trymakenup/)(System::SharedPtr\, int32_t, int32_t, System::SharedPtr\) | Makes N-up document and stores result into HttpResponse. | +| [TryResizeContents](./tryresizecontents/)(System::SharedPtr\, System::SharedPtr\, System::ArrayPtr\, System::SharedPtr\) | Resizes contents of pages of the document. | +| [TryResizeContents](./tryresizecontents/)(System::SharedPtr\, System::SharedPtr\, System::ArrayPtr\, double, double) | Resizes contents of document pages. Shrinks contents of page and adds margins. New size of contents is specified in default space units. | +| [TryResizeContents](./tryresizecontents/)(System::String, System::String, System::ArrayPtr\, System::SharedPtr\) | Resizes contents of pages in document. If page is shrinked blank margins are added around the page. | +| [TryResizeContents](./tryresizecontents/)(System::String, System::ArrayPtr\, System::SharedPtr\, System::SharedPtr\) | Resizes contents of pages in document. If page is shrinked blank margins are added around the page. Result is stored into HttpResponse object. | +| [TryResizeContents](./tryresizecontents/)(System::SharedPtr\, System::ArrayPtr\, System::SharedPtr\, System::SharedPtr\) | Resizes contents of pages in document. If page is shrinked blank margins are added around the page. Result is stored into HttpResponse object. | +| [TrySplitFromFirst](./trysplitfromfirst/)(System::String, int32_t, System::String) | Splits [Pdf](../../aspose.pdf/) file from first page to specified location,and saves the front part as a new file. | +| [TrySplitFromFirst](./trysplitfromfirst/)(System::SharedPtr\, int32_t, System::SharedPtr\) | Splits from start to specified location,and saves the front part in output Stream. | +| [TrySplitFromFirst](./trysplitfromfirst/)(System::String, int32_t, System::SharedPtr\) | Splits document from first page to location and saves result into HttpResponse objects. | +| [TrySplitFromFirst](./trysplitfromfirst/)(System::SharedPtr\, int32_t, System::SharedPtr\) | Splits document from start to specified location and stores result into HttpResponse object. | +| [TrySplitToEnd](./trysplittoend/)(System::String, int32_t, System::String) | Splits from location, and saves the rear part as a new file. | +| [TrySplitToEnd](./trysplittoend/)(System::SharedPtr\, int32_t, System::SharedPtr\) | Splits from specified location, and saves the rear part as a new file Stream. | +| [TrySplitToEnd](./trysplittoend/)(System::SharedPtr\, int32_t, System::SharedPtr\) | Splits from specified location, and saves the rear part into HttpResponse object. | +| [TrySplitToEnd](./trysplittoend/)(System::String, int32_t, System::SharedPtr\) | Splits from specified location, and saves the rear part into HttpResponse object. | +## See Also + +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/addmargins/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/addmargins/_index.md new file mode 100644 index 0000000000..0717a174ee --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/addmargins/_index.md @@ -0,0 +1,187 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::AddMargins method +linktitle: AddMargins +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::AddMargins method. Resizes page contents and add specifed margins. Margins are specified in default space units in C++.' +type: docs +weight: 5900 +url: /cpp/aspose.pdf.facades/pdffileeditor/addmargins/ +--- +## PdfFileEditor::AddMargins(System::SharedPtr\, System::SharedPtr\, System::ArrayPtr\, double, double, double, double) method + + +Resizes page contents and add specifed margins. Margins are specified in default space units. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::AddMargins(System::SharedPtr source, System::SharedPtr destination, System::ArrayPtr pages, double leftMargin, double rightMargin, double topMargin, double bottomMargin) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| source | System::SharedPtr\ | Stream which contains source document. | +| destination | System::SharedPtr\ | Stream where resultant document will be saved. | +| pages | System::ArrayPtr\ | Array of page indexes. If null then all document pages will be processed. | +| leftMargin | double | Left margin. | +| rightMargin | double | Right margin. | +| topMargin | double | Top margin. | +| bottomMargin | double | Bottom margin. | + +### ReturnValue + +true if operation was successful. +## Remarks + + + + + + source + + + Stream which contains source document. + + + + + destination + + + Stream where resultant document will be saved. + + + + + pages + + + Array of page indexes. If null then all document pages will be processed. + + + + + leftMargin + + + Left margin. + + + + + rightMargin + + + Right margin. + + + + + topMargin + + + Top margin. + + + + + bottomMargin + + + Bottom margin. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::AddMargins(System::String, System::String, System::ArrayPtr\, double, double, double, double) method + + +Resizes page contents and add specifed margins. Margins are specified in default space units. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::AddMargins(System::String source, System::String destination, System::ArrayPtr pages, double leftMargin, double rightMargin, double topMargin, double bottomMargin) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| source | System::String | Path to source document. | +| destination | System::String | Path where resultant document will be saved. | +| pages | System::ArrayPtr\ | Array of page indexes. If null then all document pages will be processed. | +| leftMargin | double | Left margin. | +| rightMargin | double | Right margin. | +| topMargin | double | Top margin. | +| bottomMargin | double | Bottom margin. | + +### ReturnValue + +true if resize was successful. +## Remarks + + + + + + source + + + Path to source document. + + + + + destination + + + Path where resultant document will be saved. + + + + + pages + + + Array of page indexes. If null then all document pages will be processed. + + + + + leftMargin + + + Left margin. + + + + + rightMargin + + + Right margin. + + + + + topMargin + + + Top margin. + + + + + bottomMargin + + + Bottom margin. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/addmarginspct/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/addmarginspct/_index.md new file mode 100644 index 0000000000..8c4c70b1ba --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/addmarginspct/_index.md @@ -0,0 +1,187 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::AddMarginsPct method +linktitle: AddMarginsPct +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::AddMarginsPct method. Resizes page contents and add specified margins. Margins are specified in percents of intitial page size in C++.' +type: docs +weight: 6000 +url: /cpp/aspose.pdf.facades/pdffileeditor/addmarginspct/ +--- +## PdfFileEditor::AddMarginsPct(System::SharedPtr\, System::SharedPtr\, System::ArrayPtr\, double, double, double, double) method + + +Resizes page contents and add specified margins. Margins are specified in percents of intitial page size. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::AddMarginsPct(System::SharedPtr source, System::SharedPtr destination, System::ArrayPtr pages, double leftMargin, double rightMargin, double topMargin, double bottomMargin) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| source | System::SharedPtr\ | Stream which contains source document. | +| destination | System::SharedPtr\ | Stream where resultant document will be saved. | +| pages | System::ArrayPtr\ | Array of page indexes. If null then all document pages will be processed. | +| leftMargin | double | Left margin in percents of initial page size. | +| rightMargin | double | Right margin in percents of initial page size. | +| topMargin | double | Top margin in percents of initial page size. | +| bottomMargin | double | Bottom margin in percents of initial page size. | + +### ReturnValue + +true if action was performed successfully. +## Remarks + + + + + + source + + + Stream which contains source document. + + + + + destination + + + Stream where resultant document will be saved. + + + + + pages + + + Array of page indexes. If null then all document pages will be processed. + + + + + leftMargin + + + Left margin in percents of initial page size. + + + + + rightMargin + + + Right margin in percents of initial page size. + + + + + topMargin + + + Top margin in percents of initial page size. + + + + + bottomMargin + + + Bottom margin in percents of initial page size. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::AddMarginsPct(System::String, System::String, System::ArrayPtr\, double, double, double, double) method + + +Resizes page contents and add specified margins. Margins are specified in percents of intitial page size. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::AddMarginsPct(System::String source, System::String destination, System::ArrayPtr pages, double leftMargin, double rightMargin, double topMargin, double bottomMargin) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| source | System::String | Path to source document. | +| destination | System::String | Path where resultant document will be saved. | +| pages | System::ArrayPtr\ | Array of page indexes. If null then all document pages will be processed. | +| leftMargin | double | Left margin in percents of initial page size. | +| rightMargin | double | Right margin in percents of initial page size. | +| topMargin | double | Top margin in percents of initial page size. | +| bottomMargin | double | Bottom margin in percents of initial page size. | + +### ReturnValue + +true if resize was successful +## Remarks + + + + + + source + + + Path to source document. + + + + + destination + + + Path where resultant document will be saved. + + + + + pages + + + Array of page indexes. If null then all document pages will be processed. + + + + + leftMargin + + + Left margin in percents of initial page size. + + + + + rightMargin + + + Right margin in percents of initial page size. + + + + + topMargin + + + Top margin in percents of initial page size. + + + + + bottomMargin + + + Bottom margin in percents of initial page size. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/addpagebreak/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/addpagebreak/_index.md new file mode 100644 index 0000000000..01b29be668 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/addpagebreak/_index.md @@ -0,0 +1,157 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::AddPageBreak method +linktitle: AddPageBreak +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::AddPageBreak method. Adds page breaks into document pages in C++.' +type: docs +weight: 6100 +url: /cpp/aspose.pdf.facades/pdffileeditor/addpagebreak/ +--- +## PdfFileEditor::AddPageBreak(System::SharedPtr\, System::SharedPtr\, System::ArrayPtr\\>) method + + +Adds page breaks into document pages. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileEditor::AddPageBreak(System::SharedPtr src, System::SharedPtr dest, System::ArrayPtr> pageBreaks) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| src | System::SharedPtr\ | Source document. | +| dest | System::SharedPtr\ | Destination document. | +| pageBreaks | System::ArrayPtr\\> | Array of **PageBreak** objects which describe places of page breaks. | +## Remarks + + + + + + src + + + Source document. + + + + + dest + + + Destination document. + + + + + pageBreaks + + + Array of PageBreak objects which describe places of page breaks. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::AddPageBreak(System::String, System::String, System::ArrayPtr\\>) method + + +Adds page breaks into document pages. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileEditor::AddPageBreak(System::String src, System::String dest, System::ArrayPtr> pageBreaks) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| src | System::String | Path to source document. | +| dest | System::String | Path to destination document. | +| pageBreaks | System::ArrayPtr\\> | Array of **PageBreak** object describing pages and places where page break will be added. | +## Remarks + + + + + + src + + + Path to source document. + + + + + dest + + + Path to destination document. + + + + + pageBreaks + + + Array of PageBreak object describing pages and places where page break will be added. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::AddPageBreak(System::SharedPtr\, System::SharedPtr\, System::ArrayPtr\\>) method + + +Adds page breaks into document pages. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileEditor::AddPageBreak(System::SharedPtr src, System::SharedPtr dest, System::ArrayPtr> pageBreaks) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| src | System::SharedPtr\ | Source which contains source document. | +| dest | System::SharedPtr\ | Source where destination document will be saved. | +| pageBreaks | System::ArrayPtr\\> | Array of **PageBreak** object describing pages and places where page break will be added. | +## Remarks + + + + + + src + + + Source which contains source document. + + + + + dest + + + Source where destination document will be saved. + + + + + pageBreaks + + + Array of PageBreak object describing pages and places where page break will be added. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/append/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/append/_index.md new file mode 100644 index 0000000000..a7325f8ea7 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/append/_index.md @@ -0,0 +1,443 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::Append method +linktitle: Append +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::Append method. Appends pages, which are chosen from array of documents in portStreams. The result document includes firstInputFile and all portStreams documents pages in the range startPage to endPage in C++.' +type: docs +weight: 4700 +url: /cpp/aspose.pdf.facades/pdffileeditor/append/ +--- +## PdfFileEditor::Append(System::SharedPtr\, System::ArrayPtr\\>, int32_t, int32_t, System::SharedPtr\) method + + +Appends pages, which are chosen from array of documents in portStreams. The result document includes firstInputFile and all portStreams documents pages in the range startPage to endPage. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::Append(System::SharedPtr inputStream, System::ArrayPtr> portStreams, int32_t startPage, int32_t endPage, System::SharedPtr outputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Input [Pdf](../../../aspose.pdf/) stream. | +| portStreams | System::ArrayPtr\\> | Documents to copy pages from. | +| startPage | int32_t | [Page](../../../aspose.pdf/page/) starts in portStreams documents. | +| endPage | int32_t | [Page](../../../aspose.pdf/page/) ends in portStreams documents . | +| outputStream | System::SharedPtr\ | Output [Pdf](../../../aspose.pdf/) stream. | + +### ReturnValue + +True for success, or false. +## Remarks + + + + + + inputStream + + + Input Pdf stream. + + + + + portStreams + + + Documents to copy pages from. + + + + + startPage + + + + Page starts in portStreams documents. + + + + + endPage + + + + Page ends in portStreams documents . + + + + + outputStream + + + Output Pdf stream. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::Append(System::String, System::ArrayPtr\, int32_t, int32_t, System::String) method + + +Appends pages, which are chosen from portFiles documents. The result document includes firstInputFile and all portFiles documents pages in the range startPage to endPage. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::Append(System::String inputFile, System::ArrayPtr portFiles, int32_t startPage, int32_t endPage, System::String outputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Input [Pdf](../../../aspose.pdf/) file. | +| portFiles | System::ArrayPtr\ | Documents to copy pages from. | +| startPage | int32_t | [Page](../../../aspose.pdf/page/) starts in portFiles documents. | +| endPage | int32_t | [Page](../../../aspose.pdf/page/) ends in portFiles documents . | +| outputFile | System::String | Output [Pdf](../../../aspose.pdf/) document. | + +### ReturnValue + +True if operation was succeeded. +## Remarks + + + + + + inputFile + + + Input Pdf file. + + + + + portFiles + + + Documents to copy pages from. + + + + + startPage + + + + Page starts in portFiles documents. + + + + + endPage + + + + Page ends in portFiles documents . + + + + + outputFile + + + Output Pdf document. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::Append(System::String, System::String, int32_t, int32_t, System::String) method + + +Appends pages, which are chosen from portFile within the range from startPage to endPage, in portFile at the end of firstInputFile. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::Append(System::String inputFile, System::String portFile, int32_t startPage, int32_t endPage, System::String outputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Input [Pdf](../../../aspose.pdf/) file. | +| portFile | System::String | Pages from [Pdf](../../../aspose.pdf/) file. | +| startPage | int32_t | [Page](../../../aspose.pdf/page/) starts in portFile. | +| endPage | int32_t | [Page](../../../aspose.pdf/page/) ends in portFile. | +| outputFile | System::String | Output [Pdf](../../../aspose.pdf/) document. | + +### ReturnValue + +True if operation was succeeded. +## Remarks + + + + + + inputFile + + + Input Pdf file. + + + + + portFile + + + Pages from Pdf file. + + + + + startPage + + + + Page starts in portFile. + + + + + endPage + + + + Page ends in portFile. + + + + + outputFile + + + Output Pdf document. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::Append(System::SharedPtr\, System::SharedPtr\, int32_t, int32_t, System::SharedPtr\) method + + +Appends pages,which are chosen from portStream within the range from startPage to endPage, in portStream at the end of firstInputStream. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::Append(System::SharedPtr inputStream, System::SharedPtr portStream, int32_t startPage, int32_t endPage, System::SharedPtr outputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Input file Stream. | +| portStream | System::SharedPtr\ | Pages from [Pdf](../../../aspose.pdf/) file Stream. | +| startPage | int32_t | [Page](../../../aspose.pdf/page/) starts in portFile Stream. | +| endPage | int32_t | [Page](../../../aspose.pdf/page/) ends in portFile Stream. | +| outputStream | System::SharedPtr\ | Output [Pdf](../../../aspose.pdf/) file Stream. | + +### ReturnValue + +True for success, or false. +## Remarks + + + + + + inputStream + + + Input file Stream. + + + + + portStream + + + Pages from Pdf file Stream. + + + + + startPage + + + + Page starts in portFile Stream. + + + + + endPage + + + + Page ends in portFile Stream. + + + + + outputStream + + + Output Pdf file Stream. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::Append(System::SharedPtr\, System::ArrayPtr\\>, int32_t, int32_t, System::SharedPtr\) method + + +Appends documents to source document and saves result into response object. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::Append(System::SharedPtr inputStream, System::ArrayPtr> portStreams, int32_t startPage, int32_t endPage, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Stream which contains source document. | +| portStreams | System::ArrayPtr\\> | Array of streams with documents to be appended. | +| startPage | int32_t | Start page of appended page. | +| endPage | int32_t | End page of appended pages. | +| response | System::SharedPtr\ | Response object where document will be saved. | + +### ReturnValue + +true if operation was successful. +## Remarks + + + + + + inputStream + + + Stream which contains source document. + + + + + portStreams + + + Array of streams with documents to be appended. + + + + + startPage + + + Start page of appended page. + + + + + endPage + + + End page of appended pages. + + + + + response + + + Response object where document will be saved. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::Append(System::String, System::ArrayPtr\, int32_t, int32_t, System::SharedPtr\) method + + +Appends documents to source document and saves result into HttpResponse object. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::Append(System::String inputFile, System::ArrayPtr portFiles, int32_t startPage, int32_t endPage, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Name of file containing source document. | +| portFiles | System::ArrayPtr\ | Array of file names containing appended documents. | +| startPage | int32_t | Start page of appended pages. | +| endPage | int32_t | End page of appended pages. | +| response | System::SharedPtr\ | Response object where document will be saved. | + +### ReturnValue + +true if operation was succeeded. +## Remarks + + + + + + inputFile + + + Name of file containing source document. + + + + + portFiles + + + Array of file names containing appended documents. + + + + + startPage + + + Start page of appended pages. + + + + + endPage + + + End page of appended pages. + + + + + response + + + Response object where document will be saved. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/concatenate/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/concatenate/_index.md new file mode 100644 index 0000000000..441f209a0c --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/concatenate/_index.md @@ -0,0 +1,462 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::Concatenate method +linktitle: Concatenate +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::Concatenate method. Concatenates two files in C++.' +type: docs +weight: 4600 +url: /cpp/aspose.pdf.facades/pdffileeditor/concatenate/ +--- +## PdfFileEditor::Concatenate(System::String, System::String, System::String) method + + +Concatenates two files. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::Concatenate(System::String firstInputFile, System::String secInputFile, System::String outputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| firstInputFile | System::String | First file to concatenate. | +| secInputFile | System::String | Second file to concatenate. | +| outputFile | System::String | Output file. | + +### ReturnValue + +True if operation was succeeded. +## Remarks + + + + + + firstInputFile + + + First file to concatenate. + + + + + secInputFile + + + Second file to concatenate. + + + + + outputFile + + + Output file. + + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::Concatenate(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) method + + +Concatenates two files. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::Concatenate(System::SharedPtr firstInputStream, System::SharedPtr secInputStream, System::SharedPtr outputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| firstInputStream | System::SharedPtr\ | Stream of first file. | +| secInputStream | System::SharedPtr\ | Stream of second file. | +| outputStream | System::SharedPtr\ | Stream where result file will be stored. | + +### ReturnValue + +True if operation was succeeded. +## Remarks + + + + + + firstInputStream + + + Stream of first file. + + + + + secInputStream + + + Stream of second file. + + + + + outputStream + + + Stream where result file will be stored. + + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::Concatenate(System::ArrayPtr\\>, System::SharedPtr\) method + + +Concatenates documents. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::Concatenate(System::ArrayPtr> src, System::SharedPtr dest) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| src | System::ArrayPtr\\> | Array of source documents. | +| dest | System::SharedPtr\ | Destination document. | + +### ReturnValue + +True if concatenation is successful. +## Remarks + + + + + + src + + + Array of source documents. + + + + + dest + + + Destination document. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::Concatenate(System::ArrayPtr\, System::String) method + + +Concatenates files into one file. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::Concatenate(System::ArrayPtr inputFiles, System::String outputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFiles | System::ArrayPtr\ | Array of files to concatenate. | +| outputFile | System::String | Name of output file. | + +### ReturnValue + +True if operation was succeeded. +## Remarks + + + + + + inputFiles + + + Array of files to concatenate. + + + + + outputFile + + + Name of output file. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::Concatenate(System::ArrayPtr\\>, System::SharedPtr\) method + + +Concatenates files. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::Concatenate(System::ArrayPtr> inputStream, System::SharedPtr outputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::ArrayPtr\\> | Array of streams to be concatenated. | +| outputStream | System::SharedPtr\ | Stream where result file will be stored. | + +### ReturnValue + +True if operation was succeeded. +## Remarks + + + + + + inputStream + + + Array of streams to be concatenated. + + + + + outputStream + + + Stream where result file will be stored. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::Concatenate(System::String, System::String, System::String, System::String) method + + +Merges two [Pdf](../../../aspose.pdf/) documents into a new [Pdf](../../../aspose.pdf/) document with pages in alternate ways and fill the blank places with blank pages. e.g.: document1 has 5 pages: p1, p2, p3, p4, p5. document2 has 3 pages: p1', p2', p3'. Merging the two [Pdf](../../../aspose.pdf/) document will produce the result document with pages:p1, p1', p2, p2', p3, p3', p4, blankpage, p5, blankpage. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::Concatenate(System::String firstInputFile, System::String secInputFile, System::String blankPageFile, System::String outputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| firstInputFile | System::String | First file. | +| secInputFile | System::String | Second file. | +| blankPageFile | System::String | PDF file with blank page. | +| outputFile | System::String | Result file. | + +### ReturnValue + +True if operation was succeeded. +## Remarks + + + + + + firstInputFile + + + First file. + + + + + secInputFile + + + Second file. + + + + + blankPageFile + + + PDF file with blank page. + + + + + outputFile + + + Result file. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::Concatenate(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) method + + +Merges two [Pdf](../../../aspose.pdf/) documents into a new [Pdf](../../../aspose.pdf/) document with pages in alternate ways and fill the blank places with blank pages. e.g.: document1 has 5 pages: p1, p2, p3, p4, p5. document2 has 3 pages: p1', p2', p3'. Merging the two [Pdf](../../../aspose.pdf/) document will produce the result document with pages:p1, p1', p2, p2', p3, p3', p4, blankpage, p5, blankpage. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::Concatenate(System::SharedPtr firstInputStream, System::SharedPtr secInputStream, System::SharedPtr blankPageStream, System::SharedPtr outputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| firstInputStream | System::SharedPtr\ | The first [Pdf](../../../aspose.pdf/) Stream. | +| secInputStream | System::SharedPtr\ | The second [Pdf](../../../aspose.pdf/) Stream. | +| blankPageStream | System::SharedPtr\ | The [Pdf](../../../aspose.pdf/) Stream with blank page. | +| outputStream | System::SharedPtr\ | Output [Pdf](../../../aspose.pdf/) Stream. | + +### ReturnValue + +True if operation was succeeded. +## Remarks + + + + + + firstInputStream + + + The first Pdf Stream. + + + + + secInputStream + + + The second Pdf Stream. + + + + + blankPageStream + + + The Pdf Stream with blank page. + + + + + outputStream + + + Output Pdf Stream. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::Concatenate(System::ArrayPtr\, System::SharedPtr\) method + + +Concatenates files and saves reslt into HttpResposnse object. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::Concatenate(System::ArrayPtr inputFiles, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFiles | System::ArrayPtr\ | Array of files to concatenate. | +| response | System::SharedPtr\ | Response object. | + +### ReturnValue + +true if concatenation was successful. +## Remarks + + + + + + inputFiles + + + Array of files to concatenate. + + + + + response + + + Response object. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::Concatenate(System::ArrayPtr\\>, System::SharedPtr\) method + + +Concatenates files and stores result into HttpResponse object. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::Concatenate(System::ArrayPtr> inputStream, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::ArrayPtr\\> | Streams array which contain files to concatenate. | +| response | System::SharedPtr\ | Response object/ | + +### ReturnValue + +true if operation was succeeded. +## Remarks + + + + + + inputStream + + + Streams array which contain files to concatenate. + + + + + response + + + Response object/ + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/delete/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/delete/_index.md new file mode 100644 index 0000000000..ccfe5da50c --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/delete/_index.md @@ -0,0 +1,221 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::Delete method +linktitle: Delete +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::Delete method. Deletes pages specified by number array from input file, saves as a new Pdf file in C++.' +type: docs +weight: 4900 +url: /cpp/aspose.pdf.facades/pdffileeditor/delete/ +--- +## PdfFileEditor::Delete(System::String, System::ArrayPtr\, System::String) method + + +Deletes pages specified by number array from input file, saves as a new [Pdf](../../../aspose.pdf/) file. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::Delete(System::String inputFile, System::ArrayPtr pageNumber, System::String outputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Input file path. | +| pageNumber | System::ArrayPtr\ | Index of page out of the input file. | +| outputFile | System::String | Output file path. | + +### ReturnValue + +True if operation was succeeded. +## Remarks + + + + + + inputFile + + + Input file path. + + + + + pageNumber + + + Index of page out of the input file. + + + + + outputFile + + + Output file path. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::Delete(System::SharedPtr\, System::ArrayPtr\, System::SharedPtr\) method + + +Deletes pages specified by number array from input file, saves as a new [Pdf](../../../aspose.pdf/) file. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::Delete(System::SharedPtr inputStream, System::ArrayPtr pageNumber, System::SharedPtr outputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Input file Stream. | +| pageNumber | System::ArrayPtr\ | Index of page out of the input file. | +| outputStream | System::SharedPtr\ | Output file stream. | + +### ReturnValue + +True for success, or false. +## Remarks + + + + + + inputStream + + + Input file Stream. + + + + + pageNumber + + + Index of page out of the input file. + + + + + outputStream + + + Output file stream. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::Delete(System::String, System::ArrayPtr\, System::SharedPtr\) method + + +Deletes specified pages from document and stores result into HttpResponse object. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::Delete(System::String inputFile, System::ArrayPtr pageNumber, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Path of source file. | +| pageNumber | System::ArrayPtr\ | Array of page numbers which must be deleted. | +| response | System::SharedPtr\ | Response object where result document will be stored. | + +### ReturnValue + +True if operation was succeeded. +## Remarks + + + + + + inputFile + + + Path of source file. + + + + + pageNumber + + + Array of page numbers which must be deleted. + + + + + response + + + Response object where result document will be stored. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::Delete(System::SharedPtr\, System::ArrayPtr\, System::SharedPtr\) method + + +Deletes specified pages from document and saves result into HttpResponse object. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::Delete(System::SharedPtr inputStream, System::ArrayPtr pageNumber, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Source document stream. | +| pageNumber | System::ArrayPtr\ | Array of page numbers which will be deleted. | +| response | System::SharedPtr\ | HttpResponse object | + +### ReturnValue + +True if operation succeded. +## Remarks + + + + + + inputStream + + + Source document stream. + + + + + pageNumber + + + Array of page numbers which will be deleted. + + + + + response + + + HttpResponse object + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/extract/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/extract/_index.md new file mode 100644 index 0000000000..0727b3f9f4 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/extract/_index.md @@ -0,0 +1,345 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::Extract method +linktitle: Extract +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::Extract method. Extracts pages from input file,saves as a new Pdf file in C++.' +type: docs +weight: 5000 +url: /cpp/aspose.pdf.facades/pdffileeditor/extract/ +--- +## PdfFileEditor::Extract(System::String, int32_t, int32_t, System::String) method + + +Extracts pages from input file,saves as a new [Pdf](../../../aspose.pdf/) file. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::Extract(System::String inputFile, int32_t startPage, int32_t endPage, System::String outputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Input [Pdf](../../../aspose.pdf/) file path. | +| startPage | int32_t | Start page number. | +| endPage | int32_t | End page number. | +| outputFile | System::String | Output [Pdf](../../../aspose.pdf/) file path. | + +### ReturnValue + +True for success, or false. +## Remarks + + + + + + inputFile + + + Input Pdf file path. + + + + + startPage + + + Start page number. + + + + + endPage + + + End page number. + + + + + outputFile + + + Output Pdf file path. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::Extract(System::String, System::ArrayPtr\, System::String) method + + +Extracts pages specified by number array, saves as a new PDF file. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::Extract(System::String inputFile, System::ArrayPtr pageNumber, System::String outputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Input file path. | +| pageNumber | System::ArrayPtr\ | Index of page out of the input file. | +| outputFile | System::String | Output file path. | + +### ReturnValue + +True if operation was succeeded. +## Remarks + + + + + + inputFile + + + Input file path. + + + + + pageNumber + + + Index of page out of the input file. + + + + + outputFile + + + Output file path. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::Extract(System::SharedPtr\, int32_t, int32_t, System::SharedPtr\) method + + +Extracts pages from input file,saves as a new [Pdf](../../../aspose.pdf/) file. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::Extract(System::SharedPtr inputStream, int32_t startPage, int32_t endPage, System::SharedPtr outputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Input file Stream. | +| startPage | int32_t | Start page number. | +| endPage | int32_t | End page number. | +| outputStream | System::SharedPtr\ | Output [Pdf](../../../aspose.pdf/) file Stream. | + +### ReturnValue + +True for success, or false. +## Remarks + + + + + + inputStream + + + Input file Stream. + + + + + startPage + + + Start page number. + + + + + endPage + + + End page number. + + + + + outputStream + + + Output Pdf file Stream. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::Extract(System::SharedPtr\, System::ArrayPtr\, System::SharedPtr\) method + + +Extracts pages specified by number array, saves as a new [Pdf](../../../aspose.pdf/) file. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::Extract(System::SharedPtr inputStream, System::ArrayPtr pageNumber, System::SharedPtr outputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Input file Stream. | +| pageNumber | System::ArrayPtr\ | Index of page out of the input file. | +| outputStream | System::SharedPtr\ | Output file stream. | + +### ReturnValue + +True for success, or false. +## Remarks + + + + + + inputStream + + + Input file Stream. + + + + + pageNumber + + + Index of page out of the input file. + + + + + outputStream + + + Output file stream. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::Extract(System::SharedPtr\, System::ArrayPtr\, System::SharedPtr\) method + + +Extracts specified pages form source file and stores result into HttpResponse object. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::Extract(System::SharedPtr inputStream, System::ArrayPtr pageNumber, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Stream of source document. | +| pageNumber | System::ArrayPtr\ | Array of page numbers which will be extracted. | +| response | System::SharedPtr\ | HttpResponse object where result will be stored. | + +### ReturnValue + +True if operation was succeeded. +## Remarks + + + + + + inputStream + + + Stream of source document. + + + + + pageNumber + + + Array of page numbers which will be extracted. + + + + + response + + + HttpResponse object where result will be stored. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::Extract(System::String, System::ArrayPtr\, System::SharedPtr\) method + + +Extracts specified pages from source file and stores result into HttpResponse object. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::Extract(System::String inputFile, System::ArrayPtr pageNumber, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Source file path. | +| pageNumber | System::ArrayPtr\ | Array of page numbers which will be extracted. | +| response | System::SharedPtr\ | HttpResponse object where result will be stored. | + +### ReturnValue + +true if pages were extracted successfully. +## Remarks + + + + + + inputFile + + + Source file path. + + + + + pageNumber + + + Array of page numbers which will be extracted. + + + + + response + + + HttpResponse object where result will be stored. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/get_allowconcatenateexceptions/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/get_allowconcatenateexceptions/_index.md new file mode 100644 index 0000000000..a95bd7fd8d --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/get_allowconcatenateexceptions/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::get_AllowConcatenateExceptions method +linktitle: get_AllowConcatenateExceptions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::get_AllowConcatenateExceptions method. If set to true, exceptions are thrown if error occured. Else excetion are not thrown and methods return false if failed in C++.' +type: docs +weight: 2100 +url: /cpp/aspose.pdf.facades/pdffileeditor/get_allowconcatenateexceptions/ +--- +## PdfFileEditor::get_AllowConcatenateExceptions method + + +If set to true, exceptions are thrown if error occured. Else excetion are not thrown and methods return false if failed. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::get_AllowConcatenateExceptions() +``` + +## Remarks + + + + Deprecated + + This property is deprecated and can not be used to allow throwing exceptions. + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/get_attachmentname/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/get_attachmentname/_index.md new file mode 100644 index 0000000000..43f7987535 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/get_attachmentname/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::get_AttachmentName method +linktitle: get_AttachmentName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::get_AttachmentName method. Gets name of attachment when result of operation is stored into HttpResponse objects as attachment in C++.' +type: docs +weight: 4300 +url: /cpp/aspose.pdf.facades/pdffileeditor/get_attachmentname/ +--- +## PdfFileEditor::get_AttachmentName method + + +Gets name of attachment when result of operation is stored into HttpResponse objects as attachment. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::PdfFileEditor::get_AttachmentName() const +``` + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/get_closeconcatenatedstreams/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/get_closeconcatenatedstreams/_index.md new file mode 100644 index 0000000000..26774cecc6 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/get_closeconcatenatedstreams/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::get_CloseConcatenatedStreams method +linktitle: get_CloseConcatenatedStreams +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::get_CloseConcatenatedStreams method. If set to true, streams are closed after operation in C++.' +type: docs +weight: 2400 +url: /cpp/aspose.pdf.facades/pdffileeditor/get_closeconcatenatedstreams/ +--- +## PdfFileEditor::get_CloseConcatenatedStreams method + + +If set to true, streams are closed after operation. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::get_CloseConcatenatedStreams() const +``` + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/get_concatenationpacketsize/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/get_concatenationpacketsize/_index.md new file mode 100644 index 0000000000..4eb9c7bc9e --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/get_concatenationpacketsize/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::get_ConcatenationPacketSize method +linktitle: get_ConcatenationPacketSize +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::get_ConcatenationPacketSize method. Number of documents concatenated before new incremental update was made during concatenation when UseDiskBuffer is set to true in C++.' +type: docs +weight: 3700 +url: /cpp/aspose.pdf.facades/pdffileeditor/get_concatenationpacketsize/ +--- +## PdfFileEditor::get_ConcatenationPacketSize method + + +Number of documents concatenated before new incremental update was made during concatenation when UseDiskBuffer is set to true. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfFileEditor::get_ConcatenationPacketSize() const +``` + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/get_contentdisposition/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/get_contentdisposition/_index.md new file mode 100644 index 0000000000..eeafd6cef8 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/get_contentdisposition/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::get_ContentDisposition method +linktitle: get_ContentDisposition +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::get_ContentDisposition method. Gets how content will be stored when result of operation is stored into HttpResponse object. Possible value: inline / attachment. Default: inline in C++.' +type: docs +weight: 3900 +url: /cpp/aspose.pdf.facades/pdffileeditor/get_contentdisposition/ +--- +## PdfFileEditor::get_ContentDisposition method + + +Gets how content will be stored when result of operation is stored into HttpResponse object. Possible value: inline / attachment. Default: inline. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::ContentDisposition Aspose::Pdf::Facades::PdfFileEditor::get_ContentDisposition() const +``` + +## See Also + +* Enum [ContentDisposition](../../../aspose.pdf/contentdisposition/) +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/get_conversionlog/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/get_conversionlog/_index.md new file mode 100644 index 0000000000..0183067ae9 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/get_conversionlog/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::get_ConversionLog method +linktitle: get_ConversionLog +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::get_ConversionLog method. Gets log of conversion process in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.facades/pdffileeditor/get_conversionlog/ +--- +## PdfFileEditor::get_ConversionLog method + + +Gets log of conversion process. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::PdfFileEditor::get_ConversionLog() +``` + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/get_copylogicalstructure/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/get_copylogicalstructure/_index.md new file mode 100644 index 0000000000..e2ace60c07 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/get_copylogicalstructure/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::get_CopyLogicalStructure method +linktitle: get_CopyLogicalStructure +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::get_CopyLogicalStructure method. If true then logical structure of the file is copied when concatenation is performed in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.facades/pdffileeditor/get_copylogicalstructure/ +--- +## PdfFileEditor::get_CopyLogicalStructure method + + +If true then logical structure of the file is copied when concatenation is performed. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::get_CopyLogicalStructure() const +``` + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/get_copyoutlines/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/get_copyoutlines/_index.md new file mode 100644 index 0000000000..211ae3bd13 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/get_copyoutlines/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::get_CopyOutlines method +linktitle: get_CopyOutlines +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::get_CopyOutlines method. If true then outlines will be copied in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.facades/pdffileeditor/get_copyoutlines/ +--- +## PdfFileEditor::get_CopyOutlines method + + +If true then outlines will be copied. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::get_CopyOutlines() const +``` + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/get_corruptedfileaction/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/get_corruptedfileaction/_index.md new file mode 100644 index 0000000000..f2315676d2 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/get_corruptedfileaction/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::get_CorruptedFileAction method +linktitle: get_CorruptedFileAction +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::get_CorruptedFileAction method. This property defines behavior when concatenating process met corrupted file. Possible values are: StopWithError and ConcatenateIgnoringCorrupted in C++.' +type: docs +weight: 1700 +url: /cpp/aspose.pdf.facades/pdffileeditor/get_corruptedfileaction/ +--- +## PdfFileEditor::get_CorruptedFileAction method + + +This property defines behavior when concatenating process met corrupted file. Possible values are: StopWithError and ConcatenateIgnoringCorrupted. + +```cpp +ASPOSE_PDF_SHARED_API PdfFileEditor::ConcatenateCorruptedFileAction Aspose::Pdf::Facades::PdfFileEditor::get_CorruptedFileAction() const +``` + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/get_corrupteditems/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/get_corrupteditems/_index.md new file mode 100644 index 0000000000..ad47ee1724 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/get_corrupteditems/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::get_CorruptedItems method +linktitle: get_CorruptedItems +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::get_CorruptedItems method. Array of encountered problems when concatenation was performed. For every corrupted document from passed to Concatenate() function new CorruptedItem entry is created. This property may be used only when CorruptedFileAction is ConcatenateIgnoringCorrupted in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf.facades/pdffileeditor/get_corrupteditems/ +--- +## PdfFileEditor::get_CorruptedItems method + + +Array of encountered problems when concatenation was performed. For every corrupted document from passed to [Concatenate()](../concatenate/) function new **CorruptedItem** entry is created. This property may be used only when CorruptedFileAction is ConcatenateIgnoringCorrupted. + +```cpp +ASPOSE_PDF_SHARED_API System::ArrayPtr> Aspose::Pdf::Facades::PdfFileEditor::get_CorruptedItems() +``` + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/get_incrementalupdates/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/get_incrementalupdates/_index.md new file mode 100644 index 0000000000..65475ba5d1 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/get_incrementalupdates/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::get_IncrementalUpdates method +linktitle: get_IncrementalUpdates +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::get_IncrementalUpdates method. If true, incremental updates are made during concatenation in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.facades/pdffileeditor/get_incrementalupdates/ +--- +## PdfFileEditor::get_IncrementalUpdates method + + +If true, incremental updates are made during concatenation. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::get_IncrementalUpdates() const +``` + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/get_keepactions/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/get_keepactions/_index.md new file mode 100644 index 0000000000..ab6bf8b3b4 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/get_keepactions/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::get_KeepActions method +linktitle: get_KeepActions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::get_KeepActions method. If true actions will be copied from source documents. Defaulkt value : true in C++.' +type: docs +weight: 2800 +url: /cpp/aspose.pdf.facades/pdffileeditor/get_keepactions/ +--- +## PdfFileEditor::get_KeepActions method + + +If true actions will be copied from source documents. Defaulkt value : true. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::get_KeepActions() const +``` + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/get_keepfieldsunique/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/get_keepfieldsunique/_index.md new file mode 100644 index 0000000000..6915abf96d --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/get_keepfieldsunique/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::get_KeepFieldsUnique method +linktitle: get_KeepFieldsUnique +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::get_KeepFieldsUnique method. If true then field names will be made unique when forms are concatenated. Suffixes will be added to field names, suffix template may be specified in UniqueSuffix property in C++.' +type: docs +weight: 3000 +url: /cpp/aspose.pdf.facades/pdffileeditor/get_keepfieldsunique/ +--- +## PdfFileEditor::get_KeepFieldsUnique method + + +If true then field names will be made unique when forms are concatenated. Suffixes will be added to field names, suffix template may be specified in UniqueSuffix property. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::get_KeepFieldsUnique() const +``` + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/get_lastexception/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/get_lastexception/_index.md new file mode 100644 index 0000000000..d3b9d10286 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/get_lastexception/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::get_LastException method +linktitle: get_LastException +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::get_LastException method. Gets last occured exception. May be used to check the reason of failure in C++.' +type: docs +weight: 3400 +url: /cpp/aspose.pdf.facades/pdffileeditor/get_lastexception/ +--- +## PdfFileEditor::get_LastException method + + +Gets last occured exception. May be used to check the reason of failure. + +```cpp +ASPOSE_PDF_SHARED_API System::Exception Aspose::Pdf::Facades::PdfFileEditor::get_LastException() const +``` + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/get_mergeduplicatelayers/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/get_mergeduplicatelayers/_index.md new file mode 100644 index 0000000000..842f0f0eb0 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/get_mergeduplicatelayers/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::get_MergeDuplicateLayers method +linktitle: get_MergeDuplicateLayers +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::get_MergeDuplicateLayers method. Optional contents of concatentated documents with equal names will be merged into one layer in resulstant document if this property is true. Else, layers with equal names will be save as different layers in resultant document in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.facades/pdffileeditor/get_mergeduplicatelayers/ +--- +## PdfFileEditor::get_MergeDuplicateLayers method + + +Optional contents of concatentated documents with equal names will be merged into one layer in resulstant document if this property is true. Else, layers with equal names will be save as different layers in resultant document. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::get_MergeDuplicateLayers() const +``` + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/get_mergeduplicateoutlines/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/get_mergeduplicateoutlines/_index.md new file mode 100644 index 0000000000..a164994851 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/get_mergeduplicateoutlines/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::get_MergeDuplicateOutlines method +linktitle: get_MergeDuplicateOutlines +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::get_MergeDuplicateOutlines method. If true, duplicate outlines are merged in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.facades/pdffileeditor/get_mergeduplicateoutlines/ +--- +## PdfFileEditor::get_MergeDuplicateOutlines method + + +If true, duplicate outlines are merged. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::get_MergeDuplicateOutlines() const +``` + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/get_optimizesize/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/get_optimizesize/_index.md new file mode 100644 index 0000000000..54fe246a89 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/get_optimizesize/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::get_OptimizeSize method +linktitle: get_OptimizeSize +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::get_OptimizeSize method. Gets optimization flag. Equal resource streams in resultant file are merged into one PDF object if this flag set. This allows to decrease resultant file size but may cause slower execution and larger memory requirements. Default value: false in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.facades/pdffileeditor/get_optimizesize/ +--- +## PdfFileEditor::get_OptimizeSize method + + +Gets optimization flag. Equal resource streams in resultant file are merged into one PDF object if this flag set. This allows to decrease resultant file size but may cause slower execution and larger memory requirements. Default value: false. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::get_OptimizeSize() const +``` + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/get_ownerpassword/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/get_ownerpassword/_index.md new file mode 100644 index 0000000000..585a632300 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/get_ownerpassword/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::get_OwnerPassword method +linktitle: get_OwnerPassword +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::get_OwnerPassword method. Sets owner''s password if the source input Pdf file is encrypted. This property is not implemented yet in C++.' +type: docs +weight: 1900 +url: /cpp/aspose.pdf.facades/pdffileeditor/get_ownerpassword/ +--- +## PdfFileEditor::get_OwnerPassword method + + +Sets owner's password if the source input [Pdf](../../../aspose.pdf/) file is encrypted. This property is not implemented yet. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::PdfFileEditor::get_OwnerPassword() const +``` + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/get_preserveuserrights/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/get_preserveuserrights/_index.md new file mode 100644 index 0000000000..09c72a49d4 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/get_preserveuserrights/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::get_PreserveUserRights method +linktitle: get_PreserveUserRights +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::get_PreserveUserRights method. If true, user rights of first document are applied to concatenated document. User rights of all other documents are ignored in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.facades/pdffileeditor/get_preserveuserrights/ +--- +## PdfFileEditor::get_PreserveUserRights method + + +If true, user rights of first document are applied to concatenated document. User rights of all other documents are ignored. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::get_PreserveUserRights() const +``` + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/get_removesignatures/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/get_removesignatures/_index.md new file mode 100644 index 0000000000..f106e9f99a --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/get_removesignatures/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::get_RemoveSignatures method +linktitle: get_RemoveSignatures +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::get_RemoveSignatures method. If true, all signatures will be removed from fields (fields will remain); otherwise, you can get invalid signatures in C++.' +type: docs +weight: 3200 +url: /cpp/aspose.pdf.facades/pdffileeditor/get_removesignatures/ +--- +## PdfFileEditor::get_RemoveSignatures method + + +If true, all signatures will be removed from fields (fields will remain); otherwise, you can get invalid signatures. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::get_RemoveSignatures() const +``` + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/get_saveoptions/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/get_saveoptions/_index.md new file mode 100644 index 0000000000..e434b11a7e --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/get_saveoptions/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::get_SaveOptions method +linktitle: get_SaveOptions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::get_SaveOptions method. Gets save options when result is stored as HttpResponse. Default value: PdfSaveOptions in C++.' +type: docs +weight: 4100 +url: /cpp/aspose.pdf.facades/pdffileeditor/get_saveoptions/ +--- +## PdfFileEditor::get_SaveOptions method + + +Gets save options when result is stored as HttpResponse. Default value: [PdfSaveOptions](../../../aspose.pdf/pdfsaveoptions/). + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::PdfFileEditor::get_SaveOptions() const +``` + +## See Also + +* Class [SaveOptions](../../../aspose.pdf/saveoptions/) +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/get_uniquesuffix/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/get_uniquesuffix/_index.md new file mode 100644 index 0000000000..bf5fad9cd6 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/get_uniquesuffix/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::get_UniqueSuffix method +linktitle: get_UniqueSuffix +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::get_UniqueSuffix method. Format of the suffix which is added to field name to make it unique when forms are concatenated. This string must contain NUM% substring which will be replaced with numbers. For example if UniqueSuffix = "ABC%NUM%" then for field "fieldName" names will be: fieldNameABC1, fieldNameABC2, fieldNameABC3 etc in C++.' +type: docs +weight: 2600 +url: /cpp/aspose.pdf.facades/pdffileeditor/get_uniquesuffix/ +--- +## PdfFileEditor::get_UniqueSuffix method + + +Format of the suffix which is added to field name to make it unique when forms are concatenated. This string must contain NUM% substring which will be replaced with numbers. For example if UniqueSuffix = "ABC%NUM%" then for field "fieldName" names will be: fieldNameABC1, fieldNameABC2, fieldNameABC3 etc. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::PdfFileEditor::get_UniqueSuffix() const +``` + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/get_usediskbuffer/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/get_usediskbuffer/_index.md new file mode 100644 index 0000000000..e736a8d79a --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/get_usediskbuffer/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::get_UseDiskBuffer method +linktitle: get_UseDiskBuffer +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::get_UseDiskBuffer method. If this option used then destination document will be saved on disk periodically and further concatenation will appllied to it as incremental updates in C++.' +type: docs +weight: 3500 +url: /cpp/aspose.pdf.facades/pdffileeditor/get_usediskbuffer/ +--- +## PdfFileEditor::get_UseDiskBuffer method + + +If this option used then destination document will be saved on disk periodically and further concatenation will appllied to it as incremental updates. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::get_UseDiskBuffer() +``` + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/insert/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/insert/_index.md new file mode 100644 index 0000000000..e85dc4d448 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/insert/_index.md @@ -0,0 +1,455 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::Insert method +linktitle: Insert +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::Insert method. Inserts pages from an other file into the Pdf file at a position in C++.' +type: docs +weight: 4800 +url: /cpp/aspose.pdf.facades/pdffileeditor/insert/ +--- +## PdfFileEditor::Insert(System::String, int32_t, System::String, int32_t, int32_t, System::String) method + + +Inserts pages from an other file into the [Pdf](../../../aspose.pdf/) file at a position. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::Insert(System::String inputFile, int32_t insertLocation, System::String portFile, int32_t startPage, int32_t endPage, System::String outputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Input [Pdf](../../../aspose.pdf/) file. | +| insertLocation | int32_t | Position in input file. | +| portFile | System::String | The porting [Pdf](../../../aspose.pdf/) file. | +| startPage | int32_t | Start position in portFile. | +| endPage | int32_t | End position in portFile. | +| outputFile | System::String | Output [Pdf](../../../aspose.pdf/) file. | + +### ReturnValue + +True for success, or false. +## Remarks + + + + + + inputFile + + + Input Pdf file. + + + + + insertLocation + + + Position in input file. + + + + + portFile + + + The porting Pdf file. + + + + + startPage + + + Start position in portFile. + + + + + endPage + + + End position in portFile. + + + + + outputFile + + + Output Pdf file. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::Insert(System::SharedPtr\, int32_t, System::SharedPtr\, int32_t, int32_t, System::SharedPtr\) method + + +Inserts pages from an other file into the input [Pdf](../../../aspose.pdf/) file. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::Insert(System::SharedPtr inputStream, int32_t insertLocation, System::SharedPtr portStream, int32_t startPage, int32_t endPage, System::SharedPtr outputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Input Stream of [Pdf](../../../aspose.pdf/) file. | +| insertLocation | int32_t | Insert position in input file. | +| portStream | System::SharedPtr\ | Stream of [Pdf](../../../aspose.pdf/) file for pages. | +| startPage | int32_t | From which page to start. | +| endPage | int32_t | To which page to end. | +| outputStream | System::SharedPtr\ | Output Stream. | + +### ReturnValue + +True for success, or false. +## Remarks + + + + + + inputStream + + + Input Stream of Pdf file. + + + + + insertLocation + + + Insert position in input file. + + + + + portStream + + + Stream of Pdf file for pages. + + + + + startPage + + + From which page to start. + + + + + endPage + + + To which page to end. + + + + + outputStream + + + Output Stream. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::Insert(System::String, int32_t, System::String, System::ArrayPtr\, System::String) method + + +Inserts pages from an other file into the input [Pdf](../../../aspose.pdf/) file. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::Insert(System::String inputFile, int32_t insertLocation, System::String portFile, System::ArrayPtr pageNumber, System::String outputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Input [Pdf](../../../aspose.pdf/) file. | +| insertLocation | int32_t | Insert position in input file. | +| portFile | System::String | Pages from the [Pdf](../../../aspose.pdf/) file. | +| pageNumber | System::ArrayPtr\ | The page number of the ported in portFile. | +| outputFile | System::String | Output [Pdf](../../../aspose.pdf/) file. | + +### ReturnValue + +True for success, or false. +## Remarks + + + + + + inputFile + + + Input Pdf file. + + + + + insertLocation + + + Insert position in input file. + + + + + portFile + + + Pages from the Pdf file. + + + + + pageNumber + + + The page number of the ported in portFile. + + + + + outputFile + + + Output Pdf file. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::Insert(System::SharedPtr\, int32_t, System::SharedPtr\, System::ArrayPtr\, System::SharedPtr\) method + + +Inserts pages from an other file into the input [Pdf](../../../aspose.pdf/) file. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::Insert(System::SharedPtr inputStream, int32_t insertLocation, System::SharedPtr portStream, System::ArrayPtr pageNumber, System::SharedPtr outputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Input Stream of [Pdf](../../../aspose.pdf/) file. | +| insertLocation | int32_t | Insert position in input file. | +| portStream | System::SharedPtr\ | Stream of [Pdf](../../../aspose.pdf/) file for pages. | +| pageNumber | System::ArrayPtr\ | The page number of the ported in portFile. | +| outputStream | System::SharedPtr\ | Output Stream. | + +### ReturnValue + +True if operation was succeeded. +## Remarks + + + + + + inputStream + + + Input Stream of Pdf file. + + + + + insertLocation + + + Insert position in input file. + + + + + portStream + + + Stream of Pdf file for pages. + + + + + pageNumber + + + The page number of the ported in portFile. + + + + + outputStream + + + Output Stream. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::Insert(System::String, int32_t, System::String, System::ArrayPtr\, System::SharedPtr\) method + + +Inserts contents of file into source file and stores result into HttpResponse object. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::Insert(System::String inputFile, int32_t insertLocation, System::String portFile, System::ArrayPtr pageNumber, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Source file name. | +| insertLocation | int32_t | [Page](../../../aspose.pdf/page/) number where second file will be inserted. | +| portFile | System::String | Path to file which will be inserted. | +| pageNumber | System::ArrayPtr\ | Array of page numbers in source file wihich will be inserted. | +| response | System::SharedPtr\ | Response object where result will be stored. | + +### ReturnValue + +true of inserting was successful. +## Remarks + + + + + + inputFile + + + Source file name. + + + + + insertLocation + + + + Page number where second file will be inserted. + + + + + portFile + + + Path to file which will be inserted. + + + + + pageNumber + + + Array of page numbers in source file wihich will be inserted. + + + + + response + + + Response object where result will be stored. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::Insert(System::SharedPtr\, int32_t, System::SharedPtr\, System::ArrayPtr\, System::SharedPtr\) method + + +Inserts document into other document and stores result into response object. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::Insert(System::SharedPtr inputStream, int32_t insertLocation, System::SharedPtr portStream, System::ArrayPtr pageNumber, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Stream with source document | +| insertLocation | int32_t | Location where other document will be inserted. | +| portStream | System::SharedPtr\ | [Document](../../../aspose.pdf/document/) to be inserted. | +| pageNumber | System::ArrayPtr\ | Array of page numbers in second document which will be inserted. | +| response | System::SharedPtr\ | Response object where result will be stored. | + +### ReturnValue + +True if operation was succeeded. +## Remarks + + + + + + inputStream + + + Stream with source document + + + + + insertLocation + + + Location where other document will be inserted. + + + + + portStream + + + + Document to be inserted. + + + + + pageNumber + + + Array of page numbers in second document which will be inserted. + + + + + response + + + Response object where result will be stored. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/makebooklet/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/makebooklet/_index.md new file mode 100644 index 0000000000..b8e373c462 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/makebooklet/_index.md @@ -0,0 +1,726 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::MakeBooklet method +linktitle: MakeBooklet +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::MakeBooklet method. Makes booklet from the input file to output file in C++.' +type: docs +weight: 5300 +url: /cpp/aspose.pdf.facades/pdffileeditor/makebooklet/ +--- +## PdfFileEditor::MakeBooklet(System::String, System::String) method + + +Makes booklet from the input file to output file. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::MakeBooklet(System::String inputFile, System::String outputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Input pdf file path and name. | +| outputFile | System::String | Output pdf file path and name. | + +### ReturnValue + +boolean - True for success, or false. +## Remarks + + + + + + inputFile + + + Input pdf file path and name. + + + + + outputFile + + + Output pdf file path and name. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::MakeBooklet(System::SharedPtr\, System::SharedPtr\) method + + +Makes booklet from the InputStream to outputStream. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::MakeBooklet(System::SharedPtr inputStream, System::SharedPtr outputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Input pdf stream. | +| outputStream | System::SharedPtr\ | output pdf stream. | + +### ReturnValue + +True if operation was succeeded. +## Remarks + + + + + + inputStream + + + Input pdf stream. + + + + + outputStream + + + output pdf stream. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::MakeBooklet(System::String, System::String, System::SharedPtr\) method + + +Makes booklet from the inputFile to outputFile. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::MakeBooklet(System::String inputFile, System::String outputFile, System::SharedPtr pageSize) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Input pdf file path and name. | +| outputFile | System::String | Output pdf file path and name. | +| pageSize | System::SharedPtr\ | The page size of the output pdf file. | + +### ReturnValue + +True if operation is succeeded. +## Remarks + + + + + + inputFile + + + Input pdf file path and name. + + + + + outputFile + + + Output pdf file path and name. + + + + + pageSize + + + The page size of the output pdf file. + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::MakeBooklet(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) method + + +Makes booklet from the input stream and save result into output stream. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::MakeBooklet(System::SharedPtr inputStream, System::SharedPtr outputStream, System::SharedPtr pageSize) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Input PDF stream. | +| outputStream | System::SharedPtr\ | output pdf stream. | +| pageSize | System::SharedPtr\ | The page size of the output pdf file. | + +### ReturnValue + +True if operation was succeeded. +## Remarks + + + + + + inputStream + + + Input PDF stream. + + + + + outputStream + + + output pdf stream. + + + + + pageSize + + + The page size of the output pdf file. + + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::MakeBooklet(System::String, System::String, System::ArrayPtr\, System::ArrayPtr\) method + + +Makes customized booklet from the firstInputFile to outputFile. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::MakeBooklet(System::String inputFile, System::String outputFile, System::ArrayPtr leftPages, System::ArrayPtr rightPages) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | The input file. | +| outputFile | System::String | Output pdf file path and name. | +| leftPages | System::ArrayPtr\ | The left pages of the booklet. | +| rightPages | System::ArrayPtr\ | The right pages of the booklet. | + +### ReturnValue + +boolean - True for success, or false. +## Remarks + + + + + + inputFile + + + The input file. + + + + + outputFile + + + Output pdf file path and name. + + + + + leftPages + + + The left pages of the booklet. + + + + + rightPages + + + The right pages of the booklet. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::MakeBooklet(System::SharedPtr\, System::SharedPtr\, System::ArrayPtr\, System::ArrayPtr\) method + + +Makes customized booklet from the firstInputStream to outputStream. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::MakeBooklet(System::SharedPtr inputStream, System::SharedPtr outputStream, System::ArrayPtr leftPages, System::ArrayPtr rightPages) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | The input stream. | +| outputStream | System::SharedPtr\ | output pdf stream. | +| leftPages | System::ArrayPtr\ | The left pages. | +| rightPages | System::ArrayPtr\ | The right pages. | + +### ReturnValue + +boolean - True for success, or false. +## Remarks + + + + + + inputStream + + + The input stream. + + + + + outputStream + + + output pdf stream. + + + + + leftPages + + + The left pages. + + + + + rightPages + + + The right pages. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::MakeBooklet(System::String, System::String, System::SharedPtr\, System::ArrayPtr\, System::ArrayPtr\) method + + +Makes customized booklet from the firstInputFile to outputFile. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::MakeBooklet(System::String inputFile, System::String outputFile, System::SharedPtr pageSize, System::ArrayPtr leftPages, System::ArrayPtr rightPages) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | The input file. | +| outputFile | System::String | Output pdf file path and name. | +| pageSize | System::SharedPtr\ | The page size of the output pdf file. | +| leftPages | System::ArrayPtr\ | The left pages. | +| rightPages | System::ArrayPtr\ | The right pages. | + +### ReturnValue + +boolean - True for success, or false. +## Remarks + + + + + + inputFile + + + The input file. + + + + + outputFile + + + Output pdf file path and name. + + + + + pageSize + + + The page size of the output pdf file. + + + + + leftPages + + + The left pages. + + + + + rightPages + + + The right pages. + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::MakeBooklet(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\, System::ArrayPtr\, System::ArrayPtr\) method + + +Makes booklet from the firstInputStream to outputStream. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::MakeBooklet(System::SharedPtr inputStream, System::SharedPtr outputStream, System::SharedPtr pageSize, System::ArrayPtr leftPages, System::ArrayPtr rightPages) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | The input stream. | +| outputStream | System::SharedPtr\ | output pdf stream. | +| pageSize | System::SharedPtr\ | The page size of the output pdf file. | +| leftPages | System::ArrayPtr\ | The left pages. | +| rightPages | System::ArrayPtr\ | The right pages. | + +### ReturnValue + +boolean - True for success, or false. +## Remarks + + + + + + inputStream + + + The input stream. + + + + + outputStream + + + output pdf stream. + + + + + pageSize + + + The page size of the output pdf file. + + + + + leftPages + + + The left pages. + + + + + rightPages + + + The right pages. + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::MakeBooklet(System::String, System::SharedPtr\, System::ArrayPtr\, System::ArrayPtr\, System::SharedPtr\) method + + +Makes booklet from source file and stores result into HttpResponse objects. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::MakeBooklet(System::String inputFile, System::SharedPtr pageSize, System::ArrayPtr leftPages, System::ArrayPtr rightPages, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Source file path. | +| pageSize | System::SharedPtr\ | Desired page size. | +| leftPages | System::ArrayPtr\ | Aray of page numbers to be placed in left. | +| rightPages | System::ArrayPtr\ | Array of page numbers to be placed in right. | +| response | System::SharedPtr\ | HttpResponse object where result will be stored. | + +### ReturnValue + +True if operation was succeeded. +## Remarks + + + + + + inputFile + + + Source file path. + + + + + pageSize + + + Desired page size. + + + + + leftPages + + + Aray of page numbers to be placed in left. + + + + + rightPages + + + Array of page numbers to be placed in right. + + + + + response + + + HttpResponse object where result will be stored. + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::MakeBooklet(System::SharedPtr\, System::SharedPtr\, System::ArrayPtr\, System::ArrayPtr\, System::SharedPtr\) method + + +Make booklet from PDF file and stores it into HttpResponse. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::MakeBooklet(System::SharedPtr inputStream, System::SharedPtr pageSize, System::ArrayPtr leftPages, System::ArrayPtr rightPages, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Input document stream. | +| pageSize | System::SharedPtr\ | Desired page size. | +| leftPages | System::ArrayPtr\ | Array of page numbers which will be placed in left. | +| rightPages | System::ArrayPtr\ | Array of page numbers which will b eplaced in right. | +| response | System::SharedPtr\ | HttpResponse object. | + +### ReturnValue + +True if operation was succeeded. +## Remarks + + + + + + inputStream + + + Input document stream. + + + + + pageSize + + + Desired page size. + + + + + leftPages + + + Array of page numbers which will be placed in left. + + + + + rightPages + + + Array of page numbers which will b eplaced in right. + + + + + response + + + HttpResponse object. + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::MakeBooklet(System::String, System::SharedPtr\, System::SharedPtr\) method + + +Makes booklet from source file and stores result into HttpResponse objects. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::MakeBooklet(System::String inputFile, System::SharedPtr pageSize, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Source file path. | +| pageSize | System::SharedPtr\ | Desired page size in output file. | +| response | System::SharedPtr\ | HttpResponse object where result will be stored. | + +### ReturnValue + +True if operation is succeeded. +## Remarks + + + + + + inputFile + + + Source file path. + + + + + pageSize + + + Desired page size in output file. + + + + + response + + + HttpResponse object where result will be stored. + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::MakeBooklet(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) method + + +Makes booklet from source file and stores result into HttpResponse. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::MakeBooklet(System::SharedPtr inputStream, System::SharedPtr pageSize, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Input document stream. | +| pageSize | System::SharedPtr\ | Desired page size in output file. | +| response | System::SharedPtr\ | Respose object where resut will be saved. | + +### ReturnValue + +true if booklet was built successfully. +## Remarks + + + + + + inputStream + + + Input document stream. + + + + + pageSize + + + Desired page size in output file. + + + + + response + + + Respose object where resut will be saved. + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/makenup/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/makenup/_index.md new file mode 100644 index 0000000000..b650e0b8be --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/makenup/_index.md @@ -0,0 +1,759 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::MakeNUp method +linktitle: MakeNUp +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::MakeNUp method. Makes N-Up document from the firstInputFile to outputFile in C++.' +type: docs +weight: 5400 +url: /cpp/aspose.pdf.facades/pdffileeditor/makenup/ +--- +## PdfFileEditor::MakeNUp(System::String, System::String, int32_t, int32_t) method + + +Makes N-Up document from the firstInputFile to outputFile. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::MakeNUp(System::String inputFile, System::String outputFile, int32_t x, int32_t y) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Input pdf file path and name. | +| outputFile | System::String | Output pdf file path and name. | +| x | int32_t | Number of columns. | +| y | int32_t | Number of rows. | + +### ReturnValue + +boolean - True for success, or false. +## Remarks + + + + + + inputFile + + + Input pdf file path and name. + + + + + outputFile + + + Output pdf file path and name. + + + + + x + + + Number of columns. + + + + + y + + + Number of rows. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::MakeNUp(System::SharedPtr\, System::SharedPtr\, int32_t, int32_t) method + + +Makes N-Up document from the input stream and saves result into output stream. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::MakeNUp(System::SharedPtr inputStream, System::SharedPtr outputStream, int32_t x, int32_t y) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Input pdf stream. | +| outputStream | System::SharedPtr\ | Output pdf stream. | +| x | int32_t | Number of columns. | +| y | int32_t | Number of rows. | + +### ReturnValue + +boolean - True for success, or false. +## Remarks + + + + + + inputStream + + + Input pdf stream. + + + + + outputStream + + + Output pdf stream. + + + + + x + + + Number of columns. + + + + + y + + + Number of rows. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::MakeNUp(System::SharedPtr\, System::SharedPtr\, int32_t, int32_t, System::SharedPtr\) method + + +Makes N-Up document from the first input stream to output stream. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::MakeNUp(System::SharedPtr inputStream, System::SharedPtr outputStream, int32_t x, int32_t y, System::SharedPtr pageSize) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Input pdf stream. | +| outputStream | System::SharedPtr\ | Output pdf stream. | +| x | int32_t | Number of columns. | +| y | int32_t | Number of rows. | +| pageSize | System::SharedPtr\ | The page size of the output pdf file. | + +### ReturnValue + +True if operation was succeeded. +## Remarks + + + + + + inputStream + + + Input pdf stream. + + + + + outputStream + + + Output pdf stream. + + + + + x + + + Number of columns. + + + + + y + + + Number of rows. + + + + + pageSize + + + The page size of the output pdf file. + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::MakeNUp(System::String, System::String, System::String) method + + +Makes N-Up document from the two input PDF files to outputFile. Each page of outputFile will contain two pages, one page is from the first input file and another is from the second input file. The two pages are piled up horizontally. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::MakeNUp(System::String firstInputFile, System::String secondInputFile, System::String outputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| firstInputFile | System::String | first input file. | +| secondInputFile | System::String | second input file. | +| outputFile | System::String | Output pdf file path and name. | + +### ReturnValue + +boolean - True for success, or false. +## Remarks + + + + + + firstInputFile + + + first input file. + + + + + secondInputFile + + + second input file. + + + + + outputFile + + + Output pdf file path and name. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::MakeNUp(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) method + + +Makes N-Up document from the two input PDF streams to outputStream. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::MakeNUp(System::SharedPtr firstInputStream, System::SharedPtr secondInputStream, System::SharedPtr outputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| firstInputStream | System::SharedPtr\ | first input stream. | +| secondInputStream | System::SharedPtr\ | second input stream. | +| outputStream | System::SharedPtr\ | Output pdf stream. | + +### ReturnValue + +boolean - True for success, or false. +## Remarks + + + + + + firstInputStream + + + first input stream. + + + + + secondInputStream + + + second input stream. + + + + + outputStream + + + Output pdf stream. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::MakeNUp(System::ArrayPtr\, System::String, bool) method + + +Makes N-Up document from the multi input PDF files to outputFile. Each page of outputFile will contain multi pages, which are combination with pages in the input files of the same page number. The multi pages piled up horizontally if isSidewise is true and piled up vertically if isSidewise is false. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::MakeNUp(System::ArrayPtr inputFiles, System::String outputFile, bool isSidewise) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFiles | System::ArrayPtr\ | Input [Pdf](../../../aspose.pdf/) files. | +| outputFile | System::String | Output pdf file path and name. | +| isSidewise | bool | Piled up way, true for horizontally and false for vertically. | + +### ReturnValue + +boolean - True for success, or false. +## Remarks + + + + + + inputFiles + + + Input Pdf files. + + + + + outputFile + + + Output pdf file path and name. + + + + + isSidewise + + + Piled up way, true for horizontally and false for vertically. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::MakeNUp(System::ArrayPtr\\>, System::SharedPtr\, bool) method + + +Makes N-Up document from the multi input PDF streams to outputStream. Each page of outputStream will contain multi pages, which are combination with pages in the input streams of the same page number. The multi-pages piled up horizontally if isSidewise is true and piled up vertically if isSidewise is false. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::MakeNUp(System::ArrayPtr> inputStreams, System::SharedPtr outputStream, bool isSidewise) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStreams | System::ArrayPtr\\> | Input [Pdf](../../../aspose.pdf/) streams. | +| outputStream | System::SharedPtr\ | Output pdf stream. | +| isSidewise | bool | Piled up way, true for horizontally and false for vertically. | + +### ReturnValue + +boolean - True for success, or false. +## Remarks + + + + + + inputStreams + + + Input Pdf streams. + + + + + outputStream + + + Output pdf stream. + + + + + isSidewise + + + Piled up way, true for horizontally and false for vertically. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::MakeNUp(System::String, System::String, int32_t, int32_t, System::SharedPtr\) method + + +Makes N-Up document from the input file to outputFile. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::MakeNUp(System::String inputFile, System::String outputFile, int32_t x, int32_t y, System::SharedPtr pageSize) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Input pdf file path and name. | +| outputFile | System::String | Output pdf file path and name. | +| x | int32_t | Number of columns. | +| y | int32_t | Number of rows. | +| pageSize | System::SharedPtr\ | The page size of the output pdf file. | + +### ReturnValue + +boolean - True for success, or false. +## Remarks + + + + + + inputFile + + + Input pdf file path and name. + + + + + outputFile + + + Output pdf file path and name. + + + + + x + + + Number of columns. + + + + + y + + + Number of rows. + + + + + pageSize + + + The page size of the output pdf file. + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::MakeNUp(System::SharedPtr\, int32_t, int32_t, System::SharedPtr\, System::SharedPtr\) method + + +Makes N-up document and stores result into HttpResponse object. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::MakeNUp(System::SharedPtr inputStream, int32_t x, int32_t y, System::SharedPtr pageSize, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Stream of source document. | +| x | int32_t | Number of columns. | +| y | int32_t | Number of rows. | +| pageSize | System::SharedPtr\ | [Page](../../../aspose.pdf/page/) size in result file. | +| response | System::SharedPtr\ | HttpResponse object where result will be stored. | + +### ReturnValue + +True if operation was succeeded. +## Remarks + + + + + + inputStream + + + Stream of source document. + + + + + x + + + Number of columns. + + + + + y + + + Number of rows. + + + + + pageSize + + + + Page size in result file. + + + + + response + + + HttpResponse object where result will be stored. + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::MakeNUp(System::String, int32_t, int32_t, System::SharedPtr\, System::SharedPtr\) method + + +Makes N-up document and stores result into HttpResponse object. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::MakeNUp(System::String inputFile, int32_t x, int32_t y, System::SharedPtr pageSize, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Path to source file. | +| x | int32_t | Number of columns. | +| y | int32_t | Number of rows. | +| pageSize | System::SharedPtr\ | [Page](../../../aspose.pdf/page/) size in result file. | +| response | System::SharedPtr\ | HttpResponse object where result will be stored. | + +### ReturnValue + +True if operation was succeeded. +## Remarks + + + + + + inputFile + + + Path to source file. + + + + + x + + + Number of columns. + + + + + y + + + Number of rows. + + + + + pageSize + + + + Page size in result file. + + + + + response + + + HttpResponse object where result will be stored. + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::MakeNUp(System::String, int32_t, int32_t, System::SharedPtr\) method + + +Makes N-up document and stores result into HttpResponse. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::MakeNUp(System::String inputFile, int32_t x, int32_t y, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Source file name. | +| x | int32_t | Number of columns. | +| y | int32_t | Number of rows. | +| response | System::SharedPtr\ | HttpResponse object where result will be stored. | + +### ReturnValue + +True if operation was succeeded. +## Remarks + + + + + + inputFile + + + Source file name. + + + + + x + + + Number of columns. + + + + + y + + + Number of rows. + + + + + response + + + HttpResponse object where result will be stored. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::MakeNUp(System::SharedPtr\, int32_t, int32_t, System::SharedPtr\) method + + +Makes N-up document and stores result into HttpResponse. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::MakeNUp(System::SharedPtr inputStream, int32_t x, int32_t y, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Stream of input document. | +| x | int32_t | Number of columns. | +| y | int32_t | Number of rows. | +| response | System::SharedPtr\ | HttpResponse where result will be stored. | + +### ReturnValue + +True if operation was succeeded. +## Remarks + + + + + + inputStream + + + Stream of input document. + + + + + x + + + Number of columns. + + + + + y + + + Number of rows. + + + + + response + + + HttpResponse where result will be stored. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/pdffileeditor/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/pdffileeditor/_index.md new file mode 100644 index 0000000000..04315670a2 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/pdffileeditor/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::PdfFileEditor constructor +linktitle: PdfFileEditor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::PdfFileEditor constructor. PdfFileEditor constructor in C++.' +type: docs +weight: 4500 +url: /cpp/aspose.pdf.facades/pdffileeditor/pdffileeditor/ +--- +## PdfFileEditor::PdfFileEditor constructor + + +[PdfFileEditor](../) constructor. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfFileEditor::PdfFileEditor() +``` + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/resizecontents/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/resizecontents/_index.md new file mode 100644 index 0000000000..ba4153c3b4 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/resizecontents/_index.md @@ -0,0 +1,496 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::ResizeContents method +linktitle: ResizeContents +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::ResizeContents method. Resizes contents of pages of the document in C++.' +type: docs +weight: 5700 +url: /cpp/aspose.pdf.facades/pdffileeditor/resizecontents/ +--- +## PdfFileEditor::ResizeContents(System::SharedPtr\, System::SharedPtr\, System::ArrayPtr\, System::SharedPtr\) method + + +Resizes contents of pages of the document. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::ResizeContents(System::SharedPtr source, System::SharedPtr destination, System::ArrayPtr pages, System::SharedPtr parameters) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| source | System::SharedPtr\ | Stream with source document. | +| destination | System::SharedPtr\ | Stream with the destination document. | +| pages | System::ArrayPtr\ | Array of page indexes. | +| parameters | System::SharedPtr\ | Resize parameters. | + +### ReturnValue + +Returns true if success. +## Remarks + + + + + + source + + + Stream with source document. + + + + + destination + + + Stream with the destination document. + + + + + pages + + + Array of page indexes. + + + + + parameters + + + Resize parameters. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::ResizeContents(System::SharedPtr\, System::SharedPtr\, System::ArrayPtr\, double, double) method + + +Resizes contents of document pages. Shrinks contents of page and adds margins. New size of contents is specified in default space units. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::ResizeContents(System::SharedPtr source, System::SharedPtr destination, System::ArrayPtr pages, double newWidth, double newHeight) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| source | System::SharedPtr\ | Stream which contains source document. | +| destination | System::SharedPtr\ | Stream where resultant document will be saved. | +| pages | System::ArrayPtr\ | Array of page indexes. If null then all document pages will be processed. | +| newWidth | double | New width of page contents in default space units. | +| newHeight | double | New height of page contents in default space units. | + +### ReturnValue + +True if resize was successful. +## Remarks + + + + + + source + + + Stream which contains source document. + + + + + destination + + + Stream where resultant document will be saved. + + + + + pages + + + Array of page indexes. If null then all document pages will be processed. + + + + + newWidth + + + New width of page contents in default space units. + + + + + newHeight + + + New height of page contents in default space units. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::ResizeContents(System::String, System::String, System::ArrayPtr\, double, double) method + + +Resizes contents of document pages. Shrinks contents of page and adds margins. New size of contents is specified in default space units. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::ResizeContents(System::String source, System::String destination, System::ArrayPtr pages, double newWidth, double newHeight) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| source | System::String | Path to source document. | +| destination | System::String | Path where resultant document will be saved. | +| pages | System::ArrayPtr\ | Array of page indexes. If null then all document pages will be processed. | +| newWidth | double | New width of page contents in default space units. | +| newHeight | double | New height of page contents in default space units. | + +### ReturnValue + +true if resize was successful. +## Remarks + + + + + + source + + + Path to source document. + + + + + destination + + + Path where resultant document will be saved. + + + + + pages + + + Array of page indexes. If null then all document pages will be processed. + + + + + newWidth + + + New width of page contents in default space units. + + + + + newHeight + + + New height of page contents in default space units. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::ResizeContents(System::String, System::String, System::ArrayPtr\, System::SharedPtr\) method + + +Resizes contents of pages in document. If page is shrinked blank margins are added around the page. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::ResizeContents(System::String source, System::String destination, System::ArrayPtr pages, System::SharedPtr parameters) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| source | System::String | Source document path. | +| destination | System::String | Destination document path. | +| pages | System::ArrayPtr\ | Array of page indexes (page index starts from 1). | +| parameters | System::SharedPtr\ | Parameters of page resize. | + +### ReturnValue + +true if resize was successful. +## Remarks + + + + + + source + + + Source document path. + + + + + destination + + + Destination document path. + + + + + pages + + + Array of page indexes (page index starts from 1). + + + + + parameters + + + Parameters of page resize. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::ResizeContents(System::SharedPtr\, System::ArrayPtr\, System::SharedPtr\) method + + +Resizes pages of document. Blank margins are added around of shrinked page. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileEditor::ResizeContents(System::SharedPtr source, System::ArrayPtr pages, System::SharedPtr parameters) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| source | System::SharedPtr\ | Source document. | +| pages | System::ArrayPtr\ | List of page indexes. | +| parameters | System::SharedPtr\ | Resize parameters. | +## Remarks + + + + + + source + + + Source document. + + + + + pages + + + List of page indexes. + + + + + parameters + + + Resize parameters. + + + + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::ResizeContents(System::SharedPtr\, System::SharedPtr\) method + + +Resizes pages of document. Blank margins are added around of shrinked page. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileEditor::ResizeContents(System::SharedPtr source, System::SharedPtr parameters) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| source | System::SharedPtr\ | Source document. | +| parameters | System::SharedPtr\ | Resize parameters. | +## Remarks + + + + + + source + + + Source document. + + + + + parameters + + + Resize parameters. + + + + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::ResizeContents(System::String, System::ArrayPtr\, System::SharedPtr\, System::SharedPtr\) method + + +Resizes contents of pages in document. If page is shrinked blank margins are added around the page. Result is stored into HttpResponse object. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::ResizeContents(System::String source, System::ArrayPtr pages, System::SharedPtr parameters, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| source | System::String | Path to source file. | +| pages | System::ArrayPtr\ | Array of pages to be resized. | +| parameters | System::SharedPtr\ | Resize parameters. | +| response | System::SharedPtr\ | HttpResponse object where result is saved. | + +### ReturnValue + +True if operation was succeeded. +## Remarks + + + + + + source + + + Path to source file. + + + + + pages + + + Array of pages to be resized. + + + + + parameters + + + Resize parameters. + + + + + response + + + HttpResponse object where result is saved. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::ResizeContents(System::SharedPtr\, System::ArrayPtr\, System::SharedPtr\, System::SharedPtr\) method + + +Resizes contents of pages in document. If page is shrinked blank margins are added around the page. Result is stored into HttpResponse object. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::ResizeContents(System::SharedPtr source, System::ArrayPtr pages, System::SharedPtr parameters, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| source | System::SharedPtr\ | Stream of source file. | +| pages | System::ArrayPtr\ | Array of pages to be resized. | +| parameters | System::SharedPtr\ | Resize parameters. | +| response | System::SharedPtr\ | HttpResponse object where result is saved. | + +### ReturnValue + +True if operation was succeeded. +## Remarks + + + + + + source + + + Stream of source file. + + + + + pages + + + Array of pages to be resized. + + + + + parameters + + + Resize parameters. + + + + + response + + + HttpResponse object where result is saved. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/resizecontentspct/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/resizecontentspct/_index.md new file mode 100644 index 0000000000..cdb30ff3af --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/resizecontentspct/_index.md @@ -0,0 +1,151 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::ResizeContentsPct method +linktitle: ResizeContentsPct +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::ResizeContentsPct method. Resizes contents of document pages. Shrinks contents of page and adds margins. New contents size is specified in percents in C++.' +type: docs +weight: 5800 +url: /cpp/aspose.pdf.facades/pdffileeditor/resizecontentspct/ +--- +## PdfFileEditor::ResizeContentsPct(System::SharedPtr\, System::SharedPtr\, System::ArrayPtr\, double, double) method + + +Resizes contents of document pages. Shrinks contents of page and adds margins. New contents size is specified in percents. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::ResizeContentsPct(System::SharedPtr source, System::SharedPtr destination, System::ArrayPtr pages, double newWidth, double newHeight) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| source | System::SharedPtr\ | Stream which contains source document. | +| destination | System::SharedPtr\ | Stream where resultant document will be saved. | +| pages | System::ArrayPtr\ | Array of page indexes. If null then all document pages will be processed. | +| newWidth | double | New width of page contents in percents. | +| newHeight | double | New height of page contents in percetns. | + +### ReturnValue + +true if resized sucessfully. +## Remarks + + + + + + source + + + Stream which contains source document. + + + + + destination + + + Stream where resultant document will be saved. + + + + + pages + + + Array of page indexes. If null then all document pages will be processed. + + + + + newWidth + + + New width of page contents in percents. + + + + + newHeight + + + New height of page contents in percetns. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::ResizeContentsPct(System::String, System::String, System::ArrayPtr\, double, double) method + + +Resizes contents of document pages. Shrinks contents of page and adds margins. New contents size is specified in percents. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::ResizeContentsPct(System::String source, System::String destination, System::ArrayPtr pages, double newWidth, double newHeight) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| source | System::String | Path to source document. | +| destination | System::String | Path where resultant document will be saved. | +| pages | System::ArrayPtr\ | Array of page indexes. If null then all document pages will be processed. | +| newWidth | double | New width of page contents in percents. | +| newHeight | double | New height of page contents in percetns. | + +### ReturnValue + +true if resize was successful. +## Remarks + + + + + + source + + + Path to source document. + + + + + destination + + + Path where resultant document will be saved. + + + + + pages + + + Array of page indexes. If null then all document pages will be processed. + + + + + newWidth + + + New width of page contents in percents. + + + + + newHeight + + + New height of page contents in percetns. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/set_allowconcatenateexceptions/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/set_allowconcatenateexceptions/_index.md new file mode 100644 index 0000000000..f87f499371 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/set_allowconcatenateexceptions/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::set_AllowConcatenateExceptions method +linktitle: set_AllowConcatenateExceptions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::set_AllowConcatenateExceptions method. If set to true, exceptions are thrown if error occured. Else excetion are not thrown and methods return false if failed in C++.' +type: docs +weight: 2200 +url: /cpp/aspose.pdf.facades/pdffileeditor/set_allowconcatenateexceptions/ +--- +## PdfFileEditor::set_AllowConcatenateExceptions method + + +If set to true, exceptions are thrown if error occured. Else excetion are not thrown and methods return false if failed. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileEditor::set_AllowConcatenateExceptions(bool value) +``` + +## Remarks + + + + Deprecated + + This property is deprecated and can not be used to allow throwing exceptions. + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/set_attachmentname/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/set_attachmentname/_index.md new file mode 100644 index 0000000000..58c8f94514 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/set_attachmentname/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::set_AttachmentName method +linktitle: set_AttachmentName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::set_AttachmentName method. Sets name of attachment when result of operation is stored into HttpResponse objects as attachment in C++.' +type: docs +weight: 4400 +url: /cpp/aspose.pdf.facades/pdffileeditor/set_attachmentname/ +--- +## PdfFileEditor::set_AttachmentName method + + +Sets name of attachment when result of operation is stored into HttpResponse objects as attachment. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileEditor::set_AttachmentName(System::String value) +``` + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/set_closeconcatenatedstreams/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/set_closeconcatenatedstreams/_index.md new file mode 100644 index 0000000000..87b1a71645 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/set_closeconcatenatedstreams/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::set_CloseConcatenatedStreams method +linktitle: set_CloseConcatenatedStreams +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::set_CloseConcatenatedStreams method. If set to true, streams are closed after operation in C++.' +type: docs +weight: 2500 +url: /cpp/aspose.pdf.facades/pdffileeditor/set_closeconcatenatedstreams/ +--- +## PdfFileEditor::set_CloseConcatenatedStreams method + + +If set to true, streams are closed after operation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileEditor::set_CloseConcatenatedStreams(bool value) +``` + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/set_concatenationpacketsize/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/set_concatenationpacketsize/_index.md new file mode 100644 index 0000000000..cf53a5844a --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/set_concatenationpacketsize/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::set_ConcatenationPacketSize method +linktitle: set_ConcatenationPacketSize +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::set_ConcatenationPacketSize method. Number of documents concatenated before new incremental update was made during concatenation when UseDiskBuffer is set to true in C++.' +type: docs +weight: 3800 +url: /cpp/aspose.pdf.facades/pdffileeditor/set_concatenationpacketsize/ +--- +## PdfFileEditor::set_ConcatenationPacketSize method + + +Number of documents concatenated before new incremental update was made during concatenation when UseDiskBuffer is set to true. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileEditor::set_ConcatenationPacketSize(int32_t value) +``` + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/set_contentdisposition/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/set_contentdisposition/_index.md new file mode 100644 index 0000000000..64bb3e1da4 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/set_contentdisposition/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::set_ContentDisposition method +linktitle: set_ContentDisposition +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::set_ContentDisposition method. Sets how content will be stored when result of operation is stored into HttpResponse object. Possible value: inline / attachment. Default: inline in C++.' +type: docs +weight: 4000 +url: /cpp/aspose.pdf.facades/pdffileeditor/set_contentdisposition/ +--- +## PdfFileEditor::set_ContentDisposition method + + +Sets how content will be stored when result of operation is stored into HttpResponse object. Possible value: inline / attachment. Default: inline. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileEditor::set_ContentDisposition(Aspose::Pdf::ContentDisposition value) +``` + +## See Also + +* Enum [ContentDisposition](../../../aspose.pdf/contentdisposition/) +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/set_convertto/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/set_convertto/_index.md new file mode 100644 index 0000000000..0d9b08375f --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/set_convertto/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::set_ConvertTo method +linktitle: set_ConvertTo +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::set_ConvertTo method. Sets PDF file format. Result file will be saved in specified file format. If this property is not specified then file will be save in default PDF format without conversion in C++.' +type: docs +weight: 2300 +url: /cpp/aspose.pdf.facades/pdffileeditor/set_convertto/ +--- +## PdfFileEditor::set_ConvertTo method + + +Sets PDF file format. Result file will be saved in specified file format. If this property is not specified then file will be save in default PDF format without conversion. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileEditor::set_ConvertTo(PdfFormat value) +``` + +## See Also + +* Enum [PdfFormat](../../../aspose.pdf/pdfformat/) +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/set_copylogicalstructure/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/set_copylogicalstructure/_index.md new file mode 100644 index 0000000000..a70cda0017 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/set_copylogicalstructure/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::set_CopyLogicalStructure method +linktitle: set_CopyLogicalStructure +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::set_CopyLogicalStructure method. If true then logical structure of the file is copied when concatenation is performed in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.facades/pdffileeditor/set_copylogicalstructure/ +--- +## PdfFileEditor::set_CopyLogicalStructure method + + +If true then logical structure of the file is copied when concatenation is performed. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileEditor::set_CopyLogicalStructure(bool value) +``` + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/set_copyoutlines/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/set_copyoutlines/_index.md new file mode 100644 index 0000000000..965602538a --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/set_copyoutlines/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::set_CopyOutlines method +linktitle: set_CopyOutlines +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::set_CopyOutlines method. If true then outlines will be copied in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.facades/pdffileeditor/set_copyoutlines/ +--- +## PdfFileEditor::set_CopyOutlines method + + +If true then outlines will be copied. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileEditor::set_CopyOutlines(bool value) +``` + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/set_corruptedfileaction/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/set_corruptedfileaction/_index.md new file mode 100644 index 0000000000..b21fbe0fd5 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/set_corruptedfileaction/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::set_CorruptedFileAction method +linktitle: set_CorruptedFileAction +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::set_CorruptedFileAction method. This property defines behavior when concatenating process met corrupted file. Possible values are: StopWithError and ConcatenateIgnoringCorrupted in C++.' +type: docs +weight: 1800 +url: /cpp/aspose.pdf.facades/pdffileeditor/set_corruptedfileaction/ +--- +## PdfFileEditor::set_CorruptedFileAction method + + +This property defines behavior when concatenating process met corrupted file. Possible values are: StopWithError and ConcatenateIgnoringCorrupted. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileEditor::set_CorruptedFileAction(PdfFileEditor::ConcatenateCorruptedFileAction value) +``` + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/set_incrementalupdates/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/set_incrementalupdates/_index.md new file mode 100644 index 0000000000..5917b6d18b --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/set_incrementalupdates/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::set_IncrementalUpdates method +linktitle: set_IncrementalUpdates +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::set_IncrementalUpdates method. If true, incremental updates are made during concatenation in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.facades/pdffileeditor/set_incrementalupdates/ +--- +## PdfFileEditor::set_IncrementalUpdates method + + +If true, incremental updates are made during concatenation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileEditor::set_IncrementalUpdates(bool value) +``` + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/set_keepactions/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/set_keepactions/_index.md new file mode 100644 index 0000000000..c57a8cdb19 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/set_keepactions/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::set_KeepActions method +linktitle: set_KeepActions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::set_KeepActions method. If true actions will be copied from source documents. Defaulkt value : true in C++.' +type: docs +weight: 2900 +url: /cpp/aspose.pdf.facades/pdffileeditor/set_keepactions/ +--- +## PdfFileEditor::set_KeepActions method + + +If true actions will be copied from source documents. Defaulkt value : true. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileEditor::set_KeepActions(bool value) +``` + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/set_keepfieldsunique/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/set_keepfieldsunique/_index.md new file mode 100644 index 0000000000..f9ab8853dd --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/set_keepfieldsunique/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::set_KeepFieldsUnique method +linktitle: set_KeepFieldsUnique +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::set_KeepFieldsUnique method. If true then field names will be made unique when forms are concatenated. Suffixes will be added to field names, suffix template may be specified in UniqueSuffix property in C++.' +type: docs +weight: 3100 +url: /cpp/aspose.pdf.facades/pdffileeditor/set_keepfieldsunique/ +--- +## PdfFileEditor::set_KeepFieldsUnique method + + +If true then field names will be made unique when forms are concatenated. Suffixes will be added to field names, suffix template may be specified in UniqueSuffix property. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileEditor::set_KeepFieldsUnique(bool value) +``` + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/set_mergeduplicatelayers/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/set_mergeduplicatelayers/_index.md new file mode 100644 index 0000000000..63de1dfa0f --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/set_mergeduplicatelayers/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::set_MergeDuplicateLayers method +linktitle: set_MergeDuplicateLayers +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::set_MergeDuplicateLayers method. Optional contents of concatentated documents with equal names will be merged into one layer in resulstant document if this property is true. Else, layers with equal names will be save as different layers in resultant document in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.facades/pdffileeditor/set_mergeduplicatelayers/ +--- +## PdfFileEditor::set_MergeDuplicateLayers method + + +Optional contents of concatentated documents with equal names will be merged into one layer in resulstant document if this property is true. Else, layers with equal names will be save as different layers in resultant document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileEditor::set_MergeDuplicateLayers(bool value) +``` + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/set_mergeduplicateoutlines/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/set_mergeduplicateoutlines/_index.md new file mode 100644 index 0000000000..d5353fe5ba --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/set_mergeduplicateoutlines/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::set_MergeDuplicateOutlines method +linktitle: set_MergeDuplicateOutlines +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::set_MergeDuplicateOutlines method. If true, duplicate outlines are merged in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.facades/pdffileeditor/set_mergeduplicateoutlines/ +--- +## PdfFileEditor::set_MergeDuplicateOutlines method + + +If true, duplicate outlines are merged. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileEditor::set_MergeDuplicateOutlines(bool value) +``` + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/set_optimizesize/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/set_optimizesize/_index.md new file mode 100644 index 0000000000..344c71cf01 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/set_optimizesize/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::set_OptimizeSize method +linktitle: set_OptimizeSize +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::set_OptimizeSize method. Sets optimization flag. Equal resource streams in resultant file are merged into one PDF object if this flag set. This allows to decrease resultant file size but may cause slower execution and larger memory requirements. Default value: false in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.facades/pdffileeditor/set_optimizesize/ +--- +## PdfFileEditor::set_OptimizeSize method + + +Sets optimization flag. Equal resource streams in resultant file are merged into one PDF object if this flag set. This allows to decrease resultant file size but may cause slower execution and larger memory requirements. Default value: false. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileEditor::set_OptimizeSize(bool value) +``` + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/set_ownerpassword/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/set_ownerpassword/_index.md new file mode 100644 index 0000000000..f5bbdd6db7 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/set_ownerpassword/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::set_OwnerPassword method +linktitle: set_OwnerPassword +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::set_OwnerPassword method. Sets owner''s password if the source input Pdf file is encrypted. This property is not implemented yet in C++.' +type: docs +weight: 2000 +url: /cpp/aspose.pdf.facades/pdffileeditor/set_ownerpassword/ +--- +## PdfFileEditor::set_OwnerPassword method + + +Sets owner's password if the source input [Pdf](../../../aspose.pdf/) file is encrypted. This property is not implemented yet. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileEditor::set_OwnerPassword(System::String value) +``` + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/set_preserveuserrights/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/set_preserveuserrights/_index.md new file mode 100644 index 0000000000..10e68336d1 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/set_preserveuserrights/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::set_PreserveUserRights method +linktitle: set_PreserveUserRights +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::set_PreserveUserRights method. If true, user rights of first document are applied to concatenated document. User rights of all other documents are ignored in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.facades/pdffileeditor/set_preserveuserrights/ +--- +## PdfFileEditor::set_PreserveUserRights method + + +If true, user rights of first document are applied to concatenated document. User rights of all other documents are ignored. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileEditor::set_PreserveUserRights(bool value) +``` + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/set_removesignatures/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/set_removesignatures/_index.md new file mode 100644 index 0000000000..52a93ee9b0 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/set_removesignatures/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::set_RemoveSignatures method +linktitle: set_RemoveSignatures +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::set_RemoveSignatures method. If true, all signatures will be removed from fields (fields will remain); otherwise, you can get invalid signatures in C++.' +type: docs +weight: 3300 +url: /cpp/aspose.pdf.facades/pdffileeditor/set_removesignatures/ +--- +## PdfFileEditor::set_RemoveSignatures method + + +If true, all signatures will be removed from fields (fields will remain); otherwise, you can get invalid signatures. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileEditor::set_RemoveSignatures(bool value) +``` + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/set_saveoptions/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/set_saveoptions/_index.md new file mode 100644 index 0000000000..6462115963 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/set_saveoptions/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::set_SaveOptions method +linktitle: set_SaveOptions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::set_SaveOptions method. Sets save options when result is stored as HttpResponse. Default value: PdfSaveOptions in C++.' +type: docs +weight: 4200 +url: /cpp/aspose.pdf.facades/pdffileeditor/set_saveoptions/ +--- +## PdfFileEditor::set_SaveOptions method + + +Sets save options when result is stored as HttpResponse. Default value: [PdfSaveOptions](../../../aspose.pdf/pdfsaveoptions/). + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileEditor::set_SaveOptions(System::SharedPtr value) +``` + +## See Also + +* Class [SaveOptions](../../../aspose.pdf/saveoptions/) +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/set_uniquesuffix/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/set_uniquesuffix/_index.md new file mode 100644 index 0000000000..4e237e015d --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/set_uniquesuffix/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::set_UniqueSuffix method +linktitle: set_UniqueSuffix +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::set_UniqueSuffix method. Format of the suffix which is added to field name to make it unique when forms are concatenated. This string must contain NUM% substring which will be replaced with numbers. For example if UniqueSuffix = "ABC%NUM%" then for field "fieldName" names will be: fieldNameABC1, fieldNameABC2, fieldNameABC3 etc in C++.' +type: docs +weight: 2700 +url: /cpp/aspose.pdf.facades/pdffileeditor/set_uniquesuffix/ +--- +## PdfFileEditor::set_UniqueSuffix method + + +Format of the suffix which is added to field name to make it unique when forms are concatenated. This string must contain NUM% substring which will be replaced with numbers. For example if UniqueSuffix = "ABC%NUM%" then for field "fieldName" names will be: fieldNameABC1, fieldNameABC2, fieldNameABC3 etc. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileEditor::set_UniqueSuffix(System::String value) +``` + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/set_usediskbuffer/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/set_usediskbuffer/_index.md new file mode 100644 index 0000000000..10ee7d5655 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/set_usediskbuffer/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::set_UseDiskBuffer method +linktitle: set_UseDiskBuffer +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::set_UseDiskBuffer method. If this option used then destination document will be saved on disk periodically and further concatenation will appllied to it as incremental updates in C++.' +type: docs +weight: 3600 +url: /cpp/aspose.pdf.facades/pdffileeditor/set_usediskbuffer/ +--- +## PdfFileEditor::set_UseDiskBuffer method + + +If this option used then destination document will be saved on disk periodically and further concatenation will appllied to it as incremental updates. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileEditor::set_UseDiskBuffer(bool value) +``` + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/splitfromfirst/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/splitfromfirst/_index.md new file mode 100644 index 0000000000..bd848d8072 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/splitfromfirst/_index.md @@ -0,0 +1,223 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::SplitFromFirst method +linktitle: SplitFromFirst +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::SplitFromFirst method. Splits Pdf file from first page to specified location,and saves the front part as a new file in C++.' +type: docs +weight: 5100 +url: /cpp/aspose.pdf.facades/pdffileeditor/splitfromfirst/ +--- +## PdfFileEditor::SplitFromFirst(System::String, int32_t, System::String) method + + +Splits [Pdf](../../../aspose.pdf/) file from first page to specified location,and saves the front part as a new file. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::SplitFromFirst(System::String inputFile, int32_t location, System::String outputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Source [Pdf](../../../aspose.pdf/) file. | +| location | int32_t | The splitting point. | +| outputFile | System::String | Output [Pdf](../../../aspose.pdf/) file. | + +### ReturnValue + +True for success, or false. +## Remarks + + + + + + inputFile + + + Source Pdf file. + + + + + location + + + The splitting point. + + + + + outputFile + + + Output Pdf file. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::SplitFromFirst(System::SharedPtr\, int32_t, System::SharedPtr\) method + + +Splits from start to specified location,and saves the front part in output Stream. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::SplitFromFirst(System::SharedPtr inputStream, int32_t location, System::SharedPtr outputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Source [Pdf](../../../aspose.pdf/) file Stream. | +| location | int32_t | The splitting point. | +| outputStream | System::SharedPtr\ | Output file Stream. | + +### ReturnValue + +True for success, or false. +## Remarks + + + + + + inputStream + + + Source Pdf file Stream. + + + + + location + + + The splitting point. + + + + + outputStream + + + Output file Stream. + + + + +The streams are NOT closed after this operation. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::SplitFromFirst(System::String, int32_t, System::SharedPtr\) method + + +Splits document from first page to location and saves result into HttpResponse objects. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::SplitFromFirst(System::String inputFile, int32_t location, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Source file name. | +| location | int32_t | Split point. | +| response | System::SharedPtr\ | HttpResponse objects. | + +### ReturnValue + +True if operation was succeeded. +## Remarks + + + + + + inputFile + + + Source file name. + + + + + location + + + Split point. + + + + + response + + + HttpResponse objects. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::SplitFromFirst(System::SharedPtr\, int32_t, System::SharedPtr\) method + + +Splits document from start to specified location and stores result into HttpResponse object. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::SplitFromFirst(System::SharedPtr inputStream, int32_t location, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Stream of source document. | +| location | int32_t | The splitting point. | +| response | System::SharedPtr\ | HttpResponse object where result will be stored. | + +### ReturnValue + +True if operation was succeeded. +## Remarks + + + + + + inputStream + + + Stream of source document. + + + + + location + + + The splitting point. + + + + + response + + + HttpResponse object where result will be stored. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/splittobulks/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/splittobulks/_index.md new file mode 100644 index 0000000000..e3251792b5 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/splittobulks/_index.md @@ -0,0 +1,97 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::SplitToBulks method +linktitle: SplitToBulks +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::SplitToBulks method. Splits the Pdf file into several documents.The documents can be single-page or multi-pages in C++.' +type: docs +weight: 5600 +url: /cpp/aspose.pdf.facades/pdffileeditor/splittobulks/ +--- +## PdfFileEditor::SplitToBulks(System::String, System::ArrayPtr\\>) method + + +Splits the [Pdf](../../../aspose.pdf/) file into several documents.The documents can be single-page or multi-pages. + +```cpp +ASPOSE_PDF_SHARED_API System::ArrayPtr> Aspose::Pdf::Facades::PdfFileEditor::SplitToBulks(System::String inputFile, System::ArrayPtr> numberOfPage) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Input PDF file. | +| numberOfPage | System::ArrayPtr\\> | Array which contains array of double elements, which is start and end pages of document. | + +### ReturnValue + +Output PDF streams, each stream buffers a PDF document. +## Remarks + + + + + + inputFile + + + Input PDF file. + + + + + numberOfPage + + + Array which contains array of double elements, which is start and end pages of document. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::SplitToBulks(System::SharedPtr\, System::ArrayPtr\\>) method + + +Splits the [Pdf](../../../aspose.pdf/) file into several documents.The documents can be single-page or multi-pages. + +```cpp +ASPOSE_PDF_SHARED_API System::ArrayPtr> Aspose::Pdf::Facades::PdfFileEditor::SplitToBulks(System::SharedPtr inputStream, System::ArrayPtr> numberOfPage) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Input PDF stream. | +| numberOfPage | System::ArrayPtr\\> | The start page and the end page of each document. | + +### ReturnValue + +Output PDF streams, each stream buffers a PDF document. +## Remarks + + + + + + inputStream + + + Input PDF stream. + + + + + numberOfPage + + + The start page and the end page of each document. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/splittoend/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/splittoend/_index.md new file mode 100644 index 0000000000..f8c7f4b77c --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/splittoend/_index.md @@ -0,0 +1,223 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::SplitToEnd method +linktitle: SplitToEnd +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::SplitToEnd method. Splits from location, and saves the rear part as a new file in C++.' +type: docs +weight: 5200 +url: /cpp/aspose.pdf.facades/pdffileeditor/splittoend/ +--- +## PdfFileEditor::SplitToEnd(System::String, int32_t, System::String) method + + +Splits from location, and saves the rear part as a new file. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::SplitToEnd(System::String inputFile, int32_t location, System::String outputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Source [Pdf](../../../aspose.pdf/) file. | +| location | int32_t | The splitting position. | +| outputFile | System::String | Output [Pdf](../../../aspose.pdf/) file path. | + +### ReturnValue + +True for success, or false. +## Remarks + + + + + + inputFile + + + Source Pdf file. + + + + + location + + + The splitting position. + + + + + outputFile + + + Output Pdf file path. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::SplitToEnd(System::SharedPtr\, int32_t, System::SharedPtr\) method + + +Splits from specified location, and saves the rear part as a new file Stream. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::SplitToEnd(System::SharedPtr inputStream, int32_t location, System::SharedPtr outputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Source [Pdf](../../../aspose.pdf/) file Stream. | +| location | int32_t | The splitting position. | +| outputStream | System::SharedPtr\ | Output [Pdf](../../../aspose.pdf/) file Stream. | + +### ReturnValue + +True for success, or false. +## Remarks + + + + + + inputStream + + + Source Pdf file Stream. + + + + + location + + + The splitting position. + + + + + outputStream + + + Output Pdf file Stream. + + + + +The streams are NOT closed after this operation unless CloseConcatedStreams is specified. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::SplitToEnd(System::SharedPtr\, int32_t, System::SharedPtr\) method + + +Splits from specified location, and saves the rear part into HttpResponse object. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::SplitToEnd(System::SharedPtr inputStream, int32_t location, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Source document stream. | +| location | int32_t | Split point. | +| response | System::SharedPtr\ | HttpResponse object. | + +### ReturnValue + +true if splitting was successful. +## Remarks + + + + + + inputStream + + + Source document stream. + + + + + location + + + Split point. + + + + + response + + + HttpResponse object. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::SplitToEnd(System::String, int32_t, System::SharedPtr\) method + + +Splits from specified location, and saves the rear part into HttpResponse object. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::SplitToEnd(System::String inputFile, int32_t location, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | source file name. | +| location | int32_t | Split point. | +| response | System::SharedPtr\ | HttpResponse objects. | + +### ReturnValue + +True if operation was succeeded. +## Remarks + + + + + + inputFile + + + source file name. + + + + + location + + + Split point. + + + + + response + + + HttpResponse objects. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/splittopages/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/splittopages/_index.md new file mode 100644 index 0000000000..393f3268d1 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/splittopages/_index.md @@ -0,0 +1,159 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::SplitToPages method +linktitle: SplitToPages +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::SplitToPages method. Splits the PDF file into single-page documents in C++.' +type: docs +weight: 5500 +url: /cpp/aspose.pdf.facades/pdffileeditor/splittopages/ +--- +## PdfFileEditor::SplitToPages(System::String) method + + +Splits the PDF file into single-page documents. + +```cpp +ASPOSE_PDF_SHARED_API System::ArrayPtr> Aspose::Pdf::Facades::PdfFileEditor::SplitToPages(System::String inputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Input PDF file name. | + +### ReturnValue + +Output PDF streams, each stream buffers a single-page PDF document. +## Remarks + + + + + + inputFile + + + Input PDF file name. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::SplitToPages(System::SharedPtr\) method + + +Splits the [Pdf](../../../aspose.pdf/) file into single-page documents. + +```cpp +ASPOSE_PDF_SHARED_API System::ArrayPtr> Aspose::Pdf::Facades::PdfFileEditor::SplitToPages(System::SharedPtr inputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Input [Pdf](../../../aspose.pdf/) stream. | + +### ReturnValue + +Array of memory streams which contain pages of the document. +## Remarks + + + + + + inputStream + + + Input Pdf stream. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::SplitToPages(System::String, System::String) method + + +Split the [Pdf](../../../aspose.pdf/) file into single-page documents and saves it into specified path. Path is specifield by field name temaplate. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileEditor::SplitToPages(System::String inputFile, System::String fileNameTemplate) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Input file name. | +| fileNameTemplate | System::String | Template of resultant file name. Must contain NUM% which is replaced with page number. For example, if c:/dir/pageNUM%.pdf is specified, resultant files will have the following names: c:/dir/page1.pdf, c:/dir/page2.pdf etc. | +## Remarks + + + + + + inputFile + + + Input file name. + + + + + fileNameTemplate + + + Template of resultant file name. Must contain NUM% which is replaced with page number. For example, if c:/dir/pageNUM%.pdf is specified, resultant files will have the following names: c:/dir/page1.pdf, c:/dir/page2.pdf etc. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::SplitToPages(System::SharedPtr\, System::String) method + + +Split the [Pdf](../../../aspose.pdf/) file into single-page documents and saves it into specified path. Path is specifield by field name temaplate. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileEditor::SplitToPages(System::SharedPtr inputStream, System::String fileNameTemplate) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Stream of the soruce document. | +| fileNameTemplate | System::String | Template of resultant file name. Must contain NUM% which is replaced with page number. For example, if c:/dir/pageNUM%.pdf is specified, resultant files will have the following names: c:/dir/page1.pdf, c:/dir/page2.pdf etc. | +## Remarks + + + + + + inputStream + + + Stream of the soruce document. + + + + + fileNameTemplate + + + Template of resultant file name. Must contain NUM% which is replaced with page number. For example, if c:/dir/pageNUM%.pdf is specified, resultant files will have the following names: c:/dir/page1.pdf, c:/dir/page2.pdf etc. + + + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/tryappend/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/tryappend/_index.md new file mode 100644 index 0000000000..474c5e76e4 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/tryappend/_index.md @@ -0,0 +1,305 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::TryAppend method +linktitle: TryAppend +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::TryAppend method. Appends pages, which are chosen from array of documents in portStreams. The result document includes firstInputFile and all portStreams documents pages in the range startPage to endPage in C++.' +type: docs +weight: 6300 +url: /cpp/aspose.pdf.facades/pdffileeditor/tryappend/ +--- +## PdfFileEditor::TryAppend(System::SharedPtr\, System::ArrayPtr\\>, int32_t, int32_t, System::SharedPtr\) method + + +Appends pages, which are chosen from array of documents in portStreams. The result document includes firstInputFile and all portStreams documents pages in the range startPage to endPage. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryAppend(System::SharedPtr inputStream, System::ArrayPtr> portStreams, int32_t startPage, int32_t endPage, System::SharedPtr outputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Input [Pdf](../../../aspose.pdf/) stream. | +| portStreams | System::ArrayPtr\\> | Documents to copy pages from. | +| startPage | int32_t | [Page](../../../aspose.pdf/page/) starts in portStreams documents. | +| endPage | int32_t | [Page](../../../aspose.pdf/page/) ends in portStreams documents . | +| outputStream | System::SharedPtr\ | Output [Pdf](../../../aspose.pdf/) stream. | + +### ReturnValue + +True for success, or false. +## Remarks + + + + + + inputStream + + + Input Pdf stream. + + + + + portStreams + + + Documents to copy pages from. + + + + + startPage + + + + Page starts in portStreams documents. + + + + + endPage + + + + Page ends in portStreams documents . + + + + + outputStream + + + Output Pdf stream. + + + + +The TryAppend method is like the Append method, except the TryAppend method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryAppend(System::String, System::ArrayPtr\, int32_t, int32_t, System::String) method + + +Appends pages, which are chosen from portFiles documents. The result document includes firstInputFile and all portFiles documents pages in the range startPage to endPage. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryAppend(System::String inputFile, System::ArrayPtr portFiles, int32_t startPage, int32_t endPage, System::String outputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Input [Pdf](../../../aspose.pdf/) file. | +| portFiles | System::ArrayPtr\ | Documents to copy pages from. | +| startPage | int32_t | [Page](../../../aspose.pdf/page/) starts in portFiles documents. | +| endPage | int32_t | [Page](../../../aspose.pdf/page/) ends in portFiles documents . | +| outputFile | System::String | Output [Pdf](../../../aspose.pdf/) document. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + inputFile + + + Input Pdf file. + + + + + portFiles + + + Documents to copy pages from. + + + + + startPage + + + + Page starts in portFiles documents. + + + + + endPage + + + + Page ends in portFiles documents . + + + + + outputFile + + + Output Pdf document. + + + + +The TryAppend method is like the Append method, except the TryAppend method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryAppend(System::SharedPtr\, System::ArrayPtr\\>, int32_t, int32_t, System::SharedPtr\) method + + +Appends documents to source document and saves result into response object. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryAppend(System::SharedPtr inputStream, System::ArrayPtr> portStreams, int32_t startPage, int32_t endPage, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Stream which contains source document. | +| portStreams | System::ArrayPtr\\> | Array of streams with documents to be appended. | +| startPage | int32_t | Start page of appended page. | +| endPage | int32_t | End page of appended pages. | +| response | System::SharedPtr\ | Response object where document will be saved. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + inputStream + + + Stream which contains source document. + + + + + portStreams + + + Array of streams with documents to be appended. + + + + + startPage + + + Start page of appended page. + + + + + endPage + + + End page of appended pages. + + + + + response + + + Response object where document will be saved. + + + + +The TryAppend method is like the Append method, except the TryAppend method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryAppend(System::String, System::ArrayPtr\, int32_t, int32_t, System::SharedPtr\) method + + +Appends documents to source document and saves result into HttpResponse object. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryAppend(System::String inputFile, System::ArrayPtr portFiles, int32_t startPage, int32_t endPage, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Name of file containing source document. | +| portFiles | System::ArrayPtr\ | Array of file names containing appended documents. | +| startPage | int32_t | Start page of appended pages. | +| endPage | int32_t | End page of appended pages. | +| response | System::SharedPtr\ | Response object where document will be saved. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + inputFile + + + Name of file containing source document. + + + + + portFiles + + + Array of file names containing appended documents. + + + + + startPage + + + Start page of appended pages. + + + + + endPage + + + End page of appended pages. + + + + + response + + + Response object where document will be saved. + + + + +The TryAppend method is like the Append method, except the TryAppend method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/tryconcatenate/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/tryconcatenate/_index.md new file mode 100644 index 0000000000..99e8937e28 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/tryconcatenate/_index.md @@ -0,0 +1,423 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::TryConcatenate method +linktitle: TryConcatenate +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::TryConcatenate method. Concatenates two files in C++.' +type: docs +weight: 6200 +url: /cpp/aspose.pdf.facades/pdffileeditor/tryconcatenate/ +--- +## PdfFileEditor::TryConcatenate(System::String, System::String, System::String) method + + +Concatenates two files. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryConcatenate(System::String firstInputFile, System::String secInputFile, System::String outputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| firstInputFile | System::String | First file to concatenate. | +| secInputFile | System::String | Second file to concatenate. | +| outputFile | System::String | Output file. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + firstInputFile + + + First file to concatenate. + + + + + secInputFile + + + Second file to concatenate. + + + + + outputFile + + + Output file. + + + + +The TryConcatenate method is like the Concatenate method, except the TryConcatenate method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryConcatenate(System::ArrayPtr\\>, System::SharedPtr\) method + + +Concatenates documents. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryConcatenate(System::ArrayPtr> src, System::SharedPtr dest) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| src | System::ArrayPtr\\> | Array of source documents. | +| dest | System::SharedPtr\ | Destination document. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + src + + + Array of source documents. + + + + + dest + + + Destination document. + + + + +The TryConcatenate method is like the Concatenate method, except the TryConcatenate method does not throw an exception if the operation fails. +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryConcatenate(System::ArrayPtr\, System::String) method + + +Concatenates files into one file. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryConcatenate(System::ArrayPtr inputFiles, System::String outputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFiles | System::ArrayPtr\ | Array of files to concatenate. | +| outputFile | System::String | Name of output file. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + inputFiles + + + Array of files to concatenate. + + + + + outputFile + + + Name of output file. + + + + +The TryConcatenate method is like the Concatenate method, except the TryConcatenate method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryConcatenate(System::ArrayPtr\\>, System::SharedPtr\) method + + +Concatenates files. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryConcatenate(System::ArrayPtr> inputStream, System::SharedPtr outputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::ArrayPtr\\> | Array of streams to be concatenated. | +| outputStream | System::SharedPtr\ | Stream where result file will be stored. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + inputStream + + + Array of streams to be concatenated. + + + + + outputStream + + + Stream where result file will be stored. + + + + +The TryConcatenate method is like the Concatenate method, except the TryConcatenate method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryConcatenate(System::String, System::String, System::String, System::String) method + + +Merges two [Pdf](../../../aspose.pdf/) documents into a new [Pdf](../../../aspose.pdf/) document with pages in alternate ways and fill the blank places with blank pages. e.g.: document1 has 5 pages: p1, p2, p3, p4, p5. document2 has 3 pages: p1', p2', p3'. Merging the two [Pdf](../../../aspose.pdf/) document will produce the result document with pages:p1, p1', p2, p2', p3, p3', p4, blankpage, p5, blankpage. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryConcatenate(System::String firstInputFile, System::String secInputFile, System::String blankPageFile, System::String outputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| firstInputFile | System::String | First file. | +| secInputFile | System::String | Second file. | +| blankPageFile | System::String | PDF file with blank page. | +| outputFile | System::String | Result file. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + firstInputFile + + + First file. + + + + + secInputFile + + + Second file. + + + + + blankPageFile + + + PDF file with blank page. + + + + + outputFile + + + Result file. + + + + +The TryConcatenate method is like the Concatenate method, except the TryConcatenate method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryConcatenate(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) method + + +Merges two [Pdf](../../../aspose.pdf/) documents into a new [Pdf](../../../aspose.pdf/) document with pages in alternate ways and fill the blank places with blank pages. e.g.: document1 has 5 pages: p1, p2, p3, p4, p5. document2 has 3 pages: p1', p2', p3'. Merging the two [Pdf](../../../aspose.pdf/) document will produce the result document with pages:p1, p1', p2, p2', p3, p3', p4, blankpage, p5, blankpage. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryConcatenate(System::SharedPtr firstInputStream, System::SharedPtr secInputStream, System::SharedPtr blankPageStream, System::SharedPtr outputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| firstInputStream | System::SharedPtr\ | The first [Pdf](../../../aspose.pdf/) Stream. | +| secInputStream | System::SharedPtr\ | The second [Pdf](../../../aspose.pdf/) Stream. | +| blankPageStream | System::SharedPtr\ | The [Pdf](../../../aspose.pdf/) Stream with blank page. | +| outputStream | System::SharedPtr\ | Output [Pdf](../../../aspose.pdf/) Stream. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + firstInputStream + + + The first Pdf Stream. + + + + + secInputStream + + + The second Pdf Stream. + + + + + blankPageStream + + + The Pdf Stream with blank page. + + + + + outputStream + + + Output Pdf Stream. + + + + +The TryConcatenate method is like the Concatenate method, except the TryConcatenate method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryConcatenate(System::ArrayPtr\, System::SharedPtr\) method + + +Concatenates files and saves reslt into HttpResposnse object. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryConcatenate(System::ArrayPtr inputFiles, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFiles | System::ArrayPtr\ | Array of files to concatenate. | +| response | System::SharedPtr\ | Response object. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + inputFiles + + + Array of files to concatenate. + + + + + response + + + Response object. + + + + +The TryConcatenate method is like the Concatenate method, except the TryConcatenate method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryConcatenate(System::ArrayPtr\\>, System::SharedPtr\) method + + +Concatenates files and stores result into HttpResponse object. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryConcatenate(System::ArrayPtr> inputStream, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::ArrayPtr\\> | Streams array which contain files to concatenate. | +| response | System::SharedPtr\ | Response object/ | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + inputStream + + + Streams array which contain files to concatenate. + + + + + response + + + Response object/ + + + + +The TryConcatenate method is like the Concatenate method, except the TryConcatenate method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/trydelete/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/trydelete/_index.md new file mode 100644 index 0000000000..dc44d7a799 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/trydelete/_index.md @@ -0,0 +1,229 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::TryDelete method +linktitle: TryDelete +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::TryDelete method. Deletes pages specified by number array from input file, saves as a new Pdf file in C++.' +type: docs +weight: 6500 +url: /cpp/aspose.pdf.facades/pdffileeditor/trydelete/ +--- +## PdfFileEditor::TryDelete(System::String, System::ArrayPtr\, System::String) method + + +Deletes pages specified by number array from input file, saves as a new [Pdf](../../../aspose.pdf/) file. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryDelete(System::String inputFile, System::ArrayPtr pageNumber, System::String outputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Input file path. | +| pageNumber | System::ArrayPtr\ | Index of page out of the input file. | +| outputFile | System::String | Output file path. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + inputFile + + + Input file path. + + + + + pageNumber + + + Index of page out of the input file. + + + + + outputFile + + + Output file path. + + + + +The TryDelete method is like the Delete method, except the TryDelete method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryDelete(System::SharedPtr\, System::ArrayPtr\, System::SharedPtr\) method + + +Deletes pages specified by number array from input file, saves as a new [Pdf](../../../aspose.pdf/) file. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryDelete(System::SharedPtr inputStream, System::ArrayPtr pageNumber, System::SharedPtr outputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Input file Stream. | +| pageNumber | System::ArrayPtr\ | Index of page out of the input file. | +| outputStream | System::SharedPtr\ | Output file stream. | + +### ReturnValue + +True for success, or false. +## Remarks + + + + + + inputStream + + + Input file Stream. + + + + + pageNumber + + + Index of page out of the input file. + + + + + outputStream + + + Output file stream. + + + + +The TryDelete method is like the Delete method, except the TryDelete method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryDelete(System::String, System::ArrayPtr\, System::SharedPtr\) method + + +Deletes specified pages from document and stores result into HttpResponse object. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryDelete(System::String inputFile, System::ArrayPtr pageNumber, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Path of source file. | +| pageNumber | System::ArrayPtr\ | Array of page numbers which must be deleted. | +| response | System::SharedPtr\ | Response object where result document will be stored. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + inputFile + + + Path of source file. + + + + + pageNumber + + + Array of page numbers which must be deleted. + + + + + response + + + Response object where result document will be stored. + + + + +The TryDelete method is like the Delete method, except the TryDelete method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryDelete(System::SharedPtr\, System::ArrayPtr\, System::SharedPtr\) method + + +Deletes specified pages from document and saves result into HttpResponse object. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryDelete(System::SharedPtr inputStream, System::ArrayPtr pageNumber, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Source document stream. | +| pageNumber | System::ArrayPtr\ | Array of page numbers which will be deleted. | +| response | System::SharedPtr\ | HttpResponse object | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + inputStream + + + Source document stream. + + + + + pageNumber + + + Array of page numbers which will be deleted. + + + + + response + + + HttpResponse object + + + + +The TryDelete method is like the Delete method, except the TryDelete method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/tryextract/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/tryextract/_index.md new file mode 100644 index 0000000000..7eb8e14937 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/tryextract/_index.md @@ -0,0 +1,294 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::TryExtract method +linktitle: TryExtract +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::TryExtract method. Extracts pages from input file,saves as a new Pdf file in C++.' +type: docs +weight: 6600 +url: /cpp/aspose.pdf.facades/pdffileeditor/tryextract/ +--- +## PdfFileEditor::TryExtract(System::String, int32_t, int32_t, System::String) method + + +Extracts pages from input file,saves as a new [Pdf](../../../aspose.pdf/) file. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryExtract(System::String inputFile, int32_t startPage, int32_t endPage, System::String outputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Input [Pdf](../../../aspose.pdf/) file path. | +| startPage | int32_t | Start page number. | +| endPage | int32_t | End page number. | +| outputFile | System::String | Output [Pdf](../../../aspose.pdf/) file path. | + +### ReturnValue + +True for success, or false. +## Remarks + + + + + + inputFile + + + Input Pdf file path. + + + + + startPage + + + Start page number. + + + + + endPage + + + End page number. + + + + + outputFile + + + Output Pdf file path. + + + + +The TryExtract method is like the Extract method, except the TryExtract method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryExtract(System::String, System::ArrayPtr\, System::String) method + + +Extracts pages specified by number array, saves as a new PDF file. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryExtract(System::String inputFile, System::ArrayPtr pageNumber, System::String outputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Input file path. | +| pageNumber | System::ArrayPtr\ | Index of page out of the input file. | +| outputFile | System::String | Output file path. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + inputFile + + + Input file path. + + + + + pageNumber + + + Index of page out of the input file. + + + + + outputFile + + + Output file path. + + + + +The TryExtract method is like the Extract method, except the TryExtract method does not throw an exception if the operation fails. + +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryExtract(System::SharedPtr\, System::ArrayPtr\, System::SharedPtr\) method + + +Extracts pages specified by number array, saves as a new [Pdf](../../../aspose.pdf/) file. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryExtract(System::SharedPtr inputStream, System::ArrayPtr pageNumber, System::SharedPtr outputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Input file Stream. | +| pageNumber | System::ArrayPtr\ | Index of page out of the input file. | +| outputStream | System::SharedPtr\ | Output file stream. | + +### ReturnValue + +True for success, or false. +## Remarks + + + + + + inputStream + + + Input file Stream. + + + + + pageNumber + + + Index of page out of the input file. + + + + + outputStream + + + Output file stream. + + + + +The TryExtract method is like the Extract method, except the TryExtract method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryExtract(System::SharedPtr\, System::ArrayPtr\, System::SharedPtr\) method + + +Extracts specified pages form source file and stores result into HttpResponse object. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryExtract(System::SharedPtr inputStream, System::ArrayPtr pageNumber, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Stream of source document. | +| pageNumber | System::ArrayPtr\ | Array of page numbers which will be extracted. | +| response | System::SharedPtr\ | HttpResponse object where result will be stored. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + inputStream + + + Stream of source document. + + + + + pageNumber + + + Array of page numbers which will be extracted. + + + + + response + + + HttpResponse object where result will be stored. + + + + +The TryExtract method is like the Extract method, except the TryExtract method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryExtract(System::String, System::ArrayPtr\, System::SharedPtr\) method + + +Extracts specified pages from source file and stores result into HttpResponse object. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryExtract(System::String inputFile, System::ArrayPtr pageNumber, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Source file path. | +| pageNumber | System::ArrayPtr\ | Array of page numbers which will be extracted. | +| response | System::SharedPtr\ | HttpResponse object where result will be stored. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + inputFile + + + Source file path. + + + + + pageNumber + + + Array of page numbers which will be extracted. + + + + + response + + + HttpResponse object where result will be stored. + + + + +The TryExtract method is like the Extract method, except the TryExtract method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/tryinsert/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/tryinsert/_index.md new file mode 100644 index 0000000000..be818e8cf6 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/tryinsert/_index.md @@ -0,0 +1,303 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::TryInsert method +linktitle: TryInsert +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::TryInsert method. Inserts pages from an other file into the input Pdf file in C++.' +type: docs +weight: 6400 +url: /cpp/aspose.pdf.facades/pdffileeditor/tryinsert/ +--- +## PdfFileEditor::TryInsert(System::String, int32_t, System::String, System::ArrayPtr\, System::String) method + + +Inserts pages from an other file into the input [Pdf](../../../aspose.pdf/) file. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryInsert(System::String inputFile, int32_t insertLocation, System::String portFile, System::ArrayPtr pageNumber, System::String outputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Input [Pdf](../../../aspose.pdf/) file. | +| insertLocation | int32_t | Insert position in input file. | +| portFile | System::String | Pages from the [Pdf](../../../aspose.pdf/) file. | +| pageNumber | System::ArrayPtr\ | The page number of the ported in portFile. | +| outputFile | System::String | Output [Pdf](../../../aspose.pdf/) file. | + +### ReturnValue + +True for success, or false. +## Remarks + + + + + + inputFile + + + Input Pdf file. + + + + + insertLocation + + + Insert position in input file. + + + + + portFile + + + Pages from the Pdf file. + + + + + pageNumber + + + The page number of the ported in portFile. + + + + + outputFile + + + Output Pdf file. + + + + +The TryInsert method is like the Insert method, except the TryInsert method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryInsert(System::SharedPtr\, int32_t, System::SharedPtr\, System::ArrayPtr\, System::SharedPtr\) method + + +Inserts pages from an other file into the input [Pdf](../../../aspose.pdf/) file. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryInsert(System::SharedPtr inputStream, int32_t insertLocation, System::SharedPtr portStream, System::ArrayPtr pageNumber, System::SharedPtr outputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Input Stream of [Pdf](../../../aspose.pdf/) file. | +| insertLocation | int32_t | Insert position in input file. | +| portStream | System::SharedPtr\ | Stream of [Pdf](../../../aspose.pdf/) file for pages. | +| pageNumber | System::ArrayPtr\ | The page number of the ported in portFile. | +| outputStream | System::SharedPtr\ | Output Stream. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + inputStream + + + Input Stream of Pdf file. + + + + + insertLocation + + + Insert position in input file. + + + + + portStream + + + Stream of Pdf file for pages. + + + + + pageNumber + + + The page number of the ported in portFile. + + + + + outputStream + + + Output Stream. + + + + +The TryInsert method is like the Insert method, except the TryInsert method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryInsert(System::String, int32_t, System::String, System::ArrayPtr\, System::SharedPtr\) method + + +Inserts contents of file into source file and stores result into HttpResponse object. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryInsert(System::String inputFile, int32_t insertLocation, System::String portFile, System::ArrayPtr pageNumber, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Source file name. | +| insertLocation | int32_t | [Page](../../../aspose.pdf/page/) number where second file will be inserted. | +| portFile | System::String | Path to file which will be inserted. | +| pageNumber | System::ArrayPtr\ | Array of page numbers in source file wihich will be inserted. | +| response | System::SharedPtr\ | Response object where result will be stored. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + inputFile + + + Source file name. + + + + + insertLocation + + + + Page number where second file will be inserted. + + + + + portFile + + + Path to file which will be inserted. + + + + + pageNumber + + + Array of page numbers in source file wihich will be inserted. + + + + + response + + + Response object where result will be stored. + + + + +The TryInsert method is like the Insert method, except the TryInsert method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryInsert(System::SharedPtr\, int32_t, System::SharedPtr\, System::ArrayPtr\, System::SharedPtr\) method + + +Inserts document into other document and stores result into response object. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryInsert(System::SharedPtr inputStream, int32_t insertLocation, System::SharedPtr portStream, System::ArrayPtr pageNumber, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Stream with source document | +| insertLocation | int32_t | Location where other document will be inserted. | +| portStream | System::SharedPtr\ | [Document](../../../aspose.pdf/document/) to be inserted. | +| pageNumber | System::ArrayPtr\ | Array of page numbers in second document which will be inserted. | +| response | System::SharedPtr\ | Response object where result will be stored. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + inputStream + + + Stream with source document + + + + + insertLocation + + + Location where other document will be inserted. + + + + + portStream + + + + Document to be inserted. + + + + + pageNumber + + + Array of page numbers in second document which will be inserted. + + + + + response + + + Response object where result will be stored. + + + + +The TryInsert method is like the Insert method, except the TryInsert method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/trymakebooklet/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/trymakebooklet/_index.md new file mode 100644 index 0000000000..58fd0922b5 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/trymakebooklet/_index.md @@ -0,0 +1,749 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::TryMakeBooklet method +linktitle: TryMakeBooklet +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::TryMakeBooklet method. Makes booklet from the input file to output file in C++.' +type: docs +weight: 6900 +url: /cpp/aspose.pdf.facades/pdffileeditor/trymakebooklet/ +--- +## PdfFileEditor::TryMakeBooklet(System::String, System::String) method + + +Makes booklet from the input file to output file. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryMakeBooklet(System::String inputFile, System::String outputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Input pdf file path and name. | +| outputFile | System::String | Output pdf file path and name. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + inputFile + + + Input pdf file path and name. + + + + + outputFile + + + Output pdf file path and name. + + + + +The TryMakeBooklet method is like the MakeBooklet method, except the TryMakeBooklet method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryMakeBooklet(System::SharedPtr\, System::SharedPtr\) method + + +Makes booklet from the InputStream to outputStream. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryMakeBooklet(System::SharedPtr inputStream, System::SharedPtr outputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Input pdf stream. | +| outputStream | System::SharedPtr\ | output pdf stream. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + inputStream + + + Input pdf stream. + + + + + outputStream + + + output pdf stream. + + + + +The TryMakeBooklet method is like the MakeBooklet method, except the TryMakeBooklet method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryMakeBooklet(System::String, System::String, System::SharedPtr\) method + + +Makes booklet from the inputFile to outputFile. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryMakeBooklet(System::String inputFile, System::String outputFile, System::SharedPtr pageSize) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Input pdf file path and name. | +| outputFile | System::String | Output pdf file path and name. | +| pageSize | System::SharedPtr\ | The page size of the output pdf file. | + +### ReturnValue + +True if operation is succeeded. +## Remarks + + + + + + inputFile + + + Input pdf file path and name. + + + + + outputFile + + + Output pdf file path and name. + + + + + pageSize + + + The page size of the output pdf file. + + + + +The TryMakeBooklet method is like the MakeBooklet method, except the TryMakeBooklet method does not throw an exception if the operation fails. +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryMakeBooklet(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) method + + +Makes booklet from the input stream and save result into output stream. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryMakeBooklet(System::SharedPtr inputStream, System::SharedPtr outputStream, System::SharedPtr pageSize) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Input PDF stream. | +| outputStream | System::SharedPtr\ | output pdf stream. | +| pageSize | System::SharedPtr\ | The page size of the output pdf file. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + inputStream + + + Input PDF stream. + + + + + outputStream + + + output pdf stream. + + + + + pageSize + + + The page size of the output pdf file. + + + + +The TryMakeBooklet method is like the MakeBooklet method, except the TryMakeBooklet method does not throw an exception if the operation fails. +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryMakeBooklet(System::String, System::String, System::ArrayPtr\, System::ArrayPtr\) method + + +Makes customized booklet from the firstInputFile to outputFile. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryMakeBooklet(System::String inputFile, System::String outputFile, System::ArrayPtr leftPages, System::ArrayPtr rightPages) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | The input file. | +| outputFile | System::String | Output pdf file path and name. | +| leftPages | System::ArrayPtr\ | The left pages of the booklet. | +| rightPages | System::ArrayPtr\ | The right pages of the booklet. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + inputFile + + + The input file. + + + + + outputFile + + + Output pdf file path and name. + + + + + leftPages + + + The left pages of the booklet. + + + + + rightPages + + + The right pages of the booklet. + + + + +The TryMakeBooklet method is like the MakeBooklet method, except the TryMakeBooklet method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryMakeBooklet(System::SharedPtr\, System::SharedPtr\, System::ArrayPtr\, System::ArrayPtr\) method + + +Makes customized booklet from the firstInputStream to outputStream. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryMakeBooklet(System::SharedPtr inputStream, System::SharedPtr outputStream, System::ArrayPtr leftPages, System::ArrayPtr rightPages) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | The input stream. | +| outputStream | System::SharedPtr\ | output pdf stream. | +| leftPages | System::ArrayPtr\ | The left pages. | +| rightPages | System::ArrayPtr\ | The right pages. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + inputStream + + + The input stream. + + + + + outputStream + + + output pdf stream. + + + + + leftPages + + + The left pages. + + + + + rightPages + + + The right pages. + + + + +The TryMakeBooklet method is like the MakeBooklet method, except the TryMakeBooklet method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryMakeBooklet(System::String, System::String, System::SharedPtr\, System::ArrayPtr\, System::ArrayPtr\) method + + +Makes customized booklet from the firstInputFile to outputFile. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryMakeBooklet(System::String inputFile, System::String outputFile, System::SharedPtr pageSize, System::ArrayPtr leftPages, System::ArrayPtr rightPages) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | The input file. | +| outputFile | System::String | Output pdf file path and name. | +| pageSize | System::SharedPtr\ | The page size of the output pdf file. | +| leftPages | System::ArrayPtr\ | The left pages. | +| rightPages | System::ArrayPtr\ | The right pages. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + inputFile + + + The input file. + + + + + outputFile + + + Output pdf file path and name. + + + + + pageSize + + + The page size of the output pdf file. + + + + + leftPages + + + The left pages. + + + + + rightPages + + + The right pages. + + + + +The TryMakeBooklet method is like the MakeBooklet method, except the TryMakeBooklet method does not throw an exception if the operation fails. +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryMakeBooklet(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\, System::ArrayPtr\, System::ArrayPtr\) method + + +Makes booklet from the firstInputStream to outputStream. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryMakeBooklet(System::SharedPtr inputStream, System::SharedPtr outputStream, System::SharedPtr pageSize, System::ArrayPtr leftPages, System::ArrayPtr rightPages) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | The input stream. | +| outputStream | System::SharedPtr\ | output pdf stream. | +| pageSize | System::SharedPtr\ | The page size of the output pdf file. | +| leftPages | System::ArrayPtr\ | The left pages. | +| rightPages | System::ArrayPtr\ | The right pages. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + inputStream + + + The input stream. + + + + + outputStream + + + output pdf stream. + + + + + pageSize + + + The page size of the output pdf file. + + + + + leftPages + + + The left pages. + + + + + rightPages + + + The right pages. + + + + +The TryMakeBooklet method is like the MakeBooklet method, except the TryMakeBooklet method does not throw an exception if the operation fails. +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryMakeBooklet(System::String, System::SharedPtr\, System::ArrayPtr\, System::ArrayPtr\, System::SharedPtr\) method + + +Makes booklet from source file and stores result into HttpResponse objects. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryMakeBooklet(System::String inputFile, System::SharedPtr pageSize, System::ArrayPtr leftPages, System::ArrayPtr rightPages, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Source file path. | +| pageSize | System::SharedPtr\ | Desired page size. | +| leftPages | System::ArrayPtr\ | Aray of page numbers to be placed in left. | +| rightPages | System::ArrayPtr\ | Array of page numbers to be placed in right. | +| response | System::SharedPtr\ | HttpResponse object where result will be stored. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + inputFile + + + Source file path. + + + + + pageSize + + + Desired page size. + + + + + leftPages + + + Aray of page numbers to be placed in left. + + + + + rightPages + + + Array of page numbers to be placed in right. + + + + + response + + + HttpResponse object where result will be stored. + + + + +The TryMakeBooklet method is like the MakeBooklet method, except the TryMakeBooklet method does not throw an exception if the operation fails. +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryMakeBooklet(System::SharedPtr\, System::SharedPtr\, System::ArrayPtr\, System::ArrayPtr\, System::SharedPtr\) method + + +Make booklet from PDF file and stores it into HttpResponse. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryMakeBooklet(System::SharedPtr inputStream, System::SharedPtr pageSize, System::ArrayPtr leftPages, System::ArrayPtr rightPages, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Input document stream. | +| pageSize | System::SharedPtr\ | Desired page size. | +| leftPages | System::ArrayPtr\ | Array of page numbers which will be placed in left. | +| rightPages | System::ArrayPtr\ | Array of page numbers which will b eplaced in right. | +| response | System::SharedPtr\ | HttpResponse object. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + inputStream + + + Input document stream. + + + + + pageSize + + + Desired page size. + + + + + leftPages + + + Array of page numbers which will be placed in left. + + + + + rightPages + + + Array of page numbers which will b eplaced in right. + + + + + response + + + HttpResponse object. + + + + +The TryMakeBooklet method is like the MakeBooklet method, except the TryMakeBooklet method does not throw an exception if the operation fails. +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryMakeBooklet(System::String, System::SharedPtr\, System::SharedPtr\) method + + +Makes booklet from source file and stores result into HttpResponse objects. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryMakeBooklet(System::String inputFile, System::SharedPtr pageSize, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Source file path. | +| pageSize | System::SharedPtr\ | Desired page size in output file. | +| response | System::SharedPtr\ | HttpResponse object where result will be stored. | + +### ReturnValue + +True if operation is succeeded. +## Remarks + + + + + + inputFile + + + Source file path. + + + + + pageSize + + + Desired page size in output file. + + + + + response + + + HttpResponse object where result will be stored. + + + + +The TryMakeBooklet method is like the MakeBooklet method, except the TryMakeBooklet method does not throw an exception if the operation fails. +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryMakeBooklet(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) method + + +Makes booklet from source file and stores result into HttpResponse. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryMakeBooklet(System::SharedPtr inputStream, System::SharedPtr pageSize, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Input document stream. | +| pageSize | System::SharedPtr\ | Desired page size in output file. | +| response | System::SharedPtr\ | Respose object where resut will be saved. | + +### ReturnValue + +true if booklet was built successfully. +## Remarks + + + + + + inputStream + + + Input document stream. + + + + + pageSize + + + Desired page size in output file. + + + + + response + + + Respose object where resut will be saved. + + + + +The TryMakeBooklet method is like the MakeBooklet method, except the TryMakeBooklet method does not throw an exception if the operation fails. +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/trymakenup/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/trymakenup/_index.md new file mode 100644 index 0000000000..f56e1d63d0 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/trymakenup/_index.md @@ -0,0 +1,783 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::TryMakeNUp method +linktitle: TryMakeNUp +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::TryMakeNUp method. Makes N-Up document from the firstInputFile to outputFile in C++.' +type: docs +weight: 7000 +url: /cpp/aspose.pdf.facades/pdffileeditor/trymakenup/ +--- +## PdfFileEditor::TryMakeNUp(System::String, System::String, int32_t, int32_t) method + + +Makes N-Up document from the firstInputFile to outputFile. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryMakeNUp(System::String inputFile, System::String outputFile, int32_t x, int32_t y) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Input pdf file path and name. | +| outputFile | System::String | Output pdf file path and name. | +| x | int32_t | Number of columns. | +| y | int32_t | Number of rows. | + +### ReturnValue + +true if operation was completed successfully; otherwise, false. +## Remarks + + + + + + inputFile + + + Input pdf file path and name. + + + + + outputFile + + + Output pdf file path and name. + + + + + x + + + Number of columns. + + + + + y + + + Number of rows. + + + + +The TryMakeNUp method is like the MakeNUp method, except the TryMakeNUp method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryMakeNUp(System::SharedPtr\, System::SharedPtr\, int32_t, int32_t) method + + +Makes N-Up document from the input stream and saves result into output stream. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryMakeNUp(System::SharedPtr inputStream, System::SharedPtr outputStream, int32_t x, int32_t y) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Input pdf stream. | +| outputStream | System::SharedPtr\ | Output pdf stream. | +| x | int32_t | Number of columns. | +| y | int32_t | Number of rows. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + inputStream + + + Input pdf stream. + + + + + outputStream + + + Output pdf stream. + + + + + x + + + Number of columns. + + + + + y + + + Number of rows. + + + + +The TryMakeNUp method is like the MakeNUp method, except the TryMakeNUp method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryMakeNUp(System::SharedPtr\, System::SharedPtr\, int32_t, int32_t, System::SharedPtr\) method + + +Makes N-Up document from the first input stream to output stream. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryMakeNUp(System::SharedPtr inputStream, System::SharedPtr outputStream, int32_t x, int32_t y, System::SharedPtr pageSize) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Input pdf stream. | +| outputStream | System::SharedPtr\ | Output pdf stream. | +| x | int32_t | Number of columns. | +| y | int32_t | Number of rows. | +| pageSize | System::SharedPtr\ | The page size of the output pdf file. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + inputStream + + + Input pdf stream. + + + + + outputStream + + + Output pdf stream. + + + + + x + + + Number of columns. + + + + + y + + + Number of rows. + + + + + pageSize + + + The page size of the output pdf file. + + + + +The TryMakeNUp method is like the MakeNUp method, except the TryMakeNUp method does not throw an exception if the operation fails. +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryMakeNUp(System::String, System::String, System::String) method + + +Makes N-Up document from the two input PDF files to outputFile. Each page of outputFile will contain two pages, one page is from the first input file and another is from the second input file. The two pages are piled up horizontally. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryMakeNUp(System::String firstInputFile, System::String secondInputFile, System::String outputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| firstInputFile | System::String | first input file. | +| secondInputFile | System::String | second input file. | +| outputFile | System::String | Output pdf file path and name. | + +### ReturnValue + +true if operation was completed successfully; otherwise, false +## Remarks + + + + + + firstInputFile + + + first input file. + + + + + secondInputFile + + + second input file. + + + + + outputFile + + + Output pdf file path and name. + + + + +The TryMakeNUp method is like the MakeNUp method, except the TryMakeNUp method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryMakeNUp(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) method + + +Makes N-Up document from the two input PDF streams to outputStream. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryMakeNUp(System::SharedPtr firstInputStream, System::SharedPtr secondInputStream, System::SharedPtr outputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| firstInputStream | System::SharedPtr\ | first input stream. | +| secondInputStream | System::SharedPtr\ | second input stream. | +| outputStream | System::SharedPtr\ | Output pdf stream. | + +### ReturnValue + +true if operation was completed successfully; otherwise, false +## Remarks + + + + + + firstInputStream + + + first input stream. + + + + + secondInputStream + + + second input stream. + + + + + outputStream + + + Output pdf stream. + + + + +The TryMakeNUp method is like the MakeNUp method, except the TryMakeNUp method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryMakeNUp(System::ArrayPtr\, System::String, bool) method + + +Makes N-Up document from the multi input PDF files to outputFile. Each page of outputFile will contain multi pages, which are combination with pages in the input files of the same page number. The multi pages piled up horizontally if isSidewise is true and piled up vertically if isSidewise is false. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryMakeNUp(System::ArrayPtr inputFiles, System::String outputFile, bool isSidewise) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFiles | System::ArrayPtr\ | Input [Pdf](../../../aspose.pdf/) files. | +| outputFile | System::String | Output pdf file path and name. | +| isSidewise | bool | Piled up way, true for horizontally and false for vertically. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + inputFiles + + + Input Pdf files. + + + + + outputFile + + + Output pdf file path and name. + + + + + isSidewise + + + Piled up way, true for horizontally and false for vertically. + + + + +The TryMakeNUp method is like the MakeNUp method, except the TryMakeNUp method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryMakeNUp(System::ArrayPtr\\>, System::SharedPtr\, bool) method + + +Makes N-Up document from the multi input PDF streams to outputStream. Each page of outputStream will contain multi pages, which are combination with pages in the input streams of the same page number. The multi-pages piled up horizontally if isSidewise is true and piled up vertically if isSidewise is false. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryMakeNUp(System::ArrayPtr> inputStreams, System::SharedPtr outputStream, bool isSidewise) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStreams | System::ArrayPtr\\> | Input [Pdf](../../../aspose.pdf/) streams. | +| outputStream | System::SharedPtr\ | Output pdf stream. | +| isSidewise | bool | Piled up way, true for horizontally and false for vertically. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + inputStreams + + + Input Pdf streams. + + + + + outputStream + + + Output pdf stream. + + + + + isSidewise + + + Piled up way, true for horizontally and false for vertically. + + + + +The TryMakeNUp method is like the MakeNUp method, except the TryMakeNUp method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryMakeNUp(System::String, System::String, int32_t, int32_t, System::SharedPtr\) method + + +Makes N-Up document from the input file to outputFile. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryMakeNUp(System::String inputFile, System::String outputFile, int32_t x, int32_t y, System::SharedPtr pageSize) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Input pdf file path and name. | +| outputFile | System::String | Output pdf file path and name. | +| x | int32_t | Number of columns. | +| y | int32_t | Number of rows. | +| pageSize | System::SharedPtr\ | The page size of the output pdf file. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + inputFile + + + Input pdf file path and name. + + + + + outputFile + + + Output pdf file path and name. + + + + + x + + + Number of columns. + + + + + y + + + Number of rows. + + + + + pageSize + + + The page size of the output pdf file. + + + + +The TryMakeNUp method is like the MakeNUp method, except the TryMakeNUp method does not throw an exception if the operation fails. +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryMakeNUp(System::String, int32_t, int32_t, System::SharedPtr\, System::SharedPtr\) method + + +Makes N-up document and stores result into HttpResponse object. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryMakeNUp(System::String inputFile, int32_t x, int32_t y, System::SharedPtr pageSize, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Path to source file. | +| x | int32_t | Number of columns. | +| y | int32_t | Number of rows. | +| pageSize | System::SharedPtr\ | [Page](../../../aspose.pdf/page/) size in result file. | +| response | System::SharedPtr\ | HttpResponse object where result will be stored. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + inputFile + + + Path to source file. + + + + + x + + + Number of columns. + + + + + y + + + Number of rows. + + + + + pageSize + + + + Page size in result file. + + + + + response + + + HttpResponse object where result will be stored. + + + + +The TryMakeNUp method is like the MakeNUp method, except the TryMakeNUp method does not throw an exception if the operation fails. +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryMakeNUp(System::SharedPtr\, int32_t, int32_t, System::SharedPtr\, System::SharedPtr\) method + + +Makes N-up document and stores result into HttpResponse object. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryMakeNUp(System::SharedPtr inputStream, int32_t x, int32_t y, System::SharedPtr pageSize, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Stream of source document. | +| x | int32_t | Number of columns. | +| y | int32_t | Number of rows. | +| pageSize | System::SharedPtr\ | [Page](../../../aspose.pdf/page/) size in result file. | +| response | System::SharedPtr\ | HttpResponse object where result will be stored. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + inputStream + + + Stream of source document. + + + + + x + + + Number of columns. + + + + + y + + + Number of rows. + + + + + pageSize + + + + Page size in result file. + + + + + response + + + HttpResponse object where result will be stored. + + + + +The TryMakeNUp method is like the MakeNUp method, except the TryMakeNUp method does not throw an exception if the operation fails. +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryMakeNUp(System::String, int32_t, int32_t, System::SharedPtr\) method + + +Makes N-up document and stores result into HttpResponse. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryMakeNUp(System::String inputFile, int32_t x, int32_t y, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Source file name. | +| x | int32_t | Number of columns. | +| y | int32_t | Number of rows. | +| response | System::SharedPtr\ | HttpResponse object where result will be stored. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + inputFile + + + Source file name. + + + + + x + + + Number of columns. + + + + + y + + + Number of rows. + + + + + response + + + HttpResponse object where result will be stored. + + + + +The TryMakeNUp method is like the MakeNUp method, except the TryMakeNUp method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryMakeNUp(System::SharedPtr\, int32_t, int32_t, System::SharedPtr\) method + + +Makes N-up document and stores result into HttpResponse. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryMakeNUp(System::SharedPtr inputStream, int32_t x, int32_t y, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Stream of input document. | +| x | int32_t | Number of columns. | +| y | int32_t | Number of rows. | +| response | System::SharedPtr\ | HttpResponse where result will be stored. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + inputStream + + + Stream of input document. + + + + + x + + + Number of columns. + + + + + y + + + Number of rows. + + + + + response + + + HttpResponse where result will be stored. + + + + +The TryMakeNUp method is like the MakeNUp method, except the TryMakeNUp method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/tryresizecontents/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/tryresizecontents/_index.md new file mode 100644 index 0000000000..94c497b780 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/tryresizecontents/_index.md @@ -0,0 +1,338 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::TryResizeContents method +linktitle: TryResizeContents +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::TryResizeContents method. Resizes contents of pages of the document in C++.' +type: docs +weight: 7100 +url: /cpp/aspose.pdf.facades/pdffileeditor/tryresizecontents/ +--- +## PdfFileEditor::TryResizeContents(System::SharedPtr\, System::SharedPtr\, System::ArrayPtr\, System::SharedPtr\) method + + +Resizes contents of pages of the document. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryResizeContents(System::SharedPtr source, System::SharedPtr destination, System::ArrayPtr pages, System::SharedPtr parameters) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| source | System::SharedPtr\ | Stream with source document. | +| destination | System::SharedPtr\ | Stream with the destination document. | +| pages | System::ArrayPtr\ | Array of page indexes. | +| parameters | System::SharedPtr\ | Resize parameters. | + +### ReturnValue + +Returns true if success. +## Remarks + + + + + + source + + + Stream with source document. + + + + + destination + + + Stream with the destination document. + + + + + pages + + + Array of page indexes. + + + + + parameters + + + Resize parameters. + + + + +The TryResizeContents method is like the ResizeContents method, except the TryResizeContents method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryResizeContents(System::SharedPtr\, System::SharedPtr\, System::ArrayPtr\, double, double) method + + +Resizes contents of document pages. Shrinks contents of page and adds margins. New size of contents is specified in default space units. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryResizeContents(System::SharedPtr source, System::SharedPtr destination, System::ArrayPtr pages, double newWidth, double newHeight) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| source | System::SharedPtr\ | Stream which contains source document. | +| destination | System::SharedPtr\ | Stream where resultant document will be saved. | +| pages | System::ArrayPtr\ | Array of page indexes. If null then all document pages will be processed. | +| newWidth | double | New width of page contents in default space units. | +| newHeight | double | New height of page contents in default space units. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + source + + + Stream which contains source document. + + + + + destination + + + Stream where resultant document will be saved. + + + + + pages + + + Array of page indexes. If null then all document pages will be processed. + + + + + newWidth + + + New width of page contents in default space units. + + + + + newHeight + + + New height of page contents in default space units. + + + + +The TryResizeContents method is like the ResizeContents method, except the TryResizeContents method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryResizeContents(System::String, System::String, System::ArrayPtr\, System::SharedPtr\) method + + +Resizes contents of pages in document. If page is shrinked blank margins are added around the page. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryResizeContents(System::String source, System::String destination, System::ArrayPtr pages, System::SharedPtr parameters) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| source | System::String | Source document path. | +| destination | System::String | Destination document path. | +| pages | System::ArrayPtr\ | Array of page indexes (page index starts from 1). | +| parameters | System::SharedPtr\ | Parameters of page resize. | + +### ReturnValue + +true if resize was successful. +## Remarks + + + + + + source + + + Source document path. + + + + + destination + + + Destination document path. + + + + + pages + + + Array of page indexes (page index starts from 1). + + + + + parameters + + + Parameters of page resize. + + + + +The TryResizeContents method is like the ResizeContents method, except the TryResizeContents method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryResizeContents(System::String, System::ArrayPtr\, System::SharedPtr\, System::SharedPtr\) method + + +Resizes contents of pages in document. If page is shrinked blank margins are added around the page. Result is stored into HttpResponse object. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryResizeContents(System::String source, System::ArrayPtr pages, System::SharedPtr parameters, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| source | System::String | Path to source file. | +| pages | System::ArrayPtr\ | Array of pages to be resized. | +| parameters | System::SharedPtr\ | Resize parameters. | +| response | System::SharedPtr\ | HttpResponse object where result is saved. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + source + + + Path to source file. + + + + + pages + + + Array of pages to be resized. + + + + + parameters + + + Resize parameters. + + + + + response + + + HttpResponse object where result is saved. + + + + +The TryResizeContents method is like the ResizeContents method, except the TryResizeContents method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TryResizeContents(System::SharedPtr\, System::ArrayPtr\, System::SharedPtr\, System::SharedPtr\) method + + +Resizes contents of pages in document. If page is shrinked blank margins are added around the page. Result is stored into HttpResponse object. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TryResizeContents(System::SharedPtr source, System::ArrayPtr pages, System::SharedPtr parameters, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| source | System::SharedPtr\ | Stream of source file. | +| pages | System::ArrayPtr\ | Array of pages to be resized. | +| parameters | System::SharedPtr\ | Resize parameters. | +| response | System::SharedPtr\ | HttpResponse object where result is saved. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + source + + + Stream of source file. + + + + + pages + + + Array of pages to be resized. + + + + + parameters + + + Resize parameters. + + + + + response + + + HttpResponse object where result is saved. + + + + +The TryResizeContents method is like the ResizeContents method, except the TryResizeContents method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/trysplitfromfirst/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/trysplitfromfirst/_index.md new file mode 100644 index 0000000000..28d097d7aa --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/trysplitfromfirst/_index.md @@ -0,0 +1,229 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::TrySplitFromFirst method +linktitle: TrySplitFromFirst +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::TrySplitFromFirst method. Splits Pdf file from first page to specified location,and saves the front part as a new file in C++.' +type: docs +weight: 6700 +url: /cpp/aspose.pdf.facades/pdffileeditor/trysplitfromfirst/ +--- +## PdfFileEditor::TrySplitFromFirst(System::String, int32_t, System::String) method + + +Splits [Pdf](../../../aspose.pdf/) file from first page to specified location,and saves the front part as a new file. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TrySplitFromFirst(System::String inputFile, int32_t location, System::String outputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Source [Pdf](../../../aspose.pdf/) file. | +| location | int32_t | The splitting point. | +| outputFile | System::String | Output [Pdf](../../../aspose.pdf/) file. | + +### ReturnValue + +True for success, or false. +## Remarks + + + + + + inputFile + + + Source Pdf file. + + + + + location + + + The splitting point. + + + + + outputFile + + + Output Pdf file. + + + + +The TrySplitFromFirst method is like the SplitFromFirst method, except the TrySplitFromFirst method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TrySplitFromFirst(System::SharedPtr\, int32_t, System::SharedPtr\) method + + +Splits from start to specified location,and saves the front part in output Stream. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TrySplitFromFirst(System::SharedPtr inputStream, int32_t location, System::SharedPtr outputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Source [Pdf](../../../aspose.pdf/) file Stream. | +| location | int32_t | The splitting point. | +| outputStream | System::SharedPtr\ | Output file Stream. | + +### ReturnValue + +True for success, or false. +## Remarks + + + + + + inputStream + + + Source Pdf file Stream. + + + + + location + + + The splitting point. + + + + + outputStream + + + Output file Stream. + + + + +The streams are NOT closed after this operation. The TrySplitFromFirst method is like the SplitFromFirst method, except the TrySplitFromFirst method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TrySplitFromFirst(System::String, int32_t, System::SharedPtr\) method + + +Splits document from first page to location and saves result into HttpResponse objects. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TrySplitFromFirst(System::String inputFile, int32_t location, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Source file name. | +| location | int32_t | Split point. | +| response | System::SharedPtr\ | HttpResponse objects. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + inputFile + + + Source file name. + + + + + location + + + Split point. + + + + + response + + + HttpResponse objects. + + + + +The TrySplitFromFirst method is like the SplitFromFirst method, except the TrySplitFromFirst method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TrySplitFromFirst(System::SharedPtr\, int32_t, System::SharedPtr\) method + + +Splits document from start to specified location and stores result into HttpResponse object. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TrySplitFromFirst(System::SharedPtr inputStream, int32_t location, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Stream of source document. | +| location | int32_t | The splitting point. | +| response | System::SharedPtr\ | HttpResponse object where result will be stored. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + inputStream + + + Stream of source document. + + + + + location + + + The splitting point. + + + + + response + + + HttpResponse object where result will be stored. + + + + +The TrySplitFromFirst method is like the SplitFromFirst method, except the TrySplitFromFirst method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileeditor/trysplittoend/_index.md b/english/cpp/aspose.pdf.facades/pdffileeditor/trysplittoend/_index.md new file mode 100644 index 0000000000..4e5b647b47 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileeditor/trysplittoend/_index.md @@ -0,0 +1,229 @@ +--- +title: Aspose::Pdf::Facades::PdfFileEditor::TrySplitToEnd method +linktitle: TrySplitToEnd +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileEditor::TrySplitToEnd method. Splits from location, and saves the rear part as a new file in C++.' +type: docs +weight: 6800 +url: /cpp/aspose.pdf.facades/pdffileeditor/trysplittoend/ +--- +## PdfFileEditor::TrySplitToEnd(System::String, int32_t, System::String) method + + +Splits from location, and saves the rear part as a new file. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TrySplitToEnd(System::String inputFile, int32_t location, System::String outputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Source [Pdf](../../../aspose.pdf/) file. | +| location | int32_t | The splitting position. | +| outputFile | System::String | Output [Pdf](../../../aspose.pdf/) file path. | + +### ReturnValue + +True for success, or false. +## Remarks + + + + + + inputFile + + + Source Pdf file. + + + + + location + + + The splitting position. + + + + + outputFile + + + Output Pdf file path. + + + + +The TrySplitToEnd method is like the SplitToEnd method, except the TrySplitToEnd method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TrySplitToEnd(System::SharedPtr\, int32_t, System::SharedPtr\) method + + +Splits from specified location, and saves the rear part as a new file Stream. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TrySplitToEnd(System::SharedPtr inputStream, int32_t location, System::SharedPtr outputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Source [Pdf](../../../aspose.pdf/) file Stream. | +| location | int32_t | The splitting position. | +| outputStream | System::SharedPtr\ | Output [Pdf](../../../aspose.pdf/) file Stream. | + +### ReturnValue + +True for success, or false. +## Remarks + + + + + + inputStream + + + Source Pdf file Stream. + + + + + location + + + The splitting position. + + + + + outputStream + + + Output Pdf file Stream. + + + + +The streams are NOT closed after this operation unless CloseConcatedStreams is specified. The TrySplitToEnd method is like the SplitToEnd method, except the TrySplitToEnd method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TrySplitToEnd(System::SharedPtr\, int32_t, System::SharedPtr\) method + + +Splits from specified location, and saves the rear part into HttpResponse object. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TrySplitToEnd(System::SharedPtr inputStream, int32_t location, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Source document stream. | +| location | int32_t | Split point. | +| response | System::SharedPtr\ | HttpResponse object. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + inputStream + + + Source document stream. + + + + + location + + + Split point. + + + + + response + + + HttpResponse object. + + + + +The TrySplitToEnd method is like the SplitToEnd method, except the TrySplitToEnd method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileEditor::TrySplitToEnd(System::String, int32_t, System::SharedPtr\) method + + +Splits from specified location, and saves the rear part into HttpResponse object. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileEditor::TrySplitToEnd(System::String inputFile, int32_t location, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | source file name. | +| location | int32_t | Split point. | +| response | System::SharedPtr\ | HttpResponse objects. | + +### ReturnValue + +true if operation completed successfully; otherwise, false. +## Remarks + + + + + + inputFile + + + source file name. + + + + + location + + + Split point. + + + + + response + + + HttpResponse objects. + + + + +The TrySplitToEnd method is like the SplitToEnd method, except the TrySplitToEnd method does not throw an exception if the operation fails. +## See Also + +* Class [PdfFileEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/_index.md new file mode 100644 index 0000000000..8a00aebc75 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/_index.md @@ -0,0 +1,85 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo class +linktitle: PdfFileInfo +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo class. Represents a class for accessing meta information of PDF document in C++.' +type: docs +weight: 2100 +url: /cpp/aspose.pdf.facades/pdffileinfo/ +--- +## PdfFileInfo class + + +Represents a class for accessing meta information of PDF document. + +```cpp +class PdfFileInfo : public Aspose::Pdf::Facades::SaveableFacade +``` + +## Methods + +| Method | Description | +| --- | --- | +| [BindPdf](./bindpdf/)(System::SharedPtr\) override | Initializes the facade. | +| [BindPdf](../facade/bindpdf/)(System::String) override | Initializes the facade. | +| [BindPdf](../facade/bindpdf/)(System::SharedPtr\) override | Initializes the facade. | +| virtual [BindPdf](../ifacade/bindpdf/)(System::SharedPtr\) | Binds PDF document for editing. | +| [ClearInfo](./clearinfo/)() | Clears all meta information of PDF document. | +| [Close](./close/)() override | Deinitializes the instance. | +| [Dispose](../facade/dispose/)() override | Disposes the facade. | +| [get_Author](./get_author/)() | Gets the Author information of PDF document. | +| [get_CreationDate](./get_creationdate/)() | Gets the CreationDate information of PDF document. | +| [get_Creator](./get_creator/)() | Gets the Creator information of PDF document. | +| [get_Document](../facade/get_document/)() const | Gets the document facade is working on. | +| [get_HasCollection](./get_hascollection/)() | Returns true if the current input file is a 'Portfolio' file containing collection of PDF files in it. | +| [get_HasEditPassword](./get_haseditpassword/)() | Returns true if password is needed to modify permissions or document security property. Pay attention that this property can be read only if valid password was provided in [PdfFileInfo](./) constructor. In case PasswordType is Inaccessible (means that invalid password was provided) reading this property will fail with [InvalidPasswordException](../../aspose.pdf/invalidpasswordexception/). | +| [get_HasOpenPassword](./get_hasopenpassword/)() | Returns true if password is needed to open password protected pdf document. | +| [get_Header](./get_header/)() const | Gets the customized information of PDF document. | +| [get_InputFile](./get_inputfile/)() const | Gets the input file. | +| [get_InputStream](./get_inputstream/)() const | Gets the input stream. | +| [get_IsEncrypted](./get_isencrypted/)() | Checkes whether the PDF document is encrypted. | +| [get_IsPdfFile](./get_ispdffile/)() | Checkes whether the source input is a valid PDF file. | +| [get_Keywords](./get_keywords/)() | Gets the Keywords information of PDF document. | +| [get_ModDate](./get_moddate/)() | Gets the ModDate date information of PDF document. | +| [get_NumberOfPages](./get_numberofpages/)() | Gets the number of document pages. | +| [get_PasswordType](./get_passwordtype/)() | Returns the type of password which was passed for creating [PdfFileInfo](./) instance. See possible values in [PasswordType](../../aspose.pdf/passwordtype/). Pay attention that pdf document can be opened using both user (or open) password and owner (or permissions, edit) password. | +| [get_Producer](./get_producer/)() | Gets the Producer information of PDF document. | +| [get_Subject](./get_subject/)() | Gets the Subject information of PDF document. | +| [get_Title](./get_title/)() | Gets the Title information of PDF document. | +| [get_UseStrictValidation](./get_usestrictvalidation/)() const | Uses strict validation rules via using [IsPdfFile](../) property. | +| [GetDocumentPrivilege](./getdocumentprivilege/)() | Gets the PDF document privilege settings. | +| [GetMetaInfo](./getmetainfo/)(System::String) | Gets customized information of PDF document with property name. If there is no property match the name it will return a blank string. | +| [GetPageHeight](./getpageheight/)(int32_t) | Gets the height of the specified page. | +| [GetPageRotation](./getpagerotation/)(int32_t) | Gets the rotation of the specified page. | +| [GetPageWidth](./getpagewidth/)(int32_t) | Gets the width of the specified page. | +| [GetPageXOffset](./getpagexoffset/)(int32_t) | Gets the horizontal offset of the specified page display area. | +| [GetPageYOffset](./getpageyoffset/)(int32_t) | Gets the vertical offset of the specified page display area. | +| [GetPdfVersion](./getpdfversion/)() | Gets the version info of PDF document. | +| [PdfFileInfo](./pdffileinfo/)() | Initializes a new instance of the [Aspose.Pdf.Facades.PdfFileInfo](./) class with default values. | +| [PdfFileInfo](./pdffileinfo/)(System::SharedPtr\) | Initializes a new instance of the [Aspose.Pdf.Facades.PdfFileInfo](./) class. | +| [PdfFileInfo](./pdffileinfo/)(System::SharedPtr\, System::String) | Initializes a new instance of the [Aspose.Pdf.Facades.PdfFileInfo](./) class. | +| [PdfFileInfo](./pdffileinfo/)(System::String) | Initializes a new instance of the [Aspose.Pdf.Facades.PdfFileInfo](./) class. | +| [PdfFileInfo](./pdffileinfo/)(System::String, System::String) | Initializes a new instance of the [Aspose.Pdf.Facades.PdfFileInfo](./) class. | +| [PdfFileInfo](./pdffileinfo/)(System::SharedPtr\) | Initializes new [PdfFileInfo](./) object on base of the *document* . | +| [Save](./save/)(System::SharedPtr\) override | Saves the PDF document to the specified file. | +| [Save](./save/)(System::String) override | Saves the PDF document to the specified file. | +| [SaveNewInfo](./savenewinfo/)(System::SharedPtr\) | Save updated PDF document into specified stream. | +| [SaveNewInfo](./savenewinfo/)(System::String) | Save updated PDF document into specified file. | +| [SaveNewInfoWithXmp](./savenewinfowithxmp/)(System::String) | Changes the properties specified explicitly by setting file information, other properties remain. | +| [set_Author](./set_author/)(System::String) | Sets the Author information of PDF document. | +| [set_CreationDate](./set_creationdate/)(System::String) | Sets the CreationDate information of PDF document. | +| [set_Creator](./set_creator/)(System::String) | Sets the Creator information of PDF document. | +| [set_Header](./set_header/)(System::SharedPtr\\>) | Sets the customized information of PDF document. | +| [set_InputFile](./set_inputfile/)(System::String) | Sets the input file. | +| [set_InputStream](./set_inputstream/)(System::SharedPtr\) | Sets the input stream. | +| [set_Keywords](./set_keywords/)(System::String) | Sets the Keywords information of PDF document. | +| [set_ModDate](./set_moddate/)(System::String) | Sets the ModDate date information of PDF document. | +| [set_Subject](./set_subject/)(System::String) | Sets the Subject information of PDF document. | +| [set_Title](./set_title/)(System::String) | Sets the Title information of PDF document. | +| [set_UseStrictValidation](./set_usestrictvalidation/)(bool) | Uses strict validation rules via using [IsPdfFile](../) property. | +| [SetMetaInfo](./setmetainfo/)(System::String, System::String) | Sets customized information of PDF document. | +## See Also + +* Class [SaveableFacade](../saveablefacade/) +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/bindpdf/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/bindpdf/_index.md new file mode 100644 index 0000000000..ad3d602a32 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/bindpdf/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::BindPdf method +linktitle: BindPdf +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::BindPdf method. Initializes the facade in C++.' +type: docs +weight: 3100 +url: /cpp/aspose.pdf.facades/pdffileinfo/bindpdf/ +--- +## PdfFileInfo::BindPdf method + + +Initializes the facade. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileInfo::BindPdf(System::SharedPtr srcDoc) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| srcDoc | System::SharedPtr\ | The [Aspose.Pdf.Document](../../../aspose.pdf/document/) object. | +## Remarks + + + + + + srcDoc + + + The Aspose.Pdf.Document object. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/clearinfo/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/clearinfo/_index.md new file mode 100644 index 0000000000..e06301fe9d --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/clearinfo/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::ClearInfo method +linktitle: ClearInfo +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::ClearInfo method. Clears all meta information of PDF document in C++.' +type: docs +weight: 3300 +url: /cpp/aspose.pdf.facades/pdffileinfo/clearinfo/ +--- +## PdfFileInfo::ClearInfo method + + +Clears all meta information of PDF document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileInfo::ClearInfo() +``` + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/close/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/close/_index.md new file mode 100644 index 0000000000..5886166973 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/close/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::Close method +linktitle: Close +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::Close method. Deinitializes the instance in C++.' +type: docs +weight: 4600 +url: /cpp/aspose.pdf.facades/pdffileinfo/close/ +--- +## PdfFileInfo::Close method + + +Deinitializes the instance. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileInfo::Close() override +``` + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/get_author/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/get_author/_index.md new file mode 100644 index 0000000000..98d73fd3a1 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/get_author/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::get_Author method +linktitle: get_Author +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::get_Author method. Gets the Author information of PDF document in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.facades/pdffileinfo/get_author/ +--- +## PdfFileInfo::get_Author method + + +Gets the Author information of PDF document. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::PdfFileInfo::get_Author() +``` + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/get_creationdate/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/get_creationdate/_index.md new file mode 100644 index 0000000000..1f04bdb84e --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/get_creationdate/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::get_CreationDate method +linktitle: get_CreationDate +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::get_CreationDate method. Gets the CreationDate information of PDF document in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.facades/pdffileinfo/get_creationdate/ +--- +## PdfFileInfo::get_CreationDate method + + +Gets the CreationDate information of PDF document. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::PdfFileInfo::get_CreationDate() +``` + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/get_creator/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/get_creator/_index.md new file mode 100644 index 0000000000..c4d6498f58 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/get_creator/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::get_Creator method +linktitle: get_Creator +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::get_Creator method. Gets the Creator information of PDF document in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.facades/pdffileinfo/get_creator/ +--- +## PdfFileInfo::get_Creator method + + +Gets the Creator information of PDF document. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::PdfFileInfo::get_Creator() +``` + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/get_hascollection/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/get_hascollection/_index.md new file mode 100644 index 0000000000..4f05ac9788 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/get_hascollection/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::get_HasCollection method +linktitle: get_HasCollection +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::get_HasCollection method. Returns true if the current input file is a ''Portfolio'' file containing collection of PDF files in it in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.facades/pdffileinfo/get_hascollection/ +--- +## PdfFileInfo::get_HasCollection method + + +Returns true if the current input file is a 'Portfolio' file containing collection of PDF files in it. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileInfo::get_HasCollection() +``` + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/get_haseditpassword/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/get_haseditpassword/_index.md new file mode 100644 index 0000000000..d83aac865e --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/get_haseditpassword/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::get_HasEditPassword method +linktitle: get_HasEditPassword +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::get_HasEditPassword method. Returns true if password is needed to modify permissions or document security property. Pay attention that this property can be read only if valid password was provided in PdfFileInfo constructor. In case PasswordType is Inaccessible (means that invalid password was provided) reading this property will fail with InvalidPasswordException in C++.' +type: docs +weight: 3000 +url: /cpp/aspose.pdf.facades/pdffileinfo/get_haseditpassword/ +--- +## PdfFileInfo::get_HasEditPassword method + + +Returns true if password is needed to modify permissions or document security property. Pay attention that this property can be read only if valid password was provided in [PdfFileInfo](../) constructor. In case PasswordType is Inaccessible (means that invalid password was provided) reading this property will fail with [InvalidPasswordException](../../../aspose.pdf/invalidpasswordexception/). + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileInfo::get_HasEditPassword() +``` + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/get_hasopenpassword/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/get_hasopenpassword/_index.md new file mode 100644 index 0000000000..667b4d9b23 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/get_hasopenpassword/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::get_HasOpenPassword method +linktitle: get_HasOpenPassword +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::get_HasOpenPassword method. Returns true if password is needed to open password protected pdf document in C++.' +type: docs +weight: 2900 +url: /cpp/aspose.pdf.facades/pdffileinfo/get_hasopenpassword/ +--- +## PdfFileInfo::get_HasOpenPassword method + + +Returns true if password is needed to open password protected pdf document. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileInfo::get_HasOpenPassword() +``` + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/get_header/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/get_header/_index.md new file mode 100644 index 0000000000..5d7a799c16 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/get_header/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::get_Header method +linktitle: get_Header +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::get_Header method. Gets the customized information of PDF document in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.facades/pdffileinfo/get_header/ +--- +## PdfFileInfo::get_Header method + + +Gets the customized information of PDF document. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr> Aspose::Pdf::Facades::PdfFileInfo::get_Header() const +``` + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/get_inputfile/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/get_inputfile/_index.md new file mode 100644 index 0000000000..26cc7208a9 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/get_inputfile/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::get_InputFile method +linktitle: get_InputFile +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::get_InputFile method. Gets the input file in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.facades/pdffileinfo/get_inputfile/ +--- +## PdfFileInfo::get_InputFile method + + +Gets the input file. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::PdfFileInfo::get_InputFile() const +``` + +## Remarks + + + + Deprecated + + Use BindPdf(inputFile) method for facade initialization. + + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/get_inputstream/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/get_inputstream/_index.md new file mode 100644 index 0000000000..8cff82c1a7 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/get_inputstream/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::get_InputStream method +linktitle: get_InputStream +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::get_InputStream method. Gets the input stream in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf.facades/pdffileinfo/get_inputstream/ +--- +## PdfFileInfo::get_InputStream method + + +Gets the input stream. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::PdfFileInfo::get_InputStream() const +``` + +## Remarks + + + + Deprecated + + Use BindPdf(inputStream) method for facade initialization. + + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/get_isencrypted/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/get_isencrypted/_index.md new file mode 100644 index 0000000000..bc1f7faf69 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/get_isencrypted/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::get_IsEncrypted method +linktitle: get_IsEncrypted +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::get_IsEncrypted method. Checkes whether the PDF document is encrypted in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.facades/pdffileinfo/get_isencrypted/ +--- +## PdfFileInfo::get_IsEncrypted method + + +Checkes whether the PDF document is encrypted. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileInfo::get_IsEncrypted() +``` + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/get_ispdffile/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/get_ispdffile/_index.md new file mode 100644 index 0000000000..bb81ca590f --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/get_ispdffile/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::get_IsPdfFile method +linktitle: get_IsPdfFile +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::get_IsPdfFile method. Checkes whether the source input is a valid PDF file in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.facades/pdffileinfo/get_ispdffile/ +--- +## PdfFileInfo::get_IsPdfFile method + + +Checkes whether the source input is a valid PDF file. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileInfo::get_IsPdfFile() +``` + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/get_keywords/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/get_keywords/_index.md new file mode 100644 index 0000000000..37fdd4acdf --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/get_keywords/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::get_Keywords method +linktitle: get_Keywords +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::get_Keywords method. Gets the Keywords information of PDF document in C++.' +type: docs +weight: 1800 +url: /cpp/aspose.pdf.facades/pdffileinfo/get_keywords/ +--- +## PdfFileInfo::get_Keywords method + + +Gets the Keywords information of PDF document. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::PdfFileInfo::get_Keywords() +``` + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/get_moddate/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/get_moddate/_index.md new file mode 100644 index 0000000000..b96d0b9bbe --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/get_moddate/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::get_ModDate method +linktitle: get_ModDate +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::get_ModDate method. Gets the ModDate date information of PDF document in C++.' +type: docs +weight: 2000 +url: /cpp/aspose.pdf.facades/pdffileinfo/get_moddate/ +--- +## PdfFileInfo::get_ModDate method + + +Gets the ModDate date information of PDF document. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::PdfFileInfo::get_ModDate() +``` + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/get_numberofpages/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/get_numberofpages/_index.md new file mode 100644 index 0000000000..eecd9698ba --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/get_numberofpages/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::get_NumberOfPages method +linktitle: get_NumberOfPages +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::get_NumberOfPages method. Gets the number of document pages in C++.' +type: docs +weight: 2200 +url: /cpp/aspose.pdf.facades/pdffileinfo/get_numberofpages/ +--- +## PdfFileInfo::get_NumberOfPages method + + +Gets the number of document pages. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfFileInfo::get_NumberOfPages() +``` + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/get_passwordtype/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/get_passwordtype/_index.md new file mode 100644 index 0000000000..19fd7b590b --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/get_passwordtype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::get_PasswordType method +linktitle: get_PasswordType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::get_PasswordType method. Returns the type of password which was passed for creating PdfFileInfo instance. See possible values in PasswordType. Pay attention that pdf document can be opened using both user (or open) password and owner (or permissions, edit) password in C++.' +type: docs +weight: 2800 +url: /cpp/aspose.pdf.facades/pdffileinfo/get_passwordtype/ +--- +## PdfFileInfo::get_PasswordType method + + +Returns the type of password which was passed for creating [PdfFileInfo](../) instance. See possible values in [PasswordType](../../../aspose.pdf/passwordtype/). Pay attention that pdf document can be opened using both user (or open) password and owner (or permissions, edit) password. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::PasswordType Aspose::Pdf::Facades::PdfFileInfo::get_PasswordType() +``` + +## See Also + +* Enum [PasswordType](../../../aspose.pdf/passwordtype/) +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/get_producer/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/get_producer/_index.md new file mode 100644 index 0000000000..ac60e6e845 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/get_producer/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::get_Producer method +linktitle: get_Producer +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::get_Producer method. Gets the Producer information of PDF document in C++.' +type: docs +weight: 2300 +url: /cpp/aspose.pdf.facades/pdffileinfo/get_producer/ +--- +## PdfFileInfo::get_Producer method + + +Gets the Producer information of PDF document. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::PdfFileInfo::get_Producer() +``` + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/get_subject/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/get_subject/_index.md new file mode 100644 index 0000000000..b02e03d080 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/get_subject/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::get_Subject method +linktitle: get_Subject +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::get_Subject method. Gets the Subject information of PDF document in C++.' +type: docs +weight: 2400 +url: /cpp/aspose.pdf.facades/pdffileinfo/get_subject/ +--- +## PdfFileInfo::get_Subject method + + +Gets the Subject information of PDF document. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::PdfFileInfo::get_Subject() +``` + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/get_title/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/get_title/_index.md new file mode 100644 index 0000000000..8745890436 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/get_title/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::get_Title method +linktitle: get_Title +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::get_Title method. Gets the Title information of PDF document in C++.' +type: docs +weight: 2600 +url: /cpp/aspose.pdf.facades/pdffileinfo/get_title/ +--- +## PdfFileInfo::get_Title method + + +Gets the Title information of PDF document. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::PdfFileInfo::get_Title() +``` + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/get_usestrictvalidation/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/get_usestrictvalidation/_index.md new file mode 100644 index 0000000000..35da0ab099 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/get_usestrictvalidation/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::get_UseStrictValidation method +linktitle: get_UseStrictValidation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::get_UseStrictValidation method. Uses strict validation rules via using IsPdfFile property in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.facades/pdffileinfo/get_usestrictvalidation/ +--- +## PdfFileInfo::get_UseStrictValidation method + + +Uses strict validation rules via using [IsPdfFile](../) property. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileInfo::get_UseStrictValidation() const +``` + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/getdocumentprivilege/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/getdocumentprivilege/_index.md new file mode 100644 index 0000000000..db7e9e031a --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/getdocumentprivilege/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::GetDocumentPrivilege method +linktitle: GetDocumentPrivilege +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::GetDocumentPrivilege method. Gets the PDF document privilege settings in C++.' +type: docs +weight: 3400 +url: /cpp/aspose.pdf.facades/pdffileinfo/getdocumentprivilege/ +--- +## PdfFileInfo::GetDocumentPrivilege method + + +Gets the PDF document privilege settings. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::PdfFileInfo::GetDocumentPrivilege() +``` + + +### ReturnValue + +The PDF document privilege settings. + +## See Also + +* Class [DocumentPrivilege](../../documentprivilege/) +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/getmetainfo/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/getmetainfo/_index.md new file mode 100644 index 0000000000..10547f5d6c --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/getmetainfo/_index.md @@ -0,0 +1,44 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::GetMetaInfo method +linktitle: GetMetaInfo +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::GetMetaInfo method. Gets customized information of PDF document with property name. If there is no property match the name it will return a blank string in C++.' +type: docs +weight: 3500 +url: /cpp/aspose.pdf.facades/pdffileinfo/getmetainfo/ +--- +## PdfFileInfo::GetMetaInfo method + + +Gets customized information of PDF document with property name. If there is no property match the name it will return a blank string. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::PdfFileInfo::GetMetaInfo(System::String name) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| name | System::String | Custom meta property key. | + +### ReturnValue + +Custom meta property value. +## Remarks + + + + + + name + + + Custom meta property key. + + + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/getpageheight/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/getpageheight/_index.md new file mode 100644 index 0000000000..4ffab3ada4 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/getpageheight/_index.md @@ -0,0 +1,45 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::GetPageHeight method +linktitle: GetPageHeight +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::GetPageHeight method. Gets the height of the specified page in C++.' +type: docs +weight: 3600 +url: /cpp/aspose.pdf.facades/pdffileinfo/getpageheight/ +--- +## PdfFileInfo::GetPageHeight method + + +Gets the height of the specified page. + +```cpp +ASPOSE_PDF_SHARED_API float Aspose::Pdf::Facades::PdfFileInfo::GetPageHeight(int32_t pageNum) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageNum | int32_t | [Page](../../../aspose.pdf/page/) number. | + +### ReturnValue + +The height of the page. +## Remarks + + + + + + pageNum + + + + Page number. + + + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/getpagerotation/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/getpagerotation/_index.md new file mode 100644 index 0000000000..423a9ce4dc --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/getpagerotation/_index.md @@ -0,0 +1,45 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::GetPageRotation method +linktitle: GetPageRotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::GetPageRotation method. Gets the rotation of the specified page in C++.' +type: docs +weight: 3700 +url: /cpp/aspose.pdf.facades/pdffileinfo/getpagerotation/ +--- +## PdfFileInfo::GetPageRotation method + + +Gets the rotation of the specified page. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfFileInfo::GetPageRotation(int32_t pageNum) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageNum | int32_t | [Page](../../../aspose.pdf/page/) number. | + +### ReturnValue + +The rotation of the page. The value may be 0,90,180,270. +## Remarks + + + + + + pageNum + + + + Page number. + + + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/getpagewidth/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/getpagewidth/_index.md new file mode 100644 index 0000000000..040faf9dea --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/getpagewidth/_index.md @@ -0,0 +1,45 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::GetPageWidth method +linktitle: GetPageWidth +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::GetPageWidth method. Gets the width of the specified page in C++.' +type: docs +weight: 3800 +url: /cpp/aspose.pdf.facades/pdffileinfo/getpagewidth/ +--- +## PdfFileInfo::GetPageWidth method + + +Gets the width of the specified page. + +```cpp +ASPOSE_PDF_SHARED_API float Aspose::Pdf::Facades::PdfFileInfo::GetPageWidth(int32_t pageNum) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageNum | int32_t | [Page](../../../aspose.pdf/page/) number. | + +### ReturnValue + +The width of the page. +## Remarks + + + + + + pageNum + + + + Page number. + + + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/getpagexoffset/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/getpagexoffset/_index.md new file mode 100644 index 0000000000..d8cac338ab --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/getpagexoffset/_index.md @@ -0,0 +1,45 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::GetPageXOffset method +linktitle: GetPageXOffset +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::GetPageXOffset method. Gets the horizontal offset of the specified page display area in C++.' +type: docs +weight: 3900 +url: /cpp/aspose.pdf.facades/pdffileinfo/getpagexoffset/ +--- +## PdfFileInfo::GetPageXOffset method + + +Gets the horizontal offset of the specified page display area. + +```cpp +ASPOSE_PDF_SHARED_API float Aspose::Pdf::Facades::PdfFileInfo::GetPageXOffset(int32_t pageNum) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageNum | int32_t | [Page](../../../aspose.pdf/page/) number. | + +### ReturnValue + +The horizontal offset from the left side of the page. +## Remarks + + + + + + pageNum + + + + Page number. + + + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/getpageyoffset/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/getpageyoffset/_index.md new file mode 100644 index 0000000000..8414671fe0 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/getpageyoffset/_index.md @@ -0,0 +1,45 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::GetPageYOffset method +linktitle: GetPageYOffset +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::GetPageYOffset method. Gets the vertical offset of the specified page display area in C++.' +type: docs +weight: 4000 +url: /cpp/aspose.pdf.facades/pdffileinfo/getpageyoffset/ +--- +## PdfFileInfo::GetPageYOffset method + + +Gets the vertical offset of the specified page display area. + +```cpp +ASPOSE_PDF_SHARED_API float Aspose::Pdf::Facades::PdfFileInfo::GetPageYOffset(int32_t pageNum) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageNum | int32_t | [Page](../../../aspose.pdf/page/) number. | + +### ReturnValue + +The vertical offset of the page display area. +## Remarks + + + + + + pageNum + + + + Page number. + + + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/getpdfversion/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/getpdfversion/_index.md new file mode 100644 index 0000000000..d43c406d8e --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/getpdfversion/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::GetPdfVersion method +linktitle: GetPdfVersion +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::GetPdfVersion method. Gets the version info of PDF document in C++.' +type: docs +weight: 4100 +url: /cpp/aspose.pdf.facades/pdffileinfo/getpdfversion/ +--- +## PdfFileInfo::GetPdfVersion method + + +Gets the version info of PDF document. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::PdfFileInfo::GetPdfVersion() +``` + + +### ReturnValue + +The version string. + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/pdffileinfo/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/pdffileinfo/_index.md new file mode 100644 index 0000000000..7b6f8a1937 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/pdffileinfo/_index.md @@ -0,0 +1,198 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::PdfFileInfo constructor +linktitle: PdfFileInfo +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::PdfFileInfo constructor. Initializes a new instance of the Aspose.Pdf.Facades.PdfFileInfo class with default values in C++.' +type: docs +weight: 3200 +url: /cpp/aspose.pdf.facades/pdffileinfo/pdffileinfo/ +--- +## PdfFileInfo::PdfFileInfo() constructor + + +Initializes a new instance of the [Aspose.Pdf.Facades.PdfFileInfo](../) class with default values. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfFileInfo::PdfFileInfo() +``` + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileInfo::PdfFileInfo(System::SharedPtr\) constructor + + +Initializes a new instance of the [Aspose.Pdf.Facades.PdfFileInfo](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfFileInfo::PdfFileInfo(System::SharedPtr inputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Stream where input file is placed. | +## Remarks + + + + + + inputStream + + + Stream where input file is placed. + + + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileInfo::PdfFileInfo(System::SharedPtr\, System::String) constructor + + +Initializes a new instance of the [Aspose.Pdf.Facades.PdfFileInfo](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfFileInfo::PdfFileInfo(System::SharedPtr inputStream, System::String password) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Stream where input file is placed. | +| password | System::String | Password for access to file. | +## Remarks + + + + + + inputStream + + + Stream where input file is placed. + + + + + password + + + Password for access to file. + + + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileInfo::PdfFileInfo(System::String) constructor + + +Initializes a new instance of the [Aspose.Pdf.Facades.PdfFileInfo](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfFileInfo::PdfFileInfo(System::String inputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Name of file containing input file. | +## Remarks + + + + + + inputFile + + + Name of file containing input file. + + + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileInfo::PdfFileInfo(System::String, System::String) constructor + + +Initializes a new instance of the [Aspose.Pdf.Facades.PdfFileInfo](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfFileInfo::PdfFileInfo(System::String inputFile, System::String password) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Name of file containing input file. | +| password | System::String | Password for access to file. | +## Remarks + + + + + + inputFile + + + Name of file containing input file. + + + + + password + + + Password for access to file. + + + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileInfo::PdfFileInfo(System::SharedPtr\) constructor + + +Initializes new [PdfFileInfo](../) object on base of the *document* . + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfFileInfo::PdfFileInfo(System::SharedPtr document) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | [Pdf](../../../aspose.pdf/) document. | +## Remarks + + + + + + document + + + + Pdf document. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/save/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/save/_index.md new file mode 100644 index 0000000000..819afc4a13 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/save/_index.md @@ -0,0 +1,71 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::Save method +linktitle: Save +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::Save method. Saves the PDF document to the specified file in C++.' +type: docs +weight: 4300 +url: /cpp/aspose.pdf.facades/pdffileinfo/save/ +--- +## PdfFileInfo::Save(System::SharedPtr\) method + + +Saves the PDF document to the specified file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileInfo::Save(System::SharedPtr destStream) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| destStream | System::SharedPtr\ | The destination stream. | +## Remarks + + + + + + destStream + + + The destination stream. + + + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileInfo::Save(System::String) method + + +Saves the PDF document to the specified file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileInfo::Save(System::String destFile) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| destFile | System::String | The destination file. | +## Remarks + + + + + + destFile + + + The destination file. + + + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/savenewinfo/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/savenewinfo/_index.md new file mode 100644 index 0000000000..83bd5d68e4 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/savenewinfo/_index.md @@ -0,0 +1,87 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::SaveNewInfo method +linktitle: SaveNewInfo +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::SaveNewInfo method. Save updated PDF document into specified stream in C++.' +type: docs +weight: 4200 +url: /cpp/aspose.pdf.facades/pdffileinfo/savenewinfo/ +--- +## PdfFileInfo::SaveNewInfo(System::SharedPtr\) method + + +Save updated PDF document into specified stream. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileInfo::SaveNewInfo(System::SharedPtr outputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputStream | System::SharedPtr\ | Output stream. | + +### ReturnValue + +True if success otherwise is false. +## Remarks + + + + Deprecated + + Use Save(destination) method for saving facade results. + + + + + + outputStream + + + Output stream. + + + + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileInfo::SaveNewInfo(System::String) method + + +Save updated PDF document into specified file. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileInfo::SaveNewInfo(System::String outputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputFile | System::String | Output file. | + +### ReturnValue + +True if success otherwise is false. +## Remarks + + + + + + + outputFile + + + Output file. + + + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/savenewinfowithxmp/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/savenewinfowithxmp/_index.md new file mode 100644 index 0000000000..82519a25cf --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/savenewinfowithxmp/_index.md @@ -0,0 +1,44 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::SaveNewInfoWithXmp method +linktitle: SaveNewInfoWithXmp +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::SaveNewInfoWithXmp method. Changes the properties specified explicitly by setting file information, other properties remain in C++.' +type: docs +weight: 4500 +url: /cpp/aspose.pdf.facades/pdffileinfo/savenewinfowithxmp/ +--- +## PdfFileInfo::SaveNewInfoWithXmp method + + +Changes the properties specified explicitly by setting file information, other properties remain. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileInfo::SaveNewInfoWithXmp(System::String outputFileName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputFileName | System::String | Output file. | + +### ReturnValue + +True for success, or false. +## Remarks + + + + + + outputFileName + + + Output file. + + + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/set_author/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/set_author/_index.md new file mode 100644 index 0000000000..aabbc2937f --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/set_author/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::set_Author method +linktitle: set_Author +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::set_Author method. Sets the Author information of PDF document in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.facades/pdffileinfo/set_author/ +--- +## PdfFileInfo::set_Author method + + +Sets the Author information of PDF document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileInfo::set_Author(System::String value) +``` + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/set_creationdate/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/set_creationdate/_index.md new file mode 100644 index 0000000000..f7196a7bf0 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/set_creationdate/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::set_CreationDate method +linktitle: set_CreationDate +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::set_CreationDate method. Sets the CreationDate information of PDF document in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.facades/pdffileinfo/set_creationdate/ +--- +## PdfFileInfo::set_CreationDate method + + +Sets the CreationDate information of PDF document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileInfo::set_CreationDate(System::String value) +``` + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/set_creator/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/set_creator/_index.md new file mode 100644 index 0000000000..0835174235 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/set_creator/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::set_Creator method +linktitle: set_Creator +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::set_Creator method. Sets the Creator information of PDF document in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.facades/pdffileinfo/set_creator/ +--- +## PdfFileInfo::set_Creator method + + +Sets the Creator information of PDF document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileInfo::set_Creator(System::String value) +``` + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/set_header/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/set_header/_index.md new file mode 100644 index 0000000000..3bdb482d3d --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/set_header/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::set_Header method +linktitle: set_Header +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::set_Header method. Sets the customized information of PDF document in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.facades/pdffileinfo/set_header/ +--- +## PdfFileInfo::set_Header method + + +Sets the customized information of PDF document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileInfo::set_Header(System::SharedPtr> value) +``` + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/set_inputfile/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/set_inputfile/_index.md new file mode 100644 index 0000000000..28e0a6911e --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/set_inputfile/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::set_InputFile method +linktitle: set_InputFile +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::set_InputFile method. Sets the input file in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.facades/pdffileinfo/set_inputfile/ +--- +## PdfFileInfo::set_InputFile method + + +Sets the input file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileInfo::set_InputFile(System::String value) +``` + +## Remarks + + + + Deprecated + + Use BindPdf(inputFile) method for facade initialization. + + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/set_inputstream/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/set_inputstream/_index.md new file mode 100644 index 0000000000..10387bfd55 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/set_inputstream/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::set_InputStream method +linktitle: set_InputStream +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::set_InputStream method. Sets the input stream in C++.' +type: docs +weight: 1700 +url: /cpp/aspose.pdf.facades/pdffileinfo/set_inputstream/ +--- +## PdfFileInfo::set_InputStream method + + +Sets the input stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileInfo::set_InputStream(System::SharedPtr value) +``` + +## Remarks + + + + Deprecated + + Use BindPdf(inputStream) method for facade initialization. + + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/set_keywords/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/set_keywords/_index.md new file mode 100644 index 0000000000..532bbc9e1a --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/set_keywords/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::set_Keywords method +linktitle: set_Keywords +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::set_Keywords method. Sets the Keywords information of PDF document in C++.' +type: docs +weight: 1900 +url: /cpp/aspose.pdf.facades/pdffileinfo/set_keywords/ +--- +## PdfFileInfo::set_Keywords method + + +Sets the Keywords information of PDF document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileInfo::set_Keywords(System::String value) +``` + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/set_moddate/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/set_moddate/_index.md new file mode 100644 index 0000000000..8f1cf5cae1 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/set_moddate/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::set_ModDate method +linktitle: set_ModDate +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::set_ModDate method. Sets the ModDate date information of PDF document in C++.' +type: docs +weight: 2100 +url: /cpp/aspose.pdf.facades/pdffileinfo/set_moddate/ +--- +## PdfFileInfo::set_ModDate method + + +Sets the ModDate date information of PDF document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileInfo::set_ModDate(System::String value) +``` + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/set_subject/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/set_subject/_index.md new file mode 100644 index 0000000000..140e502f20 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/set_subject/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::set_Subject method +linktitle: set_Subject +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::set_Subject method. Sets the Subject information of PDF document in C++.' +type: docs +weight: 2500 +url: /cpp/aspose.pdf.facades/pdffileinfo/set_subject/ +--- +## PdfFileInfo::set_Subject method + + +Sets the Subject information of PDF document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileInfo::set_Subject(System::String value) +``` + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/set_title/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/set_title/_index.md new file mode 100644 index 0000000000..78a2595e45 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/set_title/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::set_Title method +linktitle: set_Title +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::set_Title method. Sets the Title information of PDF document in C++.' +type: docs +weight: 2700 +url: /cpp/aspose.pdf.facades/pdffileinfo/set_title/ +--- +## PdfFileInfo::set_Title method + + +Sets the Title information of PDF document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileInfo::set_Title(System::String value) +``` + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/set_usestrictvalidation/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/set_usestrictvalidation/_index.md new file mode 100644 index 0000000000..c3e97d6b02 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/set_usestrictvalidation/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::set_UseStrictValidation method +linktitle: set_UseStrictValidation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::set_UseStrictValidation method. Uses strict validation rules via using IsPdfFile property in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.facades/pdffileinfo/set_usestrictvalidation/ +--- +## PdfFileInfo::set_UseStrictValidation method + + +Uses strict validation rules via using [IsPdfFile](../) property. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileInfo::set_UseStrictValidation(bool value) +``` + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/setmetainfo/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/setmetainfo/_index.md new file mode 100644 index 0000000000..b2cf37dced --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/setmetainfo/_index.md @@ -0,0 +1,49 @@ +--- +title: Aspose::Pdf::Facades::PdfFileInfo::SetMetaInfo method +linktitle: SetMetaInfo +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileInfo::SetMetaInfo method. Sets customized information of PDF document in C++.' +type: docs +weight: 4400 +url: /cpp/aspose.pdf.facades/pdffileinfo/setmetainfo/ +--- +## PdfFileInfo::SetMetaInfo method + + +Sets customized information of PDF document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileInfo::SetMetaInfo(System::String name, System::String value) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| name | System::String | Custom meta property key. | +| value | System::String | Custom meta property value. | +## Remarks + + + + + + name + + + Custom meta property key. + + + + + value + + + Custom meta property value. + + + +## See Also + +* Class [PdfFileInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilemend/_index.md b/english/cpp/aspose.pdf.facades/pdffilemend/_index.md new file mode 100644 index 0000000000..107cedb16a --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilemend/_index.md @@ -0,0 +1,66 @@ +--- +title: Aspose::Pdf::Facades::PdfFileMend class +linktitle: PdfFileMend +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileMend class. Represents a class for adding texts and images on the pages of existing PDF document in C++.' +type: docs +weight: 2200 +url: /cpp/aspose.pdf.facades/pdffilemend/ +--- +## PdfFileMend class + + +Represents a class for adding texts and images on the pages of existing PDF document. + +```cpp +class PdfFileMend : public Aspose::Pdf::Facades::SaveableFacade +``` + +## Methods + +| Method | Description | +| --- | --- | +| [AddImage](./addimage/)(System::SharedPtr\, int32_t, float, float, float, float) | Adds image to the specified page of PDF document at specified coordinates. | +| [AddImage](./addimage/)(System::SharedPtr\, int32_t, float, float, float, float, System::SharedPtr\) | Adds image to the specified page of PDF document at specified coordinates. | +| [AddImage](./addimage/)(System::SharedPtr\, System::ArrayPtr\, float, float, float, float) | Adds image to the specified pages of PDF document at specified coordinates. | +| [AddImage](./addimage/)(System::SharedPtr\, System::ArrayPtr\, float, float, float, float, System::SharedPtr\) | Adds image to the specified pages of PDF document at specified coordinates. | +| [AddImage](./addimage/)(System::String, int32_t, float, float, float, float) | Adds image to the specified page of PDF document at specified coordinates. | +| [AddImage](./addimage/)(System::String, int32_t, float, float, float, float, System::SharedPtr\) | Adds image to the specified page of PDF document at specified coordinates. | +| [AddImage](./addimage/)(System::String, System::ArrayPtr\, float, float, float, float) | Adds image to the specified pages of PDF document at specified coordinates. | +| [AddImage](./addimage/)(System::String, System::ArrayPtr\, float, float, float, float, System::SharedPtr\) | Adds image to the specified pages of PDF document at specified coordinates. | +| [AddText](./addtext/)(System::SharedPtr\, int32_t, float, float) | Not implemented. | +| [AddText](./addtext/)(System::SharedPtr\, int32_t, float, float, float, float) | Not implemented. | +| [AddText](./addtext/)(System::SharedPtr\, System::ArrayPtr\, float, float, float, float) | Not implemented. | +| [BindPdf](../facade/bindpdf/)(System::String) override | Initializes the facade. | +| [BindPdf](../facade/bindpdf/)(System::SharedPtr\) override | Initializes the facade. | +| [BindPdf](../facade/bindpdf/)(System::SharedPtr\) override | Initializes the facade. | +| virtual [BindPdf](../ifacade/bindpdf/)(System::SharedPtr\) | Binds PDF document for editing. | +| [Close](./close/)() override | Closes [PdfFileMend](./) object. | +| [Dispose](../facade/dispose/)() override | Disposes the facade. | +| [get_Document](../facade/get_document/)() const | Gets the document facade is working on. | +| [get_InputFile](./get_inputfile/)() const | Sets the input file. | +| [get_InputStream](./get_inputstream/)() const | Sets the input stream. | +| [get_OutputFile](./get_outputfile/)() const | Sets the output file. | +| [get_OutputStream](./get_outputstream/)() const | Sets the output stream. | +| [get_TextPositioningMode](./get_textpositioningmode/)() const | Sets or gets text positioning strategy. [PositioningMode](../positioningmode/) Default mode is Legacy. | +| [get_WrapMode](./get_wrapmode/)() const | Sets or gets word wrapping algorithm. See WordWrapMode and IsWordWrap. | +| [PdfFileMend](./pdffilemend/)() | Constructor. | +| [PdfFileMend](./pdffilemend/)(System::String, System::String) | Constructor. | +| [PdfFileMend](./pdffilemend/)(System::SharedPtr\, System::SharedPtr\) | Constructor. | +| [PdfFileMend](./pdffilemend/)(System::SharedPtr\) | Initializes new [PdfFileMend](./) object on base of the *document* . | +| [PdfFileMend](./pdffilemend/)(System::SharedPtr\, System::String) | Initializes new [PdfFileMend](./) object on base of the *document* . | +| [PdfFileMend](./pdffilemend/)(System::SharedPtr\, System::SharedPtr\) | Initializes new [PdfFileMend](./) object on base of the *document* . | +| [Save](./save/)(System::String) override | Saves the PDF document to the specified file. | +| [Save](./save/)(System::SharedPtr\) override | Saves the PDF document to the specified stream. | +| [set_InputFile](./set_inputfile/)(System::String) | Sets the input file. | +| [set_InputStream](./set_inputstream/)(System::SharedPtr\) | Sets the input stream. | +| [set_IsWordWrap](./set_iswordwrap/)(bool) | Sets a bool value that indicates word wrap in AddText methods. If the value is true, the text in [FormattedText](../formattedtext/) will word wrap. By defalt, the value is false. | +| [set_OutputFile](./set_outputfile/)(System::String) | Sets the output file. | +| [set_OutputStream](./set_outputstream/)(System::SharedPtr\) | Sets the output stream. | +| [set_TextPositioningMode](./set_textpositioningmode/)(PositioningMode) | Sets or gets text positioning strategy. [PositioningMode](../positioningmode/) Default mode is Legacy. | +| [set_WrapMode](./set_wrapmode/)(WordWrapMode) | Sets or gets word wrapping algorithm. See WordWrapMode and IsWordWrap. | +## See Also + +* Class [SaveableFacade](../saveablefacade/) +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilemend/addimage/_index.md b/english/cpp/aspose.pdf.facades/pdffilemend/addimage/_index.md new file mode 100644 index 0000000000..3da666d5f7 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilemend/addimage/_index.md @@ -0,0 +1,689 @@ +--- +title: Aspose::Pdf::Facades::PdfFileMend::AddImage method +linktitle: AddImage +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileMend::AddImage method. Adds image to the specified page of PDF document at specified coordinates in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.facades/pdffilemend/addimage/ +--- +## PdfFileMend::AddImage(System::SharedPtr\, int32_t, float, float, float, float) method + + +Adds image to the specified page of PDF document at specified coordinates. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileMend::AddImage(System::SharedPtr imageStream, int32_t pageNum, float lowerLeftX, float lowerLeftY, float upperRightX, float upperRightY) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| imageStream | System::SharedPtr\ | Input image stream. | +| pageNum | int32_t | The number of page that will receive the image. | +| lowerLeftX | float | The lower left x of image rectangle. | +| lowerLeftY | float | The lower left y of image rectangle. | +| upperRightX | float | The upper right x of image rectangle. | +| upperRightY | float | The upper right y of image rectangle. | + +### ReturnValue + +True if success false otherwise. +## Remarks + + + + + + imageStream + + + Input image stream. + + + + + pageNum + + + The number of page that will receive the image. + + + + + lowerLeftX + + + The lower left x of image rectangle. + + + + + lowerLeftY + + + The lower left y of image rectangle. + + + + + upperRightX + + + The upper right x of image rectangle. + + + + + upperRightY + + + The upper right y of image rectangle. + + + +## See Also + +* Class [PdfFileMend](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileMend::AddImage(System::SharedPtr\, int32_t, float, float, float, float, System::SharedPtr\) method + + +Adds image to the specified page of PDF document at specified coordinates. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileMend::AddImage(System::SharedPtr imageStream, int32_t pageNum, float lowerLeftX, float lowerLeftY, float upperRightX, float upperRightY, System::SharedPtr compositingParameters) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| imageStream | System::SharedPtr\ | Input image stream. | +| pageNum | int32_t | The number of page that will receive the image. | +| lowerLeftX | float | The lower left x of image rectangle. | +| lowerLeftY | float | The lower left y of image rectangle. | +| upperRightX | float | The upper right x of image rectangle. | +| upperRightY | float | The upper right y of image rectangle. | +| compositingParameters | System::SharedPtr\ | The graphics compositing parameters for the image. | + +### ReturnValue + +True if success false otherwise. +## Remarks + + + + + + imageStream + + + Input image stream. + + + + + pageNum + + + The number of page that will receive the image. + + + + + lowerLeftX + + + The lower left x of image rectangle. + + + + + lowerLeftY + + + The lower left y of image rectangle. + + + + + upperRightX + + + The upper right x of image rectangle. + + + + + upperRightY + + + The upper right y of image rectangle. + + + + + compositingParameters + + + The graphics compositing parameters for the image. + + + +## See Also + +* Class [CompositingParameters](../../../aspose.pdf/compositingparameters/) +* Class [PdfFileMend](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileMend::AddImage(System::SharedPtr\, System::ArrayPtr\, float, float, float, float) method + + +Adds image to the specified pages of PDF document at specified coordinates. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileMend::AddImage(System::SharedPtr imageStream, System::ArrayPtr pageNums, float lowerLeftX, float lowerLeftY, float upperRightX, float upperRightY) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| imageStream | System::SharedPtr\ | Input image stream. | +| pageNums | System::ArrayPtr\ | The numbers of pages that will receive the image. | +| lowerLeftX | float | The lower left x of image rectangle. | +| lowerLeftY | float | The lower left y of image rectangle. | +| upperRightX | float | The upper right x of image rectangle. | +| upperRightY | float | The upper right y of image rectangle. | + +### ReturnValue + +True if success false otherwise. +## Remarks + + + + + + imageStream + + + Input image stream. + + + + + pageNums + + + The numbers of pages that will receive the image. + + + + + lowerLeftX + + + The lower left x of image rectangle. + + + + + lowerLeftY + + + The lower left y of image rectangle. + + + + + upperRightX + + + The upper right x of image rectangle. + + + + + upperRightY + + + The upper right y of image rectangle. + + + +## See Also + +* Class [PdfFileMend](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileMend::AddImage(System::SharedPtr\, System::ArrayPtr\, float, float, float, float, System::SharedPtr\) method + + +Adds image to the specified pages of PDF document at specified coordinates. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileMend::AddImage(System::SharedPtr imageStream, System::ArrayPtr pageNums, float lowerLeftX, float lowerLeftY, float upperRightX, float upperRightY, System::SharedPtr compositingParameters) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| imageStream | System::SharedPtr\ | Input image stream. | +| pageNums | System::ArrayPtr\ | The numbers of pages that will receive the image. | +| lowerLeftX | float | The lower left x of image rectangle. | +| lowerLeftY | float | The lower left y of image rectangle. | +| upperRightX | float | The upper right x of image rectangle. | +| upperRightY | float | The upper right y of image rectangle. | +| compositingParameters | System::SharedPtr\ | The graphics compositing parameters for the images. | + +### ReturnValue + +True if success false otherwise. +## Remarks + + + + + + imageStream + + + Input image stream. + + + + + pageNums + + + The numbers of pages that will receive the image. + + + + + lowerLeftX + + + The lower left x of image rectangle. + + + + + lowerLeftY + + + The lower left y of image rectangle. + + + + + upperRightX + + + The upper right x of image rectangle. + + + + + upperRightY + + + The upper right y of image rectangle. + + + + + compositingParameters + + + The graphics compositing parameters for the images. + + + +## See Also + +* Class [CompositingParameters](../../../aspose.pdf/compositingparameters/) +* Class [PdfFileMend](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileMend::AddImage(System::String, int32_t, float, float, float, float) method + + +Adds image to the specified page of PDF document at specified coordinates. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileMend::AddImage(System::String imageName, int32_t pageNum, float lowerLeftX, float lowerLeftY, float upperRightX, float upperRightY) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| imageName | System::String | The path of input image file. | +| pageNum | int32_t | The number of page that will receive the image. | +| lowerLeftX | float | The lower left x of image rectangle. | +| lowerLeftY | float | The lower left y of image rectangle. | +| upperRightX | float | The upper right x of image rectangle. | +| upperRightY | float | The upper right y of image rectangle. | + +### ReturnValue + +True if success false otherwise. +## Remarks + + + + + + imageName + + + The path of input image file. + + + + + pageNum + + + The number of page that will receive the image. + + + + + lowerLeftX + + + The lower left x of image rectangle. + + + + + lowerLeftY + + + The lower left y of image rectangle. + + + + + upperRightX + + + The upper right x of image rectangle. + + + + + upperRightY + + + The upper right y of image rectangle. + + + +## See Also + +* Class [PdfFileMend](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileMend::AddImage(System::String, int32_t, float, float, float, float, System::SharedPtr\) method + + +Adds image to the specified page of PDF document at specified coordinates. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileMend::AddImage(System::String imageName, int32_t pageNum, float lowerLeftX, float lowerLeftY, float upperRightX, float upperRightY, System::SharedPtr compositingParameters) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| imageName | System::String | The path of input image file. | +| pageNum | int32_t | The number of page that will receive the image. | +| lowerLeftX | float | The lower left x of image rectangle. | +| lowerLeftY | float | The lower left y of image rectangle. | +| upperRightX | float | The upper right x of image rectangle. | +| upperRightY | float | The upper right y of image rectangle. | +| compositingParameters | System::SharedPtr\ | The graphics compositing parameters for the images. | + +### ReturnValue + +True if success false otherwise. +## Remarks + + + + + + imageName + + + The path of input image file. + + + + + pageNum + + + The number of page that will receive the image. + + + + + lowerLeftX + + + The lower left x of image rectangle. + + + + + lowerLeftY + + + The lower left y of image rectangle. + + + + + upperRightX + + + The upper right x of image rectangle. + + + + + upperRightY + + + The upper right y of image rectangle. + + + + + compositingParameters + + + The graphics compositing parameters for the images. + + + +## See Also + +* Class [CompositingParameters](../../../aspose.pdf/compositingparameters/) +* Class [PdfFileMend](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileMend::AddImage(System::String, System::ArrayPtr\, float, float, float, float) method + + +Adds image to the specified pages of PDF document at specified coordinates. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileMend::AddImage(System::String imageName, System::ArrayPtr pageNums, float lowerLeftX, float lowerLeftY, float upperRightX, float upperRightY) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| imageName | System::String | The path of input image file. | +| pageNums | System::ArrayPtr\ | The numbers of pages that will receive the image. | +| lowerLeftX | float | The lower left x of image rectangle. | +| lowerLeftY | float | The lower left y of image rectangle. | +| upperRightX | float | The upper right x of image rectangle. | +| upperRightY | float | The upper right y of image rectangle. | + +### ReturnValue + +True if success false otherwise. +## Remarks + + + + + + imageName + + + The path of input image file. + + + + + pageNums + + + The numbers of pages that will receive the image. + + + + + lowerLeftX + + + The lower left x of image rectangle. + + + + + lowerLeftY + + + The lower left y of image rectangle. + + + + + upperRightX + + + The upper right x of image rectangle. + + + + + upperRightY + + + The upper right y of image rectangle. + + + +## See Also + +* Class [PdfFileMend](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileMend::AddImage(System::String, System::ArrayPtr\, float, float, float, float, System::SharedPtr\) method + + +Adds image to the specified pages of PDF document at specified coordinates. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileMend::AddImage(System::String imageName, System::ArrayPtr pageNums, float lowerLeftX, float lowerLeftY, float upperRightX, float upperRightY, System::SharedPtr compositingParameters) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| imageName | System::String | The path of input image file. | +| pageNums | System::ArrayPtr\ | The numbers of pages that will receive the image. | +| lowerLeftX | float | The lower left x of image rectangle. | +| lowerLeftY | float | The lower left y of image rectangle. | +| upperRightX | float | The upper right x of image rectangle. | +| upperRightY | float | The upper right y of image rectangle. | +| compositingParameters | System::SharedPtr\ | The graphics compositing parameters for the images. | + +### ReturnValue + +True if success false otherwise. +## Remarks + + + + + + imageName + + + The path of input image file. + + + + + pageNums + + + The numbers of pages that will receive the image. + + + + + lowerLeftX + + + The lower left x of image rectangle. + + + + + lowerLeftY + + + The lower left y of image rectangle. + + + + + upperRightX + + + The upper right x of image rectangle. + + + + + upperRightY + + + The upper right y of image rectangle. + + + + + compositingParameters + + + The graphics compositing parameters for the images. + + + +## See Also + +* Class [CompositingParameters](../../../aspose.pdf/compositingparameters/) +* Class [PdfFileMend](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilemend/addtext/_index.md b/english/cpp/aspose.pdf.facades/pdffilemend/addtext/_index.md new file mode 100644 index 0000000000..e3f7eb7e24 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilemend/addtext/_index.md @@ -0,0 +1,240 @@ +--- +title: Aspose::Pdf::Facades::PdfFileMend::AddText method +linktitle: AddText +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileMend::AddText method. Not implemented in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.facades/pdffilemend/addtext/ +--- +## PdfFileMend::AddText(System::SharedPtr\, int32_t, float, float) method + + +Not implemented. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileMend::AddText(System::SharedPtr text, int32_t pageNum, float lowerLeftX, float lowerLeftY) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| text | System::SharedPtr\ | [FormattedText](../../formattedtext/) object. | +| pageNum | int32_t | [Page](../../../aspose.pdf/page/) number. | +| lowerLeftX | float | Lower left X coordinate. | +| lowerLeftY | float | Lower left Y coordinate. | + +### ReturnValue + +True in case text was successfully added. +## Remarks + + + + + + text + + + + FormattedText object. + + + + + pageNum + + + + Page number. + + + + + lowerLeftX + + + Lower left X coordinate. + + + + + lowerLeftY + + + Lower left Y coordinate. + + + +## See Also + +* Class [FormattedText](../../formattedtext/) +* Class [PdfFileMend](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileMend::AddText(System::SharedPtr\, int32_t, float, float, float, float) method + + +Not implemented. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileMend::AddText(System::SharedPtr text, int32_t pageNum, float lowerLeftX, float lowerLeftY, float upperRightX, float upperRightY) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| text | System::SharedPtr\ | [FormattedText](../../formattedtext/) object. | +| pageNum | int32_t | [Page](../../../aspose.pdf/page/) number. | +| lowerLeftX | float | Lower left X coordinate. | +| lowerLeftY | float | Lower left Y coordinate. | +| upperRightX | float | Upper right X coordinate. | +| upperRightY | float | Upper right Y coordinate. | + +### ReturnValue + +True in case text was successfully added. +## Remarks + + + + + + text + + + + FormattedText object. + + + + + pageNum + + + + Page number. + + + + + lowerLeftX + + + Lower left X coordinate. + + + + + lowerLeftY + + + Lower left Y coordinate. + + + + + upperRightX + + + Upper right X coordinate. + + + + + upperRightY + + + Upper right Y coordinate. + + + +## See Also + +* Class [FormattedText](../../formattedtext/) +* Class [PdfFileMend](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileMend::AddText(System::SharedPtr\, System::ArrayPtr\, float, float, float, float) method + + +Not implemented. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileMend::AddText(System::SharedPtr text, System::ArrayPtr pageNums, float lowerLeftX, float lowerLeftY, float upperRightX, float upperRightY) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| text | System::SharedPtr\ | [FormattedText](../../formattedtext/) object. | +| pageNums | System::ArrayPtr\ | [Page](../../../aspose.pdf/page/) numbers array. | +| lowerLeftX | float | Lower left X coordinate. | +| lowerLeftY | float | Lower left Y coordinate. | +| upperRightX | float | Upper right X coordinate. | +| upperRightY | float | Upper right Y coordinate. | + +### ReturnValue + +True in case text was successfully added. +## Remarks + + + + + + text + + + + FormattedText object. + + + + + pageNums + + + + Page numbers array. + + + + + lowerLeftX + + + Lower left X coordinate. + + + + + lowerLeftY + + + Lower left Y coordinate. + + + + + upperRightX + + + Upper right X coordinate. + + + + + upperRightY + + + Upper right Y coordinate. + + + +## See Also + +* Class [FormattedText](../../formattedtext/) +* Class [PdfFileMend](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilemend/close/_index.md b/english/cpp/aspose.pdf.facades/pdffilemend/close/_index.md new file mode 100644 index 0000000000..3b2d2f47c9 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilemend/close/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileMend::Close method +linktitle: Close +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileMend::Close method. Closes PdfFileMend object in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf.facades/pdffilemend/close/ +--- +## PdfFileMend::Close method + + +Closes [PdfFileMend](../) object. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileMend::Close() override +``` + +## See Also + +* Class [PdfFileMend](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilemend/get_inputfile/_index.md b/english/cpp/aspose.pdf.facades/pdffilemend/get_inputfile/_index.md new file mode 100644 index 0000000000..cae8b1a257 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilemend/get_inputfile/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::PdfFileMend::get_InputFile method +linktitle: get_InputFile +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileMend::get_InputFile method. Sets the input file in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.facades/pdffilemend/get_inputfile/ +--- +## PdfFileMend::get_InputFile method + + +Sets the input file. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::PdfFileMend::get_InputFile() const +``` + +## Remarks + + + + Deprecated + + Use BindPdf(inputFile) method for facade initialization. + + +## See Also + +* Class [PdfFileMend](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilemend/get_inputstream/_index.md b/english/cpp/aspose.pdf.facades/pdffilemend/get_inputstream/_index.md new file mode 100644 index 0000000000..f423907bfb --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilemend/get_inputstream/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::PdfFileMend::get_InputStream method +linktitle: get_InputStream +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileMend::get_InputStream method. Sets the input stream in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.facades/pdffilemend/get_inputstream/ +--- +## PdfFileMend::get_InputStream method + + +Sets the input stream. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::PdfFileMend::get_InputStream() const +``` + +## Remarks + + + + Deprecated + + Use BindPdf(inputStream) method for facade initialization. + + +## See Also + +* Class [PdfFileMend](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilemend/get_outputfile/_index.md b/english/cpp/aspose.pdf.facades/pdffilemend/get_outputfile/_index.md new file mode 100644 index 0000000000..20e7952d4a --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilemend/get_outputfile/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::PdfFileMend::get_OutputFile method +linktitle: get_OutputFile +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileMend::get_OutputFile method. Sets the output file in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.facades/pdffilemend/get_outputfile/ +--- +## PdfFileMend::get_OutputFile method + + +Sets the output file. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::PdfFileMend::get_OutputFile() const +``` + +## Remarks + + + + Deprecated + + Use Save(outputFile) method for getting facade results. + + +## See Also + +* Class [PdfFileMend](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilemend/get_outputstream/_index.md b/english/cpp/aspose.pdf.facades/pdffilemend/get_outputstream/_index.md new file mode 100644 index 0000000000..f97b6a7971 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilemend/get_outputstream/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::PdfFileMend::get_OutputStream method +linktitle: get_OutputStream +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileMend::get_OutputStream method. Sets the output stream in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.facades/pdffilemend/get_outputstream/ +--- +## PdfFileMend::get_OutputStream method + + +Sets the output stream. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::PdfFileMend::get_OutputStream() const +``` + +## Remarks + + + + Deprecated + + Use Save(outputStream) method for getting facade results. + + +## See Also + +* Class [PdfFileMend](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilemend/get_textpositioningmode/_index.md b/english/cpp/aspose.pdf.facades/pdffilemend/get_textpositioningmode/_index.md new file mode 100644 index 0000000000..8ec37db3c5 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilemend/get_textpositioningmode/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::PdfFileMend::get_TextPositioningMode method +linktitle: get_TextPositioningMode +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileMend::get_TextPositioningMode method. Sets or gets text positioning strategy. PositioningMode Default mode is Legacy in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.facades/pdffilemend/get_textpositioningmode/ +--- +## PdfFileMend::get_TextPositioningMode method + + +Sets or gets text positioning strategy. [PositioningMode](../../positioningmode/) Default mode is Legacy. + +```cpp +ASPOSE_PDF_SHARED_API PositioningMode Aspose::Pdf::Facades::PdfFileMend::get_TextPositioningMode() const +``` + +## See Also + +* Enum [PositioningMode](../../positioningmode/) +* Class [PdfFileMend](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilemend/get_wrapmode/_index.md b/english/cpp/aspose.pdf.facades/pdffilemend/get_wrapmode/_index.md new file mode 100644 index 0000000000..27df2cf677 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilemend/get_wrapmode/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::PdfFileMend::get_WrapMode method +linktitle: get_WrapMode +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileMend::get_WrapMode method. Sets or gets word wrapping algorithm. See WordWrapMode and IsWordWrap in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.facades/pdffilemend/get_wrapmode/ +--- +## PdfFileMend::get_WrapMode method + + +Sets or gets word wrapping algorithm. See WordWrapMode and IsWordWrap. + +```cpp +ASPOSE_PDF_SHARED_API WordWrapMode Aspose::Pdf::Facades::PdfFileMend::get_WrapMode() const +``` + +## See Also + +* Enum [WordWrapMode](../../wordwrapmode/) +* Class [PdfFileMend](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilemend/pdffilemend/_index.md b/english/cpp/aspose.pdf.facades/pdffilemend/pdffilemend/_index.md new file mode 100644 index 0000000000..126295989d --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilemend/pdffilemend/_index.md @@ -0,0 +1,240 @@ +--- +title: Aspose::Pdf::Facades::PdfFileMend::PdfFileMend constructor +linktitle: PdfFileMend +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileMend::PdfFileMend constructor. Constructor in C++.' +type: docs +weight: 1700 +url: /cpp/aspose.pdf.facades/pdffilemend/pdffilemend/ +--- +## PdfFileMend::PdfFileMend() constructor + + +Constructor. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfFileMend::PdfFileMend() +``` + +## See Also + +* Class [PdfFileMend](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileMend::PdfFileMend(System::String, System::String) constructor + + +Constructor. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfFileMend::PdfFileMend(System::String inputFileName, System::String outputFileName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFileName | System::String | Input PDF file name. | +| outputFileName | System::String | Output PDF file name. | +## Remarks + + + + Deprecated + + Use constructor without destination. + + + + + inputFileName + + + Input PDF file name. + + + + + outputFileName + + + Output PDF file name. + + + +## See Also + +* Class [PdfFileMend](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileMend::PdfFileMend(System::SharedPtr\, System::SharedPtr\) constructor + + +Constructor. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfFileMend::PdfFileMend(System::SharedPtr inputStream, System::SharedPtr outputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Input PDF stream. | +| outputStream | System::SharedPtr\ | Output PDF stream. | +## Remarks + + + + Deprecated + + Use constructor without destination. + + + + + inputStream + + + Input PDF stream. + + + + + outputStream + + + Output PDF stream. + + + +## See Also + +* Class [PdfFileMend](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileMend::PdfFileMend(System::SharedPtr\) constructor + + +Initializes new [PdfFileMend](../) object on base of the *document* . + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfFileMend::PdfFileMend(System::SharedPtr document) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | [Pdf](../../../aspose.pdf/) document. | +## Remarks + + + + + + document + + + + Pdf document. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [PdfFileMend](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileMend::PdfFileMend(System::SharedPtr\, System::String) constructor + + +Initializes new [PdfFileMend](../) object on base of the *document* . + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfFileMend::PdfFileMend(System::SharedPtr document, System::String outputFileName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | [Pdf](../../../aspose.pdf/) document. | +| outputFileName | System::String | Output PDF file name. | +## Remarks + + + + Deprecated + + Use constructor without destination. + + + + + document + + + + Pdf document. + + + + + outputFileName + + + Output PDF file name. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [PdfFileMend](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileMend::PdfFileMend(System::SharedPtr\, System::SharedPtr\) constructor + + +Initializes new [PdfFileMend](../) object on base of the *document* . + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfFileMend::PdfFileMend(System::SharedPtr document, System::SharedPtr destStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | [Pdf](../../../aspose.pdf/) document. | +| destStream | System::SharedPtr\ | Output PDF stream. | +## Remarks + + + + Deprecated + + Use constructor without destination. + + + + + document + + + + Pdf document. + + + + + destStream + + + Output PDF stream. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [PdfFileMend](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilemend/save/_index.md b/english/cpp/aspose.pdf.facades/pdffilemend/save/_index.md new file mode 100644 index 0000000000..88dd7febae --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilemend/save/_index.md @@ -0,0 +1,71 @@ +--- +title: Aspose::Pdf::Facades::PdfFileMend::Save method +linktitle: Save +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileMend::Save method. Saves the PDF document to the specified file in C++.' +type: docs +weight: 1800 +url: /cpp/aspose.pdf.facades/pdffilemend/save/ +--- +## PdfFileMend::Save(System::String) method + + +Saves the PDF document to the specified file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileMend::Save(System::String destFile) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| destFile | System::String | The destination file. | +## Remarks + + + + + + destFile + + + The destination file. + + + +## See Also + +* Class [PdfFileMend](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileMend::Save(System::SharedPtr\) method + + +Saves the PDF document to the specified stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileMend::Save(System::SharedPtr destStream) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| destStream | System::SharedPtr\ | The destination stream. | +## Remarks + + + + + + destStream + + + The destination stream. + + + +## See Also + +* Class [PdfFileMend](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilemend/set_inputfile/_index.md b/english/cpp/aspose.pdf.facades/pdffilemend/set_inputfile/_index.md new file mode 100644 index 0000000000..1dc2e334dc --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilemend/set_inputfile/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::PdfFileMend::set_InputFile method +linktitle: set_InputFile +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileMend::set_InputFile method. Sets the input file in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.facades/pdffilemend/set_inputfile/ +--- +## PdfFileMend::set_InputFile method + + +Sets the input file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileMend::set_InputFile(System::String value) +``` + +## Remarks + + + + Deprecated + + Use BindPdf(inputFile) method for facade initialization. + + +## See Also + +* Class [PdfFileMend](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilemend/set_inputstream/_index.md b/english/cpp/aspose.pdf.facades/pdffilemend/set_inputstream/_index.md new file mode 100644 index 0000000000..4c274aedab --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilemend/set_inputstream/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::PdfFileMend::set_InputStream method +linktitle: set_InputStream +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileMend::set_InputStream method. Sets the input stream in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.facades/pdffilemend/set_inputstream/ +--- +## PdfFileMend::set_InputStream method + + +Sets the input stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileMend::set_InputStream(System::SharedPtr value) +``` + +## Remarks + + + + Deprecated + + Use BindPdf(inputStream) method for facade initialization. + + +## See Also + +* Class [PdfFileMend](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilemend/set_iswordwrap/_index.md b/english/cpp/aspose.pdf.facades/pdffilemend/set_iswordwrap/_index.md new file mode 100644 index 0000000000..352633324f --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilemend/set_iswordwrap/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileMend::set_IsWordWrap method +linktitle: set_IsWordWrap +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileMend::set_IsWordWrap method. Sets a bool value that indicates word wrap in AddText methods. If the value is true, the text in FormattedText will word wrap. By defalt, the value is false in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.facades/pdffilemend/set_iswordwrap/ +--- +## PdfFileMend::set_IsWordWrap method + + +Sets a bool value that indicates word wrap in AddText methods. If the value is true, the text in [FormattedText](../../formattedtext/) will word wrap. By defalt, the value is false. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileMend::set_IsWordWrap(bool value) +``` + +## See Also + +* Class [PdfFileMend](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilemend/set_outputfile/_index.md b/english/cpp/aspose.pdf.facades/pdffilemend/set_outputfile/_index.md new file mode 100644 index 0000000000..6a7ad34fad --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilemend/set_outputfile/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::PdfFileMend::set_OutputFile method +linktitle: set_OutputFile +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileMend::set_OutputFile method. Sets the output file in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.facades/pdffilemend/set_outputfile/ +--- +## PdfFileMend::set_OutputFile method + + +Sets the output file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileMend::set_OutputFile(System::String value) +``` + +## Remarks + + + + Deprecated + + Use Save(outputFile) method for getting facade results. + + +## See Also + +* Class [PdfFileMend](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilemend/set_outputstream/_index.md b/english/cpp/aspose.pdf.facades/pdffilemend/set_outputstream/_index.md new file mode 100644 index 0000000000..756c353555 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilemend/set_outputstream/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::PdfFileMend::set_OutputStream method +linktitle: set_OutputStream +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileMend::set_OutputStream method. Sets the output stream in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.facades/pdffilemend/set_outputstream/ +--- +## PdfFileMend::set_OutputStream method + + +Sets the output stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileMend::set_OutputStream(System::SharedPtr value) +``` + +## Remarks + + + + Deprecated + + Use Save(outputStream) method for getting facade results. + + +## See Also + +* Class [PdfFileMend](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilemend/set_textpositioningmode/_index.md b/english/cpp/aspose.pdf.facades/pdffilemend/set_textpositioningmode/_index.md new file mode 100644 index 0000000000..99e5ed8e1b --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilemend/set_textpositioningmode/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::PdfFileMend::set_TextPositioningMode method +linktitle: set_TextPositioningMode +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileMend::set_TextPositioningMode method. Sets or gets text positioning strategy. PositioningMode Default mode is Legacy in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.facades/pdffilemend/set_textpositioningmode/ +--- +## PdfFileMend::set_TextPositioningMode method + + +Sets or gets text positioning strategy. [PositioningMode](../../positioningmode/) Default mode is Legacy. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileMend::set_TextPositioningMode(PositioningMode value) +``` + +## See Also + +* Enum [PositioningMode](../../positioningmode/) +* Class [PdfFileMend](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilemend/set_wrapmode/_index.md b/english/cpp/aspose.pdf.facades/pdffilemend/set_wrapmode/_index.md new file mode 100644 index 0000000000..43652818ea --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilemend/set_wrapmode/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::PdfFileMend::set_WrapMode method +linktitle: set_WrapMode +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileMend::set_WrapMode method. Sets or gets word wrapping algorithm. See WordWrapMode and IsWordWrap in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.facades/pdffilemend/set_wrapmode/ +--- +## PdfFileMend::set_WrapMode method + + +Sets or gets word wrapping algorithm. See WordWrapMode and IsWordWrap. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileMend::set_WrapMode(WordWrapMode value) +``` + +## See Also + +* Enum [WordWrapMode](../../wordwrapmode/) +* Class [PdfFileMend](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesanitization/_index.md b/english/cpp/aspose.pdf.facades/pdffilesanitization/_index.md new file mode 100644 index 0000000000..54cce38280 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesanitization/_index.md @@ -0,0 +1,50 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSanitization class +linktitle: PdfFileSanitization +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSanitization class. Represents sanitization and recovery API. Use it if you can''t create/open documents in any other way in C++.' +type: docs +weight: 2300 +url: /cpp/aspose.pdf.facades/pdffilesanitization/ +--- +## PdfFileSanitization class + + +Represents sanitization and recovery API. Use it if you can't create/open documents in any other way. + +```cpp +class PdfFileSanitization : public Aspose::Pdf::Facades::SaveableFacade, + public Aspose::Pdf::Sanitization::IRecovery +``` + +## Methods + +| Method | Description | +| --- | --- | +| [BindPdf](./bindpdf/)(System::String) override | Binds a [Pdf](../../aspose.pdf/) file for Sanitize. | +| [BindPdf](./bindpdf/)(System::SharedPtr\) override | Binds a [Pdf](../../aspose.pdf/) stream for Sanitize. | +| [BindPdf](./bindpdf/)(System::SharedPtr\) override | Initializes the facade. | +| virtual [BindPdf](../ifacade/bindpdf/)(System::SharedPtr\) | Binds PDF document for editing. | +| [Close](./close/)() override | Closes the facade. | +| [Dispose](../facade/dispose/)() override | Disposes the facade. | +| [get_Document](../facade/get_document/)() const | Gets the document facade is working on. | +| [get_Log](./get_log/)() override | After file has Saved you can check what was done with file. | +| [get_UseRebuildXrefAndTrailer](./get_userebuildxrefandtrailer/)() const | Allows to generate new xref and trailer for document. | +| [get_UseTrimBottom](./get_usetrimbottom/)() const | Allows to remove data after pdf data. | +| [get_UseTrimTop](./get_usetrimtop/)() const | Allows to remove data before pdf data. | +| [PdfFileSanitization](./pdffilesanitization/)() | Initializes a new instance. | +| [RebuildXrefAndTrailer](./rebuildxrefandtrailer/)() | Removes old xref with trailer and creates a new xref with trailer. | +| [Recover](./recover/)() override | Recovers document. Use properties to customize. | +| [Save](./save/)(System::String) override | Saves the result PDF to file. | +| [Save](./save/)(System::SharedPtr\) override | Saves the result PDF to stream. | +| [set_UseRebuildXrefAndTrailer](./set_userebuildxrefandtrailer/)(bool) | Allows to generate new xref and trailer for document. | +| [set_UseTrimBottom](./set_usetrimbottom/)(bool) | Allows to remove data after pdf data. | +| [set_UseTrimTop](./set_usetrimtop/)(bool) | Allows to remove data before pdf data. | +| [TrimBottom](./trimbottom/)() override | Removes data after last %EOF. | +| [TrimTop](./trimtop/)() override | Removes data before PDF. | +## See Also + +* Class [SaveableFacade](../saveablefacade/) +* Class [IRecovery](../../aspose.pdf.sanitization/irecovery/) +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesanitization/bindpdf/_index.md b/english/cpp/aspose.pdf.facades/pdffilesanitization/bindpdf/_index.md new file mode 100644 index 0000000000..bd7424faf5 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesanitization/bindpdf/_index.md @@ -0,0 +1,103 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSanitization::BindPdf method +linktitle: BindPdf +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSanitization::BindPdf method. Binds a Pdf file for Sanitize in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.facades/pdffilesanitization/bindpdf/ +--- +## PdfFileSanitization::BindPdf(System::String) method + + +Binds a [Pdf](../../../aspose.pdf/) file for Sanitize. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileSanitization::BindPdf(System::String inputFile) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | The pdf file to be edited. | +## Remarks + + + + + + inputFile + + + The pdf file to be edited. + + + +## See Also + +* Class [PdfFileSanitization](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileSanitization::BindPdf(System::SharedPtr\) method + + +Binds a [Pdf](../../../aspose.pdf/) stream for Sanitize. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileSanitization::BindPdf(System::SharedPtr inputStream) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | The pdf stream to be edited. | +## Remarks + + + + + + inputStream + + + The pdf stream to be edited. + + + +## See Also + +* Class [PdfFileSanitization](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileSanitization::BindPdf(System::SharedPtr\) method + + +Initializes the facade. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileSanitization::BindPdf(System::SharedPtr srcDoc) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| srcDoc | System::SharedPtr\ | The [Aspose.Pdf.Document](../../../aspose.pdf/document/) object. | +## Remarks + + + + + + srcDoc + + + The Aspose.Pdf.Document object. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [PdfFileSanitization](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesanitization/close/_index.md b/english/cpp/aspose.pdf.facades/pdffilesanitization/close/_index.md new file mode 100644 index 0000000000..530bef6908 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesanitization/close/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSanitization::Close method +linktitle: Close +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSanitization::Close method. Closes the facade in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.facades/pdffilesanitization/close/ +--- +## PdfFileSanitization::Close method + + +Closes the facade. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileSanitization::Close() override +``` + +## See Also + +* Class [PdfFileSanitization](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesanitization/get_log/_index.md b/english/cpp/aspose.pdf.facades/pdffilesanitization/get_log/_index.md new file mode 100644 index 0000000000..fe8ecefb52 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesanitization/get_log/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSanitization::get_Log method +linktitle: get_Log +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSanitization::get_Log method. After file has Saved you can check what was done with file in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.facades/pdffilesanitization/get_log/ +--- +## PdfFileSanitization::get_Log method + + +After file has Saved you can check what was done with file. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr> Aspose::Pdf::Facades::PdfFileSanitization::get_Log() override +``` + +## See Also + +* Class [PdfFileSanitization](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesanitization/get_userebuildxrefandtrailer/_index.md b/english/cpp/aspose.pdf.facades/pdffilesanitization/get_userebuildxrefandtrailer/_index.md new file mode 100644 index 0000000000..900dceadc8 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesanitization/get_userebuildxrefandtrailer/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSanitization::get_UseRebuildXrefAndTrailer method +linktitle: get_UseRebuildXrefAndTrailer +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSanitization::get_UseRebuildXrefAndTrailer method. Allows to generate new xref and trailer for document in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.facades/pdffilesanitization/get_userebuildxrefandtrailer/ +--- +## PdfFileSanitization::get_UseRebuildXrefAndTrailer method + + +Allows to generate new xref and trailer for document. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileSanitization::get_UseRebuildXrefAndTrailer() const +``` + +## See Also + +* Class [PdfFileSanitization](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesanitization/get_usetrimbottom/_index.md b/english/cpp/aspose.pdf.facades/pdffilesanitization/get_usetrimbottom/_index.md new file mode 100644 index 0000000000..236392a6ad --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesanitization/get_usetrimbottom/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSanitization::get_UseTrimBottom method +linktitle: get_UseTrimBottom +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSanitization::get_UseTrimBottom method. Allows to remove data after pdf data in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.facades/pdffilesanitization/get_usetrimbottom/ +--- +## PdfFileSanitization::get_UseTrimBottom method + + +Allows to remove data after pdf data. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileSanitization::get_UseTrimBottom() const +``` + +## See Also + +* Class [PdfFileSanitization](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesanitization/get_usetrimtop/_index.md b/english/cpp/aspose.pdf.facades/pdffilesanitization/get_usetrimtop/_index.md new file mode 100644 index 0000000000..14b4314c71 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesanitization/get_usetrimtop/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSanitization::get_UseTrimTop method +linktitle: get_UseTrimTop +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSanitization::get_UseTrimTop method. Allows to remove data before pdf data in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.facades/pdffilesanitization/get_usetrimtop/ +--- +## PdfFileSanitization::get_UseTrimTop method + + +Allows to remove data before pdf data. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileSanitization::get_UseTrimTop() const +``` + +## See Also + +* Class [PdfFileSanitization](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesanitization/pdffilesanitization/_index.md b/english/cpp/aspose.pdf.facades/pdffilesanitization/pdffilesanitization/_index.md new file mode 100644 index 0000000000..322ac6aece --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesanitization/pdffilesanitization/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSanitization::PdfFileSanitization constructor +linktitle: PdfFileSanitization +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSanitization::PdfFileSanitization constructor. Initializes a new instance in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.facades/pdffilesanitization/pdffilesanitization/ +--- +## PdfFileSanitization::PdfFileSanitization constructor + + +Initializes a new instance. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfFileSanitization::PdfFileSanitization() +``` + +## See Also + +* Class [PdfFileSanitization](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesanitization/rebuildxrefandtrailer/_index.md b/english/cpp/aspose.pdf.facades/pdffilesanitization/rebuildxrefandtrailer/_index.md new file mode 100644 index 0000000000..3a90dd57a7 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesanitization/rebuildxrefandtrailer/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSanitization::RebuildXrefAndTrailer method +linktitle: RebuildXrefAndTrailer +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSanitization::RebuildXrefAndTrailer method. Removes old xref with trailer and creates a new xref with trailer in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.facades/pdffilesanitization/rebuildxrefandtrailer/ +--- +## PdfFileSanitization::RebuildXrefAndTrailer method + + +Removes old xref with trailer and creates a new xref with trailer. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileSanitization::RebuildXrefAndTrailer() +``` + +## See Also + +* Class [PdfFileSanitization](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesanitization/recover/_index.md b/english/cpp/aspose.pdf.facades/pdffilesanitization/recover/_index.md new file mode 100644 index 0000000000..480e9e9e6e --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesanitization/recover/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSanitization::Recover method +linktitle: Recover +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSanitization::Recover method. Recovers document. Use properties to customize in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.facades/pdffilesanitization/recover/ +--- +## PdfFileSanitization::Recover method + + +Recovers document. Use properties to customize. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileSanitization::Recover() override +``` + +## See Also + +* Class [PdfFileSanitization](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesanitization/save/_index.md b/english/cpp/aspose.pdf.facades/pdffilesanitization/save/_index.md new file mode 100644 index 0000000000..8436f7fd04 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesanitization/save/_index.md @@ -0,0 +1,71 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSanitization::Save method +linktitle: Save +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSanitization::Save method. Saves the result PDF to file in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.facades/pdffilesanitization/save/ +--- +## PdfFileSanitization::Save(System::String) method + + +Saves the result PDF to file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileSanitization::Save(System::String outputFile) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputFile | System::String | output pdf file | +## Remarks + + + + + + outputFile + + + output pdf file + + + +## See Also + +* Class [PdfFileSanitization](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileSanitization::Save(System::SharedPtr\) method + + +Saves the result PDF to stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileSanitization::Save(System::SharedPtr outputStream) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputStream | System::SharedPtr\ | output pdf stream | +## Remarks + + + + + + outputStream + + + output pdf stream + + + +## See Also + +* Class [PdfFileSanitization](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesanitization/set_userebuildxrefandtrailer/_index.md b/english/cpp/aspose.pdf.facades/pdffilesanitization/set_userebuildxrefandtrailer/_index.md new file mode 100644 index 0000000000..d41618deaa --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesanitization/set_userebuildxrefandtrailer/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSanitization::set_UseRebuildXrefAndTrailer method +linktitle: set_UseRebuildXrefAndTrailer +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSanitization::set_UseRebuildXrefAndTrailer method. Allows to generate new xref and trailer for document in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.facades/pdffilesanitization/set_userebuildxrefandtrailer/ +--- +## PdfFileSanitization::set_UseRebuildXrefAndTrailer method + + +Allows to generate new xref and trailer for document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileSanitization::set_UseRebuildXrefAndTrailer(bool value) +``` + +## See Also + +* Class [PdfFileSanitization](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesanitization/set_usetrimbottom/_index.md b/english/cpp/aspose.pdf.facades/pdffilesanitization/set_usetrimbottom/_index.md new file mode 100644 index 0000000000..03ef6153d8 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesanitization/set_usetrimbottom/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSanitization::set_UseTrimBottom method +linktitle: set_UseTrimBottom +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSanitization::set_UseTrimBottom method. Allows to remove data after pdf data in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.facades/pdffilesanitization/set_usetrimbottom/ +--- +## PdfFileSanitization::set_UseTrimBottom method + + +Allows to remove data after pdf data. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileSanitization::set_UseTrimBottom(bool value) +``` + +## See Also + +* Class [PdfFileSanitization](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesanitization/set_usetrimtop/_index.md b/english/cpp/aspose.pdf.facades/pdffilesanitization/set_usetrimtop/_index.md new file mode 100644 index 0000000000..d16c4eea95 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesanitization/set_usetrimtop/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSanitization::set_UseTrimTop method +linktitle: set_UseTrimTop +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSanitization::set_UseTrimTop method. Allows to remove data before pdf data in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.facades/pdffilesanitization/set_usetrimtop/ +--- +## PdfFileSanitization::set_UseTrimTop method + + +Allows to remove data before pdf data. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileSanitization::set_UseTrimTop(bool value) +``` + +## See Also + +* Class [PdfFileSanitization](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesanitization/trimbottom/_index.md b/english/cpp/aspose.pdf.facades/pdffilesanitization/trimbottom/_index.md new file mode 100644 index 0000000000..5c3d79ecaa --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesanitization/trimbottom/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSanitization::TrimBottom method +linktitle: TrimBottom +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSanitization::TrimBottom method. Removes data after last %EOF in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.facades/pdffilesanitization/trimbottom/ +--- +## PdfFileSanitization::TrimBottom method + + +Removes data after last %EOF. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileSanitization::TrimBottom() override +``` + +## See Also + +* Class [PdfFileSanitization](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesanitization/trimtop/_index.md b/english/cpp/aspose.pdf.facades/pdffilesanitization/trimtop/_index.md new file mode 100644 index 0000000000..4794ef7a44 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesanitization/trimtop/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSanitization::TrimTop method +linktitle: TrimTop +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSanitization::TrimTop method. Removes data before PDF in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.facades/pdffilesanitization/trimtop/ +--- +## PdfFileSanitization::TrimTop method + + +Removes data before PDF. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileSanitization::TrimTop() override +``` + +## See Also + +* Class [PdfFileSanitization](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesecurity/_index.md b/english/cpp/aspose.pdf.facades/pdffilesecurity/_index.md new file mode 100644 index 0000000000..f46776122d --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesecurity/_index.md @@ -0,0 +1,62 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSecurity class +linktitle: PdfFileSecurity +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSecurity class. Represents encrypting or decrypting a Pdf file with owner or user password, changing the security setting and password in C++.' +type: docs +weight: 2400 +url: /cpp/aspose.pdf.facades/pdffilesecurity/ +--- +## PdfFileSecurity class + + +Represents encrypting or decrypting a [Pdf](../../aspose.pdf/) file with owner or user password, changing the security setting and password. + +```cpp +class PdfFileSecurity : public Aspose::Pdf::Facades::SaveableFacade +``` + +## Methods + +| Method | Description | +| --- | --- | +| [BindPdf](./bindpdf/)(System::String) override | Initializes the facade. | +| [BindPdf](./bindpdf/)(System::SharedPtr\) override | Initializes the facade. | +| [BindPdf](../facade/bindpdf/)(System::SharedPtr\) override | Initializes the facade. | +| virtual [BindPdf](../ifacade/bindpdf/)(System::SharedPtr\) | Binds PDF document for editing. | +| [ChangePassword](./changepassword/)(System::String, System::String, System::String) | Changes the user password and owner password by owner password, keeps the original security settings. The new user password and the new owner password can be null or empty. The owner password will be replaced with a random string if the new owner password is null or empty. Throws an exception if process failed. | +| [ChangePassword](./changepassword/)(System::String, System::String, System::String, System::SharedPtr\, KeySize) | Changes the user password and password by owner password, allows to reset [Pdf](../../aspose.pdf/) documnent security. The new user password and the new owner password can be null or empty. The owner password will be replaced with a random string if the new owner password is null or empty. Throws an exception if process failed. | +| [ChangePassword](./changepassword/)(System::String, System::String, System::String, System::SharedPtr\, KeySize, Algorithm) | Changes the user password and password by owner password, allows to reset [Pdf](../../aspose.pdf/) documnent security. The new user password and the new owner password can be null or empty. The owner password will be replaced with a random string if the new owner password is null or empty. There are 6 possible combinations of KeySize and Algorithm values. However ([KeySize.x40](../keysize/), [Algorithm.AES](../algorithm/)) and ([KeySize.x256](../keysize/), [Algorithm.RC4](../algorithm/)) are invalid and corresponding exception will be raised if kit encounters this combination. Throws an exception if process failed. | +| [Close](./close/)() override | Closes the facade. | +| [get_AllowExceptions](./get_allowexceptions/)() | If this value set to true, exception will be thrown on opearation failure. Else, method returns false on failure and last exception can be checked with LastException property. | +| [get_Document](../facade/get_document/)() const | Gets the document facade is working on. | +| [get_LastException](./get_lastexception/)() const | Returns exception which was thrown by last operation. | +| [MfDecryptFile](./mfdecryptfile/)(System::String) | Decrypts an encrypted [Pdf](../../aspose.pdf/) document by owner password. If the document hasn't owner password, it is allow to use user password. Throws an exception if process failed. | +| [MfEncryptFile](./mfencryptfile/)(System::String, System::String, System::SharedPtr\, KeySize) | Encrypts [Pdf](../../aspose.pdf/) file with userpassword and ownerpassword and sets the document's privileges to access. The user password and the owner password can be null or empty. The owner password will be replaced with a random string if the input owner password is null or empty. Throws exception if process failed. | +| [MfEncryptFile](./mfencryptfile/)(System::String, System::String, System::SharedPtr\, KeySize, Algorithm) | Encrypts [Pdf](../../aspose.pdf/) file with userpassword and ownerpassword and sets the document's privileges to access. The user password and the owner password can be null or empty. The owner password will be replaced with a random string if the input owner password is null or empty. There are 6 possible combinations of KeySize and Algorithm values. However ([KeySize.x40](../keysize/), [Algorithm.AES](../algorithm/)) and ([KeySize.x256](../keysize/), [Algorithm.RC4](../algorithm/)) are invalid and corresponding exception will be raised if kit encounters this combination. Throws an exception if process failed. | +| [PdfFileSecurity](./pdffilesecurity/)(System::SharedPtr\, System::SharedPtr\) | Initialize the object of [PdfFileSecurity](./) with input and output stream. | +| [PdfFileSecurity](./pdffilesecurity/)(System::String, System::String) | Initializes the object of [PdfFileSecurity](./) with input and output file. | +| [PdfFileSecurity](./pdffilesecurity/)() | Initialize the object of [PdfFileSecurity](./). | +| [PdfFileSecurity](./pdffilesecurity/)(System::SharedPtr\) | Initializes new [PdfFileSecurity](./) object on base of the *document* . | +| [PdfFileSecurity](./pdffilesecurity/)(System::SharedPtr\, System::String) | Initializes new [PdfFileSecurity](./) object on base of the *document* . | +| [PdfFileSecurity](./pdffilesecurity/)(System::SharedPtr\, System::SharedPtr\) | Initializes new [PdfFileSecurity](./) object on base of the *document* . | +| [Save](../saveablefacade/save/)(System::String) override | Saves the PDF document to the specified file. | +| [Save](../saveablefacade/save/)(System::SharedPtr\) override | Saves the PDF document to the specified stream. | +| [set_AllowExceptions](./set_allowexceptions/)(bool) | If this value set to true, exception will be thrown on opearation failure. Else, method returns false on failure and last exception can be checked with LastException property. | +| [set_InputFile](./set_inputfile/)(System::String) | Sets the input file. | +| [set_InputStream](./set_inputstream/)(System::SharedPtr\) | Sets the input stream. | +| [set_OutputFile](./set_outputfile/)(System::String) | Sets the output file. | +| [set_OutputStream](./set_outputstream/)(System::SharedPtr\) | Sets the output stream. | +| [SetPrivilege](./setprivilege/)(System::SharedPtr\) | Sets [Pdf](../../aspose.pdf/) file security with empty user/owner passwords. The owner password will be added by a random string. Throws an exception if process failed. | +| [SetPrivilege](./setprivilege/)(System::String, System::String, System::SharedPtr\) | Sets [Pdf](../../aspose.pdf/) file security with original password. Throws an exception if process failed. | +| [TryChangePassword](./trychangepassword/)(System::String, System::String, System::String) | Changes the user password and owner password by owner password, keeps the original security settings. The new user password and the new owner password can be null or empty. The owner password will be replaced Does not throw an exception if process failed. with a random string if the new owner password is null or empty. | +| [TryChangePassword](./trychangepassword/)(System::String, System::String, System::String, System::SharedPtr\, KeySize) | Changes the user password and password by owner password, allows to reset [Pdf](../../aspose.pdf/) documnent security. The new user password and the new owner password can be null or empty. The owner password will be replaced with a random string if the new owner password is null or empty. Does not throw an exception if process failed. | +| [TryChangePassword](./trychangepassword/)(System::String, System::String, System::String, System::SharedPtr\, KeySize, Algorithm) | Changes the user password and password by owner password, allows to reset [Pdf](../../aspose.pdf/) documnent security. The new user password and the new owner password can be null or empty. The owner password will be replaced with a random string if the new owner password is null or empty. There are 6 possible combinations of KeySize and Algorithm values. However ([KeySize.x40](../keysize/), [Algorithm.AES](../algorithm/)) and ([KeySize.x256](../keysize/), [Algorithm.RC4](../algorithm/)) are invalid and corresponding exception will be raised if kit encounters this combination. Does not throw an exception if process failed. | +| [TryDecryptFile](./trydecryptfile/)(System::String) | Decrypts an encrypted [Pdf](../../aspose.pdf/) document by owner password. If the document hasn't owner password, it is allow to use user password. Does not throw an exception if process failed. | +| [TryEncryptFile](./tryencryptfile/)(System::String, System::String, System::SharedPtr\, KeySize) | Encrypts [Pdf](../../aspose.pdf/) file with userpassword and ownerpassword and sets the document's privileges to access. The user password and the owner password can be null or empty. The owner password will be replaced with a random string if the input owner password is null or empty. Does not throw an exception if process failed. | +| [TrySetPrivilege](./trysetprivilege/)(System::String, System::String, System::SharedPtr\) | Sets [Pdf](../../aspose.pdf/) file security with original password. Does not throw an exception if process failed. | +## See Also + +* Class [SaveableFacade](../saveablefacade/) +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesecurity/bindpdf/_index.md b/english/cpp/aspose.pdf.facades/pdffilesecurity/bindpdf/_index.md new file mode 100644 index 0000000000..295ee2e5bc --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesecurity/bindpdf/_index.md @@ -0,0 +1,71 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSecurity::BindPdf method +linktitle: BindPdf +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSecurity::BindPdf method. Initializes the facade in C++.' +type: docs +weight: 1700 +url: /cpp/aspose.pdf.facades/pdffilesecurity/bindpdf/ +--- +## PdfFileSecurity::BindPdf(System::String) method + + +Initializes the facade. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileSecurity::BindPdf(System::String srcFile) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| srcFile | System::String | The PDF file. | +## Remarks + + + + + + srcFile + + + The PDF file. + + + +## See Also + +* Class [PdfFileSecurity](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileSecurity::BindPdf(System::SharedPtr\) method + + +Initializes the facade. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileSecurity::BindPdf(System::SharedPtr srcStream) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| srcStream | System::SharedPtr\ | The stream of PDF file. | +## Remarks + + + + + + srcStream + + + The stream of PDF file. + + + +## See Also + +* Class [PdfFileSecurity](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesecurity/changepassword/_index.md b/english/cpp/aspose.pdf.facades/pdffilesecurity/changepassword/_index.md new file mode 100644 index 0000000000..fbec13bc1a --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesecurity/changepassword/_index.md @@ -0,0 +1,221 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSecurity::ChangePassword method +linktitle: ChangePassword +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSecurity::ChangePassword method. Changes the user password and owner password by owner password, keeps the original security settings. The new user password and the new owner password can be null or empty. The owner password will be replaced with a random string if the new owner password is null or empty. Throws an exception if process failed in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.facades/pdffilesecurity/changepassword/ +--- +## PdfFileSecurity::ChangePassword(System::String, System::String, System::String) method + + +Changes the user password and owner password by owner password, keeps the original security settings. The new user password and the new owner password can be null or empty. The owner password will be replaced with a random string if the new owner password is null or empty. Throws an exception if process failed. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileSecurity::ChangePassword(System::String ownerPassword, System::String newUserPassword, System::String newOwnerPassword) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| ownerPassword | System::String | Original Owner password. | +| newUserPassword | System::String | New User password. | +| newOwnerPassword | System::String | New Owner password. | + +### ReturnValue + +True for success. +## Remarks + + + + + + ownerPassword + + + Original Owner password. + + + + + newUserPassword + + + New User password. + + + + + newOwnerPassword + + + New Owner password. + + + +## See Also + +* Class [PdfFileSecurity](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileSecurity::ChangePassword(System::String, System::String, System::String, System::SharedPtr\, KeySize) method + + +Changes the user password and password by owner password, allows to reset [Pdf](../../../aspose.pdf/) documnent security. The new user password and the new owner password can be null or empty. The owner password will be replaced with a random string if the new owner password is null or empty. Throws an exception if process failed. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileSecurity::ChangePassword(System::String ownerPassword, System::String newUserPassword, System::String newOwnerPassword, System::SharedPtr privilege, KeySize keySize) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| ownerPassword | System::String | Original owner password. | +| newUserPassword | System::String | New User password. | +| newOwnerPassword | System::String | New Owner password. | +| privilege | System::SharedPtr\ | Reset security. | +| keySize | KeySize | [KeySize.x40](../../keysize/) for 40 bits encryption, [KeySize.x128](../../keysize/) for 128 bits encryption and [KeySize.x256](../../keysize/) for 256 bits encryption. | + +### ReturnValue + +True for success. +## Remarks + + + + + + ownerPassword + + + Original owner password. + + + + + newUserPassword + + + New User password. + + + + + newOwnerPassword + + + New Owner password. + + + + + privilege + + + Reset security. + + + + + keySize + + + + KeySize.x40 for 40 bits encryption, KeySize.x128 for 128 bits encryption and KeySize.x256 for 256 bits encryption. + + + +## See Also + +* Class [DocumentPrivilege](../../documentprivilege/) +* Enum [KeySize](../../keysize/) +* Class [PdfFileSecurity](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileSecurity::ChangePassword(System::String, System::String, System::String, System::SharedPtr\, KeySize, Algorithm) method + + +Changes the user password and password by owner password, allows to reset [Pdf](../../../aspose.pdf/) documnent security. The new user password and the new owner password can be null or empty. The owner password will be replaced with a random string if the new owner password is null or empty. There are 6 possible combinations of KeySize and Algorithm values. However ([KeySize.x40](../../keysize/), [Algorithm.AES](../../algorithm/)) and ([KeySize.x256](../../keysize/), [Algorithm.RC4](../../algorithm/)) are invalid and corresponding exception will be raised if kit encounters this combination. Throws an exception if process failed. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileSecurity::ChangePassword(System::String ownerPassword, System::String newUserPassword, System::String newOwnerPassword, System::SharedPtr privilege, KeySize keySize, Algorithm cipher) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| ownerPassword | System::String | Original owner password. | +| newUserPassword | System::String | New User password. | +| newOwnerPassword | System::String | New Owner password. | +| privilege | System::SharedPtr\ | Reset security. | +| keySize | KeySize | [KeySize.x40](../../keysize/) for 40 bits encryption, [KeySize.x128](../../keysize/) for 128 bits encryption and [KeySize.x256](../../keysize/) for 256 bits encryption. | +| cipher | Algorithm | [Algorithm.AES](../../algorithm/) to encrypt using AES algorithm or [Algorithm.RC4](../../algorithm/) for RC4 encryption. | + +### ReturnValue + +True for success. +## Remarks + + + + + + ownerPassword + + + Original owner password. + + + + + newUserPassword + + + New User password. + + + + + newOwnerPassword + + + New Owner password. + + + + + privilege + + + Reset security. + + + + + keySize + + + + KeySize.x40 for 40 bits encryption, KeySize.x128 for 128 bits encryption and KeySize.x256 for 256 bits encryption. + + + + + cipher + + + + Algorithm.AES to encrypt using AES algorithm or Algorithm.RC4 for RC4 encryption. + + + +## See Also + +* Class [DocumentPrivilege](../../documentprivilege/) +* Enum [KeySize](../../keysize/) +* Enum [Algorithm](../../algorithm/) +* Class [PdfFileSecurity](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesecurity/close/_index.md b/english/cpp/aspose.pdf.facades/pdffilesecurity/close/_index.md new file mode 100644 index 0000000000..dcd1ec4e08 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesecurity/close/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSecurity::Close method +linktitle: Close +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSecurity::Close method. Closes the facade in C++.' +type: docs +weight: 1800 +url: /cpp/aspose.pdf.facades/pdffilesecurity/close/ +--- +## PdfFileSecurity::Close method + + +Closes the facade. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileSecurity::Close() override +``` + +## See Also + +* Class [PdfFileSecurity](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesecurity/get_allowexceptions/_index.md b/english/cpp/aspose.pdf.facades/pdffilesecurity/get_allowexceptions/_index.md new file mode 100644 index 0000000000..647aab4d52 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesecurity/get_allowexceptions/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSecurity::get_AllowExceptions method +linktitle: get_AllowExceptions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSecurity::get_AllowExceptions method. If this value set to true, exception will be thrown on opearation failure. Else, method returns false on failure and last exception can be checked with LastException property in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.facades/pdffilesecurity/get_allowexceptions/ +--- +## PdfFileSecurity::get_AllowExceptions method + + +If this value set to true, exception will be thrown on opearation failure. Else, method returns false on failure and last exception can be checked with LastException property. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileSecurity::get_AllowExceptions() +``` + +## Remarks + + + + Deprecated + + This property is deprecated and can not be used to allow throwing exceptions. + + +## See Also + +* Class [PdfFileSecurity](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesecurity/get_lastexception/_index.md b/english/cpp/aspose.pdf.facades/pdffilesecurity/get_lastexception/_index.md new file mode 100644 index 0000000000..580ce2762d --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesecurity/get_lastexception/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSecurity::get_LastException method +linktitle: get_LastException +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSecurity::get_LastException method. Returns exception which was thrown by last operation in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.facades/pdffilesecurity/get_lastexception/ +--- +## PdfFileSecurity::get_LastException method + + +Returns exception which was thrown by last operation. + +```cpp +ASPOSE_PDF_SHARED_API System::Exception Aspose::Pdf::Facades::PdfFileSecurity::get_LastException() const +``` + +## See Also + +* Class [PdfFileSecurity](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesecurity/mfdecryptfile/_index.md b/english/cpp/aspose.pdf.facades/pdffilesecurity/mfdecryptfile/_index.md new file mode 100644 index 0000000000..e43767afa5 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesecurity/mfdecryptfile/_index.md @@ -0,0 +1,44 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSecurity::MfDecryptFile method +linktitle: MfDecryptFile +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSecurity::MfDecryptFile method. Decrypts an encrypted Pdf document by owner password. If the document hasn''t owner password, it is allow to use user password. Throws an exception if process failed in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.facades/pdffilesecurity/mfdecryptfile/ +--- +## PdfFileSecurity::MfDecryptFile method + + +Decrypts an encrypted [Pdf](../../../aspose.pdf/) document by owner password. If the document hasn't owner password, it is allow to use user password. Throws an exception if process failed. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileSecurity::MfDecryptFile(System::String ownerPassword) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| ownerPassword | System::String | Owner password. | + +### ReturnValue + +True for success. +## Remarks + + + + + + ownerPassword + + + Owner password. + + + +## See Also + +* Class [PdfFileSecurity](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesecurity/mfencryptfile/_index.md b/english/cpp/aspose.pdf.facades/pdffilesecurity/mfencryptfile/_index.md new file mode 100644 index 0000000000..3679cda02f --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesecurity/mfencryptfile/_index.md @@ -0,0 +1,150 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSecurity::MfEncryptFile method +linktitle: MfEncryptFile +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSecurity::MfEncryptFile method. Encrypts Pdf file with userpassword and ownerpassword and sets the document''s privileges to access. The user password and the owner password can be null or empty. The owner password will be replaced with a random string if the input owner password is null or empty. Throws exception if process failed in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.facades/pdffilesecurity/mfencryptfile/ +--- +## PdfFileSecurity::MfEncryptFile(System::String, System::String, System::SharedPtr\, KeySize) method + + +Encrypts [Pdf](../../../aspose.pdf/) file with userpassword and ownerpassword and sets the document's privileges to access. The user password and the owner password can be null or empty. The owner password will be replaced with a random string if the input owner password is null or empty. Throws exception if process failed. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileSecurity::MfEncryptFile(System::String userPassword, System::String ownerPassword, System::SharedPtr privilege, KeySize keySize) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| userPassword | System::String | User password. | +| ownerPassword | System::String | Owner password. | +| privilege | System::SharedPtr\ | Set privilege. | +| keySize | KeySize | [KeySize.x40](../../keysize/) for 40 bits encryption, [KeySize.x128](../../keysize/) for 128 bits encryption and [KeySize.x256](../../keysize/) for 256 bits encryption. | + +### ReturnValue + +True for success. +## Remarks + + + + + + userPassword + + + User password. + + + + + ownerPassword + + + Owner password. + + + + + privilege + + + Set privilege. + + + + + keySize + + + + KeySize.x40 for 40 bits encryption, KeySize.x128 for 128 bits encryption and KeySize.x256 for 256 bits encryption. + + + +## See Also + +* Class [DocumentPrivilege](../../documentprivilege/) +* Enum [KeySize](../../keysize/) +* Class [PdfFileSecurity](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileSecurity::MfEncryptFile(System::String, System::String, System::SharedPtr\, KeySize, Algorithm) method + + +Encrypts [Pdf](../../../aspose.pdf/) file with userpassword and ownerpassword and sets the document's privileges to access. The user password and the owner password can be null or empty. The owner password will be replaced with a random string if the input owner password is null or empty. There are 6 possible combinations of KeySize and Algorithm values. However ([KeySize.x40](../../keysize/), [Algorithm.AES](../../algorithm/)) and ([KeySize.x256](../../keysize/), [Algorithm.RC4](../../algorithm/)) are invalid and corresponding exception will be raised if kit encounters this combination. Throws an exception if process failed. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileSecurity::MfEncryptFile(System::String userPassword, System::String ownerPassword, System::SharedPtr privilege, KeySize keySize, Algorithm cipher) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| userPassword | System::String | User password. | +| ownerPassword | System::String | Owner password. | +| privilege | System::SharedPtr\ | Set privilege. | +| keySize | KeySize | [KeySize.x40](../../keysize/) for 40 bits encryption, [KeySize.x128](../../keysize/) for 128 bits encryption and [KeySize.x256](../../keysize/) for 256 bits encryption. | +| cipher | Algorithm | [Algorithm.AES](../../algorithm/) to encrypt using AES algorithm or [Algorithm.RC4](../../algorithm/) for RC4 encryption. | + +### ReturnValue + +True for success. +## Remarks + + + + + + userPassword + + + User password. + + + + + ownerPassword + + + Owner password. + + + + + privilege + + + Set privilege. + + + + + keySize + + + + KeySize.x40 for 40 bits encryption, KeySize.x128 for 128 bits encryption and KeySize.x256 for 256 bits encryption. + + + + + cipher + + + + Algorithm.AES to encrypt using AES algorithm or Algorithm.RC4 for RC4 encryption. + + + +## See Also + +* Class [DocumentPrivilege](../../documentprivilege/) +* Enum [KeySize](../../keysize/) +* Enum [Algorithm](../../algorithm/) +* Class [PdfFileSecurity](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesecurity/pdffilesecurity/_index.md b/english/cpp/aspose.pdf.facades/pdffilesecurity/pdffilesecurity/_index.md new file mode 100644 index 0000000000..ced77453ef --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesecurity/pdffilesecurity/_index.md @@ -0,0 +1,240 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSecurity::PdfFileSecurity constructor +linktitle: PdfFileSecurity +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSecurity::PdfFileSecurity constructor. Initialize the object of PdfFileSecurity with input and output stream in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.facades/pdffilesecurity/pdffilesecurity/ +--- +## PdfFileSecurity::PdfFileSecurity(System::SharedPtr\, System::SharedPtr\) constructor + + +Initialize the object of [PdfFileSecurity](../) with input and output stream. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfFileSecurity::PdfFileSecurity(System::SharedPtr inputStream, System::SharedPtr outputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Input [Pdf](../../../aspose.pdf/) Stream. | +| outputStream | System::SharedPtr\ | Output [Pdf](../../../aspose.pdf/) Stream. | +## Remarks + + + + Deprecated + + Use constructor without destination. + + + + + inputStream + + + Input Pdf Stream. + + + + + outputStream + + + Output Pdf Stream. + + + +## See Also + +* Class [PdfFileSecurity](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileSecurity::PdfFileSecurity(System::String, System::String) constructor + + +Initializes the object of [PdfFileSecurity](../) with input and output file. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfFileSecurity::PdfFileSecurity(System::String inputFile, System::String outputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Source input [Pdf](../../../aspose.pdf/) file. | +| outputFile | System::String | Output [Pdf](../../../aspose.pdf/) file. | +## Remarks + + + + Deprecated + + Use constructor without destination. + + + + + inputFile + + + Source input Pdf file. + + + + + outputFile + + + Output Pdf file. + + + +## See Also + +* Class [PdfFileSecurity](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileSecurity::PdfFileSecurity() constructor + + +Initialize the object of [PdfFileSecurity](../). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfFileSecurity::PdfFileSecurity() +``` + +## See Also + +* Class [PdfFileSecurity](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileSecurity::PdfFileSecurity(System::SharedPtr\) constructor + + +Initializes new [PdfFileSecurity](../) object on base of the *document* . + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfFileSecurity::PdfFileSecurity(System::SharedPtr document) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | [Pdf](../../../aspose.pdf/) document. | +## Remarks + + + + + + document + + + + Pdf document. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [PdfFileSecurity](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileSecurity::PdfFileSecurity(System::SharedPtr\, System::String) constructor + + +Initializes new [PdfFileSecurity](../) object on base of the *document* . + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfFileSecurity::PdfFileSecurity(System::SharedPtr document, System::String outputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | [Pdf](../../../aspose.pdf/) document. | +| outputFile | System::String | Output [Pdf](../../../aspose.pdf/) file. | +## Remarks + + + + Deprecated + + Use constructor without destination. + + + + + document + + + + Pdf document. + + + + + outputFile + + + Output Pdf file. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [PdfFileSecurity](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileSecurity::PdfFileSecurity(System::SharedPtr\, System::SharedPtr\) constructor + + +Initializes new [PdfFileSecurity](../) object on base of the *document* . + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfFileSecurity::PdfFileSecurity(System::SharedPtr document, System::SharedPtr outputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | [Pdf](../../../aspose.pdf/) document. | +| outputStream | System::SharedPtr\ | Output [Pdf](../../../aspose.pdf/) Stream. | +## Remarks + + + + Deprecated + + Use constructor without destination. + + + + + document + + + + Pdf document. + + + + + outputStream + + + Output Pdf Stream. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [PdfFileSecurity](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesecurity/set_allowexceptions/_index.md b/english/cpp/aspose.pdf.facades/pdffilesecurity/set_allowexceptions/_index.md new file mode 100644 index 0000000000..77846edadd --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesecurity/set_allowexceptions/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSecurity::set_AllowExceptions method +linktitle: set_AllowExceptions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSecurity::set_AllowExceptions method. If this value set to true, exception will be thrown on opearation failure. Else, method returns false on failure and last exception can be checked with LastException property in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.facades/pdffilesecurity/set_allowexceptions/ +--- +## PdfFileSecurity::set_AllowExceptions method + + +If this value set to true, exception will be thrown on opearation failure. Else, method returns false on failure and last exception can be checked with LastException property. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileSecurity::set_AllowExceptions(bool value) +``` + +## Remarks + + + + Deprecated + + This property is deprecated and can not be used to allow throwing exceptions. + + +## See Also + +* Class [PdfFileSecurity](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesecurity/set_inputfile/_index.md b/english/cpp/aspose.pdf.facades/pdffilesecurity/set_inputfile/_index.md new file mode 100644 index 0000000000..d28d5569bf --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesecurity/set_inputfile/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSecurity::set_InputFile method +linktitle: set_InputFile +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSecurity::set_InputFile method. Sets the input file in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.facades/pdffilesecurity/set_inputfile/ +--- +## PdfFileSecurity::set_InputFile method + + +Sets the input file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileSecurity::set_InputFile(System::String value) +``` + +## Remarks + + + + Deprecated + + Use BindPdf(inputFile) method for facade initialization. + + +## See Also + +* Class [PdfFileSecurity](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesecurity/set_inputstream/_index.md b/english/cpp/aspose.pdf.facades/pdffilesecurity/set_inputstream/_index.md new file mode 100644 index 0000000000..e61bf88799 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesecurity/set_inputstream/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSecurity::set_InputStream method +linktitle: set_InputStream +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSecurity::set_InputStream method. Sets the input stream in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.facades/pdffilesecurity/set_inputstream/ +--- +## PdfFileSecurity::set_InputStream method + + +Sets the input stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileSecurity::set_InputStream(System::SharedPtr value) +``` + +## Remarks + + + + Deprecated + + Use BindPdf(inputStream) method for facade initialization. + + +## See Also + +* Class [PdfFileSecurity](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesecurity/set_outputfile/_index.md b/english/cpp/aspose.pdf.facades/pdffilesecurity/set_outputfile/_index.md new file mode 100644 index 0000000000..cf9fbde1cd --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesecurity/set_outputfile/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSecurity::set_OutputFile method +linktitle: set_OutputFile +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSecurity::set_OutputFile method. Sets the output file in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.facades/pdffilesecurity/set_outputfile/ +--- +## PdfFileSecurity::set_OutputFile method + + +Sets the output file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileSecurity::set_OutputFile(System::String value) +``` + +## Remarks + + + + Deprecated + + Use Save(outputFile) method for getting facade results. + + +## See Also + +* Class [PdfFileSecurity](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesecurity/set_outputstream/_index.md b/english/cpp/aspose.pdf.facades/pdffilesecurity/set_outputstream/_index.md new file mode 100644 index 0000000000..7fed12c073 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesecurity/set_outputstream/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSecurity::set_OutputStream method +linktitle: set_OutputStream +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSecurity::set_OutputStream method. Sets the output stream in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.facades/pdffilesecurity/set_outputstream/ +--- +## PdfFileSecurity::set_OutputStream method + + +Sets the output stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileSecurity::set_OutputStream(System::SharedPtr value) +``` + +## Remarks + + + + Deprecated + + Use Save(outputStream) method for getting facade results. + + +## See Also + +* Class [PdfFileSecurity](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesecurity/setprivilege/_index.md b/english/cpp/aspose.pdf.facades/pdffilesecurity/setprivilege/_index.md new file mode 100644 index 0000000000..61ec47a2da --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesecurity/setprivilege/_index.md @@ -0,0 +1,99 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSecurity::SetPrivilege method +linktitle: SetPrivilege +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSecurity::SetPrivilege method. Sets Pdf file security with empty user/owner passwords. The owner password will be added by a random string. Throws an exception if process failed in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.facades/pdffilesecurity/setprivilege/ +--- +## PdfFileSecurity::SetPrivilege(System::SharedPtr\) method + + +Sets [Pdf](../../../aspose.pdf/) file security with empty user/owner passwords. The owner password will be added by a random string. Throws an exception if process failed. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileSecurity::SetPrivilege(System::SharedPtr privilege) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| privilege | System::SharedPtr\ | Set privilege. | + +### ReturnValue + +True for success. +## Remarks + + + + + + privilege + + + Set privilege. + + + +## See Also + +* Class [DocumentPrivilege](../../documentprivilege/) +* Class [PdfFileSecurity](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileSecurity::SetPrivilege(System::String, System::String, System::SharedPtr\) method + + +Sets [Pdf](../../../aspose.pdf/) file security with original password. Throws an exception if process failed. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileSecurity::SetPrivilege(System::String userPassword, System::String ownerPassword, System::SharedPtr privilege) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| userPassword | System::String | Original user password. | +| ownerPassword | System::String | Original owner password. | +| privilege | System::SharedPtr\ | Set privilege. | + +### ReturnValue + +True for success. +## Remarks + + + + + + userPassword + + + Original user password. + + + + + ownerPassword + + + Original owner password. + + + + + privilege + + + Set privilege. + + + +## See Also + +* Class [DocumentPrivilege](../../documentprivilege/) +* Class [PdfFileSecurity](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesecurity/trychangepassword/_index.md b/english/cpp/aspose.pdf.facades/pdffilesecurity/trychangepassword/_index.md new file mode 100644 index 0000000000..7933beb169 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesecurity/trychangepassword/_index.md @@ -0,0 +1,221 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSecurity::TryChangePassword method +linktitle: TryChangePassword +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSecurity::TryChangePassword method. Changes the user password and owner password by owner password, keeps the original security settings. The new user password and the new owner password can be null or empty. The owner password will be replaced Does not throw an exception if process failed. with a random string if the new owner password is null or empty in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf.facades/pdffilesecurity/trychangepassword/ +--- +## PdfFileSecurity::TryChangePassword(System::String, System::String, System::String) method + + +Changes the user password and owner password by owner password, keeps the original security settings. The new user password and the new owner password can be null or empty. The owner password will be replaced Does not throw an exception if process failed. with a random string if the new owner password is null or empty. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileSecurity::TryChangePassword(System::String ownerPassword, System::String newUserPassword, System::String newOwnerPassword) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| ownerPassword | System::String | Original Owner password. | +| newUserPassword | System::String | New User password. | +| newOwnerPassword | System::String | New Owner password. | + +### ReturnValue + +True for success,or false. +## Remarks + + + + + + ownerPassword + + + Original Owner password. + + + + + newUserPassword + + + New User password. + + + + + newOwnerPassword + + + New Owner password. + + + +## See Also + +* Class [PdfFileSecurity](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileSecurity::TryChangePassword(System::String, System::String, System::String, System::SharedPtr\, KeySize) method + + +Changes the user password and password by owner password, allows to reset [Pdf](../../../aspose.pdf/) documnent security. The new user password and the new owner password can be null or empty. The owner password will be replaced with a random string if the new owner password is null or empty. Does not throw an exception if process failed. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileSecurity::TryChangePassword(System::String ownerPassword, System::String newUserPassword, System::String newOwnerPassword, System::SharedPtr privilege, KeySize keySize) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| ownerPassword | System::String | Original owner password. | +| newUserPassword | System::String | New User password. | +| newOwnerPassword | System::String | New Owner password. | +| privilege | System::SharedPtr\ | Reset security. | +| keySize | KeySize | [KeySize.x40](../../keysize/) for 40 bits encryption, [KeySize.x128](../../keysize/) for 128 bits encryption and [KeySize.x256](../../keysize/) for 256 bits encryption. | + +### ReturnValue + +True for success, or false. +## Remarks + + + + + + ownerPassword + + + Original owner password. + + + + + newUserPassword + + + New User password. + + + + + newOwnerPassword + + + New Owner password. + + + + + privilege + + + Reset security. + + + + + keySize + + + + KeySize.x40 for 40 bits encryption, KeySize.x128 for 128 bits encryption and KeySize.x256 for 256 bits encryption. + + + +## See Also + +* Class [DocumentPrivilege](../../documentprivilege/) +* Enum [KeySize](../../keysize/) +* Class [PdfFileSecurity](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileSecurity::TryChangePassword(System::String, System::String, System::String, System::SharedPtr\, KeySize, Algorithm) method + + +Changes the user password and password by owner password, allows to reset [Pdf](../../../aspose.pdf/) documnent security. The new user password and the new owner password can be null or empty. The owner password will be replaced with a random string if the new owner password is null or empty. There are 6 possible combinations of KeySize and Algorithm values. However ([KeySize.x40](../../keysize/), [Algorithm.AES](../../algorithm/)) and ([KeySize.x256](../../keysize/), [Algorithm.RC4](../../algorithm/)) are invalid and corresponding exception will be raised if kit encounters this combination. Does not throw an exception if process failed. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileSecurity::TryChangePassword(System::String ownerPassword, System::String newUserPassword, System::String newOwnerPassword, System::SharedPtr privilege, KeySize keySize, Algorithm cipher) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| ownerPassword | System::String | Original owner password. | +| newUserPassword | System::String | New User password. | +| newOwnerPassword | System::String | New Owner password. | +| privilege | System::SharedPtr\ | Reset security. | +| keySize | KeySize | [KeySize.x40](../../keysize/) for 40 bits encryption, [KeySize.x128](../../keysize/) for 128 bits encryption and [KeySize.x256](../../keysize/) for 256 bits encryption. | +| cipher | Algorithm | [Algorithm.AES](../../algorithm/) to encrypt using AES algorithm or [Algorithm.RC4](../../algorithm/) for RC4 encryption. | + +### ReturnValue + +True for success, or false. +## Remarks + + + + + + ownerPassword + + + Original owner password. + + + + + newUserPassword + + + New User password. + + + + + newOwnerPassword + + + New Owner password. + + + + + privilege + + + Reset security. + + + + + keySize + + + + KeySize.x40 for 40 bits encryption, KeySize.x128 for 128 bits encryption and KeySize.x256 for 256 bits encryption. + + + + + cipher + + + + Algorithm.AES to encrypt using AES algorithm or Algorithm.RC4 for RC4 encryption. + + + +## See Also + +* Class [DocumentPrivilege](../../documentprivilege/) +* Enum [KeySize](../../keysize/) +* Enum [Algorithm](../../algorithm/) +* Class [PdfFileSecurity](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesecurity/trydecryptfile/_index.md b/english/cpp/aspose.pdf.facades/pdffilesecurity/trydecryptfile/_index.md new file mode 100644 index 0000000000..6b71ad81ad --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesecurity/trydecryptfile/_index.md @@ -0,0 +1,44 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSecurity::TryDecryptFile method +linktitle: TryDecryptFile +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSecurity::TryDecryptFile method. Decrypts an encrypted Pdf document by owner password. If the document hasn''t owner password, it is allow to use user password. Does not throw an exception if process failed in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.facades/pdffilesecurity/trydecryptfile/ +--- +## PdfFileSecurity::TryDecryptFile method + + +Decrypts an encrypted [Pdf](../../../aspose.pdf/) document by owner password. If the document hasn't owner password, it is allow to use user password. Does not throw an exception if process failed. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileSecurity::TryDecryptFile(System::String ownerPassword) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| ownerPassword | System::String | Owner password. | + +### ReturnValue + +True for success,or false. +## Remarks + + + + + + ownerPassword + + + Owner password. + + + +## See Also + +* Class [PdfFileSecurity](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesecurity/tryencryptfile/_index.md b/english/cpp/aspose.pdf.facades/pdffilesecurity/tryencryptfile/_index.md new file mode 100644 index 0000000000..e572dfe306 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesecurity/tryencryptfile/_index.md @@ -0,0 +1,74 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSecurity::TryEncryptFile method +linktitle: TryEncryptFile +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSecurity::TryEncryptFile method. Encrypts Pdf file with userpassword and ownerpassword and sets the document''s privileges to access. The user password and the owner password can be null or empty. The owner password will be replaced with a random string if the input owner password is null or empty. Does not throw an exception if process failed in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.facades/pdffilesecurity/tryencryptfile/ +--- +## PdfFileSecurity::TryEncryptFile method + + +Encrypts [Pdf](../../../aspose.pdf/) file with userpassword and ownerpassword and sets the document's privileges to access. The user password and the owner password can be null or empty. The owner password will be replaced with a random string if the input owner password is null or empty. Does not throw an exception if process failed. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileSecurity::TryEncryptFile(System::String userPassword, System::String ownerPassword, System::SharedPtr privilege, KeySize keySize) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| userPassword | System::String | User password. | +| ownerPassword | System::String | Owner password. | +| privilege | System::SharedPtr\ | Set privilege. | +| keySize | KeySize | [KeySize.x40](../../keysize/) for 40 bits encryption, [KeySize.x128](../../keysize/) for 128 bits encryption and [KeySize.x256](../../keysize/) for 256 bits encryption. | + +### ReturnValue + +True for success, or false. +## Remarks + + + + + + userPassword + + + User password. + + + + + ownerPassword + + + Owner password. + + + + + privilege + + + Set privilege. + + + + + keySize + + + + KeySize.x40 for 40 bits encryption, KeySize.x128 for 128 bits encryption and KeySize.x256 for 256 bits encryption. + + + +## See Also + +* Class [DocumentPrivilege](../../documentprivilege/) +* Enum [KeySize](../../keysize/) +* Class [PdfFileSecurity](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesecurity/trysetprivilege/_index.md b/english/cpp/aspose.pdf.facades/pdffilesecurity/trysetprivilege/_index.md new file mode 100644 index 0000000000..321af129ac --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesecurity/trysetprivilege/_index.md @@ -0,0 +1,63 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSecurity::TrySetPrivilege method +linktitle: TrySetPrivilege +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSecurity::TrySetPrivilege method. Sets Pdf file security with original password. Does not throw an exception if process failed in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.facades/pdffilesecurity/trysetprivilege/ +--- +## PdfFileSecurity::TrySetPrivilege method + + +Sets [Pdf](../../../aspose.pdf/) file security with original password. Does not throw an exception if process failed. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileSecurity::TrySetPrivilege(System::String userPassword, System::String ownerPassword, System::SharedPtr privilege) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| userPassword | System::String | Original user password. | +| ownerPassword | System::String | Original owner password. | +| privilege | System::SharedPtr\ | Set privilege. | + +### ReturnValue + +True for success, or false. +## Remarks + + + + + + userPassword + + + Original user password. + + + + + ownerPassword + + + Original owner password. + + + + + privilege + + + Set privilege. + + + +## See Also + +* Class [DocumentPrivilege](../../documentprivilege/) +* Class [PdfFileSecurity](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/_index.md new file mode 100644 index 0000000000..9b32fc0104 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/_index.md @@ -0,0 +1,80 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSignature class +linktitle: PdfFileSignature +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSignature class. Represents a class to sign a pdf file with a certificate in C++.' +type: docs +weight: 2500 +url: /cpp/aspose.pdf.facades/pdffilesignature/ +--- +## PdfFileSignature class + + +Represents a class to sign a pdf file with a certificate. + +```cpp +class PdfFileSignature : public Aspose::Pdf::Facades::SaveableFacade +``` + +## Methods + +| Method | Description | +| --- | --- | +| [BindPdf](./bindpdf/)(System::String) override | Binds a [Pdf](../../aspose.pdf/) file for editing. | +| [BindPdf](./bindpdf/)(System::SharedPtr\) override | Binds a [Pdf](../../aspose.pdf/) stream for editing. | +| [BindPdf](../facade/bindpdf/)(System::SharedPtr\) override | Initializes the facade. | +| virtual [BindPdf](../ifacade/bindpdf/)(System::SharedPtr\) | Binds PDF document for editing. | +| [Certify](./certify/)(int32_t, System::String, System::String, System::String, bool, System::Drawing::Rectangle, System::SharedPtr\) | Certify the document with the MDP signature. Such data as signature reason, contact and location must be provided by corresponding properties of the Signature object sig. | +| [Certify](./certify/)(System::String, System::SharedPtr\) | Certify the document with the MDP signature which is placed in already presented signature field. Before signing signature field must be empty, i.e. field must not contain signature dictionary. Thus pdf document already has signature field, you should not supply the place to stamp the signature, corresponding page and rectangle are taken from signature field which is found by signature name (see sigName parameter). | +| [Close](./close/)() override | Closes the facade. | +| [ContainsSignature](./containssignature/)() | Checks if the pdf has a digital signature or not. | +| [ContainsUsageRights](./containsusagerights/)() | Checks if the pdf has a usage rights or not. | +| [CoversWholeDocument](./coverswholedocument/)(System::String) | Checks if the signature covers the whole document. | +| [Dispose](../facade/dispose/)() override | Disposes the facade. | +| [ExtractCertificate](./extractcertificate/)(System::String) | Extracts signature's single X.509 certificate as a stream. | +| [ExtractImage](./extractimage/)(System::String) | Extracts signature's image. | +| [get_Document](../facade/get_document/)() const | Gets the document facade is working on. | +| [get_IsCertified](./get_iscertified/)() | Gets the flag determining whether a document is certified or not. | +| [get_IsLtvEnabled](./get_isltvenabled/)() | Gets the LTV enabled flag. | +| [get_SignatureAppearance](./get_signatureappearance/)() const | Sets or gets a graphic appearance for the signature. Property value represents image file name. | +| [get_SignatureAppearanceStream](./get_signatureappearancestream/)() const | Sets or gets a graphic appearance for the signature. Property value represents image stream. | +| [GetAccessPermissions](./getaccesspermissions/)() | Returns the access permissions value of certified document by the MDP signature type. | +| [GetBlankSignNames](./getblanksignnames/)() | Gets the names of all empty signature fields. | +| [GetContactInfo](./getcontactinfo/)(System::String) | Gets the contact information of a signature. | +| [GetDateTime](./getdatetime/)(System::String) | Gets the signature's datetime. | +| [GetLocation](./getlocation/)(System::String) | Gets the location of a signature. | +| [GetReason](./getreason/)(System::String) | Gets the reason of a signature. | +| [GetRevision](./getrevision/)(System::String) | Gets the revision of a signature. | +| [GetSignerName](./getsignername/)(System::String) | Gets the name of person or organization who signing the pdf document. | +| [GetSignNames](./getsignnames/)(bool) | Gets the names of all not empty signatures. | +| [GetTotalRevision](./gettotalrevision/)() | Gets the toltal revision. | +| [IsContainSignature](./iscontainsignature/)() | Checks if the pdf has a digital signature or not. | +| [IsCoversWholeDocument](./iscoverswholedocument/)(System::String) | Checks if the signature covers the whole document. | +| [PdfFileSignature](./pdffilesignature/)() | The constructor of [PdfFileSignature](./) class. | +| [PdfFileSignature](./pdffilesignature/)(System::String) | The constructor of [PdfFileSignature](./) class. | +| [PdfFileSignature](./pdffilesignature/)(System::String, System::String) | The constructor of [PdfFileSignature](./) class. | +| [PdfFileSignature](./pdffilesignature/)(System::SharedPtr\) | Initializes new [PdfFileSignature](./) object on base of the *document* . | +| [PdfFileSignature](./pdffilesignature/)(System::SharedPtr\, System::String) | Initializes new [PdfFileSignature](./) object on base of the *document* . | +| [RemoveSignature](./removesignature/)(System::String) | Remove the signature according to the name of the signature. | +| [RemoveSignature](./removesignature/)(System::String, bool) | Removes the signature according to the name of the signature. | +| [RemoveSignatures](./removesignatures/)() | Removes all signatures. | +| [RemoveUsageRights](./removeusagerights/)() | Removes the usage rights entry. | +| [Save](./save/)(System::String) override | Saves the result PDF to file. | +| [Save](./save/)(System::SharedPtr\) override | Saves the result PDF to stream. | +| [Save](./save/)() | Save signed pdf file. Output filename must be provided before with the help of coresponding [PdfFileSignature](./) constructor. | +| [set_SignatureAppearance](./set_signatureappearance/)(System::String) | Sets or gets a graphic appearance for the signature. Property value represents image file name. | +| [set_SignatureAppearanceStream](./set_signatureappearancestream/)(System::SharedPtr\) | Sets or gets a graphic appearance for the signature. Property value represents image stream. | +| [SetCertificate](./setcertificate/)(System::String, System::String) | Set certificate file and password for signing routine. | +| [Sign](./sign/)(int32_t, System::String, System::String, System::String, bool, System::Drawing::Rectangle) | Make a signature on the pdf document. | +| [Sign](./sign/)(int32_t, System::String, System::String, System::String, bool, System::Drawing::Rectangle, System::SharedPtr\) | Sign the document with the given type signature. | +| [Sign](./sign/)(int32_t, bool, System::Drawing::Rectangle, System::SharedPtr\) | Sign the document with the given type signature. | +| [Sign](./sign/)(System::String, System::String, System::String, System::String, System::SharedPtr\) | Sign the document with the given type signature which is placed in already presented signature field. Before signing signature field must be empty, i.e. field must not contain signature dictionary. Thus pdf document already has signature field, you should not supply the place to stamp the signature, corresponding page and rectangle are taken from signature field which is found by signature name (see SigName parameter). | +| [Sign](./sign/)(int32_t, System::String, System::String, System::String, System::String, bool, System::Drawing::Rectangle, System::SharedPtr\) | Sign the document with the given type signature which is placed in already presented signature field. Before signing pdf document should already has signature field, corresponding page and rectangle are taken from signature field which is found by signature name (see SigName parameter). | +| [Sign](./sign/)(System::String, System::SharedPtr\) | Sign the document with the given type signature which is placed in already presented signature field. Before signing signature field must be empty, i.e. field must not contain signature dictionary. Thus pdf document already has signature field, you should not supply the place to stamp the signature, corresponding page and rectangle are taken from signature field which is found by signature name (see SigName parameter). Such data as signature reason, contact and location must be provided by corresponding properties of the Signature object sig. | +| [VerifySignature](./verifysignature/)(System::String) | Checks the validity of a signature. | +| [VerifySigned](./verifysigned/)(System::String) | Checks the validity of a signature. | +## See Also + +* Class [SaveableFacade](../saveablefacade/) +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/bindpdf/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/bindpdf/_index.md new file mode 100644 index 0000000000..bd2f36588b --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/bindpdf/_index.md @@ -0,0 +1,71 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSignature::BindPdf method +linktitle: BindPdf +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSignature::BindPdf method. Binds a Pdf file for editing in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.facades/pdffilesignature/bindpdf/ +--- +## PdfFileSignature::BindPdf(System::String) method + + +Binds a [Pdf](../../../aspose.pdf/) file for editing. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileSignature::BindPdf(System::String inputFile) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | The pdf file to be edited. | +## Remarks + + + + + + inputFile + + + The pdf file to be edited. + + + +## See Also + +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileSignature::BindPdf(System::SharedPtr\) method + + +Binds a [Pdf](../../../aspose.pdf/) stream for editing. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileSignature::BindPdf(System::SharedPtr inputStream) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | The pdf stream to be edited. | +## Remarks + + + + + + inputStream + + + The pdf stream to be edited. + + + +## See Also + +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/certify/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/certify/_index.md new file mode 100644 index 0000000000..dfc834a4bd --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/certify/_index.md @@ -0,0 +1,136 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSignature::Certify method +linktitle: Certify +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSignature::Certify method. Certify the document with the MDP signature. Such data as signature reason, contact and location must be provided by corresponding properties of the Signature object sig in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.facades/pdffilesignature/certify/ +--- +## PdfFileSignature::Certify(int32_t, System::String, System::String, System::String, bool, System::Drawing::Rectangle, System::SharedPtr\) method + + +Certify the document with the MDP signature. Such data as signature reason, contact and location must be provided by corresponding properties of the Signature object sig. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileSignature::Certify(int32_t page, System::String SigReason, System::String SigContact, System::String SigLocation, bool visible, System::Drawing::Rectangle annotRect, System::SharedPtr docMdpSignature) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | int32_t | The page on which signature is made. | +| SigReason | System::String | The reason of signature. | +| SigContact | System::String | The contact of signature. | +| SigLocation | System::String | The location of signature. | +| visible | bool | The visiblity of signature. | +| annotRect | System::Drawing::Rectangle | The rect of signature. | +| docMdpSignature | System::SharedPtr\ | The document MDP type of the signature. | +## Remarks + + + + + + page + + + The page on which signature is made. + + + + + SigReason + + + The reason of signature. + + + + + SigContact + + + The contact of signature. + + + + + SigLocation + + + The location of signature. + + + + + visible + + + The visiblity of signature. + + + + + annotRect + + + The rect of signature. + + + + + docMdpSignature + + + The document MDP type of the signature. + + + +## See Also + +* Class [DocMDPSignature](../../../aspose.pdf.forms/docmdpsignature/) +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileSignature::Certify(System::String, System::SharedPtr\) method + + +Certify the document with the MDP signature which is placed in already presented signature field. Before signing signature field must be empty, i.e. field must not contain signature dictionary. Thus pdf document already has signature field, you should not supply the place to stamp the signature, corresponding page and rectangle are taken from signature field which is found by signature name (see sigName parameter). + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileSignature::Certify(System::String sigName, System::SharedPtr docMdpSignature) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| sigName | System::String | The name of the signature field. | +| docMdpSignature | System::SharedPtr\ | The type of the signature, could be [Aspose::Pdf::Forms::PKCS1](../../../aspose.pdf.forms/pkcs1/), [Aspose::Pdf::Forms::PKCS7](../../../aspose.pdf.forms/pkcs7/) and [Aspose::Pdf::Forms::PKCS7Detached](../../../aspose.pdf.forms/pkcs7detached/) | +## Remarks + + + + + + sigName + + + The name of the signature field. + + + + + docMdpSignature + + + The type of the signature, could be Aspose::Pdf::Forms::PKCS1, Aspose::Pdf::Forms::PKCS7 and Aspose::Pdf::Forms::PKCS7Detached + + + +## See Also + +* Class [DocMDPSignature](../../../aspose.pdf.forms/docmdpsignature/) +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/close/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/close/_index.md new file mode 100644 index 0000000000..4870807116 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/close/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSignature::Close method +linktitle: Close +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSignature::Close method. Closes the facade in C++.' +type: docs +weight: 3500 +url: /cpp/aspose.pdf.facades/pdffilesignature/close/ +--- +## PdfFileSignature::Close method + + +Closes the facade. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileSignature::Close() override +``` + +## See Also + +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/containssignature/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/containssignature/_index.md new file mode 100644 index 0000000000..69559107bc --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/containssignature/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSignature::ContainsSignature method +linktitle: ContainsSignature +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSignature::ContainsSignature method. Checks if the pdf has a digital signature or not in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf.facades/pdffilesignature/containssignature/ +--- +## PdfFileSignature::ContainsSignature method + + +Checks if the pdf has a digital signature or not. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileSignature::ContainsSignature() +``` + + +### ReturnValue + +Return a result of bool type. + +## See Also + +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/containsusagerights/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/containsusagerights/_index.md new file mode 100644 index 0000000000..639ecacb2e --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/containsusagerights/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSignature::ContainsUsageRights method +linktitle: ContainsUsageRights +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSignature::ContainsUsageRights method. Checks if the pdf has a usage rights or not in C++.' +type: docs +weight: 1700 +url: /cpp/aspose.pdf.facades/pdffilesignature/containsusagerights/ +--- +## PdfFileSignature::ContainsUsageRights method + + +Checks if the pdf has a usage rights or not. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileSignature::ContainsUsageRights() +``` + + +### ReturnValue + +Returns a result of bool type. + +## See Also + +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/coverswholedocument/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/coverswholedocument/_index.md new file mode 100644 index 0000000000..e7a17e9bef --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/coverswholedocument/_index.md @@ -0,0 +1,44 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSignature::CoversWholeDocument method +linktitle: CoversWholeDocument +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSignature::CoversWholeDocument method. Checks if the signature covers the whole document in C++.' +type: docs +weight: 1900 +url: /cpp/aspose.pdf.facades/pdffilesignature/coverswholedocument/ +--- +## PdfFileSignature::CoversWholeDocument method + + +Checks if the signature covers the whole document. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileSignature::CoversWholeDocument(System::String signName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| signName | System::String | The name of signature. | + +### ReturnValue + +Return a result of bool type. +## Remarks + + + + + + signName + + + The name of signature. + + + +## See Also + +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/extractcertificate/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/extractcertificate/_index.md new file mode 100644 index 0000000000..5bf1f44fe3 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/extractcertificate/_index.md @@ -0,0 +1,44 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSignature::ExtractCertificate method +linktitle: ExtractCertificate +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSignature::ExtractCertificate method. Extracts signature''s single X.509 certificate as a stream in C++.' +type: docs +weight: 3300 +url: /cpp/aspose.pdf.facades/pdffilesignature/extractcertificate/ +--- +## PdfFileSignature::ExtractCertificate method + + +Extracts signature's single X.509 certificate as a stream. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::PdfFileSignature::ExtractCertificate(System::String signName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| signName | System::String | The name of signature. | + +### ReturnValue + +If certificate was found returns X.509 single certificate; otherwise, null. +## Remarks + + + + + + signName + + + The name of signature. + + + +## See Also + +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/extractimage/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/extractimage/_index.md new file mode 100644 index 0000000000..c50bf93943 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/extractimage/_index.md @@ -0,0 +1,44 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSignature::ExtractImage method +linktitle: ExtractImage +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSignature::ExtractImage method. Extracts signature''s image in C++.' +type: docs +weight: 3200 +url: /cpp/aspose.pdf.facades/pdffilesignature/extractimage/ +--- +## PdfFileSignature::ExtractImage method + + +Extracts signature's image. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::PdfFileSignature::ExtractImage(System::String signName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| signName | System::String | The name of signature. | + +### ReturnValue + +If image was successfully found than returns stream object; otherwise, null. +## Remarks + + + + + + signName + + + The name of signature. + + + +## See Also + +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/get_iscertified/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/get_iscertified/_index.md new file mode 100644 index 0000000000..1b0ed86c13 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/get_iscertified/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSignature::get_IsCertified method +linktitle: get_IsCertified +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSignature::get_IsCertified method. Gets the flag determining whether a document is certified or not in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.facades/pdffilesignature/get_iscertified/ +--- +## PdfFileSignature::get_IsCertified method + + +Gets the flag determining whether a document is certified or not. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileSignature::get_IsCertified() +``` + +## See Also + +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/get_isltvenabled/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/get_isltvenabled/_index.md new file mode 100644 index 0000000000..5114c4b7b4 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/get_isltvenabled/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSignature::get_IsLtvEnabled method +linktitle: get_IsLtvEnabled +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSignature::get_IsLtvEnabled method. Gets the LTV enabled flag in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.facades/pdffilesignature/get_isltvenabled/ +--- +## PdfFileSignature::get_IsLtvEnabled method + + +Gets the LTV enabled flag. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileSignature::get_IsLtvEnabled() +``` + +## See Also + +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/get_signatureappearance/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/get_signatureappearance/_index.md new file mode 100644 index 0000000000..6c4516119c --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/get_signatureappearance/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSignature::get_SignatureAppearance method +linktitle: get_SignatureAppearance +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSignature::get_SignatureAppearance method. Sets or gets a graphic appearance for the signature. Property value represents image file name in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.facades/pdffilesignature/get_signatureappearance/ +--- +## PdfFileSignature::get_SignatureAppearance method + + +Sets or gets a graphic appearance for the signature. Property value represents image file name. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::PdfFileSignature::get_SignatureAppearance() const +``` + +## See Also + +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/get_signatureappearancestream/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/get_signatureappearancestream/_index.md new file mode 100644 index 0000000000..887a1ed14a --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/get_signatureappearancestream/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSignature::get_SignatureAppearanceStream method +linktitle: get_SignatureAppearanceStream +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSignature::get_SignatureAppearanceStream method. Sets or gets a graphic appearance for the signature. Property value represents image stream in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.facades/pdffilesignature/get_signatureappearancestream/ +--- +## PdfFileSignature::get_SignatureAppearanceStream method + + +Sets or gets a graphic appearance for the signature. Property value represents image stream. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::PdfFileSignature::get_SignatureAppearanceStream() const +``` + +## See Also + +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/getaccesspermissions/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/getaccesspermissions/_index.md new file mode 100644 index 0000000000..17f20abfd8 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/getaccesspermissions/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSignature::GetAccessPermissions method +linktitle: GetAccessPermissions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSignature::GetAccessPermissions method. Returns the access permissions value of certified document by the MDP signature type in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.facades/pdffilesignature/getaccesspermissions/ +--- +## PdfFileSignature::GetAccessPermissions method + + +Returns the access permissions value of certified document by the MDP signature type. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Forms::DocMDPAccessPermissions Aspose::Pdf::Facades::PdfFileSignature::GetAccessPermissions() +``` + + +### ReturnValue + +If the document is being certified, than returns access permissions value; otherwise, +is thrown. + +## See Also + +* Enum [DocMDPAccessPermissions](../../../aspose.pdf.forms/docmdpaccesspermissions/) +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/getblanksignnames/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/getblanksignnames/_index.md new file mode 100644 index 0000000000..7abb52783b --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/getblanksignnames/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSignature::GetBlankSignNames method +linktitle: GetBlankSignNames +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSignature::GetBlankSignNames method. Gets the names of all empty signature fields in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.facades/pdffilesignature/getblanksignnames/ +--- +## PdfFileSignature::GetBlankSignNames method + + +Gets the names of all empty signature fields. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr> Aspose::Pdf::Facades::PdfFileSignature::GetBlankSignNames() +``` + + +### ReturnValue + +Return an IList. + +## See Also + +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/getcontactinfo/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/getcontactinfo/_index.md new file mode 100644 index 0000000000..0e7fc80753 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/getcontactinfo/_index.md @@ -0,0 +1,44 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSignature::GetContactInfo method +linktitle: GetContactInfo +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSignature::GetContactInfo method. Gets the contact information of a signature in C++.' +type: docs +weight: 3000 +url: /cpp/aspose.pdf.facades/pdffilesignature/getcontactinfo/ +--- +## PdfFileSignature::GetContactInfo method + + +Gets the contact information of a signature. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::PdfFileSignature::GetContactInfo(System::String signName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| signName | System::String | The name of signature. | + +### ReturnValue + +Returns a result of string type. +## Remarks + + + + + + signName + + + The name of signature. + + + +## See Also + +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/getdatetime/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/getdatetime/_index.md new file mode 100644 index 0000000000..d0aab5b131 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/getdatetime/_index.md @@ -0,0 +1,44 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSignature::GetDateTime method +linktitle: GetDateTime +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSignature::GetDateTime method. Gets the signature''s datetime in C++.' +type: docs +weight: 2700 +url: /cpp/aspose.pdf.facades/pdffilesignature/getdatetime/ +--- +## PdfFileSignature::GetDateTime method + + +Gets the signature's datetime. + +```cpp +ASPOSE_PDF_SHARED_API System::DateTime Aspose::Pdf::Facades::PdfFileSignature::GetDateTime(System::String signName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| signName | System::String | The name of signature. | + +### ReturnValue + +Return the result of DateTime type. +## Remarks + + + + + + signName + + + The name of signature. + + + +## See Also + +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/getlocation/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/getlocation/_index.md new file mode 100644 index 0000000000..ce543c5b4c --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/getlocation/_index.md @@ -0,0 +1,44 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSignature::GetLocation method +linktitle: GetLocation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSignature::GetLocation method. Gets the location of a signature in C++.' +type: docs +weight: 2900 +url: /cpp/aspose.pdf.facades/pdffilesignature/getlocation/ +--- +## PdfFileSignature::GetLocation method + + +Gets the location of a signature. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::PdfFileSignature::GetLocation(System::String signName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| signName | System::String | The name of signature. | + +### ReturnValue + +Returns a result of string type. +## Remarks + + + + + + signName + + + The name of signature. + + + +## See Also + +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/getreason/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/getreason/_index.md new file mode 100644 index 0000000000..4877e31672 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/getreason/_index.md @@ -0,0 +1,44 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSignature::GetReason method +linktitle: GetReason +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSignature::GetReason method. Gets the reason of a signature in C++.' +type: docs +weight: 2800 +url: /cpp/aspose.pdf.facades/pdffilesignature/getreason/ +--- +## PdfFileSignature::GetReason method + + +Gets the reason of a signature. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::PdfFileSignature::GetReason(System::String signName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| signName | System::String | The name of signature. | + +### ReturnValue + +Returns a result of string type. +## Remarks + + + + + + signName + + + The name of signature. + + + +## See Also + +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/getrevision/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/getrevision/_index.md new file mode 100644 index 0000000000..38b967cb5c --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/getrevision/_index.md @@ -0,0 +1,44 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSignature::GetRevision method +linktitle: GetRevision +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSignature::GetRevision method. Gets the revision of a signature in C++.' +type: docs +weight: 2000 +url: /cpp/aspose.pdf.facades/pdffilesignature/getrevision/ +--- +## PdfFileSignature::GetRevision method + + +Gets the revision of a signature. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfFileSignature::GetRevision(System::String signName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| signName | System::String | The name of signature. | + +### ReturnValue + +Return the number of signature revision. +## Remarks + + + + + + signName + + + The name of signature. + + + +## See Also + +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/getsignername/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/getsignername/_index.md new file mode 100644 index 0000000000..4ffa559d85 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/getsignername/_index.md @@ -0,0 +1,44 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSignature::GetSignerName method +linktitle: GetSignerName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSignature::GetSignerName method. Gets the name of person or organization who signing the pdf document in C++.' +type: docs +weight: 2600 +url: /cpp/aspose.pdf.facades/pdffilesignature/getsignername/ +--- +## PdfFileSignature::GetSignerName method + + +Gets the name of person or organization who signing the pdf document. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::PdfFileSignature::GetSignerName(System::String signName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| signName | System::String | The name of signature. | + +### ReturnValue + +Returns the result of the signer's name. +## Remarks + + + + + + signName + + + The name of signature. + + + +## See Also + +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/getsignnames/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/getsignnames/_index.md new file mode 100644 index 0000000000..a50d9d79fe --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/getsignnames/_index.md @@ -0,0 +1,44 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSignature::GetSignNames method +linktitle: GetSignNames +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSignature::GetSignNames method. Gets the names of all not empty signatures in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.facades/pdffilesignature/getsignnames/ +--- +## PdfFileSignature::GetSignNames method + + +Gets the names of all not empty signatures. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr> Aspose::Pdf::Facades::PdfFileSignature::GetSignNames(bool onlyActive=true) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| onlyActive | bool | if true, return only active signatures; otherwise, return all signatures. | + +### ReturnValue + +Return an IList. +## Remarks + + + + + + onlyActive + + + if true, return only active signatures; otherwise, return all signatures. + + + +## See Also + +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/gettotalrevision/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/gettotalrevision/_index.md new file mode 100644 index 0000000000..f867f231ca --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/gettotalrevision/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSignature::GetTotalRevision method +linktitle: GetTotalRevision +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSignature::GetTotalRevision method. Gets the toltal revision in C++.' +type: docs +weight: 2100 +url: /cpp/aspose.pdf.facades/pdffilesignature/gettotalrevision/ +--- +## PdfFileSignature::GetTotalRevision method + + +Gets the toltal revision. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfFileSignature::GetTotalRevision() +``` + + +### ReturnValue + +Return the total number of signature revision. + +## See Also + +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/iscontainsignature/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/iscontainsignature/_index.md new file mode 100644 index 0000000000..418496fad8 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/iscontainsignature/_index.md @@ -0,0 +1,36 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSignature::IsContainSignature method +linktitle: IsContainSignature +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSignature::IsContainSignature method. Checks if the pdf has a digital signature or not in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.facades/pdffilesignature/iscontainsignature/ +--- +## PdfFileSignature::IsContainSignature method + + +Checks if the pdf has a digital signature or not. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileSignature::IsContainSignature() +``` + + +### ReturnValue + +Return a result of bool type. +## Remarks + + + + Deprecated + + ContainsSignature should be used instead of IsContainSignature. + + +## See Also + +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/iscoverswholedocument/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/iscoverswholedocument/_index.md new file mode 100644 index 0000000000..34495b434e --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/iscoverswholedocument/_index.md @@ -0,0 +1,49 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSignature::IsCoversWholeDocument method +linktitle: IsCoversWholeDocument +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSignature::IsCoversWholeDocument method. Checks if the signature covers the whole document in C++.' +type: docs +weight: 1800 +url: /cpp/aspose.pdf.facades/pdffilesignature/iscoverswholedocument/ +--- +## PdfFileSignature::IsCoversWholeDocument method + + +Checks if the signature covers the whole document. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileSignature::IsCoversWholeDocument(System::String signName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| signName | System::String | The name of signature. | + +### ReturnValue + +Return a result of bool type. +## Remarks + + + + Deprecated + + CoversWholeDocument should be used instead of IsCoversWholeDocument. + + + + + signName + + + The name of signature. + + + +## See Also + +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/pdffilesignature/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/pdffilesignature/_index.md new file mode 100644 index 0000000000..7ad90c2310 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/pdffilesignature/_index.md @@ -0,0 +1,184 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSignature::PdfFileSignature constructor +linktitle: PdfFileSignature +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSignature::PdfFileSignature constructor. The constructor of PdfFileSignature class in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.facades/pdffilesignature/pdffilesignature/ +--- +## PdfFileSignature::PdfFileSignature() constructor + + +The constructor of [PdfFileSignature](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfFileSignature::PdfFileSignature() +``` + +## See Also + +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileSignature::PdfFileSignature(System::String) constructor + + +The constructor of [PdfFileSignature](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfFileSignature::PdfFileSignature(System::String inputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | The input file for signature. | +## Remarks + + + + Deprecated + + Use another constructor for instance initialization. + + + + + inputFile + + + The input file for signature. + + + +## See Also + +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileSignature::PdfFileSignature(System::String, System::String) constructor + + +The constructor of [PdfFileSignature](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfFileSignature::PdfFileSignature(System::String inputFile, System::String outputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | The input file for signature. | +| outputFile | System::String | The output file. | +## Remarks + + + + Deprecated + + Use another constructor for instance initialization. + + + + + inputFile + + + The input file for signature. + + + + + outputFile + + + The output file. + + + +## See Also + +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileSignature::PdfFileSignature(System::SharedPtr\) constructor + + +Initializes new [PdfFileSignature](../) object on base of the *document* . + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfFileSignature::PdfFileSignature(System::SharedPtr document) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | [Pdf](../../../aspose.pdf/) document. | +## Remarks + + + + + + document + + + + Pdf document. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileSignature::PdfFileSignature(System::SharedPtr\, System::String) constructor + + +Initializes new [PdfFileSignature](../) object on base of the *document* . + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfFileSignature::PdfFileSignature(System::SharedPtr document, System::String outputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | [Pdf](../../../aspose.pdf/) document. | +| outputFile | System::String | The output file. | +## Remarks + + + + Deprecated + + Use another constructor for instance initialization. + + + + + document + + + + Pdf document. + + + + + outputFile + + + The output file. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/removesignature/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/removesignature/_index.md new file mode 100644 index 0000000000..ce14289194 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/removesignature/_index.md @@ -0,0 +1,80 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSignature::RemoveSignature method +linktitle: RemoveSignature +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSignature::RemoveSignature method. Remove the signature according to the name of the signature in C++.' +type: docs +weight: 2300 +url: /cpp/aspose.pdf.facades/pdffilesignature/removesignature/ +--- +## PdfFileSignature::RemoveSignature(System::String) method + + +Remove the signature according to the name of the signature. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileSignature::RemoveSignature(System::String signName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| signName | System::String | The name of signature. | +## Remarks + + + + + + signName + + + The name of signature. + + + +## See Also + +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileSignature::RemoveSignature(System::String, bool) method + + +Removes the signature according to the name of the signature. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileSignature::RemoveSignature(System::String signName, bool removeField) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| signName | System::String | The name of signature. | +| removeField | bool | If set to true, than removes both of signature and field from document; otherwise, signature only. | +## Remarks + + + + + + signName + + + The name of signature. + + + + + removeField + + + If set to true, than removes both of signature and field from document; otherwise, signature only. + + + +## See Also + +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/removesignatures/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/removesignatures/_index.md new file mode 100644 index 0000000000..55e4b59ea9 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/removesignatures/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSignature::RemoveSignatures method +linktitle: RemoveSignatures +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSignature::RemoveSignatures method. Removes all signatures in C++.' +type: docs +weight: 2400 +url: /cpp/aspose.pdf.facades/pdffilesignature/removesignatures/ +--- +## PdfFileSignature::RemoveSignatures method + + +Removes all signatures. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileSignature::RemoveSignatures() +``` + +## See Also + +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/removeusagerights/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/removeusagerights/_index.md new file mode 100644 index 0000000000..be96662a59 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/removeusagerights/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSignature::RemoveUsageRights method +linktitle: RemoveUsageRights +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSignature::RemoveUsageRights method. Removes the usage rights entry in C++.' +type: docs +weight: 2200 +url: /cpp/aspose.pdf.facades/pdffilesignature/removeusagerights/ +--- +## PdfFileSignature::RemoveUsageRights method + + +Removes the usage rights entry. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileSignature::RemoveUsageRights() +``` + +## See Also + +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/save/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/save/_index.md new file mode 100644 index 0000000000..c1e31e48c0 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/save/_index.md @@ -0,0 +1,94 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSignature::Save method +linktitle: Save +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSignature::Save method. Saves the result PDF to file in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.facades/pdffilesignature/save/ +--- +## PdfFileSignature::Save(System::String) method + + +Saves the result PDF to file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileSignature::Save(System::String outputFile) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputFile | System::String | Output pdf file. | +## Remarks + + + + + + outputFile + + + Output pdf file. + + + +## See Also + +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileSignature::Save(System::SharedPtr\) method + + +Saves the result PDF to stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileSignature::Save(System::SharedPtr outputStream) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputStream | System::SharedPtr\ | Output pdf stream. | +## Remarks + + + + + + outputStream + + + Output pdf stream. + + + +## See Also + +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileSignature::Save() method + + +Save signed pdf file. Output filename must be provided before with the help of coresponding [PdfFileSignature](../) constructor. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileSignature::Save() +``` + +## Remarks + + + + Deprecated + + Please, use Save method with parameter. + + +## See Also + +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/set_signatureappearance/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/set_signatureappearance/_index.md new file mode 100644 index 0000000000..e6c3f2adb1 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/set_signatureappearance/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSignature::set_SignatureAppearance method +linktitle: set_SignatureAppearance +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSignature::set_SignatureAppearance method. Sets or gets a graphic appearance for the signature. Property value represents image file name in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.facades/pdffilesignature/set_signatureappearance/ +--- +## PdfFileSignature::set_SignatureAppearance method + + +Sets or gets a graphic appearance for the signature. Property value represents image file name. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileSignature::set_SignatureAppearance(System::String value) +``` + +## See Also + +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/set_signatureappearancestream/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/set_signatureappearancestream/_index.md new file mode 100644 index 0000000000..74cde221c8 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/set_signatureappearancestream/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSignature::set_SignatureAppearanceStream method +linktitle: set_SignatureAppearanceStream +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSignature::set_SignatureAppearanceStream method. Sets or gets a graphic appearance for the signature. Property value represents image stream in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.facades/pdffilesignature/set_signatureappearancestream/ +--- +## PdfFileSignature::set_SignatureAppearanceStream method + + +Sets or gets a graphic appearance for the signature. Property value represents image stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileSignature::set_SignatureAppearanceStream(System::SharedPtr value) +``` + +## See Also + +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/setcertificate/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/setcertificate/_index.md new file mode 100644 index 0000000000..991cab54d7 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/setcertificate/_index.md @@ -0,0 +1,49 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSignature::SetCertificate method +linktitle: SetCertificate +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSignature::SetCertificate method. Set certificate file and password for signing routine in C++.' +type: docs +weight: 3400 +url: /cpp/aspose.pdf.facades/pdffilesignature/setcertificate/ +--- +## PdfFileSignature::SetCertificate method + + +Set certificate file and password for signing routine. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileSignature::SetCertificate(System::String pfx, System::String pass) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pfx | System::String | PKCS #12 certificate file. | +| pass | System::String | Password to get access for the certificate private key. | +## Remarks + + + + + + pfx + + + PKCS #12 certificate file. + + + + + pass + + + Password to get access for the certificate private key. + + + +## See Also + +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/sign/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/sign/_index.md new file mode 100644 index 0000000000..1b179522bd --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/sign/_index.md @@ -0,0 +1,438 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSignature::Sign method +linktitle: Sign +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSignature::Sign method. Make a signature on the pdf document in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.facades/pdffilesignature/sign/ +--- +## PdfFileSignature::Sign(int32_t, System::String, System::String, System::String, bool, System::Drawing::Rectangle) method + + +Make a signature on the pdf document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileSignature::Sign(int32_t page, System::String SigReason, System::String SigContact, System::String SigLocation, bool visible, System::Drawing::Rectangle annotRect) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | int32_t | The page number on which signature is made. | +| SigReason | System::String | The reason of signature. | +| SigContact | System::String | The contact of signature. | +| SigLocation | System::String | The location of signature. | +| visible | bool | The visiblity of signature. | +| annotRect | System::Drawing::Rectangle | The rect of signature. | +## Remarks + + + + + + page + + + The page number on which signature is made. + + + + + SigReason + + + The reason of signature. + + + + + SigContact + + + The contact of signature. + + + + + SigLocation + + + The location of signature. + + + + + visible + + + The visiblity of signature. + + + + + annotRect + + + The rect of signature. + + + +## See Also + +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileSignature::Sign(int32_t, System::String, System::String, System::String, bool, System::Drawing::Rectangle, System::SharedPtr\) method + + +Sign the document with the given type signature. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileSignature::Sign(int32_t page, System::String SigReason, System::String SigContact, System::String SigLocation, bool visible, System::Drawing::Rectangle annotRect, System::SharedPtr sig) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | int32_t | The page number on which signature is made. | +| SigReason | System::String | The reason of signature. | +| SigContact | System::String | The contact of signature. | +| SigLocation | System::String | The location of signature. | +| visible | bool | The visiblity of signature. | +| annotRect | System::Drawing::Rectangle | The rect of signature. | +| sig | System::SharedPtr\ | The type of the signature, could be PKCS1, PKCS7 and PKCS7Detached. | +## Remarks + + + + + + page + + + The page number on which signature is made. + + + + + SigReason + + + The reason of signature. + + + + + SigContact + + + The contact of signature. + + + + + SigLocation + + + The location of signature. + + + + + visible + + + The visiblity of signature. + + + + + annotRect + + + The rect of signature. + + + + + sig + + + The type of the signature, could be PKCS1, PKCS7 and PKCS7Detached. + + + +## See Also + +* Class [Signature](../../../aspose.pdf.forms/signature/) +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileSignature::Sign(int32_t, bool, System::Drawing::Rectangle, System::SharedPtr\) method + + +Sign the document with the given type signature. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileSignature::Sign(int32_t page, bool visible, System::Drawing::Rectangle annotRect, System::SharedPtr sig) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | int32_t | The page number on which signature is made. | +| visible | bool | The visiblity of signature. | +| annotRect | System::Drawing::Rectangle | The rect of signature. | +| sig | System::SharedPtr\ | The type of the signature, could be PKCS1, PKCS7 and PKCS7Detached. Such data as signature reason, contact and location must be already present in this object (see corresponding properties). | +## Remarks + + + + + + page + + + The page number on which signature is made. + + + + + visible + + + The visiblity of signature. + + + + + annotRect + + + The rect of signature. + + + + + sig + + + The type of the signature, could be PKCS1, PKCS7 and PKCS7Detached. Such data as signature reason, contact and location must be already present in this object (see corresponding properties). + + + +## See Also + +* Class [Signature](../../../aspose.pdf.forms/signature/) +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileSignature::Sign(System::String, System::String, System::String, System::String, System::SharedPtr\) method + + +Sign the document with the given type signature which is placed in already presented signature field. Before signing signature field must be empty, i.e. field must not contain signature dictionary. Thus pdf document already has signature field, you should not supply the place to stamp the signature, corresponding page and rectangle are taken from signature field which is found by signature name (see SigName parameter). + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileSignature::Sign(System::String SigName, System::String SigReason, System::String SigContact, System::String SigLocation, System::SharedPtr sig) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| SigName | System::String | The name of the signature field. | +| SigReason | System::String | The reason of signature. | +| SigContact | System::String | The contact of signature. | +| SigLocation | System::String | The location of signature. | +| sig | System::SharedPtr\ | The type of the signature, could be PKCS1, PKCS7 and PKCS7Detached. | +## Remarks + + + + + + SigName + + + The name of the signature field. + + + + + SigReason + + + The reason of signature. + + + + + SigContact + + + The contact of signature. + + + + + SigLocation + + + The location of signature. + + + + + sig + + + The type of the signature, could be PKCS1, PKCS7 and PKCS7Detached. + + + +## See Also + +* Class [Signature](../../../aspose.pdf.forms/signature/) +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileSignature::Sign(int32_t, System::String, System::String, System::String, System::String, bool, System::Drawing::Rectangle, System::SharedPtr\) method + + +Sign the document with the given type signature which is placed in already presented signature field. Before signing pdf document should already has signature field, corresponding page and rectangle are taken from signature field which is found by signature name (see SigName parameter). + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileSignature::Sign(int32_t page, System::String SigName, System::String SigReason, System::String SigContact, System::String SigLocation, bool visible, System::Drawing::Rectangle annotRect, System::SharedPtr sig) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | int32_t | The page number on which signature is made. | +| SigName | System::String | The name of the signature field. | +| SigReason | System::String | The reason of signature. | +| SigContact | System::String | The contact of signature. | +| SigLocation | System::String | The location of signature. | +| visible | bool | The visiblity of signature. | +| annotRect | System::Drawing::Rectangle | The rect of signature. | +| sig | System::SharedPtr\ | The type of the signature, could be PKCS1, PKCS7 and PKCS7Detached. | +## Remarks + + + + + + page + + + The page number on which signature is made. + + + + + + + SigName + + + The name of the signature field. + + + + + SigReason + + + The reason of signature. + + + + + SigContact + + + The contact of signature. + + + + + SigLocation + + + The location of signature. + + + + + + + visible + + + The visiblity of signature. + + + + + annotRect + + + The rect of signature. + + + + + sig + + + The type of the signature, could be PKCS1, PKCS7 and PKCS7Detached. + + + +## See Also + +* Class [Signature](../../../aspose.pdf.forms/signature/) +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileSignature::Sign(System::String, System::SharedPtr\) method + + +Sign the document with the given type signature which is placed in already presented signature field. Before signing signature field must be empty, i.e. field must not contain signature dictionary. Thus pdf document already has signature field, you should not supply the place to stamp the signature, corresponding page and rectangle are taken from signature field which is found by signature name (see SigName parameter). Such data as signature reason, contact and location must be provided by corresponding properties of the Signature object sig. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileSignature::Sign(System::String SigName, System::SharedPtr sig) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| SigName | System::String | The name of the signature field. | +| sig | System::SharedPtr\ | The type of the signature, could be PKCS1 (Pkcs1Signature object), PKCS7 and PKCS7 detached (Pkcs7Signature object) | +## Remarks + + + + + + SigName + + + The name of the signature field. + + + + + sig + + + The type of the signature, could be PKCS1 (Pkcs1Signature object), PKCS7 and PKCS7 detached (Pkcs7Signature object) + + + +## See Also + +* Class [Signature](../../../aspose.pdf.forms/signature/) +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/verifysignature/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/verifysignature/_index.md new file mode 100644 index 0000000000..0994558fbe --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/verifysignature/_index.md @@ -0,0 +1,44 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSignature::VerifySignature method +linktitle: VerifySignature +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSignature::VerifySignature method. Checks the validity of a signature in C++.' +type: docs +weight: 3100 +url: /cpp/aspose.pdf.facades/pdffilesignature/verifysignature/ +--- +## PdfFileSignature::VerifySignature method + + +Checks the validity of a signature. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileSignature::VerifySignature(System::String signName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| signName | System::String | The name of signature. | + +### ReturnValue + +Return a result of bool type. +## Remarks + + + + + + signName + + + The name of signature. + + + +## See Also + +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/verifysigned/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/verifysigned/_index.md new file mode 100644 index 0000000000..b30ee0c5a2 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/verifysigned/_index.md @@ -0,0 +1,44 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSignature::VerifySigned method +linktitle: VerifySigned +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSignature::VerifySigned method. Checks the validity of a signature in C++.' +type: docs +weight: 2500 +url: /cpp/aspose.pdf.facades/pdffilesignature/verifysigned/ +--- +## PdfFileSignature::VerifySigned method + + +Checks the validity of a signature. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileSignature::VerifySigned(System::String signName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| signName | System::String | The name of signature. | + +### ReturnValue + +Return a result of bool type. +## Remarks + + + + + + signName + + + The name of signature. + + + +## See Also + +* Class [PdfFileSignature](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/_index.md new file mode 100644 index 0000000000..4b648fe0fd --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/_index.md @@ -0,0 +1,110 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp class +linktitle: PdfFileStamp +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp class. Class for adding stamps (watermark or background) to PDF files in C++.' +type: docs +weight: 2600 +url: /cpp/aspose.pdf.facades/pdffilestamp/ +--- +## PdfFileStamp class + + +Class for adding stamps (watermark or background) to PDF files. + +```cpp +class PdfFileStamp : public Aspose::Pdf::Facades::SaveableFacade +``` + +## Methods + +| Method | Description | +| --- | --- | +| [AddFooter](./addfooter/)(System::SharedPtr\, float) | Adds footer to the pages of the document. | +| [AddFooter](./addfooter/)(System::SharedPtr\, float, float, float) | Adds footer to the pages of the document. | +| [AddFooter](./addfooter/)(System::String, float) | Adds image as footer to the pages of the document. | +| [AddFooter](./addfooter/)(System::String, float, float, float) | Adds image as footer of the pages. | +| [AddFooter](./addfooter/)(System::SharedPtr\, float) | Adds image as footer of the page. | +| [AddFooter](./addfooter/)(System::SharedPtr\, float, float, float) | Adds image as footer of the page. | +| [AddHeader](./addheader/)(System::SharedPtr\, float) | Adds header to the page. | +| [AddHeader](./addheader/)(System::SharedPtr\, float, float, float) | Adds header to the pages of file. | +| [AddHeader](./addheader/)(System::String, float) | Adds image as header to the pages of the file. | +| [AddHeader](./addheader/)(System::String, float, float, float) | Adds image as header on the pages. | +| [AddHeader](./addheader/)(System::SharedPtr\, float) | Adds image as header on the pages. | +| [AddHeader](./addheader/)(System::SharedPtr\, float, float, float) | Adds image at the top of the page. | +| [AddPageNumber](./addpagenumber/)(System::String) | Add page number to file. [Page](../../aspose.pdf/page/) number text may contain # sign which will be replaced with number of the page. [Page](../../aspose.pdf/page/) number is placed in the bottom of the page centered horizontally. | +| [AddPageNumber](./addpagenumber/)(System::SharedPtr\) | Adds page number to the page. [Page](../../aspose.pdf/page/) number may contain # sign which will be replaced with page number. [Page](../../aspose.pdf/page/) number is placed in the bottom of the page centered horizontally. | +| [AddPageNumber](./addpagenumber/)(System::String, int32_t, float, float, float, float) | Adds page number to the pages of document. | +| [AddPageNumber](./addpagenumber/)(System::String, float, float) | Adds page number at the specified position on the page. | +| [AddPageNumber](./addpagenumber/)(System::SharedPtr\, int32_t, float, float, float, float) | Adds page number to the pages of document. | +| [AddPageNumber](./addpagenumber/)(System::SharedPtr\, float, float) | Adds page number at the specified position on the page. | +| [AddPageNumber](./addpagenumber/)(System::String, int32_t) | Adds page number to the pages. | +| [AddPageNumber](./addpagenumber/)(System::SharedPtr\, int32_t) | Adds page number to the pages. | +| [AddStamp](./addstamp/)(System::SharedPtr\) | Adds stamp to the file. | +| [BindPdf](../facade/bindpdf/)(System::String) override | Initializes the facade. | +| [BindPdf](../facade/bindpdf/)(System::SharedPtr\) override | Initializes the facade. | +| [BindPdf](../facade/bindpdf/)(System::SharedPtr\) override | Initializes the facade. | +| virtual [BindPdf](../ifacade/bindpdf/)(System::SharedPtr\) | Binds PDF document for editing. | +| [Close](./close/)() override | Closes opened files and saves changes. Warning. If input or output streams are specified they are not closed by [Close()](./close/) method. | +| [Dispose](../facade/dispose/)() override | Disposes the facade. | +| [get_AttachmentName](./get_attachmentname/)() const | Gets name of attachment when result of operation is stored into HttpResponse objects as attachment. | +| [get_ContentDisposition](./get_contentdisposition/)() const | Gets how content will be stored when result of operation is stored into HttpResponse object. Possible value: inline / attachment. Default: inline. | +| [get_Document](../facade/get_document/)() const | Gets the document facade is working on. | +| [get_InputFile](./get_inputfile/)() const | Gets name and path of input file. | +| [get_InputStream](./get_inputstream/)() const | Gets input stream. | +| [get_KeepSecurity](./get_keepsecurity/)() const | Keeps security if true. (This feature will be implemented in next versions). | +| [get_NumberingStyle](./get_numberingstyle/)() const | Gets pabge numbering style. Possible values: NumeralsArabic, NumeralsRomanUppercase, NumeralsRomanLowercase, LettersAppercase, LettersLowercase. | +| [get_OptimizeSize](./get_optimizesize/)() const | Gets optimization flag. Equal resource streams in resultant file are merged into one PDF object if this flag set. This allows to decrease resultant file size but may cause slower execution and larger memory requirements. Default value: false. | +| [get_OutputFile](./get_outputfile/)() const | Gets name and path of output file. | +| [get_OutputStream](./get_outputstream/)() const | Gets output stream. | +| [get_PageHeight](./get_pageheight/)() | Gets height of first page in souorce file. | +| [get_PageNumberRotation](./get_pagenumberrotation/)() | Gets rotation of page number. Rotation is in degrees. Default is 0. | +| [get_PageWidth](./get_pagewidth/)() | Gets width of first page in input file. | +| [get_Response](./get_response/)() const | Gets Response object where result of operation will be stored. | +| [get_SaveOptions](./get_saveoptions/)() const | Gets save options when result is stored as HttpResponse. Default value: [PdfSaveOptions](../../aspose.pdf/pdfsaveoptions/). | +| [get_StampId](./get_stampid/)() const | [Stamp](../stamp/) ID of next added stamp (incluiding page headers/hooters/page numbers). | +| [get_StartingNumber](./get_startingnumber/)() const | Gets starting number for first page in input file. Next pages will be numbered starting from this value. For example if StartingNumber is set to 100, document pages will have numbers 100, 101, 102... | +| [PdfFileStamp](./pdffilestamp/)(System::String, System::String) | Constructor for [PdfFileStamp](./). | +| [PdfFileStamp](./pdffilestamp/)(System::SharedPtr\, System::SharedPtr\) | Constructor for [PdfFileStamp](./). | +| [PdfFileStamp](./pdffilestamp/)(System::String, System::String, bool) | Constructor for [PdfFileStamp](./). | +| [PdfFileStamp](./pdffilestamp/)(System::SharedPtr\, System::SharedPtr\, bool) | Constructor of [PdfFileStamp](./). | +| [PdfFileStamp](./pdffilestamp/)() | Constructor of the [PdfFileStamp](./). Input file and output file may be specified via corresponding properties. | +| [PdfFileStamp](./pdffilestamp/)(System::SharedPtr\) | Initializes new [PdfFileStamp](./) object on base of the *document* . | +| [PdfFileStamp](./pdffilestamp/)(System::SharedPtr\, System::String) | Initializes new [PdfFileStamp](./) object on base of the *document* . | +| [PdfFileStamp](./pdffilestamp/)(System::SharedPtr\, System::SharedPtr\) | Initializes new [PdfFileStamp](./) object on base of the *document* . | +| [PdfFileStamp](./pdffilestamp/)(System::SharedPtr\, System::SharedPtr\) | Creates [PdfFileStamp](./) which will save result into HttpResponse object. | +| [PdfFileStamp](./pdffilestamp/)(System::String, System::SharedPtr\) | Creates [PdfFileStamp](./) which will save result into HttpResponse object. | +| [Save](./save/)(System::String) override | Saves result into specified file. | +| [Save](./save/)(System::SharedPtr\) override | Saves document into specified stream. | +| [set_AttachmentName](./set_attachmentname/)(System::String) | Sets name of attachment when result of operation is stored into HttpResponse objects as attachment. | +| [set_ContentDisposition](./set_contentdisposition/)(Aspose::Pdf::ContentDisposition) | Sets how content will be stored when result of operation is stored into HttpResponse object. Possible value: inline / attachment. Default: inline. | +| [set_ConvertTo](./set_convertto/)(PdfFormat) | Sets PDF file format. Result file will be saved in specified file format. If this property is not specified then file will be save in default PDF format without conversion. | +| [set_InputFile](./set_inputfile/)(System::String) | Sets name and path of input file. | +| [set_InputStream](./set_inputstream/)(System::SharedPtr\) | Sets input stream. | +| [set_KeepSecurity](./set_keepsecurity/)(bool) | Keeps security if true. (This feature will be implemented in next versions). | +| [set_NumberingStyle](./set_numberingstyle/)(Aspose::Pdf::NumberingStyle) | Sets pabge numbering style. Possible values: NumeralsArabic, NumeralsRomanUppercase, NumeralsRomanLowercase, LettersAppercase, LettersLowercase. | +| [set_OptimizeSize](./set_optimizesize/)(bool) | Sets optimization flag. Equal resource streams in resultant file are merged into one PDF object if this flag set. This allows to decrease resultant file size but may cause slower execution and larger memory requirements. Default value: false. | +| [set_OutputFile](./set_outputfile/)(System::String) | Sets name and path of output file. | +| [set_OutputStream](./set_outputstream/)(System::SharedPtr\) | Sets output stream. | +| [set_PageNumberRotation](./set_pagenumberrotation/)(float) | Sets rotation of page number. Rotation is in degrees. Default is 0. | +| [set_Response](./set_response/)(System::SharedPtr\) | Sets Response object where result of operation will be stored. | +| [set_SaveOptions](./set_saveoptions/)(System::SharedPtr\) | Sets save options when result is stored as HttpResponse. Default value: [PdfSaveOptions](../../aspose.pdf/pdfsaveoptions/). | +| [set_StampId](./set_stampid/)(int32_t) | [Stamp](../stamp/) ID of next added stamp (incluiding page headers/hooters/page numbers). | +| [set_StartingNumber](./set_startingnumber/)(int32_t) | Sets starting number for first page in input file. Next pages will be numbered starting from this value. For example if StartingNumber is set to 100, document pages will have numbers 100, 101, 102... | +## Fields + +| Field | Description | +| --- | --- | +| static [PosBottomLeft](./posbottomleft/) | Bottom left position. | +| static [PosBottomMiddle](./posbottommiddle/) | Bottom middle position. | +| static [PosBottomRight](./posbottomright/) | Bottom right position. | +| static [PosSidesLeft](./possidesleft/) | Left position. | +| static [PosSidesRight](./possidesright/) | Right position. | +| static [PosUpperLeft](./posupperleft/) | Upper let position. | +| static [PosUpperMiddle](./posuppermiddle/) | Upper middle position. | +| static [PosUpperRight](./posupperright/) | Right upper position. | +## See Also + +* Class [SaveableFacade](../saveablefacade/) +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/addfooter/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/addfooter/_index.md new file mode 100644 index 0000000000..306ccb77cb --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/addfooter/_index.md @@ -0,0 +1,309 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::AddFooter method +linktitle: AddFooter +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::AddFooter method. Adds footer to the pages of the document in C++.' +type: docs +weight: 3800 +url: /cpp/aspose.pdf.facades/pdffilestamp/addfooter/ +--- +## PdfFileStamp::AddFooter(System::SharedPtr\, float) method + + +Adds footer to the pages of the document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileStamp::AddFooter(System::SharedPtr formattedText, float bottomMargin) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| formattedText | System::SharedPtr\ | [FormattedText](../../formattedtext/) object which contains text of the footer and text properties. | +| bottomMargin | float | Margin at the top of page. | +## Remarks + + + + + + formattedText + + + + FormattedText object which contains text of the footer and text properties. + + + + + bottomMargin + + + Margin at the top of page. + + + +## See Also + +* Class [FormattedText](../../formattedtext/) +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileStamp::AddFooter(System::SharedPtr\, float, float, float) method + + +Adds footer to the pages of the document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileStamp::AddFooter(System::SharedPtr formattedText, float bottomMargin, float leftMargin, float rightMargin) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| formattedText | System::SharedPtr\ | [FormattedText](../../formattedtext/) object which contains footer text and text properties. | +| bottomMargin | float | Margin at the bottom of the page. | +| leftMargin | float | Margin at the left side of the page. | +| rightMargin | float | Margin at the right side of the page. | +## Remarks + + + + + + formattedText + + + + FormattedText object which contains footer text and text properties. + + + + + bottomMargin + + + Margin at the bottom of the page. + + + + + leftMargin + + + Margin at the left side of the page. + + + + + rightMargin + + + Margin at the right side of the page. + + + +## See Also + +* Class [FormattedText](../../formattedtext/) +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileStamp::AddFooter(System::String, float) method + + +Adds image as footer to the pages of the document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileStamp::AddFooter(System::String imageFile, float bottomMargin) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| imageFile | System::String | [Image](../../../aspose.pdf/image/) file name and path. | +| bottomMargin | float | Margin at the bottom of the page. | +## Remarks + + + + + + imageFile + + + + Image file name and path. + + + + + bottomMargin + + + Margin at the bottom of the page. + + + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileStamp::AddFooter(System::String, float, float, float) method + + +Adds image as footer of the pages. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileStamp::AddFooter(System::String imageFile, float bottomMargin, float leftMargin, float rightMargin) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| imageFile | System::String | Iamge file name and path. | +| bottomMargin | float | Margin at the bottom of the page. | +| leftMargin | float | Margin at the left side of the page. | +| rightMargin | float | Margin at the right side of the page. | +## Remarks + + + + + + imageFile + + + Iamge file name and path. + + + + + bottomMargin + + + Margin at the bottom of the page. + + + + + leftMargin + + + Margin at the left side of the page. + + + + + rightMargin + + + Margin at the right side of the page. + + + +/// +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileStamp::AddFooter(System::SharedPtr\, float) method + + +Adds image as footer of the page. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileStamp::AddFooter(System::SharedPtr imageStream, float bottomMargin) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| imageStream | System::SharedPtr\ | Stream contains image data. | +| bottomMargin | float | Margin at the bottom of the page. | +## Remarks + + + + + + imageStream + + + Stream contains image data. + + + + + bottomMargin + + + Margin at the bottom of the page. + + + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileStamp::AddFooter(System::SharedPtr\, float, float, float) method + + +Adds image as footer of the page. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileStamp::AddFooter(System::SharedPtr imageStream, float bottomMargin, float leftMargin, float rightMargin) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| imageStream | System::SharedPtr\ | Stream contains image data. | +| bottomMargin | float | Margin at the bottom of the page. | +| leftMargin | float | Margin at the left side of the page. | +| rightMargin | float | Margin at the right side of the page. | +## Remarks + + + + + + imageStream + + + Stream contains image data. + + + + + bottomMargin + + + Margin at the bottom of the page. + + + + + leftMargin + + + Margin at the left side of the page. + + + + + rightMargin + + + Margin at the right side of the page. + + + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/addheader/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/addheader/_index.md new file mode 100644 index 0000000000..d7a5bc60d4 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/addheader/_index.md @@ -0,0 +1,306 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::AddHeader method +linktitle: AddHeader +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::AddHeader method. Adds header to the page in C++.' +type: docs +weight: 3700 +url: /cpp/aspose.pdf.facades/pdffilestamp/addheader/ +--- +## PdfFileStamp::AddHeader(System::SharedPtr\, float) method + + +Adds header to the page. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileStamp::AddHeader(System::SharedPtr formattedText, float topMargin) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| formattedText | System::SharedPtr\ | [Text](../../../aspose.pdf.text/) for header and properties of the text. | +| topMargin | float | Margin on the top of page. | +## Remarks + + + + + + formattedText + + + + Text for header and properties of the text. + + + + + topMargin + + + Margin on the top of page. + + + +## See Also + +* Class [FormattedText](../../formattedtext/) +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileStamp::AddHeader(System::SharedPtr\, float, float, float) method + + +Adds header to the pages of file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileStamp::AddHeader(System::SharedPtr formattedText, float topMargin, float leftMargin, float rightMargin) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| formattedText | System::SharedPtr\ | Formatted text object which contains page text and its properties. | +| topMargin | float | Margin on the top of the page. | +| leftMargin | float | Margin on the left of the page. | +| rightMargin | float | Margin on the right of the page. | +## Remarks + + + + + + formattedText + + + Formatted text object which contains page text and its properties. + + + + + topMargin + + + Margin on the top of the page. + + + + + leftMargin + + + Margin on the left of the page. + + + + + rightMargin + + + Margin on the right of the page. + + + +## See Also + +* Class [FormattedText](../../formattedtext/) +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileStamp::AddHeader(System::String, float) method + + +Adds image as header to the pages of the file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileStamp::AddHeader(System::String imageFile, float topMargin) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| imageFile | System::String | Path to the image file. | +| topMargin | float | Margin at top of the page. | +## Remarks + + + + + + imageFile + + + Path to the image file. + + + + + topMargin + + + Margin at top of the page. + + + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileStamp::AddHeader(System::String, float, float, float) method + + +Adds image as header on the pages. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileStamp::AddHeader(System::String imageFile, float topMargin, float leftMargin, float rightMargin) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| imageFile | System::String | Path to the image file. | +| topMargin | float | Margin at top of the page. | +| leftMargin | float | Margin at left side of the page. | +| rightMargin | float | Margin at right side of the page. | +## Remarks + + + + + + imageFile + + + Path to the image file. + + + + + topMargin + + + Margin at top of the page. + + + + + leftMargin + + + Margin at left side of the page. + + + + + rightMargin + + + Margin at right side of the page. + + + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileStamp::AddHeader(System::SharedPtr\, float) method + + +Adds image as header on the pages. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileStamp::AddHeader(System::SharedPtr imageStream, float topMargin) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| imageStream | System::SharedPtr\ | Stream of the image. | +| topMargin | float | Margin at top of the page. | +## Remarks + + + + + + imageStream + + + Stream of the image. + + + + + topMargin + + + Margin at top of the page. + + + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileStamp::AddHeader(System::SharedPtr\, float, float, float) method + + +Adds image at the top of the page. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileStamp::AddHeader(System::SharedPtr inputStream, float topMargin, float leftMargin, float rightMargin) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Stream which contains image data. | +| topMargin | float | Margin at top of the page. | +| leftMargin | float | Margin at left side of the page. | +| rightMargin | float | Margin at right side of the page. | +## Remarks + + + + + + inputStream + + + Stream which contains image data. + + + + + topMargin + + + Margin at top of the page. + + + + + leftMargin + + + Margin at left side of the page. + + + + + rightMargin + + + Margin at right side of the page. + + + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/addpagenumber/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/addpagenumber/_index.md new file mode 100644 index 0000000000..fad12b45d6 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/addpagenumber/_index.md @@ -0,0 +1,408 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::AddPageNumber method +linktitle: AddPageNumber +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::AddPageNumber method. Add page number to file. Page number text may contain # sign which will be replaced with number of the page. Page number is placed in the bottom of the page centered horizontally in C++.' +type: docs +weight: 3600 +url: /cpp/aspose.pdf.facades/pdffilestamp/addpagenumber/ +--- +## PdfFileStamp::AddPageNumber(System::String) method + + +Add page number to file. [Page](../../../aspose.pdf/page/) number text may contain # sign which will be replaced with number of the page. [Page](../../../aspose.pdf/page/) number is placed in the bottom of the page centered horizontally. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileStamp::AddPageNumber(System::String formatString) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| formatString | System::String | [Text](../../../aspose.pdf.text/) of page number | +## Remarks + + + + + + formatString + + + + Text of page number + + + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileStamp::AddPageNumber(System::SharedPtr\) method + + +Adds page number to the page. [Page](../../../aspose.pdf/page/) number may contain # sign which will be replaced with page number. [Page](../../../aspose.pdf/page/) number is placed in the bottom of the page centered horizontally. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileStamp::AddPageNumber(System::SharedPtr formattedText) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| formattedText | System::SharedPtr\ | Format string for page number representes as [FormattedText](../../formattedtext/). | +## Remarks + + + + + + formattedText + + + Format string for page number representes as FormattedText. + + + +## See Also + +* Class [FormattedText](../../formattedtext/) +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileStamp::AddPageNumber(System::String, int32_t, float, float, float, float) method + + +Adds page number to the pages of document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileStamp::AddPageNumber(System::String formatString, int32_t position, float leftMargin, float rightMargin, float topMargin, float bottomMargin) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| formatString | System::String | Format string for page number. | +| position | int32_t | Position where page number will be placed on the page. 0-bottom middle, 1-bottom right, 2-upper right, 3 - sides right, 4 - upper middle,5 - bottom left,6 - sides left,7 - upper left. You can use the following constants: PosBottomMiddle = 0, PosBottomRight = 1, PosUpperRight = 2, PosSidesRight = 3, PosUpperMiddle, PosBottomLeft = 5, PosSidesLeft, PosUpperLeft | +| leftMargin | float | Margin on the left edge of the page. | +| rightMargin | float | Margin on the right edge of the page. | +| topMargin | float | Margin on the top edge of the page. | +| bottomMargin | float | Margin on the bottom edge of the page. | +## Remarks + + + + + + formatString + + + Format string for page number. + + + + + position + + + Position where page number will be placed on the page. 0-bottom middle, 1-bottom right, 2-upper right, 3 - sides right, 4 - upper middle,5 - bottom left,6 - sides left,7 - upper left. You can use the following constants: PosBottomMiddle = 0, PosBottomRight = 1, PosUpperRight = 2, PosSidesRight = 3, PosUpperMiddle, PosBottomLeft = 5, PosSidesLeft, PosUpperLeft + + + + + leftMargin + + + Margin on the left edge of the page. + + + + + rightMargin + + + Margin on the right edge of the page. + + + + + topMargin + + + Margin on the top edge of the page. + + + + + bottomMargin + + + Margin on the bottom edge of the page. + + + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileStamp::AddPageNumber(System::String, float, float) method + + +Adds page number at the specified position on the page. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileStamp::AddPageNumber(System::String formatString, float x, float y) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| formatString | System::String | Format string. Format string can contain # sign which will be replaced with page number. | +| x | float | X coordinate of page number. | +| y | float | Y coordinate of page number. | +## Remarks + + + + + + formatString + + + Format string. Format string can contain # sign which will be replaced with page number. + + + + + x + + + X coordinate of page number. + + + + + y + + + Y coordinate of page number. + + + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileStamp::AddPageNumber(System::SharedPtr\, int32_t, float, float, float, float) method + + +Adds page number to the pages of document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileStamp::AddPageNumber(System::SharedPtr formattedText, int32_t position, float leftMargin, float rightMargin, float topMargin, float bottomMargin) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| formattedText | System::SharedPtr\ | [FormattedText](../../formattedtext/) object which represents page number format and properties iof the text. | +| position | int32_t | Position where page number will be placed on the page. 0-bottom middle, 1-bottom right, 2-upper right, 3 - sides right, 4 - upper middle,5 - bottom left,6 - sides left,7 - upper left. You can use the following constants: PosBottomMiddle = 0, PosBottomRight = 1, PosUpperRight = 2, PosSidesRight = 3, PosUpperMiddle, PosBottomLeft = 5, PosSidesLeft, PosUpperLeft | +| leftMargin | float | Margin on the left edge of the page. | +| rightMargin | float | Margin on the right edge of the page. | +| topMargin | float | Margin on the top edge of the page. | +| bottomMargin | float | Margin on the bottom edge of the page. | +## Remarks + + + + + + formattedText + + + + FormattedText object which represents page number format and properties iof the text. + + + + + position + + + Position where page number will be placed on the page. 0-bottom middle, 1-bottom right, 2-upper right, 3 - sides right, 4 - upper middle,5 - bottom left,6 - sides left,7 - upper left. You can use the following constants: PosBottomMiddle = 0, PosBottomRight = 1, PosUpperRight = 2, PosSidesRight = 3, PosUpperMiddle, PosBottomLeft = 5, PosSidesLeft, PosUpperLeft + + + + + leftMargin + + + Margin on the left edge of the page. + + + + + rightMargin + + + Margin on the right edge of the page. + + + + + topMargin + + + Margin on the top edge of the page. + + + + + bottomMargin + + + Margin on the bottom edge of the page. + + + +## See Also + +* Class [FormattedText](../../formattedtext/) +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileStamp::AddPageNumber(System::SharedPtr\, float, float) method + + +Adds page number at the specified position on the page. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileStamp::AddPageNumber(System::SharedPtr formattedText, float x, float y) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| formattedText | System::SharedPtr\ | Formatted text which represents page number format and properties of the text. Format string can contain # sign which will be replaced with page number. | +| x | float | X coordinate of page number. | +| y | float | Y coordinate of page number. | +## Remarks + + + + + + formattedText + + + Formatted text which represents page number format and properties of the text. Format string can contain # sign which will be replaced with page number. + + + + + x + + + X coordinate of page number. + + + + + y + + + Y coordinate of page number. + + + +## See Also + +* Class [FormattedText](../../formattedtext/) +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileStamp::AddPageNumber(System::String, int32_t) method + + +Adds page number to the pages. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileStamp::AddPageNumber(System::String formatString, int32_t position) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| formatString | System::String | Format of the page number. This text may contain # which will be replaced with page number. | +| position | int32_t | Position where page number will be placed on the page. 0-bottom middle, 1-bottom right, 2-upper right, 3 - sides right, 4 - upper middle,5 - bottom left,6 - sides left,7 - upper left. You can use the following constants: PosBottomMiddle = 0, PosBottomRight = 1, PosUpperRight = 2, PosSidesRight = 3, PosUpperMiddle, PosBottomLeft = 5, PosSidesLeft, PosUpperLeft | +## Remarks + + + + + + formatString + + + Format of the page number. This text may contain # which will be replaced with page number. + + + + + position + + + Position where page number will be placed on the page. 0-bottom middle, 1-bottom right, 2-upper right, 3 - sides right, 4 - upper middle,5 - bottom left,6 - sides left,7 - upper left. You can use the following constants: PosBottomMiddle = 0, PosBottomRight = 1, PosUpperRight = 2, PosSidesRight = 3, PosUpperMiddle, PosBottomLeft = 5, PosSidesLeft, PosUpperLeft + + + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileStamp::AddPageNumber(System::SharedPtr\, int32_t) method + + +Adds page number to the pages. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileStamp::AddPageNumber(System::SharedPtr formattedText, int32_t position) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| formattedText | System::SharedPtr\ | [FormattedText](../../formattedtext/) object which contains format of the page number and text properties. This text may contain # which will be replaced with page number. | +| position | int32_t | Position where page number will be placed on the page. 0-bottom middle, 1-bottom right, 2-upper right, 3 - sides right, 4 - upper middle,5 - bottom left,6 - sides left,7 - upper left. You can use the following constants: PosBottomMiddle = 0, PosBottomRight = 1, PosUpperRight = 2, PosSidesRight = 3, PosUpperMiddle, PosBottomLeft = 5, PosSidesLeft, PosUpperLeft | +## Remarks + + + + + + formattedText + + + + FormattedText object which contains format of the page number and text properties. This text may contain # which will be replaced with page number. + + + + + position + + + Position where page number will be placed on the page. 0-bottom middle, 1-bottom right, 2-upper right, 3 - sides right, 4 - upper middle,5 - bottom left,6 - sides left,7 - upper left. You can use the following constants: PosBottomMiddle = 0, PosBottomRight = 1, PosUpperRight = 2, PosSidesRight = 3, PosUpperMiddle, PosBottomLeft = 5, PosSidesLeft, PosUpperLeft + + + +## See Also + +* Class [FormattedText](../../formattedtext/) +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/addstamp/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/addstamp/_index.md new file mode 100644 index 0000000000..7bf3e1d273 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/addstamp/_index.md @@ -0,0 +1,42 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::AddStamp method +linktitle: AddStamp +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::AddStamp method. Adds stamp to the file in C++.' +type: docs +weight: 3500 +url: /cpp/aspose.pdf.facades/pdffilestamp/addstamp/ +--- +## PdfFileStamp::AddStamp method + + +Adds stamp to the file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileStamp::AddStamp(System::SharedPtr stamp) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| stamp | System::SharedPtr\ | [Stamp](../../stamp/) object which. | +## Remarks + + + + + + stamp + + + + Stamp object which. + + + +## See Also + +* Class [Stamp](../../stamp/) +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/close/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/close/_index.md new file mode 100644 index 0000000000..631cd2e320 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/close/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::Close method +linktitle: Close +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::Close method. Closes opened files and saves changes. Warning. If input or output streams are specified they are not closed by Close() method in C++.' +type: docs +weight: 3300 +url: /cpp/aspose.pdf.facades/pdffilestamp/close/ +--- +## PdfFileStamp::Close method + + +Closes opened files and saves changes. Warning. If input or output streams are specified they are not closed by [Close()](./) method. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileStamp::Close() override +``` + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/get_attachmentname/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/get_attachmentname/_index.md new file mode 100644 index 0000000000..9221a92187 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/get_attachmentname/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::get_AttachmentName method +linktitle: get_AttachmentName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::get_AttachmentName method. Gets name of attachment when result of operation is stored into HttpResponse objects as attachment in C++.' +type: docs +weight: 3000 +url: /cpp/aspose.pdf.facades/pdffilestamp/get_attachmentname/ +--- +## PdfFileStamp::get_AttachmentName method + + +Gets name of attachment when result of operation is stored into HttpResponse objects as attachment. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::PdfFileStamp::get_AttachmentName() const +``` + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/get_contentdisposition/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/get_contentdisposition/_index.md new file mode 100644 index 0000000000..e25b18b6f9 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/get_contentdisposition/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::get_ContentDisposition method +linktitle: get_ContentDisposition +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::get_ContentDisposition method. Gets how content will be stored when result of operation is stored into HttpResponse object. Possible value: inline / attachment. Default: inline in C++.' +type: docs +weight: 2400 +url: /cpp/aspose.pdf.facades/pdffilestamp/get_contentdisposition/ +--- +## PdfFileStamp::get_ContentDisposition method + + +Gets how content will be stored when result of operation is stored into HttpResponse object. Possible value: inline / attachment. Default: inline. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::ContentDisposition Aspose::Pdf::Facades::PdfFileStamp::get_ContentDisposition() const +``` + +## See Also + +* Enum [ContentDisposition](../../../aspose.pdf/contentdisposition/) +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/get_inputfile/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/get_inputfile/_index.md new file mode 100644 index 0000000000..b4d9a4f079 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/get_inputfile/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::get_InputFile method +linktitle: get_InputFile +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::get_InputFile method. Gets name and path of input file in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.facades/pdffilestamp/get_inputfile/ +--- +## PdfFileStamp::get_InputFile method + + +Gets name and path of input file. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::PdfFileStamp::get_InputFile() const +``` + +## Remarks + + + + Deprecated + + Use BindPdf(inputFile) method for facade initialization. + + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/get_inputstream/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/get_inputstream/_index.md new file mode 100644 index 0000000000..1e75a692dd --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/get_inputstream/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::get_InputStream method +linktitle: get_InputStream +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::get_InputStream method. Gets input stream in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.facades/pdffilestamp/get_inputstream/ +--- +## PdfFileStamp::get_InputStream method + + +Gets input stream. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::PdfFileStamp::get_InputStream() const +``` + +## Remarks + + + + Deprecated + + Use BindPdf(inputStream) method for facade initialization. + + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/get_keepsecurity/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/get_keepsecurity/_index.md new file mode 100644 index 0000000000..a92e08c15d --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/get_keepsecurity/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::get_KeepSecurity method +linktitle: get_KeepSecurity +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::get_KeepSecurity method. Keeps security if true. (This feature will be implemented in next versions) in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.facades/pdffilestamp/get_keepsecurity/ +--- +## PdfFileStamp::get_KeepSecurity method + + +Keeps security if true. (This feature will be implemented in next versions). + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileStamp::get_KeepSecurity() const +``` + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/get_numberingstyle/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/get_numberingstyle/_index.md new file mode 100644 index 0000000000..5c94adb11f --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/get_numberingstyle/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::get_NumberingStyle method +linktitle: get_NumberingStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::get_NumberingStyle method. Gets pabge numbering style. Possible values: NumeralsArabic, NumeralsRomanUppercase, NumeralsRomanLowercase, LettersAppercase, LettersLowercase in C++.' +type: docs +weight: 2000 +url: /cpp/aspose.pdf.facades/pdffilestamp/get_numberingstyle/ +--- +## PdfFileStamp::get_NumberingStyle method + + +Gets pabge numbering style. Possible values: NumeralsArabic, NumeralsRomanUppercase, NumeralsRomanLowercase, LettersAppercase, LettersLowercase. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::NumberingStyle Aspose::Pdf::Facades::PdfFileStamp::get_NumberingStyle() const +``` + +## See Also + +* Enum [NumberingStyle](../../../aspose.pdf/numberingstyle/) +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/get_optimizesize/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/get_optimizesize/_index.md new file mode 100644 index 0000000000..c3268b26fe --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/get_optimizesize/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::get_OptimizeSize method +linktitle: get_OptimizeSize +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::get_OptimizeSize method. Gets optimization flag. Equal resource streams in resultant file are merged into one PDF object if this flag set. This allows to decrease resultant file size but may cause slower execution and larger memory requirements. Default value: false in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.facades/pdffilestamp/get_optimizesize/ +--- +## PdfFileStamp::get_OptimizeSize method + + +Gets optimization flag. Equal resource streams in resultant file are merged into one PDF object if this flag set. This allows to decrease resultant file size but may cause slower execution and larger memory requirements. Default value: false. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfFileStamp::get_OptimizeSize() const +``` + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/get_outputfile/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/get_outputfile/_index.md new file mode 100644 index 0000000000..58711d8480 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/get_outputfile/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::get_OutputFile method +linktitle: get_OutputFile +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::get_OutputFile method. Gets name and path of output file in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.facades/pdffilestamp/get_outputfile/ +--- +## PdfFileStamp::get_OutputFile method + + +Gets name and path of output file. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::PdfFileStamp::get_OutputFile() const +``` + +## Remarks + + + + Deprecated + + Use Save(outputFile) method for getting facade results. + + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/get_outputstream/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/get_outputstream/_index.md new file mode 100644 index 0000000000..216113ceaf --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/get_outputstream/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::get_OutputStream method +linktitle: get_OutputStream +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::get_OutputStream method. Gets output stream in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.facades/pdffilestamp/get_outputstream/ +--- +## PdfFileStamp::get_OutputStream method + + +Gets output stream. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::PdfFileStamp::get_OutputStream() const +``` + +## Remarks + + + + Deprecated + + Use Save(outputStream) method for getting facade results. + + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/get_pageheight/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/get_pageheight/_index.md new file mode 100644 index 0000000000..84ef55ec26 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/get_pageheight/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::get_PageHeight method +linktitle: get_PageHeight +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::get_PageHeight method. Gets height of first page in souorce file in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf.facades/pdffilestamp/get_pageheight/ +--- +## PdfFileStamp::get_PageHeight method + + +Gets height of first page in souorce file. + +```cpp +ASPOSE_PDF_SHARED_API float Aspose::Pdf::Facades::PdfFileStamp::get_PageHeight() +``` + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/get_pagenumberrotation/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/get_pagenumberrotation/_index.md new file mode 100644 index 0000000000..e7cb8ea743 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/get_pagenumberrotation/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::get_PageNumberRotation method +linktitle: get_PageNumberRotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::get_PageNumberRotation method. Gets rotation of page number. Rotation is in degrees. Default is 0 in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.facades/pdffilestamp/get_pagenumberrotation/ +--- +## PdfFileStamp::get_PageNumberRotation method + + +Gets rotation of page number. Rotation is in degrees. Default is 0. + +```cpp +ASPOSE_PDF_SHARED_API float Aspose::Pdf::Facades::PdfFileStamp::get_PageNumberRotation() +``` + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/get_pagewidth/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/get_pagewidth/_index.md new file mode 100644 index 0000000000..c0c3ac3830 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/get_pagewidth/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::get_PageWidth method +linktitle: get_PageWidth +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::get_PageWidth method. Gets width of first page in input file in C++.' +type: docs +weight: 1700 +url: /cpp/aspose.pdf.facades/pdffilestamp/get_pagewidth/ +--- +## PdfFileStamp::get_PageWidth method + + +Gets width of first page in input file. + +```cpp +ASPOSE_PDF_SHARED_API float Aspose::Pdf::Facades::PdfFileStamp::get_PageWidth() +``` + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/get_response/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/get_response/_index.md new file mode 100644 index 0000000000..c1cca733fb --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/get_response/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::get_Response method +linktitle: get_Response +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::get_Response method. Gets Response object where result of operation will be stored in C++.' +type: docs +weight: 2600 +url: /cpp/aspose.pdf.facades/pdffilestamp/get_response/ +--- +## PdfFileStamp::get_Response method + + +Gets Response object where result of operation will be stored. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::PdfFileStamp::get_Response() const +``` + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/get_saveoptions/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/get_saveoptions/_index.md new file mode 100644 index 0000000000..5bf3ecf7c1 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/get_saveoptions/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::get_SaveOptions method +linktitle: get_SaveOptions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::get_SaveOptions method. Gets save options when result is stored as HttpResponse. Default value: PdfSaveOptions in C++.' +type: docs +weight: 2800 +url: /cpp/aspose.pdf.facades/pdffilestamp/get_saveoptions/ +--- +## PdfFileStamp::get_SaveOptions method + + +Gets save options when result is stored as HttpResponse. Default value: [PdfSaveOptions](../../../aspose.pdf/pdfsaveoptions/). + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::PdfFileStamp::get_SaveOptions() const +``` + +## See Also + +* Class [SaveOptions](../../../aspose.pdf/saveoptions/) +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/get_stampid/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/get_stampid/_index.md new file mode 100644 index 0000000000..40858c14cf --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/get_stampid/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::get_StampId method +linktitle: get_StampId +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::get_StampId method. Stamp ID of next added stamp (incluiding page headers/hooters/page numbers) in C++.' +type: docs +weight: 2200 +url: /cpp/aspose.pdf.facades/pdffilestamp/get_stampid/ +--- +## PdfFileStamp::get_StampId method + + +[Stamp](../../stamp/) ID of next added stamp (incluiding page headers/hooters/page numbers). + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfFileStamp::get_StampId() const +``` + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/get_startingnumber/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/get_startingnumber/_index.md new file mode 100644 index 0000000000..31c9c4a6d6 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/get_startingnumber/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::get_StartingNumber method +linktitle: get_StartingNumber +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::get_StartingNumber method. Gets starting number for first page in input file. Next pages will be numbered starting from this value. For example if StartingNumber is set to 100, document pages will have numbers 100, 101, 102 in C++.' +type: docs +weight: 1800 +url: /cpp/aspose.pdf.facades/pdffilestamp/get_startingnumber/ +--- +## PdfFileStamp::get_StartingNumber method + + +Gets starting number for first page in input file. Next pages will be numbered starting from this value. For example if StartingNumber is set to 100, document pages will have numbers 100, 101, 102... + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfFileStamp::get_StartingNumber() const +``` + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/pdffilestamp/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/pdffilestamp/_index.md new file mode 100644 index 0000000000..45ed9746c5 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/pdffilestamp/_index.md @@ -0,0 +1,438 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::PdfFileStamp constructor +linktitle: PdfFileStamp +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::PdfFileStamp constructor. Constructor for PdfFileStamp in C++.' +type: docs +weight: 3200 +url: /cpp/aspose.pdf.facades/pdffilestamp/pdffilestamp/ +--- +## PdfFileStamp::PdfFileStamp(System::String, System::String) constructor + + +Constructor for [PdfFileStamp](../). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfFileStamp::PdfFileStamp(System::String inputFile, System::String outputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Input file name and path. | +| outputFile | System::String | Output file name and path. | +## Remarks + + + + Deprecated + + Use constructor without destination. + + + + + inputFile + + + Input file name and path. + + + + + outputFile + + + Output file name and path. + + + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileStamp::PdfFileStamp(System::SharedPtr\, System::SharedPtr\) constructor + + +Constructor for [PdfFileStamp](../). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfFileStamp::PdfFileStamp(System::SharedPtr inputStream, System::SharedPtr outputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Input stream. | +| outputStream | System::SharedPtr\ | Output stream. | +## Remarks + + + + Deprecated + + Use constructor without destination. + + + + + inputStream + + + Input stream. + + + + + outputStream + + + Output stream. + + + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileStamp::PdfFileStamp(System::String, System::String, bool) constructor + + +Constructor for [PdfFileStamp](../). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfFileStamp::PdfFileStamp(System::String inputFile, System::String outputFile, bool keepSecurity) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Input file name and path. | +| outputFile | System::String | Output file name and path. | +| keepSecurity | bool | Keep security if true. | +## Remarks + + + + Deprecated + + Use constructor without destination. + + + + + inputFile + + + Input file name and path. + + + + + outputFile + + + Output file name and path. + + + + + keepSecurity + + + Keep security if true. + + + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileStamp::PdfFileStamp(System::SharedPtr\, System::SharedPtr\, bool) constructor + + +Constructor of [PdfFileStamp](../). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfFileStamp::PdfFileStamp(System::SharedPtr inputStream, System::SharedPtr outputStream, bool keepSecurity) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Input stream. | +| outputStream | System::SharedPtr\ | Output stream. | +| keepSecurity | bool | Keep security if true. | +## Remarks + + + + Deprecated + + Use constructor without destination. + + + + + inputStream + + + Input stream. + + + + + outputStream + + + Output stream. + + + + + keepSecurity + + + Keep security if true. + + + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileStamp::PdfFileStamp() constructor + + +Constructor of the [PdfFileStamp](../). Input file and output file may be specified via corresponding properties. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfFileStamp::PdfFileStamp() +``` + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileStamp::PdfFileStamp(System::SharedPtr\) constructor + + +Initializes new [PdfFileStamp](../) object on base of the *document* . + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfFileStamp::PdfFileStamp(System::SharedPtr document) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | [Pdf](../../../aspose.pdf/) document. | +## Remarks + + + + + + document + + + + Pdf document. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileStamp::PdfFileStamp(System::SharedPtr\, System::String) constructor + + +Initializes new [PdfFileStamp](../) object on base of the *document* . + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfFileStamp::PdfFileStamp(System::SharedPtr document, System::String outputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | [Pdf](../../../aspose.pdf/) document. | +| outputFile | System::String | Output file name and path. | +## Remarks + + + + Deprecated + + Use constructor without destination. + + + + + document + + + + Pdf document. + + + + + outputFile + + + Output file name and path. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileStamp::PdfFileStamp(System::SharedPtr\, System::SharedPtr\) constructor + + +Initializes new [PdfFileStamp](../) object on base of the *document* . + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfFileStamp::PdfFileStamp(System::SharedPtr document, System::SharedPtr outputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | [Pdf](../../../aspose.pdf/) document. | +| outputStream | System::SharedPtr\ | Output stream. | +## Remarks + + + + Deprecated + + Use constructor without destination. + + + + + document + + + + Pdf document. + + + + + outputStream + + + Output stream. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileStamp::PdfFileStamp(System::SharedPtr\, System::SharedPtr\) constructor + + +Creates [PdfFileStamp](../) which will save result into HttpResponse object. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfFileStamp::PdfFileStamp(System::SharedPtr inputStream, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Stream with input document. | +| response | System::SharedPtr\ | HttpResponse object where result will be saved. | +## Remarks + + + + Deprecated + + Use constructor without destination. + + + + + inputStream + + + Stream with input document. + + + + + response + + + HttpResponse object where result will be saved. + + + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileStamp::PdfFileStamp(System::String, System::SharedPtr\) constructor + + +Creates [PdfFileStamp](../) which will save result into HttpResponse object. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfFileStamp::PdfFileStamp(System::String inputFile, System::SharedPtr response) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | Source file name. | +| response | System::SharedPtr\ | HttpResponse object where result will be saved. | +## Remarks + + + + Deprecated + + Use constructor without destination. + + + + + inputFile + + + Source file name. + + + + + response + + + HttpResponse object where result will be saved. + + + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/posbottomleft/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/posbottomleft/_index.md new file mode 100644 index 0000000000..1448cef95a --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/posbottomleft/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::PosBottomLeft field +linktitle: PosBottomLeft +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::PosBottomLeft field. Bottom left position in C++.' +type: docs +weight: 4400 +url: /cpp/aspose.pdf.facades/pdffilestamp/posbottomleft/ +--- +## PosBottomLeft field + + +Bottom left position. + +```cpp +static const ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfFileStamp::PosBottomLeft +``` + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/posbottommiddle/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/posbottommiddle/_index.md new file mode 100644 index 0000000000..94fb20eeb5 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/posbottommiddle/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::PosBottomMiddle field +linktitle: PosBottomMiddle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::PosBottomMiddle field. Bottom middle position in C++.' +type: docs +weight: 3900 +url: /cpp/aspose.pdf.facades/pdffilestamp/posbottommiddle/ +--- +## PosBottomMiddle field + + +Bottom middle position. + +```cpp +static const ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfFileStamp::PosBottomMiddle +``` + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/posbottomright/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/posbottomright/_index.md new file mode 100644 index 0000000000..5dde1602d9 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/posbottomright/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::PosBottomRight field +linktitle: PosBottomRight +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::PosBottomRight field. Bottom right position in C++.' +type: docs +weight: 4000 +url: /cpp/aspose.pdf.facades/pdffilestamp/posbottomright/ +--- +## PosBottomRight field + + +Bottom right position. + +```cpp +static const ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfFileStamp::PosBottomRight +``` + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/possidesleft/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/possidesleft/_index.md new file mode 100644 index 0000000000..72cc012a5f --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/possidesleft/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::PosSidesLeft field +linktitle: PosSidesLeft +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::PosSidesLeft field. Left position in C++.' +type: docs +weight: 4500 +url: /cpp/aspose.pdf.facades/pdffilestamp/possidesleft/ +--- +## PosSidesLeft field + + +Left position. + +```cpp +static const ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfFileStamp::PosSidesLeft +``` + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/possidesright/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/possidesright/_index.md new file mode 100644 index 0000000000..2ab36fb4d3 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/possidesright/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::PosSidesRight field +linktitle: PosSidesRight +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::PosSidesRight field. Right position in C++.' +type: docs +weight: 4200 +url: /cpp/aspose.pdf.facades/pdffilestamp/possidesright/ +--- +## PosSidesRight field + + +Right position. + +```cpp +static const ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfFileStamp::PosSidesRight +``` + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/posupperleft/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/posupperleft/_index.md new file mode 100644 index 0000000000..dda8c99476 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/posupperleft/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::PosUpperLeft field +linktitle: PosUpperLeft +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::PosUpperLeft field. Upper let position in C++.' +type: docs +weight: 4600 +url: /cpp/aspose.pdf.facades/pdffilestamp/posupperleft/ +--- +## PosUpperLeft field + + +Upper let position. + +```cpp +static const ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfFileStamp::PosUpperLeft +``` + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/posuppermiddle/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/posuppermiddle/_index.md new file mode 100644 index 0000000000..1ad33f5eb9 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/posuppermiddle/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::PosUpperMiddle field +linktitle: PosUpperMiddle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::PosUpperMiddle field. Upper middle position in C++.' +type: docs +weight: 4300 +url: /cpp/aspose.pdf.facades/pdffilestamp/posuppermiddle/ +--- +## PosUpperMiddle field + + +Upper middle position. + +```cpp +static const ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfFileStamp::PosUpperMiddle +``` + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/posupperright/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/posupperright/_index.md new file mode 100644 index 0000000000..a3082c4a68 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/posupperright/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::PosUpperRight field +linktitle: PosUpperRight +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::PosUpperRight field. Right upper position in C++.' +type: docs +weight: 4100 +url: /cpp/aspose.pdf.facades/pdffilestamp/posupperright/ +--- +## PosUpperRight field + + +Right upper position. + +```cpp +static const ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfFileStamp::PosUpperRight +``` + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/save/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/save/_index.md new file mode 100644 index 0000000000..47a6062e26 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/save/_index.md @@ -0,0 +1,71 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::Save method +linktitle: Save +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::Save method. Saves result into specified file in C++.' +type: docs +weight: 3400 +url: /cpp/aspose.pdf.facades/pdffilestamp/save/ +--- +## PdfFileStamp::Save(System::String) method + + +Saves result into specified file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileStamp::Save(System::String destFile) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| destFile | System::String | Path to file where document will be saved. | +## Remarks + + + + + + destFile + + + Path to file where document will be saved. + + + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfFileStamp::Save(System::SharedPtr\) method + + +Saves document into specified stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileStamp::Save(System::SharedPtr destStream) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| destStream | System::SharedPtr\ | Stream where document will be saved. | +## Remarks + + + + + + destStream + + + Stream where document will be saved. + + + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/set_attachmentname/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/set_attachmentname/_index.md new file mode 100644 index 0000000000..4f17c56261 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/set_attachmentname/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::set_AttachmentName method +linktitle: set_AttachmentName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::set_AttachmentName method. Sets name of attachment when result of operation is stored into HttpResponse objects as attachment in C++.' +type: docs +weight: 3100 +url: /cpp/aspose.pdf.facades/pdffilestamp/set_attachmentname/ +--- +## PdfFileStamp::set_AttachmentName method + + +Sets name of attachment when result of operation is stored into HttpResponse objects as attachment. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileStamp::set_AttachmentName(System::String value) +``` + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/set_contentdisposition/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/set_contentdisposition/_index.md new file mode 100644 index 0000000000..2620156d6e --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/set_contentdisposition/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::set_ContentDisposition method +linktitle: set_ContentDisposition +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::set_ContentDisposition method. Sets how content will be stored when result of operation is stored into HttpResponse object. Possible value: inline / attachment. Default: inline in C++.' +type: docs +weight: 2500 +url: /cpp/aspose.pdf.facades/pdffilestamp/set_contentdisposition/ +--- +## PdfFileStamp::set_ContentDisposition method + + +Sets how content will be stored when result of operation is stored into HttpResponse object. Possible value: inline / attachment. Default: inline. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileStamp::set_ContentDisposition(Aspose::Pdf::ContentDisposition value) +``` + +## See Also + +* Enum [ContentDisposition](../../../aspose.pdf/contentdisposition/) +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/set_convertto/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/set_convertto/_index.md new file mode 100644 index 0000000000..36a0346e30 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/set_convertto/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::set_ConvertTo method +linktitle: set_ConvertTo +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::set_ConvertTo method. Sets PDF file format. Result file will be saved in specified file format. If this property is not specified then file will be save in default PDF format without conversion in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.facades/pdffilestamp/set_convertto/ +--- +## PdfFileStamp::set_ConvertTo method + + +Sets PDF file format. Result file will be saved in specified file format. If this property is not specified then file will be save in default PDF format without conversion. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileStamp::set_ConvertTo(PdfFormat value) +``` + +## See Also + +* Enum [PdfFormat](../../../aspose.pdf/pdfformat/) +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/set_inputfile/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/set_inputfile/_index.md new file mode 100644 index 0000000000..5c87fb7723 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/set_inputfile/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::set_InputFile method +linktitle: set_InputFile +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::set_InputFile method. Sets name and path of input file in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.facades/pdffilestamp/set_inputfile/ +--- +## PdfFileStamp::set_InputFile method + + +Sets name and path of input file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileStamp::set_InputFile(System::String value) +``` + +## Remarks + + + + Deprecated + + Use BindPdf(inputFile) method for facade initialization. + + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/set_inputstream/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/set_inputstream/_index.md new file mode 100644 index 0000000000..3e632275b0 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/set_inputstream/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::set_InputStream method +linktitle: set_InputStream +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::set_InputStream method. Sets input stream in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.facades/pdffilestamp/set_inputstream/ +--- +## PdfFileStamp::set_InputStream method + + +Sets input stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileStamp::set_InputStream(System::SharedPtr value) +``` + +## Remarks + + + + Deprecated + + Use BindPdf(inputStream) method for facade initialization. + + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/set_keepsecurity/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/set_keepsecurity/_index.md new file mode 100644 index 0000000000..73f66f3768 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/set_keepsecurity/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::set_KeepSecurity method +linktitle: set_KeepSecurity +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::set_KeepSecurity method. Keeps security if true. (This feature will be implemented in next versions) in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.facades/pdffilestamp/set_keepsecurity/ +--- +## PdfFileStamp::set_KeepSecurity method + + +Keeps security if true. (This feature will be implemented in next versions). + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileStamp::set_KeepSecurity(bool value) +``` + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/set_numberingstyle/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/set_numberingstyle/_index.md new file mode 100644 index 0000000000..528836d822 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/set_numberingstyle/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::set_NumberingStyle method +linktitle: set_NumberingStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::set_NumberingStyle method. Sets pabge numbering style. Possible values: NumeralsArabic, NumeralsRomanUppercase, NumeralsRomanLowercase, LettersAppercase, LettersLowercase in C++.' +type: docs +weight: 2100 +url: /cpp/aspose.pdf.facades/pdffilestamp/set_numberingstyle/ +--- +## PdfFileStamp::set_NumberingStyle method + + +Sets pabge numbering style. Possible values: NumeralsArabic, NumeralsRomanUppercase, NumeralsRomanLowercase, LettersAppercase, LettersLowercase. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileStamp::set_NumberingStyle(Aspose::Pdf::NumberingStyle value) +``` + +## See Also + +* Enum [NumberingStyle](../../../aspose.pdf/numberingstyle/) +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/set_optimizesize/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/set_optimizesize/_index.md new file mode 100644 index 0000000000..e64aaefabc --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/set_optimizesize/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::set_OptimizeSize method +linktitle: set_OptimizeSize +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::set_OptimizeSize method. Sets optimization flag. Equal resource streams in resultant file are merged into one PDF object if this flag set. This allows to decrease resultant file size but may cause slower execution and larger memory requirements. Default value: false in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.facades/pdffilestamp/set_optimizesize/ +--- +## PdfFileStamp::set_OptimizeSize method + + +Sets optimization flag. Equal resource streams in resultant file are merged into one PDF object if this flag set. This allows to decrease resultant file size but may cause slower execution and larger memory requirements. Default value: false. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileStamp::set_OptimizeSize(bool value) +``` + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/set_outputfile/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/set_outputfile/_index.md new file mode 100644 index 0000000000..2cb288e32e --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/set_outputfile/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::set_OutputFile method +linktitle: set_OutputFile +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::set_OutputFile method. Sets name and path of output file in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.facades/pdffilestamp/set_outputfile/ +--- +## PdfFileStamp::set_OutputFile method + + +Sets name and path of output file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileStamp::set_OutputFile(System::String value) +``` + +## Remarks + + + + Deprecated + + Use Save(outputFile) method for getting facade results. + + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/set_outputstream/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/set_outputstream/_index.md new file mode 100644 index 0000000000..7fee2168e1 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/set_outputstream/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::set_OutputStream method +linktitle: set_OutputStream +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::set_OutputStream method. Sets output stream in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.facades/pdffilestamp/set_outputstream/ +--- +## PdfFileStamp::set_OutputStream method + + +Sets output stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileStamp::set_OutputStream(System::SharedPtr value) +``` + +## Remarks + + + + Deprecated + + Use Save(outputStream) method for getting facade results. + + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/set_pagenumberrotation/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/set_pagenumberrotation/_index.md new file mode 100644 index 0000000000..c16c049789 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/set_pagenumberrotation/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::set_PageNumberRotation method +linktitle: set_PageNumberRotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::set_PageNumberRotation method. Sets rotation of page number. Rotation is in degrees. Default is 0 in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.facades/pdffilestamp/set_pagenumberrotation/ +--- +## PdfFileStamp::set_PageNumberRotation method + + +Sets rotation of page number. Rotation is in degrees. Default is 0. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileStamp::set_PageNumberRotation(float value) +``` + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/set_response/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/set_response/_index.md new file mode 100644 index 0000000000..de3676df00 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/set_response/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::set_Response method +linktitle: set_Response +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::set_Response method. Sets Response object where result of operation will be stored in C++.' +type: docs +weight: 2700 +url: /cpp/aspose.pdf.facades/pdffilestamp/set_response/ +--- +## PdfFileStamp::set_Response method + + +Sets Response object where result of operation will be stored. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileStamp::set_Response(System::SharedPtr value) +``` + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/set_saveoptions/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/set_saveoptions/_index.md new file mode 100644 index 0000000000..2d48974e47 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/set_saveoptions/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::set_SaveOptions method +linktitle: set_SaveOptions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::set_SaveOptions method. Sets save options when result is stored as HttpResponse. Default value: PdfSaveOptions in C++.' +type: docs +weight: 2900 +url: /cpp/aspose.pdf.facades/pdffilestamp/set_saveoptions/ +--- +## PdfFileStamp::set_SaveOptions method + + +Sets save options when result is stored as HttpResponse. Default value: [PdfSaveOptions](../../../aspose.pdf/pdfsaveoptions/). + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileStamp::set_SaveOptions(System::SharedPtr value) +``` + +## See Also + +* Class [SaveOptions](../../../aspose.pdf/saveoptions/) +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/set_stampid/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/set_stampid/_index.md new file mode 100644 index 0000000000..ec1aa732f1 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/set_stampid/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::set_StampId method +linktitle: set_StampId +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::set_StampId method. Stamp ID of next added stamp (incluiding page headers/hooters/page numbers) in C++.' +type: docs +weight: 2300 +url: /cpp/aspose.pdf.facades/pdffilestamp/set_stampid/ +--- +## PdfFileStamp::set_StampId method + + +[Stamp](../../stamp/) ID of next added stamp (incluiding page headers/hooters/page numbers). + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileStamp::set_StampId(int32_t value) +``` + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/set_startingnumber/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/set_startingnumber/_index.md new file mode 100644 index 0000000000..0548b049bb --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/set_startingnumber/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfFileStamp::set_StartingNumber method +linktitle: set_StartingNumber +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileStamp::set_StartingNumber method. Sets starting number for first page in input file. Next pages will be numbered starting from this value. For example if StartingNumber is set to 100, document pages will have numbers 100, 101, 102 in C++.' +type: docs +weight: 1900 +url: /cpp/aspose.pdf.facades/pdffilestamp/set_startingnumber/ +--- +## PdfFileStamp::set_StartingNumber method + + +Sets starting number for first page in input file. Next pages will be numbered starting from this value. For example if StartingNumber is set to 100, document pages will have numbers 100, 101, 102... + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfFileStamp::set_StartingNumber(int32_t value) +``` + +## See Also + +* Class [PdfFileStamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfjavascriptstripper/_index.md b/english/cpp/aspose.pdf.facades/pdfjavascriptstripper/_index.md new file mode 100644 index 0000000000..89efd0bf81 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfjavascriptstripper/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Facades::PdfJavaScriptStripper class +linktitle: PdfJavaScriptStripper +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfJavaScriptStripper class. Class for removing all Java Script code in C++.' +type: docs +weight: 2700 +url: /cpp/aspose.pdf.facades/pdfjavascriptstripper/ +--- +## PdfJavaScriptStripper class + + +Class for removing all Java Script code. + +```cpp +class PdfJavaScriptStripper : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Strip](./strip/)(System::String, System::String) | Remove Java Script from document. | +| [Strip](./strip/)(System::SharedPtr\, System::SharedPtr\) | Remove Java Script from the document. | +## See Also + +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/pdfjavascriptstripper/strip/_index.md b/english/cpp/aspose.pdf.facades/pdfjavascriptstripper/strip/_index.md new file mode 100644 index 0000000000..084c1e45c6 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfjavascriptstripper/strip/_index.md @@ -0,0 +1,97 @@ +--- +title: Aspose::Pdf::Facades::PdfJavaScriptStripper::Strip method +linktitle: Strip +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfJavaScriptStripper::Strip method. Remove Java Script from document in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.facades/pdfjavascriptstripper/strip/ +--- +## PdfJavaScriptStripper::Strip(System::String, System::String) method + + +Remove Java Script from document. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfJavaScriptStripper::Strip(System::String inputFile, System::String outputFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFile | System::String | File containig the document. | +| outputFile | System::String | File where document will be stored. | + +### ReturnValue + +true if JavaScript was stripped successfully. +## Remarks + + + + + + inputFile + + + File containig the document. + + + + + outputFile + + + File where document will be stored. + + + +## See Also + +* Class [PdfJavaScriptStripper](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfJavaScriptStripper::Strip(System::SharedPtr\, System::SharedPtr\) method + + +Remove Java Script from the document. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfJavaScriptStripper::Strip(System::SharedPtr inStream, System::SharedPtr outStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inStream | System::SharedPtr\ | Stream containing document. | +| outStream | System::SharedPtr\ | Stream where the document will be stored. | + +### ReturnValue + +true if JavaScript was stripped successfully. +## Remarks + + + + + + inStream + + + Stream containing document. + + + + + outStream + + + Stream where the document will be stored. + + + +## See Also + +* Class [PdfJavaScriptStripper](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/_index.md new file mode 100644 index 0000000000..82abc7d324 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/_index.md @@ -0,0 +1,84 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor class +linktitle: PdfPageEditor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor class. Represents a class to edit the PDF file''s page, including rotating page, zooming page, moving position and changing page size in C++.' +type: docs +weight: 2800 +url: /cpp/aspose.pdf.facades/pdfpageeditor/ +--- +## PdfPageEditor class + + +Represents a class to edit the PDF file's page, including rotating page, zooming page, moving position and changing page size. + +```cpp +class PdfPageEditor : public Aspose::Pdf::Facades::SaveableFacade +``` + +## Methods + +| Method | Description | +| --- | --- | +| [ApplyChanges](./applychanges/)() | Apply changes made to the document pages. | +| [BindPdf](../facade/bindpdf/)(System::String) override | Initializes the facade. | +| [BindPdf](../facade/bindpdf/)(System::SharedPtr\) override | Initializes the facade. | +| [BindPdf](../facade/bindpdf/)(System::SharedPtr\) override | Initializes the facade. | +| virtual [BindPdf](../ifacade/bindpdf/)(System::SharedPtr\) | Binds PDF document for editing. | +| [Close](../facade/close/)() override | Disposes [Aspose.Pdf.Document](../../aspose.pdf/document/) bound with a facade. | +| [Dispose](../facade/dispose/)() override | Disposes the facade. | +| [get_DisplayDuration](./get_displayduration/)() | Gets display duration for pages. | +| [get_Document](../facade/get_document/)() const | Gets the document facade is working on. | +| [get_HorizontalAlignment](./get_horizontalalignment/)() | Gets the horizontal alignment of the original PDF content on the result page, default is AlignmentType.Left. | +| [get_PageRotations](./get_pagerotations/)() | A hashtable contains the page number and rotation degree, the key represents the page number, the value of key represents the rotation in degrees. | +| [get_PageSize](./get_pagesize/)() | Gets the output file's page size. | +| [get_ProcessPages](./get_processpages/)() | Gets the page numbers to be edited. By default, each page would be edited. | +| [get_Rotation](./get_rotation/)() | Gets the rotation of the pages, the rotation must be 0, 90, 180 or 270. Default value is 0. | +| [get_TransitionDuration](./get_transitionduration/)() | Gets duration of the transition effect. | +| [get_TransitionType](./get_transitiontype/)() | Gets transition style to use when moving to this page from another during a presentation. | +| [get_VerticalAlignmentType](./get_verticalalignmenttype/)() | Gets or Sets the vertical alignment of the original PDF content on the result page, default is VerticalAlignmentType.Bottom. | +| [get_Zoom](./get_zoom/)() | Get or sets zoom coefficient. Value 1.0 corresponds to 100%. Default value is 1.0. | +| [GetPageBoxSize](./getpageboxsize/)(int32_t, System::String) | Returns size of specified box in document. | +| [GetPageRotation](./getpagerotation/)(int32_t) | Returns the rotation of specified page. | +| [GetPages](./getpages/)() | Returns total number of pages. | +| [GetPageSize](./getpagesize/)(int32_t) | Returns the page size of the specified page. | +| [MovePosition](./moveposition/)(float, float) | Moves the origin from (0, 0) to the point that appointted. The origin is left-bottom and the unit is point(1 inch = 72 points). | +| [PdfPageEditor](./pdfpageeditor/)() | Constructor for [PdfPageEditor](./) class. | +| [PdfPageEditor](./pdfpageeditor/)(System::SharedPtr\) | Constructor for [PdfPageEditor](./) class. | +| [Save](./save/)(System::String) override | Saves changed document into file. | +| [Save](./save/)(System::SharedPtr\) override | Saves changed document into stream. | +| [set_DisplayDuration](./set_displayduration/)(int32_t) | Sets display duration for pages. | +| [set_HorizontalAlignment](./set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets the horizontal alignment of the original PDF content on the result page, default is AlignmentType.Left. | +| [set_PageRotations](./set_pagerotations/)(System::SharedPtr\\>) | A hashtable contains the page number and rotation degree, the key represents the page number, the value of key represents the rotation in degrees. | +| [set_PageSize](./set_pagesize/)(System::SharedPtr\) | Sets the output file's page size. | +| [set_ProcessPages](./set_processpages/)(System::ArrayPtr\) | Sets the page numbers to be edited. By default, each page would be edited. | +| [set_Rotation](./set_rotation/)(int32_t) | Sets the rotation of the pages, the rotation must be 0, 90, 180 or 270. Default value is 0. | +| [set_TransitionDuration](./set_transitionduration/)(int32_t) | Sets duration of the transition effect. | +| [set_TransitionType](./set_transitiontype/)(int32_t) | Sets transition style to use when moving to this page from another during a presentation. | +| [set_VerticalAlignmentType](./set_verticalalignmenttype/)(Aspose::Pdf::VerticalAlignment) | Gets or Sets the vertical alignment of the original PDF content on the result page, default is VerticalAlignmentType.Bottom. | +| [set_Zoom](./set_zoom/)(float) | Get or sets zoom coefficient. Value 1.0 corresponds to 100%. Default value is 1.0. | +## Fields + +| Field | Description | +| --- | --- | +| static constexpr [BLINDH](./blindh/) | Vertical Blinds. | +| static constexpr [BLINDV](./blindv/) | Vertical Blinds. | +| static constexpr [BTWIPE](./btwipe/) | Bottom-Top Wipe. | +| static constexpr [DGLITTER](./dglitter/) | Diagonal Glitter. | +| static constexpr [DISSOLVE](./dissolve/) | The old page dissolves. | +| static constexpr [INBOX](./inbox/) | Inward Box. | +| static constexpr [LRGLITTER](./lrglitter/) | Left-Right Glitter. | +| static constexpr [LRWIPE](./lrwipe/) | Left-Right Wipe. | +| static constexpr [OUTBOX](./outbox/) | Outward Box. | +| static constexpr [RLWIPE](./rlwipe/) | Right-Left Wipe. | +| static constexpr [SPLITHIN](./splithin/) | IN Horizontal Split. | +| static constexpr [SPLITHOUT](./splithout/) | Out Horizontal Split. | +| static constexpr [SPLITVIN](./splitvin/) | In Vertical Split. | +| static constexpr [SPLITVOUT](./splitvout/) | Out Vertical Split. | +| static constexpr [TBGLITTER](./tbglitter/) | Top-Bottom Glitter. | +| static constexpr [TBWIPE](./tbwipe/) | Top-Bottom Wipe. | +## See Also + +* Class [SaveableFacade](../saveablefacade/) +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/applychanges/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/applychanges/_index.md new file mode 100644 index 0000000000..54db5f903e --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/applychanges/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::ApplyChanges method +linktitle: ApplyChanges +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::ApplyChanges method. Apply changes made to the document pages in C++.' +type: docs +weight: 2800 +url: /cpp/aspose.pdf.facades/pdfpageeditor/applychanges/ +--- +## PdfPageEditor::ApplyChanges method + + +Apply changes made to the document pages. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfPageEditor::ApplyChanges() +``` + +## See Also + +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/blindh/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/blindh/_index.md new file mode 100644 index 0000000000..4c231f6358 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/blindh/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::BLINDH field +linktitle: BLINDH +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::BLINDH field. Vertical Blinds in C++.' +type: docs +weight: 3400 +url: /cpp/aspose.pdf.facades/pdfpageeditor/blindh/ +--- +## BLINDH field + + +Vertical Blinds. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfPageEditor::BLINDH +``` + +## See Also + +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/blindv/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/blindv/_index.md new file mode 100644 index 0000000000..272c224b3a --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/blindv/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::BLINDV field +linktitle: BLINDV +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::BLINDV field. Vertical Blinds in C++.' +type: docs +weight: 3300 +url: /cpp/aspose.pdf.facades/pdfpageeditor/blindv/ +--- +## BLINDV field + + +Vertical Blinds. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfPageEditor::BLINDV +``` + +## See Also + +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/btwipe/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/btwipe/_index.md new file mode 100644 index 0000000000..66dc657232 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/btwipe/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::BTWIPE field +linktitle: BTWIPE +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::BTWIPE field. Bottom-Top Wipe in C++.' +type: docs +weight: 3900 +url: /cpp/aspose.pdf.facades/pdfpageeditor/btwipe/ +--- +## BTWIPE field + + +Bottom-Top Wipe. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfPageEditor::BTWIPE +``` + +## See Also + +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/dglitter/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/dglitter/_index.md new file mode 100644 index 0000000000..7955a7c9c7 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/dglitter/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::DGLITTER field +linktitle: DGLITTER +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::DGLITTER field. Diagonal Glitter in C++.' +type: docs +weight: 4400 +url: /cpp/aspose.pdf.facades/pdfpageeditor/dglitter/ +--- +## DGLITTER field + + +Diagonal Glitter. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfPageEditor::DGLITTER +``` + +## See Also + +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/dissolve/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/dissolve/_index.md new file mode 100644 index 0000000000..a0ad41bc26 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/dissolve/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::DISSOLVE field +linktitle: DISSOLVE +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::DISSOLVE field. The old page dissolves in C++.' +type: docs +weight: 4100 +url: /cpp/aspose.pdf.facades/pdfpageeditor/dissolve/ +--- +## DISSOLVE field + + +The old page dissolves. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfPageEditor::DISSOLVE +``` + +## See Also + +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/get_displayduration/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/get_displayduration/_index.md new file mode 100644 index 0000000000..96bf50c991 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/get_displayduration/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::get_DisplayDuration method +linktitle: get_DisplayDuration +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::get_DisplayDuration method. Gets display duration for pages in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.facades/pdfpageeditor/get_displayduration/ +--- +## PdfPageEditor::get_DisplayDuration method + + +Gets display duration for pages. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfPageEditor::get_DisplayDuration() +``` + +## See Also + +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/get_horizontalalignment/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/get_horizontalalignment/_index.md new file mode 100644 index 0000000000..a1142d1cd6 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/get_horizontalalignment/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::get_HorizontalAlignment method +linktitle: get_HorizontalAlignment +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::get_HorizontalAlignment method. Gets the horizontal alignment of the original PDF content on the result page, default is AlignmentType.Left in C++.' +type: docs +weight: 1700 +url: /cpp/aspose.pdf.facades/pdfpageeditor/get_horizontalalignment/ +--- +## PdfPageEditor::get_HorizontalAlignment method + + +Gets the horizontal alignment of the original PDF content on the result page, default is AlignmentType.Left. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::HorizontalAlignment Aspose::Pdf::Facades::PdfPageEditor::get_HorizontalAlignment() +``` + +## See Also + +* Enum [HorizontalAlignment](../../../aspose.pdf/horizontalalignment/) +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/get_pagerotations/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/get_pagerotations/_index.md new file mode 100644 index 0000000000..b5a09d323b --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/get_pagerotations/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::get_PageRotations method +linktitle: get_PageRotations +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::get_PageRotations method. A hashtable contains the page number and rotation degree, the key represents the page number, the value of key represents the rotation in degrees in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.facades/pdfpageeditor/get_pagerotations/ +--- +## PdfPageEditor::get_PageRotations method + + +A hashtable contains the page number and rotation degree, the key represents the page number, the value of key represents the rotation in degrees. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr> Aspose::Pdf::Facades::PdfPageEditor::get_PageRotations() +``` + +## See Also + +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/get_pagesize/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/get_pagesize/_index.md new file mode 100644 index 0000000000..d827c5096b --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/get_pagesize/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::get_PageSize method +linktitle: get_PageSize +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::get_PageSize method. Gets the output file''s page size in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.facades/pdfpageeditor/get_pagesize/ +--- +## PdfPageEditor::get_PageSize method + + +Gets the output file's page size. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::PdfPageEditor::get_PageSize() +``` + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/get_processpages/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/get_processpages/_index.md new file mode 100644 index 0000000000..3af17220ff --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/get_processpages/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::get_ProcessPages method +linktitle: get_ProcessPages +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::get_ProcessPages method. Gets the page numbers to be edited. By default, each page would be edited in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.facades/pdfpageeditor/get_processpages/ +--- +## PdfPageEditor::get_ProcessPages method + + +Gets the page numbers to be edited. By default, each page would be edited. + +```cpp +ASPOSE_PDF_SHARED_API System::ArrayPtr Aspose::Pdf::Facades::PdfPageEditor::get_ProcessPages() +``` + +## See Also + +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/get_rotation/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/get_rotation/_index.md new file mode 100644 index 0000000000..2829533152 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/get_rotation/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::get_Rotation method +linktitle: get_Rotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::get_Rotation method. Gets the rotation of the pages, the rotation must be 0, 90, 180 or 270. Default value is 0 in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.facades/pdfpageeditor/get_rotation/ +--- +## PdfPageEditor::get_Rotation method + + +Gets the rotation of the pages, the rotation must be 0, 90, 180 or 270. Default value is 0. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfPageEditor::get_Rotation() +``` + +## See Also + +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/get_transitionduration/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/get_transitionduration/_index.md new file mode 100644 index 0000000000..0170c7cd85 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/get_transitionduration/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::get_TransitionDuration method +linktitle: get_TransitionDuration +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::get_TransitionDuration method. Gets duration of the transition effect in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.facades/pdfpageeditor/get_transitionduration/ +--- +## PdfPageEditor::get_TransitionDuration method + + +Gets duration of the transition effect. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfPageEditor::get_TransitionDuration() +``` + +## See Also + +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/get_transitiontype/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/get_transitiontype/_index.md new file mode 100644 index 0000000000..e38fb8e31a --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/get_transitiontype/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::get_TransitionType method +linktitle: get_TransitionType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::get_TransitionType method. Gets transition style to use when moving to this page from another during a presentation in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.facades/pdfpageeditor/get_transitiontype/ +--- +## PdfPageEditor::get_TransitionType method + + +Gets transition style to use when moving to this page from another during a presentation. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfPageEditor::get_TransitionType() +``` + +## See Also + +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/get_verticalalignmenttype/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/get_verticalalignmenttype/_index.md new file mode 100644 index 0000000000..6f6c669105 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/get_verticalalignmenttype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::get_VerticalAlignmentType method +linktitle: get_VerticalAlignmentType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::get_VerticalAlignmentType method. Gets or Sets the vertical alignment of the original PDF content on the result page, default is VerticalAlignmentType.Bottom in C++.' +type: docs +weight: 1900 +url: /cpp/aspose.pdf.facades/pdfpageeditor/get_verticalalignmenttype/ +--- +## PdfPageEditor::get_VerticalAlignmentType method + + +Gets or Sets the vertical alignment of the original PDF content on the result page, default is VerticalAlignmentType.Bottom. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::VerticalAlignment Aspose::Pdf::Facades::PdfPageEditor::get_VerticalAlignmentType() +``` + +## See Also + +* Enum [VerticalAlignment](../../../aspose.pdf/verticalalignment/) +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/get_zoom/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/get_zoom/_index.md new file mode 100644 index 0000000000..ecef6fb86d --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/get_zoom/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::get_Zoom method +linktitle: get_Zoom +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::get_Zoom method. Get or sets zoom coefficient. Value 1.0 corresponds to 100%. Default value is 1.0 in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.facades/pdfpageeditor/get_zoom/ +--- +## PdfPageEditor::get_Zoom method + + +Get or sets zoom coefficient. Value 1.0 corresponds to 100%. Default value is 1.0. + +```cpp +ASPOSE_PDF_SHARED_API float Aspose::Pdf::Facades::PdfPageEditor::get_Zoom() +``` + +## See Also + +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/getpageboxsize/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/getpageboxsize/_index.md new file mode 100644 index 0000000000..3ee9bd2817 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/getpageboxsize/_index.md @@ -0,0 +1,54 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::GetPageBoxSize method +linktitle: GetPageBoxSize +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::GetPageBoxSize method. Returns size of specified box in document in C++.' +type: docs +weight: 2600 +url: /cpp/aspose.pdf.facades/pdfpageeditor/getpageboxsize/ +--- +## PdfPageEditor::GetPageBoxSize method + + +Returns size of specified box in document. + +```cpp +ASPOSE_PDF_SHARED_API System::Drawing::Rectangle Aspose::Pdf::Facades::PdfPageEditor::GetPageBoxSize(int32_t page, System::String pageBoxName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | int32_t | [Page](../../../aspose.pdf/page/) index. [Document](../../../aspose.pdf/document/) pages are numbered from 1. | +| pageBoxName | System::String | Box type name. Valid values are: "art", "bleed", "crop", "media", "trim". | + +### ReturnValue + +[Rectangle](../../../aspose.pdf/rectangle/) which contains requested box. +## Remarks + + + + + + page + + + + Page index. Document pages are numbered from 1. + + + + + pageBoxName + + + Box type name. Valid values are: "art", "bleed", "crop", "media", "trim". + + + +## See Also + +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/getpagerotation/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/getpagerotation/_index.md new file mode 100644 index 0000000000..e9ffd7ac18 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/getpagerotation/_index.md @@ -0,0 +1,45 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::GetPageRotation method +linktitle: GetPageRotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::GetPageRotation method. Returns the rotation of specified page in C++.' +type: docs +weight: 2500 +url: /cpp/aspose.pdf.facades/pdfpageeditor/getpagerotation/ +--- +## PdfPageEditor::GetPageRotation method + + +Returns the rotation of specified page. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfPageEditor::GetPageRotation(int32_t page) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | int32_t | [Page](../../../aspose.pdf/page/) index. [Document](../../../aspose.pdf/document/) pages are numbered from 1. | + +### ReturnValue + +[Page](../../../aspose.pdf/page/) rotation in degrees. +## Remarks + + + + + + page + + + + Page index. Document pages are numbered from 1. + + + +## See Also + +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/getpages/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/getpages/_index.md new file mode 100644 index 0000000000..3a02205e28 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/getpages/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::GetPages method +linktitle: GetPages +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::GetPages method. Returns total number of pages in C++.' +type: docs +weight: 2300 +url: /cpp/aspose.pdf.facades/pdfpageeditor/getpages/ +--- +## PdfPageEditor::GetPages method + + +Returns total number of pages. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfPageEditor::GetPages() +``` + + +### ReturnValue + +Number of pages. + + + +## See Also + +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/getpagesize/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/getpagesize/_index.md new file mode 100644 index 0000000000..673a7a04db --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/getpagesize/_index.md @@ -0,0 +1,46 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::GetPageSize method +linktitle: GetPageSize +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::GetPageSize method. Returns the page size of the specified page in C++.' +type: docs +weight: 2400 +url: /cpp/aspose.pdf.facades/pdfpageeditor/getpagesize/ +--- +## PdfPageEditor::GetPageSize method + + +Returns the page size of the specified page. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::PdfPageEditor::GetPageSize(int32_t page) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | int32_t | [Page](../../../aspose.pdf/page/) index. [Document](../../../aspose.pdf/document/) pages are numbered from 1. | + +### ReturnValue + +Result is instance of [PageSize](../../../aspose.pdf/pagesize/). Use Width and Height properties of the returned object to get page width and height. +## Remarks + + + + + + page + + + + Page index. Document pages are numbered from 1. + + + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/inbox/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/inbox/_index.md new file mode 100644 index 0000000000..4c0a00754e --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/inbox/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::INBOX field +linktitle: INBOX +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::INBOX field. Inward Box in C++.' +type: docs +weight: 3500 +url: /cpp/aspose.pdf.facades/pdfpageeditor/inbox/ +--- +## INBOX field + + +Inward Box. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfPageEditor::INBOX +``` + +## See Also + +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/lrglitter/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/lrglitter/_index.md new file mode 100644 index 0000000000..e4cd5d9ab9 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/lrglitter/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::LRGLITTER field +linktitle: LRGLITTER +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::LRGLITTER field. Left-Right Glitter in C++.' +type: docs +weight: 4200 +url: /cpp/aspose.pdf.facades/pdfpageeditor/lrglitter/ +--- +## LRGLITTER field + + +Left-Right Glitter. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfPageEditor::LRGLITTER +``` + +## See Also + +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/lrwipe/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/lrwipe/_index.md new file mode 100644 index 0000000000..6eef1730fd --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/lrwipe/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::LRWIPE field +linktitle: LRWIPE +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::LRWIPE field. Left-Right Wipe in C++.' +type: docs +weight: 3700 +url: /cpp/aspose.pdf.facades/pdfpageeditor/lrwipe/ +--- +## LRWIPE field + + +Left-Right Wipe. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfPageEditor::LRWIPE +``` + +## See Also + +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/moveposition/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/moveposition/_index.md new file mode 100644 index 0000000000..2c7d848d67 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/moveposition/_index.md @@ -0,0 +1,49 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::MovePosition method +linktitle: MovePosition +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::MovePosition method. Moves the origin from (0, 0) to the point that appointted. The origin is left-bottom and the unit is point(1 inch = 72 points) in C++.' +type: docs +weight: 2200 +url: /cpp/aspose.pdf.facades/pdfpageeditor/moveposition/ +--- +## PdfPageEditor::MovePosition method + + +Moves the origin from (0, 0) to the point that appointted. The origin is left-bottom and the unit is point(1 inch = 72 points). + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfPageEditor::MovePosition(float moveX, float moveY) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| moveX | float | X-coordinate. | +| moveY | float | Y-coordinate. | +## Remarks + + + + + + moveX + + + X-coordinate. + + + + + moveY + + + Y-coordinate. + + + +## See Also + +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/outbox/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/outbox/_index.md new file mode 100644 index 0000000000..aca1d74c4c --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/outbox/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::OUTBOX field +linktitle: OUTBOX +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::OUTBOX field. Outward Box in C++.' +type: docs +weight: 3600 +url: /cpp/aspose.pdf.facades/pdfpageeditor/outbox/ +--- +## OUTBOX field + + +Outward Box. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfPageEditor::OUTBOX +``` + +## See Also + +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/pdfpageeditor/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/pdfpageeditor/_index.md new file mode 100644 index 0000000000..666d7fbe82 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/pdfpageeditor/_index.md @@ -0,0 +1,56 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::PdfPageEditor constructor +linktitle: PdfPageEditor +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::PdfPageEditor constructor. Constructor for PdfPageEditor class in C++.' +type: docs +weight: 2100 +url: /cpp/aspose.pdf.facades/pdfpageeditor/pdfpageeditor/ +--- +## PdfPageEditor::PdfPageEditor() constructor + + +Constructor for [PdfPageEditor](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfPageEditor::PdfPageEditor() +``` + +## See Also + +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfPageEditor::PdfPageEditor(System::SharedPtr\) constructor + + +Constructor for [PdfPageEditor](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfPageEditor::PdfPageEditor(System::SharedPtr document) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | [Document](../../../aspose.pdf/document/) object which should be processed. | +## Remarks + + + + + + document + + + + Document object which should be processed. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/rlwipe/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/rlwipe/_index.md new file mode 100644 index 0000000000..784443d00f --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/rlwipe/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::RLWIPE field +linktitle: RLWIPE +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::RLWIPE field. Right-Left Wipe in C++.' +type: docs +weight: 3800 +url: /cpp/aspose.pdf.facades/pdfpageeditor/rlwipe/ +--- +## RLWIPE field + + +Right-Left Wipe. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfPageEditor::RLWIPE +``` + +## See Also + +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/save/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/save/_index.md new file mode 100644 index 0000000000..1f46f623c1 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/save/_index.md @@ -0,0 +1,71 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::Save method +linktitle: Save +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::Save method. Saves changed document into file in C++.' +type: docs +weight: 2700 +url: /cpp/aspose.pdf.facades/pdfpageeditor/save/ +--- +## PdfPageEditor::Save(System::String) method + + +Saves changed document into file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfPageEditor::Save(System::String outputFile) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputFile | System::String | Path to file where document will be saved. | +## Remarks + + + + + + outputFile + + + Path to file where document will be saved. + + + +## See Also + +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfPageEditor::Save(System::SharedPtr\) method + + +Saves changed document into stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfPageEditor::Save(System::SharedPtr outputStream) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| outputStream | System::SharedPtr\ | Stream where changed PDF document will be saved. | +## Remarks + + + + + + outputStream + + + Stream where changed PDF document will be saved. + + + +## See Also + +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/set_displayduration/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/set_displayduration/_index.md new file mode 100644 index 0000000000..08ca8eb50f --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/set_displayduration/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::set_DisplayDuration method +linktitle: set_DisplayDuration +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::set_DisplayDuration method. Sets display duration for pages in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.facades/pdfpageeditor/set_displayduration/ +--- +## PdfPageEditor::set_DisplayDuration method + + +Sets display duration for pages. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfPageEditor::set_DisplayDuration(int32_t value) +``` + +## See Also + +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/set_horizontalalignment/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/set_horizontalalignment/_index.md new file mode 100644 index 0000000000..7d433abd22 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/set_horizontalalignment/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::set_HorizontalAlignment method +linktitle: set_HorizontalAlignment +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::set_HorizontalAlignment method. Sets the horizontal alignment of the original PDF content on the result page, default is AlignmentType.Left in C++.' +type: docs +weight: 1800 +url: /cpp/aspose.pdf.facades/pdfpageeditor/set_horizontalalignment/ +--- +## PdfPageEditor::set_HorizontalAlignment method + + +Sets the horizontal alignment of the original PDF content on the result page, default is AlignmentType.Left. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfPageEditor::set_HorizontalAlignment(Aspose::Pdf::HorizontalAlignment value) +``` + +## See Also + +* Enum [HorizontalAlignment](../../../aspose.pdf/horizontalalignment/) +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/set_pagerotations/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/set_pagerotations/_index.md new file mode 100644 index 0000000000..873aec2409 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/set_pagerotations/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::set_PageRotations method +linktitle: set_PageRotations +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::set_PageRotations method. A hashtable contains the page number and rotation degree, the key represents the page number, the value of key represents the rotation in degrees in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.facades/pdfpageeditor/set_pagerotations/ +--- +## PdfPageEditor::set_PageRotations method + + +A hashtable contains the page number and rotation degree, the key represents the page number, the value of key represents the rotation in degrees. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfPageEditor::set_PageRotations(System::SharedPtr> value) +``` + +## See Also + +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/set_pagesize/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/set_pagesize/_index.md new file mode 100644 index 0000000000..922e3d18cf --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/set_pagesize/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::set_PageSize method +linktitle: set_PageSize +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::set_PageSize method. Sets the output file''s page size in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf.facades/pdfpageeditor/set_pagesize/ +--- +## PdfPageEditor::set_PageSize method + + +Sets the output file's page size. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfPageEditor::set_PageSize(System::SharedPtr value) +``` + +## See Also + +* Class [PageSize](../../../aspose.pdf/pagesize/) +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/set_processpages/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/set_processpages/_index.md new file mode 100644 index 0000000000..5a8460e6fd --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/set_processpages/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::set_ProcessPages method +linktitle: set_ProcessPages +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::set_ProcessPages method. Sets the page numbers to be edited. By default, each page would be edited in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.facades/pdfpageeditor/set_processpages/ +--- +## PdfPageEditor::set_ProcessPages method + + +Sets the page numbers to be edited. By default, each page would be edited. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfPageEditor::set_ProcessPages(System::ArrayPtr value) +``` + +## See Also + +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/set_rotation/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/set_rotation/_index.md new file mode 100644 index 0000000000..4ef4483541 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/set_rotation/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::set_Rotation method +linktitle: set_Rotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::set_Rotation method. Sets the rotation of the pages, the rotation must be 0, 90, 180 or 270. Default value is 0 in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.facades/pdfpageeditor/set_rotation/ +--- +## PdfPageEditor::set_Rotation method + + +Sets the rotation of the pages, the rotation must be 0, 90, 180 or 270. Default value is 0. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfPageEditor::set_Rotation(int32_t value) +``` + +## See Also + +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/set_transitionduration/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/set_transitionduration/_index.md new file mode 100644 index 0000000000..c3e2666d6a --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/set_transitionduration/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::set_TransitionDuration method +linktitle: set_TransitionDuration +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::set_TransitionDuration method. Sets duration of the transition effect in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.facades/pdfpageeditor/set_transitionduration/ +--- +## PdfPageEditor::set_TransitionDuration method + + +Sets duration of the transition effect. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfPageEditor::set_TransitionDuration(int32_t value) +``` + +## See Also + +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/set_transitiontype/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/set_transitiontype/_index.md new file mode 100644 index 0000000000..de268f381d --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/set_transitiontype/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::set_TransitionType method +linktitle: set_TransitionType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::set_TransitionType method. Sets transition style to use when moving to this page from another during a presentation in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.facades/pdfpageeditor/set_transitiontype/ +--- +## PdfPageEditor::set_TransitionType method + + +Sets transition style to use when moving to this page from another during a presentation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfPageEditor::set_TransitionType(int32_t value) +``` + +## See Also + +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/set_verticalalignmenttype/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/set_verticalalignmenttype/_index.md new file mode 100644 index 0000000000..2149912ffc --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/set_verticalalignmenttype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::set_VerticalAlignmentType method +linktitle: set_VerticalAlignmentType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::set_VerticalAlignmentType method. Gets or Sets the vertical alignment of the original PDF content on the result page, default is VerticalAlignmentType.Bottom in C++.' +type: docs +weight: 2000 +url: /cpp/aspose.pdf.facades/pdfpageeditor/set_verticalalignmenttype/ +--- +## PdfPageEditor::set_VerticalAlignmentType method + + +Gets or Sets the vertical alignment of the original PDF content on the result page, default is VerticalAlignmentType.Bottom. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfPageEditor::set_VerticalAlignmentType(Aspose::Pdf::VerticalAlignment value) +``` + +## See Also + +* Enum [VerticalAlignment](../../../aspose.pdf/verticalalignment/) +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/set_zoom/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/set_zoom/_index.md new file mode 100644 index 0000000000..a9eedd9449 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/set_zoom/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::set_Zoom method +linktitle: set_Zoom +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::set_Zoom method. Get or sets zoom coefficient. Value 1.0 corresponds to 100%. Default value is 1.0 in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.facades/pdfpageeditor/set_zoom/ +--- +## PdfPageEditor::set_Zoom method + + +Get or sets zoom coefficient. Value 1.0 corresponds to 100%. Default value is 1.0. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfPageEditor::set_Zoom(float value) +``` + +## See Also + +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/splithin/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/splithin/_index.md new file mode 100644 index 0000000000..1e32237514 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/splithin/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::SPLITHIN field +linktitle: SPLITHIN +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::SPLITHIN field. IN Horizontal Split in C++.' +type: docs +weight: 3200 +url: /cpp/aspose.pdf.facades/pdfpageeditor/splithin/ +--- +## SPLITHIN field + + +IN Horizontal Split. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfPageEditor::SPLITHIN +``` + +## See Also + +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/splithout/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/splithout/_index.md new file mode 100644 index 0000000000..93e975af84 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/splithout/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::SPLITHOUT field +linktitle: SPLITHOUT +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::SPLITHOUT field. Out Horizontal Split in C++.' +type: docs +weight: 3000 +url: /cpp/aspose.pdf.facades/pdfpageeditor/splithout/ +--- +## SPLITHOUT field + + +Out Horizontal Split. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfPageEditor::SPLITHOUT +``` + +## See Also + +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/splitvin/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/splitvin/_index.md new file mode 100644 index 0000000000..cd004945ad --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/splitvin/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::SPLITVIN field +linktitle: SPLITVIN +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::SPLITVIN field. In Vertical Split in C++.' +type: docs +weight: 3100 +url: /cpp/aspose.pdf.facades/pdfpageeditor/splitvin/ +--- +## SPLITVIN field + + +In Vertical Split. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfPageEditor::SPLITVIN +``` + +## See Also + +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/splitvout/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/splitvout/_index.md new file mode 100644 index 0000000000..b1cea6c8c9 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/splitvout/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::SPLITVOUT field +linktitle: SPLITVOUT +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::SPLITVOUT field. Out Vertical Split in C++.' +type: docs +weight: 2900 +url: /cpp/aspose.pdf.facades/pdfpageeditor/splitvout/ +--- +## SPLITVOUT field + + +Out Vertical Split. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfPageEditor::SPLITVOUT +``` + +## See Also + +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/tbglitter/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/tbglitter/_index.md new file mode 100644 index 0000000000..e5c66424eb --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/tbglitter/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::TBGLITTER field +linktitle: TBGLITTER +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::TBGLITTER field. Top-Bottom Glitter in C++.' +type: docs +weight: 4300 +url: /cpp/aspose.pdf.facades/pdfpageeditor/tbglitter/ +--- +## TBGLITTER field + + +Top-Bottom Glitter. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfPageEditor::TBGLITTER +``` + +## See Also + +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfpageeditor/tbwipe/_index.md b/english/cpp/aspose.pdf.facades/pdfpageeditor/tbwipe/_index.md new file mode 100644 index 0000000000..534b1de994 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfpageeditor/tbwipe/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfPageEditor::TBWIPE field +linktitle: TBWIPE +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPageEditor::TBWIPE field. Top-Bottom Wipe in C++.' +type: docs +weight: 4000 +url: /cpp/aspose.pdf.facades/pdfpageeditor/tbwipe/ +--- +## TBWIPE field + + +Top-Bottom Wipe. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfPageEditor::TBWIPE +``` + +## See Also + +* Class [PdfPageEditor](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfprintpageinfo/_index.md b/english/cpp/aspose.pdf.facades/pdfprintpageinfo/_index.md new file mode 100644 index 0000000000..a0fae95755 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfprintpageinfo/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Facades::PdfPrintPageInfo class +linktitle: PdfPrintPageInfo +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPrintPageInfo class. Represents an object that contains current printing page info in C++.' +type: docs +weight: 2900 +url: /cpp/aspose.pdf.facades/pdfprintpageinfo/ +--- +## PdfPrintPageInfo class + + +Represents an object that contains current printing page info. + +```cpp +class PdfPrintPageInfo : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_PageNumber](./get_pagenumber/)() const | Gets currently printed page number;. | +## See Also + +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/pdfprintpageinfo/get_pagenumber/_index.md b/english/cpp/aspose.pdf.facades/pdfprintpageinfo/get_pagenumber/_index.md new file mode 100644 index 0000000000..747ded1556 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfprintpageinfo/get_pagenumber/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfPrintPageInfo::get_PageNumber method +linktitle: get_PageNumber +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfPrintPageInfo::get_PageNumber method. Gets currently printed page number; in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.facades/pdfprintpageinfo/get_pagenumber/ +--- +## PdfPrintPageInfo::get_PageNumber method + + +Gets currently printed page number;. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfPrintPageInfo::get_PageNumber() const +``` + +## See Also + +* Class [PdfPrintPageInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfproducer/_index.md b/english/cpp/aspose.pdf.facades/pdfproducer/_index.md new file mode 100644 index 0000000000..6140ab418f --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfproducer/_index.md @@ -0,0 +1,34 @@ +--- +title: Aspose::Pdf::Facades::PdfProducer class +linktitle: PdfProducer +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfProducer class. Represents a class to produce PDF from other formats in C++.' +type: docs +weight: 3000 +url: /cpp/aspose.pdf.facades/pdfproducer/ +--- +## PdfProducer class + + +Represents a class to produce PDF from other formats. + +```cpp +class PdfProducer : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [Produce](./produce/)(System::SharedPtr\, ImportFormat, System::SharedPtr\) | Produce the PDF stream using specified import format. | +| static [Produce](./produce/)(System::String, ImportFormat, System::SharedPtr\) | Produce the PDF stream using specified import format. | +| static [Produce](./produce/)(System::SharedPtr\, ImportFormat, System::String) | Produce the PDF file using specified import format. | +| static [Produce](./produce/)(System::String, ImportFormat, System::String) | Produce the PDF file using specified import format. | +| static [Produce](./produce/)(System::String, System::SharedPtr\, System::SharedPtr\) | Produce the PDF stream using specified import option. | +| static [Produce](./produce/)(System::SharedPtr\, System::SharedPtr\, System::String) | Produce the PDF file using specified import option. | +| static [Produce](./produce/)(System::String, System::SharedPtr\, System::String) | Produce the PDF file using specified import option. | +| static [Produce](./produce/)(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) | Produce the PDF file using specified import option. | +## See Also + +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/pdfproducer/produce/_index.md b/english/cpp/aspose.pdf.facades/pdfproducer/produce/_index.md new file mode 100644 index 0000000000..8f9d504a54 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfproducer/produce/_index.md @@ -0,0 +1,577 @@ +--- +title: Aspose::Pdf::Facades::PdfProducer::Produce method +linktitle: Produce +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfProducer::Produce method. Produce the PDF stream using specified import format in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.facades/pdfproducer/produce/ +--- +## PdfProducer::Produce(System::SharedPtr\, ImportFormat, System::SharedPtr\) method + + +Produce the PDF stream using specified import format. + +```cpp +static ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfProducer::Produce(System::SharedPtr inputStream, ImportFormat format, System::SharedPtr outputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Input stream. | +| format | ImportFormat | Import format. | +| outputStream | System::SharedPtr\ | Output PDF stream. | +## Remarks + + + + + + inputStream + + + Input stream. + + + + + format + + + Import format. + + + + + outputStream + + + Output PDF stream. + + + + + + InvalidFileFormatException + + + The exception is thrown when a file is invalid. + + + + + ArgumentNullException + + + Input or output stream is null + + + +## See Also + +* Enum [ImportFormat](../../../aspose.pdf/importformat/) +* Class [PdfProducer](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfProducer::Produce(System::String, ImportFormat, System::SharedPtr\) method + + +Produce the PDF stream using specified import format. + +```cpp +static ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfProducer::Produce(System::String inputFileName, ImportFormat format, System::SharedPtr outputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFileName | System::String | Input file name. | +| format | ImportFormat | Import format. | +| outputStream | System::SharedPtr\ | Output PDF stream. | +## Remarks + + + + + + inputFileName + + + Input file name. + + + + + format + + + Import format. + + + + + outputStream + + + Output PDF stream. + + + + + + InvalidFileFormatException + + + The exception is thrown when a file is invalid. + + + + + ArgumentNullException + + + Output stream is null + + + + + ArgumentException + + + Input file name is an empty string + + + +## See Also + +* Enum [ImportFormat](../../../aspose.pdf/importformat/) +* Class [PdfProducer](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfProducer::Produce(System::SharedPtr\, ImportFormat, System::String) method + + +Produce the PDF file using specified import format. + +```cpp +static ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfProducer::Produce(System::SharedPtr inputStream, ImportFormat format, System::String outputFileName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Input stream. | +| format | ImportFormat | Import format. | +| outputFileName | System::String | Output PDF file | +## Remarks + + + + + + inputStream + + + Input stream. + + + + + format + + + Import format. + + + + + outputFileName + + + Output PDF file + + + + + + InvalidFileFormatException + + + The exception is thrown when a file is invalid. + + + + + ArgumentNullException + + + Input stream is null + + + + + ArgumentException + + + Output file name is an empty string + + + +## See Also + +* Enum [ImportFormat](../../../aspose.pdf/importformat/) +* Class [PdfProducer](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfProducer::Produce(System::String, ImportFormat, System::String) method + + +Produce the PDF file using specified import format. + +```cpp +static ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfProducer::Produce(System::String inputFileName, ImportFormat format, System::String outputFileName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFileName | System::String | Input file name. | +| format | ImportFormat | Import format. | +| outputFileName | System::String | Output PDF file | +## Remarks + + + + + + inputFileName + + + Input file name. + + + + + format + + + Import format. + + + + + outputFileName + + + Output PDF file + + + + + + InvalidFileFormatException + + + The exception is thrown when a file is invalid. + + + + + ArgumentException + + + Input or output file name is an empty string + + + +## See Also + +* Enum [ImportFormat](../../../aspose.pdf/importformat/) +* Class [PdfProducer](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfProducer::Produce(System::String, System::SharedPtr\, System::SharedPtr\) method + + +Produce the PDF stream using specified import option. + +```cpp +static ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfProducer::Produce(System::String inputFileName, System::SharedPtr options, System::SharedPtr outputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFileName | System::String | Input file name. | +| options | System::SharedPtr\ | Import option. | +| outputStream | System::SharedPtr\ | Output PDF stream. | +## Remarks + + + + + + inputFileName + + + Input file name. + + + + + options + + + Import option. + + + + + outputStream + + + Output PDF stream. + + + + + + InvalidFileFormatException + + + The exception is thrown when a file is invalid. + + + + + ArgumentNullException + + + Output stream is null + + + + + ArgumentException + + + Input file name is an empty string + + + +## See Also + +* Class [ImportOptions](../../../aspose.pdf/importoptions/) +* Class [PdfProducer](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfProducer::Produce(System::SharedPtr\, System::SharedPtr\, System::String) method + + +Produce the PDF file using specified import option. + +```cpp +static ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfProducer::Produce(System::SharedPtr inputStream, System::SharedPtr options, System::String outputFileName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Input stream. | +| options | System::SharedPtr\ | Import option. | +| outputFileName | System::String | Output PDF file. | +## Remarks + + + + + + inputStream + + + Input stream. + + + + + options + + + Import option. + + + + + outputFileName + + + Output PDF file. + + + + + + InvalidFileFormatException + + + The exception is thrown when a file is invalid. + + + + + ArgumentNullException + + + Input stream is null + + + + + ArgumentException + + + Output file name is an empty string + + + +## See Also + +* Class [ImportOptions](../../../aspose.pdf/importoptions/) +* Class [PdfProducer](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfProducer::Produce(System::String, System::SharedPtr\, System::String) method + + +Produce the PDF file using specified import option. + +```cpp +static ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfProducer::Produce(System::String inputFileName, System::SharedPtr options, System::String outputFileName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputFileName | System::String | Input file name. | +| options | System::SharedPtr\ | Import option. | +| outputFileName | System::String | Output PDF stream. | +## Remarks + + + + + + inputFileName + + + Input file name. + + + + + options + + + Import option. + + + + + outputFileName + + + Output PDF stream. + + + + + + InvalidFileFormatException + + + The exception is thrown when a file is invalid. + + + + + ArgumentException + + + Input or output file name is an empty string + + + +## See Also + +* Class [ImportOptions](../../../aspose.pdf/importoptions/) +* Class [PdfProducer](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfProducer::Produce(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) method + + +Produce the PDF file using specified import option. + +```cpp +static ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfProducer::Produce(System::SharedPtr inputStream, System::SharedPtr options, System::SharedPtr outputStream) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| inputStream | System::SharedPtr\ | Input stream. | +| options | System::SharedPtr\ | Import option. | +| outputStream | System::SharedPtr\ | Output PDF stream. | +## Remarks + + + + + + inputStream + + + Input stream. + + + + + options + + + Import option. + + + + + outputStream + + + Output PDF stream. + + + + + + InvalidFileFormatException + + + The exception is thrown when a file is invalid. + + + + + ArgumentNullException + + + Input or output stream is null. + + + +## See Also + +* Class [ImportOptions](../../../aspose.pdf/importoptions/) +* Class [PdfProducer](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfquerypagesettingseventhandler/_index.md b/english/cpp/aspose.pdf.facades/pdfquerypagesettingseventhandler/_index.md new file mode 100644 index 0000000000..f88fe65bac --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfquerypagesettingseventhandler/_index.md @@ -0,0 +1,22 @@ +--- +title: Aspose::Pdf::Facades::PdfQueryPageSettingsEventHandler typedef +linktitle: PdfQueryPageSettingsEventHandler +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Facades::PdfQueryPageSettingsEventHandler typedef in C++.' +type: docs +weight: 5300 +url: /cpp/aspose.pdf.facades/pdfquerypagesettingseventhandler/ +--- +## PdfQueryPageSettingsEventHandler typedef + + + + +```cpp +using Aspose::Pdf::Facades::PdfQueryPageSettingsEventHandler = System::MulticastDelegate, System::SharedPtr, System::SharedPtr)> +``` + +## See Also + +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/_index.md b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/_index.md new file mode 100644 index 0000000000..6e843fcb2d --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/_index.md @@ -0,0 +1,70 @@ +--- +title: Aspose::Pdf::Facades::PdfXmpMetadata class +linktitle: PdfXmpMetadata +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfXmpMetadata class. Class for manipulation with XMP metadata in C++.' +type: docs +weight: 3100 +url: /cpp/aspose.pdf.facades/pdfxmpmetadata/ +--- +## PdfXmpMetadata class + + +Class for manipulation with XMP metadata. + +```cpp +class PdfXmpMetadata : public Aspose::Pdf::Facades::SaveableFacade, + public System::Collections::Generic::IDictionary> +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Add](./add/)(const DefaultMetadataProperties\&, const System::SharedPtr\\&) | Adds value to XMP metadata. | +| [Add](./add/)(System::SharedPtr\, System::String, System::String, System::String) | Adds extension field into metadata. | +| [Add](./add/)(const System::String\&, const System::SharedPtr\\&) override | Adds new element to the dictionary object. | +| [Add](./add/)(const System::String\&, const System::SharedPtr\\&) | Adds new element to the dictionary object. | +| [Add](./add/)(const System::Collections::Generic::KeyValuePair\\>\&) override | Adds pair with key and value into the dictionary. | +| [BindPdf](../facade/bindpdf/)(System::String) override | Initializes the facade. | +| [BindPdf](../facade/bindpdf/)(System::SharedPtr\) override | Initializes the facade. | +| [BindPdf](../facade/bindpdf/)(System::SharedPtr\) override | Initializes the facade. | +| virtual [BindPdf](../ifacade/bindpdf/)(System::SharedPtr\) | Binds PDF document for editing. | +| [Clear](./clear/)() override | Removes all elements from the object. | +| [Close](../facade/close/)() override | Disposes [Aspose.Pdf.Document](../../aspose.pdf/document/) bound with a facade. | +| [Contains](./contains/)(const System::String\&) const | Checks if dictionary contains the specified key. | +| [Contains](./contains/)(const DefaultMetadataProperties\&) const | Checks if dictionary contains the specified property. | +| [Contains](./contains/)(const System::Collections::Generic::KeyValuePair\\>\&) const override | Checks does specified key-value pair is contained in the dictionary. | +| [ContainsKey](./containskey/)(const System::String\&) const override | Determines does this dictionary contasins specified key. | +| [CopyTo](./copyto/)(System::ArrayPtr\\>\>, int32_t) override | Copy metadata into array. | +| [Dispose](../facade/dispose/)() override | Disposes the facade. | +| [get_Count](./get_count/)() const override | Gets count if items in the collection. | +| [get_Document](../facade/get_document/)() const | Gets the document facade is working on. | +| [get_ExtensionFields](./get_extensionfields/)() | Gets the dictionary of extension fields. | +| [get_IsFixedSize](./get_isfixedsize/)() const | Returns true is collection has fixed size. | +| [get_IsReadOnly](./get_isreadonly/)() const override | Returns true if collection is read-only. | +| [get_IsSynchronized](./get_issynchronized/)() | Returns true if collection is synchronized. | +| [GetEnumerator](./getenumerator/)() override | Gets enumerator object of the dictionary. | +| [GetNamespaceURIByPrefix](./getnamespaceuribyprefix/)(System::String) | Gets namespace URI by prefix. | +| [GetPrefixByNamespaceURI](./getprefixbynamespaceuri/)(System::String) | Gets the prefix by namespace URI. | +| [GetXmpMetadata](./getxmpmetadata/)() | Get the XmpMetadata of the input pdf in a xml format. | +| [GetXmpMetadata](./getxmpmetadata/)(System::String) | Get a part of the XmpMetadata of the input pdf according to a meta name. | +| [idx_get](./idx_get/)(const System::String\&) const override | Gets value by key. | +| [idx_get](./idx_get/)(const DefaultMetadataProperties\&) const | Gets value of XMP metadata by key. | +| [idx_set](./idx_set/)(const System::String\&, System::SharedPtr\) override | Sets value by key. | +| [idx_set](./idx_set/)(const DefaultMetadataProperties\&, System::SharedPtr\) | Gets value of XMP metadata by key. | +| [PdfXmpMetadata](./pdfxmpmetadata/)() | Constructor for [PdfXmpMetadata](./). | +| [PdfXmpMetadata](./pdfxmpmetadata/)(System::SharedPtr\) | Initializes new [PdfXmpMetadata](./) object on base of the *document* . | +| [RegisterNamespaceURI](./registernamespaceuri/)(System::String, System::String) | Registers the namespace URI. | +| [Remove](./remove/)(DefaultMetadataProperties) | Removes element with specified key. | +| [Remove](./remove/)(const System::String\&) override | Removes key from the dictionary. | +| [Remove](./remove/)(const System::Collections::Generic::KeyValuePair\\>\&) override | Removes key/value pair from the collection. | +| [Save](../saveablefacade/save/)(System::String) override | Saves the PDF document to the specified file. | +| [Save](../saveablefacade/save/)(System::SharedPtr\) override | Saves the PDF document to the specified stream. | +| [SetTemplateWeakPtr](./settemplateweakptr/)(uint32_t) override | Set n'th template argument a weak pointer (rather than shared). Allows switching pointers in containers to weak mode. | +| [TryGetValue](./trygetvalue/)(const System::String\&, System::SharedPtr\\&) const override | Tries to find key in the dictionary and retreives value if found. | +## See Also + +* Class [SaveableFacade](../saveablefacade/) +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/add/_index.md b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/add/_index.md new file mode 100644 index 0000000000..9a5998c9ed --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/add/_index.md @@ -0,0 +1,223 @@ +--- +title: Aspose::Pdf::Facades::PdfXmpMetadata::Add method +linktitle: Add +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfXmpMetadata::Add method. Adds value to XMP metadata in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.facades/pdfxmpmetadata/add/ +--- +## PdfXmpMetadata::Add(const DefaultMetadataProperties\&, const System::SharedPtr\\&) method + + +Adds value to XMP metadata. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfXmpMetadata::Add(const DefaultMetadataProperties &key, const System::SharedPtr &value) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| key | const DefaultMetadataProperties\& | The key name. | +| value | const System::SharedPtr\\& | Value which will be added. | +## Remarks + + + + + + key + + + The key name. + + + + + value + + + Value which will be added. + + + +## See Also + +* Enum [DefaultMetadataProperties](../../defaultmetadataproperties/) +* Class [XmpValue](../../../aspose.pdf/xmpvalue/) +* Class [PdfXmpMetadata](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfXmpMetadata::Add(System::SharedPtr\, System::String, System::String, System::String) method + + +Adds extension field into metadata. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfXmpMetadata::Add(System::SharedPtr xmpPdfAExtensionObject, System::String namespacePrefix, System::String namespaceUri, System::String schemaDescription) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| xmpPdfAExtensionObject | System::SharedPtr\ | The pdf extension object to add. | +| namespacePrefix | System::String | The prefix of schema. | +| namespaceUri | System::String | The namespace uri of schema. | +| schemaDescription | System::String | The optional description of schema. | +## Remarks + + + + + + xmpPdfAExtensionObject + + + The pdf extension object to add. + + + + + namespacePrefix + + + The prefix of schema. + + + + + namespaceUri + + + The namespace uri of schema. + + + + + schemaDescription + + + The optional description of schema. + + + +## See Also + +* Class [XmpPdfAExtensionObject](../../../aspose.pdf/xmppdfaextensionobject/) +* Class [PdfXmpMetadata](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfXmpMetadata::Add(const System::String\&, const System::SharedPtr\\&) method + + +Adds new element to the dictionary object. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfXmpMetadata::Add(const System::String &key, const System::SharedPtr &value) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| key | const System::String\& | Key of new element. | +| value | const System::SharedPtr\\& | Value of the element. | +## Remarks + + + + + + key + + + Key of new element. + + + + + value + + + Value of the element. + + + +## See Also + +* Class [XmpValue](../../../aspose.pdf/xmpvalue/) +* Class [PdfXmpMetadata](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfXmpMetadata::Add(const System::String\&, const System::SharedPtr\\&) method + + +Adds new element to the dictionary object. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfXmpMetadata::Add(const System::String &key, const System::SharedPtr &value) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| key | const System::String\& | Key of new element. | +| value | const System::SharedPtr\\& | Value of the element. | +## Remarks + + + + + + key + + + Key of new element. + + + + + value + + + Value of the element. + + + +## See Also + +* Class [PdfXmpMetadata](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfXmpMetadata::Add(const System::Collections::Generic::KeyValuePair\\>\&) method + + +Adds pair with key and value into the dictionary. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfXmpMetadata::Add(const System::Collections::Generic::KeyValuePair> &item) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| item | const System::Collections::Generic::KeyValuePair\\>\& | Item to be added. | +## Remarks + + + + + + item + + + Item to be added. + + + +## See Also + +* Class [XmpValue](../../../aspose.pdf/xmpvalue/) +* Class [PdfXmpMetadata](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/clear/_index.md b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/clear/_index.md new file mode 100644 index 0000000000..c1e7045fd9 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/clear/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfXmpMetadata::Clear method +linktitle: Clear +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfXmpMetadata::Clear method. Removes all elements from the object in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.facades/pdfxmpmetadata/clear/ +--- +## PdfXmpMetadata::Clear method + + +Removes all elements from the object. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfXmpMetadata::Clear() override +``` + +## See Also + +* Class [PdfXmpMetadata](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/contains/_index.md b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/contains/_index.md new file mode 100644 index 0000000000..0490543297 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/contains/_index.md @@ -0,0 +1,116 @@ +--- +title: Aspose::Pdf::Facades::PdfXmpMetadata::Contains method +linktitle: Contains +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfXmpMetadata::Contains method. Checks if dictionary contains the specified key in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.facades/pdfxmpmetadata/contains/ +--- +## PdfXmpMetadata::Contains(const System::String\&) const method + + +Checks if dictionary contains the specified key. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfXmpMetadata::Contains(const System::String &key) const +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| key | const System::String\& | Key which will be checked. | + +### ReturnValue + +True - if the dictionary contains the specified key; otherwise, false. +## Remarks + + + + + + key + + + Key which will be checked. + + + +## See Also + +* Class [PdfXmpMetadata](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfXmpMetadata::Contains(const DefaultMetadataProperties\&) const method + + +Checks if dictionary contains the specified property. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfXmpMetadata::Contains(const DefaultMetadataProperties &property) const +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| property | const DefaultMetadataProperties\& | Property which will be checked. | + +### ReturnValue + +True - if the dictionary contains the specified property; otherwise, false. +## Remarks + + + + + + property + + + Property which will be checked. + + + +## See Also + +* Enum [DefaultMetadataProperties](../../defaultmetadataproperties/) +* Class [PdfXmpMetadata](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfXmpMetadata::Contains(const System::Collections::Generic::KeyValuePair\\>\&) const method + + +Checks does specified key-value pair is contained in the dictionary. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfXmpMetadata::Contains(const System::Collections::Generic::KeyValuePair> &item) const override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| item | const System::Collections::Generic::KeyValuePair\\>\& | Key-value pair. | + +### ReturnValue + +true if this pauir was found. +## Remarks + + + + + + item + + + Key-value pair. + + + +## See Also + +* Class [XmpValue](../../../aspose.pdf/xmpvalue/) +* Class [PdfXmpMetadata](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/containskey/_index.md b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/containskey/_index.md new file mode 100644 index 0000000000..1b951eed5b --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/containskey/_index.md @@ -0,0 +1,44 @@ +--- +title: Aspose::Pdf::Facades::PdfXmpMetadata::ContainsKey method +linktitle: ContainsKey +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfXmpMetadata::ContainsKey method. Determines does this dictionary contasins specified key in C++.' +type: docs +weight: 1900 +url: /cpp/aspose.pdf.facades/pdfxmpmetadata/containskey/ +--- +## PdfXmpMetadata::ContainsKey method + + +Determines does this dictionary contasins specified key. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfXmpMetadata::ContainsKey(const System::String &key) const override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| key | const System::String\& | Key to search in the dictionary. | + +### ReturnValue + +true if key is found. +## Remarks + + + + + + key + + + Key to search in the dictionary. + + + +## See Also + +* Class [PdfXmpMetadata](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/copyto/_index.md b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/copyto/_index.md new file mode 100644 index 0000000000..39e56c02e7 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/copyto/_index.md @@ -0,0 +1,50 @@ +--- +title: Aspose::Pdf::Facades::PdfXmpMetadata::CopyTo method +linktitle: CopyTo +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfXmpMetadata::CopyTo method. Copy metadata into array in C++.' +type: docs +weight: 1700 +url: /cpp/aspose.pdf.facades/pdfxmpmetadata/copyto/ +--- +## PdfXmpMetadata::CopyTo method + + +Copy metadata into array. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfXmpMetadata::CopyTo(System::ArrayPtr>> array, int32_t index) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| array | System::ArrayPtr\\>\> | The destination array. | +| index | int32_t | The starting index. | +## Remarks + + + + + + array + + + The destination array. + + + + + index + + + The starting index. + + + +## See Also + +* Class [XmpValue](../../../aspose.pdf/xmpvalue/) +* Class [PdfXmpMetadata](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/get_count/_index.md b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/get_count/_index.md new file mode 100644 index 0000000000..a0651ca22b --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/get_count/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfXmpMetadata::get_Count method +linktitle: get_Count +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfXmpMetadata::get_Count method. Gets count if items in the collection in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.facades/pdfxmpmetadata/get_count/ +--- +## PdfXmpMetadata::get_Count method + + +Gets count if items in the collection. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::PdfXmpMetadata::get_Count() const override +``` + +## See Also + +* Class [PdfXmpMetadata](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/get_extensionfields/_index.md b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/get_extensionfields/_index.md new file mode 100644 index 0000000000..8c96544eb3 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/get_extensionfields/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::PdfXmpMetadata::get_ExtensionFields method +linktitle: get_ExtensionFields +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfXmpMetadata::get_ExtensionFields method. Gets the dictionary of extension fields in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.facades/pdfxmpmetadata/get_extensionfields/ +--- +## PdfXmpMetadata::get_ExtensionFields method + + +Gets the dictionary of extension fields. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr>> Aspose::Pdf::Facades::PdfXmpMetadata::get_ExtensionFields() +``` + +## See Also + +* Class [XmpPdfAExtensionSchema](../../../aspose.pdf/xmppdfaextensionschema/) +* Class [PdfXmpMetadata](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/get_isfixedsize/_index.md b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/get_isfixedsize/_index.md new file mode 100644 index 0000000000..640fd10793 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/get_isfixedsize/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfXmpMetadata::get_IsFixedSize method +linktitle: get_IsFixedSize +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfXmpMetadata::get_IsFixedSize method. Returns true is collection has fixed size in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.facades/pdfxmpmetadata/get_isfixedsize/ +--- +## PdfXmpMetadata::get_IsFixedSize method + + +Returns true is collection has fixed size. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfXmpMetadata::get_IsFixedSize() const +``` + +## See Also + +* Class [PdfXmpMetadata](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/get_isreadonly/_index.md b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/get_isreadonly/_index.md new file mode 100644 index 0000000000..6e23da5b56 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/get_isreadonly/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfXmpMetadata::get_IsReadOnly method +linktitle: get_IsReadOnly +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfXmpMetadata::get_IsReadOnly method. Returns true if collection is read-only in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.facades/pdfxmpmetadata/get_isreadonly/ +--- +## PdfXmpMetadata::get_IsReadOnly method + + +Returns true if collection is read-only. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfXmpMetadata::get_IsReadOnly() const override +``` + +## See Also + +* Class [PdfXmpMetadata](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/get_issynchronized/_index.md b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/get_issynchronized/_index.md new file mode 100644 index 0000000000..e4b52234f2 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/get_issynchronized/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::PdfXmpMetadata::get_IsSynchronized method +linktitle: get_IsSynchronized +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfXmpMetadata::get_IsSynchronized method. Returns true if collection is synchronized in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.facades/pdfxmpmetadata/get_issynchronized/ +--- +## PdfXmpMetadata::get_IsSynchronized method + + +Returns true if collection is synchronized. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfXmpMetadata::get_IsSynchronized() +``` + +## See Also + +* Class [PdfXmpMetadata](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/getenumerator/_index.md b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/getenumerator/_index.md new file mode 100644 index 0000000000..b7a042bd65 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/getenumerator/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Facades::PdfXmpMetadata::GetEnumerator method +linktitle: GetEnumerator +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfXmpMetadata::GetEnumerator method. Gets enumerator object of the dictionary in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.facades/pdfxmpmetadata/getenumerator/ +--- +## PdfXmpMetadata::GetEnumerator method + + +Gets enumerator object of the dictionary. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr>>> Aspose::Pdf::Facades::PdfXmpMetadata::GetEnumerator() override +``` + + +### ReturnValue + +The enumerator object. + +## See Also + +* Class [XmpValue](../../../aspose.pdf/xmpvalue/) +* Class [PdfXmpMetadata](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/getnamespaceuribyprefix/_index.md b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/getnamespaceuribyprefix/_index.md new file mode 100644 index 0000000000..2f37856d5b --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/getnamespaceuribyprefix/_index.md @@ -0,0 +1,44 @@ +--- +title: Aspose::Pdf::Facades::PdfXmpMetadata::GetNamespaceURIByPrefix method +linktitle: GetNamespaceURIByPrefix +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfXmpMetadata::GetNamespaceURIByPrefix method. Gets namespace URI by prefix in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.facades/pdfxmpmetadata/getnamespaceuribyprefix/ +--- +## PdfXmpMetadata::GetNamespaceURIByPrefix method + + +Gets namespace URI by prefix. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::PdfXmpMetadata::GetNamespaceURIByPrefix(System::String prefix) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| prefix | System::String | The prefix. | + +### ReturnValue + +Namespace URI. +## Remarks + + + + + + prefix + + + The prefix. + + + +## See Also + +* Class [PdfXmpMetadata](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/getprefixbynamespaceuri/_index.md b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/getprefixbynamespaceuri/_index.md new file mode 100644 index 0000000000..85433149e2 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/getprefixbynamespaceuri/_index.md @@ -0,0 +1,44 @@ +--- +title: Aspose::Pdf::Facades::PdfXmpMetadata::GetPrefixByNamespaceURI method +linktitle: GetPrefixByNamespaceURI +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfXmpMetadata::GetPrefixByNamespaceURI method. Gets the prefix by namespace URI in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.facades/pdfxmpmetadata/getprefixbynamespaceuri/ +--- +## PdfXmpMetadata::GetPrefixByNamespaceURI method + + +Gets the prefix by namespace URI. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::PdfXmpMetadata::GetPrefixByNamespaceURI(System::String namespaceURI) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| namespaceURI | System::String | Namespace URI. | + +### ReturnValue + +The prefix value. +## Remarks + + + + + + namespaceURI + + + Namespace URI. + + + +## See Also + +* Class [PdfXmpMetadata](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/getxmpmetadata/_index.md b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/getxmpmetadata/_index.md new file mode 100644 index 0000000000..bc905e24a6 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/getxmpmetadata/_index.md @@ -0,0 +1,64 @@ +--- +title: Aspose::Pdf::Facades::PdfXmpMetadata::GetXmpMetadata method +linktitle: GetXmpMetadata +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfXmpMetadata::GetXmpMetadata method. Get the XmpMetadata of the input pdf in a xml format in C++.' +type: docs +weight: 1800 +url: /cpp/aspose.pdf.facades/pdfxmpmetadata/getxmpmetadata/ +--- +## PdfXmpMetadata::GetXmpMetadata() method + + +Get the XmpMetadata of the input pdf in a xml format. + +```cpp +ASPOSE_PDF_SHARED_API System::ArrayPtr Aspose::Pdf::Facades::PdfXmpMetadata::GetXmpMetadata() +``` + + +### ReturnValue + +The bytes of the XmpMetadata. + +## See Also + +* Class [PdfXmpMetadata](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfXmpMetadata::GetXmpMetadata(System::String) method + + +Get a part of the XmpMetadata of the input pdf according to a meta name. + +```cpp +ASPOSE_PDF_SHARED_API System::ArrayPtr Aspose::Pdf::Facades::PdfXmpMetadata::GetXmpMetadata(System::String name) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| name | System::String | [Metadata](../../../aspose.pdf/metadata/) name. | + +### ReturnValue + +Bytes of metadata. +## Remarks + + + + + + name + + + + Metadata name. + + + +## See Also + +* Class [PdfXmpMetadata](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/idx_get/_index.md b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/idx_get/_index.md new file mode 100644 index 0000000000..fdb41e9cb5 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/idx_get/_index.md @@ -0,0 +1,82 @@ +--- +title: Aspose::Pdf::Facades::PdfXmpMetadata::idx_get method +linktitle: idx_get +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfXmpMetadata::idx_get method. Gets value by key in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.facades/pdfxmpmetadata/idx_get/ +--- +## PdfXmpMetadata::idx_get(const System::String\&) const method + + +Gets value by key. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::PdfXmpMetadata::idx_get(const System::String &key) const override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| key | const System::String\& | The key name to get/set. | + +### ReturnValue + +Object by key +## Remarks + + + + + + key + + + The key name to get/set. + + + +## See Also + +* Class [XmpValue](../../../aspose.pdf/xmpvalue/) +* Class [PdfXmpMetadata](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfXmpMetadata::idx_get(const DefaultMetadataProperties\&) const method + + +Gets value of XMP metadata by key. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::PdfXmpMetadata::idx_get(const DefaultMetadataProperties &key) const +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| key | const DefaultMetadataProperties\& | Key of the value. | + +### ReturnValue + +Value from XMP metadata. +## Remarks + + + + + + key + + + Key of the value. + + + +## See Also + +* Class [XmpValue](../../../aspose.pdf/xmpvalue/) +* Enum [DefaultMetadataProperties](../../defaultmetadataproperties/) +* Class [PdfXmpMetadata](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/idx_set/_index.md b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/idx_set/_index.md new file mode 100644 index 0000000000..53f0e5341c --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/idx_set/_index.md @@ -0,0 +1,92 @@ +--- +title: Aspose::Pdf::Facades::PdfXmpMetadata::idx_set method +linktitle: idx_set +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfXmpMetadata::idx_set method. Sets value by key in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf.facades/pdfxmpmetadata/idx_set/ +--- +## PdfXmpMetadata::idx_set(const System::String\&, System::SharedPtr\) method + + +Sets value by key. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfXmpMetadata::idx_set(const System::String &key, System::SharedPtr value) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| key | const System::String\& | The key name to get/set. | +| value | System::SharedPtr\ | Object by key | +## Remarks + + + + + + key + + + The key name to get/set. + + + + + value + + + Object by key + + + +## See Also + +* Class [XmpValue](../../../aspose.pdf/xmpvalue/) +* Class [PdfXmpMetadata](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfXmpMetadata::idx_set(const DefaultMetadataProperties\&, System::SharedPtr\) method + + +Gets value of XMP metadata by key. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfXmpMetadata::idx_set(const DefaultMetadataProperties &key, System::SharedPtr value) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| key | const DefaultMetadataProperties\& | Key of the value. | +| value | System::SharedPtr\ | Value from XMP metadata. | +## Remarks + + + + + + key + + + Key of the value. + + + + + value + + + Value from XMP metadata. + + + +## See Also + +* Enum [DefaultMetadataProperties](../../defaultmetadataproperties/) +* Class [XmpValue](../../../aspose.pdf/xmpvalue/) +* Class [PdfXmpMetadata](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/pdfxmpmetadata/_index.md b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/pdfxmpmetadata/_index.md new file mode 100644 index 0000000000..a0c597dd96 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/pdfxmpmetadata/_index.md @@ -0,0 +1,56 @@ +--- +title: Aspose::Pdf::Facades::PdfXmpMetadata::PdfXmpMetadata constructor +linktitle: PdfXmpMetadata +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfXmpMetadata::PdfXmpMetadata constructor. Constructor for PdfXmpMetadata in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.facades/pdfxmpmetadata/pdfxmpmetadata/ +--- +## PdfXmpMetadata::PdfXmpMetadata() constructor + + +Constructor for [PdfXmpMetadata](../). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfXmpMetadata::PdfXmpMetadata() +``` + +## See Also + +* Class [PdfXmpMetadata](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfXmpMetadata::PdfXmpMetadata(System::SharedPtr\) constructor + + +Initializes new [PdfXmpMetadata](../) object on base of the *document* . + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::PdfXmpMetadata::PdfXmpMetadata(System::SharedPtr document) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| document | System::SharedPtr\ | [Pdf](../../../aspose.pdf/) document. | +## Remarks + + + + + + document + + + + Pdf document. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [PdfXmpMetadata](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/registernamespaceuri/_index.md b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/registernamespaceuri/_index.md new file mode 100644 index 0000000000..d246ac625b --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/registernamespaceuri/_index.md @@ -0,0 +1,49 @@ +--- +title: Aspose::Pdf::Facades::PdfXmpMetadata::RegisterNamespaceURI method +linktitle: RegisterNamespaceURI +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfXmpMetadata::RegisterNamespaceURI method. Registers the namespace URI in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.facades/pdfxmpmetadata/registernamespaceuri/ +--- +## PdfXmpMetadata::RegisterNamespaceURI method + + +Registers the namespace URI. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfXmpMetadata::RegisterNamespaceURI(System::String prefix, System::String namespaceURI) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| prefix | System::String | The prefix. | +| namespaceURI | System::String | The namespace URI. | +## Remarks + + + + + + prefix + + + The prefix. + + + + + namespaceURI + + + The namespace URI. + + + +## See Also + +* Class [PdfXmpMetadata](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/remove/_index.md b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/remove/_index.md new file mode 100644 index 0000000000..077ab21e8d --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/remove/_index.md @@ -0,0 +1,113 @@ +--- +title: Aspose::Pdf::Facades::PdfXmpMetadata::Remove method +linktitle: Remove +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfXmpMetadata::Remove method. Removes element with specified key in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.facades/pdfxmpmetadata/remove/ +--- +## PdfXmpMetadata::Remove(DefaultMetadataProperties) method + + +Removes element with specified key. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfXmpMetadata::Remove(DefaultMetadataProperties key) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| key | DefaultMetadataProperties | Key of the element which will be deleted. | +## Remarks + + + + + + key + + + Key of the element which will be deleted. + + + +## See Also + +* Enum [DefaultMetadataProperties](../../defaultmetadataproperties/) +* Class [PdfXmpMetadata](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfXmpMetadata::Remove(const System::String\&) method + + +Removes key from the dictionary. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfXmpMetadata::Remove(const System::String &key) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| key | const System::String\& | Key which will be removed. | + +### ReturnValue + +True - if key removed; otherwise, false. +## Remarks + + + + + + key + + + Key which will be removed. + + + + +## See Also + +* Class [PdfXmpMetadata](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## PdfXmpMetadata::Remove(const System::Collections::Generic::KeyValuePair\\>\&) method + + +Removes key/value pair from the collection. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfXmpMetadata::Remove(const System::Collections::Generic::KeyValuePair> &item) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| item | const System::Collections::Generic::KeyValuePair\\>\& | Key/value pair to be removed. | + +### ReturnValue + +true if pair was found and removed. +## Remarks + + + + + + item + + + Key/value pair to be removed. + + + +## See Also + +* Class [XmpValue](../../../aspose.pdf/xmpvalue/) +* Class [PdfXmpMetadata](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/settemplateweakptr/_index.md b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/settemplateweakptr/_index.md new file mode 100644 index 0000000000..824de14949 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/settemplateweakptr/_index.md @@ -0,0 +1,40 @@ +--- +title: Aspose::Pdf::Facades::PdfXmpMetadata::SetTemplateWeakPtr method +linktitle: SetTemplateWeakPtr +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfXmpMetadata::SetTemplateWeakPtr method. Set n''th template argument a weak pointer (rather than shared). Allows switching pointers in containers to weak mode in C++.' +type: docs +weight: 2100 +url: /cpp/aspose.pdf.facades/pdfxmpmetadata/settemplateweakptr/ +--- +## PdfXmpMetadata::SetTemplateWeakPtr method + + +Set n'th template argument a weak pointer (rather than shared). Allows switching pointers in containers to weak mode. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::PdfXmpMetadata::SetTemplateWeakPtr(uint32_t argument) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| argument | uint32_t | Index of template argument to treat as weak poiner. | +## Remarks + + + + + + argument + + + Index of template argument to treat as weak poiner. + + + +## See Also + +* Class [PdfXmpMetadata](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/trygetvalue/_index.md b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/trygetvalue/_index.md new file mode 100644 index 0000000000..eeabc7871c --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/trygetvalue/_index.md @@ -0,0 +1,54 @@ +--- +title: Aspose::Pdf::Facades::PdfXmpMetadata::TryGetValue method +linktitle: TryGetValue +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfXmpMetadata::TryGetValue method. Tries to find key in the dictionary and retreives value if found in C++.' +type: docs +weight: 2000 +url: /cpp/aspose.pdf.facades/pdfxmpmetadata/trygetvalue/ +--- +## PdfXmpMetadata::TryGetValue method + + +Tries to find key in the dictionary and retreives value if found. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::PdfXmpMetadata::TryGetValue(const System::String &key, System::SharedPtr &value) const override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| key | const System::String\& | Key to search in the dictionary. | +| value | System::SharedPtr\\& | Retreived value. | + +### ReturnValue + +true if key was found. +## Remarks + + + + + + key + + + Key to search in the dictionary. + + + + + value + + + Retreived value. + + + +## See Also + +* Class [XmpValue](../../../aspose.pdf/xmpvalue/) +* Class [PdfXmpMetadata](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/positioningmode/_index.md b/english/cpp/aspose.pdf.facades/positioningmode/_index.md new file mode 100644 index 0000000000..ec4964c68f --- /dev/null +++ b/english/cpp/aspose.pdf.facades/positioningmode/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Facades::PositioningMode enum +linktitle: PositioningMode +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PositioningMode enum. Defines positioning mode. Possible values include Legacy (backward compatibility) and Current (updated text position calculation method) in C++.' +type: docs +weight: 4800 +url: /cpp/aspose.pdf.facades/positioningmode/ +--- +## PositioningMode enum + + +Defines positioning mode. Possible values include Legacy (backward compatibility) and Current (updated text position calculation method) + +```cpp +enum class PositioningMode +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Legacy | 0 | Legacy text positioning. | +| ModernLineSpacing | 1 | Updated line spacing, vertical position calculation is done by the old rules (i.e. text is positioned relative to bottom-left corner of the specified rectangle) | +| Current | 2 | Updated line spacing and vertical position calculation is done based on left-top corner rather than left-bottom. | + +## See Also + +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/propertyflag/_index.md b/english/cpp/aspose.pdf.facades/propertyflag/_index.md new file mode 100644 index 0000000000..ea7787b5b3 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/propertyflag/_index.md @@ -0,0 +1,31 @@ +--- +title: Aspose::Pdf::Facades::PropertyFlag enum +linktitle: PropertyFlag +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PropertyFlag enum. Enumeration of possible field flags in C++.' +type: docs +weight: 4900 +url: /cpp/aspose.pdf.facades/propertyflag/ +--- +## PropertyFlag enum + + +Enumeration of possible field flags. + +```cpp +enum class PropertyFlag +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| ReadOnly | 0 | Field is read-only. | +| Required | 1 | Field is required. | +| NoExport | 2 | Field is not exportable. | +| InvalidFlag | 3 | Invalid field flag. | + +## See Also + +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/replacetextstrategy/_index.md b/english/cpp/aspose.pdf.facades/replacetextstrategy/_index.md new file mode 100644 index 0000000000..8b6ca2349c --- /dev/null +++ b/english/cpp/aspose.pdf.facades/replacetextstrategy/_index.md @@ -0,0 +1,33 @@ +--- +title: Aspose::Pdf::Facades::ReplaceTextStrategy class +linktitle: ReplaceTextStrategy +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::ReplaceTextStrategy class. This class contains parameters which define PdfContentEditor behavior when ReplaceText operation is performed in C++.' +type: docs +weight: 3200 +url: /cpp/aspose.pdf.facades/replacetextstrategy/ +--- +## ReplaceTextStrategy class + + +This class contains parameters which define [PdfContentEditor](../pdfcontenteditor/) behavior when ReplaceText operation is performed. + +```cpp +class ReplaceTextStrategy : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_IsRegularExpressionUsed](./get_isregularexpressionused/)() const | If false, string to find is a simple text. If true, string to find is regular expression. | +| [get_NoCharacterBehavior](./get_nocharacterbehavior/)() const | Action which is performed when no approppriate font found for changed text (Throw exception / Substitute other font / Replace anyway). | +| [get_ReplaceScope](./get_replacescope/)() const | Scope of the replacement operation (replace first occurence or replace all occurences). | +| [ReplaceTextStrategy](./replacetextstrategy/)() | | +| [set_IsRegularExpressionUsed](./set_isregularexpressionused/)(bool) | If false, string to find is a simple text. If true, string to find is regular expression. | +| [set_NoCharacterBehavior](./set_nocharacterbehavior/)(ReplaceTextStrategy::NoCharacterAction) | Action which is performed when no approppriate font found for changed text (Throw exception / Substitute other font / Replace anyway). | +| [set_ReplaceScope](./set_replacescope/)(ReplaceTextStrategy::Scope) | Scope of the replacement operation (replace first occurence or replace all occurences). | +## See Also + +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/replacetextstrategy/get_isregularexpressionused/_index.md b/english/cpp/aspose.pdf.facades/replacetextstrategy/get_isregularexpressionused/_index.md new file mode 100644 index 0000000000..ebb86b41b3 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/replacetextstrategy/get_isregularexpressionused/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::ReplaceTextStrategy::get_IsRegularExpressionUsed method +linktitle: get_IsRegularExpressionUsed +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::ReplaceTextStrategy::get_IsRegularExpressionUsed method. If false, string to find is a simple text. If true, string to find is regular expression in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.facades/replacetextstrategy/get_isregularexpressionused/ +--- +## ReplaceTextStrategy::get_IsRegularExpressionUsed method + + +If false, string to find is a simple text. If true, string to find is regular expression. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::ReplaceTextStrategy::get_IsRegularExpressionUsed() const +``` + +## See Also + +* Class [ReplaceTextStrategy](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/replacetextstrategy/get_nocharacterbehavior/_index.md b/english/cpp/aspose.pdf.facades/replacetextstrategy/get_nocharacterbehavior/_index.md new file mode 100644 index 0000000000..11d92ed003 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/replacetextstrategy/get_nocharacterbehavior/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::ReplaceTextStrategy::get_NoCharacterBehavior method +linktitle: get_NoCharacterBehavior +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::ReplaceTextStrategy::get_NoCharacterBehavior method. Action which is performed when no approppriate font found for changed text (Throw exception / Substitute other font / Replace anyway) in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.facades/replacetextstrategy/get_nocharacterbehavior/ +--- +## ReplaceTextStrategy::get_NoCharacterBehavior method + + +Action which is performed when no approppriate font found for changed text (Throw exception / Substitute other font / Replace anyway). + +```cpp +ASPOSE_PDF_SHARED_API ReplaceTextStrategy::NoCharacterAction Aspose::Pdf::Facades::ReplaceTextStrategy::get_NoCharacterBehavior() const +``` + +## See Also + +* Class [ReplaceTextStrategy](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/replacetextstrategy/get_replacescope/_index.md b/english/cpp/aspose.pdf.facades/replacetextstrategy/get_replacescope/_index.md new file mode 100644 index 0000000000..fa74c79828 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/replacetextstrategy/get_replacescope/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::ReplaceTextStrategy::get_ReplaceScope method +linktitle: get_ReplaceScope +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::ReplaceTextStrategy::get_ReplaceScope method. Scope of the replacement operation (replace first occurence or replace all occurences) in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.facades/replacetextstrategy/get_replacescope/ +--- +## ReplaceTextStrategy::get_ReplaceScope method + + +Scope of the replacement operation (replace first occurence or replace all occurences). + +```cpp +ASPOSE_PDF_SHARED_API ReplaceTextStrategy::Scope Aspose::Pdf::Facades::ReplaceTextStrategy::get_ReplaceScope() const +``` + +## See Also + +* Class [ReplaceTextStrategy](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/replacetextstrategy/replacetextstrategy/_index.md b/english/cpp/aspose.pdf.facades/replacetextstrategy/replacetextstrategy/_index.md new file mode 100644 index 0000000000..e824c5b8a3 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/replacetextstrategy/replacetextstrategy/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::ReplaceTextStrategy::ReplaceTextStrategy constructor +linktitle: ReplaceTextStrategy +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ReplaceTextStrategy constructor of Aspose::Pdf::Facades::ReplaceTextStrategy class in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.facades/replacetextstrategy/replacetextstrategy/ +--- +## ReplaceTextStrategy::ReplaceTextStrategy constructor + + + + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::ReplaceTextStrategy::ReplaceTextStrategy() +``` + +## See Also + +* Class [ReplaceTextStrategy](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/replacetextstrategy/set_isregularexpressionused/_index.md b/english/cpp/aspose.pdf.facades/replacetextstrategy/set_isregularexpressionused/_index.md new file mode 100644 index 0000000000..447db9f4a1 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/replacetextstrategy/set_isregularexpressionused/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::ReplaceTextStrategy::set_IsRegularExpressionUsed method +linktitle: set_IsRegularExpressionUsed +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::ReplaceTextStrategy::set_IsRegularExpressionUsed method. If false, string to find is a simple text. If true, string to find is regular expression in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.facades/replacetextstrategy/set_isregularexpressionused/ +--- +## ReplaceTextStrategy::set_IsRegularExpressionUsed method + + +If false, string to find is a simple text. If true, string to find is regular expression. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::ReplaceTextStrategy::set_IsRegularExpressionUsed(bool value) +``` + +## See Also + +* Class [ReplaceTextStrategy](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/replacetextstrategy/set_nocharacterbehavior/_index.md b/english/cpp/aspose.pdf.facades/replacetextstrategy/set_nocharacterbehavior/_index.md new file mode 100644 index 0000000000..44cdab6c18 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/replacetextstrategy/set_nocharacterbehavior/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::ReplaceTextStrategy::set_NoCharacterBehavior method +linktitle: set_NoCharacterBehavior +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::ReplaceTextStrategy::set_NoCharacterBehavior method. Action which is performed when no approppriate font found for changed text (Throw exception / Substitute other font / Replace anyway) in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.facades/replacetextstrategy/set_nocharacterbehavior/ +--- +## ReplaceTextStrategy::set_NoCharacterBehavior method + + +Action which is performed when no approppriate font found for changed text (Throw exception / Substitute other font / Replace anyway). + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::ReplaceTextStrategy::set_NoCharacterBehavior(ReplaceTextStrategy::NoCharacterAction value) +``` + +## See Also + +* Class [ReplaceTextStrategy](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/replacetextstrategy/set_replacescope/_index.md b/english/cpp/aspose.pdf.facades/replacetextstrategy/set_replacescope/_index.md new file mode 100644 index 0000000000..3a5fd4caaf --- /dev/null +++ b/english/cpp/aspose.pdf.facades/replacetextstrategy/set_replacescope/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::ReplaceTextStrategy::set_ReplaceScope method +linktitle: set_ReplaceScope +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::ReplaceTextStrategy::set_ReplaceScope method. Scope of the replacement operation (replace first occurence or replace all occurences) in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.facades/replacetextstrategy/set_replacescope/ +--- +## ReplaceTextStrategy::set_ReplaceScope method + + +Scope of the replacement operation (replace first occurence or replace all occurences). + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::ReplaceTextStrategy::set_ReplaceScope(ReplaceTextStrategy::Scope value) +``` + +## See Also + +* Class [ReplaceTextStrategy](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/saveablefacade/_index.md b/english/cpp/aspose.pdf.facades/saveablefacade/_index.md new file mode 100644 index 0000000000..4c6274c118 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/saveablefacade/_index.md @@ -0,0 +1,38 @@ +--- +title: Aspose::Pdf::Facades::SaveableFacade class +linktitle: SaveableFacade +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::SaveableFacade class. Base class for all saveable facades in C++.' +type: docs +weight: 3300 +url: /cpp/aspose.pdf.facades/saveablefacade/ +--- +## SaveableFacade class + + +Base class for all saveable facades. + +```cpp +class SaveableFacade : public Aspose::Pdf::Facades::Facade, + public Aspose::Pdf::Facades::ISaveableFacade +``` + +## Methods + +| Method | Description | +| --- | --- | +| [BindPdf](../facade/bindpdf/)(System::String) override | Initializes the facade. | +| [BindPdf](../facade/bindpdf/)(System::SharedPtr\) override | Initializes the facade. | +| [BindPdf](../facade/bindpdf/)(System::SharedPtr\) override | Initializes the facade. | +| virtual [BindPdf](../ifacade/bindpdf/)(System::SharedPtr\) | Binds PDF document for editing. | +| [Close](../facade/close/)() override | Disposes [Aspose.Pdf.Document](../../aspose.pdf/document/) bound with a facade. | +| [Dispose](../facade/dispose/)() override | Disposes the facade. | +| [get_Document](../facade/get_document/)() const | Gets the document facade is working on. | +| [Save](./save/)(System::String) override | Saves the PDF document to the specified file. | +| [Save](./save/)(System::SharedPtr\) override | Saves the PDF document to the specified stream. | +## See Also + +* Class [Facade](../facade/) +* Class [ISaveableFacade](../isaveablefacade/) +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/saveablefacade/save/_index.md b/english/cpp/aspose.pdf.facades/saveablefacade/save/_index.md new file mode 100644 index 0000000000..6dbad71e97 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/saveablefacade/save/_index.md @@ -0,0 +1,71 @@ +--- +title: Aspose::Pdf::Facades::SaveableFacade::Save method +linktitle: Save +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::SaveableFacade::Save method. Saves the PDF document to the specified file in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.facades/saveablefacade/save/ +--- +## SaveableFacade::Save(System::String) method + + +Saves the PDF document to the specified file. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::SaveableFacade::Save(System::String destFile) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| destFile | System::String | The destination file. | +## Remarks + + + + + + destFile + + + The destination file. + + + +## See Also + +* Class [SaveableFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## SaveableFacade::Save(System::SharedPtr\) method + + +Saves the PDF document to the specified stream. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::SaveableFacade::Save(System::SharedPtr destStream) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| destStream | System::SharedPtr\ | The destination stream. | +## Remarks + + + + + + destStream + + + The destination stream. + + + +## See Also + +* Class [SaveableFacade](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/stamp/_index.md b/english/cpp/aspose.pdf.facades/stamp/_index.md new file mode 100644 index 0000000000..8f09ef27c9 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/stamp/_index.md @@ -0,0 +1,51 @@ +--- +title: Aspose::Pdf::Facades::Stamp class +linktitle: Stamp +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Stamp class. Class represeting stamp in C++.' +type: docs +weight: 3400 +url: /cpp/aspose.pdf.facades/stamp/ +--- +## Stamp class + + +Class represeting stamp. + +```cpp +class Stamp : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [BindImage](./bindimage/)(System::String) | Sets image as a stamp. | +| [BindImage](./bindimage/)(System::SharedPtr\) | Sets image which will be used as stamp. | +| [BindLogo](./bindlogo/)(System::SharedPtr\) | Sets text as stamp. | +| [BindPdf](./bindpdf/)(System::String, int32_t) | Sets PDF file and number of page which will be used as stamp. | +| [BindPdf](./bindpdf/)(System::SharedPtr\, int32_t) | Sets PDF file and number of page which will be used as stamp. | +| [BindTextState](./bindtextstate/)(System::SharedPtr\) | Sets text state of stamp text. | +| [get_BlendingSpace](./get_blendingspace/)() const | Gets a BlendingColorSpace value that defines a color space that is used to perform transparency and blending operations on the page. | +| [get_IsBackground](./get_isbackground/)() const | Gets background status. If true stamp will be placed as background of the spamped page. By default is set to false. | +| [get_Opacity](./get_opacity/)() | Gets opacity of the stamp. | +| [get_PageNumber](./get_pagenumber/)() const | Gets page number. | +| [get_Pages](./get_pages/)() const | Gets array with numbers of pages which will be affected by stamp. If Pages = null all pages of the document are affected. | +| [get_Quality](./get_quality/)() const | Gets quality of image stamp in percent. Valiued values 0..100%. | +| [get_Rotation](./get_rotation/)() const | Gets rotation of the stamp in degrees. | +| [get_StampId](./get_stampid/)() const | Gets identifier of stamp. | +| [set_BlendingSpace](./set_blendingspace/)(BlendingColorSpace) | Sets a BlendingColorSpace value that defines a color space that is used to perform transparency and blending operations on the page. | +| [set_IsBackground](./set_isbackground/)(bool) | Sets background status. If true stamp will be placed as background of the spamped page. By default is set to false. | +| [set_Opacity](./set_opacity/)(float) | Sets opacity of the stamp. | +| [set_PageNumber](./set_pagenumber/)(int32_t) | Sets page number. | +| [set_Pages](./set_pages/)(System::ArrayPtr\) | Sets array with numbers of pages which will be affected by stamp. If Pages = null all pages of the document are affected. | +| [set_Quality](./set_quality/)(int32_t) | Sets quality of image stamp in percent. Valiued values 0..100%. | +| [set_Rotation](./set_rotation/)(float) | Sets rotation of the stamp in degrees. | +| [set_StampId](./set_stampid/)(int32_t) | Sets identifier of stamp. | +| [SetImageSize](./setimagesize/)(float, float) | Sets size of image stamp. [Image](../../aspose.pdf/image/) will be scaled according to the specified values. | +| [SetOrigin](./setorigin/)(float, float) | Sets position on page where stamp will be placed. | +| [Stamp](./stamp/)() | Constructor for [Stamp](./) object. | +## See Also + +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/stamp/bindimage/_index.md b/english/cpp/aspose.pdf.facades/stamp/bindimage/_index.md new file mode 100644 index 0000000000..629a72ca4f --- /dev/null +++ b/english/cpp/aspose.pdf.facades/stamp/bindimage/_index.md @@ -0,0 +1,72 @@ +--- +title: Aspose::Pdf::Facades::Stamp::BindImage method +linktitle: BindImage +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Stamp::BindImage method. Sets image as a stamp in C++.' +type: docs +weight: 1900 +url: /cpp/aspose.pdf.facades/stamp/bindimage/ +--- +## Stamp::BindImage(System::String) method + + +Sets image as a stamp. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Stamp::BindImage(System::String imageFile) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| imageFile | System::String | [Image](../../../aspose.pdf/image/) file name and path. | +## Remarks + + + + + + imageFile + + + + Image file name and path. + + + +## See Also + +* Class [Stamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## Stamp::BindImage(System::SharedPtr\) method + + +Sets image which will be used as stamp. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Stamp::BindImage(System::SharedPtr image) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| image | System::SharedPtr\ | Stream which contains image data. | +## Remarks + + + + + + image + + + Stream which contains image data. + + + +## See Also + +* Class [Stamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/stamp/bindlogo/_index.md b/english/cpp/aspose.pdf.facades/stamp/bindlogo/_index.md new file mode 100644 index 0000000000..6a2efe5af0 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/stamp/bindlogo/_index.md @@ -0,0 +1,42 @@ +--- +title: Aspose::Pdf::Facades::Stamp::BindLogo method +linktitle: BindLogo +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Stamp::BindLogo method. Sets text as stamp in C++.' +type: docs +weight: 2000 +url: /cpp/aspose.pdf.facades/stamp/bindlogo/ +--- +## Stamp::BindLogo method + + +Sets text as stamp. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Stamp::BindLogo(System::SharedPtr formattedText) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| formattedText | System::SharedPtr\ | [FormattedText](../../formattedtext/) object which specifies text and text properties. | +## Remarks + + + + + + formattedText + + + + FormattedText object which specifies text and text properties. + + + +## See Also + +* Class [FormattedText](../../formattedtext/) +* Class [Stamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/stamp/bindpdf/_index.md b/english/cpp/aspose.pdf.facades/stamp/bindpdf/_index.md new file mode 100644 index 0000000000..c3e4a428b6 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/stamp/bindpdf/_index.md @@ -0,0 +1,90 @@ +--- +title: Aspose::Pdf::Facades::Stamp::BindPdf method +linktitle: BindPdf +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Stamp::BindPdf method. Sets PDF file and number of page which will be used as stamp in C++.' +type: docs +weight: 1800 +url: /cpp/aspose.pdf.facades/stamp/bindpdf/ +--- +## Stamp::BindPdf(System::String, int32_t) method + + +Sets PDF file and number of page which will be used as stamp. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Stamp::BindPdf(System::String pdfFile, int32_t pageNumber) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pdfFile | System::String | Path to PDF file. | +| pageNumber | int32_t | Number of page in PDF file | +## Remarks + + + + + + pdfFile + + + Path to PDF file. + + + + + pageNumber + + + Number of page in PDF file + + + +## See Also + +* Class [Stamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) +## Stamp::BindPdf(System::SharedPtr\, int32_t) method + + +Sets PDF file and number of page which will be used as stamp. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Stamp::BindPdf(System::SharedPtr pdfStream, int32_t pageNumber) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pdfStream | System::SharedPtr\ | Stream which contains PDF document. | +| pageNumber | int32_t | [Page](../../../aspose.pdf/page/) index of the document whihc will be used as stamp. | +## Remarks + + + + + + pdfStream + + + Stream which contains PDF document. + + + + + pageNumber + + + + Page index of the document whihc will be used as stamp. + + + +## See Also + +* Class [Stamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/stamp/bindtextstate/_index.md b/english/cpp/aspose.pdf.facades/stamp/bindtextstate/_index.md new file mode 100644 index 0000000000..93af72bab9 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/stamp/bindtextstate/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Facades::Stamp::BindTextState method +linktitle: BindTextState +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Stamp::BindTextState method. Sets text state of stamp text in C++.' +type: docs +weight: 2100 +url: /cpp/aspose.pdf.facades/stamp/bindtextstate/ +--- +## Stamp::BindTextState method + + +Sets text state of stamp text. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Stamp::BindTextState(System::SharedPtr textState) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| textState | System::SharedPtr\ | TextState object which specifies text properties. | +## Remarks + + + + + + textState + + + TextState object which specifies text properties. + + + +## See Also + +* Class [TextState](../../../aspose.pdf.text/textstate/) +* Class [Stamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/stamp/get_blendingspace/_index.md b/english/cpp/aspose.pdf.facades/stamp/get_blendingspace/_index.md new file mode 100644 index 0000000000..48d8d46764 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/stamp/get_blendingspace/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::Stamp::get_BlendingSpace method +linktitle: get_BlendingSpace +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Stamp::get_BlendingSpace method. Gets a BlendingColorSpace value that defines a color space that is used to perform transparency and blending operations on the page in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.facades/stamp/get_blendingspace/ +--- +## Stamp::get_BlendingSpace method + + +Gets a BlendingColorSpace value that defines a color space that is used to perform transparency and blending operations on the page. + +```cpp +ASPOSE_PDF_SHARED_API BlendingColorSpace Aspose::Pdf::Facades::Stamp::get_BlendingSpace() const +``` + +## See Also + +* Enum [BlendingColorSpace](../../blendingcolorspace/) +* Class [Stamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/stamp/get_isbackground/_index.md b/english/cpp/aspose.pdf.facades/stamp/get_isbackground/_index.md new file mode 100644 index 0000000000..f8e4904091 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/stamp/get_isbackground/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Facades::Stamp::get_IsBackground method +linktitle: get_IsBackground +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Stamp::get_IsBackground method. Gets background status. If true stamp will be placed as background of the spamped page. By default is set to false in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.facades/stamp/get_isbackground/ +--- +## Stamp::get_IsBackground method + + +Gets background status. If true stamp will be placed as background of the spamped page. By default is set to false. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::Stamp::get_IsBackground() const +``` + +## Remarks + + +/// +## See Also + +* Class [Stamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/stamp/get_opacity/_index.md b/english/cpp/aspose.pdf.facades/stamp/get_opacity/_index.md new file mode 100644 index 0000000000..158981b06d --- /dev/null +++ b/english/cpp/aspose.pdf.facades/stamp/get_opacity/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Stamp::get_Opacity method +linktitle: get_Opacity +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Stamp::get_Opacity method. Gets opacity of the stamp in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.facades/stamp/get_opacity/ +--- +## Stamp::get_Opacity method + + +Gets opacity of the stamp. + +```cpp +ASPOSE_PDF_SHARED_API float Aspose::Pdf::Facades::Stamp::get_Opacity() +``` + +## See Also + +* Class [Stamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/stamp/get_pagenumber/_index.md b/english/cpp/aspose.pdf.facades/stamp/get_pagenumber/_index.md new file mode 100644 index 0000000000..0f8799d373 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/stamp/get_pagenumber/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Stamp::get_PageNumber method +linktitle: get_PageNumber +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Stamp::get_PageNumber method. Gets page number in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.facades/stamp/get_pagenumber/ +--- +## Stamp::get_PageNumber method + + +Gets page number. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::Stamp::get_PageNumber() const +``` + +## See Also + +* Class [Stamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/stamp/get_pages/_index.md b/english/cpp/aspose.pdf.facades/stamp/get_pages/_index.md new file mode 100644 index 0000000000..78ca1ba77c --- /dev/null +++ b/english/cpp/aspose.pdf.facades/stamp/get_pages/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Stamp::get_Pages method +linktitle: get_Pages +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Stamp::get_Pages method. Gets array with numbers of pages which will be affected by stamp. If Pages = null all pages of the document are affected in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.facades/stamp/get_pages/ +--- +## Stamp::get_Pages method + + +Gets array with numbers of pages which will be affected by stamp. If Pages = null all pages of the document are affected. + +```cpp +ASPOSE_PDF_SHARED_API System::ArrayPtr Aspose::Pdf::Facades::Stamp::get_Pages() const +``` + +## See Also + +* Class [Stamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/stamp/get_quality/_index.md b/english/cpp/aspose.pdf.facades/stamp/get_quality/_index.md new file mode 100644 index 0000000000..617c93d43b --- /dev/null +++ b/english/cpp/aspose.pdf.facades/stamp/get_quality/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Stamp::get_Quality method +linktitle: get_Quality +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Stamp::get_Quality method. Gets quality of image stamp in percent. Valiued values 0..100% in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.facades/stamp/get_quality/ +--- +## Stamp::get_Quality method + + +Gets quality of image stamp in percent. Valiued values 0..100%. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::Stamp::get_Quality() const +``` + +## See Also + +* Class [Stamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/stamp/get_rotation/_index.md b/english/cpp/aspose.pdf.facades/stamp/get_rotation/_index.md new file mode 100644 index 0000000000..533a0275c6 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/stamp/get_rotation/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Stamp::get_Rotation method +linktitle: get_Rotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Stamp::get_Rotation method. Gets rotation of the stamp in degrees in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.facades/stamp/get_rotation/ +--- +## Stamp::get_Rotation method + + +Gets rotation of the stamp in degrees. + +```cpp +ASPOSE_PDF_SHARED_API float Aspose::Pdf::Facades::Stamp::get_Rotation() const +``` + +## See Also + +* Class [Stamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/stamp/get_stampid/_index.md b/english/cpp/aspose.pdf.facades/stamp/get_stampid/_index.md new file mode 100644 index 0000000000..fbb2f50c27 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/stamp/get_stampid/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Stamp::get_StampId method +linktitle: get_StampId +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Stamp::get_StampId method. Gets identifier of stamp in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.facades/stamp/get_stampid/ +--- +## Stamp::get_StampId method + + +Gets identifier of stamp. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::Stamp::get_StampId() const +``` + +## See Also + +* Class [Stamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/stamp/set_blendingspace/_index.md b/english/cpp/aspose.pdf.facades/stamp/set_blendingspace/_index.md new file mode 100644 index 0000000000..d7d3925621 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/stamp/set_blendingspace/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::Stamp::set_BlendingSpace method +linktitle: set_BlendingSpace +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Stamp::set_BlendingSpace method. Sets a BlendingColorSpace value that defines a color space that is used to perform transparency and blending operations on the page in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf.facades/stamp/set_blendingspace/ +--- +## Stamp::set_BlendingSpace method + + +Sets a BlendingColorSpace value that defines a color space that is used to perform transparency and blending operations on the page. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Stamp::set_BlendingSpace(BlendingColorSpace value) +``` + +## See Also + +* Enum [BlendingColorSpace](../../blendingcolorspace/) +* Class [Stamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/stamp/set_isbackground/_index.md b/english/cpp/aspose.pdf.facades/stamp/set_isbackground/_index.md new file mode 100644 index 0000000000..3cb344b507 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/stamp/set_isbackground/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Facades::Stamp::set_IsBackground method +linktitle: set_IsBackground +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Stamp::set_IsBackground method. Sets background status. If true stamp will be placed as background of the spamped page. By default is set to false in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.facades/stamp/set_isbackground/ +--- +## Stamp::set_IsBackground method + + +Sets background status. If true stamp will be placed as background of the spamped page. By default is set to false. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Stamp::set_IsBackground(bool value) +``` + +## Remarks + + +/// +## See Also + +* Class [Stamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/stamp/set_opacity/_index.md b/english/cpp/aspose.pdf.facades/stamp/set_opacity/_index.md new file mode 100644 index 0000000000..240959c742 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/stamp/set_opacity/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Stamp::set_Opacity method +linktitle: set_Opacity +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Stamp::set_Opacity method. Sets opacity of the stamp in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.facades/stamp/set_opacity/ +--- +## Stamp::set_Opacity method + + +Sets opacity of the stamp. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Stamp::set_Opacity(float value) +``` + +## See Also + +* Class [Stamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/stamp/set_pagenumber/_index.md b/english/cpp/aspose.pdf.facades/stamp/set_pagenumber/_index.md new file mode 100644 index 0000000000..84e72b4614 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/stamp/set_pagenumber/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Stamp::set_PageNumber method +linktitle: set_PageNumber +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Stamp::set_PageNumber method. Sets page number in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.facades/stamp/set_pagenumber/ +--- +## Stamp::set_PageNumber method + + +Sets page number. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Stamp::set_PageNumber(int32_t value) +``` + +## See Also + +* Class [Stamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/stamp/set_pages/_index.md b/english/cpp/aspose.pdf.facades/stamp/set_pages/_index.md new file mode 100644 index 0000000000..8bae4a8114 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/stamp/set_pages/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Stamp::set_Pages method +linktitle: set_Pages +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Stamp::set_Pages method. Sets array with numbers of pages which will be affected by stamp. If Pages = null all pages of the document are affected in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.facades/stamp/set_pages/ +--- +## Stamp::set_Pages method + + +Sets array with numbers of pages which will be affected by stamp. If Pages = null all pages of the document are affected. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Stamp::set_Pages(System::ArrayPtr value) +``` + +## See Also + +* Class [Stamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/stamp/set_quality/_index.md b/english/cpp/aspose.pdf.facades/stamp/set_quality/_index.md new file mode 100644 index 0000000000..0a0dee36e8 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/stamp/set_quality/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Stamp::set_Quality method +linktitle: set_Quality +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Stamp::set_Quality method. Sets quality of image stamp in percent. Valiued values 0..100% in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.facades/stamp/set_quality/ +--- +## Stamp::set_Quality method + + +Sets quality of image stamp in percent. Valiued values 0..100%. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Stamp::set_Quality(int32_t value) +``` + +## See Also + +* Class [Stamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/stamp/set_rotation/_index.md b/english/cpp/aspose.pdf.facades/stamp/set_rotation/_index.md new file mode 100644 index 0000000000..3e587f7084 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/stamp/set_rotation/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Stamp::set_Rotation method +linktitle: set_Rotation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Stamp::set_Rotation method. Sets rotation of the stamp in degrees in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.facades/stamp/set_rotation/ +--- +## Stamp::set_Rotation method + + +Sets rotation of the stamp in degrees. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Stamp::set_Rotation(float value) +``` + +## See Also + +* Class [Stamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/stamp/set_stampid/_index.md b/english/cpp/aspose.pdf.facades/stamp/set_stampid/_index.md new file mode 100644 index 0000000000..730c2e2423 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/stamp/set_stampid/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Stamp::set_StampId method +linktitle: set_StampId +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Stamp::set_StampId method. Sets identifier of stamp in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.facades/stamp/set_stampid/ +--- +## Stamp::set_StampId method + + +Sets identifier of stamp. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Stamp::set_StampId(int32_t value) +``` + +## See Also + +* Class [Stamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/stamp/setimagesize/_index.md b/english/cpp/aspose.pdf.facades/stamp/setimagesize/_index.md new file mode 100644 index 0000000000..fe34adcde9 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/stamp/setimagesize/_index.md @@ -0,0 +1,51 @@ +--- +title: Aspose::Pdf::Facades::Stamp::SetImageSize method +linktitle: SetImageSize +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Stamp::SetImageSize method. Sets size of image stamp. Image will be scaled according to the specified values in C++.' +type: docs +weight: 2300 +url: /cpp/aspose.pdf.facades/stamp/setimagesize/ +--- +## Stamp::SetImageSize method + + +Sets size of image stamp. [Image](../../../aspose.pdf/image/) will be scaled according to the specified values. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Stamp::SetImageSize(float width, float height) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| width | float | [Image](../../../aspose.pdf/image/) width. | +| height | float | [Image](../../../aspose.pdf/image/) height. | +## Remarks + + + + + + width + + + + Image width. + + + + + height + + + + Image height. + + + +## See Also + +* Class [Stamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/stamp/setorigin/_index.md b/english/cpp/aspose.pdf.facades/stamp/setorigin/_index.md new file mode 100644 index 0000000000..a699d5b0a0 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/stamp/setorigin/_index.md @@ -0,0 +1,49 @@ +--- +title: Aspose::Pdf::Facades::Stamp::SetOrigin method +linktitle: SetOrigin +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Stamp::SetOrigin method. Sets position on page where stamp will be placed in C++.' +type: docs +weight: 2200 +url: /cpp/aspose.pdf.facades/stamp/setorigin/ +--- +## Stamp::SetOrigin method + + +Sets position on page where stamp will be placed. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::Stamp::SetOrigin(float originX, float originY) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| originX | float | X coordinate of the stamp. | +| originY | float | Y coordinate of the stamp. | +## Remarks + + + + + + originX + + + X coordinate of the stamp. + + + + + originY + + + Y coordinate of the stamp. + + + +## See Also + +* Class [Stamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/stamp/stamp/_index.md b/english/cpp/aspose.pdf.facades/stamp/stamp/_index.md new file mode 100644 index 0000000000..70fad99f5c --- /dev/null +++ b/english/cpp/aspose.pdf.facades/stamp/stamp/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::Stamp::Stamp constructor +linktitle: Stamp +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::Stamp::Stamp constructor. Constructor for Stamp object in C++.' +type: docs +weight: 1700 +url: /cpp/aspose.pdf.facades/stamp/stamp/ +--- +## Stamp::Stamp constructor + + +Constructor for [Stamp](../) object. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::Stamp::Stamp() +``` + +## See Also + +* Class [Stamp](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/stampinfo/_index.md b/english/cpp/aspose.pdf.facades/stampinfo/_index.md new file mode 100644 index 0000000000..41cd089811 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/stampinfo/_index.md @@ -0,0 +1,34 @@ +--- +title: Aspose::Pdf::Facades::StampInfo class +linktitle: StampInfo +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::StampInfo class. Class representing stamp information in C++.' +type: docs +weight: 3500 +url: /cpp/aspose.pdf.facades/stampinfo/ +--- +## StampInfo class + + +Class representing stamp information. + +```cpp +class StampInfo : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_Form](./get_form/)() const | Gets [XForm](../../aspose.pdf/xform/) of the stamp. | +| [get_Image](./get_image/)() const | Gets image of stamp. May be null if stamp does not contain images (for example for text stamp). | +| [get_IndexOnPage](./get_indexonpage/)() const | Gets stamp index on the page. | +| [get_Rectangle](./get_rectangle/)() const | Gets rectangle where stamp is placed. | +| [get_StampId](./get_stampid/)() const | Gets identifier of the stamp. | +| [get_StampType](./get_stamptype/)() const | Gets stamp type (image / form). | +| [get_Text](./get_text/)() | Gets text in the stamp. | +| [get_Visible](./get_visible/)() const | Gets visibility of stamp. If false then stamp is hidden (with HideStampById). Hidden stamp may be restored by ShowStampById. | +## See Also + +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/stampinfo/get_form/_index.md b/english/cpp/aspose.pdf.facades/stampinfo/get_form/_index.md new file mode 100644 index 0000000000..39cb0053cb --- /dev/null +++ b/english/cpp/aspose.pdf.facades/stampinfo/get_form/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::StampInfo::get_Form method +linktitle: get_Form +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::StampInfo::get_Form method. Gets XForm of the stamp in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.facades/stampinfo/get_form/ +--- +## StampInfo::get_Form method + + +Gets [XForm](../../../aspose.pdf/xform/) of the stamp. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::StampInfo::get_Form() const +``` + +## See Also + +* Class [XForm](../../../aspose.pdf/xform/) +* Class [StampInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/stampinfo/get_image/_index.md b/english/cpp/aspose.pdf.facades/stampinfo/get_image/_index.md new file mode 100644 index 0000000000..f7a0dc0ce3 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/stampinfo/get_image/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::StampInfo::get_Image method +linktitle: get_Image +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::StampInfo::get_Image method. Gets image of stamp. May be null if stamp does not contain images (for example for text stamp) in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.facades/stampinfo/get_image/ +--- +## StampInfo::get_Image method + + +Gets image of stamp. May be null if stamp does not contain images (for example for text stamp). + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::StampInfo::get_Image() const +``` + +## See Also + +* Class [StampInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/stampinfo/get_indexonpage/_index.md b/english/cpp/aspose.pdf.facades/stampinfo/get_indexonpage/_index.md new file mode 100644 index 0000000000..cfd1bd1f51 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/stampinfo/get_indexonpage/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::StampInfo::get_IndexOnPage method +linktitle: get_IndexOnPage +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::StampInfo::get_IndexOnPage method. Gets stamp index on the page in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.facades/stampinfo/get_indexonpage/ +--- +## StampInfo::get_IndexOnPage method + + +Gets stamp index on the page. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::StampInfo::get_IndexOnPage() const +``` + +## See Also + +* Class [StampInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/stampinfo/get_rectangle/_index.md b/english/cpp/aspose.pdf.facades/stampinfo/get_rectangle/_index.md new file mode 100644 index 0000000000..adca73369c --- /dev/null +++ b/english/cpp/aspose.pdf.facades/stampinfo/get_rectangle/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::StampInfo::get_Rectangle method +linktitle: get_Rectangle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::StampInfo::get_Rectangle method. Gets rectangle where stamp is placed in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.facades/stampinfo/get_rectangle/ +--- +## StampInfo::get_Rectangle method + + +Gets rectangle where stamp is placed. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Facades::StampInfo::get_Rectangle() const +``` + +## See Also + +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [StampInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/stampinfo/get_stampid/_index.md b/english/cpp/aspose.pdf.facades/stampinfo/get_stampid/_index.md new file mode 100644 index 0000000000..a6f487ec8a --- /dev/null +++ b/english/cpp/aspose.pdf.facades/stampinfo/get_stampid/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::StampInfo::get_StampId method +linktitle: get_StampId +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::StampInfo::get_StampId method. Gets identifier of the stamp in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.facades/stampinfo/get_stampid/ +--- +## StampInfo::get_StampId method + + +Gets identifier of the stamp. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::StampInfo::get_StampId() const +``` + +## See Also + +* Class [StampInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/stampinfo/get_stamptype/_index.md b/english/cpp/aspose.pdf.facades/stampinfo/get_stamptype/_index.md new file mode 100644 index 0000000000..5c1ba286f1 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/stampinfo/get_stamptype/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Facades::StampInfo::get_StampType method +linktitle: get_StampType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::StampInfo::get_StampType method. Gets stamp type (image / form) in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.facades/stampinfo/get_stamptype/ +--- +## StampInfo::get_StampType method + + +Gets stamp type (image / form). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::StampType Aspose::Pdf::Facades::StampInfo::get_StampType() const +``` + +## See Also + +* Enum [StampType](../../stamptype/) +* Class [StampInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/stampinfo/get_text/_index.md b/english/cpp/aspose.pdf.facades/stampinfo/get_text/_index.md new file mode 100644 index 0000000000..63ece25234 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/stampinfo/get_text/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::StampInfo::get_Text method +linktitle: get_Text +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::StampInfo::get_Text method. Gets text in the stamp in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.facades/stampinfo/get_text/ +--- +## StampInfo::get_Text method + + +Gets text in the stamp. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Facades::StampInfo::get_Text() +``` + +## See Also + +* Class [StampInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/stampinfo/get_visible/_index.md b/english/cpp/aspose.pdf.facades/stampinfo/get_visible/_index.md new file mode 100644 index 0000000000..1548582761 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/stampinfo/get_visible/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::StampInfo::get_Visible method +linktitle: get_Visible +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::StampInfo::get_Visible method. Gets visibility of stamp. If false then stamp is hidden (with HideStampById). Hidden stamp may be restored by ShowStampById in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.facades/stampinfo/get_visible/ +--- +## StampInfo::get_Visible method + + +Gets visibility of stamp. If false then stamp is hidden (with HideStampById). Hidden stamp may be restored by ShowStampById. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::StampInfo::get_Visible() const +``` + +## See Also + +* Class [StampInfo](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/stamptype/_index.md b/english/cpp/aspose.pdf.facades/stamptype/_index.md new file mode 100644 index 0000000000..2b472807f8 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/stamptype/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Facades::StampType enum +linktitle: StampType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::StampType enum. Describes stamp types in C++.' +type: docs +weight: 5000 +url: /cpp/aspose.pdf.facades/stamptype/ +--- +## StampType enum + + +Describes stamp types. + +```cpp +enum class StampType +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Form | 0 | [Stamp](../stamp/) if [Form](../form/). | +| Image | 1 | [Stamp](../stamp/) is image. | + +## See Also + +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/submitformflag/_index.md b/english/cpp/aspose.pdf.facades/submitformflag/_index.md new file mode 100644 index 0000000000..2a7a7147e6 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/submitformflag/_index.md @@ -0,0 +1,33 @@ +--- +title: Aspose::Pdf::Facades::SubmitFormFlag enum +linktitle: SubmitFormFlag +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::SubmitFormFlag enum. Enumeration of possible submit form flags in C++.' +type: docs +weight: 5100 +url: /cpp/aspose.pdf.facades/submitformflag/ +--- +## SubmitFormFlag enum + + +Enumeration of possible submit form flags. + +```cpp +enum class SubmitFormFlag +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Fdf | 0 | Data will be returned in FDF format. | +| Html | 1 | Data will be returned in HTML format. | +| Xfdf | 2 | Data will be returned in XFDF format. | +| FdfWithComments | 3 | Data will be returned in FDF format with comments. | +| XfdfWithComments | 4 | Data will be returned in XFDF format with comments. | +| Pdf | 5 | Whole PDF file will be submitted. | + +## See Also + +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/textproperties/_index.md b/english/cpp/aspose.pdf.facades/textproperties/_index.md new file mode 100644 index 0000000000..fe94842eac --- /dev/null +++ b/english/cpp/aspose.pdf.facades/textproperties/_index.md @@ -0,0 +1,33 @@ +--- +title: Aspose::Pdf::Facades::TextProperties class +linktitle: TextProperties +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::TextProperties class. Represents text properties such as: text size, color, style etc in C++.' +type: docs +weight: 3600 +url: /cpp/aspose.pdf.facades/textproperties/ +--- +## TextProperties class + + +Represents text properties such as: text size, color, style etc. + +```cpp +class TextProperties : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_Color](./get_color/)() const | Gets text color. | +| [get_IsColorSpecified](./get_iscolorspecified/)() const | Gets a value that indicates whether the [Color](../../aspose.pdf/color/) property is specified. | +| [get_IsTextSizeSpecified](./get_istextsizespecified/)() const | Gets a value that indicates whether the [TextSize](../) property is specified. | +| [get_TextSize](./get_textsize/)() const | Gets text size. | +| [set_Color](./set_color/)(System::Drawing::Color) | Sets text color. | +| [set_TextSize](./set_textsize/)(double) | Sets text size. | +| [TextProperties](./textproperties/)(double) | Creates [TextProperties](./) object for the specified text size. | +## See Also + +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/textproperties/get_color/_index.md b/english/cpp/aspose.pdf.facades/textproperties/get_color/_index.md new file mode 100644 index 0000000000..60c30aa5b3 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/textproperties/get_color/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::TextProperties::get_Color method +linktitle: get_Color +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::TextProperties::get_Color method. Gets text color in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.facades/textproperties/get_color/ +--- +## TextProperties::get_Color method + + +Gets text color. + +```cpp +ASPOSE_PDF_SHARED_API System::Drawing::Color Aspose::Pdf::Facades::TextProperties::get_Color() const +``` + +## See Also + +* Class [TextProperties](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/textproperties/get_iscolorspecified/_index.md b/english/cpp/aspose.pdf.facades/textproperties/get_iscolorspecified/_index.md new file mode 100644 index 0000000000..b96a38a9a3 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/textproperties/get_iscolorspecified/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::TextProperties::get_IsColorSpecified method +linktitle: get_IsColorSpecified +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::TextProperties::get_IsColorSpecified method. Gets a value that indicates whether the Color property is specified in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.facades/textproperties/get_iscolorspecified/ +--- +## TextProperties::get_IsColorSpecified method + + +Gets a value that indicates whether the [Color](../../../aspose.pdf/color/) property is specified. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::TextProperties::get_IsColorSpecified() const +``` + +## See Also + +* Class [TextProperties](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/textproperties/get_istextsizespecified/_index.md b/english/cpp/aspose.pdf.facades/textproperties/get_istextsizespecified/_index.md new file mode 100644 index 0000000000..8c2c7ffa83 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/textproperties/get_istextsizespecified/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::TextProperties::get_IsTextSizeSpecified method +linktitle: get_IsTextSizeSpecified +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::TextProperties::get_IsTextSizeSpecified method. Gets a value that indicates whether the TextSize property is specified in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.facades/textproperties/get_istextsizespecified/ +--- +## TextProperties::get_IsTextSizeSpecified method + + +Gets a value that indicates whether the [TextSize](../) property is specified. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Facades::TextProperties::get_IsTextSizeSpecified() const +``` + +## See Also + +* Class [TextProperties](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/textproperties/get_textsize/_index.md b/english/cpp/aspose.pdf.facades/textproperties/get_textsize/_index.md new file mode 100644 index 0000000000..b1c13a204e --- /dev/null +++ b/english/cpp/aspose.pdf.facades/textproperties/get_textsize/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::TextProperties::get_TextSize method +linktitle: get_TextSize +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::TextProperties::get_TextSize method. Gets text size in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.facades/textproperties/get_textsize/ +--- +## TextProperties::get_TextSize method + + +Gets text size. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Facades::TextProperties::get_TextSize() const +``` + +## See Also + +* Class [TextProperties](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/textproperties/set_color/_index.md b/english/cpp/aspose.pdf.facades/textproperties/set_color/_index.md new file mode 100644 index 0000000000..db40d34de5 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/textproperties/set_color/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::TextProperties::set_Color method +linktitle: set_Color +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::TextProperties::set_Color method. Sets text color in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.facades/textproperties/set_color/ +--- +## TextProperties::set_Color method + + +Sets text color. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::TextProperties::set_Color(System::Drawing::Color value) +``` + +## See Also + +* Class [TextProperties](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/textproperties/set_textsize/_index.md b/english/cpp/aspose.pdf.facades/textproperties/set_textsize/_index.md new file mode 100644 index 0000000000..cdfa9a6db7 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/textproperties/set_textsize/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::TextProperties::set_TextSize method +linktitle: set_TextSize +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::TextProperties::set_TextSize method. Sets text size in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.facades/textproperties/set_textsize/ +--- +## TextProperties::set_TextSize method + + +Sets text size. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Facades::TextProperties::set_TextSize(double value) +``` + +## See Also + +* Class [TextProperties](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/textproperties/textproperties/_index.md b/english/cpp/aspose.pdf.facades/textproperties/textproperties/_index.md new file mode 100644 index 0000000000..ae2c9d5b3b --- /dev/null +++ b/english/cpp/aspose.pdf.facades/textproperties/textproperties/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Facades::TextProperties::TextProperties constructor +linktitle: TextProperties +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::TextProperties::TextProperties constructor. Creates TextProperties object for the specified text size in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.facades/textproperties/textproperties/ +--- +## TextProperties::TextProperties constructor + + +Creates [TextProperties](../) object for the specified text size. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Facades::TextProperties::TextProperties(double textSize) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| textSize | double | [Text](../../../aspose.pdf.text/) size value. | +## Remarks + + + + + + textSize + + + + Text size value. + + + +## See Also + +* Class [TextProperties](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/viewerpreference/_index.md b/english/cpp/aspose.pdf.facades/viewerpreference/_index.md new file mode 100644 index 0000000000..7245b6f25a --- /dev/null +++ b/english/cpp/aspose.pdf.facades/viewerpreference/_index.md @@ -0,0 +1,54 @@ +--- +title: Aspose::Pdf::Facades::ViewerPreference class +linktitle: ViewerPreference +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::ViewerPreference class. Describes viewer prefereces (page mode, non full screen page mode, page layout) in C++.' +type: docs +weight: 3700 +url: /cpp/aspose.pdf.facades/viewerpreference/ +--- +## ViewerPreference class + + +Describes viewer prefereces (page mode, non full screen page mode, page layout). + +```cpp +class ViewerPreference : public System::Object +``` + +## Fields + +| Field | Description | +| --- | --- | +| static constexpr [CenterWindow](./centerwindow/) | A flag specifying whether to position the document's window in the center of the screen. | +| static constexpr [DirectionL2R](./directionl2r/) | [Text](../../aspose.pdf.text/) reading order left to right. | +| static constexpr [DirectionR2L](./directionr2l/) | [Text](../../aspose.pdf.text/) reading order right to left. | +| static constexpr [DisplayDocTitle](./displaydoctitle/) | A flag specifying whether the window's title bar should display the document title. | +| static constexpr [DuplexFlipLongEdge](./duplexfliplongedge/) | Duplex and flip on the short edge of the sheet. | +| static constexpr [DuplexFlipShortEdge](./duplexflipshortedge/) | Duplex and flip on the short edge of the sheet. | +| static constexpr [FitWindow](./fitwindow/) | A flag specifying whether to resize the document's window to fit the size of the first displayed page. | +| static constexpr [HideMenubar](./hidemenubar/) | A flag specifying whether to hide the conforming reader's menu bar when the document is active. | +| static constexpr [HideToolbar](./hidetoolbar/) | A flag specifying whether to hide the conforming reader's tool bars when the document is active. | +| static constexpr [HideWindowUI](./hidewindowui/) | A flag specifying whether to hide user interface elements in the document's window (such as scroll bars and navigation controls), leaving only the document's contents displayed. | +| static constexpr [NonFullScreenPageModeUseNone](./nonfullscreenpagemodeusenone/) | Neither document outline nor thumbnail images visible. | +| static constexpr [NonFullScreenPageModeUseOC](./nonfullscreenpagemodeuseoc/) | Optional content group panel visible. | +| static constexpr [NonFullScreenPageModeUseOutlines](./nonfullscreenpagemodeuseoutlines/) | [Document](../../aspose.pdf/document/) outline visible. | +| static constexpr [NonFullScreenPageModeUseThumbs](./nonfullscreenpagemodeusethumbs/) | Thumbnail images visible. | +| static constexpr [PageLayoutOneColumn](./pagelayoutonecolumn/) | Display the pages in one column. | +| static constexpr [PageLayoutSinglePage](./pagelayoutsinglepage/) | Display one page at a time. | +| static constexpr [PageLayoutTwoColumnLeft](./pagelayouttwocolumnleft/) | Display the pages in two columns, with odd-numbered pages on the right. | +| static constexpr [PageLayoutTwoColumnRight](./pagelayouttwocolumnright/) | Display the pages in two columns, with odd-numbered pages on the right. | +| static constexpr [PageModeFullScreen](./pagemodefullscreen/) | Full-screen mode, with no menu bar, window controls, or any other window visible. | +| static constexpr [PageModeUseAttachment](./pagemodeuseattachment/) | [Page](../../aspose.pdf/page/) mode with attacments. | +| static constexpr [PageModeUseNone](./pagemodeusenone/) | Neither document outline nor thumbnail images visible. | +| static constexpr [PageModeUseOC](./pagemodeuseoc/) | Optional content group panel visible. | +| static constexpr [PageModeUseOutlines](./pagemodeuseoutlines/) | [Document](../../aspose.pdf/document/) outline visible. | +| static constexpr [PageModeUseThumbs](./pagemodeusethumbs/) | Thumbnail images visible. | +| static constexpr [PickTrayByPDFSize](./picktraybypdfsize/) | Use the PDF page size to select the input paper tray. | +| static constexpr [PrintScalingAppDefault](./printscalingappdefault/) | The conforming reader's default print scaling. | +| static constexpr [PrintScalingNone](./printscalingnone/) | No page scaling. | +| static constexpr [Simplex](./simplex/) | Print single-sided. | +## See Also + +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.facades/viewerpreference/centerwindow/_index.md b/english/cpp/aspose.pdf.facades/viewerpreference/centerwindow/_index.md new file mode 100644 index 0000000000..2dd27467f9 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/viewerpreference/centerwindow/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::ViewerPreference::CenterWindow field +linktitle: CenterWindow +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::ViewerPreference::CenterWindow field. A flag specifying whether to position the document''s window in the center of the screen in C++.' +type: docs +weight: 1700 +url: /cpp/aspose.pdf.facades/viewerpreference/centerwindow/ +--- +## CenterWindow field + + +A flag specifying whether to position the document's window in the center of the screen. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::CenterWindow +``` + +## See Also + +* Class [ViewerPreference](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/viewerpreference/directionl2r/_index.md b/english/cpp/aspose.pdf.facades/viewerpreference/directionl2r/_index.md new file mode 100644 index 0000000000..6154b21ca3 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/viewerpreference/directionl2r/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::ViewerPreference::DirectionL2R field +linktitle: DirectionL2R +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::ViewerPreference::DirectionL2R field. Text reading order left to right in C++.' +type: docs +weight: 2100 +url: /cpp/aspose.pdf.facades/viewerpreference/directionl2r/ +--- +## DirectionL2R field + + +[Text](../../../aspose.pdf.text/) reading order left to right. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::DirectionL2R +``` + +## See Also + +* Class [ViewerPreference](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/viewerpreference/directionr2l/_index.md b/english/cpp/aspose.pdf.facades/viewerpreference/directionr2l/_index.md new file mode 100644 index 0000000000..e1c09b3493 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/viewerpreference/directionr2l/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::ViewerPreference::DirectionR2L field +linktitle: DirectionR2L +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::ViewerPreference::DirectionR2L field. Text reading order right to left in C++.' +type: docs +weight: 2200 +url: /cpp/aspose.pdf.facades/viewerpreference/directionr2l/ +--- +## DirectionR2L field + + +[Text](../../../aspose.pdf.text/) reading order right to left. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::DirectionR2L +``` + +## See Also + +* Class [ViewerPreference](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/viewerpreference/displaydoctitle/_index.md b/english/cpp/aspose.pdf.facades/viewerpreference/displaydoctitle/_index.md new file mode 100644 index 0000000000..addd8f328c --- /dev/null +++ b/english/cpp/aspose.pdf.facades/viewerpreference/displaydoctitle/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::ViewerPreference::DisplayDocTitle field +linktitle: DisplayDocTitle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::ViewerPreference::DisplayDocTitle field. A flag specifying whether the window''s title bar should display the document title in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.facades/viewerpreference/displaydoctitle/ +--- +## DisplayDocTitle field + + +A flag specifying whether the window's title bar should display the document title. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::DisplayDocTitle +``` + +## See Also + +* Class [ViewerPreference](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/viewerpreference/duplexfliplongedge/_index.md b/english/cpp/aspose.pdf.facades/viewerpreference/duplexfliplongedge/_index.md new file mode 100644 index 0000000000..adc4c91500 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/viewerpreference/duplexfliplongedge/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::ViewerPreference::DuplexFlipLongEdge field +linktitle: DuplexFlipLongEdge +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::ViewerPreference::DuplexFlipLongEdge field. Duplex and flip on the short edge of the sheet in C++.' +type: docs +weight: 2500 +url: /cpp/aspose.pdf.facades/viewerpreference/duplexfliplongedge/ +--- +## DuplexFlipLongEdge field + + +Duplex and flip on the short edge of the sheet. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::DuplexFlipLongEdge +``` + +## See Also + +* Class [ViewerPreference](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/viewerpreference/duplexflipshortedge/_index.md b/english/cpp/aspose.pdf.facades/viewerpreference/duplexflipshortedge/_index.md new file mode 100644 index 0000000000..06c72c6b19 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/viewerpreference/duplexflipshortedge/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::ViewerPreference::DuplexFlipShortEdge field +linktitle: DuplexFlipShortEdge +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::ViewerPreference::DuplexFlipShortEdge field. Duplex and flip on the short edge of the sheet in C++.' +type: docs +weight: 2400 +url: /cpp/aspose.pdf.facades/viewerpreference/duplexflipshortedge/ +--- +## DuplexFlipShortEdge field + + +Duplex and flip on the short edge of the sheet. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::DuplexFlipShortEdge +``` + +## See Also + +* Class [ViewerPreference](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/viewerpreference/fitwindow/_index.md b/english/cpp/aspose.pdf.facades/viewerpreference/fitwindow/_index.md new file mode 100644 index 0000000000..0080fc8aeb --- /dev/null +++ b/english/cpp/aspose.pdf.facades/viewerpreference/fitwindow/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::ViewerPreference::FitWindow field +linktitle: FitWindow +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::ViewerPreference::FitWindow field. A flag specifying whether to resize the document''s window to fit the size of the first displayed page in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf.facades/viewerpreference/fitwindow/ +--- +## FitWindow field + + +A flag specifying whether to resize the document's window to fit the size of the first displayed page. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::FitWindow +``` + +## See Also + +* Class [ViewerPreference](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/viewerpreference/hidemenubar/_index.md b/english/cpp/aspose.pdf.facades/viewerpreference/hidemenubar/_index.md new file mode 100644 index 0000000000..015d259bf3 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/viewerpreference/hidemenubar/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::ViewerPreference::HideMenubar field +linktitle: HideMenubar +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::ViewerPreference::HideMenubar field. A flag specifying whether to hide the conforming reader''s menu bar when the document is active in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.facades/viewerpreference/hidemenubar/ +--- +## HideMenubar field + + +A flag specifying whether to hide the conforming reader's menu bar when the document is active. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::HideMenubar +``` + +## See Also + +* Class [ViewerPreference](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/viewerpreference/hidetoolbar/_index.md b/english/cpp/aspose.pdf.facades/viewerpreference/hidetoolbar/_index.md new file mode 100644 index 0000000000..4dbfba8a8e --- /dev/null +++ b/english/cpp/aspose.pdf.facades/viewerpreference/hidetoolbar/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::ViewerPreference::HideToolbar field +linktitle: HideToolbar +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::ViewerPreference::HideToolbar field. A flag specifying whether to hide the conforming reader''s tool bars when the document is active in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.facades/viewerpreference/hidetoolbar/ +--- +## HideToolbar field + + +A flag specifying whether to hide the conforming reader's tool bars when the document is active. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::HideToolbar +``` + +## See Also + +* Class [ViewerPreference](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/viewerpreference/hidewindowui/_index.md b/english/cpp/aspose.pdf.facades/viewerpreference/hidewindowui/_index.md new file mode 100644 index 0000000000..3b385161bd --- /dev/null +++ b/english/cpp/aspose.pdf.facades/viewerpreference/hidewindowui/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::ViewerPreference::HideWindowUI field +linktitle: HideWindowUI +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::ViewerPreference::HideWindowUI field. A flag specifying whether to hide user interface elements in the document''s window (such as scroll bars and navigation controls), leaving only the document''s contents displayed in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.facades/viewerpreference/hidewindowui/ +--- +## HideWindowUI field + + +A flag specifying whether to hide user interface elements in the document's window (such as scroll bars and navigation controls), leaving only the document's contents displayed. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::HideWindowUI +``` + +## See Also + +* Class [ViewerPreference](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/viewerpreference/nonfullscreenpagemodeusenone/_index.md b/english/cpp/aspose.pdf.facades/viewerpreference/nonfullscreenpagemodeusenone/_index.md new file mode 100644 index 0000000000..80c2b9ee65 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/viewerpreference/nonfullscreenpagemodeusenone/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::ViewerPreference::NonFullScreenPageModeUseNone field +linktitle: NonFullScreenPageModeUseNone +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::ViewerPreference::NonFullScreenPageModeUseNone field. Neither document outline nor thumbnail images visible in C++.' +type: docs +weight: 1800 +url: /cpp/aspose.pdf.facades/viewerpreference/nonfullscreenpagemodeusenone/ +--- +## NonFullScreenPageModeUseNone field + + +Neither document outline nor thumbnail images visible. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::NonFullScreenPageModeUseNone +``` + +## See Also + +* Class [ViewerPreference](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/viewerpreference/nonfullscreenpagemodeuseoc/_index.md b/english/cpp/aspose.pdf.facades/viewerpreference/nonfullscreenpagemodeuseoc/_index.md new file mode 100644 index 0000000000..e57ed9be53 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/viewerpreference/nonfullscreenpagemodeuseoc/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::ViewerPreference::NonFullScreenPageModeUseOC field +linktitle: NonFullScreenPageModeUseOC +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::ViewerPreference::NonFullScreenPageModeUseOC field. Optional content group panel visible in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.facades/viewerpreference/nonfullscreenpagemodeuseoc/ +--- +## NonFullScreenPageModeUseOC field + + +Optional content group panel visible. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::NonFullScreenPageModeUseOC +``` + +## See Also + +* Class [ViewerPreference](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/viewerpreference/nonfullscreenpagemodeuseoutlines/_index.md b/english/cpp/aspose.pdf.facades/viewerpreference/nonfullscreenpagemodeuseoutlines/_index.md new file mode 100644 index 0000000000..1af985e8ba --- /dev/null +++ b/english/cpp/aspose.pdf.facades/viewerpreference/nonfullscreenpagemodeuseoutlines/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::ViewerPreference::NonFullScreenPageModeUseOutlines field +linktitle: NonFullScreenPageModeUseOutlines +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::ViewerPreference::NonFullScreenPageModeUseOutlines field. Document outline visible in C++.' +type: docs +weight: 1900 +url: /cpp/aspose.pdf.facades/viewerpreference/nonfullscreenpagemodeuseoutlines/ +--- +## NonFullScreenPageModeUseOutlines field + + +[Document](../../../aspose.pdf/document/) outline visible. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::NonFullScreenPageModeUseOutlines +``` + +## See Also + +* Class [ViewerPreference](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/viewerpreference/nonfullscreenpagemodeusethumbs/_index.md b/english/cpp/aspose.pdf.facades/viewerpreference/nonfullscreenpagemodeusethumbs/_index.md new file mode 100644 index 0000000000..a65c69e582 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/viewerpreference/nonfullscreenpagemodeusethumbs/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::ViewerPreference::NonFullScreenPageModeUseThumbs field +linktitle: NonFullScreenPageModeUseThumbs +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::ViewerPreference::NonFullScreenPageModeUseThumbs field. Thumbnail images visible in C++.' +type: docs +weight: 2000 +url: /cpp/aspose.pdf.facades/viewerpreference/nonfullscreenpagemodeusethumbs/ +--- +## NonFullScreenPageModeUseThumbs field + + +Thumbnail images visible. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::NonFullScreenPageModeUseThumbs +``` + +## See Also + +* Class [ViewerPreference](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/viewerpreference/pagelayoutonecolumn/_index.md b/english/cpp/aspose.pdf.facades/viewerpreference/pagelayoutonecolumn/_index.md new file mode 100644 index 0000000000..d3a4a715c0 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/viewerpreference/pagelayoutonecolumn/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::ViewerPreference::PageLayoutOneColumn field +linktitle: PageLayoutOneColumn +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::ViewerPreference::PageLayoutOneColumn field. Display the pages in one column in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.facades/viewerpreference/pagelayoutonecolumn/ +--- +## PageLayoutOneColumn field + + +Display the pages in one column. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::PageLayoutOneColumn +``` + +## See Also + +* Class [ViewerPreference](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/viewerpreference/pagelayoutsinglepage/_index.md b/english/cpp/aspose.pdf.facades/viewerpreference/pagelayoutsinglepage/_index.md new file mode 100644 index 0000000000..570681c73f --- /dev/null +++ b/english/cpp/aspose.pdf.facades/viewerpreference/pagelayoutsinglepage/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::ViewerPreference::PageLayoutSinglePage field +linktitle: PageLayoutSinglePage +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::ViewerPreference::PageLayoutSinglePage field. Display one page at a time in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.facades/viewerpreference/pagelayoutsinglepage/ +--- +## PageLayoutSinglePage field + + +Display one page at a time. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::PageLayoutSinglePage +``` + +## See Also + +* Class [ViewerPreference](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/viewerpreference/pagelayouttwocolumnleft/_index.md b/english/cpp/aspose.pdf.facades/viewerpreference/pagelayouttwocolumnleft/_index.md new file mode 100644 index 0000000000..c281ee9f25 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/viewerpreference/pagelayouttwocolumnleft/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::ViewerPreference::PageLayoutTwoColumnLeft field +linktitle: PageLayoutTwoColumnLeft +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::ViewerPreference::PageLayoutTwoColumnLeft field. Display the pages in two columns, with odd-numbered pages on the right in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.facades/viewerpreference/pagelayouttwocolumnleft/ +--- +## PageLayoutTwoColumnLeft field + + +Display the pages in two columns, with odd-numbered pages on the right. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::PageLayoutTwoColumnLeft +``` + +## See Also + +* Class [ViewerPreference](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/viewerpreference/pagelayouttwocolumnright/_index.md b/english/cpp/aspose.pdf.facades/viewerpreference/pagelayouttwocolumnright/_index.md new file mode 100644 index 0000000000..1d95a7a355 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/viewerpreference/pagelayouttwocolumnright/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::ViewerPreference::PageLayoutTwoColumnRight field +linktitle: PageLayoutTwoColumnRight +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::ViewerPreference::PageLayoutTwoColumnRight field. Display the pages in two columns, with odd-numbered pages on the right in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.facades/viewerpreference/pagelayouttwocolumnright/ +--- +## PageLayoutTwoColumnRight field + + +Display the pages in two columns, with odd-numbered pages on the right. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::PageLayoutTwoColumnRight +``` + +## See Also + +* Class [ViewerPreference](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/viewerpreference/pagemodefullscreen/_index.md b/english/cpp/aspose.pdf.facades/viewerpreference/pagemodefullscreen/_index.md new file mode 100644 index 0000000000..f548df9c37 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/viewerpreference/pagemodefullscreen/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::ViewerPreference::PageModeFullScreen field +linktitle: PageModeFullScreen +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::ViewerPreference::PageModeFullScreen field. Full-screen mode, with no menu bar, window controls, or any other window visible in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.facades/viewerpreference/pagemodefullscreen/ +--- +## PageModeFullScreen field + + +Full-screen mode, with no menu bar, window controls, or any other window visible. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::PageModeFullScreen +``` + +## See Also + +* Class [ViewerPreference](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/viewerpreference/pagemodeuseattachment/_index.md b/english/cpp/aspose.pdf.facades/viewerpreference/pagemodeuseattachment/_index.md new file mode 100644 index 0000000000..bec11adb49 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/viewerpreference/pagemodeuseattachment/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::ViewerPreference::PageModeUseAttachment field +linktitle: PageModeUseAttachment +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::ViewerPreference::PageModeUseAttachment field. Page mode with attacments in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.facades/viewerpreference/pagemodeuseattachment/ +--- +## PageModeUseAttachment field + + +[Page](../../../aspose.pdf/page/) mode with attacments. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::PageModeUseAttachment +``` + +## See Also + +* Class [ViewerPreference](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/viewerpreference/pagemodeusenone/_index.md b/english/cpp/aspose.pdf.facades/viewerpreference/pagemodeusenone/_index.md new file mode 100644 index 0000000000..c3af172fa4 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/viewerpreference/pagemodeusenone/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::ViewerPreference::PageModeUseNone field +linktitle: PageModeUseNone +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::ViewerPreference::PageModeUseNone field. Neither document outline nor thumbnail images visible in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.facades/viewerpreference/pagemodeusenone/ +--- +## PageModeUseNone field + + +Neither document outline nor thumbnail images visible. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::PageModeUseNone +``` + +## See Also + +* Class [ViewerPreference](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/viewerpreference/pagemodeuseoc/_index.md b/english/cpp/aspose.pdf.facades/viewerpreference/pagemodeuseoc/_index.md new file mode 100644 index 0000000000..174dd13c4a --- /dev/null +++ b/english/cpp/aspose.pdf.facades/viewerpreference/pagemodeuseoc/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::ViewerPreference::PageModeUseOC field +linktitle: PageModeUseOC +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::ViewerPreference::PageModeUseOC field. Optional content group panel visible in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.facades/viewerpreference/pagemodeuseoc/ +--- +## PageModeUseOC field + + +Optional content group panel visible. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::PageModeUseOC +``` + +## See Also + +* Class [ViewerPreference](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/viewerpreference/pagemodeuseoutlines/_index.md b/english/cpp/aspose.pdf.facades/viewerpreference/pagemodeuseoutlines/_index.md new file mode 100644 index 0000000000..ddbdc4e03d --- /dev/null +++ b/english/cpp/aspose.pdf.facades/viewerpreference/pagemodeuseoutlines/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::ViewerPreference::PageModeUseOutlines field +linktitle: PageModeUseOutlines +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::ViewerPreference::PageModeUseOutlines field. Document outline visible in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.facades/viewerpreference/pagemodeuseoutlines/ +--- +## PageModeUseOutlines field + + +[Document](../../../aspose.pdf/document/) outline visible. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::PageModeUseOutlines +``` + +## See Also + +* Class [ViewerPreference](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/viewerpreference/pagemodeusethumbs/_index.md b/english/cpp/aspose.pdf.facades/viewerpreference/pagemodeusethumbs/_index.md new file mode 100644 index 0000000000..0a3e179000 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/viewerpreference/pagemodeusethumbs/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::ViewerPreference::PageModeUseThumbs field +linktitle: PageModeUseThumbs +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::ViewerPreference::PageModeUseThumbs field. Thumbnail images visible in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.facades/viewerpreference/pagemodeusethumbs/ +--- +## PageModeUseThumbs field + + +Thumbnail images visible. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::PageModeUseThumbs +``` + +## See Also + +* Class [ViewerPreference](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/viewerpreference/picktraybypdfsize/_index.md b/english/cpp/aspose.pdf.facades/viewerpreference/picktraybypdfsize/_index.md new file mode 100644 index 0000000000..43f80b6a28 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/viewerpreference/picktraybypdfsize/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::ViewerPreference::PickTrayByPDFSize field +linktitle: PickTrayByPDFSize +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::ViewerPreference::PickTrayByPDFSize field. Use the PDF page size to select the input paper tray in C++.' +type: docs +weight: 2800 +url: /cpp/aspose.pdf.facades/viewerpreference/picktraybypdfsize/ +--- +## PickTrayByPDFSize field + + +Use the PDF page size to select the input paper tray. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::PickTrayByPDFSize +``` + +## See Also + +* Class [ViewerPreference](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/viewerpreference/printscalingappdefault/_index.md b/english/cpp/aspose.pdf.facades/viewerpreference/printscalingappdefault/_index.md new file mode 100644 index 0000000000..b549eed425 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/viewerpreference/printscalingappdefault/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::ViewerPreference::PrintScalingAppDefault field +linktitle: PrintScalingAppDefault +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::ViewerPreference::PrintScalingAppDefault field. The conforming reader''s default print scaling in C++.' +type: docs +weight: 2600 +url: /cpp/aspose.pdf.facades/viewerpreference/printscalingappdefault/ +--- +## PrintScalingAppDefault field + + +The conforming reader's default print scaling. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::PrintScalingAppDefault +``` + +## See Also + +* Class [ViewerPreference](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/viewerpreference/printscalingnone/_index.md b/english/cpp/aspose.pdf.facades/viewerpreference/printscalingnone/_index.md new file mode 100644 index 0000000000..5d4be291e3 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/viewerpreference/printscalingnone/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::ViewerPreference::PrintScalingNone field +linktitle: PrintScalingNone +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::ViewerPreference::PrintScalingNone field. No page scaling in C++.' +type: docs +weight: 2700 +url: /cpp/aspose.pdf.facades/viewerpreference/printscalingnone/ +--- +## PrintScalingNone field + + +No page scaling. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::PrintScalingNone +``` + +## See Also + +* Class [ViewerPreference](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/viewerpreference/simplex/_index.md b/english/cpp/aspose.pdf.facades/viewerpreference/simplex/_index.md new file mode 100644 index 0000000000..0ec020ff2e --- /dev/null +++ b/english/cpp/aspose.pdf.facades/viewerpreference/simplex/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Facades::ViewerPreference::Simplex field +linktitle: Simplex +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::ViewerPreference::Simplex field. Print single-sided in C++.' +type: docs +weight: 2300 +url: /cpp/aspose.pdf.facades/viewerpreference/simplex/ +--- +## Simplex field + + +Print single-sided. + +```cpp +static ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::Simplex +``` + +## See Also + +* Class [ViewerPreference](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/wordwrapmode/_index.md b/english/cpp/aspose.pdf.facades/wordwrapmode/_index.md new file mode 100644 index 0000000000..9e9a8c09c6 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/wordwrapmode/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Facades::WordWrapMode enum +linktitle: WordWrapMode +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::WordWrapMode enum. Defines word wrapping strategies in C++.' +type: docs +weight: 5200 +url: /cpp/aspose.pdf.facades/wordwrapmode/ +--- +## WordWrapMode enum + + +Defines word wrapping strategies. + +```cpp +enum class WordWrapMode +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Default | 0 | Default algorithm (allows breaking words in the middle) | +| ByWords | 1 | Word wrapping only wraps complete words. If the complete word cannot be wrapped, attempts to wrap word in the middle. | + +## See Also + +* Namespace [Aspose::Pdf::Facades](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.forms/_index.md b/english/cpp/aspose.pdf.forms/_index.md new file mode 100644 index 0000000000..c5f86dc34b --- /dev/null +++ b/english/cpp/aspose.pdf.forms/_index.md @@ -0,0 +1,63 @@ +--- +title: Aspose::Pdf::Forms namespace +linktitle: Aspose::Pdf::Forms +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Forms namespace in C++.' +type: docs +weight: 1800 +url: /cpp/aspose.pdf.forms/ +--- + + + +## Classes + +| Class | Description | +| --- | --- | +| [BarcodeField](./barcodefield/) | Class represents barcode field. | +| [ButtonField](./buttonfield/) | Class represnets push button field. | +| [CheckboxField](./checkboxfield/) | Class representing checkbox field. | +| [ChoiceField](./choicefield/) | Represents base class for choice fields. | +| [ComboBoxField](./comboboxfield/) | Class representing Combobox field of the form. | +| [DateField](./datefield/) | Date field with calendar view. | +| [DocMDPSignature](./docmdpsignature/) | Represents the class of document MDP (modification detection and prevention) signature type. | +| [ExternalSignature](./externalsignature/) | Creates a detached PKCS#7Detached signature using a X509Certificate2. It supports usb smartcards, tokens without exportable private keys. | +| [Field](./field/) | Base class for acro form fields. | +| [FileSelectBoxField](./fileselectboxfield/) | [Field](./field/) for file select box element. | +| [Form](./form/) | Class representing form object. | +| [IconFit](./iconfit/) | Describes how the widget annotation's icon shall be displayed within its annotation rectangle. | +| [ListBoxField](./listboxfield/) | Class represents ListBox field. | +| [NumberField](./numberfield/) | [Text](../aspose.pdf.text/)[Field](./field/) with specified valid chars. | +| [Option](./option/) | Class represents option of choice field. | +| [OptionCollection](./optioncollection/) | Class representing collection of options of the choice field. | +| [PasswordBoxField](./passwordboxfield/) | Class descibes text field for entering password. | +| [PKCS1](./pkcs1/) | Represents signature object regarding PKCS#1 standard. RSA encryption algorithm and SHA-1 digest method are used for signing. | +| [PKCS7](./pkcs7/) | Represents the PKCS#7 object that conform to the PKCS#7 specification in Internet RFC 2315, PKCS #7: Cryptographic Message Syntax, Version 1.5. The SHA1 digest of the document's byte range is encapsulated in the PKCS#7 SignedData field. | +| [PKCS7Detached](./pkcs7detached/) | Represents the PKCS#7 object that conform to the PKCS#7 specification in Internet RFC 2315, PKCS #7: Cryptographic Message Syntax, Version 1.5. The original signed message digest over the document's byte range is incorporated as the normal PKCS#7 SignedData field. No data shall is encapsulated in the PKCS#7 SignedData field. | +| [RadioButtonField](./radiobuttonfield/) | Class representing radio button field. | +| [RadioButtonOptionField](./radiobuttonoptionfield/) | Class represents item of RadioButton field. | +| [RichTextBoxField](./richtextboxfield/) | Class describes rich text editor component. | +| [Signature](./signature/) | An abstract class which represents signature object in the pdf document. Signatures are fields with values of signature objects, the last contain data which is used to verify the document validity. | +| [SignatureCustomAppearance](./signaturecustomappearance/) | An abstract class which represents signature custon appearance object. | +| [SignatureField](./signaturefield/) | Represents signature form field. | +| [SignatureSubjectFormatter](./signaturesubjectformatter/) | | +| [SymbologyConverter](./symbologyconverter/) | | +| [TextBoxField](./textboxfield/) | Class representing text box field. | +| [XFA](./xfa/) | Represents XML form regarding XML [Forms](./) Architecture ([XFA](./xfa/)). | +## Enums + +| Enum | Description | +| --- | --- | +| [BoxStyle](./boxstyle/) | Represents styles of check box. | +| [DocMDPAccessPermissions](./docmdpaccesspermissions/) | The access permissions granted for this document. Valid values are: 1 - No changes to the document are permitted; any change to the document invalidates the signature. 2 - Permitted changes are filling in forms, instantiating page templates, and signing; other changes invalidate the signature. 3 - Permitted changes are the same as for 2, as well as annotation creation, deletion, and modification; other changes invalidate the signature. | +| [FormType](./formtype/) | Enumeration of posible types of Acro [Form](./form/). | +| [IconCaptionPosition](./iconcaptionposition/) | Describes position of icon. | +| [ScalingMode](./scalingmode/) | The type of scaling that shall be used. | +| [ScalingReason](./scalingreason/) | The circumstances under which the icon shall be scaled inside the annotation rectangle. | +| [SubjectNameElements](./subjectnameelements/) | Enumeration describes elements in signature subject string. | +| [Symbology](./symbology/) | A (Barcode) Symbology defines the technical details of a particular type of barcode: the width of the bars, character set, method of encoding, checksum specifications, etc. | +## Typedefs + +| Typedef | Description | +| --- | --- | +| [SignHash](./signhash/) | | diff --git a/english/cpp/aspose.pdf.forms/barcodefield/_index.md b/english/cpp/aspose.pdf.forms/barcodefield/_index.md new file mode 100644 index 0000000000..7a136ee8c7 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/barcodefield/_index.md @@ -0,0 +1,162 @@ +--- +title: Aspose::Pdf::Forms::BarcodeField class +linktitle: BarcodeField +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::BarcodeField class. Class represents barcode field in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.forms/barcodefield/ +--- +## BarcodeField class + + +Class represents barcode field. + +```cpp +class BarcodeField : public Aspose::Pdf::Forms::TextBoxField +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Accept](../../aspose.pdf.annotations/widgetannotation/accept/)(System::SharedPtr\) override | Accepts visitor. | +| [AddBarcode](../textboxfield/addbarcode/)(System::String) | Adds barcode 128 into the field. [Field](../field/) value will be changed onto the code and field become read only. | +| [AddImage](../textboxfield/addimage/)(System::SharedPtr\) | Adds image into the field resources and draws it. | +| [BarcodeField](./barcodefield/)(System::SharedPtr\, System::SharedPtr\) | Initializes new instance of the [BarcodeField](./) class. | +| [BarcodeField](./barcodefield/)(System::SharedPtr\, System::SharedPtr\) | Initializes new instance of the [BarcodeField](./) class. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| virtual [ChangeAfterResize](../../aspose.pdf.annotations/annotation/changeafterresize/)(System::SharedPtr\) | Update parameters and appearance, according to the matrix transform. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [CopyTo](../field/copyto/)(System::ArrayPtr\\>, int32_t) | Copies subfields of this field into array starting from specified index. | +| [CopyToWidgetArray](../field/copytowidgetarray/)(System::ArrayPtr\\>, int32_t) | Copies subfields of this field into array starting from specified index. | +| [ExecuteFieldJavaScript](../field/executefieldjavascript/)(System::SharedPtr\) | Executes a specified JavaScript action for the field. | +| [Field](../field/field/)(System::SharedPtr\) | Creates field for use in Generator. | +| [Flatten](../../aspose.pdf.annotations/annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](../../aspose.pdf.annotations/widgetannotation/get_actions/)() const | Gets the annotation actions. | +| [get_Actions](../../aspose.pdf.annotations/annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../../aspose.pdf.annotations/annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../../aspose.pdf.annotations/annotation/get_alignment/)() | [Annotation](../../aspose.pdf.annotations/annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [get_AlternateName](../field/get_alternatename/)() | Gets alternate name of the field (An alternate field name that shall be used in place of the actual field name wherever the field shall be identified in the user interface). Alternate name is used as field tooltip in Adobe Acrobat. | +| [get_AnnotationIndex](../field/get_annotationindex/)() | Gets index of this anotation on the page. | +| [get_AnnotationType](../../aspose.pdf.annotations/widgetannotation/get_annotationtype/)() override | Gets type of annotation. | +| [get_Appearance](../../aspose.pdf.annotations/annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../../aspose.pdf.annotations/annotation/get_border/)() const | Gets annotation border characteristics. [Border](../../aspose.pdf.annotations/border/) | +| [get_Caption](./get_caption/)() | Gets the caption of the barcode object. | +| [get_Characteristics](../../aspose.pdf.annotations/annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../../aspose.pdf.annotations/annotation/get_color/)() | Gets annotation color. | +| [get_Contents](../../aspose.pdf.annotations/annotation/get_contents/)() | Gets annotation text. | +| [get_Count](../field/get_count/)() const override | Gets number of subfields in this field. (For example number of items in radio button field). | +| [get_DefaultAppearance](../../aspose.pdf.annotations/widgetannotation/get_defaultappearance/)() | Gets default appearance of the field. | +| [get_ECC](./get_ecc/)() | Gets an integer value representing the error correction coefficient. For PDF417, shall be from 0 to 8. For QRCode, shall be from 0 to 3 (0 for 'L', 1 for 'M', 2 for 'Q', and 3 for 'H'). | +| [get_Exportable](../../aspose.pdf.annotations/widgetannotation/get_exportable/)() | Gets exportable flag of the field. | +| static [get_FitIntoRectangle](../field/get_fitintorectangle/)() | If true then font size will reduced to fit text to specified rectangle. | +| [get_Flags](../../aspose.pdf.annotations/annotation/get_flags/)() | Flags of the annotation. | +| [get_ForceCombs](../textboxfield/get_forcecombs/)() | Gets flag which indicates is field divided into spaced positions. | +| [get_FullName](../../aspose.pdf.annotations/annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../../aspose.pdf.annotations/annotation/get_height/)() | Gets height of the annotation. | +| [get_Highlighting](../../aspose.pdf.annotations/widgetannotation/get_highlighting/)() | [Annotation](../../aspose.pdf.annotations/annotation/) highlighting mode. | +| [get_HorizontalAlignment](../../aspose.pdf.annotations/annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsGroup](../field/get_isgroup/)() const | Gets boolean value which indicates is this field non-terminal field i.e. group of fields. | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_IsSharedField](../field/get_issharedfield/)() const | Property for Generator support. Used when field is added to header or footer. If true, this field will created once and it's appearance will be visible on all pages of the document. If false, separated field will be created for every document page. | +| [get_IsSynchronized](../field/get_issynchronized/)() | Returns true if dictionary is synchronized. | +| [get_MappingName](../field/get_mappingname/)() | Gets mapping name of the field that shall be used when exporting interactive form field data from the document. | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| static [get_MaxFontSize](../field/get_maxfontsize/)() | Maximail font size which can be used for field contents. -1 to don't check size. | +| [get_MaxLen](../textboxfield/get_maxlen/)() | Gets maximum length of text in the field. | +| static [get_MinFontSize](../field/get_minfontsize/)() | Minimal font size which can be used for field contents. -1 to don't check size. | +| [get_Modified](../../aspose.pdf.annotations/annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Multiline](../textboxfield/get_multiline/)() | Gets multiline flag of the field. If Multiline is true field can contain multiple lines of text. | +| [get_Name](../../aspose.pdf.annotations/annotation/get_name/)() | Gets annotation name on the page. | +| [get_OnActivated](../../aspose.pdf.annotations/widgetannotation/get_onactivated/)() | An action which shall be performed when the annotation is activated. | +| [get_PageIndex](../field/get_pageindex/)() override | Gets index of page which contains this field. | +| [get_Parent](../../aspose.pdf.annotations/widgetannotation/get_parent/)() | Gets annotation parent. | +| [get_PartialName](../field/get_partialname/)() | Gets partial name of the field. | +| [get_ReadOnly](../../aspose.pdf.annotations/widgetannotation/get_readonly/)() | Gets read only status of the field. | +| [get_Rect](../field/get_rect/)() override | Gets the field rectangle. | +| [get_Required](../../aspose.pdf.annotations/widgetannotation/get_required/)() | Gets required status of the field. | +| [get_Resolution](./get_resolution/)() | Gets the resolution, in dots-per-inch (dpi), at which the barcode object is rendered. | +| [get_Scrollable](../textboxfield/get_scrollable/)() | Gets scrollable flag of field. If true field can be scrolled. | +| [get_SpellCheck](../textboxfield/get_spellcheck/)() | Gets spellcheck flag for field. If true field shall be spell checked. | +| [get_States](../../aspose.pdf.annotations/annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_Symbology](./get_symbology/)() | Specifies which barcode or glyph technology is to be used on this annotation, see [Symbology](../symbology/) for details. | +| [get_SyncRoot](../field/get_syncroot/)() const | Synchronization object. | +| [get_TabOrder](../field/get_taborder/)() | Gets tab order of the field. | +| [get_TextHorizontalAlignment](../../aspose.pdf.annotations/annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| [get_TextVerticalAlignment](../textboxfield/get_textverticalalignment/)() const | Gets text vertical alignment for annotation. | +| static [get_UpdateAppearanceOnConvert](../../aspose.pdf.annotations/annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../../aspose.pdf.annotations/annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| [get_Value](../textboxfield/get_value/)() override | Gets value of the field. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../../aspose.pdf.annotations/annotation/get_width/)() | Gets width of the annotation. | +| [get_XSymHeight](./get_xsymheight/)() | Gets the the vertical distance between two barcode modules, measured in pixels. The ratio XSymHeight/XSymWidth shall be an integer value. For PDF417, the acceptable ratio range is from 1 to 4. For QRCode and DataMatrix, this ratio shall always be 1. | +| [get_XSymWidth](./get_xsymwidth/)() | Gets The horizontal distance, in pixels, between two barcode modules. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetCheckedStateName](../../aspose.pdf.annotations/widgetannotation/getcheckedstatename/)() | Returns name of "checked" state according to existing state names. | +| [GetEnumerator](../field/getenumerator/)() override | Returns enumerator of contained fields. | +| [GetRectangle](../../aspose.pdf.annotations/annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| [idx_get](../field/idx_get/)(System::String) | Gets subfield contained in this field by name of the subfield. | +| [idx_get](../field/idx_get/)(int32_t) | Gets subfield contained in this field by index. | +| [Recalculate](../field/recalculate/)() | Recaculates all calculated fields on the form. | +| virtual [set_ActiveState](../../aspose.pdf.annotations/annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../../aspose.pdf.annotations/annotation/set_alignment/)(TextAlignment) | [Annotation](../../aspose.pdf.annotations/annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_AlternateName](../field/set_alternatename/)(System::String) | Sets alternate name of the field (An alternate field name that shall be used in place of the actual field name wherever the field shall be identified in the user interface). Alternate name is used as field tooltip in Adobe Acrobat. | +| [set_AnnotationIndex](../field/set_annotationindex/)(int32_t) | Sets index of this anotation on the page. | +| [set_Border](../../aspose.pdf.annotations/annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../../aspose.pdf.annotations/border/) | +| [set_Color](../../aspose.pdf.annotations/annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](../../aspose.pdf.annotations/annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_DefaultAppearance](../../aspose.pdf.annotations/widgetannotation/set_defaultappearance/)(System::SharedPtr\) | Sets default appearance of the field. | +| [set_Exportable](../../aspose.pdf.annotations/widgetannotation/set_exportable/)(bool) | Sets exportable flag of the field. | +| static [set_FitIntoRectangle](../field/set_fitintorectangle/)(bool) | If true then font size will reduced to fit text to specified rectangle. | +| [set_Flags](../../aspose.pdf.annotations/annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| [set_ForceCombs](../textboxfield/set_forcecombs/)(bool) | Sets flag which indicates is field divided into spaced positions. | +| virtual [set_Height](../../aspose.pdf.annotations/annotation/set_height/)(double) | Sets height of the annotation. | +| [set_Highlighting](../../aspose.pdf.annotations/widgetannotation/set_highlighting/)(HighlightingMode) | [Annotation](../../aspose.pdf.annotations/annotation/) highlighting mode. | +| [set_HorizontalAlignment](../../aspose.pdf.annotations/annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_IsSharedField](../field/set_issharedfield/)(bool) | Property for Generator support. Used when field is added to header or footer. If true, this field will created once and it's appearance will be visible on all pages of the document. If false, separated field will be created for every document page. | +| [set_MappingName](../field/set_mappingname/)(System::String) | Sets mapping name of the field that shall be used when exporting interactive form field data from the document. | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| static [set_MaxFontSize](../field/set_maxfontsize/)(double) | Maximail font size which can be used for field contents. -1 to don't check size. | +| [set_MaxLen](../textboxfield/set_maxlen/)(int32_t) | Sets maximum length of text in the field. | +| static [set_MinFontSize](../field/set_minfontsize/)(double) | Minimal font size which can be used for field contents. -1 to don't check size. | +| [set_Modified](../../aspose.pdf.annotations/annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Multiline](../textboxfield/set_multiline/)(bool) | Sets multiline flag of the field. If Multiline is true field can contain multiple lines of text. | +| [set_Name](../../aspose.pdf.annotations/annotation/set_name/)(System::String) | Sets annotation name on the page. | +| [set_OnActivated](../../aspose.pdf.annotations/widgetannotation/set_onactivated/)(System::SharedPtr\) | An action which shall be performed when the annotation is activated. | +| [set_PartialName](../field/set_partialname/)(System::String) | Sets partial name of the field. | +| [set_ReadOnly](../../aspose.pdf.annotations/widgetannotation/set_readonly/)(bool) | Sets read only status of the field. | +| [set_Rect](../field/set_rect/)(System::SharedPtr\) override | Sets the field rectangle. | +| [set_Required](../../aspose.pdf.annotations/widgetannotation/set_required/)(bool) | Sets required status of the field. | +| [set_Scrollable](../textboxfield/set_scrollable/)(bool) | Sets scrollable flag of field. If true field can be scrolled. | +| [set_SpellCheck](../textboxfield/set_spellcheck/)(bool) | Sets spellcheck flag for field. If true field shall be spell checked. | +| [set_TabOrder](../field/set_taborder/)(int32_t) | Sets tab order of the field. | +| [set_TextHorizontalAlignment](../../aspose.pdf.annotations/annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| [set_TextVerticalAlignment](../textboxfield/set_textverticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets text vertical alignment for annotation. | +| static [set_UpdateAppearanceOnConvert](../../aspose.pdf.annotations/annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../../aspose.pdf.annotations/annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| [set_Value](../textboxfield/set_value/)(System::String) override | Sets value of the field. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../../aspose.pdf.annotations/annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| virtual [SetPosition](../field/setposition/)(System::SharedPtr\) | Set position of the field. | +| [SetTemplateWeakPtr](../field/settemplateweakptr/)(uint32_t) override | Set n'th template argument a weak pointer (rather than shared). Allows switching pointers in containers to weak mode. | +| [TextBoxField](../textboxfield/textboxfield/)(System::SharedPtr\) | Constructor which should be used with Generator. | +| [TextBoxField](../textboxfield/textboxfield/)() | Create instance of [TextBoxField](../textboxfield/). | +| [TextBoxField](../textboxfield/textboxfield/)(System::SharedPtr\, System::SharedPtr\) | Constructor of TextBox field. | +| [TextBoxField](../textboxfield/textboxfield/)(System::SharedPtr\, System::SharedPtr\) | Constructor of TextBox field. | +| [WidgetAnnotation](../../aspose.pdf.annotations/widgetannotation/widgetannotation/)(System::SharedPtr\) | Create annotation (used for Generator) | +## See Also + +* Class [TextBoxField](../textboxfield/) +* Namespace [Aspose::Pdf::Forms](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.forms/barcodefield/barcodefield/_index.md b/english/cpp/aspose.pdf.forms/barcodefield/barcodefield/_index.md new file mode 100644 index 0000000000..82c042c6f3 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/barcodefield/barcodefield/_index.md @@ -0,0 +1,95 @@ +--- +title: Aspose::Pdf::Forms::BarcodeField::BarcodeField constructor +linktitle: BarcodeField +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::BarcodeField::BarcodeField constructor. Initializes new instance of the BarcodeField class in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.forms/barcodefield/barcodefield/ +--- +## BarcodeField::BarcodeField(System::SharedPtr\, System::SharedPtr\) constructor + + +Initializes new instance of the [BarcodeField](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Forms::BarcodeField::BarcodeField(System::SharedPtr page, System::SharedPtr rect) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The page where to place new barcode. | +| rect | System::SharedPtr\ | Barcode sizes given in rectangle. | +## Remarks + + + + + + page + + + The page where to place new barcode. + + + + + rect + + + Barcode sizes given in rectangle. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [BarcodeField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) +## BarcodeField::BarcodeField(System::SharedPtr\, System::SharedPtr\) constructor + + +Initializes new instance of the [BarcodeField](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Forms::BarcodeField::BarcodeField(System::SharedPtr doc, System::SharedPtr rect) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| doc | System::SharedPtr\ | [Document](../../../aspose.pdf/document/) where field will be created. | +| rect | System::SharedPtr\ | [Rectangle](../../../aspose.pdf/rectangle/) where field will be placed on the page. | +## Remarks + + + + + + doc + + + + Document where field will be created. + + + + + rect + + + + Rectangle where field will be placed on the page. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [BarcodeField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/barcodefield/get_caption/_index.md b/english/cpp/aspose.pdf.forms/barcodefield/get_caption/_index.md new file mode 100644 index 0000000000..f00ec44add --- /dev/null +++ b/english/cpp/aspose.pdf.forms/barcodefield/get_caption/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::BarcodeField::get_Caption method +linktitle: get_Caption +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::BarcodeField::get_Caption method. Gets the caption of the barcode object in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.forms/barcodefield/get_caption/ +--- +## BarcodeField::get_Caption method + + +Gets the caption of the barcode object. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Forms::BarcodeField::get_Caption() +``` + +## See Also + +* Class [BarcodeField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/barcodefield/get_ecc/_index.md b/english/cpp/aspose.pdf.forms/barcodefield/get_ecc/_index.md new file mode 100644 index 0000000000..b3a22f5dd1 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/barcodefield/get_ecc/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::BarcodeField::get_ECC method +linktitle: get_ECC +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::BarcodeField::get_ECC method. Gets an integer value representing the error correction coefficient. For PDF417, shall be from 0 to 8. For QRCode, shall be from 0 to 3 (0 for ''L'', 1 for ''M'', 2 for ''Q'', and 3 for ''H'') in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.forms/barcodefield/get_ecc/ +--- +## BarcodeField::get_ECC method + + +Gets an integer value representing the error correction coefficient. For PDF417, shall be from 0 to 8. For QRCode, shall be from 0 to 3 (0 for 'L', 1 for 'M', 2 for 'Q', and 3 for 'H'). + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Forms::BarcodeField::get_ECC() +``` + +## See Also + +* Class [BarcodeField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/barcodefield/get_resolution/_index.md b/english/cpp/aspose.pdf.forms/barcodefield/get_resolution/_index.md new file mode 100644 index 0000000000..17270bb3a9 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/barcodefield/get_resolution/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::BarcodeField::get_Resolution method +linktitle: get_Resolution +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::BarcodeField::get_Resolution method. Gets the resolution, in dots-per-inch (dpi), at which the barcode object is rendered in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.forms/barcodefield/get_resolution/ +--- +## BarcodeField::get_Resolution method + + +Gets the resolution, in dots-per-inch (dpi), at which the barcode object is rendered. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Forms::BarcodeField::get_Resolution() +``` + +## See Also + +* Class [BarcodeField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/barcodefield/get_symbology/_index.md b/english/cpp/aspose.pdf.forms/barcodefield/get_symbology/_index.md new file mode 100644 index 0000000000..84d4990521 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/barcodefield/get_symbology/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Forms::BarcodeField::get_Symbology method +linktitle: get_Symbology +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::BarcodeField::get_Symbology method. Specifies which barcode or glyph technology is to be used on this annotation, see Symbology for details in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.forms/barcodefield/get_symbology/ +--- +## BarcodeField::get_Symbology method + + +Specifies which barcode or glyph technology is to be used on this annotation, see [Symbology](../../symbology/) for details. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Forms::Symbology Aspose::Pdf::Forms::BarcodeField::get_Symbology() +``` + +## See Also + +* Enum [Symbology](../../symbology/) +* Class [BarcodeField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/barcodefield/get_xsymheight/_index.md b/english/cpp/aspose.pdf.forms/barcodefield/get_xsymheight/_index.md new file mode 100644 index 0000000000..9e5891c94c --- /dev/null +++ b/english/cpp/aspose.pdf.forms/barcodefield/get_xsymheight/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::BarcodeField::get_XSymHeight method +linktitle: get_XSymHeight +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::BarcodeField::get_XSymHeight method. Gets the the vertical distance between two barcode modules, measured in pixels. The ratio XSymHeight/XSymWidth shall be an integer value. For PDF417, the acceptable ratio range is from 1 to 4. For QRCode and DataMatrix, this ratio shall always be 1 in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.forms/barcodefield/get_xsymheight/ +--- +## BarcodeField::get_XSymHeight method + + +Gets the the vertical distance between two barcode modules, measured in pixels. The ratio XSymHeight/XSymWidth shall be an integer value. For PDF417, the acceptable ratio range is from 1 to 4. For QRCode and DataMatrix, this ratio shall always be 1. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Forms::BarcodeField::get_XSymHeight() +``` + +## See Also + +* Class [BarcodeField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/barcodefield/get_xsymwidth/_index.md b/english/cpp/aspose.pdf.forms/barcodefield/get_xsymwidth/_index.md new file mode 100644 index 0000000000..a6c4180820 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/barcodefield/get_xsymwidth/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::BarcodeField::get_XSymWidth method +linktitle: get_XSymWidth +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::BarcodeField::get_XSymWidth method. Gets The horizontal distance, in pixels, between two barcode modules in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.forms/barcodefield/get_xsymwidth/ +--- +## BarcodeField::get_XSymWidth method + + +Gets The horizontal distance, in pixels, between two barcode modules. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Forms::BarcodeField::get_XSymWidth() +``` + +## See Also + +* Class [BarcodeField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/boxstyle/_index.md b/english/cpp/aspose.pdf.forms/boxstyle/_index.md new file mode 100644 index 0000000000..dec042d43c --- /dev/null +++ b/english/cpp/aspose.pdf.forms/boxstyle/_index.md @@ -0,0 +1,33 @@ +--- +title: Aspose::Pdf::Forms::BoxStyle enum +linktitle: BoxStyle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::BoxStyle enum. Represents styles of check box in C++.' +type: docs +weight: 3100 +url: /cpp/aspose.pdf.forms/boxstyle/ +--- +## BoxStyle enum + + +Represents styles of check box. + +```cpp +enum class BoxStyle +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Circle | 0 | Circle style. | +| Check | 1 | Check style. | +| Cross | 2 | Cross style. | +| Diamond | 3 | Diamond style. | +| Square | 4 | Square style. | +| Star | 5 | Star style. | + +## See Also + +* Namespace [Aspose::Pdf::Forms](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.forms/buttonfield/_index.md b/english/cpp/aspose.pdf.forms/buttonfield/_index.md new file mode 100644 index 0000000000..0f79298bd2 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/buttonfield/_index.md @@ -0,0 +1,155 @@ +--- +title: Aspose::Pdf::Forms::ButtonField class +linktitle: ButtonField +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ButtonField class. Class represnets push button field in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.forms/buttonfield/ +--- +## ButtonField class + + +Class represnets push button field. + +```cpp +class ButtonField : public Aspose::Pdf::Forms::Field +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Accept](../../aspose.pdf.annotations/widgetannotation/accept/)(System::SharedPtr\) override | Accepts visitor. | +| [AddImage](./addimage/)(System::SharedPtr\) | Adds image into the field resources and draws it. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| [ButtonField](./buttonfield/)() | Button field constructor for Generator. | +| [ButtonField](./buttonfield/)(System::SharedPtr\, System::SharedPtr\) | [ButtonField](./) constructor. | +| [ButtonField](./buttonfield/)(System::SharedPtr\, System::SharedPtr\) | [ButtonField](./) constructore. | +| virtual [ChangeAfterResize](../../aspose.pdf.annotations/annotation/changeafterresize/)(System::SharedPtr\) | Update parameters and appearance, according to the matrix transform. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [CopyTo](../field/copyto/)(System::ArrayPtr\\>, int32_t) | Copies subfields of this field into array starting from specified index. | +| [CopyToWidgetArray](../field/copytowidgetarray/)(System::ArrayPtr\\>, int32_t) | Copies subfields of this field into array starting from specified index. | +| [ExecuteFieldJavaScript](../field/executefieldjavascript/)(System::SharedPtr\) | Executes a specified JavaScript action for the field. | +| [Field](../field/field/)(System::SharedPtr\) | Creates field for use in Generator. | +| [Flatten](../../aspose.pdf.annotations/annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](../../aspose.pdf.annotations/widgetannotation/get_actions/)() const | Gets the annotation actions. | +| [get_Actions](../../aspose.pdf.annotations/annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../../aspose.pdf.annotations/annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../../aspose.pdf.annotations/annotation/get_alignment/)() | [Annotation](../../aspose.pdf.annotations/annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [get_AlternateCaption](./get_alternatecaption/)() | Gets alternate caption of the button which shall be displayed when the mouse button is pressed within its active area. | +| [get_AlternateIcon](./get_alternateicon/)() | Gets alternate icon which shall be displayed when the mouse button is pressed within its active area. | +| [get_AlternateName](../field/get_alternatename/)() | Gets alternate name of the field (An alternate field name that shall be used in place of the actual field name wherever the field shall be identified in the user interface). Alternate name is used as field tooltip in Adobe Acrobat. | +| [get_AnnotationIndex](../field/get_annotationindex/)() | Gets index of this anotation on the page. | +| [get_AnnotationType](../../aspose.pdf.annotations/widgetannotation/get_annotationtype/)() override | Gets type of annotation. | +| [get_Appearance](../../aspose.pdf.annotations/annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../../aspose.pdf.annotations/annotation/get_border/)() const | Gets annotation border characteristics. [Border](../../aspose.pdf.annotations/border/) | +| [get_Characteristics](../../aspose.pdf.annotations/annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../../aspose.pdf.annotations/annotation/get_color/)() | Gets annotation color. | +| [get_Contents](../../aspose.pdf.annotations/annotation/get_contents/)() | Gets annotation text. | +| [get_Count](../field/get_count/)() const override | Gets number of subfields in this field. (For example number of items in radio button field). | +| [get_DefaultAppearance](../../aspose.pdf.annotations/widgetannotation/get_defaultappearance/)() | Gets default appearance of the field. | +| [get_Exportable](../../aspose.pdf.annotations/widgetannotation/get_exportable/)() | Gets exportable flag of the field. | +| static [get_FitIntoRectangle](../field/get_fitintorectangle/)() | If true then font size will reduced to fit text to specified rectangle. | +| [get_Flags](../../aspose.pdf.annotations/annotation/get_flags/)() | Flags of the annotation. | +| [get_FullName](../../aspose.pdf.annotations/annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../../aspose.pdf.annotations/annotation/get_height/)() | Gets height of the annotation. | +| [get_Highlighting](../../aspose.pdf.annotations/widgetannotation/get_highlighting/)() | [Annotation](../../aspose.pdf.annotations/annotation/) highlighting mode. | +| [get_HorizontalAlignment](../../aspose.pdf.annotations/annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_IconFit](./get_iconfit/)() | Gets icon fit object specifying how the widget annotation's icon shall be displayed within its annotation rectangle. | +| [get_ICPosition](./get_icposition/)() | Gets icon caption position. | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsGroup](../field/get_isgroup/)() const | Gets boolean value which indicates is this field non-terminal field i.e. group of fields. | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_IsSharedField](../field/get_issharedfield/)() const | Property for Generator support. Used when field is added to header or footer. If true, this field will created once and it's appearance will be visible on all pages of the document. If false, separated field will be created for every document page. | +| [get_IsSynchronized](../field/get_issynchronized/)() | Returns true if dictionary is synchronized. | +| [get_MappingName](../field/get_mappingname/)() | Gets mapping name of the field that shall be used when exporting interactive form field data from the document. | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| static [get_MaxFontSize](../field/get_maxfontsize/)() | Maximail font size which can be used for field contents. -1 to don't check size. | +| static [get_MinFontSize](../field/get_minfontsize/)() | Minimal font size which can be used for field contents. -1 to don't check size. | +| [get_Modified](../../aspose.pdf.annotations/annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Name](../../aspose.pdf.annotations/annotation/get_name/)() | Gets annotation name on the page. | +| [get_NormalCaption](./get_normalcaption/)() | Gets normal caption. | +| [get_NormalIcon](./get_normalicon/)() | Gets normal icon of the button which shall be displayed when it is not interacting with the user. | +| [get_OnActivated](../../aspose.pdf.annotations/widgetannotation/get_onactivated/)() | An action which shall be performed when the annotation is activated. | +| [get_PageIndex](../field/get_pageindex/)() override | Gets index of page which contains this field. | +| [get_Parent](../../aspose.pdf.annotations/widgetannotation/get_parent/)() | Gets annotation parent. | +| [get_PartialName](../field/get_partialname/)() | Gets partial name of the field. | +| [get_ReadOnly](../../aspose.pdf.annotations/widgetannotation/get_readonly/)() | Gets read only status of the field. | +| [get_Rect](../field/get_rect/)() override | Gets the field rectangle. | +| [get_Required](../../aspose.pdf.annotations/widgetannotation/get_required/)() | Gets required status of the field. | +| [get_RolloverCaption](./get_rollovercaption/)() | Gets rollover caption of button which shall be displayed when the user rolls the cursor into its active area without pressing the mouse button. | +| [get_RolloverIcon](./get_rollovericon/)() | Gets rollover icon of the button which shall be displayed when the user rolls the cursor into its active area without pressing the mouse button. | +| [get_States](../../aspose.pdf.annotations/annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_SyncRoot](../field/get_syncroot/)() const | Synchronization object. | +| [get_TabOrder](../field/get_taborder/)() | Gets tab order of the field. | +| [get_TextHorizontalAlignment](../../aspose.pdf.annotations/annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| static [get_UpdateAppearanceOnConvert](../../aspose.pdf.annotations/annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../../aspose.pdf.annotations/annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [get_Value](../field/get_value/)() | Gets value of the field. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../../aspose.pdf.annotations/annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetCheckedStateName](../../aspose.pdf.annotations/widgetannotation/getcheckedstatename/)() | Returns name of "checked" state according to existing state names. | +| [GetEnumerator](../field/getenumerator/)() override | Returns enumerator of contained fields. | +| [GetRectangle](../../aspose.pdf.annotations/annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| [idx_get](../field/idx_get/)(System::String) | Gets subfield contained in this field by name of the subfield. | +| [idx_get](../field/idx_get/)(int32_t) | Gets subfield contained in this field by index. | +| [Recalculate](../field/recalculate/)() | Recaculates all calculated fields on the form. | +| virtual [set_ActiveState](../../aspose.pdf.annotations/annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../../aspose.pdf.annotations/annotation/set_alignment/)(TextAlignment) | [Annotation](../../aspose.pdf.annotations/annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_AlternateCaption](./set_alternatecaption/)(System::String) | Sets alternate caption of the button which shall be displayed when the mouse button is pressed within its active area. | +| [set_AlternateIcon](./set_alternateicon/)(System::SharedPtr\) | Sets alternate icon which shall be displayed when the mouse button is pressed within its active area. | +| [set_AlternateName](../field/set_alternatename/)(System::String) | Sets alternate name of the field (An alternate field name that shall be used in place of the actual field name wherever the field shall be identified in the user interface). Alternate name is used as field tooltip in Adobe Acrobat. | +| [set_AnnotationIndex](../field/set_annotationindex/)(int32_t) | Sets index of this anotation on the page. | +| [set_Border](../../aspose.pdf.annotations/annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../../aspose.pdf.annotations/border/) | +| [set_Color](../../aspose.pdf.annotations/annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](../../aspose.pdf.annotations/annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_DefaultAppearance](../../aspose.pdf.annotations/widgetannotation/set_defaultappearance/)(System::SharedPtr\) | Sets default appearance of the field. | +| [set_Exportable](../../aspose.pdf.annotations/widgetannotation/set_exportable/)(bool) | Sets exportable flag of the field. | +| static [set_FitIntoRectangle](../field/set_fitintorectangle/)(bool) | If true then font size will reduced to fit text to specified rectangle. | +| [set_Flags](../../aspose.pdf.annotations/annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| virtual [set_Height](../../aspose.pdf.annotations/annotation/set_height/)(double) | Sets height of the annotation. | +| [set_Highlighting](../../aspose.pdf.annotations/widgetannotation/set_highlighting/)(HighlightingMode) | [Annotation](../../aspose.pdf.annotations/annotation/) highlighting mode. | +| [set_HorizontalAlignment](../../aspose.pdf.annotations/annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_ICPosition](./set_icposition/)(IconCaptionPosition) | Sets icon caption position. | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_IsSharedField](../field/set_issharedfield/)(bool) | Property for Generator support. Used when field is added to header or footer. If true, this field will created once and it's appearance will be visible on all pages of the document. If false, separated field will be created for every document page. | +| [set_MappingName](../field/set_mappingname/)(System::String) | Sets mapping name of the field that shall be used when exporting interactive form field data from the document. | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| static [set_MaxFontSize](../field/set_maxfontsize/)(double) | Maximail font size which can be used for field contents. -1 to don't check size. | +| static [set_MinFontSize](../field/set_minfontsize/)(double) | Minimal font size which can be used for field contents. -1 to don't check size. | +| [set_Modified](../../aspose.pdf.annotations/annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Name](../../aspose.pdf.annotations/annotation/set_name/)(System::String) | Sets annotation name on the page. | +| [set_NormalCaption](./set_normalcaption/)(System::String) | Sets normal caption. | +| [set_NormalIcon](./set_normalicon/)(System::SharedPtr\) | Sets normal icon of the button which shall be displayed when it is not interacting with the user. | +| [set_OnActivated](../../aspose.pdf.annotations/widgetannotation/set_onactivated/)(System::SharedPtr\) | An action which shall be performed when the annotation is activated. | +| [set_PartialName](../field/set_partialname/)(System::String) | Sets partial name of the field. | +| [set_ReadOnly](../../aspose.pdf.annotations/widgetannotation/set_readonly/)(bool) | Sets read only status of the field. | +| [set_Rect](../field/set_rect/)(System::SharedPtr\) override | Sets the field rectangle. | +| [set_Required](../../aspose.pdf.annotations/widgetannotation/set_required/)(bool) | Sets required status of the field. | +| [set_RolloverCaption](./set_rollovercaption/)(System::String) | Sets rollover caption of button which shall be displayed when the user rolls the cursor into its active area without pressing the mouse button. | +| [set_RolloverIcon](./set_rollovericon/)(System::SharedPtr\) | Sets rollover icon of the button which shall be displayed when the user rolls the cursor into its active area without pressing the mouse button. | +| [set_TabOrder](../field/set_taborder/)(int32_t) | Sets tab order of the field. | +| [set_TextHorizontalAlignment](../../aspose.pdf.annotations/annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| static [set_UpdateAppearanceOnConvert](../../aspose.pdf.annotations/annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../../aspose.pdf.annotations/annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [set_Value](../field/set_value/)(System::String) | Sets value of the field. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../../aspose.pdf.annotations/annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| virtual [SetPosition](../field/setposition/)(System::SharedPtr\) | Set position of the field. | +| [SetTemplateWeakPtr](../field/settemplateweakptr/)(uint32_t) override | Set n'th template argument a weak pointer (rather than shared). Allows switching pointers in containers to weak mode. | +| [WidgetAnnotation](../../aspose.pdf.annotations/widgetannotation/widgetannotation/)(System::SharedPtr\) | Create annotation (used for Generator) | +## See Also + +* Class [Field](../field/) +* Namespace [Aspose::Pdf::Forms](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.forms/buttonfield/addimage/_index.md b/english/cpp/aspose.pdf.forms/buttonfield/addimage/_index.md new file mode 100644 index 0000000000..acce14700d --- /dev/null +++ b/english/cpp/aspose.pdf.forms/buttonfield/addimage/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Forms::ButtonField::AddImage method +linktitle: AddImage +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ButtonField::AddImage method. Adds image into the field resources and draws it in C++.' +type: docs +weight: 1700 +url: /cpp/aspose.pdf.forms/buttonfield/addimage/ +--- +## ButtonField::AddImage method + + +Adds image into the field resources and draws it. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::ButtonField::AddImage(System::SharedPtr image) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| image | System::SharedPtr\ | [Image](../../../aspose.pdf/image/) ot add into text field. | +## Remarks + + + + + + image + + + + Image ot add into text field. + + + +## See Also + +* Class [ButtonField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/buttonfield/buttonfield/_index.md b/english/cpp/aspose.pdf.forms/buttonfield/buttonfield/_index.md new file mode 100644 index 0000000000..b35f4fb486 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/buttonfield/buttonfield/_index.md @@ -0,0 +1,110 @@ +--- +title: Aspose::Pdf::Forms::ButtonField::ButtonField constructor +linktitle: ButtonField +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ButtonField::ButtonField constructor. Button field constructor for Generator in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf.forms/buttonfield/buttonfield/ +--- +## ButtonField::ButtonField() constructor + + +Button field constructor for Generator. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Forms::ButtonField::ButtonField() +``` + +## See Also + +* Class [ButtonField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) +## ButtonField::ButtonField(System::SharedPtr\, System::SharedPtr\) constructor + + +[ButtonField](../) constructor. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Forms::ButtonField::ButtonField(System::SharedPtr page, System::SharedPtr rect) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | [Page](../../../aspose.pdf/page/) where button will be placed. | +| rect | System::SharedPtr\ | [Rectangle](../../../aspose.pdf/rectangle/) where button is placed on the page. | +## Remarks + + + + + + page + + + + Page where button will be placed. + + + + + rect + + + + Rectangle where button is placed on the page. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [ButtonField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) +## ButtonField::ButtonField(System::SharedPtr\, System::SharedPtr\) constructor + + +[ButtonField](../) constructore. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Forms::ButtonField::ButtonField(System::SharedPtr doc, System::SharedPtr rect) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| doc | System::SharedPtr\ | Docuemtn where new field will be created. | +| rect | System::SharedPtr\ | [Rectangle](../../../aspose.pdf/rectangle/) hwere button is placed on the page. | +## Remarks + + + + + + doc + + + Docuemtn where new field will be created. + + + + + rect + + + + Rectangle hwere button is placed on the page. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [ButtonField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/buttonfield/get_alternatecaption/_index.md b/english/cpp/aspose.pdf.forms/buttonfield/get_alternatecaption/_index.md new file mode 100644 index 0000000000..6d1434bf2a --- /dev/null +++ b/english/cpp/aspose.pdf.forms/buttonfield/get_alternatecaption/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::ButtonField::get_AlternateCaption method +linktitle: get_AlternateCaption +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ButtonField::get_AlternateCaption method. Gets alternate caption of the button which shall be displayed when the mouse button is pressed within its active area in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.forms/buttonfield/get_alternatecaption/ +--- +## ButtonField::get_AlternateCaption method + + +Gets alternate caption of the button which shall be displayed when the mouse button is pressed within its active area. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Forms::ButtonField::get_AlternateCaption() +``` + +## See Also + +* Class [ButtonField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/buttonfield/get_alternateicon/_index.md b/english/cpp/aspose.pdf.forms/buttonfield/get_alternateicon/_index.md new file mode 100644 index 0000000000..506a9f3621 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/buttonfield/get_alternateicon/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Forms::ButtonField::get_AlternateIcon method +linktitle: get_AlternateIcon +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ButtonField::get_AlternateIcon method. Gets alternate icon which shall be displayed when the mouse button is pressed within its active area in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.forms/buttonfield/get_alternateicon/ +--- +## ButtonField::get_AlternateIcon method + + +Gets alternate icon which shall be displayed when the mouse button is pressed within its active area. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Forms::ButtonField::get_AlternateIcon() +``` + +## See Also + +* Class [XForm](../../../aspose.pdf/xform/) +* Class [ButtonField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/buttonfield/get_iconfit/_index.md b/english/cpp/aspose.pdf.forms/buttonfield/get_iconfit/_index.md new file mode 100644 index 0000000000..efb3a2951a --- /dev/null +++ b/english/cpp/aspose.pdf.forms/buttonfield/get_iconfit/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Forms::ButtonField::get_IconFit method +linktitle: get_IconFit +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ButtonField::get_IconFit method. Gets icon fit object specifying how the widget annotation''s icon shall be displayed within its annotation rectangle in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.forms/buttonfield/get_iconfit/ +--- +## ButtonField::get_IconFit method + + +Gets icon fit object specifying how the widget annotation's icon shall be displayed within its annotation rectangle. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Forms::ButtonField::get_IconFit() +``` + +## See Also + +* Class [IconFit](../../iconfit/) +* Class [ButtonField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/buttonfield/get_icposition/_index.md b/english/cpp/aspose.pdf.forms/buttonfield/get_icposition/_index.md new file mode 100644 index 0000000000..777636c208 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/buttonfield/get_icposition/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Forms::ButtonField::get_ICPosition method +linktitle: get_ICPosition +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ButtonField::get_ICPosition method. Gets icon caption position in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.forms/buttonfield/get_icposition/ +--- +## ButtonField::get_ICPosition method + + +Gets icon caption position. + +```cpp +ASPOSE_PDF_SHARED_API IconCaptionPosition Aspose::Pdf::Forms::ButtonField::get_ICPosition() +``` + +## See Also + +* Enum [IconCaptionPosition](../../iconcaptionposition/) +* Class [ButtonField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/buttonfield/get_normalcaption/_index.md b/english/cpp/aspose.pdf.forms/buttonfield/get_normalcaption/_index.md new file mode 100644 index 0000000000..9793694280 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/buttonfield/get_normalcaption/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::ButtonField::get_NormalCaption method +linktitle: get_NormalCaption +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ButtonField::get_NormalCaption method. Gets normal caption in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.forms/buttonfield/get_normalcaption/ +--- +## ButtonField::get_NormalCaption method + + +Gets normal caption. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Forms::ButtonField::get_NormalCaption() +``` + +## See Also + +* Class [ButtonField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/buttonfield/get_normalicon/_index.md b/english/cpp/aspose.pdf.forms/buttonfield/get_normalicon/_index.md new file mode 100644 index 0000000000..284cf86d0f --- /dev/null +++ b/english/cpp/aspose.pdf.forms/buttonfield/get_normalicon/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Forms::ButtonField::get_NormalIcon method +linktitle: get_NormalIcon +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ButtonField::get_NormalIcon method. Gets normal icon of the button which shall be displayed when it is not interacting with the user in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.forms/buttonfield/get_normalicon/ +--- +## ButtonField::get_NormalIcon method + + +Gets normal icon of the button which shall be displayed when it is not interacting with the user. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Forms::ButtonField::get_NormalIcon() +``` + +## See Also + +* Class [XForm](../../../aspose.pdf/xform/) +* Class [ButtonField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/buttonfield/get_rollovercaption/_index.md b/english/cpp/aspose.pdf.forms/buttonfield/get_rollovercaption/_index.md new file mode 100644 index 0000000000..2a4dcb169f --- /dev/null +++ b/english/cpp/aspose.pdf.forms/buttonfield/get_rollovercaption/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::ButtonField::get_RolloverCaption method +linktitle: get_RolloverCaption +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ButtonField::get_RolloverCaption method. Gets rollover caption of button which shall be displayed when the user rolls the cursor into its active area without pressing the mouse button in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.forms/buttonfield/get_rollovercaption/ +--- +## ButtonField::get_RolloverCaption method + + +Gets rollover caption of button which shall be displayed when the user rolls the cursor into its active area without pressing the mouse button. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Forms::ButtonField::get_RolloverCaption() +``` + +## See Also + +* Class [ButtonField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/buttonfield/get_rollovericon/_index.md b/english/cpp/aspose.pdf.forms/buttonfield/get_rollovericon/_index.md new file mode 100644 index 0000000000..f894c66afd --- /dev/null +++ b/english/cpp/aspose.pdf.forms/buttonfield/get_rollovericon/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Forms::ButtonField::get_RolloverIcon method +linktitle: get_RolloverIcon +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ButtonField::get_RolloverIcon method. Gets rollover icon of the button which shall be displayed when the user rolls the cursor into its active area without pressing the mouse button in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.forms/buttonfield/get_rollovericon/ +--- +## ButtonField::get_RolloverIcon method + + +Gets rollover icon of the button which shall be displayed when the user rolls the cursor into its active area without pressing the mouse button. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Forms::ButtonField::get_RolloverIcon() +``` + +## See Also + +* Class [XForm](../../../aspose.pdf/xform/) +* Class [ButtonField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/buttonfield/set_alternatecaption/_index.md b/english/cpp/aspose.pdf.forms/buttonfield/set_alternatecaption/_index.md new file mode 100644 index 0000000000..c385ef03c5 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/buttonfield/set_alternatecaption/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::ButtonField::set_AlternateCaption method +linktitle: set_AlternateCaption +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ButtonField::set_AlternateCaption method. Sets alternate caption of the button which shall be displayed when the mouse button is pressed within its active area in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.forms/buttonfield/set_alternatecaption/ +--- +## ButtonField::set_AlternateCaption method + + +Sets alternate caption of the button which shall be displayed when the mouse button is pressed within its active area. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::ButtonField::set_AlternateCaption(System::String value) +``` + +## See Also + +* Class [ButtonField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/buttonfield/set_alternateicon/_index.md b/english/cpp/aspose.pdf.forms/buttonfield/set_alternateicon/_index.md new file mode 100644 index 0000000000..b703ded117 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/buttonfield/set_alternateicon/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Forms::ButtonField::set_AlternateIcon method +linktitle: set_AlternateIcon +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ButtonField::set_AlternateIcon method. Sets alternate icon which shall be displayed when the mouse button is pressed within its active area in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.forms/buttonfield/set_alternateicon/ +--- +## ButtonField::set_AlternateIcon method + + +Sets alternate icon which shall be displayed when the mouse button is pressed within its active area. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::ButtonField::set_AlternateIcon(System::SharedPtr value) +``` + +## See Also + +* Class [XForm](../../../aspose.pdf/xform/) +* Class [ButtonField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/buttonfield/set_icposition/_index.md b/english/cpp/aspose.pdf.forms/buttonfield/set_icposition/_index.md new file mode 100644 index 0000000000..498c1f75de --- /dev/null +++ b/english/cpp/aspose.pdf.forms/buttonfield/set_icposition/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Forms::ButtonField::set_ICPosition method +linktitle: set_ICPosition +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ButtonField::set_ICPosition method. Sets icon caption position in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.forms/buttonfield/set_icposition/ +--- +## ButtonField::set_ICPosition method + + +Sets icon caption position. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::ButtonField::set_ICPosition(IconCaptionPosition value) +``` + +## See Also + +* Enum [IconCaptionPosition](../../iconcaptionposition/) +* Class [ButtonField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/buttonfield/set_normalcaption/_index.md b/english/cpp/aspose.pdf.forms/buttonfield/set_normalcaption/_index.md new file mode 100644 index 0000000000..74c46c3b06 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/buttonfield/set_normalcaption/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::ButtonField::set_NormalCaption method +linktitle: set_NormalCaption +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ButtonField::set_NormalCaption method. Sets normal caption in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.forms/buttonfield/set_normalcaption/ +--- +## ButtonField::set_NormalCaption method + + +Sets normal caption. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::ButtonField::set_NormalCaption(System::String value) +``` + +## See Also + +* Class [ButtonField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/buttonfield/set_normalicon/_index.md b/english/cpp/aspose.pdf.forms/buttonfield/set_normalicon/_index.md new file mode 100644 index 0000000000..c0346e9ff0 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/buttonfield/set_normalicon/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Forms::ButtonField::set_NormalIcon method +linktitle: set_NormalIcon +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ButtonField::set_NormalIcon method. Sets normal icon of the button which shall be displayed when it is not interacting with the user in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.forms/buttonfield/set_normalicon/ +--- +## ButtonField::set_NormalIcon method + + +Sets normal icon of the button which shall be displayed when it is not interacting with the user. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::ButtonField::set_NormalIcon(System::SharedPtr value) +``` + +## See Also + +* Class [XForm](../../../aspose.pdf/xform/) +* Class [ButtonField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/buttonfield/set_rollovercaption/_index.md b/english/cpp/aspose.pdf.forms/buttonfield/set_rollovercaption/_index.md new file mode 100644 index 0000000000..acb350b059 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/buttonfield/set_rollovercaption/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::ButtonField::set_RolloverCaption method +linktitle: set_RolloverCaption +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ButtonField::set_RolloverCaption method. Sets rollover caption of button which shall be displayed when the user rolls the cursor into its active area without pressing the mouse button in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.forms/buttonfield/set_rollovercaption/ +--- +## ButtonField::set_RolloverCaption method + + +Sets rollover caption of button which shall be displayed when the user rolls the cursor into its active area without pressing the mouse button. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::ButtonField::set_RolloverCaption(System::String value) +``` + +## See Also + +* Class [ButtonField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/buttonfield/set_rollovericon/_index.md b/english/cpp/aspose.pdf.forms/buttonfield/set_rollovericon/_index.md new file mode 100644 index 0000000000..1dcb091f9a --- /dev/null +++ b/english/cpp/aspose.pdf.forms/buttonfield/set_rollovericon/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Forms::ButtonField::set_RolloverIcon method +linktitle: set_RolloverIcon +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ButtonField::set_RolloverIcon method. Sets rollover icon of the button which shall be displayed when the user rolls the cursor into its active area without pressing the mouse button in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.forms/buttonfield/set_rollovericon/ +--- +## ButtonField::set_RolloverIcon method + + +Sets rollover icon of the button which shall be displayed when the user rolls the cursor into its active area without pressing the mouse button. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::ButtonField::set_RolloverIcon(System::SharedPtr value) +``` + +## See Also + +* Class [XForm](../../../aspose.pdf/xform/) +* Class [ButtonField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/checkboxfield/_index.md b/english/cpp/aspose.pdf.forms/checkboxfield/_index.md new file mode 100644 index 0000000000..4a69086fe0 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/checkboxfield/_index.md @@ -0,0 +1,150 @@ +--- +title: Aspose::Pdf::Forms::CheckboxField class +linktitle: CheckboxField +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::CheckboxField class. Class representing checkbox field in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.forms/checkboxfield/ +--- +## CheckboxField class + + +Class representing checkbox field. + +```cpp +class CheckboxField : public Aspose::Pdf::Forms::Field +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Accept](../../aspose.pdf.annotations/widgetannotation/accept/)(System::SharedPtr\) override | Accepts visitor. | +| [AddOption](./addoption/)(System::String) | Adds new checkbox into a checkbox group, in which at most one of the checkboxes may be checked at any time. The new checkbox is added to the bottom of the group. | +| [AddOption](./addoption/)(System::String, System::SharedPtr\) | Adds new checkbox into a checkbox group, in which at most one of the checkboxes may be checked at any time. | +| [AddOption](./addoption/)(System::String, int32_t, System::SharedPtr\) | Adds new checkbox into a checkbox group, in which at most one of the checkboxes may be checked at any time. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| virtual [ChangeAfterResize](../../aspose.pdf.annotations/annotation/changeafterresize/)(System::SharedPtr\) | Update parameters and appearance, according to the matrix transform. | +| [CheckboxField](./checkboxfield/)(System::SharedPtr\, System::SharedPtr\) | Constructor for [CheckboxField](./) class. | +| [CheckboxField](./checkboxfield/)(System::SharedPtr\, System::SharedPtr\) | Constructor for [CheckboxField](./) class. | +| [CheckboxField](./checkboxfield/)() | Create instance of [CheckboxField](./). | +| [CheckboxField](./checkboxfield/)(System::SharedPtr\) | Constructor to use with Generator. | +| [Clone](./clone/)() override | Clone the checkbox. | +| [CopyTo](../field/copyto/)(System::ArrayPtr\\>, int32_t) | Copies subfields of this field into array starting from specified index. | +| [CopyToWidgetArray](../field/copytowidgetarray/)(System::ArrayPtr\\>, int32_t) | Copies subfields of this field into array starting from specified index. | +| [ExecuteFieldJavaScript](../field/executefieldjavascript/)(System::SharedPtr\) | Executes a specified JavaScript action for the field. | +| [Field](../field/field/)(System::SharedPtr\) | Creates field for use in Generator. | +| [Flatten](../../aspose.pdf.annotations/annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](../../aspose.pdf.annotations/widgetannotation/get_actions/)() const | Gets the annotation actions. | +| [get_Actions](../../aspose.pdf.annotations/annotation/get_actions/)() | Gets list of annotatation actions. | +| [get_ActiveState](./get_activestate/)() override | Gets current annotation appearance state. | +| [get_Alignment](../../aspose.pdf.annotations/annotation/get_alignment/)() | [Annotation](../../aspose.pdf.annotations/annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [get_AllowedStates](./get_allowedstates/)() | Returns list of allowed states. | +| [get_AlternateName](../field/get_alternatename/)() | Gets alternate name of the field (An alternate field name that shall be used in place of the actual field name wherever the field shall be identified in the user interface). Alternate name is used as field tooltip in Adobe Acrobat. | +| [get_AnnotationIndex](../field/get_annotationindex/)() | Gets index of this anotation on the page. | +| [get_AnnotationType](../../aspose.pdf.annotations/widgetannotation/get_annotationtype/)() override | Gets type of annotation. | +| [get_Appearance](../../aspose.pdf.annotations/annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../../aspose.pdf.annotations/annotation/get_border/)() const | Gets annotation border characteristics. [Border](../../aspose.pdf.annotations/border/) | +| [get_Characteristics](../../aspose.pdf.annotations/annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Checked](./get_checked/)() | Gets state of check box. | +| [get_Color](../../aspose.pdf.annotations/annotation/get_color/)() | Gets annotation color. | +| [get_Contents](../../aspose.pdf.annotations/annotation/get_contents/)() | Gets annotation text. | +| [get_Count](../field/get_count/)() const override | Gets number of subfields in this field. (For example number of items in radio button field). | +| [get_DefaultAppearance](../../aspose.pdf.annotations/widgetannotation/get_defaultappearance/)() | Gets default appearance of the field. | +| [get_Exportable](../../aspose.pdf.annotations/widgetannotation/get_exportable/)() | Gets exportable flag of the field. | +| [get_ExportValue](./get_exportvalue/)() | Gets export value of CheckBox field. | +| static [get_FitIntoRectangle](../field/get_fitintorectangle/)() | If true then font size will reduced to fit text to specified rectangle. | +| [get_Flags](../../aspose.pdf.annotations/annotation/get_flags/)() | Flags of the annotation. | +| [get_FullName](../../aspose.pdf.annotations/annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../../aspose.pdf.annotations/annotation/get_height/)() | Gets height of the annotation. | +| [get_Highlighting](../../aspose.pdf.annotations/widgetannotation/get_highlighting/)() | [Annotation](../../aspose.pdf.annotations/annotation/) highlighting mode. | +| [get_HorizontalAlignment](../../aspose.pdf.annotations/annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsGroup](../field/get_isgroup/)() const | Gets boolean value which indicates is this field non-terminal field i.e. group of fields. | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_IsSharedField](../field/get_issharedfield/)() const | Property for Generator support. Used when field is added to header or footer. If true, this field will created once and it's appearance will be visible on all pages of the document. If false, separated field will be created for every document page. | +| [get_IsSynchronized](../field/get_issynchronized/)() | Returns true if dictionary is synchronized. | +| [get_MappingName](../field/get_mappingname/)() | Gets mapping name of the field that shall be used when exporting interactive form field data from the document. | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| static [get_MaxFontSize](../field/get_maxfontsize/)() | Maximail font size which can be used for field contents. -1 to don't check size. | +| static [get_MinFontSize](../field/get_minfontsize/)() | Minimal font size which can be used for field contents. -1 to don't check size. | +| [get_Modified](../../aspose.pdf.annotations/annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Name](../../aspose.pdf.annotations/annotation/get_name/)() | Gets annotation name on the page. | +| [get_OnActivated](../../aspose.pdf.annotations/widgetannotation/get_onactivated/)() | An action which shall be performed when the annotation is activated. | +| [get_PageIndex](../field/get_pageindex/)() override | Gets index of page which contains this field. | +| [get_Parent](../../aspose.pdf.annotations/widgetannotation/get_parent/)() | Gets annotation parent. | +| [get_PartialName](../field/get_partialname/)() | Gets partial name of the field. | +| [get_ReadOnly](../../aspose.pdf.annotations/widgetannotation/get_readonly/)() | Gets read only status of the field. | +| [get_Rect](../field/get_rect/)() override | Gets the field rectangle. | +| [get_Required](../../aspose.pdf.annotations/widgetannotation/get_required/)() | Gets required status of the field. | +| [get_States](../../aspose.pdf.annotations/annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_Style](./get_style/)() | Gets style of check box. | +| [get_SyncRoot](../field/get_syncroot/)() const | Synchronization object. | +| [get_TabOrder](../field/get_taborder/)() | Gets tab order of the field. | +| [get_TextHorizontalAlignment](../../aspose.pdf.annotations/annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| static [get_UpdateAppearanceOnConvert](../../aspose.pdf.annotations/annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../../aspose.pdf.annotations/annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| [get_Value](./get_value/)() override | Gets value of check box field. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../../aspose.pdf.annotations/annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetCheckedStateName](../../aspose.pdf.annotations/widgetannotation/getcheckedstatename/)() | Returns name of "checked" state according to existing state names. | +| [GetEnumerator](../field/getenumerator/)() override | Returns enumerator of contained fields. | +| [GetRectangle](../../aspose.pdf.annotations/annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| [idx_get](../field/idx_get/)(System::String) | Gets subfield contained in this field by name of the subfield. | +| [idx_get](../field/idx_get/)(int32_t) | Gets subfield contained in this field by index. | +| [Recalculate](../field/recalculate/)() | Recaculates all calculated fields on the form. | +| [set_ActiveState](./set_activestate/)(System::String) override | Sets current annotation appearance state. | +| [set_Alignment](../../aspose.pdf.annotations/annotation/set_alignment/)(TextAlignment) | [Annotation](../../aspose.pdf.annotations/annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_AlternateName](../field/set_alternatename/)(System::String) | Sets alternate name of the field (An alternate field name that shall be used in place of the actual field name wherever the field shall be identified in the user interface). Alternate name is used as field tooltip in Adobe Acrobat. | +| [set_AnnotationIndex](../field/set_annotationindex/)(int32_t) | Sets index of this anotation on the page. | +| [set_Border](../../aspose.pdf.annotations/annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../../aspose.pdf.annotations/border/) | +| [set_Checked](./set_checked/)(bool) | Sets state of check box. | +| [set_Color](../../aspose.pdf.annotations/annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](../../aspose.pdf.annotations/annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_DefaultAppearance](../../aspose.pdf.annotations/widgetannotation/set_defaultappearance/)(System::SharedPtr\) | Sets default appearance of the field. | +| [set_Exportable](../../aspose.pdf.annotations/widgetannotation/set_exportable/)(bool) | Sets exportable flag of the field. | +| [set_ExportValue](./set_exportvalue/)(System::String) | Sets export value of CheckBox field. | +| static [set_FitIntoRectangle](../field/set_fitintorectangle/)(bool) | If true then font size will reduced to fit text to specified rectangle. | +| [set_Flags](../../aspose.pdf.annotations/annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| virtual [set_Height](../../aspose.pdf.annotations/annotation/set_height/)(double) | Sets height of the annotation. | +| [set_Highlighting](../../aspose.pdf.annotations/widgetannotation/set_highlighting/)(HighlightingMode) | [Annotation](../../aspose.pdf.annotations/annotation/) highlighting mode. | +| [set_HorizontalAlignment](../../aspose.pdf.annotations/annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_IsSharedField](../field/set_issharedfield/)(bool) | Property for Generator support. Used when field is added to header or footer. If true, this field will created once and it's appearance will be visible on all pages of the document. If false, separated field will be created for every document page. | +| [set_MappingName](../field/set_mappingname/)(System::String) | Sets mapping name of the field that shall be used when exporting interactive form field data from the document. | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| static [set_MaxFontSize](../field/set_maxfontsize/)(double) | Maximail font size which can be used for field contents. -1 to don't check size. | +| static [set_MinFontSize](../field/set_minfontsize/)(double) | Minimal font size which can be used for field contents. -1 to don't check size. | +| [set_Modified](../../aspose.pdf.annotations/annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Name](../../aspose.pdf.annotations/annotation/set_name/)(System::String) | Sets annotation name on the page. | +| [set_OnActivated](../../aspose.pdf.annotations/widgetannotation/set_onactivated/)(System::SharedPtr\) | An action which shall be performed when the annotation is activated. | +| [set_PartialName](../field/set_partialname/)(System::String) | Sets partial name of the field. | +| [set_ReadOnly](../../aspose.pdf.annotations/widgetannotation/set_readonly/)(bool) | Sets read only status of the field. | +| [set_Rect](../field/set_rect/)(System::SharedPtr\) override | Sets the field rectangle. | +| [set_Required](../../aspose.pdf.annotations/widgetannotation/set_required/)(bool) | Sets required status of the field. | +| [set_Style](./set_style/)(BoxStyle) | Sets style of check box. | +| [set_TabOrder](../field/set_taborder/)(int32_t) | Sets tab order of the field. | +| [set_TextHorizontalAlignment](../../aspose.pdf.annotations/annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| static [set_UpdateAppearanceOnConvert](../../aspose.pdf.annotations/annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../../aspose.pdf.annotations/annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| [set_Value](./set_value/)(System::String) override | Sets value of check box field. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../../aspose.pdf.annotations/annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| virtual [SetPosition](../field/setposition/)(System::SharedPtr\) | Set position of the field. | +| [SetTemplateWeakPtr](../field/settemplateweakptr/)(uint32_t) override | Set n'th template argument a weak pointer (rather than shared). Allows switching pointers in containers to weak mode. | +| [WidgetAnnotation](../../aspose.pdf.annotations/widgetannotation/widgetannotation/)(System::SharedPtr\) | Create annotation (used for Generator) | +## See Also + +* Class [Field](../field/) +* Namespace [Aspose::Pdf::Forms](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.forms/checkboxfield/addoption/_index.md b/english/cpp/aspose.pdf.forms/checkboxfield/addoption/_index.md new file mode 100644 index 0000000000..ebf4cd46a7 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/checkboxfield/addoption/_index.md @@ -0,0 +1,133 @@ +--- +title: Aspose::Pdf::Forms::CheckboxField::AddOption method +linktitle: AddOption +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::CheckboxField::AddOption method. Adds new checkbox into a checkbox group, in which at most one of the checkboxes may be checked at any time. The new checkbox is added to the bottom of the group in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.forms/checkboxfield/addoption/ +--- +## CheckboxField::AddOption(System::String) method + + +Adds new checkbox into a checkbox group, in which at most one of the checkboxes may be checked at any time. The new checkbox is added to the bottom of the group. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::CheckboxField::AddOption(System::String optionName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| optionName | System::String | Value of the option represented by added checkbox. | +## Remarks + + + + + + optionName + + + Value of the option represented by added checkbox. + + + +## See Also + +* Class [CheckboxField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) +## CheckboxField::AddOption(System::String, System::SharedPtr\) method + + +Adds new checkbox into a checkbox group, in which at most one of the checkboxes may be checked at any time. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::CheckboxField::AddOption(System::String optionName, System::SharedPtr rect) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| optionName | System::String | Value of the option represented by added checkbox. | +| rect | System::SharedPtr\ | [Rectangle](../../../aspose.pdf/rectangle/) of the added checkbox. | +## Remarks + + + + + + optionName + + + Value of the option represented by added checkbox. + + + + + rect + + + + Rectangle of the added checkbox. + + + +## See Also + +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [CheckboxField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) +## CheckboxField::AddOption(System::String, int32_t, System::SharedPtr\) method + + +Adds new checkbox into a checkbox group, in which at most one of the checkboxes may be checked at any time. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::CheckboxField::AddOption(System::String optionName, int32_t page, System::SharedPtr rect) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| optionName | System::String | Value of the option represented by added checkbox. | +| page | int32_t | Number of the page where the added checkbox should be placed. | +| rect | System::SharedPtr\ | [Rectangle](../../../aspose.pdf/rectangle/) of the added checkbox on the page. | +## Remarks + + + + + + optionName + + + Value of the option represented by added checkbox. + + + + + page + + + Number of the page where the added checkbox should be placed. + + + + + rect + + + + Rectangle of the added checkbox on the page. + + + +## See Also + +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [CheckboxField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/checkboxfield/checkboxfield/_index.md b/english/cpp/aspose.pdf.forms/checkboxfield/checkboxfield/_index.md new file mode 100644 index 0000000000..4ac90cd920 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/checkboxfield/checkboxfield/_index.md @@ -0,0 +1,143 @@ +--- +title: Aspose::Pdf::Forms::CheckboxField::CheckboxField constructor +linktitle: CheckboxField +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::CheckboxField::CheckboxField constructor. Constructor for CheckboxField class in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.forms/checkboxfield/checkboxfield/ +--- +## CheckboxField::CheckboxField(System::SharedPtr\, System::SharedPtr\) constructor + + +Constructor for [CheckboxField](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Forms::CheckboxField::CheckboxField(System::SharedPtr page, System::SharedPtr rect) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | [Page](../../../aspose.pdf/page/) where check box will be placed. | +| rect | System::SharedPtr\ | Position and size of the check box. | +## Remarks + + + + + + page + + + + Page where check box will be placed. + + + + + rect + + + Position and size of the check box. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [CheckboxField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) +## CheckboxField::CheckboxField(System::SharedPtr\, System::SharedPtr\) constructor + + +Constructor for [CheckboxField](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Forms::CheckboxField::CheckboxField(System::SharedPtr doc, System::SharedPtr rect) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| doc | System::SharedPtr\ | [Document](../../../aspose.pdf/document/) where will be new field created. | +| rect | System::SharedPtr\ | [Rectangle](../../../aspose.pdf/rectangle/) where new field will be created. | +## Remarks + + + + + + doc + + + + Document where will be new field created. + + + + + rect + + + + Rectangle where new field will be created. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [CheckboxField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) +## CheckboxField::CheckboxField() constructor + + +Create instance of [CheckboxField](../). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Forms::CheckboxField::CheckboxField() +``` + +## See Also + +* Class [CheckboxField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) +## CheckboxField::CheckboxField(System::SharedPtr\) constructor + + +Constructor to use with Generator. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Forms::CheckboxField::CheckboxField(System::SharedPtr doc) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| doc | System::SharedPtr\ | [Document](../../../aspose.pdf/document/) where field will be created. | +## Remarks + + + + + + doc + + + + Document where field will be created. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [CheckboxField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/checkboxfield/clone/_index.md b/english/cpp/aspose.pdf.forms/checkboxfield/clone/_index.md new file mode 100644 index 0000000000..573c8846cf --- /dev/null +++ b/english/cpp/aspose.pdf.forms/checkboxfield/clone/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Forms::CheckboxField::Clone method +linktitle: Clone +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::CheckboxField::Clone method. Clone the checkbox in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.forms/checkboxfield/clone/ +--- +## CheckboxField::Clone method + + +Clone the checkbox. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Forms::CheckboxField::Clone() override +``` + + +### ReturnValue + +The cloned object + +## See Also + +* Class [CheckboxField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/checkboxfield/get_activestate/_index.md b/english/cpp/aspose.pdf.forms/checkboxfield/get_activestate/_index.md new file mode 100644 index 0000000000..9f0ae7dad9 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/checkboxfield/get_activestate/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::CheckboxField::get_ActiveState method +linktitle: get_ActiveState +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::CheckboxField::get_ActiveState method. Gets current annotation appearance state in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.forms/checkboxfield/get_activestate/ +--- +## CheckboxField::get_ActiveState method + + +Gets current annotation appearance state. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Forms::CheckboxField::get_ActiveState() override +``` + +## See Also + +* Class [CheckboxField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/checkboxfield/get_allowedstates/_index.md b/english/cpp/aspose.pdf.forms/checkboxfield/get_allowedstates/_index.md new file mode 100644 index 0000000000..28bbe35f74 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/checkboxfield/get_allowedstates/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Forms::CheckboxField::get_AllowedStates method +linktitle: get_AllowedStates +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::CheckboxField::get_AllowedStates method. Returns list of allowed states in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.forms/checkboxfield/get_allowedstates/ +--- +## CheckboxField::get_AllowedStates method + + +Returns list of allowed states. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr> Aspose::Pdf::Forms::CheckboxField::get_AllowedStates() +``` + + +### ReturnValue + + + +## See Also + +* Class [CheckboxField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/checkboxfield/get_checked/_index.md b/english/cpp/aspose.pdf.forms/checkboxfield/get_checked/_index.md new file mode 100644 index 0000000000..60fa6dc1d2 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/checkboxfield/get_checked/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::CheckboxField::get_Checked method +linktitle: get_Checked +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::CheckboxField::get_Checked method. Gets state of check box in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.forms/checkboxfield/get_checked/ +--- +## CheckboxField::get_Checked method + + +Gets state of check box. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Forms::CheckboxField::get_Checked() +``` + +## See Also + +* Class [CheckboxField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/checkboxfield/get_exportvalue/_index.md b/english/cpp/aspose.pdf.forms/checkboxfield/get_exportvalue/_index.md new file mode 100644 index 0000000000..46fc04c017 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/checkboxfield/get_exportvalue/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::CheckboxField::get_ExportValue method +linktitle: get_ExportValue +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::CheckboxField::get_ExportValue method. Gets export value of CheckBox field in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.forms/checkboxfield/get_exportvalue/ +--- +## CheckboxField::get_ExportValue method + + +Gets export value of CheckBox field. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Forms::CheckboxField::get_ExportValue() +``` + +## See Also + +* Class [CheckboxField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/checkboxfield/get_style/_index.md b/english/cpp/aspose.pdf.forms/checkboxfield/get_style/_index.md new file mode 100644 index 0000000000..4cdd62df09 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/checkboxfield/get_style/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Forms::CheckboxField::get_Style method +linktitle: get_Style +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::CheckboxField::get_Style method. Gets style of check box in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.forms/checkboxfield/get_style/ +--- +## CheckboxField::get_Style method + + +Gets style of check box. + +```cpp +ASPOSE_PDF_SHARED_API BoxStyle Aspose::Pdf::Forms::CheckboxField::get_Style() +``` + +## See Also + +* Enum [BoxStyle](../../boxstyle/) +* Class [CheckboxField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/checkboxfield/get_value/_index.md b/english/cpp/aspose.pdf.forms/checkboxfield/get_value/_index.md new file mode 100644 index 0000000000..c7255040f9 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/checkboxfield/get_value/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::CheckboxField::get_Value method +linktitle: get_Value +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::CheckboxField::get_Value method. Gets value of check box field in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.forms/checkboxfield/get_value/ +--- +## CheckboxField::get_Value method + + +Gets value of check box field. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Forms::CheckboxField::get_Value() override +``` + +## See Also + +* Class [CheckboxField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/checkboxfield/set_activestate/_index.md b/english/cpp/aspose.pdf.forms/checkboxfield/set_activestate/_index.md new file mode 100644 index 0000000000..ed820ac590 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/checkboxfield/set_activestate/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::CheckboxField::set_ActiveState method +linktitle: set_ActiveState +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::CheckboxField::set_ActiveState method. Sets current annotation appearance state in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.forms/checkboxfield/set_activestate/ +--- +## CheckboxField::set_ActiveState method + + +Sets current annotation appearance state. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::CheckboxField::set_ActiveState(System::String value) override +``` + +## See Also + +* Class [CheckboxField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/checkboxfield/set_checked/_index.md b/english/cpp/aspose.pdf.forms/checkboxfield/set_checked/_index.md new file mode 100644 index 0000000000..4b3a0ca420 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/checkboxfield/set_checked/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::CheckboxField::set_Checked method +linktitle: set_Checked +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::CheckboxField::set_Checked method. Sets state of check box in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.forms/checkboxfield/set_checked/ +--- +## CheckboxField::set_Checked method + + +Sets state of check box. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::CheckboxField::set_Checked(bool value) +``` + +## See Also + +* Class [CheckboxField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/checkboxfield/set_exportvalue/_index.md b/english/cpp/aspose.pdf.forms/checkboxfield/set_exportvalue/_index.md new file mode 100644 index 0000000000..1002f4ac6a --- /dev/null +++ b/english/cpp/aspose.pdf.forms/checkboxfield/set_exportvalue/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::CheckboxField::set_ExportValue method +linktitle: set_ExportValue +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::CheckboxField::set_ExportValue method. Sets export value of CheckBox field in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.forms/checkboxfield/set_exportvalue/ +--- +## CheckboxField::set_ExportValue method + + +Sets export value of CheckBox field. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::CheckboxField::set_ExportValue(System::String value) +``` + +## See Also + +* Class [CheckboxField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/checkboxfield/set_style/_index.md b/english/cpp/aspose.pdf.forms/checkboxfield/set_style/_index.md new file mode 100644 index 0000000000..4f002b0c28 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/checkboxfield/set_style/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Forms::CheckboxField::set_Style method +linktitle: set_Style +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::CheckboxField::set_Style method. Sets style of check box in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.forms/checkboxfield/set_style/ +--- +## CheckboxField::set_Style method + + +Sets style of check box. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::CheckboxField::set_Style(BoxStyle value) +``` + +## See Also + +* Enum [BoxStyle](../../boxstyle/) +* Class [CheckboxField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/checkboxfield/set_value/_index.md b/english/cpp/aspose.pdf.forms/checkboxfield/set_value/_index.md new file mode 100644 index 0000000000..4f1a262f9b --- /dev/null +++ b/english/cpp/aspose.pdf.forms/checkboxfield/set_value/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::CheckboxField::set_Value method +linktitle: set_Value +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::CheckboxField::set_Value method. Sets value of check box field in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.forms/checkboxfield/set_value/ +--- +## CheckboxField::set_Value method + + +Sets value of check box field. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::CheckboxField::set_Value(System::String value) override +``` + +## See Also + +* Class [CheckboxField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/choicefield/_index.md b/english/cpp/aspose.pdf.forms/choicefield/_index.md new file mode 100644 index 0000000000..d156032122 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/choicefield/_index.md @@ -0,0 +1,151 @@ +--- +title: Aspose::Pdf::Forms::ChoiceField class +linktitle: ChoiceField +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ChoiceField class. Represents base class for choice fields in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.forms/choicefield/ +--- +## ChoiceField class + + +Represents base class for choice fields. + +```cpp +class ChoiceField : public Aspose::Pdf::Forms::Field +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Accept](../../aspose.pdf.annotations/widgetannotation/accept/)(System::SharedPtr\) override | Accepts visitor. | +| virtual [AddOption](./addoption/)(System::String) | Adds new option with specified name. | +| virtual [AddOption](./addoption/)(System::String, System::String) | Adds new option with specified export value and name. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| virtual [ChangeAfterResize](../../aspose.pdf.annotations/annotation/changeafterresize/)(System::SharedPtr\) | Update parameters and appearance, according to the matrix transform. | +| [ChoiceField](./choicefield/)(System::SharedPtr\, System::SharedPtr\) | Constructor for [ChoiceField](./). | +| [ChoiceField](./choicefield/)(System::SharedPtr\) | Creates choice field (for Generator) | +| [ChoiceField](./choicefield/)(System::SharedPtr\, System::SharedPtr\) | Constructor for [ChoiceField](./). | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [CopyTo](../field/copyto/)(System::ArrayPtr\\>, int32_t) | Copies subfields of this field into array starting from specified index. | +| [CopyToWidgetArray](../field/copytowidgetarray/)(System::ArrayPtr\\>, int32_t) | Copies subfields of this field into array starting from specified index. | +| virtual [DeleteOption](./deleteoption/)(System::String) | Deletes option by its name. | +| [ExecuteFieldJavaScript](../field/executefieldjavascript/)(System::SharedPtr\) | Executes a specified JavaScript action for the field. | +| [Field](../field/field/)(System::SharedPtr\) | Creates field for use in Generator. | +| [Flatten](../../aspose.pdf.annotations/annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](../../aspose.pdf.annotations/widgetannotation/get_actions/)() const | Gets the annotation actions. | +| [get_Actions](../../aspose.pdf.annotations/annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../../aspose.pdf.annotations/annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../../aspose.pdf.annotations/annotation/get_alignment/)() | [Annotation](../../aspose.pdf.annotations/annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [get_AlternateName](../field/get_alternatename/)() | Gets alternate name of the field (An alternate field name that shall be used in place of the actual field name wherever the field shall be identified in the user interface). Alternate name is used as field tooltip in Adobe Acrobat. | +| [get_AnnotationIndex](../field/get_annotationindex/)() | Gets index of this anotation on the page. | +| [get_AnnotationType](../../aspose.pdf.annotations/widgetannotation/get_annotationtype/)() override | Gets type of annotation. | +| [get_Appearance](../../aspose.pdf.annotations/annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../../aspose.pdf.annotations/annotation/get_border/)() const | Gets annotation border characteristics. [Border](../../aspose.pdf.annotations/border/) | +| [get_Characteristics](../../aspose.pdf.annotations/annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../../aspose.pdf.annotations/annotation/get_color/)() | Gets annotation color. | +| [get_CommitImmediately](./get_commitimmediately/)() | Gets commit on selection change flag. | +| [get_Contents](../../aspose.pdf.annotations/annotation/get_contents/)() | Gets annotation text. | +| [get_Count](../field/get_count/)() const override | Gets number of subfields in this field. (For example number of items in radio button field). | +| [get_DefaultAppearance](../../aspose.pdf.annotations/widgetannotation/get_defaultappearance/)() | Gets default appearance of the field. | +| [get_Exportable](../../aspose.pdf.annotations/widgetannotation/get_exportable/)() | Gets exportable flag of the field. | +| static [get_FitIntoRectangle](../field/get_fitintorectangle/)() | If true then font size will reduced to fit text to specified rectangle. | +| [get_Flags](../../aspose.pdf.annotations/annotation/get_flags/)() | Flags of the annotation. | +| [get_FullName](../../aspose.pdf.annotations/annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../../aspose.pdf.annotations/annotation/get_height/)() | Gets height of the annotation. | +| [get_Highlighting](../../aspose.pdf.annotations/widgetannotation/get_highlighting/)() | [Annotation](../../aspose.pdf.annotations/annotation/) highlighting mode. | +| [get_HorizontalAlignment](../../aspose.pdf.annotations/annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsGroup](../field/get_isgroup/)() const | Gets boolean value which indicates is this field non-terminal field i.e. group of fields. | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_IsSharedField](../field/get_issharedfield/)() const | Property for Generator support. Used when field is added to header or footer. If true, this field will created once and it's appearance will be visible on all pages of the document. If false, separated field will be created for every document page. | +| [get_IsSynchronized](../field/get_issynchronized/)() | Returns true if dictionary is synchronized. | +| [get_MappingName](../field/get_mappingname/)() | Gets mapping name of the field that shall be used when exporting interactive form field data from the document. | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| static [get_MaxFontSize](../field/get_maxfontsize/)() | Maximail font size which can be used for field contents. -1 to don't check size. | +| static [get_MinFontSize](../field/get_minfontsize/)() | Minimal font size which can be used for field contents. -1 to don't check size. | +| [get_Modified](../../aspose.pdf.annotations/annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_MultiSelect](./get_multiselect/)() | Gets multiselection flag. | +| [get_Name](../../aspose.pdf.annotations/annotation/get_name/)() | Gets annotation name on the page. | +| [get_OnActivated](../../aspose.pdf.annotations/widgetannotation/get_onactivated/)() | An action which shall be performed when the annotation is activated. | +| virtual [get_Options](./get_options/)() | Gets collection of choice options. | +| [get_PageIndex](../field/get_pageindex/)() override | Gets index of page which contains this field. | +| [get_Parent](../../aspose.pdf.annotations/widgetannotation/get_parent/)() | Gets annotation parent. | +| [get_PartialName](../field/get_partialname/)() | Gets partial name of the field. | +| [get_ReadOnly](../../aspose.pdf.annotations/widgetannotation/get_readonly/)() | Gets read only status of the field. | +| [get_Rect](../field/get_rect/)() override | Gets the field rectangle. | +| [get_Required](../../aspose.pdf.annotations/widgetannotation/get_required/)() | Gets required status of the field. | +| virtual [get_Selected](./get_selected/)() | Gets index of selected option. This property allows to change selection. | +| virtual [get_SelectedItems](./get_selecteditems/)() | Gets array of selected items. For multiselect list array contains more then one item. For single selection list it contains single item. | +| [get_States](../../aspose.pdf.annotations/annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_SyncRoot](../field/get_syncroot/)() const | Synchronization object. | +| [get_TabOrder](../field/get_taborder/)() | Gets tab order of the field. | +| [get_TextHorizontalAlignment](../../aspose.pdf.annotations/annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| static [get_UpdateAppearanceOnConvert](../../aspose.pdf.annotations/annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../../aspose.pdf.annotations/annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| [get_Value](./get_value/)() override | Gets value of the field. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../../aspose.pdf.annotations/annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetCheckedStateName](../../aspose.pdf.annotations/widgetannotation/getcheckedstatename/)() | Returns name of "checked" state according to existing state names. | +| [GetEnumerator](../field/getenumerator/)() override | Returns enumerator of contained fields. | +| [GetRectangle](../../aspose.pdf.annotations/annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| [idx_get](../field/idx_get/)(System::String) | Gets subfield contained in this field by name of the subfield. | +| [idx_get](../field/idx_get/)(int32_t) | Gets subfield contained in this field by index. | +| [Recalculate](../field/recalculate/)() | Recaculates all calculated fields on the form. | +| virtual [set_ActiveState](../../aspose.pdf.annotations/annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../../aspose.pdf.annotations/annotation/set_alignment/)(TextAlignment) | [Annotation](../../aspose.pdf.annotations/annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_AlternateName](../field/set_alternatename/)(System::String) | Sets alternate name of the field (An alternate field name that shall be used in place of the actual field name wherever the field shall be identified in the user interface). Alternate name is used as field tooltip in Adobe Acrobat. | +| [set_AnnotationIndex](../field/set_annotationindex/)(int32_t) | Sets index of this anotation on the page. | +| [set_Border](../../aspose.pdf.annotations/annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../../aspose.pdf.annotations/border/) | +| [set_Color](../../aspose.pdf.annotations/annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_CommitImmediately](./set_commitimmediately/)(bool) | Sets commit on selection change flag. | +| [set_Contents](../../aspose.pdf.annotations/annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_DefaultAppearance](../../aspose.pdf.annotations/widgetannotation/set_defaultappearance/)(System::SharedPtr\) | Sets default appearance of the field. | +| [set_Exportable](../../aspose.pdf.annotations/widgetannotation/set_exportable/)(bool) | Sets exportable flag of the field. | +| static [set_FitIntoRectangle](../field/set_fitintorectangle/)(bool) | If true then font size will reduced to fit text to specified rectangle. | +| [set_Flags](../../aspose.pdf.annotations/annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| virtual [set_Height](../../aspose.pdf.annotations/annotation/set_height/)(double) | Sets height of the annotation. | +| [set_Highlighting](../../aspose.pdf.annotations/widgetannotation/set_highlighting/)(HighlightingMode) | [Annotation](../../aspose.pdf.annotations/annotation/) highlighting mode. | +| [set_HorizontalAlignment](../../aspose.pdf.annotations/annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_IsSharedField](../field/set_issharedfield/)(bool) | Property for Generator support. Used when field is added to header or footer. If true, this field will created once and it's appearance will be visible on all pages of the document. If false, separated field will be created for every document page. | +| [set_MappingName](../field/set_mappingname/)(System::String) | Sets mapping name of the field that shall be used when exporting interactive form field data from the document. | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| static [set_MaxFontSize](../field/set_maxfontsize/)(double) | Maximail font size which can be used for field contents. -1 to don't check size. | +| static [set_MinFontSize](../field/set_minfontsize/)(double) | Minimal font size which can be used for field contents. -1 to don't check size. | +| [set_Modified](../../aspose.pdf.annotations/annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_MultiSelect](./set_multiselect/)(bool) | Sets multiselection flag. | +| [set_Name](../../aspose.pdf.annotations/annotation/set_name/)(System::String) | Sets annotation name on the page. | +| [set_OnActivated](../../aspose.pdf.annotations/widgetannotation/set_onactivated/)(System::SharedPtr\) | An action which shall be performed when the annotation is activated. | +| [set_PartialName](../field/set_partialname/)(System::String) | Sets partial name of the field. | +| [set_ReadOnly](../../aspose.pdf.annotations/widgetannotation/set_readonly/)(bool) | Sets read only status of the field. | +| [set_Rect](../field/set_rect/)(System::SharedPtr\) override | Sets the field rectangle. | +| [set_Required](../../aspose.pdf.annotations/widgetannotation/set_required/)(bool) | Sets required status of the field. | +| virtual [set_Selected](./set_selected/)(int32_t) | Sets index of selected option. This property allows to change selection. | +| virtual [set_SelectedItems](./set_selecteditems/)(System::ArrayPtr\) | Sets array of selected items. For multiselect list array contains more then one item. For single selection list it contains single item. | +| [set_TabOrder](../field/set_taborder/)(int32_t) | Sets tab order of the field. | +| [set_TextHorizontalAlignment](../../aspose.pdf.annotations/annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| static [set_UpdateAppearanceOnConvert](../../aspose.pdf.annotations/annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../../aspose.pdf.annotations/annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| [set_Value](./set_value/)(System::String) override | Sets value of the field. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../../aspose.pdf.annotations/annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| virtual [SetPosition](../field/setposition/)(System::SharedPtr\) | Set position of the field. | +| [SetTemplateWeakPtr](../field/settemplateweakptr/)(uint32_t) override | Set n'th template argument a weak pointer (rather than shared). Allows switching pointers in containers to weak mode. | +| [WidgetAnnotation](../../aspose.pdf.annotations/widgetannotation/widgetannotation/)(System::SharedPtr\) | Create annotation (used for Generator) | +## See Also + +* Class [Field](../field/) +* Namespace [Aspose::Pdf::Forms](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.forms/choicefield/addoption/_index.md b/english/cpp/aspose.pdf.forms/choicefield/addoption/_index.md new file mode 100644 index 0000000000..7a25baed92 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/choicefield/addoption/_index.md @@ -0,0 +1,80 @@ +--- +title: Aspose::Pdf::Forms::ChoiceField::AddOption method +linktitle: AddOption +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ChoiceField::AddOption method. Adds new option with specified name in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.forms/choicefield/addoption/ +--- +## ChoiceField::AddOption(System::String) method + + +Adds new option with specified name. + +```cpp +virtual ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::ChoiceField::AddOption(System::String optionName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| optionName | System::String | Name of the new option. | +## Remarks + + + + + + optionName + + + Name of the new option. + + + +## See Also + +* Class [ChoiceField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) +## ChoiceField::AddOption(System::String, System::String) method + + +Adds new option with specified export value and name. + +```cpp +virtual ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::ChoiceField::AddOption(System::String export_, System::String name) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| export | System::String | Export value. | +| name | System::String | Name of the new option. | +## Remarks + + + + + + export + + + Export value. + + + + + name + + + Name of the new option. + + + +## See Also + +* Class [ChoiceField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/choicefield/choicefield/_index.md b/english/cpp/aspose.pdf.forms/choicefield/choicefield/_index.md new file mode 100644 index 0000000000..b24ca06a12 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/choicefield/choicefield/_index.md @@ -0,0 +1,130 @@ +--- +title: Aspose::Pdf::Forms::ChoiceField::ChoiceField constructor +linktitle: ChoiceField +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ChoiceField::ChoiceField constructor. Constructor for ChoiceField in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.forms/choicefield/choicefield/ +--- +## ChoiceField::ChoiceField(System::SharedPtr\, System::SharedPtr\) constructor + + +Constructor for [ChoiceField](../). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Forms::ChoiceField::ChoiceField(System::SharedPtr page, System::SharedPtr rect) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | [Page](../../../aspose.pdf/page/) where field is situated. | +| rect | System::SharedPtr\ | [Rectangle](../../../aspose.pdf/rectangle/) of the field. | +## Remarks + + + + + + page + + + + Page where field is situated. + + + + + rect + + + + Rectangle of the field. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [ChoiceField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) +## ChoiceField::ChoiceField(System::SharedPtr\) constructor + + +Creates choice field (for Generator) + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Forms::ChoiceField::ChoiceField(System::SharedPtr doc) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| doc | System::SharedPtr\ | [Document](../../../aspose.pdf/document/) where choice field will be created. | +## Remarks + + + + + + doc + + + + Document where choice field will be created. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [ChoiceField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) +## ChoiceField::ChoiceField(System::SharedPtr\, System::SharedPtr\) constructor + + +Constructor for [ChoiceField](../). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Forms::ChoiceField::ChoiceField(System::SharedPtr doc, System::SharedPtr rect) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| doc | System::SharedPtr\ | [Document](../../../aspose.pdf/document/) where field will be created. | +| rect | System::SharedPtr\ | [Rectangle](../../../aspose.pdf/rectangle/) of the field. | +## Remarks + + + + + + doc + + + + Document where field will be created. + + + + + rect + + + + Rectangle of the field. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [ChoiceField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/choicefield/deleteoption/_index.md b/english/cpp/aspose.pdf.forms/choicefield/deleteoption/_index.md new file mode 100644 index 0000000000..e0589185c0 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/choicefield/deleteoption/_index.md @@ -0,0 +1,40 @@ +--- +title: Aspose::Pdf::Forms::ChoiceField::DeleteOption method +linktitle: DeleteOption +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ChoiceField::DeleteOption method. Deletes option by its name in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.forms/choicefield/deleteoption/ +--- +## ChoiceField::DeleteOption method + + +Deletes option by its name. + +```cpp +virtual ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::ChoiceField::DeleteOption(System::String optionName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| optionName | System::String | Name of the option which must be deleted. | +## Remarks + + + + + + optionName + + + Name of the option which must be deleted. + + + +## See Also + +* Class [ChoiceField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/choicefield/get_commitimmediately/_index.md b/english/cpp/aspose.pdf.forms/choicefield/get_commitimmediately/_index.md new file mode 100644 index 0000000000..f3ea56b062 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/choicefield/get_commitimmediately/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::ChoiceField::get_CommitImmediately method +linktitle: get_CommitImmediately +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ChoiceField::get_CommitImmediately method. Gets commit on selection change flag in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.forms/choicefield/get_commitimmediately/ +--- +## ChoiceField::get_CommitImmediately method + + +Gets commit on selection change flag. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Forms::ChoiceField::get_CommitImmediately() +``` + +## See Also + +* Class [ChoiceField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/choicefield/get_multiselect/_index.md b/english/cpp/aspose.pdf.forms/choicefield/get_multiselect/_index.md new file mode 100644 index 0000000000..610470ee04 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/choicefield/get_multiselect/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::ChoiceField::get_MultiSelect method +linktitle: get_MultiSelect +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ChoiceField::get_MultiSelect method. Gets multiselection flag in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.forms/choicefield/get_multiselect/ +--- +## ChoiceField::get_MultiSelect method + + +Gets multiselection flag. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Forms::ChoiceField::get_MultiSelect() +``` + +## See Also + +* Class [ChoiceField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/choicefield/get_options/_index.md b/english/cpp/aspose.pdf.forms/choicefield/get_options/_index.md new file mode 100644 index 0000000000..3267eee429 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/choicefield/get_options/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Forms::ChoiceField::get_Options method +linktitle: get_Options +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ChoiceField::get_Options method. Gets collection of choice options in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.forms/choicefield/get_options/ +--- +## ChoiceField::get_Options method + + +Gets collection of choice options. + +```cpp +virtual ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Forms::ChoiceField::get_Options() +``` + +## See Also + +* Class [OptionCollection](../../optioncollection/) +* Class [ChoiceField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/choicefield/get_selected/_index.md b/english/cpp/aspose.pdf.forms/choicefield/get_selected/_index.md new file mode 100644 index 0000000000..7f6249d6d4 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/choicefield/get_selected/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::ChoiceField::get_Selected method +linktitle: get_Selected +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ChoiceField::get_Selected method. Gets index of selected option. This property allows to change selection in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.forms/choicefield/get_selected/ +--- +## ChoiceField::get_Selected method + + +Gets index of selected option. This property allows to change selection. + +```cpp +virtual ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Forms::ChoiceField::get_Selected() +``` + +## See Also + +* Class [ChoiceField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/choicefield/get_selecteditems/_index.md b/english/cpp/aspose.pdf.forms/choicefield/get_selecteditems/_index.md new file mode 100644 index 0000000000..305f9d4c90 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/choicefield/get_selecteditems/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::ChoiceField::get_SelectedItems method +linktitle: get_SelectedItems +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ChoiceField::get_SelectedItems method. Gets array of selected items. For multiselect list array contains more then one item. For single selection list it contains single item in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.forms/choicefield/get_selecteditems/ +--- +## ChoiceField::get_SelectedItems method + + +Gets array of selected items. For multiselect list array contains more then one item. For single selection list it contains single item. + +```cpp +virtual ASPOSE_PDF_SHARED_API System::ArrayPtr Aspose::Pdf::Forms::ChoiceField::get_SelectedItems() +``` + +## See Also + +* Class [ChoiceField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/choicefield/get_value/_index.md b/english/cpp/aspose.pdf.forms/choicefield/get_value/_index.md new file mode 100644 index 0000000000..f5cf3e5795 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/choicefield/get_value/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::ChoiceField::get_Value method +linktitle: get_Value +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ChoiceField::get_Value method. Gets value of the field in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.forms/choicefield/get_value/ +--- +## ChoiceField::get_Value method + + +Gets value of the field. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Forms::ChoiceField::get_Value() override +``` + +## See Also + +* Class [ChoiceField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/choicefield/set_commitimmediately/_index.md b/english/cpp/aspose.pdf.forms/choicefield/set_commitimmediately/_index.md new file mode 100644 index 0000000000..b4f42fe6f4 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/choicefield/set_commitimmediately/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::ChoiceField::set_CommitImmediately method +linktitle: set_CommitImmediately +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ChoiceField::set_CommitImmediately method. Sets commit on selection change flag in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.forms/choicefield/set_commitimmediately/ +--- +## ChoiceField::set_CommitImmediately method + + +Sets commit on selection change flag. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::ChoiceField::set_CommitImmediately(bool value) +``` + +## See Also + +* Class [ChoiceField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/choicefield/set_multiselect/_index.md b/english/cpp/aspose.pdf.forms/choicefield/set_multiselect/_index.md new file mode 100644 index 0000000000..2cf335d1eb --- /dev/null +++ b/english/cpp/aspose.pdf.forms/choicefield/set_multiselect/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::ChoiceField::set_MultiSelect method +linktitle: set_MultiSelect +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ChoiceField::set_MultiSelect method. Sets multiselection flag in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.forms/choicefield/set_multiselect/ +--- +## ChoiceField::set_MultiSelect method + + +Sets multiselection flag. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::ChoiceField::set_MultiSelect(bool value) +``` + +## See Also + +* Class [ChoiceField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/choicefield/set_selected/_index.md b/english/cpp/aspose.pdf.forms/choicefield/set_selected/_index.md new file mode 100644 index 0000000000..fb5f665e16 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/choicefield/set_selected/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::ChoiceField::set_Selected method +linktitle: set_Selected +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ChoiceField::set_Selected method. Sets index of selected option. This property allows to change selection in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.forms/choicefield/set_selected/ +--- +## ChoiceField::set_Selected method + + +Sets index of selected option. This property allows to change selection. + +```cpp +virtual ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::ChoiceField::set_Selected(int32_t value) +``` + +## See Also + +* Class [ChoiceField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/choicefield/set_selecteditems/_index.md b/english/cpp/aspose.pdf.forms/choicefield/set_selecteditems/_index.md new file mode 100644 index 0000000000..d15c359c11 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/choicefield/set_selecteditems/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::ChoiceField::set_SelectedItems method +linktitle: set_SelectedItems +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ChoiceField::set_SelectedItems method. Sets array of selected items. For multiselect list array contains more then one item. For single selection list it contains single item in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.forms/choicefield/set_selecteditems/ +--- +## ChoiceField::set_SelectedItems method + + +Sets array of selected items. For multiselect list array contains more then one item. For single selection list it contains single item. + +```cpp +virtual ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::ChoiceField::set_SelectedItems(System::ArrayPtr value) +``` + +## See Also + +* Class [ChoiceField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/choicefield/set_value/_index.md b/english/cpp/aspose.pdf.forms/choicefield/set_value/_index.md new file mode 100644 index 0000000000..f61f899392 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/choicefield/set_value/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::ChoiceField::set_Value method +linktitle: set_Value +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ChoiceField::set_Value method. Sets value of the field in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.forms/choicefield/set_value/ +--- +## ChoiceField::set_Value method + + +Sets value of the field. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::ChoiceField::set_Value(System::String value) override +``` + +## See Also + +* Class [ChoiceField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/comboboxfield/_index.md b/english/cpp/aspose.pdf.forms/comboboxfield/_index.md new file mode 100644 index 0000000000..9e3a748a49 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/comboboxfield/_index.md @@ -0,0 +1,159 @@ +--- +title: Aspose::Pdf::Forms::ComboBoxField class +linktitle: ComboBoxField +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ComboBoxField class. Class representing Combobox field of the form in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.forms/comboboxfield/ +--- +## ComboBoxField class + + +Class representing Combobox field of the form. + +```cpp +class ComboBoxField : public Aspose::Pdf::Forms::ChoiceField +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Accept](../../aspose.pdf.annotations/widgetannotation/accept/)(System::SharedPtr\) override | Accepts visitor. | +| virtual [AddOption](../choicefield/addoption/)(System::String) | Adds new option with specified name. | +| virtual [AddOption](../choicefield/addoption/)(System::String, System::String) | Adds new option with specified export value and name. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| virtual [ChangeAfterResize](../../aspose.pdf.annotations/annotation/changeafterresize/)(System::SharedPtr\) | Update parameters and appearance, according to the matrix transform. | +| [ChoiceField](../choicefield/choicefield/)(System::SharedPtr\, System::SharedPtr\) | Constructor for [ChoiceField](../choicefield/). | +| [ChoiceField](../choicefield/choicefield/)(System::SharedPtr\) | Creates choice field (for Generator) | +| [ChoiceField](../choicefield/choicefield/)(System::SharedPtr\, System::SharedPtr\) | Constructor for [ChoiceField](../choicefield/). | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [ComboBoxField](./comboboxfield/)() | Constructor for [ComboBoxField](./) to be used in Generator. | +| [ComboBoxField](./comboboxfield/)(System::SharedPtr\) | Creates CombBox field to work with Generator. | +| [ComboBoxField](./comboboxfield/)(System::SharedPtr\, System::SharedPtr\) | Constructor for Combobox [Field](../field/). | +| [ComboBoxField](./comboboxfield/)(System::SharedPtr\, System::SharedPtr\) | Constructor for Combobox field. | +| [CopyTo](../field/copyto/)(System::ArrayPtr\\>, int32_t) | Copies subfields of this field into array starting from specified index. | +| [CopyToWidgetArray](../field/copytowidgetarray/)(System::ArrayPtr\\>, int32_t) | Copies subfields of this field into array starting from specified index. | +| virtual [DeleteOption](../choicefield/deleteoption/)(System::String) | Deletes option by its name. | +| [ExecuteFieldJavaScript](../field/executefieldjavascript/)(System::SharedPtr\) | Executes a specified JavaScript action for the field. | +| [Field](../field/field/)(System::SharedPtr\) | Creates field for use in Generator. | +| [Flatten](../../aspose.pdf.annotations/annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](../../aspose.pdf.annotations/widgetannotation/get_actions/)() const | Gets the annotation actions. | +| [get_Actions](../../aspose.pdf.annotations/annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../../aspose.pdf.annotations/annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../../aspose.pdf.annotations/annotation/get_alignment/)() | [Annotation](../../aspose.pdf.annotations/annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [get_AlternateName](../field/get_alternatename/)() | Gets alternate name of the field (An alternate field name that shall be used in place of the actual field name wherever the field shall be identified in the user interface). Alternate name is used as field tooltip in Adobe Acrobat. | +| [get_AnnotationIndex](../field/get_annotationindex/)() | Gets index of this anotation on the page. | +| [get_AnnotationType](../../aspose.pdf.annotations/widgetannotation/get_annotationtype/)() override | Gets type of annotation. | +| [get_Appearance](../../aspose.pdf.annotations/annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../../aspose.pdf.annotations/annotation/get_border/)() const | Gets annotation border characteristics. [Border](../../aspose.pdf.annotations/border/) | +| [get_Characteristics](../../aspose.pdf.annotations/annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../../aspose.pdf.annotations/annotation/get_color/)() | Gets annotation color. | +| [get_CommitImmediately](../choicefield/get_commitimmediately/)() | Gets commit on selection change flag. | +| [get_Contents](../../aspose.pdf.annotations/annotation/get_contents/)() | Gets annotation text. | +| [get_Count](../field/get_count/)() const override | Gets number of subfields in this field. (For example number of items in radio button field). | +| [get_DefaultAppearance](../../aspose.pdf.annotations/widgetannotation/get_defaultappearance/)() | Gets default appearance of the field. | +| [get_Editable](./get_editable/)() | Gets editable status of the field. | +| [get_Exportable](../../aspose.pdf.annotations/widgetannotation/get_exportable/)() | Gets exportable flag of the field. | +| static [get_FitIntoRectangle](../field/get_fitintorectangle/)() | If true then font size will reduced to fit text to specified rectangle. | +| [get_Flags](../../aspose.pdf.annotations/annotation/get_flags/)() | Flags of the annotation. | +| [get_FullName](../../aspose.pdf.annotations/annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../../aspose.pdf.annotations/annotation/get_height/)() | Gets height of the annotation. | +| [get_Highlighting](../../aspose.pdf.annotations/widgetannotation/get_highlighting/)() | [Annotation](../../aspose.pdf.annotations/annotation/) highlighting mode. | +| [get_HorizontalAlignment](../../aspose.pdf.annotations/annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsGroup](../field/get_isgroup/)() const | Gets boolean value which indicates is this field non-terminal field i.e. group of fields. | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_IsSharedField](../field/get_issharedfield/)() const | Property for Generator support. Used when field is added to header or footer. If true, this field will created once and it's appearance will be visible on all pages of the document. If false, separated field will be created for every document page. | +| [get_IsSynchronized](../field/get_issynchronized/)() | Returns true if dictionary is synchronized. | +| [get_MappingName](../field/get_mappingname/)() | Gets mapping name of the field that shall be used when exporting interactive form field data from the document. | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| static [get_MaxFontSize](../field/get_maxfontsize/)() | Maximail font size which can be used for field contents. -1 to don't check size. | +| static [get_MinFontSize](../field/get_minfontsize/)() | Minimal font size which can be used for field contents. -1 to don't check size. | +| [get_Modified](../../aspose.pdf.annotations/annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_MultiSelect](../choicefield/get_multiselect/)() | Gets multiselection flag. | +| [get_Name](../../aspose.pdf.annotations/annotation/get_name/)() | Gets annotation name on the page. | +| [get_OnActivated](../../aspose.pdf.annotations/widgetannotation/get_onactivated/)() | An action which shall be performed when the annotation is activated. | +| virtual [get_Options](../choicefield/get_options/)() | Gets collection of choice options. | +| [get_PageIndex](../field/get_pageindex/)() override | Gets index of page which contains this field. | +| [get_Parent](../../aspose.pdf.annotations/widgetannotation/get_parent/)() | Gets annotation parent. | +| [get_PartialName](../field/get_partialname/)() | Gets partial name of the field. | +| [get_ReadOnly](../../aspose.pdf.annotations/widgetannotation/get_readonly/)() | Gets read only status of the field. | +| [get_Rect](../field/get_rect/)() override | Gets the field rectangle. | +| [get_Required](../../aspose.pdf.annotations/widgetannotation/get_required/)() | Gets required status of the field. | +| virtual [get_Selected](../choicefield/get_selected/)() | Gets index of selected option. This property allows to change selection. | +| virtual [get_SelectedItems](../choicefield/get_selecteditems/)() | Gets array of selected items. For multiselect list array contains more then one item. For single selection list it contains single item. | +| [get_SpellCheck](./get_spellcheck/)() | Gets spellchaeck activiity status. | +| [get_States](../../aspose.pdf.annotations/annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_SyncRoot](../field/get_syncroot/)() const | Synchronization object. | +| [get_TabOrder](../field/get_taborder/)() | Gets tab order of the field. | +| [get_TextHorizontalAlignment](../../aspose.pdf.annotations/annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| static [get_UpdateAppearanceOnConvert](../../aspose.pdf.annotations/annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../../aspose.pdf.annotations/annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| [get_Value](../choicefield/get_value/)() override | Gets value of the field. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../../aspose.pdf.annotations/annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetCheckedStateName](../../aspose.pdf.annotations/widgetannotation/getcheckedstatename/)() | Returns name of "checked" state according to existing state names. | +| [GetEnumerator](../field/getenumerator/)() override | Returns enumerator of contained fields. | +| [GetRectangle](../../aspose.pdf.annotations/annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| [idx_get](../field/idx_get/)(System::String) | Gets subfield contained in this field by name of the subfield. | +| [idx_get](../field/idx_get/)(int32_t) | Gets subfield contained in this field by index. | +| [Recalculate](../field/recalculate/)() | Recaculates all calculated fields on the form. | +| virtual [set_ActiveState](../../aspose.pdf.annotations/annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../../aspose.pdf.annotations/annotation/set_alignment/)(TextAlignment) | [Annotation](../../aspose.pdf.annotations/annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_AlternateName](../field/set_alternatename/)(System::String) | Sets alternate name of the field (An alternate field name that shall be used in place of the actual field name wherever the field shall be identified in the user interface). Alternate name is used as field tooltip in Adobe Acrobat. | +| [set_AnnotationIndex](../field/set_annotationindex/)(int32_t) | Sets index of this anotation on the page. | +| [set_Border](../../aspose.pdf.annotations/annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../../aspose.pdf.annotations/border/) | +| [set_Color](../../aspose.pdf.annotations/annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_CommitImmediately](../choicefield/set_commitimmediately/)(bool) | Sets commit on selection change flag. | +| [set_Contents](../../aspose.pdf.annotations/annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_DefaultAppearance](../../aspose.pdf.annotations/widgetannotation/set_defaultappearance/)(System::SharedPtr\) | Sets default appearance of the field. | +| [set_Editable](./set_editable/)(bool) | Sets editable status of the field. | +| [set_Exportable](../../aspose.pdf.annotations/widgetannotation/set_exportable/)(bool) | Sets exportable flag of the field. | +| static [set_FitIntoRectangle](../field/set_fitintorectangle/)(bool) | If true then font size will reduced to fit text to specified rectangle. | +| [set_Flags](../../aspose.pdf.annotations/annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| virtual [set_Height](../../aspose.pdf.annotations/annotation/set_height/)(double) | Sets height of the annotation. | +| [set_Highlighting](../../aspose.pdf.annotations/widgetannotation/set_highlighting/)(HighlightingMode) | [Annotation](../../aspose.pdf.annotations/annotation/) highlighting mode. | +| [set_HorizontalAlignment](../../aspose.pdf.annotations/annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_IsSharedField](../field/set_issharedfield/)(bool) | Property for Generator support. Used when field is added to header or footer. If true, this field will created once and it's appearance will be visible on all pages of the document. If false, separated field will be created for every document page. | +| [set_MappingName](../field/set_mappingname/)(System::String) | Sets mapping name of the field that shall be used when exporting interactive form field data from the document. | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| static [set_MaxFontSize](../field/set_maxfontsize/)(double) | Maximail font size which can be used for field contents. -1 to don't check size. | +| static [set_MinFontSize](../field/set_minfontsize/)(double) | Minimal font size which can be used for field contents. -1 to don't check size. | +| [set_Modified](../../aspose.pdf.annotations/annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_MultiSelect](../choicefield/set_multiselect/)(bool) | Sets multiselection flag. | +| [set_Name](../../aspose.pdf.annotations/annotation/set_name/)(System::String) | Sets annotation name on the page. | +| [set_OnActivated](../../aspose.pdf.annotations/widgetannotation/set_onactivated/)(System::SharedPtr\) | An action which shall be performed when the annotation is activated. | +| [set_PartialName](../field/set_partialname/)(System::String) | Sets partial name of the field. | +| [set_ReadOnly](../../aspose.pdf.annotations/widgetannotation/set_readonly/)(bool) | Sets read only status of the field. | +| [set_Rect](../field/set_rect/)(System::SharedPtr\) override | Sets the field rectangle. | +| [set_Required](../../aspose.pdf.annotations/widgetannotation/set_required/)(bool) | Sets required status of the field. | +| virtual [set_Selected](../choicefield/set_selected/)(int32_t) | Sets index of selected option. This property allows to change selection. | +| virtual [set_SelectedItems](../choicefield/set_selecteditems/)(System::ArrayPtr\) | Sets array of selected items. For multiselect list array contains more then one item. For single selection list it contains single item. | +| [set_SpellCheck](./set_spellcheck/)(bool) | Sets spellchaeck activiity status. | +| [set_TabOrder](../field/set_taborder/)(int32_t) | Sets tab order of the field. | +| [set_TextHorizontalAlignment](../../aspose.pdf.annotations/annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| static [set_UpdateAppearanceOnConvert](../../aspose.pdf.annotations/annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../../aspose.pdf.annotations/annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| [set_Value](../choicefield/set_value/)(System::String) override | Sets value of the field. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../../aspose.pdf.annotations/annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| virtual [SetPosition](../field/setposition/)(System::SharedPtr\) | Set position of the field. | +| [SetTemplateWeakPtr](../field/settemplateweakptr/)(uint32_t) override | Set n'th template argument a weak pointer (rather than shared). Allows switching pointers in containers to weak mode. | +| [WidgetAnnotation](../../aspose.pdf.annotations/widgetannotation/widgetannotation/)(System::SharedPtr\) | Create annotation (used for Generator) | +## See Also + +* Class [ChoiceField](../choicefield/) +* Namespace [Aspose::Pdf::Forms](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.forms/comboboxfield/comboboxfield/_index.md b/english/cpp/aspose.pdf.forms/comboboxfield/comboboxfield/_index.md new file mode 100644 index 0000000000..62f01ad818 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/comboboxfield/comboboxfield/_index.md @@ -0,0 +1,144 @@ +--- +title: Aspose::Pdf::Forms::ComboBoxField::ComboBoxField constructor +linktitle: ComboBoxField +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ComboBoxField::ComboBoxField constructor. Constructor for ComboBoxField to be used in Generator in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.forms/comboboxfield/comboboxfield/ +--- +## ComboBoxField::ComboBoxField() constructor + + +Constructor for [ComboBoxField](../) to be used in Generator. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Forms::ComboBoxField::ComboBoxField() +``` + +## See Also + +* Class [ComboBoxField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) +## ComboBoxField::ComboBoxField(System::SharedPtr\) constructor + + +Creates CombBox field to work with Generator. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Forms::ComboBoxField::ComboBoxField(System::SharedPtr doc) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| doc | System::SharedPtr\ | [Document](../../../aspose.pdf/document/) where field will be created. | +## Remarks + + + + + + doc + + + + Document where field will be created. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [ComboBoxField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) +## ComboBoxField::ComboBoxField(System::SharedPtr\, System::SharedPtr\) constructor + + +Constructor for Combobox [Field](../../field/). + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Forms::ComboBoxField::ComboBoxField(System::SharedPtr page, System::SharedPtr rect) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | [Page](../../../aspose.pdf/page/) where field will be placed. | +| rect | System::SharedPtr\ | [Rectangle](../../../aspose.pdf/rectangle/) which defines size and position of the field on the page. | +## Remarks + + + + + + page + + + + Page where field will be placed. + + + + + rect + + + + Rectangle which defines size and position of the field on the page. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [ComboBoxField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) +## ComboBoxField::ComboBoxField(System::SharedPtr\, System::SharedPtr\) constructor + + +Constructor for Combobox field. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Forms::ComboBoxField::ComboBoxField(System::SharedPtr doc, System::SharedPtr rect) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| doc | System::SharedPtr\ | [Document](../../../aspose.pdf/document/) where field should be created. | +| rect | System::SharedPtr\ | [Rectangle](../../../aspose.pdf/rectangle/) which defines size and position of the field. | +## Remarks + + + + + + doc + + + + Document where field should be created. + + + + + rect + + + + Rectangle which defines size and position of the field. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [ComboBoxField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/comboboxfield/get_editable/_index.md b/english/cpp/aspose.pdf.forms/comboboxfield/get_editable/_index.md new file mode 100644 index 0000000000..033e8311f9 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/comboboxfield/get_editable/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::ComboBoxField::get_Editable method +linktitle: get_Editable +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ComboBoxField::get_Editable method. Gets editable status of the field in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.forms/comboboxfield/get_editable/ +--- +## ComboBoxField::get_Editable method + + +Gets editable status of the field. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Forms::ComboBoxField::get_Editable() +``` + +## See Also + +* Class [ComboBoxField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/comboboxfield/get_spellcheck/_index.md b/english/cpp/aspose.pdf.forms/comboboxfield/get_spellcheck/_index.md new file mode 100644 index 0000000000..0eb3b87e66 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/comboboxfield/get_spellcheck/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::ComboBoxField::get_SpellCheck method +linktitle: get_SpellCheck +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ComboBoxField::get_SpellCheck method. Gets spellchaeck activiity status in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.forms/comboboxfield/get_spellcheck/ +--- +## ComboBoxField::get_SpellCheck method + + +Gets spellchaeck activiity status. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Forms::ComboBoxField::get_SpellCheck() +``` + +## See Also + +* Class [ComboBoxField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/comboboxfield/set_editable/_index.md b/english/cpp/aspose.pdf.forms/comboboxfield/set_editable/_index.md new file mode 100644 index 0000000000..db617dca37 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/comboboxfield/set_editable/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::ComboBoxField::set_Editable method +linktitle: set_Editable +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ComboBoxField::set_Editable method. Sets editable status of the field in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.forms/comboboxfield/set_editable/ +--- +## ComboBoxField::set_Editable method + + +Sets editable status of the field. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::ComboBoxField::set_Editable(bool value) +``` + +## See Also + +* Class [ComboBoxField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/comboboxfield/set_spellcheck/_index.md b/english/cpp/aspose.pdf.forms/comboboxfield/set_spellcheck/_index.md new file mode 100644 index 0000000000..aa6ab09ca7 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/comboboxfield/set_spellcheck/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::ComboBoxField::set_SpellCheck method +linktitle: set_SpellCheck +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ComboBoxField::set_SpellCheck method. Sets spellchaeck activiity status in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.forms/comboboxfield/set_spellcheck/ +--- +## ComboBoxField::set_SpellCheck method + + +Sets spellchaeck activiity status. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::ComboBoxField::set_SpellCheck(bool value) +``` + +## See Also + +* Class [ComboBoxField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/datefield/_index.md b/english/cpp/aspose.pdf.forms/datefield/_index.md new file mode 100644 index 0000000000..ca4d706235 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/datefield/_index.md @@ -0,0 +1,165 @@ +--- +title: Aspose::Pdf::Forms::DateField class +linktitle: DateField +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::DateField class. Date field with calendar view in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.forms/datefield/ +--- +## DateField class + + +Date field with calendar view. + +```cpp +class DateField : public Aspose::Pdf::Forms::TextBoxField +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Accept](../../aspose.pdf.annotations/widgetannotation/accept/)(System::SharedPtr\) override | Accepts visitor. | +| [AddBarcode](../textboxfield/addbarcode/)(System::String) | Adds barcode 128 into the field. [Field](../field/) value will be changed onto the code and field become read only. | +| [AddImage](./addimage/)(System::SharedPtr\) | [Image](../../aspose.pdf/image/) adding denied for this field. | +| [AddImage](../textboxfield/addimage/)(System::SharedPtr\) | Adds image into the field resources and draws it. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| virtual [ChangeAfterResize](../../aspose.pdf.annotations/annotation/changeafterresize/)(System::SharedPtr\) | Update parameters and appearance, according to the matrix transform. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [CopyTo](../field/copyto/)(System::ArrayPtr\\>, int32_t) | Copies subfields of this field into array starting from specified index. | +| [CopyToWidgetArray](../field/copytowidgetarray/)(System::ArrayPtr\\>, int32_t) | Copies subfields of this field into array starting from specified index. | +| [DateField](./datefield/)() | Initializes a new instance of the [DateField](./) | +| [DateField](./datefield/)(System::SharedPtr\) | Constructor which should be used with Generator. | +| [DateField](./datefield/)(System::SharedPtr\, System::SharedPtr\) | Initializes a new instance of the [DateField](./) | +| [DateField](./datefield/)(System::SharedPtr\, System::SharedPtr\) | Initializes a new instance of the [DateField](./) | +| [ExecuteFieldJavaScript](../field/executefieldjavascript/)(System::SharedPtr\) | Executes a specified JavaScript action for the field. | +| [Field](../field/field/)(System::SharedPtr\) | Creates field for use in Generator. | +| [Flatten](../../aspose.pdf.annotations/annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](../../aspose.pdf.annotations/widgetannotation/get_actions/)() const | Gets the annotation actions. | +| [get_Actions](../../aspose.pdf.annotations/annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../../aspose.pdf.annotations/annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../../aspose.pdf.annotations/annotation/get_alignment/)() | [Annotation](../../aspose.pdf.annotations/annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [get_AlternateName](../field/get_alternatename/)() | Gets alternate name of the field (An alternate field name that shall be used in place of the actual field name wherever the field shall be identified in the user interface). Alternate name is used as field tooltip in Adobe Acrobat. | +| [get_AnnotationIndex](../field/get_annotationindex/)() | Gets index of this anotation on the page. | +| [get_AnnotationType](../../aspose.pdf.annotations/widgetannotation/get_annotationtype/)() override | Gets type of annotation. | +| [get_Appearance](../../aspose.pdf.annotations/annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../../aspose.pdf.annotations/annotation/get_border/)() const | Gets annotation border characteristics. [Border](../../aspose.pdf.annotations/border/) | +| [get_Characteristics](../../aspose.pdf.annotations/annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../../aspose.pdf.annotations/annotation/get_color/)() | Gets annotation color. | +| [get_Contents](../../aspose.pdf.annotations/annotation/get_contents/)() | Gets annotation text. | +| [get_Count](../field/get_count/)() const override | Gets number of subfields in this field. (For example number of items in radio button field). | +| [get_DateFormat](./get_dateformat/)() const | Gets the date format. | +| [get_DateTimeValue](./get_datetimevalue/)() | Gets Date. | +| [get_DefaultAppearance](../../aspose.pdf.annotations/widgetannotation/get_defaultappearance/)() | Gets default appearance of the field. | +| [get_Exportable](../../aspose.pdf.annotations/widgetannotation/get_exportable/)() | Gets exportable flag of the field. | +| static [get_FitIntoRectangle](../field/get_fitintorectangle/)() | If true then font size will reduced to fit text to specified rectangle. | +| [get_Flags](../../aspose.pdf.annotations/annotation/get_flags/)() | Flags of the annotation. | +| [get_ForceCombs](../textboxfield/get_forcecombs/)() | Gets flag which indicates is field divided into spaced positions. | +| [get_FullName](../../aspose.pdf.annotations/annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../../aspose.pdf.annotations/annotation/get_height/)() | Gets height of the annotation. | +| [get_Highlighting](../../aspose.pdf.annotations/widgetannotation/get_highlighting/)() | [Annotation](../../aspose.pdf.annotations/annotation/) highlighting mode. | +| [get_HorizontalAlignment](../../aspose.pdf.annotations/annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsGroup](../field/get_isgroup/)() const | Gets boolean value which indicates is this field non-terminal field i.e. group of fields. | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_IsSharedField](../field/get_issharedfield/)() const | Property for Generator support. Used when field is added to header or footer. If true, this field will created once and it's appearance will be visible on all pages of the document. If false, separated field will be created for every document page. | +| [get_IsSynchronized](../field/get_issynchronized/)() | Returns true if dictionary is synchronized. | +| [get_MappingName](../field/get_mappingname/)() | Gets mapping name of the field that shall be used when exporting interactive form field data from the document. | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| static [get_MaxFontSize](../field/get_maxfontsize/)() | Maximail font size which can be used for field contents. -1 to don't check size. | +| [get_MaxLen](../textboxfield/get_maxlen/)() | Gets maximum length of text in the field. | +| static [get_MinFontSize](../field/get_minfontsize/)() | Minimal font size which can be used for field contents. -1 to don't check size. | +| [get_Modified](../../aspose.pdf.annotations/annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Multiline](../textboxfield/get_multiline/)() | Gets multiline flag of the field. If Multiline is true field can contain multiple lines of text. | +| [get_Name](../../aspose.pdf.annotations/annotation/get_name/)() | Gets annotation name on the page. | +| [get_OnActivated](../../aspose.pdf.annotations/widgetannotation/get_onactivated/)() | An action which shall be performed when the annotation is activated. | +| [get_PageIndex](../field/get_pageindex/)() override | Gets index of page which contains this field. | +| [get_Parent](../../aspose.pdf.annotations/widgetannotation/get_parent/)() | Gets annotation parent. | +| [get_PartialName](../field/get_partialname/)() | Gets partial name of the field. | +| [get_ReadOnly](../../aspose.pdf.annotations/widgetannotation/get_readonly/)() | Gets read only status of the field. | +| [get_Rect](../field/get_rect/)() override | Gets the field rectangle. | +| [get_Required](../../aspose.pdf.annotations/widgetannotation/get_required/)() | Gets required status of the field. | +| [get_Scrollable](../textboxfield/get_scrollable/)() | Gets scrollable flag of field. If true field can be scrolled. | +| [get_SpellCheck](../textboxfield/get_spellcheck/)() | Gets spellcheck flag for field. If true field shall be spell checked. | +| [get_States](../../aspose.pdf.annotations/annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_SyncRoot](../field/get_syncroot/)() const | Synchronization object. | +| [get_TabOrder](../field/get_taborder/)() | Gets tab order of the field. | +| [get_TextHorizontalAlignment](../../aspose.pdf.annotations/annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| [get_TextVerticalAlignment](../textboxfield/get_textverticalalignment/)() const | Gets text vertical alignment for annotation. | +| static [get_UpdateAppearanceOnConvert](../../aspose.pdf.annotations/annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../../aspose.pdf.annotations/annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| [get_Value](../textboxfield/get_value/)() override | Gets value of the field. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../../aspose.pdf.annotations/annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetCheckedStateName](../../aspose.pdf.annotations/widgetannotation/getcheckedstatename/)() | Returns name of "checked" state according to existing state names. | +| [GetEnumerator](../field/getenumerator/)() override | Returns enumerator of contained fields. | +| [GetRectangle](../../aspose.pdf.annotations/annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| [idx_get](../field/idx_get/)(System::String) | Gets subfield contained in this field by name of the subfield. | +| [idx_get](../field/idx_get/)(int32_t) | Gets subfield contained in this field by index. | +| [Init](./init/)(System::SharedPtr\) | Initializes the JS Action. | +| [Recalculate](../field/recalculate/)() | Recaculates all calculated fields on the form. | +| virtual [set_ActiveState](../../aspose.pdf.annotations/annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../../aspose.pdf.annotations/annotation/set_alignment/)(TextAlignment) | [Annotation](../../aspose.pdf.annotations/annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_AlternateName](../field/set_alternatename/)(System::String) | Sets alternate name of the field (An alternate field name that shall be used in place of the actual field name wherever the field shall be identified in the user interface). Alternate name is used as field tooltip in Adobe Acrobat. | +| [set_AnnotationIndex](../field/set_annotationindex/)(int32_t) | Sets index of this anotation on the page. | +| [set_Border](../../aspose.pdf.annotations/annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../../aspose.pdf.annotations/border/) | +| [set_Color](../../aspose.pdf.annotations/annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](../../aspose.pdf.annotations/annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_DateFormat](./set_dateformat/)(System::String) | Sets the date format. | +| [set_DateTimeValue](./set_datetimevalue/)(System::DateTime) | Sets Date. | +| [set_DefaultAppearance](../../aspose.pdf.annotations/widgetannotation/set_defaultappearance/)(System::SharedPtr\) | Sets default appearance of the field. | +| [set_Exportable](../../aspose.pdf.annotations/widgetannotation/set_exportable/)(bool) | Sets exportable flag of the field. | +| static [set_FitIntoRectangle](../field/set_fitintorectangle/)(bool) | If true then font size will reduced to fit text to specified rectangle. | +| [set_Flags](../../aspose.pdf.annotations/annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| [set_ForceCombs](../textboxfield/set_forcecombs/)(bool) | Sets flag which indicates is field divided into spaced positions. | +| virtual [set_Height](../../aspose.pdf.annotations/annotation/set_height/)(double) | Sets height of the annotation. | +| [set_Highlighting](../../aspose.pdf.annotations/widgetannotation/set_highlighting/)(HighlightingMode) | [Annotation](../../aspose.pdf.annotations/annotation/) highlighting mode. | +| [set_HorizontalAlignment](../../aspose.pdf.annotations/annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_IsSharedField](../field/set_issharedfield/)(bool) | Property for Generator support. Used when field is added to header or footer. If true, this field will created once and it's appearance will be visible on all pages of the document. If false, separated field will be created for every document page. | +| [set_MappingName](../field/set_mappingname/)(System::String) | Sets mapping name of the field that shall be used when exporting interactive form field data from the document. | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| static [set_MaxFontSize](../field/set_maxfontsize/)(double) | Maximail font size which can be used for field contents. -1 to don't check size. | +| [set_MaxLen](../textboxfield/set_maxlen/)(int32_t) | Sets maximum length of text in the field. | +| static [set_MinFontSize](../field/set_minfontsize/)(double) | Minimal font size which can be used for field contents. -1 to don't check size. | +| [set_Modified](../../aspose.pdf.annotations/annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Multiline](../textboxfield/set_multiline/)(bool) | Sets multiline flag of the field. If Multiline is true field can contain multiple lines of text. | +| [set_Name](../../aspose.pdf.annotations/annotation/set_name/)(System::String) | Sets annotation name on the page. | +| [set_OnActivated](../../aspose.pdf.annotations/widgetannotation/set_onactivated/)(System::SharedPtr\) | An action which shall be performed when the annotation is activated. | +| [set_PartialName](../field/set_partialname/)(System::String) | Sets partial name of the field. | +| [set_ReadOnly](../../aspose.pdf.annotations/widgetannotation/set_readonly/)(bool) | Sets read only status of the field. | +| [set_Rect](../field/set_rect/)(System::SharedPtr\) override | Sets the field rectangle. | +| [set_Required](../../aspose.pdf.annotations/widgetannotation/set_required/)(bool) | Sets required status of the field. | +| [set_Scrollable](../textboxfield/set_scrollable/)(bool) | Sets scrollable flag of field. If true field can be scrolled. | +| [set_SpellCheck](../textboxfield/set_spellcheck/)(bool) | Sets spellcheck flag for field. If true field shall be spell checked. | +| [set_TabOrder](../field/set_taborder/)(int32_t) | Sets tab order of the field. | +| [set_TextHorizontalAlignment](../../aspose.pdf.annotations/annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| [set_TextVerticalAlignment](../textboxfield/set_textverticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets text vertical alignment for annotation. | +| static [set_UpdateAppearanceOnConvert](../../aspose.pdf.annotations/annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../../aspose.pdf.annotations/annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| [set_Value](../textboxfield/set_value/)(System::String) override | Sets value of the field. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../../aspose.pdf.annotations/annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| virtual [SetPosition](../field/setposition/)(System::SharedPtr\) | Set position of the field. | +| [SetTemplateWeakPtr](../field/settemplateweakptr/)(uint32_t) override | Set n'th template argument a weak pointer (rather than shared). Allows switching pointers in containers to weak mode. | +| [TextBoxField](../textboxfield/textboxfield/)(System::SharedPtr\) | Constructor which should be used with Generator. | +| [TextBoxField](../textboxfield/textboxfield/)() | Create instance of [TextBoxField](../textboxfield/). | +| [TextBoxField](../textboxfield/textboxfield/)(System::SharedPtr\, System::SharedPtr\) | Constructor of TextBox field. | +| [TextBoxField](../textboxfield/textboxfield/)(System::SharedPtr\, System::SharedPtr\) | Constructor of TextBox field. | +| [WidgetAnnotation](../../aspose.pdf.annotations/widgetannotation/widgetannotation/)(System::SharedPtr\) | Create annotation (used for Generator) | + +## See Also + +* Class [TextBoxField](../textboxfield/) +* Namespace [Aspose::Pdf::Forms](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.forms/datefield/addimage/_index.md b/english/cpp/aspose.pdf.forms/datefield/addimage/_index.md new file mode 100644 index 0000000000..ae2d1ba441 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/datefield/addimage/_index.md @@ -0,0 +1,48 @@ +--- +title: Aspose::Pdf::Forms::DateField::AddImage method +linktitle: AddImage +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::DateField::AddImage method. Image adding denied for this field in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.forms/datefield/addimage/ +--- +## DateField::AddImage method + + +[Image](../../../aspose.pdf/image/) adding denied for this field. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::DateField::AddImage(System::SharedPtr image) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| image | System::SharedPtr\ | The image. | +## Remarks + + + + + + image + + + The image. + + + + + + System::InvalidOperationException + + + + +## See Also + +* Class [Image](../../../aspose.pdf/image/) +* Class [DateField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/datefield/datefield/_index.md b/english/cpp/aspose.pdf.forms/datefield/datefield/_index.md new file mode 100644 index 0000000000..8975ed7462 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/datefield/datefield/_index.md @@ -0,0 +1,144 @@ +--- +title: Aspose::Pdf::Forms::DateField::DateField constructor +linktitle: DateField +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::DateField::DateField constructor. Initializes a new instance of the DateField in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.forms/datefield/datefield/ +--- +## DateField::DateField() constructor + + +Initializes a new instance of the [DateField](../) + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Forms::DateField::DateField() +``` + +## See Also + +* Class [DateField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) +## DateField::DateField(System::SharedPtr\) constructor + + +Constructor which should be used with Generator. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Forms::DateField::DateField(System::SharedPtr doc) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| doc | System::SharedPtr\ | [Document](../../../aspose.pdf/document/) where field will be created. | +## Remarks + + + + + + doc + + + + Document where field will be created. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [DateField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) +## DateField::DateField(System::SharedPtr\, System::SharedPtr\) constructor + + +Initializes a new instance of the [DateField](../) + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Forms::DateField::DateField(System::SharedPtr page, System::SharedPtr rect) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | [Page](../../../aspose.pdf/page/) needed for create. | +| rect | System::SharedPtr\ | [Rectangle](../../../aspose.pdf/rectangle/) where the text field will be placed on the page. | +## Remarks + + + + + + page + + + + Page needed for create. + + + + + rect + + + + Rectangle where the text field will be placed on the page. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [DateField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) +## DateField::DateField(System::SharedPtr\, System::SharedPtr\) constructor + + +Initializes a new instance of the [DateField](../) + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Forms::DateField::DateField(System::SharedPtr doc, System::SharedPtr rect) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| doc | System::SharedPtr\ | [Document](../../../aspose.pdf/document/) where field will be created. | +| rect | System::SharedPtr\ | [Rectangle](../../../aspose.pdf/rectangle/) of the field. | +## Remarks + + + + + + doc + + + + Document where field will be created. + + + + + rect + + + + Rectangle of the field. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [DateField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/datefield/get_dateformat/_index.md b/english/cpp/aspose.pdf.forms/datefield/get_dateformat/_index.md new file mode 100644 index 0000000000..bbc0ec79ea --- /dev/null +++ b/english/cpp/aspose.pdf.forms/datefield/get_dateformat/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Forms::DateField::get_DateFormat method +linktitle: get_DateFormat +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::DateField::get_DateFormat method. Gets the date format in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.forms/datefield/get_dateformat/ +--- +## DateField::get_DateFormat method + + +Gets the date format. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Forms::DateField::get_DateFormat() const +``` + +## Remarks + + +The date format. Default dd/MM/yyyy +## See Also + +* Class [DateField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/datefield/get_datetimevalue/_index.md b/english/cpp/aspose.pdf.forms/datefield/get_datetimevalue/_index.md new file mode 100644 index 0000000000..8e61affdc4 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/datefield/get_datetimevalue/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::DateField::get_DateTimeValue method +linktitle: get_DateTimeValue +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::DateField::get_DateTimeValue method. Gets Date in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.forms/datefield/get_datetimevalue/ +--- +## DateField::get_DateTimeValue method + + +Gets Date. + +```cpp +ASPOSE_PDF_SHARED_API System::DateTime Aspose::Pdf::Forms::DateField::get_DateTimeValue() +``` + +## See Also + +* Class [DateField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/datefield/init/_index.md b/english/cpp/aspose.pdf.forms/datefield/init/_index.md new file mode 100644 index 0000000000..042da91862 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/datefield/init/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Forms::DateField::Init method +linktitle: Init +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::DateField::Init method. Initializes the JS Action in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.forms/datefield/init/ +--- +## DateField::Init method + + +Initializes the JS Action. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::DateField::Init(System::SharedPtr page) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The page. | +## Remarks + + + + + + page + + + The page. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [DateField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/datefield/set_dateformat/_index.md b/english/cpp/aspose.pdf.forms/datefield/set_dateformat/_index.md new file mode 100644 index 0000000000..ae40b2ebcb --- /dev/null +++ b/english/cpp/aspose.pdf.forms/datefield/set_dateformat/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Forms::DateField::set_DateFormat method +linktitle: set_DateFormat +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::DateField::set_DateFormat method. Sets the date format in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.forms/datefield/set_dateformat/ +--- +## DateField::set_DateFormat method + + +Sets the date format. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::DateField::set_DateFormat(System::String value) +``` + +## Remarks + + +The date format. Default dd/MM/yyyy +## See Also + +* Class [DateField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/datefield/set_datetimevalue/_index.md b/english/cpp/aspose.pdf.forms/datefield/set_datetimevalue/_index.md new file mode 100644 index 0000000000..aa4980bd27 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/datefield/set_datetimevalue/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::DateField::set_DateTimeValue method +linktitle: set_DateTimeValue +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::DateField::set_DateTimeValue method. Sets Date in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.forms/datefield/set_datetimevalue/ +--- +## DateField::set_DateTimeValue method + + +Sets Date. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::DateField::set_DateTimeValue(System::DateTime value) +``` + +## See Also + +* Class [DateField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/docmdpaccesspermissions/_index.md b/english/cpp/aspose.pdf.forms/docmdpaccesspermissions/_index.md new file mode 100644 index 0000000000..62c18ce8b3 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/docmdpaccesspermissions/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Forms::DocMDPAccessPermissions enum +linktitle: DocMDPAccessPermissions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::DocMDPAccessPermissions enum. The access permissions granted for this document. Valid values are: 1 - No changes to the document are permitted; any change to the document invalidates the signature. 2 - Permitted changes are filling in forms, instantiating page templates, and signing; other changes invalidate the signature. 3 - Permitted changes are the same as for 2, as well as annotation creation, deletion, and modification; other changes invalidate the signature in C++.' +type: docs +weight: 3200 +url: /cpp/aspose.pdf.forms/docmdpaccesspermissions/ +--- +## DocMDPAccessPermissions enum + + +The access permissions granted for this document. Valid values are: 1 - No changes to the document are permitted; any change to the document invalidates the signature. 2 - Permitted changes are filling in forms, instantiating page templates, and signing; other changes invalidate the signature. 3 - Permitted changes are the same as for 2, as well as annotation creation, deletion, and modification; other changes invalidate the signature. + +```cpp +enum class DocMDPAccessPermissions +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| NoChanges | 1 | 1 - No changes to the document are permitted; any change to the document invalidates the signature. | +| FillingInForms | 2 | 2 - Permitted changes are filling in forms, instantiating page templates, and signing; other changes invalidate the signature. | +| AnnotationModification | 3 | 3 - Permitted changes are the same as for 2, as well as annotation creation, deletion, and modification; other changes invalidate the signature. | + +## See Also + +* Namespace [Aspose::Pdf::Forms](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.forms/docmdpsignature/_index.md b/english/cpp/aspose.pdf.forms/docmdpsignature/_index.md new file mode 100644 index 0000000000..7d8e55c29b --- /dev/null +++ b/english/cpp/aspose.pdf.forms/docmdpsignature/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Forms::DocMDPSignature class +linktitle: DocMDPSignature +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::DocMDPSignature class. Represents the class of document MDP (modification detection and prevention) signature type in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.forms/docmdpsignature/ +--- +## DocMDPSignature class + + +Represents the class of document MDP (modification detection and prevention) signature type. + +```cpp +class DocMDPSignature : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [DocMDPSignature](./docmdpsignature/)(System::SharedPtr\, DocMDPAccessPermissions) | Initializes a new instance of the [DocMDPSignature](./) class. | +| [get_AccessPermissions](./get_accesspermissions/)() const | Returns the access permissions granted for this document. | +## See Also + +* Namespace [Aspose::Pdf::Forms](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.forms/docmdpsignature/docmdpsignature/_index.md b/english/cpp/aspose.pdf.forms/docmdpsignature/docmdpsignature/_index.md new file mode 100644 index 0000000000..ac2f5ca2e9 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/docmdpsignature/docmdpsignature/_index.md @@ -0,0 +1,51 @@ +--- +title: Aspose::Pdf::Forms::DocMDPSignature::DocMDPSignature constructor +linktitle: DocMDPSignature +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::DocMDPSignature::DocMDPSignature constructor. Initializes a new instance of the DocMDPSignature class in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.forms/docmdpsignature/docmdpsignature/ +--- +## DocMDPSignature::DocMDPSignature constructor + + +Initializes a new instance of the [DocMDPSignature](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Forms::DocMDPSignature::DocMDPSignature(System::SharedPtr signature, DocMDPAccessPermissions accessPermissions) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| signature | System::SharedPtr\ | The signature object that used during signing. | +| accessPermissions | DocMDPAccessPermissions | The access permissions granted for this document. | +## Remarks + + + + + + signature + + + The signature object that used during signing. + + + + + accessPermissions + + + The access permissions granted for this document. + + + +## See Also + +* Class [Signature](../../signature/) +* Enum [DocMDPAccessPermissions](../../docmdpaccesspermissions/) +* Class [DocMDPSignature](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/docmdpsignature/get_accesspermissions/_index.md b/english/cpp/aspose.pdf.forms/docmdpsignature/get_accesspermissions/_index.md new file mode 100644 index 0000000000..9480d8ed22 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/docmdpsignature/get_accesspermissions/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Forms::DocMDPSignature::get_AccessPermissions method +linktitle: get_AccessPermissions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::DocMDPSignature::get_AccessPermissions method. Returns the access permissions granted for this document in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.forms/docmdpsignature/get_accesspermissions/ +--- +## DocMDPSignature::get_AccessPermissions method + + +Returns the access permissions granted for this document. + +```cpp +ASPOSE_PDF_SHARED_API DocMDPAccessPermissions Aspose::Pdf::Forms::DocMDPSignature::get_AccessPermissions() const +``` + +## See Also + +* Enum [DocMDPAccessPermissions](../../docmdpaccesspermissions/) +* Class [DocMDPSignature](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/externalsignature/_index.md b/english/cpp/aspose.pdf.forms/externalsignature/_index.md new file mode 100644 index 0000000000..5e5982f0f9 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/externalsignature/_index.md @@ -0,0 +1,58 @@ +--- +title: Aspose::Pdf::Forms::ExternalSignature class +linktitle: ExternalSignature +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ExternalSignature class. Creates a detached PKCS#7Detached signature using a X509Certificate2. It supports usb smartcards, tokens without exportable private keys in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.forms/externalsignature/ +--- +## ExternalSignature class + + +Creates a detached PKCS#7Detached signature using a X509Certificate2. It supports usb smartcards, tokens without exportable private keys. + +```cpp +class ExternalSignature : public Aspose::Pdf::Forms::Signature +``` + +## Methods + +| Method | Description | +| --- | --- | +| [ExternalSignature](./externalsignature/)(System::SharedPtr\) | Creates a detached PKCS#7Detached signature using a X509Certificate2. It supports usb smartcards, tokens without exportable private keys. | +| [ExternalSignature](./externalsignature/)(System::SharedPtr\, bool) | Creates a detached PKCS#7Detached signature using a X509Certificate2. It supports usb smartcards, tokens without exportable private keys. | +| [ExternalSignature](./externalsignature/)(System::String, bool) | Creates a PKCS#7 (detached) signature using a X509Certificate2 as base64 string. | +| [get_Authority](../signature/get_authority/)() const | The name of the person or authority signing the document. | +| [get_ByteRange](../signature/get_byterange/)() const | An array of pairs of integers (starting byte offset, length in bytes) that shall describe the exact byte range for the digest calculation. | +| [get_Certificate](./get_certificate/)() const | The certificate with the private key. | +| [get_ContactInfo](../signature/get_contactinfo/)() const | Information provided by the signer to enable a recipient to contact the signer to verify the signature, e.g. a phone number. | +| [get_CustomAppearance](../signature/get_customappearance/)() const | Gets/sets the custom appearance. | +| [get_CustomSignHash](../signature/get_customsignhash/)() const | The delegate for custom sign the document hash (Beta). | +| [get_Date](../signature/get_date/)() const | The time of signing. | +| [get_Location](../signature/get_location/)() const | The CPU host name or physical location of the signing. | +| [get_OcspSettings](../signature/get_ocspsettings/)() const | Gets/sets ocsp settings. | +| [get_Reason](../signature/get_reason/)() const | The reason for the signing, such as (I agree, Pip B.). | +| [get_ShowProperties](../signature/get_showproperties/)() const | Force to show/hide signature properties. | +| [get_TimestampSettings](../signature/get_timestampsettings/)() const | Gets/sets timestamp settings. | +| [get_UseLtv](../signature/get_useltv/)() const | Gets/sets ltv validation flag. | +| [set_Authority](../signature/set_authority/)(System::String) | The name of the person or authority signing the document. | +| [set_ContactInfo](../signature/set_contactinfo/)(System::String) | Information provided by the signer to enable a recipient to contact the signer to verify the signature, e.g. a phone number. | +| [set_CustomAppearance](../signature/set_customappearance/)(System::SharedPtr\) | Gets/sets the custom appearance. | +| [set_CustomSignHash](../signature/set_customsignhash/)(SignHash) | The delegate for custom sign the document hash (Beta). | +| [set_Date](../signature/set_date/)(System::DateTime) | The time of signing. | +| [set_Location](../signature/set_location/)(System::String) | The CPU host name or physical location of the signing. | +| [set_OcspSettings](../signature/set_ocspsettings/)(System::SharedPtr\) | Gets/sets ocsp settings. | +| [set_Reason](../signature/set_reason/)(System::String) | The reason for the signing, such as (I agree, Pip B.). | +| [set_ShowProperties](../signature/set_showproperties/)(bool) | Force to show/hide signature properties. | +| [set_TimestampSettings](../signature/set_timestampsettings/)(System::SharedPtr\) | Gets/sets timestamp settings. | +| [set_UseLtv](../signature/set_useltv/)(bool) | Gets/sets ltv validation flag. | +| [Signature](../signature/signature/)() | Inititalizes new instance of the [Signature](../signature/) class. | +| [Signature](../signature/signature/)(System::String, System::String) | Inititalizes new instance of the [Signature](../signature/) class. | +| [Signature](../signature/signature/)(System::SharedPtr\, System::String) | Inititalizes new instance of the [Signature](../signature/) class. | +| [Verify](../signature/verify/)() | Verify the document regarding this signature and return true if document is valid or otherwise false. | +## See Also + +* Class [Signature](../signature/) +* Namespace [Aspose::Pdf::Forms](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.forms/externalsignature/externalsignature/_index.md b/english/cpp/aspose.pdf.forms/externalsignature/externalsignature/_index.md new file mode 100644 index 0000000000..a4582764f5 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/externalsignature/externalsignature/_index.md @@ -0,0 +1,120 @@ +--- +title: Aspose::Pdf::Forms::ExternalSignature::ExternalSignature constructor +linktitle: ExternalSignature +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ExternalSignature::ExternalSignature constructor. Creates a detached PKCS#7Detached signature using a X509Certificate2. It supports usb smartcards, tokens without exportable private keys in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.forms/externalsignature/externalsignature/ +--- +## ExternalSignature::ExternalSignature(System::SharedPtr\) constructor + + +Creates a detached PKCS#7Detached signature using a X509Certificate2. It supports usb smartcards, tokens without exportable private keys. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Forms::ExternalSignature::ExternalSignature(System::SharedPtr certificate) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| certificate | System::SharedPtr\ | The certificate with the private key. | +## Remarks + + + + + + certificate + + + The certificate with the private key. + + + +## See Also + +* Class [ExternalSignature](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) +## ExternalSignature::ExternalSignature(System::SharedPtr\, bool) constructor + + +Creates a detached PKCS#7Detached signature using a X509Certificate2. It supports usb smartcards, tokens without exportable private keys. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Forms::ExternalSignature::ExternalSignature(System::SharedPtr certificate, bool detached) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| certificate | System::SharedPtr\ | The certificate with the private key. | +| detached | bool | True if the signature should be detached, otherwise false. | +## Remarks + + + + + + certificate + + + The certificate with the private key. + + + + + detached + + + True if the signature should be detached, otherwise false. + + + +## See Also + +* Class [ExternalSignature](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) +## ExternalSignature::ExternalSignature(System::String, bool) constructor + + +Creates a PKCS#7 (detached) signature using a X509Certificate2 as base64 string. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Forms::ExternalSignature::ExternalSignature(System::String base64, bool detached) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| base64 | System::String | X509Certificate2 as base64 string. | +| detached | bool | True if the signature should be detached, otherwise false. | +## Remarks + + + + + + base64 + + + X509Certificate2 as base64 string. + + + + + detached + + + True if the signature should be detached, otherwise false. + + + +## See Also + +* Class [ExternalSignature](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/externalsignature/get_certificate/_index.md b/english/cpp/aspose.pdf.forms/externalsignature/get_certificate/_index.md new file mode 100644 index 0000000000..bb98afbc9d --- /dev/null +++ b/english/cpp/aspose.pdf.forms/externalsignature/get_certificate/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::ExternalSignature::get_Certificate method +linktitle: get_Certificate +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ExternalSignature::get_Certificate method. The certificate with the private key in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.forms/externalsignature/get_certificate/ +--- +## ExternalSignature::get_Certificate method + + +The certificate with the private key. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Forms::ExternalSignature::get_Certificate() const +``` + +## See Also + +* Class [ExternalSignature](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/field/_index.md b/english/cpp/aspose.pdf.forms/field/_index.md new file mode 100644 index 0000000000..d0b7091e51 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/field/_index.md @@ -0,0 +1,137 @@ +--- +title: Aspose::Pdf::Forms::Field class +linktitle: Field +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Field class. Base class for acro form fields in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.forms/field/ +--- +## Field class + + +Base class for acro form fields. + +```cpp +class Field : public Aspose::Pdf::Annotations::WidgetAnnotation, + public System::Collections::Generic::ICollection> +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Accept](../../aspose.pdf.annotations/widgetannotation/accept/)(System::SharedPtr\) override | Accepts visitor. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| virtual [ChangeAfterResize](../../aspose.pdf.annotations/annotation/changeafterresize/)(System::SharedPtr\) | Update parameters and appearance, according to the matrix transform. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [CopyTo](./copyto/)(System::ArrayPtr\\>, int32_t) | Copies subfields of this field into array starting from specified index. | +| [CopyToWidgetArray](./copytowidgetarray/)(System::ArrayPtr\\>, int32_t) | Copies subfields of this field into array starting from specified index. | +| [ExecuteFieldJavaScript](./executefieldjavascript/)(System::SharedPtr\) | Executes a specified JavaScript action for the field. | +| [Field](./field/)(System::SharedPtr\) | Creates field for use in Generator. | +| [Flatten](../../aspose.pdf.annotations/annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](../../aspose.pdf.annotations/widgetannotation/get_actions/)() const | Gets the annotation actions. | +| [get_Actions](../../aspose.pdf.annotations/annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../../aspose.pdf.annotations/annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../../aspose.pdf.annotations/annotation/get_alignment/)() | [Annotation](../../aspose.pdf.annotations/annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [get_AlternateName](./get_alternatename/)() | Gets alternate name of the field (An alternate field name that shall be used in place of the actual field name wherever the field shall be identified in the user interface). Alternate name is used as field tooltip in Adobe Acrobat. | +| [get_AnnotationIndex](./get_annotationindex/)() | Gets index of this anotation on the page. | +| [get_AnnotationType](../../aspose.pdf.annotations/widgetannotation/get_annotationtype/)() override | Gets type of annotation. | +| [get_Appearance](../../aspose.pdf.annotations/annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../../aspose.pdf.annotations/annotation/get_border/)() const | Gets annotation border characteristics. [Border](../../aspose.pdf.annotations/border/) | +| [get_Characteristics](../../aspose.pdf.annotations/annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../../aspose.pdf.annotations/annotation/get_color/)() | Gets annotation color. | +| [get_Contents](../../aspose.pdf.annotations/annotation/get_contents/)() | Gets annotation text. | +| [get_Count](./get_count/)() const override | Gets number of subfields in this field. (For example number of items in radio button field). | +| [get_DefaultAppearance](../../aspose.pdf.annotations/widgetannotation/get_defaultappearance/)() | Gets default appearance of the field. | +| [get_Exportable](../../aspose.pdf.annotations/widgetannotation/get_exportable/)() | Gets exportable flag of the field. | +| static [get_FitIntoRectangle](./get_fitintorectangle/)() | If true then font size will reduced to fit text to specified rectangle. | +| [get_Flags](../../aspose.pdf.annotations/annotation/get_flags/)() | Flags of the annotation. | +| [get_FullName](../../aspose.pdf.annotations/annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../../aspose.pdf.annotations/annotation/get_height/)() | Gets height of the annotation. | +| [get_Highlighting](../../aspose.pdf.annotations/widgetannotation/get_highlighting/)() | [Annotation](../../aspose.pdf.annotations/annotation/) highlighting mode. | +| [get_HorizontalAlignment](../../aspose.pdf.annotations/annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsGroup](./get_isgroup/)() const | Gets boolean value which indicates is this field non-terminal field i.e. group of fields. | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_IsSharedField](./get_issharedfield/)() const | Property for Generator support. Used when field is added to header or footer. If true, this field will created once and it's appearance will be visible on all pages of the document. If false, separated field will be created for every document page. | +| [get_IsSynchronized](./get_issynchronized/)() | Returns true if dictionary is synchronized. | +| [get_MappingName](./get_mappingname/)() | Gets mapping name of the field that shall be used when exporting interactive form field data from the document. | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| static [get_MaxFontSize](./get_maxfontsize/)() | Maximail font size which can be used for field contents. -1 to don't check size. | +| static [get_MinFontSize](./get_minfontsize/)() | Minimal font size which can be used for field contents. -1 to don't check size. | +| [get_Modified](../../aspose.pdf.annotations/annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Name](../../aspose.pdf.annotations/annotation/get_name/)() | Gets annotation name on the page. | +| [get_OnActivated](../../aspose.pdf.annotations/widgetannotation/get_onactivated/)() | An action which shall be performed when the annotation is activated. | +| [get_PageIndex](./get_pageindex/)() override | Gets index of page which contains this field. | +| [get_Parent](../../aspose.pdf.annotations/widgetannotation/get_parent/)() | Gets annotation parent. | +| [get_PartialName](./get_partialname/)() | Gets partial name of the field. | +| [get_ReadOnly](../../aspose.pdf.annotations/widgetannotation/get_readonly/)() | Gets read only status of the field. | +| [get_Rect](./get_rect/)() override | Gets the field rectangle. | +| [get_Required](../../aspose.pdf.annotations/widgetannotation/get_required/)() | Gets required status of the field. | +| [get_States](../../aspose.pdf.annotations/annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_SyncRoot](./get_syncroot/)() const | Synchronization object. | +| [get_TabOrder](./get_taborder/)() | Gets tab order of the field. | +| [get_TextHorizontalAlignment](../../aspose.pdf.annotations/annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| static [get_UpdateAppearanceOnConvert](../../aspose.pdf.annotations/annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../../aspose.pdf.annotations/annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [get_Value](./get_value/)() | Gets value of the field. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../../aspose.pdf.annotations/annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetCheckedStateName](../../aspose.pdf.annotations/widgetannotation/getcheckedstatename/)() | Returns name of "checked" state according to existing state names. | +| [GetEnumerator](./getenumerator/)() override | Returns enumerator of contained fields. | +| [GetRectangle](../../aspose.pdf.annotations/annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| [idx_get](./idx_get/)(System::String) | Gets subfield contained in this field by name of the subfield. | +| [idx_get](./idx_get/)(int32_t) | Gets subfield contained in this field by index. | +| [Recalculate](./recalculate/)() | Recaculates all calculated fields on the form. | +| virtual [set_ActiveState](../../aspose.pdf.annotations/annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../../aspose.pdf.annotations/annotation/set_alignment/)(TextAlignment) | [Annotation](../../aspose.pdf.annotations/annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_AlternateName](./set_alternatename/)(System::String) | Sets alternate name of the field (An alternate field name that shall be used in place of the actual field name wherever the field shall be identified in the user interface). Alternate name is used as field tooltip in Adobe Acrobat. | +| [set_AnnotationIndex](./set_annotationindex/)(int32_t) | Sets index of this anotation on the page. | +| [set_Border](../../aspose.pdf.annotations/annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../../aspose.pdf.annotations/border/) | +| [set_Color](../../aspose.pdf.annotations/annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](../../aspose.pdf.annotations/annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_DefaultAppearance](../../aspose.pdf.annotations/widgetannotation/set_defaultappearance/)(System::SharedPtr\) | Sets default appearance of the field. | +| [set_Exportable](../../aspose.pdf.annotations/widgetannotation/set_exportable/)(bool) | Sets exportable flag of the field. | +| static [set_FitIntoRectangle](./set_fitintorectangle/)(bool) | If true then font size will reduced to fit text to specified rectangle. | +| [set_Flags](../../aspose.pdf.annotations/annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| virtual [set_Height](../../aspose.pdf.annotations/annotation/set_height/)(double) | Sets height of the annotation. | +| [set_Highlighting](../../aspose.pdf.annotations/widgetannotation/set_highlighting/)(HighlightingMode) | [Annotation](../../aspose.pdf.annotations/annotation/) highlighting mode. | +| [set_HorizontalAlignment](../../aspose.pdf.annotations/annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_IsSharedField](./set_issharedfield/)(bool) | Property for Generator support. Used when field is added to header or footer. If true, this field will created once and it's appearance will be visible on all pages of the document. If false, separated field will be created for every document page. | +| [set_MappingName](./set_mappingname/)(System::String) | Sets mapping name of the field that shall be used when exporting interactive form field data from the document. | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| static [set_MaxFontSize](./set_maxfontsize/)(double) | Maximail font size which can be used for field contents. -1 to don't check size. | +| static [set_MinFontSize](./set_minfontsize/)(double) | Minimal font size which can be used for field contents. -1 to don't check size. | +| [set_Modified](../../aspose.pdf.annotations/annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Name](../../aspose.pdf.annotations/annotation/set_name/)(System::String) | Sets annotation name on the page. | +| [set_OnActivated](../../aspose.pdf.annotations/widgetannotation/set_onactivated/)(System::SharedPtr\) | An action which shall be performed when the annotation is activated. | +| [set_PartialName](./set_partialname/)(System::String) | Sets partial name of the field. | +| [set_ReadOnly](../../aspose.pdf.annotations/widgetannotation/set_readonly/)(bool) | Sets read only status of the field. | +| [set_Rect](./set_rect/)(System::SharedPtr\) override | Sets the field rectangle. | +| [set_Required](../../aspose.pdf.annotations/widgetannotation/set_required/)(bool) | Sets required status of the field. | +| [set_TabOrder](./set_taborder/)(int32_t) | Sets tab order of the field. | +| [set_TextHorizontalAlignment](../../aspose.pdf.annotations/annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| static [set_UpdateAppearanceOnConvert](../../aspose.pdf.annotations/annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../../aspose.pdf.annotations/annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| virtual [set_Value](./set_value/)(System::String) | Sets value of the field. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../../aspose.pdf.annotations/annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| virtual [SetPosition](./setposition/)(System::SharedPtr\) | Set position of the field. | +| [SetTemplateWeakPtr](./settemplateweakptr/)(uint32_t) override | Set n'th template argument a weak pointer (rather than shared). Allows switching pointers in containers to weak mode. | +| [WidgetAnnotation](../../aspose.pdf.annotations/widgetannotation/widgetannotation/)(System::SharedPtr\) | Create annotation (used for Generator) | +## See Also + +* Class [WidgetAnnotation](../../aspose.pdf.annotations/widgetannotation/) +* Namespace [Aspose::Pdf::Forms](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.forms/field/copyto/_index.md b/english/cpp/aspose.pdf.forms/field/copyto/_index.md new file mode 100644 index 0000000000..528dd0dbb4 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/field/copyto/_index.md @@ -0,0 +1,55 @@ +--- +title: Aspose::Pdf::Forms::Field::CopyTo method +linktitle: CopyTo +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Field::CopyTo method. Copies subfields of this field into array starting from specified index in C++.' +type: docs +weight: 2300 +url: /cpp/aspose.pdf.forms/field/copyto/ +--- +## Field::CopyTo method + + +Copies subfields of this field into array starting from specified index. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::Field::CopyTo(System::ArrayPtr> array, int32_t index) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| array | System::ArrayPtr\\> | Array where field must be copied. | +| index | int32_t | Starting index where fields will be copied. | +## Remarks + + + + Deprecated + + Use CopyTo(WidgetAnnotation[], index) instead. + + + + + array + + + Array where field must be copied. + + + + + index + + + Starting index where fields will be copied. + + + +## See Also + +* Class [Field](../) +* Class [Field](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/field/copytowidgetarray/_index.md b/english/cpp/aspose.pdf.forms/field/copytowidgetarray/_index.md new file mode 100644 index 0000000000..cf547bb282 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/field/copytowidgetarray/_index.md @@ -0,0 +1,50 @@ +--- +title: Aspose::Pdf::Forms::Field::CopyToWidgetArray method +linktitle: CopyToWidgetArray +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Field::CopyToWidgetArray method. Copies subfields of this field into array starting from specified index in C++.' +type: docs +weight: 2400 +url: /cpp/aspose.pdf.forms/field/copytowidgetarray/ +--- +## Field::CopyToWidgetArray method + + +Copies subfields of this field into array starting from specified index. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::Field::CopyToWidgetArray(System::ArrayPtr> array, int32_t index) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| array | System::ArrayPtr\\> | Array where field must be copied. | +| index | int32_t | Starting index where fields will be copied. | +## Remarks + + + + + + array + + + Array where field must be copied. + + + + + index + + + Starting index where fields will be copied. + + + +## See Also + +* Class [WidgetAnnotation](../../../aspose.pdf.annotations/widgetannotation/) +* Class [Field](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/field/executefieldjavascript/_index.md b/english/cpp/aspose.pdf.forms/field/executefieldjavascript/_index.md new file mode 100644 index 0000000000..2e6bada7b7 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/field/executefieldjavascript/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Forms::Field::ExecuteFieldJavaScript method +linktitle: ExecuteFieldJavaScript +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Field::ExecuteFieldJavaScript method. Executes a specified JavaScript action for the field in C++.' +type: docs +weight: 2900 +url: /cpp/aspose.pdf.forms/field/executefieldjavascript/ +--- +## Field::ExecuteFieldJavaScript method + + +Executes a specified JavaScript action for the field. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::Field::ExecuteFieldJavaScript(System::SharedPtr javaScriptAction) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| javaScriptAction | System::SharedPtr\ | The JavaScript action to execute. | +## Remarks + + + + + + javaScriptAction + + + The JavaScript action to execute. + + + +## See Also + +* Class [JavascriptAction](../../../aspose.pdf.annotations/javascriptaction/) +* Class [Field](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/field/field/_index.md b/english/cpp/aspose.pdf.forms/field/field/_index.md new file mode 100644 index 0000000000..9625c3896d --- /dev/null +++ b/english/cpp/aspose.pdf.forms/field/field/_index.md @@ -0,0 +1,42 @@ +--- +title: Aspose::Pdf::Forms::Field::Field constructor +linktitle: Field +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Field::Field constructor. Creates field for use in Generator in C++.' +type: docs +weight: 2600 +url: /cpp/aspose.pdf.forms/field/field/ +--- +## Field::Field constructor + + +Creates field for use in Generator. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Forms::Field::Field(System::SharedPtr doc) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| doc | System::SharedPtr\ | [Document](../../../aspose.pdf/document/) where field will be created. | +## Remarks + + + + + + doc + + + + Document where field will be created. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [Field](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/field/get_alternatename/_index.md b/english/cpp/aspose.pdf.forms/field/get_alternatename/_index.md new file mode 100644 index 0000000000..5e58b53b7f --- /dev/null +++ b/english/cpp/aspose.pdf.forms/field/get_alternatename/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Field::get_AlternateName method +linktitle: get_AlternateName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Field::get_AlternateName method. Gets alternate name of the field (An alternate field name that shall be used in place of the actual field name wherever the field shall be identified in the user interface). Alternate name is used as field tooltip in Adobe Acrobat in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.forms/field/get_alternatename/ +--- +## Field::get_AlternateName method + + +Gets alternate name of the field (An alternate field name that shall be used in place of the actual field name wherever the field shall be identified in the user interface). Alternate name is used as field tooltip in Adobe Acrobat. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Forms::Field::get_AlternateName() +``` + +## See Also + +* Class [Field](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/field/get_annotationindex/_index.md b/english/cpp/aspose.pdf.forms/field/get_annotationindex/_index.md new file mode 100644 index 0000000000..41f393ec36 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/field/get_annotationindex/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Field::get_AnnotationIndex method +linktitle: get_AnnotationIndex +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Field::get_AnnotationIndex method. Gets index of this anotation on the page in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.forms/field/get_annotationindex/ +--- +## Field::get_AnnotationIndex method + + +Gets index of this anotation on the page. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Forms::Field::get_AnnotationIndex() +``` + +## See Also + +* Class [Field](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/field/get_count/_index.md b/english/cpp/aspose.pdf.forms/field/get_count/_index.md new file mode 100644 index 0000000000..0683f65604 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/field/get_count/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Field::get_Count method +linktitle: get_Count +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Field::get_Count method. Gets number of subfields in this field. (For example number of items in radio button field) in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.forms/field/get_count/ +--- +## Field::get_Count method + + +Gets number of subfields in this field. (For example number of items in radio button field). + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Forms::Field::get_Count() const override +``` + +## See Also + +* Class [Field](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/field/get_fitintorectangle/_index.md b/english/cpp/aspose.pdf.forms/field/get_fitintorectangle/_index.md new file mode 100644 index 0000000000..5bc890e5d9 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/field/get_fitintorectangle/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Field::get_FitIntoRectangle method +linktitle: get_FitIntoRectangle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Field::get_FitIntoRectangle method. If true then font size will reduced to fit text to specified rectangle in C++.' +type: docs +weight: 3100 +url: /cpp/aspose.pdf.forms/field/get_fitintorectangle/ +--- +## Field::get_FitIntoRectangle method + + +If true then font size will reduced to fit text to specified rectangle. + +```cpp +static ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Forms::Field::get_FitIntoRectangle() +``` + +## See Also + +* Class [Field](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/field/get_isgroup/_index.md b/english/cpp/aspose.pdf.forms/field/get_isgroup/_index.md new file mode 100644 index 0000000000..73933ba45b --- /dev/null +++ b/english/cpp/aspose.pdf.forms/field/get_isgroup/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Field::get_IsGroup method +linktitle: get_IsGroup +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Field::get_IsGroup method. Gets boolean value which indicates is this field non-terminal field i.e. group of fields in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.forms/field/get_isgroup/ +--- +## Field::get_IsGroup method + + +Gets boolean value which indicates is this field non-terminal field i.e. group of fields. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Forms::Field::get_IsGroup() const +``` + +## See Also + +* Class [Field](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/field/get_issharedfield/_index.md b/english/cpp/aspose.pdf.forms/field/get_issharedfield/_index.md new file mode 100644 index 0000000000..ba7ca9c74f --- /dev/null +++ b/english/cpp/aspose.pdf.forms/field/get_issharedfield/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Field::get_IsSharedField method +linktitle: get_IsSharedField +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Field::get_IsSharedField method. Property for Generator support. Used when field is added to header or footer. If true, this field will created once and it''s appearance will be visible on all pages of the document. If false, separated field will be created for every document page in C++.' +type: docs +weight: 1800 +url: /cpp/aspose.pdf.forms/field/get_issharedfield/ +--- +## Field::get_IsSharedField method + + +Property for Generator support. Used when field is added to header or footer. If true, this field will created once and it's appearance will be visible on all pages of the document. If false, separated field will be created for every document page. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Forms::Field::get_IsSharedField() const +``` + +## See Also + +* Class [Field](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/field/get_issynchronized/_index.md b/english/cpp/aspose.pdf.forms/field/get_issynchronized/_index.md new file mode 100644 index 0000000000..3fd0f06056 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/field/get_issynchronized/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Field::get_IsSynchronized method +linktitle: get_IsSynchronized +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Field::get_IsSynchronized method. Returns true if dictionary is synchronized in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.forms/field/get_issynchronized/ +--- +## Field::get_IsSynchronized method + + +Returns true if dictionary is synchronized. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Forms::Field::get_IsSynchronized() +``` + +## See Also + +* Class [Field](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/field/get_mappingname/_index.md b/english/cpp/aspose.pdf.forms/field/get_mappingname/_index.md new file mode 100644 index 0000000000..313785ed1d --- /dev/null +++ b/english/cpp/aspose.pdf.forms/field/get_mappingname/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Field::get_MappingName method +linktitle: get_MappingName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Field::get_MappingName method. Gets mapping name of the field that shall be used when exporting interactive form field data from the document in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.forms/field/get_mappingname/ +--- +## Field::get_MappingName method + + +Gets mapping name of the field that shall be used when exporting interactive form field data from the document. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Forms::Field::get_MappingName() +``` + +## See Also + +* Class [Field](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/field/get_maxfontsize/_index.md b/english/cpp/aspose.pdf.forms/field/get_maxfontsize/_index.md new file mode 100644 index 0000000000..3e1a7d5323 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/field/get_maxfontsize/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Field::get_MaxFontSize method +linktitle: get_MaxFontSize +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Field::get_MaxFontSize method. Maximail font size which can be used for field contents. -1 to don''t check size in C++.' +type: docs +weight: 3300 +url: /cpp/aspose.pdf.forms/field/get_maxfontsize/ +--- +## Field::get_MaxFontSize method + + +Maximail font size which can be used for field contents. -1 to don't check size. + +```cpp +static ASPOSE_PDF_SHARED_API double Aspose::Pdf::Forms::Field::get_MaxFontSize() +``` + +## See Also + +* Class [Field](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/field/get_minfontsize/_index.md b/english/cpp/aspose.pdf.forms/field/get_minfontsize/_index.md new file mode 100644 index 0000000000..e888c07217 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/field/get_minfontsize/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Field::get_MinFontSize method +linktitle: get_MinFontSize +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Field::get_MinFontSize method. Minimal font size which can be used for field contents. -1 to don''t check size in C++.' +type: docs +weight: 3500 +url: /cpp/aspose.pdf.forms/field/get_minfontsize/ +--- +## Field::get_MinFontSize method + + +Minimal font size which can be used for field contents. -1 to don't check size. + +```cpp +static ASPOSE_PDF_SHARED_API double Aspose::Pdf::Forms::Field::get_MinFontSize() +``` + +## See Also + +* Class [Field](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/field/get_pageindex/_index.md b/english/cpp/aspose.pdf.forms/field/get_pageindex/_index.md new file mode 100644 index 0000000000..1389d1b3a4 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/field/get_pageindex/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Field::get_PageIndex method +linktitle: get_PageIndex +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Field::get_PageIndex method. Gets index of page which contains this field in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.forms/field/get_pageindex/ +--- +## Field::get_PageIndex method + + +Gets index of page which contains this field. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Forms::Field::get_PageIndex() override +``` + +## See Also + +* Class [Field](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/field/get_partialname/_index.md b/english/cpp/aspose.pdf.forms/field/get_partialname/_index.md new file mode 100644 index 0000000000..11fad8d289 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/field/get_partialname/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Field::get_PartialName method +linktitle: get_PartialName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Field::get_PartialName method. Gets partial name of the field in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.forms/field/get_partialname/ +--- +## Field::get_PartialName method + + +Gets partial name of the field. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Forms::Field::get_PartialName() +``` + +## See Also + +* Class [Field](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/field/get_rect/_index.md b/english/cpp/aspose.pdf.forms/field/get_rect/_index.md new file mode 100644 index 0000000000..5e3b5ac132 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/field/get_rect/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Forms::Field::get_Rect method +linktitle: get_Rect +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Field::get_Rect method. Gets the field rectangle in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf.forms/field/get_rect/ +--- +## Field::get_Rect method + + +Gets the field rectangle. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Forms::Field::get_Rect() override +``` + +## See Also + +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [Field](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/field/get_syncroot/_index.md b/english/cpp/aspose.pdf.forms/field/get_syncroot/_index.md new file mode 100644 index 0000000000..6d7dae460f --- /dev/null +++ b/english/cpp/aspose.pdf.forms/field/get_syncroot/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Field::get_SyncRoot method +linktitle: get_SyncRoot +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Field::get_SyncRoot method. Synchronization object in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.forms/field/get_syncroot/ +--- +## Field::get_SyncRoot method + + +Synchronization object. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Forms::Field::get_SyncRoot() const +``` + +## See Also + +* Class [Field](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/field/get_taborder/_index.md b/english/cpp/aspose.pdf.forms/field/get_taborder/_index.md new file mode 100644 index 0000000000..b91b105e36 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/field/get_taborder/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Field::get_TabOrder method +linktitle: get_TabOrder +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Field::get_TabOrder method. Gets tab order of the field in C++.' +type: docs +weight: 2000 +url: /cpp/aspose.pdf.forms/field/get_taborder/ +--- +## Field::get_TabOrder method + + +Gets tab order of the field. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Forms::Field::get_TabOrder() +``` + +## See Also + +* Class [Field](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/field/get_value/_index.md b/english/cpp/aspose.pdf.forms/field/get_value/_index.md new file mode 100644 index 0000000000..9956348275 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/field/get_value/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Field::get_Value method +linktitle: get_Value +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Field::get_Value method. Gets value of the field in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.forms/field/get_value/ +--- +## Field::get_Value method + + +Gets value of the field. + +```cpp +virtual ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Forms::Field::get_Value() +``` + +## See Also + +* Class [Field](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/field/getenumerator/_index.md b/english/cpp/aspose.pdf.forms/field/getenumerator/_index.md new file mode 100644 index 0000000000..f3192dc940 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/field/getenumerator/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Forms::Field::GetEnumerator method +linktitle: GetEnumerator +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Field::GetEnumerator method. Returns enumerator of contained fields in C++.' +type: docs +weight: 2500 +url: /cpp/aspose.pdf.forms/field/getenumerator/ +--- +## Field::GetEnumerator method + + +Returns enumerator of contained fields. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr>> Aspose::Pdf::Forms::Field::GetEnumerator() override +``` + + +### ReturnValue + +Enumerator. + +## See Also + +* Class [WidgetAnnotation](../../../aspose.pdf.annotations/widgetannotation/) +* Class [Field](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/field/idx_get/_index.md b/english/cpp/aspose.pdf.forms/field/idx_get/_index.md new file mode 100644 index 0000000000..9dda05e130 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/field/idx_get/_index.md @@ -0,0 +1,81 @@ +--- +title: Aspose::Pdf::Forms::Field::idx_get method +linktitle: idx_get +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Field::idx_get method. Gets subfield contained in this field by name of the subfield in C++.' +type: docs +weight: 2700 +url: /cpp/aspose.pdf.forms/field/idx_get/ +--- +## Field::idx_get(System::String) method + + +Gets subfield contained in this field by name of the subfield. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Forms::Field::idx_get(System::String name) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| name | System::String | Contained subfield name. | + +### ReturnValue + +[Field](../) instance. +## Remarks + + + + + + name + + + Contained subfield name. + + + +## See Also + +* Class [WidgetAnnotation](../../../aspose.pdf.annotations/widgetannotation/) +* Class [Field](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) +## Field::idx_get(int32_t) method + + +Gets subfield contained in this field by index. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Forms::Field::idx_get(int32_t index) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| index | int32_t | Index of the reuqested subfield. | + +### ReturnValue + +[Field](../) instance. +## Remarks + + + + + + index + + + Index of the reuqested subfield. + + + +## See Also + +* Class [WidgetAnnotation](../../../aspose.pdf.annotations/widgetannotation/) +* Class [Field](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/field/recalculate/_index.md b/english/cpp/aspose.pdf.forms/field/recalculate/_index.md new file mode 100644 index 0000000000..0e6e70baff --- /dev/null +++ b/english/cpp/aspose.pdf.forms/field/recalculate/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Forms::Field::Recalculate method +linktitle: Recalculate +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Field::Recalculate method. Recaculates all calculated fields on the form in C++.' +type: docs +weight: 2200 +url: /cpp/aspose.pdf.forms/field/recalculate/ +--- +## Field::Recalculate method + + +Recaculates all calculated fields on the form. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Forms::Field::Recalculate() +``` + + +### ReturnValue + +true if field value was changed during recalculation. + +## See Also + +* Class [Field](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/field/set_alternatename/_index.md b/english/cpp/aspose.pdf.forms/field/set_alternatename/_index.md new file mode 100644 index 0000000000..a1359c8f7d --- /dev/null +++ b/english/cpp/aspose.pdf.forms/field/set_alternatename/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Field::set_AlternateName method +linktitle: set_AlternateName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Field::set_AlternateName method. Sets alternate name of the field (An alternate field name that shall be used in place of the actual field name wherever the field shall be identified in the user interface). Alternate name is used as field tooltip in Adobe Acrobat in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.forms/field/set_alternatename/ +--- +## Field::set_AlternateName method + + +Sets alternate name of the field (An alternate field name that shall be used in place of the actual field name wherever the field shall be identified in the user interface). Alternate name is used as field tooltip in Adobe Acrobat. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::Field::set_AlternateName(System::String value) +``` + +## See Also + +* Class [Field](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/field/set_annotationindex/_index.md b/english/cpp/aspose.pdf.forms/field/set_annotationindex/_index.md new file mode 100644 index 0000000000..5ef7fdc3c0 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/field/set_annotationindex/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Field::set_AnnotationIndex method +linktitle: set_AnnotationIndex +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Field::set_AnnotationIndex method. Sets index of this anotation on the page in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.forms/field/set_annotationindex/ +--- +## Field::set_AnnotationIndex method + + +Sets index of this anotation on the page. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::Field::set_AnnotationIndex(int32_t value) +``` + +## See Also + +* Class [Field](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/field/set_fitintorectangle/_index.md b/english/cpp/aspose.pdf.forms/field/set_fitintorectangle/_index.md new file mode 100644 index 0000000000..269a482528 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/field/set_fitintorectangle/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Field::set_FitIntoRectangle method +linktitle: set_FitIntoRectangle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Field::set_FitIntoRectangle method. If true then font size will reduced to fit text to specified rectangle in C++.' +type: docs +weight: 3200 +url: /cpp/aspose.pdf.forms/field/set_fitintorectangle/ +--- +## Field::set_FitIntoRectangle method + + +If true then font size will reduced to fit text to specified rectangle. + +```cpp +static ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::Field::set_FitIntoRectangle(bool value) +``` + +## See Also + +* Class [Field](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/field/set_issharedfield/_index.md b/english/cpp/aspose.pdf.forms/field/set_issharedfield/_index.md new file mode 100644 index 0000000000..ab5bc24202 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/field/set_issharedfield/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Field::set_IsSharedField method +linktitle: set_IsSharedField +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Field::set_IsSharedField method. Property for Generator support. Used when field is added to header or footer. If true, this field will created once and it''s appearance will be visible on all pages of the document. If false, separated field will be created for every document page in C++.' +type: docs +weight: 1900 +url: /cpp/aspose.pdf.forms/field/set_issharedfield/ +--- +## Field::set_IsSharedField method + + +Property for Generator support. Used when field is added to header or footer. If true, this field will created once and it's appearance will be visible on all pages of the document. If false, separated field will be created for every document page. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::Field::set_IsSharedField(bool value) +``` + +## See Also + +* Class [Field](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/field/set_mappingname/_index.md b/english/cpp/aspose.pdf.forms/field/set_mappingname/_index.md new file mode 100644 index 0000000000..fc9287026f --- /dev/null +++ b/english/cpp/aspose.pdf.forms/field/set_mappingname/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Field::set_MappingName method +linktitle: set_MappingName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Field::set_MappingName method. Sets mapping name of the field that shall be used when exporting interactive form field data from the document in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.forms/field/set_mappingname/ +--- +## Field::set_MappingName method + + +Sets mapping name of the field that shall be used when exporting interactive form field data from the document. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::Field::set_MappingName(System::String value) +``` + +## See Also + +* Class [Field](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/field/set_maxfontsize/_index.md b/english/cpp/aspose.pdf.forms/field/set_maxfontsize/_index.md new file mode 100644 index 0000000000..e40881a797 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/field/set_maxfontsize/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Field::set_MaxFontSize method +linktitle: set_MaxFontSize +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Field::set_MaxFontSize method. Maximail font size which can be used for field contents. -1 to don''t check size in C++.' +type: docs +weight: 3400 +url: /cpp/aspose.pdf.forms/field/set_maxfontsize/ +--- +## Field::set_MaxFontSize method + + +Maximail font size which can be used for field contents. -1 to don't check size. + +```cpp +static ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::Field::set_MaxFontSize(double value) +``` + +## See Also + +* Class [Field](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/field/set_minfontsize/_index.md b/english/cpp/aspose.pdf.forms/field/set_minfontsize/_index.md new file mode 100644 index 0000000000..2a1e642d42 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/field/set_minfontsize/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Field::set_MinFontSize method +linktitle: set_MinFontSize +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Field::set_MinFontSize method. Minimal font size which can be used for field contents. -1 to don''t check size in C++.' +type: docs +weight: 3600 +url: /cpp/aspose.pdf.forms/field/set_minfontsize/ +--- +## Field::set_MinFontSize method + + +Minimal font size which can be used for field contents. -1 to don't check size. + +```cpp +static ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::Field::set_MinFontSize(double value) +``` + +## See Also + +* Class [Field](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/field/set_partialname/_index.md b/english/cpp/aspose.pdf.forms/field/set_partialname/_index.md new file mode 100644 index 0000000000..f145eb833b --- /dev/null +++ b/english/cpp/aspose.pdf.forms/field/set_partialname/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Field::set_PartialName method +linktitle: set_PartialName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Field::set_PartialName method. Sets partial name of the field in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.forms/field/set_partialname/ +--- +## Field::set_PartialName method + + +Sets partial name of the field. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::Field::set_PartialName(System::String value) +``` + +## See Also + +* Class [Field](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/field/set_rect/_index.md b/english/cpp/aspose.pdf.forms/field/set_rect/_index.md new file mode 100644 index 0000000000..d1de32c7a8 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/field/set_rect/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Forms::Field::set_Rect method +linktitle: set_Rect +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Field::set_Rect method. Sets the field rectangle in C++.' +type: docs +weight: 1700 +url: /cpp/aspose.pdf.forms/field/set_rect/ +--- +## Field::set_Rect method + + +Sets the field rectangle. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::Field::set_Rect(System::SharedPtr value) override +``` + +## See Also + +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [Field](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/field/set_taborder/_index.md b/english/cpp/aspose.pdf.forms/field/set_taborder/_index.md new file mode 100644 index 0000000000..16dad8ed8a --- /dev/null +++ b/english/cpp/aspose.pdf.forms/field/set_taborder/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Field::set_TabOrder method +linktitle: set_TabOrder +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Field::set_TabOrder method. Sets tab order of the field in C++.' +type: docs +weight: 2100 +url: /cpp/aspose.pdf.forms/field/set_taborder/ +--- +## Field::set_TabOrder method + + +Sets tab order of the field. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::Field::set_TabOrder(int32_t value) +``` + +## See Also + +* Class [Field](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/field/set_value/_index.md b/english/cpp/aspose.pdf.forms/field/set_value/_index.md new file mode 100644 index 0000000000..37bdd7a07c --- /dev/null +++ b/english/cpp/aspose.pdf.forms/field/set_value/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Field::set_Value method +linktitle: set_Value +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Field::set_Value method. Sets value of the field in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.forms/field/set_value/ +--- +## Field::set_Value method + + +Sets value of the field. + +```cpp +virtual ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::Field::set_Value(System::String value) +``` + +## See Also + +* Class [Field](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/field/setposition/_index.md b/english/cpp/aspose.pdf.forms/field/setposition/_index.md new file mode 100644 index 0000000000..5c05149ae4 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/field/setposition/_index.md @@ -0,0 +1,42 @@ +--- +title: Aspose::Pdf::Forms::Field::SetPosition method +linktitle: SetPosition +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Field::SetPosition method. Set position of the field in C++.' +type: docs +weight: 2800 +url: /cpp/aspose.pdf.forms/field/setposition/ +--- +## Field::SetPosition method + + +Set position of the field. + +```cpp +virtual ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::Field::SetPosition(System::SharedPtr point) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| point | System::SharedPtr\ | [Point](../../../aspose.pdf/point/) where field should be positioned. | +## Remarks + + + + + + point + + + + Point where field should be positioned. + + + +## See Also + +* Class [Point](../../../aspose.pdf/point/) +* Class [Field](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/field/settemplateweakptr/_index.md b/english/cpp/aspose.pdf.forms/field/settemplateweakptr/_index.md new file mode 100644 index 0000000000..af4bcc71be --- /dev/null +++ b/english/cpp/aspose.pdf.forms/field/settemplateweakptr/_index.md @@ -0,0 +1,40 @@ +--- +title: Aspose::Pdf::Forms::Field::SetTemplateWeakPtr method +linktitle: SetTemplateWeakPtr +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Field::SetTemplateWeakPtr method. Set n''th template argument a weak pointer (rather than shared). Allows switching pointers in containers to weak mode in C++.' +type: docs +weight: 3000 +url: /cpp/aspose.pdf.forms/field/settemplateweakptr/ +--- +## Field::SetTemplateWeakPtr method + + +Set n'th template argument a weak pointer (rather than shared). Allows switching pointers in containers to weak mode. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::Field::SetTemplateWeakPtr(uint32_t argument) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| argument | uint32_t | Index of template argument to treat as weak poiner. | +## Remarks + + + + + + argument + + + Index of template argument to treat as weak poiner. + + + +## See Also + +* Class [Field](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/fileselectboxfield/_index.md b/english/cpp/aspose.pdf.forms/fileselectboxfield/_index.md new file mode 100644 index 0000000000..fe117bc1fc --- /dev/null +++ b/english/cpp/aspose.pdf.forms/fileselectboxfield/_index.md @@ -0,0 +1,154 @@ +--- +title: Aspose::Pdf::Forms::FileSelectBoxField class +linktitle: FileSelectBoxField +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::FileSelectBoxField class. Field for file select box element in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.forms/fileselectboxfield/ +--- +## FileSelectBoxField class + + +[Field](../field/) for file select box element. + +```cpp +class FileSelectBoxField : public Aspose::Pdf::Forms::TextBoxField +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Accept](../../aspose.pdf.annotations/widgetannotation/accept/)(System::SharedPtr\) override | Accepts visitor. | +| [AddBarcode](../textboxfield/addbarcode/)(System::String) | Adds barcode 128 into the field. [Field](../field/) value will be changed onto the code and field become read only. | +| [AddImage](../textboxfield/addimage/)(System::SharedPtr\) | Adds image into the field resources and draws it. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| virtual [ChangeAfterResize](../../aspose.pdf.annotations/annotation/changeafterresize/)(System::SharedPtr\) | Update parameters and appearance, according to the matrix transform. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [CopyTo](../field/copyto/)(System::ArrayPtr\\>, int32_t) | Copies subfields of this field into array starting from specified index. | +| [CopyToWidgetArray](../field/copytowidgetarray/)(System::ArrayPtr\\>, int32_t) | Copies subfields of this field into array starting from specified index. | +| [ExecuteFieldJavaScript](../field/executefieldjavascript/)(System::SharedPtr\) | Executes a specified JavaScript action for the field. | +| [Field](../field/field/)(System::SharedPtr\) | Creates field for use in Generator. | +| [Flatten](../../aspose.pdf.annotations/annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](../../aspose.pdf.annotations/widgetannotation/get_actions/)() const | Gets the annotation actions. | +| [get_Actions](../../aspose.pdf.annotations/annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../../aspose.pdf.annotations/annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../../aspose.pdf.annotations/annotation/get_alignment/)() | [Annotation](../../aspose.pdf.annotations/annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [get_AlternateName](../field/get_alternatename/)() | Gets alternate name of the field (An alternate field name that shall be used in place of the actual field name wherever the field shall be identified in the user interface). Alternate name is used as field tooltip in Adobe Acrobat. | +| [get_AnnotationIndex](../field/get_annotationindex/)() | Gets index of this anotation on the page. | +| [get_AnnotationType](../../aspose.pdf.annotations/widgetannotation/get_annotationtype/)() override | Gets type of annotation. | +| [get_Appearance](../../aspose.pdf.annotations/annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../../aspose.pdf.annotations/annotation/get_border/)() const | Gets annotation border characteristics. [Border](../../aspose.pdf.annotations/border/) | +| [get_Characteristics](../../aspose.pdf.annotations/annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../../aspose.pdf.annotations/annotation/get_color/)() | Gets annotation color. | +| [get_Contents](../../aspose.pdf.annotations/annotation/get_contents/)() | Gets annotation text. | +| [get_Count](../field/get_count/)() const override | Gets number of subfields in this field. (For example number of items in radio button field). | +| [get_DefaultAppearance](../../aspose.pdf.annotations/widgetannotation/get_defaultappearance/)() | Gets default appearance of the field. | +| [get_Exportable](../../aspose.pdf.annotations/widgetannotation/get_exportable/)() | Gets exportable flag of the field. | +| static [get_FitIntoRectangle](../field/get_fitintorectangle/)() | If true then font size will reduced to fit text to specified rectangle. | +| [get_Flags](../../aspose.pdf.annotations/annotation/get_flags/)() | Flags of the annotation. | +| [get_ForceCombs](../textboxfield/get_forcecombs/)() | Gets flag which indicates is field divided into spaced positions. | +| [get_FullName](../../aspose.pdf.annotations/annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../../aspose.pdf.annotations/annotation/get_height/)() | Gets height of the annotation. | +| [get_Highlighting](../../aspose.pdf.annotations/widgetannotation/get_highlighting/)() | [Annotation](../../aspose.pdf.annotations/annotation/) highlighting mode. | +| [get_HorizontalAlignment](../../aspose.pdf.annotations/annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsGroup](../field/get_isgroup/)() const | Gets boolean value which indicates is this field non-terminal field i.e. group of fields. | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_IsSharedField](../field/get_issharedfield/)() const | Property for Generator support. Used when field is added to header or footer. If true, this field will created once and it's appearance will be visible on all pages of the document. If false, separated field will be created for every document page. | +| [get_IsSynchronized](../field/get_issynchronized/)() | Returns true if dictionary is synchronized. | +| [get_MappingName](../field/get_mappingname/)() | Gets mapping name of the field that shall be used when exporting interactive form field data from the document. | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| static [get_MaxFontSize](../field/get_maxfontsize/)() | Maximail font size which can be used for field contents. -1 to don't check size. | +| [get_MaxLen](../textboxfield/get_maxlen/)() | Gets maximum length of text in the field. | +| static [get_MinFontSize](../field/get_minfontsize/)() | Minimal font size which can be used for field contents. -1 to don't check size. | +| [get_Modified](../../aspose.pdf.annotations/annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Multiline](../textboxfield/get_multiline/)() | Gets multiline flag of the field. If Multiline is true field can contain multiple lines of text. | +| [get_Name](../../aspose.pdf.annotations/annotation/get_name/)() | Gets annotation name on the page. | +| [get_OnActivated](../../aspose.pdf.annotations/widgetannotation/get_onactivated/)() | An action which shall be performed when the annotation is activated. | +| [get_PageIndex](../field/get_pageindex/)() override | Gets index of page which contains this field. | +| [get_Parent](../../aspose.pdf.annotations/widgetannotation/get_parent/)() | Gets annotation parent. | +| [get_PartialName](../field/get_partialname/)() | Gets partial name of the field. | +| [get_ReadOnly](../../aspose.pdf.annotations/widgetannotation/get_readonly/)() | Gets read only status of the field. | +| [get_Rect](../field/get_rect/)() override | Gets the field rectangle. | +| [get_Required](../../aspose.pdf.annotations/widgetannotation/get_required/)() | Gets required status of the field. | +| [get_Scrollable](../textboxfield/get_scrollable/)() | Gets scrollable flag of field. If true field can be scrolled. | +| [get_SpellCheck](../textboxfield/get_spellcheck/)() | Gets spellcheck flag for field. If true field shall be spell checked. | +| [get_States](../../aspose.pdf.annotations/annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_SyncRoot](../field/get_syncroot/)() const | Synchronization object. | +| [get_TabOrder](../field/get_taborder/)() | Gets tab order of the field. | +| [get_TextHorizontalAlignment](../../aspose.pdf.annotations/annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| [get_TextVerticalAlignment](../textboxfield/get_textverticalalignment/)() const | Gets text vertical alignment for annotation. | +| static [get_UpdateAppearanceOnConvert](../../aspose.pdf.annotations/annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../../aspose.pdf.annotations/annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| [get_Value](../textboxfield/get_value/)() override | Gets value of the field. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../../aspose.pdf.annotations/annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetCheckedStateName](../../aspose.pdf.annotations/widgetannotation/getcheckedstatename/)() | Returns name of "checked" state according to existing state names. | +| [GetEnumerator](../field/getenumerator/)() override | Returns enumerator of contained fields. | +| [GetRectangle](../../aspose.pdf.annotations/annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| [idx_get](../field/idx_get/)(System::String) | Gets subfield contained in this field by name of the subfield. | +| [idx_get](../field/idx_get/)(int32_t) | Gets subfield contained in this field by index. | +| [Recalculate](../field/recalculate/)() | Recaculates all calculated fields on the form. | +| virtual [set_ActiveState](../../aspose.pdf.annotations/annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../../aspose.pdf.annotations/annotation/set_alignment/)(TextAlignment) | [Annotation](../../aspose.pdf.annotations/annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_AlternateName](../field/set_alternatename/)(System::String) | Sets alternate name of the field (An alternate field name that shall be used in place of the actual field name wherever the field shall be identified in the user interface). Alternate name is used as field tooltip in Adobe Acrobat. | +| [set_AnnotationIndex](../field/set_annotationindex/)(int32_t) | Sets index of this anotation on the page. | +| [set_Border](../../aspose.pdf.annotations/annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../../aspose.pdf.annotations/border/) | +| [set_Color](../../aspose.pdf.annotations/annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](../../aspose.pdf.annotations/annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_DefaultAppearance](../../aspose.pdf.annotations/widgetannotation/set_defaultappearance/)(System::SharedPtr\) | Sets default appearance of the field. | +| [set_Exportable](../../aspose.pdf.annotations/widgetannotation/set_exportable/)(bool) | Sets exportable flag of the field. | +| static [set_FitIntoRectangle](../field/set_fitintorectangle/)(bool) | If true then font size will reduced to fit text to specified rectangle. | +| [set_Flags](../../aspose.pdf.annotations/annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| [set_ForceCombs](../textboxfield/set_forcecombs/)(bool) | Sets flag which indicates is field divided into spaced positions. | +| virtual [set_Height](../../aspose.pdf.annotations/annotation/set_height/)(double) | Sets height of the annotation. | +| [set_Highlighting](../../aspose.pdf.annotations/widgetannotation/set_highlighting/)(HighlightingMode) | [Annotation](../../aspose.pdf.annotations/annotation/) highlighting mode. | +| [set_HorizontalAlignment](../../aspose.pdf.annotations/annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_IsSharedField](../field/set_issharedfield/)(bool) | Property for Generator support. Used when field is added to header or footer. If true, this field will created once and it's appearance will be visible on all pages of the document. If false, separated field will be created for every document page. | +| [set_MappingName](../field/set_mappingname/)(System::String) | Sets mapping name of the field that shall be used when exporting interactive form field data from the document. | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| static [set_MaxFontSize](../field/set_maxfontsize/)(double) | Maximail font size which can be used for field contents. -1 to don't check size. | +| [set_MaxLen](../textboxfield/set_maxlen/)(int32_t) | Sets maximum length of text in the field. | +| static [set_MinFontSize](../field/set_minfontsize/)(double) | Minimal font size which can be used for field contents. -1 to don't check size. | +| [set_Modified](../../aspose.pdf.annotations/annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Multiline](../textboxfield/set_multiline/)(bool) | Sets multiline flag of the field. If Multiline is true field can contain multiple lines of text. | +| [set_Name](../../aspose.pdf.annotations/annotation/set_name/)(System::String) | Sets annotation name on the page. | +| [set_OnActivated](../../aspose.pdf.annotations/widgetannotation/set_onactivated/)(System::SharedPtr\) | An action which shall be performed when the annotation is activated. | +| [set_PartialName](../field/set_partialname/)(System::String) | Sets partial name of the field. | +| [set_ReadOnly](../../aspose.pdf.annotations/widgetannotation/set_readonly/)(bool) | Sets read only status of the field. | +| [set_Rect](../field/set_rect/)(System::SharedPtr\) override | Sets the field rectangle. | +| [set_Required](../../aspose.pdf.annotations/widgetannotation/set_required/)(bool) | Sets required status of the field. | +| [set_Scrollable](../textboxfield/set_scrollable/)(bool) | Sets scrollable flag of field. If true field can be scrolled. | +| [set_SpellCheck](../textboxfield/set_spellcheck/)(bool) | Sets spellcheck flag for field. If true field shall be spell checked. | +| [set_TabOrder](../field/set_taborder/)(int32_t) | Sets tab order of the field. | +| [set_TextHorizontalAlignment](../../aspose.pdf.annotations/annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| [set_TextVerticalAlignment](../textboxfield/set_textverticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets text vertical alignment for annotation. | +| static [set_UpdateAppearanceOnConvert](../../aspose.pdf.annotations/annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../../aspose.pdf.annotations/annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| [set_Value](../textboxfield/set_value/)(System::String) override | Sets value of the field. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../../aspose.pdf.annotations/annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| virtual [SetPosition](../field/setposition/)(System::SharedPtr\) | Set position of the field. | +| [SetTemplateWeakPtr](../field/settemplateweakptr/)(uint32_t) override | Set n'th template argument a weak pointer (rather than shared). Allows switching pointers in containers to weak mode. | +| [TextBoxField](../textboxfield/textboxfield/)(System::SharedPtr\) | Constructor which should be used with Generator. | +| [TextBoxField](../textboxfield/textboxfield/)() | Create instance of [TextBoxField](../textboxfield/). | +| [TextBoxField](../textboxfield/textboxfield/)(System::SharedPtr\, System::SharedPtr\) | Constructor of TextBox field. | +| [TextBoxField](../textboxfield/textboxfield/)(System::SharedPtr\, System::SharedPtr\) | Constructor of TextBox field. | +| [WidgetAnnotation](../../aspose.pdf.annotations/widgetannotation/widgetannotation/)(System::SharedPtr\) | Create annotation (used for Generator) | +## See Also + +* Class [TextBoxField](../textboxfield/) +* Namespace [Aspose::Pdf::Forms](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.forms/form/_index.md b/english/cpp/aspose.pdf.forms/form/_index.md new file mode 100644 index 0000000000..b279069ae8 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/form/_index.md @@ -0,0 +1,69 @@ +--- +title: Aspose::Pdf::Forms::Form class +linktitle: Form +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Form class. Class representing form object in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.forms/form/ +--- +## Form class + + +Class representing form object. + +```cpp +class Form : public System::Collections::Generic::ICollection> +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Add](./add/)(System::SharedPtr\, int32_t) | Adds field on the form. | +| [Add](./add/)(const System::SharedPtr\\&) | Adds field on the form. | +| [Add](./add/)(System::SharedPtr\, System::String, int32_t) | Adds new field to the form; If this field is already placed on other or this form, the copy of field is created. | +| [AddFieldAppearance](./addfieldappearance/)(System::SharedPtr\, int32_t, System::SharedPtr\) | Adds additional appearance of the field to specified page of the document in the specified location. | +| [AssignXfa](./assignxfa/)(System::SharedPtr\) | Sets [XFA](../xfa/) of the form to specified value. | +| [CopyTo](./copyto/)(System::ArrayPtr\\>, int32_t) | Copies fields placed on the form into array. | +| [Delete](./delete/)(System::SharedPtr\) | Delete field from the form. | +| [Delete](./delete/)(System::String) | Deletes field from the form by its name. | +| [Flatten](./flatten/)() | Removes all form fields and place their values directly on the page. | +| [get_AutoRecalculate](./get_autorecalculate/)() const | If set, all form fields will be recalculated when any field is changed. Default value is true. Set to false in order to increase performance when filling form with large amount of calculated fields. | +| [get_AutoRestoreForm](./get_autorestoreform/)() const | If set, absent form fields will be automatically created if they present in annotations. | +| [get_Count](./get_count/)() const override | Gets number of the fields on this form. | +| [get_DefaultAppearance](./get_defaultappearance/)() | Gets default appearance of the form (object which describes default font, text size and color for fields on the form). | +| [get_DefaultResources](./get_defaultresources/)() | Gets default resources placed on this form. | +| [get_EmulateRequierdGroups](./get_emulaterequierdgroups/)() const | If this property is true then additional red boundary rectangles will be drawn for required Xfa exclGroup elements containers This property was introduced because absences of analogues for the exclGroup during conversion Xfa representation of forms to standard. It is false by default. | +| [get_Fields](./get_fields/)() | Gets list of all fields in lowest level of hierarhical form. | +| [get_IgnoreNeedsRendering](./get_ignoreneedsrendering/)() const | If this property is true the value of NeedsRendering key will be ignored during conversion [XFA](../xfa/) form to Standard form. It is false by default. | +| [get_IsSynchronized](./get_issynchronized/)() | Returns true if object is thread-safe. | +| [get_RemovePermission](./get_removepermission/)() const | If this property is true the "Perms" dictionary will be removed from the pdf document after conversion dynamic documents to standard. The "Perms" dictionary can contain a rules that disturb displaying selection of mandatory fields in Adobe Acrobat reader. It is false by default. | +| [get_SignaturesAppendOnly](./get_signaturesappendonly/)() | If set, the document contains signatures that may be invalidated if the file is saved (written) in a way that alters its previous contents, as opposed to an incremental update. | +| [get_SignaturesExist](./get_signaturesexist/)() | If set, the document contains at least one signature field. | +| [get_SyncRoot](./get_syncroot/)() const | Returns synchronization object. | +| [get_Type](./get_type/)() | Gets type of the form. Possible values are: Standard, Static, Dynamic. | +| [get_XFA](./get_xfa/)() const | Gets [XFA](../xfa/) data of the form (if presents). | +| [GetEnumerator](./getenumerator/)() override | Gets enumeration of form fields. | +| [GetFieldsInRect](./getfieldsinrect/)(System::SharedPtr\) | Returns fields inside of specified rectangle. | +| [HasField](./hasfield/)(System::SharedPtr\) | Check if the form already has specified field. | +| [HasField](./hasfield/)(System::String) | Determines if the field with specified name already added to the [Form](./). | +| [HasField](./hasfield/)(System::String, bool) | Determines if the field with specified name already added to the [Form](./), with ability to look into children hierarchy of fields. | +| [idx_get](./idx_get/)(System::String) | Gets field of the form by field name. Throws excpetion if the field was not found. | +| [idx_get](./idx_get/)(int32_t) | Gets field of the form by field index. | +| [MakeFormAnnotationsIndependent](./makeformannotationsindependent/)(System::SharedPtr\) | Makes form fields annotations independent. | +| [RemoveFieldAppearance](./removefieldappearance/)(System::SharedPtr\, int32_t) | Removes appearance of the field at specified index. If only one child appearance left, method embeds it into the field. | +| [set_AutoRecalculate](./set_autorecalculate/)(bool) | If set, all form fields will be recalculated when any field is changed. Default value is true. Set to false in order to increase performance when filling form with large amount of calculated fields. | +| [set_AutoRestoreForm](./set_autorestoreform/)(bool) | If set, absent form fields will be automatically created if they present in annotations. | +| [set_CalculatedFields](./set_calculatedfields/)(System::SharedPtr\\>\>) | Allows to set order of field calculation. | +| [set_DefaultAppearance](./set_defaultappearance/)(System::SharedPtr\) | Sets default appearance of the form (object which describes default font, text size and color for fields on the form). | +| [set_EmulateRequierdGroups](./set_emulaterequierdgroups/)(bool) | If this property is true then additional red boundary rectangles will be drawn for required Xfa exclGroup elements containers This property was introduced because absences of analogues for the exclGroup during conversion Xfa representation of forms to standard. It is false by default. | +| [set_IgnoreNeedsRendering](./set_ignoreneedsrendering/)(bool) | If this property is true the value of NeedsRendering key will be ignored during conversion [XFA](../xfa/) form to Standard form. It is false by default. | +| [set_RemovePermission](./set_removepermission/)(bool) | If this property is true the "Perms" dictionary will be removed from the pdf document after conversion dynamic documents to standard. The "Perms" dictionary can contain a rules that disturb displaying selection of mandatory fields in Adobe Acrobat reader. It is false by default. | +| [set_SignaturesAppendOnly](./set_signaturesappendonly/)(bool) | If set, the document contains signatures that may be invalidated if the file is saved (written) in a way that alters its previous contents, as opposed to an incremental update. | +| [set_SignaturesExist](./set_signaturesexist/)(bool) | If set, the document contains at least one signature field. | +| [set_Type](./set_type/)(FormType) | Gets type of the form. Possible values are: Standard, Static, Dynamic. | +## See Also + +* Namespace [Aspose::Pdf::Forms](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.forms/form/add/_index.md b/english/cpp/aspose.pdf.forms/form/add/_index.md new file mode 100644 index 0000000000..722292a4a0 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/form/add/_index.md @@ -0,0 +1,141 @@ +--- +title: Aspose::Pdf::Forms::Form::Add method +linktitle: Add +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Form::Add method. Adds field on the form in C++.' +type: docs +weight: 3000 +url: /cpp/aspose.pdf.forms/form/add/ +--- +## Form::Add(System::SharedPtr\, int32_t) method + + +Adds field on the form. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::Form::Add(System::SharedPtr field, int32_t pageNumber) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| field | System::SharedPtr\ | [Field](../../field/) which must be added. | +| pageNumber | int32_t | [Page](../../../aspose.pdf/page/) index where added field will be placed. | +## Remarks + + + + + + field + + + + Field which must be added. + + + + + pageNumber + + + + Page index where added field will be placed. + + + +## See Also + +* Class [Field](../../field/) +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) +## Form::Add(const System::SharedPtr\\&) method + + +Adds field on the form. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::Form::Add(const System::SharedPtr &field) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| field | const System::SharedPtr\\& | [Field](../../field/) which must be added. | +## Remarks + + + + + + field + + + + Field which must be added. + + + +## See Also + +* Class [Field](../../field/) +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) +## Form::Add(System::SharedPtr\, System::String, int32_t) method + + +Adds new field to the form; If this field is already placed on other or this form, the copy of field is created. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Forms::Form::Add(System::SharedPtr field, System::String partialName, int32_t pageNumber) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| field | System::SharedPtr\ | [Field](../../field/) name. | +| partialName | System::String | Name of field on the form. | +| pageNumber | int32_t | [Page](../../../aspose.pdf/page/) number where field will be added. | + +### ReturnValue + +Added field returned. If copy of the field was created it will be returned. +## Remarks + + + + + + field + + + + Field name. + + + + + partialName + + + Name of field on the form. + + + + + pageNumber + + + + Page number where field will be added. + + + +## See Also + +* Class [Field](../../field/) +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/form/addfieldappearance/_index.md b/english/cpp/aspose.pdf.forms/form/addfieldappearance/_index.md new file mode 100644 index 0000000000..06906bd7c1 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/form/addfieldappearance/_index.md @@ -0,0 +1,62 @@ +--- +title: Aspose::Pdf::Forms::Form::AddFieldAppearance method +linktitle: AddFieldAppearance +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Form::AddFieldAppearance method. Adds additional appearance of the field to specified page of the document in the specified location in C++.' +type: docs +weight: 3100 +url: /cpp/aspose.pdf.forms/form/addfieldappearance/ +--- +## Form::AddFieldAppearance method + + +Adds additional appearance of the field to specified page of the document in the specified location. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::Form::AddFieldAppearance(System::SharedPtr field, int32_t pageNumber, System::SharedPtr rect) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| field | System::SharedPtr\ | [Field](../../field/) which appearance should be added on form. | +| pageNumber | int32_t | Number of the page where field must be placed. | +| rect | System::SharedPtr\ | [Rectangle](../../../aspose.pdf/rectangle/) where field will be placed. | +## Remarks + + + + + + field + + + + Field which appearance should be added on form. + + + + + pageNumber + + + Number of the page where field must be placed. + + + + + rect + + + + Rectangle where field will be placed. + + + +## See Also + +* Class [Field](../../field/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/form/assignxfa/_index.md b/english/cpp/aspose.pdf.forms/form/assignxfa/_index.md new file mode 100644 index 0000000000..05b69aad55 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/form/assignxfa/_index.md @@ -0,0 +1,40 @@ +--- +title: Aspose::Pdf::Forms::Form::AssignXfa method +linktitle: AssignXfa +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Form::AssignXfa method. Sets XFA of the form to specified value in C++.' +type: docs +weight: 3300 +url: /cpp/aspose.pdf.forms/form/assignxfa/ +--- +## Form::AssignXfa method + + +Sets [XFA](../../xfa/) of the form to specified value. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::Form::AssignXfa(System::SharedPtr xml) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| xml | System::SharedPtr\ | Xml document which concains new [XFA](../../xfa/) data. | +## Remarks + + + + + + xml + + + Xml document which concains new XFA data. + + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/form/copyto/_index.md b/english/cpp/aspose.pdf.forms/form/copyto/_index.md new file mode 100644 index 0000000000..6ed4b2b812 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/form/copyto/_index.md @@ -0,0 +1,50 @@ +--- +title: Aspose::Pdf::Forms::Form::CopyTo method +linktitle: CopyTo +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Form::CopyTo method. Copies fields placed on the form into array in C++.' +type: docs +weight: 2500 +url: /cpp/aspose.pdf.forms/form/copyto/ +--- +## Form::CopyTo method + + +Copies fields placed on the form into array. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::Form::CopyTo(System::ArrayPtr> array, int32_t index) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| array | System::ArrayPtr\\> | Array where fields must be placed. | +| index | int32_t | Starting index. | +## Remarks + + + + + + array + + + Array where fields must be placed. + + + + + index + + + Starting index. + + + +## See Also + +* Class [Field](../../field/) +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/form/delete/_index.md b/english/cpp/aspose.pdf.forms/form/delete/_index.md new file mode 100644 index 0000000000..eeeae55780 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/form/delete/_index.md @@ -0,0 +1,73 @@ +--- +title: Aspose::Pdf::Forms::Form::Delete method +linktitle: Delete +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Form::Delete method. Delete field from the form in C++.' +type: docs +weight: 2700 +url: /cpp/aspose.pdf.forms/form/delete/ +--- +## Form::Delete(System::SharedPtr\) method + + +Delete field from the form. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::Form::Delete(System::SharedPtr field) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| field | System::SharedPtr\ | [Field](../../field/) which must be deleted. | +## Remarks + + + + + + field + + + + Field which must be deleted. + + + +## See Also + +* Class [Field](../../field/) +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) +## Form::Delete(System::String) method + + +Deletes field from the form by its name. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::Form::Delete(System::String fieldName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | Name of the filed which must be deleted. | +## Remarks + + + + + + fieldName + + + Name of the filed which must be deleted. + + + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/form/flatten/_index.md b/english/cpp/aspose.pdf.forms/form/flatten/_index.md new file mode 100644 index 0000000000..e22c33e17c --- /dev/null +++ b/english/cpp/aspose.pdf.forms/form/flatten/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Form::Flatten method +linktitle: Flatten +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Form::Flatten method. Removes all form fields and place their values directly on the page in C++.' +type: docs +weight: 2800 +url: /cpp/aspose.pdf.forms/form/flatten/ +--- +## Form::Flatten method + + +Removes all form fields and place their values directly on the page. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::Form::Flatten() +``` + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/form/get_autorecalculate/_index.md b/english/cpp/aspose.pdf.forms/form/get_autorecalculate/_index.md new file mode 100644 index 0000000000..c4ab778e68 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/form/get_autorecalculate/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Form::get_AutoRecalculate method +linktitle: get_AutoRecalculate +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Form::get_AutoRecalculate method. If set, all form fields will be recalculated when any field is changed. Default value is true. Set to false in order to increase performance when filling form with large amount of calculated fields in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.forms/form/get_autorecalculate/ +--- +## Form::get_AutoRecalculate method + + +If set, all form fields will be recalculated when any field is changed. Default value is true. Set to false in order to increase performance when filling form with large amount of calculated fields. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Forms::Form::get_AutoRecalculate() const +``` + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/form/get_autorestoreform/_index.md b/english/cpp/aspose.pdf.forms/form/get_autorestoreform/_index.md new file mode 100644 index 0000000000..c17263a7fa --- /dev/null +++ b/english/cpp/aspose.pdf.forms/form/get_autorestoreform/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Form::get_AutoRestoreForm method +linktitle: get_AutoRestoreForm +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Form::get_AutoRestoreForm method. If set, absent form fields will be automatically created if they present in annotations in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.forms/form/get_autorestoreform/ +--- +## Form::get_AutoRestoreForm method + + +If set, absent form fields will be automatically created if they present in annotations. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Forms::Form::get_AutoRestoreForm() const +``` + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/form/get_count/_index.md b/english/cpp/aspose.pdf.forms/form/get_count/_index.md new file mode 100644 index 0000000000..62f5b54300 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/form/get_count/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Form::get_Count method +linktitle: get_Count +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Form::get_Count method. Gets number of the fields on this form in C++.' +type: docs +weight: 3700 +url: /cpp/aspose.pdf.forms/form/get_count/ +--- +## Form::get_Count method + + +Gets number of the fields on this form. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Forms::Form::get_Count() const override +``` + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/form/get_defaultappearance/_index.md b/english/cpp/aspose.pdf.forms/form/get_defaultappearance/_index.md new file mode 100644 index 0000000000..a38914af21 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/form/get_defaultappearance/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Forms::Form::get_DefaultAppearance method +linktitle: get_DefaultAppearance +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Form::get_DefaultAppearance method. Gets default appearance of the form (object which describes default font, text size and color for fields on the form) in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.forms/form/get_defaultappearance/ +--- +## Form::get_DefaultAppearance method + + +Gets default appearance of the form (object which describes default font, text size and color for fields on the form). + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Forms::Form::get_DefaultAppearance() +``` + +## See Also + +* Class [DefaultAppearance](../../../aspose.pdf.annotations/defaultappearance/) +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/form/get_defaultresources/_index.md b/english/cpp/aspose.pdf.forms/form/get_defaultresources/_index.md new file mode 100644 index 0000000000..af9217f228 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/form/get_defaultresources/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Forms::Form::get_DefaultResources method +linktitle: get_DefaultResources +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Form::get_DefaultResources method. Gets default resources placed on this form in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.forms/form/get_defaultresources/ +--- +## Form::get_DefaultResources method + + +Gets default resources placed on this form. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Forms::Form::get_DefaultResources() +``` + +## See Also + +* Class [Resources](../../../aspose.pdf/resources/) +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/form/get_emulaterequierdgroups/_index.md b/english/cpp/aspose.pdf.forms/form/get_emulaterequierdgroups/_index.md new file mode 100644 index 0000000000..d46b9090d5 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/form/get_emulaterequierdgroups/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Form::get_EmulateRequierdGroups method +linktitle: get_EmulateRequierdGroups +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Form::get_EmulateRequierdGroups method. If this property is true then additional red boundary rectangles will be drawn for required Xfa exclGroup elements containers This property was introduced because absences of analogues for the exclGroup during conversion Xfa representation of forms to standard. It is false by default in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.forms/form/get_emulaterequierdgroups/ +--- +## Form::get_EmulateRequierdGroups method + + +If this property is true then additional red boundary rectangles will be drawn for required Xfa exclGroup elements containers This property was introduced because absences of analogues for the exclGroup during conversion Xfa representation of forms to standard. It is false by default. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Forms::Form::get_EmulateRequierdGroups() const +``` + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/form/get_fields/_index.md b/english/cpp/aspose.pdf.forms/form/get_fields/_index.md new file mode 100644 index 0000000000..3af29e689c --- /dev/null +++ b/english/cpp/aspose.pdf.forms/form/get_fields/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Forms::Form::get_Fields method +linktitle: get_Fields +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Form::get_Fields method. Gets list of all fields in lowest level of hierarhical form in C++.' +type: docs +weight: 1900 +url: /cpp/aspose.pdf.forms/form/get_fields/ +--- +## Form::get_Fields method + + +Gets list of all fields in lowest level of hierarhical form. + +```cpp +ASPOSE_PDF_SHARED_API System::ArrayPtr> Aspose::Pdf::Forms::Form::get_Fields() +``` + +## See Also + +* Class [Field](../../field/) +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/form/get_ignoreneedsrendering/_index.md b/english/cpp/aspose.pdf.forms/form/get_ignoreneedsrendering/_index.md new file mode 100644 index 0000000000..9070f02741 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/form/get_ignoreneedsrendering/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Form::get_IgnoreNeedsRendering method +linktitle: get_IgnoreNeedsRendering +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Form::get_IgnoreNeedsRendering method. If this property is true the value of NeedsRendering key will be ignored during conversion XFA form to Standard form. It is false by default in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.forms/form/get_ignoreneedsrendering/ +--- +## Form::get_IgnoreNeedsRendering method + + +If this property is true the value of NeedsRendering key will be ignored during conversion [XFA](../../xfa/) form to Standard form. It is false by default. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Forms::Form::get_IgnoreNeedsRendering() const +``` + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/form/get_issynchronized/_index.md b/english/cpp/aspose.pdf.forms/form/get_issynchronized/_index.md new file mode 100644 index 0000000000..f6794ea410 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/form/get_issynchronized/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Form::get_IsSynchronized method +linktitle: get_IsSynchronized +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Form::get_IsSynchronized method. Returns true if object is thread-safe in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.forms/form/get_issynchronized/ +--- +## Form::get_IsSynchronized method + + +Returns true if object is thread-safe. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Forms::Form::get_IsSynchronized() +``` + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/form/get_removepermission/_index.md b/english/cpp/aspose.pdf.forms/form/get_removepermission/_index.md new file mode 100644 index 0000000000..6754b138c7 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/form/get_removepermission/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Form::get_RemovePermission method +linktitle: get_RemovePermission +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Form::get_RemovePermission method. If this property is true the "Perms" dictionary will be removed from the pdf document after conversion dynamic documents to standard. The "Perms" dictionary can contain a rules that disturb displaying selection of mandatory fields in Adobe Acrobat reader. It is false by default in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.forms/form/get_removepermission/ +--- +## Form::get_RemovePermission method + + +If this property is true the "Perms" dictionary will be removed from the pdf document after conversion dynamic documents to standard. The "Perms" dictionary can contain a rules that disturb displaying selection of mandatory fields in Adobe Acrobat reader. It is false by default. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Forms::Form::get_RemovePermission() const +``` + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/form/get_signaturesappendonly/_index.md b/english/cpp/aspose.pdf.forms/form/get_signaturesappendonly/_index.md new file mode 100644 index 0000000000..b4ec0a1421 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/form/get_signaturesappendonly/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Form::get_SignaturesAppendOnly method +linktitle: get_SignaturesAppendOnly +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Form::get_SignaturesAppendOnly method. If set, the document contains signatures that may be invalidated if the file is saved (written) in a way that alters its previous contents, as opposed to an incremental update in C++.' +type: docs +weight: 2300 +url: /cpp/aspose.pdf.forms/form/get_signaturesappendonly/ +--- +## Form::get_SignaturesAppendOnly method + + +If set, the document contains signatures that may be invalidated if the file is saved (written) in a way that alters its previous contents, as opposed to an incremental update. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Forms::Form::get_SignaturesAppendOnly() +``` + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/form/get_signaturesexist/_index.md b/english/cpp/aspose.pdf.forms/form/get_signaturesexist/_index.md new file mode 100644 index 0000000000..3346dfccb1 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/form/get_signaturesexist/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Form::get_SignaturesExist method +linktitle: get_SignaturesExist +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Form::get_SignaturesExist method. If set, the document contains at least one signature field in C++.' +type: docs +weight: 2100 +url: /cpp/aspose.pdf.forms/form/get_signaturesexist/ +--- +## Form::get_SignaturesExist method + + +If set, the document contains at least one signature field. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Forms::Form::get_SignaturesExist() +``` + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/form/get_syncroot/_index.md b/english/cpp/aspose.pdf.forms/form/get_syncroot/_index.md new file mode 100644 index 0000000000..1bf385ad89 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/form/get_syncroot/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Form::get_SyncRoot method +linktitle: get_SyncRoot +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Form::get_SyncRoot method. Returns synchronization object in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.forms/form/get_syncroot/ +--- +## Form::get_SyncRoot method + + +Returns synchronization object. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Forms::Form::get_SyncRoot() const +``` + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/form/get_type/_index.md b/english/cpp/aspose.pdf.forms/form/get_type/_index.md new file mode 100644 index 0000000000..713bbee84d --- /dev/null +++ b/english/cpp/aspose.pdf.forms/form/get_type/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Forms::Form::get_Type method +linktitle: get_Type +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Form::get_Type method. Gets type of the form. Possible values are: Standard, Static, Dynamic in C++.' +type: docs +weight: 1700 +url: /cpp/aspose.pdf.forms/form/get_type/ +--- +## Form::get_Type method + + +Gets type of the form. Possible values are: Standard, Static, Dynamic. + +```cpp +ASPOSE_PDF_SHARED_API FormType Aspose::Pdf::Forms::Form::get_Type() +``` + +## See Also + +* Enum [FormType](../../formtype/) +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/form/get_xfa/_index.md b/english/cpp/aspose.pdf.forms/form/get_xfa/_index.md new file mode 100644 index 0000000000..a771a5a1b4 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/form/get_xfa/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Forms::Form::get_XFA method +linktitle: get_XFA +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Form::get_XFA method. Gets XFA data of the form (if presents) in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.forms/form/get_xfa/ +--- +## Form::get_XFA method + + +Gets [XFA](../../xfa/) data of the form (if presents). + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Forms::Form::get_XFA() const +``` + +## See Also + +* Class [XFA](../../xfa/) +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/form/getenumerator/_index.md b/english/cpp/aspose.pdf.forms/form/getenumerator/_index.md new file mode 100644 index 0000000000..c1faa915c2 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/form/getenumerator/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Forms::Form::GetEnumerator method +linktitle: GetEnumerator +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Form::GetEnumerator method. Gets enumeration of form fields in C++.' +type: docs +weight: 2600 +url: /cpp/aspose.pdf.forms/form/getenumerator/ +--- +## Form::GetEnumerator method + + +Gets enumeration of form fields. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr>> Aspose::Pdf::Forms::Form::GetEnumerator() override +``` + + +### ReturnValue + +[Field](../../field/) enumerator. + +## See Also + +* Class [WidgetAnnotation](../../../aspose.pdf.annotations/widgetannotation/) +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/form/getfieldsinrect/_index.md b/english/cpp/aspose.pdf.forms/form/getfieldsinrect/_index.md new file mode 100644 index 0000000000..ed828f7fca --- /dev/null +++ b/english/cpp/aspose.pdf.forms/form/getfieldsinrect/_index.md @@ -0,0 +1,47 @@ +--- +title: Aspose::Pdf::Forms::Form::GetFieldsInRect method +linktitle: GetFieldsInRect +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Form::GetFieldsInRect method. Returns fields inside of specified rectangle in C++.' +type: docs +weight: 3500 +url: /cpp/aspose.pdf.forms/form/getfieldsinrect/ +--- +## Form::GetFieldsInRect method + + +Returns fields inside of specified rectangle. + +```cpp +ASPOSE_PDF_SHARED_API System::ArrayPtr> Aspose::Pdf::Forms::Form::GetFieldsInRect(System::SharedPtr rect) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| rect | System::SharedPtr\ | [Rectangle](../../../aspose.pdf/rectangle/) where fields should be found. | + +### ReturnValue + +Array with found fields. +## Remarks + + + + + + rect + + + + Rectangle where fields should be found. + + + +## See Also + +* Class [Field](../../field/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/form/hasfield/_index.md b/english/cpp/aspose.pdf.forms/form/hasfield/_index.md new file mode 100644 index 0000000000..827759167f --- /dev/null +++ b/english/cpp/aspose.pdf.forms/form/hasfield/_index.md @@ -0,0 +1,136 @@ +--- +title: Aspose::Pdf::Forms::Form::HasField method +linktitle: HasField +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Form::HasField method. Check if the form already has specified field in C++.' +type: docs +weight: 3400 +url: /cpp/aspose.pdf.forms/form/hasfield/ +--- +## Form::HasField(System::SharedPtr\) method + + +Check if the form already has specified field. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Forms::Form::HasField(System::SharedPtr field) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| field | System::SharedPtr\ | [Field](../../field/) to check. | + +### ReturnValue + +**true** if the specified field name added to [Form](../); otherwise, **false**. +## Remarks + + + + + + field + + + + Field to check. + + + +## See Also + +* Class [Field](../../field/) +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) +## Form::HasField(System::String) method + + +Determines if the field with specified name already added to the [Form](../). + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Forms::Form::HasField(System::String fieldName) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | [Field::PartialName](../) or [Annotation::FullName](../) of the field. | + +### ReturnValue + +**true** +## Remarks + + + + + + fieldName + + + + Field::PartialName or Annotation::FullName of the field. + + + +if the specified field name added to [Form](../); otherwise, **false** + +. +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) +## Form::HasField(System::String, bool) method + + +Determines if the field with specified name already added to the [Form](../), with ability to look into children hierarchy of fields. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Forms::Form::HasField(System::String fieldName, bool searchChildren) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| fieldName | System::String | [Field::PartialName](../) or [Annotation::FullName](../) of the field. | +| searchChildren | bool | When set to **true** + +the whole hierarchy of form fields would be searched for the requested *fieldName* (note that in this case the [Annotation::FullName](../) of the required field should be passed as *fieldName* ). | + +### ReturnValue + +**true** +## Remarks + + + + + + fieldName + + + + Field::PartialName or Annotation::FullName of the field. + + + + + searchChildren + + + When set to true + the whole hierarchy of form fields would be searched for the requested fieldName (note that in this case the Annotation::FullName of the required field should be passed as fieldName ). + + + +if the specified field name added to [Form](../); otherwise, **false** + +. +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/form/idx_get/_index.md b/english/cpp/aspose.pdf.forms/form/idx_get/_index.md new file mode 100644 index 0000000000..a6ab40ca59 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/form/idx_get/_index.md @@ -0,0 +1,81 @@ +--- +title: Aspose::Pdf::Forms::Form::idx_get method +linktitle: idx_get +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Form::idx_get method. Gets field of the form by field name. Throws excpetion if the field was not found in C++.' +type: docs +weight: 2900 +url: /cpp/aspose.pdf.forms/form/idx_get/ +--- +## Form::idx_get(System::String) method + + +Gets field of the form by field name. Throws excpetion if the field was not found. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Forms::Form::idx_get(System::String name) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| name | System::String | Name of the field. | + +### ReturnValue + +Retreived field. +## Remarks + + + + + + name + + + Name of the field. + + + +## See Also + +* Class [WidgetAnnotation](../../../aspose.pdf.annotations/widgetannotation/) +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) +## Form::idx_get(int32_t) method + + +Gets field of the form by field index. + +```cpp +ASPOSE_PDF_SHARED_API System::SharedPtr Aspose::Pdf::Forms::Form::idx_get(int32_t index) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| index | int32_t | Index of the field. | + +### ReturnValue + +Retreived field. +## Remarks + + + + + + index + + + Index of the field. + + + +## See Also + +* Class [WidgetAnnotation](../../../aspose.pdf.annotations/widgetannotation/) +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/form/makeformannotationsindependent/_index.md b/english/cpp/aspose.pdf.forms/form/makeformannotationsindependent/_index.md new file mode 100644 index 0000000000..820ab7f023 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/form/makeformannotationsindependent/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Forms::Form::MakeFormAnnotationsIndependent method +linktitle: MakeFormAnnotationsIndependent +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Form::MakeFormAnnotationsIndependent method. Makes form fields annotations independent in C++.' +type: docs +weight: 3600 +url: /cpp/aspose.pdf.forms/form/makeformannotationsindependent/ +--- +## Form::MakeFormAnnotationsIndependent method + + +Makes form fields annotations independent. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::Form::MakeFormAnnotationsIndependent(System::SharedPtr page) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | The target page. | +## Remarks + + + + + + page + + + The target page. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/form/removefieldappearance/_index.md b/english/cpp/aspose.pdf.forms/form/removefieldappearance/_index.md new file mode 100644 index 0000000000..b7bb85058a --- /dev/null +++ b/english/cpp/aspose.pdf.forms/form/removefieldappearance/_index.md @@ -0,0 +1,51 @@ +--- +title: Aspose::Pdf::Forms::Form::RemoveFieldAppearance method +linktitle: RemoveFieldAppearance +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Form::RemoveFieldAppearance method. Removes appearance of the field at specified index. If only one child appearance left, method embeds it into the field in C++.' +type: docs +weight: 3200 +url: /cpp/aspose.pdf.forms/form/removefieldappearance/ +--- +## Form::RemoveFieldAppearance method + + +Removes appearance of the field at specified index. If only one child appearance left, method embeds it into the field. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::Form::RemoveFieldAppearance(System::SharedPtr field, int32_t appearanceIndex) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| field | System::SharedPtr\ | [Field](../../field/) with appearances. | +| appearanceIndex | int32_t | Appearances index. | +## Remarks + + + + + + field + + + + Field with appearances. + + + + + appearanceIndex + + + Appearances index. + + + +## See Also + +* Class [Field](../../field/) +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/form/set_autorecalculate/_index.md b/english/cpp/aspose.pdf.forms/form/set_autorecalculate/_index.md new file mode 100644 index 0000000000..77fb84bfcc --- /dev/null +++ b/english/cpp/aspose.pdf.forms/form/set_autorecalculate/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Form::set_AutoRecalculate method +linktitle: set_AutoRecalculate +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Form::set_AutoRecalculate method. If set, all form fields will be recalculated when any field is changed. Default value is true. Set to false in order to increase performance when filling form with large amount of calculated fields in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.forms/form/set_autorecalculate/ +--- +## Form::set_AutoRecalculate method + + +If set, all form fields will be recalculated when any field is changed. Default value is true. Set to false in order to increase performance when filling form with large amount of calculated fields. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::Form::set_AutoRecalculate(bool value) +``` + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/form/set_autorestoreform/_index.md b/english/cpp/aspose.pdf.forms/form/set_autorestoreform/_index.md new file mode 100644 index 0000000000..e8d8ac41c5 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/form/set_autorestoreform/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Form::set_AutoRestoreForm method +linktitle: set_AutoRestoreForm +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Form::set_AutoRestoreForm method. If set, absent form fields will be automatically created if they present in annotations in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.forms/form/set_autorestoreform/ +--- +## Form::set_AutoRestoreForm method + + +If set, absent form fields will be automatically created if they present in annotations. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::Form::set_AutoRestoreForm(bool value) +``` + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/form/set_calculatedfields/_index.md b/english/cpp/aspose.pdf.forms/form/set_calculatedfields/_index.md new file mode 100644 index 0000000000..714d893865 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/form/set_calculatedfields/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Forms::Form::set_CalculatedFields method +linktitle: set_CalculatedFields +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Form::set_CalculatedFields method. Allows to set order of field calculation in C++.' +type: docs +weight: 2000 +url: /cpp/aspose.pdf.forms/form/set_calculatedfields/ +--- +## Form::set_CalculatedFields method + + +Allows to set order of field calculation. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::Form::set_CalculatedFields(System::SharedPtr>> value) +``` + +## See Also + +* Class [Field](../../field/) +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/form/set_defaultappearance/_index.md b/english/cpp/aspose.pdf.forms/form/set_defaultappearance/_index.md new file mode 100644 index 0000000000..ccb403765d --- /dev/null +++ b/english/cpp/aspose.pdf.forms/form/set_defaultappearance/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Forms::Form::set_DefaultAppearance method +linktitle: set_DefaultAppearance +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Form::set_DefaultAppearance method. Sets default appearance of the form (object which describes default font, text size and color for fields on the form) in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.forms/form/set_defaultappearance/ +--- +## Form::set_DefaultAppearance method + + +Sets default appearance of the form (object which describes default font, text size and color for fields on the form). + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::Form::set_DefaultAppearance(System::SharedPtr value) +``` + +## See Also + +* Class [DefaultAppearance](../../../aspose.pdf.annotations/defaultappearance/) +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/form/set_emulaterequierdgroups/_index.md b/english/cpp/aspose.pdf.forms/form/set_emulaterequierdgroups/_index.md new file mode 100644 index 0000000000..4b9a31d3a3 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/form/set_emulaterequierdgroups/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Form::set_EmulateRequierdGroups method +linktitle: set_EmulateRequierdGroups +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Form::set_EmulateRequierdGroups method. If this property is true then additional red boundary rectangles will be drawn for required Xfa exclGroup elements containers This property was introduced because absences of analogues for the exclGroup during conversion Xfa representation of forms to standard. It is false by default in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf.forms/form/set_emulaterequierdgroups/ +--- +## Form::set_EmulateRequierdGroups method + + +If this property is true then additional red boundary rectangles will be drawn for required Xfa exclGroup elements containers This property was introduced because absences of analogues for the exclGroup during conversion Xfa representation of forms to standard. It is false by default. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::Form::set_EmulateRequierdGroups(bool value) +``` + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/form/set_ignoreneedsrendering/_index.md b/english/cpp/aspose.pdf.forms/form/set_ignoreneedsrendering/_index.md new file mode 100644 index 0000000000..6d44a8fc28 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/form/set_ignoreneedsrendering/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Form::set_IgnoreNeedsRendering method +linktitle: set_IgnoreNeedsRendering +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Form::set_IgnoreNeedsRendering method. If this property is true the value of NeedsRendering key will be ignored during conversion XFA form to Standard form. It is false by default in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.forms/form/set_ignoreneedsrendering/ +--- +## Form::set_IgnoreNeedsRendering method + + +If this property is true the value of NeedsRendering key will be ignored during conversion [XFA](../../xfa/) form to Standard form. It is false by default. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::Form::set_IgnoreNeedsRendering(bool value) +``` + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/form/set_removepermission/_index.md b/english/cpp/aspose.pdf.forms/form/set_removepermission/_index.md new file mode 100644 index 0000000000..40ebc1af86 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/form/set_removepermission/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Form::set_RemovePermission method +linktitle: set_RemovePermission +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Form::set_RemovePermission method. If this property is true the "Perms" dictionary will be removed from the pdf document after conversion dynamic documents to standard. The "Perms" dictionary can contain a rules that disturb displaying selection of mandatory fields in Adobe Acrobat reader. It is false by default in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.forms/form/set_removepermission/ +--- +## Form::set_RemovePermission method + + +If this property is true the "Perms" dictionary will be removed from the pdf document after conversion dynamic documents to standard. The "Perms" dictionary can contain a rules that disturb displaying selection of mandatory fields in Adobe Acrobat reader. It is false by default. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::Form::set_RemovePermission(bool value) +``` + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/form/set_signaturesappendonly/_index.md b/english/cpp/aspose.pdf.forms/form/set_signaturesappendonly/_index.md new file mode 100644 index 0000000000..90f69e1c26 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/form/set_signaturesappendonly/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Form::set_SignaturesAppendOnly method +linktitle: set_SignaturesAppendOnly +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Form::set_SignaturesAppendOnly method. If set, the document contains signatures that may be invalidated if the file is saved (written) in a way that alters its previous contents, as opposed to an incremental update in C++.' +type: docs +weight: 2400 +url: /cpp/aspose.pdf.forms/form/set_signaturesappendonly/ +--- +## Form::set_SignaturesAppendOnly method + + +If set, the document contains signatures that may be invalidated if the file is saved (written) in a way that alters its previous contents, as opposed to an incremental update. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::Form::set_SignaturesAppendOnly(bool value) +``` + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/form/set_signaturesexist/_index.md b/english/cpp/aspose.pdf.forms/form/set_signaturesexist/_index.md new file mode 100644 index 0000000000..1d5d911cd4 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/form/set_signaturesexist/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Form::set_SignaturesExist method +linktitle: set_SignaturesExist +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Form::set_SignaturesExist method. If set, the document contains at least one signature field in C++.' +type: docs +weight: 2200 +url: /cpp/aspose.pdf.forms/form/set_signaturesexist/ +--- +## Form::set_SignaturesExist method + + +If set, the document contains at least one signature field. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::Form::set_SignaturesExist(bool value) +``` + +## See Also + +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/form/set_type/_index.md b/english/cpp/aspose.pdf.forms/form/set_type/_index.md new file mode 100644 index 0000000000..e56f0e500d --- /dev/null +++ b/english/cpp/aspose.pdf.forms/form/set_type/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Forms::Form::set_Type method +linktitle: set_Type +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Form::set_Type method. Gets type of the form. Possible values are: Standard, Static, Dynamic in C++.' +type: docs +weight: 1800 +url: /cpp/aspose.pdf.forms/form/set_type/ +--- +## Form::set_Type method + + +Gets type of the form. Possible values are: Standard, Static, Dynamic. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::Form::set_Type(FormType value) +``` + +## See Also + +* Enum [FormType](../../formtype/) +* Class [Form](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/formtype/_index.md b/english/cpp/aspose.pdf.forms/formtype/_index.md new file mode 100644 index 0000000000..ded8fad028 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/formtype/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Forms::FormType enum +linktitle: FormType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::FormType enum. Enumeration of posible types of Acro Form in C++.' +type: docs +weight: 3300 +url: /cpp/aspose.pdf.forms/formtype/ +--- +## FormType enum + + +Enumeration of posible types of Acro [Form](../form/). + +```cpp +enum class FormType +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Standard | 0 | Standard AcroForm. | +| Static | 1 | Static [XFA](../xfa/) form. | +| Dynamic | 2 | Dynamic [XFA](../xfa/) form. | + +## See Also + +* Namespace [Aspose::Pdf::Forms](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.forms/iconcaptionposition/_index.md b/english/cpp/aspose.pdf.forms/iconcaptionposition/_index.md new file mode 100644 index 0000000000..a9148a3b87 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/iconcaptionposition/_index.md @@ -0,0 +1,34 @@ +--- +title: Aspose::Pdf::Forms::IconCaptionPosition enum +linktitle: IconCaptionPosition +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::IconCaptionPosition enum. Describes position of icon in C++.' +type: docs +weight: 3400 +url: /cpp/aspose.pdf.forms/iconcaptionposition/ +--- +## IconCaptionPosition enum + + +Describes position of icon. + +```cpp +enum class IconCaptionPosition +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| NoIcon | 0 | Icon is not displayed. | +| NoCaption | 1 | Caption is not displayed. | +| CaptionBelowIcon | 2 | Caption is below icon. | +| CaptionAboveIcon | 3 | Caption is above icon. | +| CaptionToTheRight | 4 | Caption to the right. | +| CaptionToTheLeft | 5 | Caption to the left. | +| CaptionOverlaid | 6 | Caption over laid. | + +## See Also + +* Namespace [Aspose::Pdf::Forms](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.forms/iconfit/_index.md b/english/cpp/aspose.pdf.forms/iconfit/_index.md new file mode 100644 index 0000000000..d8ff26ad36 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/iconfit/_index.md @@ -0,0 +1,40 @@ +--- +title: Aspose::Pdf::Forms::IconFit class +linktitle: IconFit +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::IconFit class. Describes how the widget annotation''s icon shall be displayed within its annotation rectangle in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.forms/iconfit/ +--- +## IconFit class + + +Describes how the widget annotation's icon shall be displayed within its annotation rectangle. + +```cpp +class IconFit : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_LeftoverBottom](./get_leftoverbottom/)() | Gets space to allocate at the bottom of the icon. | +| [get_LeftoverLeft](./get_leftoverleft/)() | Gets space to allocate at the left of the icon. | +| [get_ScalingMode](./get_scalingmode/)() | The type of scaling that shall be used. ///. | +| [get_ScalingReason](./get_scalingreason/)() | Gets scaling reason. | +| [get_SpreadOnBorder](./get_spreadonborder/)() | If true, indicates that the button appearance shall be scaled to fit fully within the bounds of the annotation without taking into consideration the line width of the border. | +| static [NameToScalingMode](./nametoscalingmode/)(System::String) | Converts scaling mode name into ScalingMode object. | +| static [NameToScalingReason](./nametoscalingreason/)(System::String) | Converts name of scaling reason into ScalingReason object. | +| static [ScalingModeToName](./scalingmodetoname/)(Aspose::Pdf::Forms::ScalingMode) | Converts scaling mode object into name. | +| static [ScalingReasonToName](./scalingreasontoname/)(Aspose::Pdf::Forms::ScalingReason) | Converts scaling reason obejct to name. | +| [set_LeftoverBottom](./set_leftoverbottom/)(double) | Sets space to allocate at the bottom of the icon. | +| [set_LeftoverLeft](./set_leftoverleft/)(double) | Sets space to allocate at the left of the icon. | +| [set_ScalingMode](./set_scalingmode/)(Aspose::Pdf::Forms::ScalingMode) | The type of scaling that shall be used. ///. | +| [set_ScalingReason](./set_scalingreason/)(Aspose::Pdf::Forms::ScalingReason) | Sets scaling reason. | +| [set_SpreadOnBorder](./set_spreadonborder/)(bool) | If true, indicates that the button appearance shall be scaled to fit fully within the bounds of the annotation without taking into consideration the line width of the border. | +## See Also + +* Namespace [Aspose::Pdf::Forms](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.forms/iconfit/get_leftoverbottom/_index.md b/english/cpp/aspose.pdf.forms/iconfit/get_leftoverbottom/_index.md new file mode 100644 index 0000000000..a6b4d09fd3 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/iconfit/get_leftoverbottom/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::IconFit::get_LeftoverBottom method +linktitle: get_LeftoverBottom +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::IconFit::get_LeftoverBottom method. Gets space to allocate at the bottom of the icon in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.forms/iconfit/get_leftoverbottom/ +--- +## IconFit::get_LeftoverBottom method + + +Gets space to allocate at the bottom of the icon. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Forms::IconFit::get_LeftoverBottom() +``` + +## See Also + +* Class [IconFit](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/iconfit/get_leftoverleft/_index.md b/english/cpp/aspose.pdf.forms/iconfit/get_leftoverleft/_index.md new file mode 100644 index 0000000000..1a9ab6a66b --- /dev/null +++ b/english/cpp/aspose.pdf.forms/iconfit/get_leftoverleft/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::IconFit::get_LeftoverLeft method +linktitle: get_LeftoverLeft +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::IconFit::get_LeftoverLeft method. Gets space to allocate at the left of the icon in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.forms/iconfit/get_leftoverleft/ +--- +## IconFit::get_LeftoverLeft method + + +Gets space to allocate at the left of the icon. + +```cpp +ASPOSE_PDF_SHARED_API double Aspose::Pdf::Forms::IconFit::get_LeftoverLeft() +``` + +## See Also + +* Class [IconFit](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/iconfit/get_scalingmode/_index.md b/english/cpp/aspose.pdf.forms/iconfit/get_scalingmode/_index.md new file mode 100644 index 0000000000..536f4b4bcd --- /dev/null +++ b/english/cpp/aspose.pdf.forms/iconfit/get_scalingmode/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Forms::IconFit::get_ScalingMode method +linktitle: get_ScalingMode +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::IconFit::get_ScalingMode method. The type of scaling that shall be used. /// in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.forms/iconfit/get_scalingmode/ +--- +## IconFit::get_ScalingMode method + + +The type of scaling that shall be used. ///. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Forms::ScalingMode Aspose::Pdf::Forms::IconFit::get_ScalingMode() +``` + +## See Also + +* Enum [ScalingMode](../../scalingmode/) +* Class [IconFit](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/iconfit/get_scalingreason/_index.md b/english/cpp/aspose.pdf.forms/iconfit/get_scalingreason/_index.md new file mode 100644 index 0000000000..ebb955a582 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/iconfit/get_scalingreason/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Forms::IconFit::get_ScalingReason method +linktitle: get_ScalingReason +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::IconFit::get_ScalingReason method. Gets scaling reason in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.forms/iconfit/get_scalingreason/ +--- +## IconFit::get_ScalingReason method + + +Gets scaling reason. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Forms::ScalingReason Aspose::Pdf::Forms::IconFit::get_ScalingReason() +``` + +## See Also + +* Enum [ScalingReason](../../scalingreason/) +* Class [IconFit](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/iconfit/get_spreadonborder/_index.md b/english/cpp/aspose.pdf.forms/iconfit/get_spreadonborder/_index.md new file mode 100644 index 0000000000..c94e1677b4 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/iconfit/get_spreadonborder/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::IconFit::get_SpreadOnBorder method +linktitle: get_SpreadOnBorder +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::IconFit::get_SpreadOnBorder method. If true, indicates that the button appearance shall be scaled to fit fully within the bounds of the annotation without taking into consideration the line width of the border in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.forms/iconfit/get_spreadonborder/ +--- +## IconFit::get_SpreadOnBorder method + + +If true, indicates that the button appearance shall be scaled to fit fully within the bounds of the annotation without taking into consideration the line width of the border. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Forms::IconFit::get_SpreadOnBorder() +``` + +## See Also + +* Class [IconFit](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/iconfit/nametoscalingmode/_index.md b/english/cpp/aspose.pdf.forms/iconfit/nametoscalingmode/_index.md new file mode 100644 index 0000000000..6862355ede --- /dev/null +++ b/english/cpp/aspose.pdf.forms/iconfit/nametoscalingmode/_index.md @@ -0,0 +1,45 @@ +--- +title: Aspose::Pdf::Forms::IconFit::NameToScalingMode method +linktitle: NameToScalingMode +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::IconFit::NameToScalingMode method. Converts scaling mode name into ScalingMode object in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.forms/iconfit/nametoscalingmode/ +--- +## IconFit::NameToScalingMode method + + +Converts scaling mode name into ScalingMode object. + +```cpp +static ASPOSE_PDF_SHARED_API Aspose::Pdf::Forms::ScalingMode Aspose::Pdf::Forms::IconFit::NameToScalingMode(System::String mode) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| mode | System::String | Scaling mode name. | + +### ReturnValue + +Scaling mode object. +## Remarks + + + + + + mode + + + Scaling mode name. + + + +## See Also + +* Enum [ScalingMode](../../scalingmode/) +* Class [IconFit](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/iconfit/nametoscalingreason/_index.md b/english/cpp/aspose.pdf.forms/iconfit/nametoscalingreason/_index.md new file mode 100644 index 0000000000..aaace88122 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/iconfit/nametoscalingreason/_index.md @@ -0,0 +1,45 @@ +--- +title: Aspose::Pdf::Forms::IconFit::NameToScalingReason method +linktitle: NameToScalingReason +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::IconFit::NameToScalingReason method. Converts name of scaling reason into ScalingReason object in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.forms/iconfit/nametoscalingreason/ +--- +## IconFit::NameToScalingReason method + + +Converts name of scaling reason into ScalingReason object. + +```cpp +static ASPOSE_PDF_SHARED_API Aspose::Pdf::Forms::ScalingReason Aspose::Pdf::Forms::IconFit::NameToScalingReason(System::String reason) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| reason | System::String | Name of scaling reason. | + +### ReturnValue + +Scaling reason object. +## Remarks + + + + + + reason + + + Name of scaling reason. + + + +## See Also + +* Enum [ScalingReason](../../scalingreason/) +* Class [IconFit](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/iconfit/scalingmodetoname/_index.md b/english/cpp/aspose.pdf.forms/iconfit/scalingmodetoname/_index.md new file mode 100644 index 0000000000..b5c240169a --- /dev/null +++ b/english/cpp/aspose.pdf.forms/iconfit/scalingmodetoname/_index.md @@ -0,0 +1,45 @@ +--- +title: Aspose::Pdf::Forms::IconFit::ScalingModeToName method +linktitle: ScalingModeToName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::IconFit::ScalingModeToName method. Converts scaling mode object into name in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.forms/iconfit/scalingmodetoname/ +--- +## IconFit::ScalingModeToName method + + +Converts scaling mode object into name. + +```cpp +static ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Forms::IconFit::ScalingModeToName(Aspose::Pdf::Forms::ScalingMode mode) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| mode | Aspose::Pdf::Forms::ScalingMode | Scaling mode object. | + +### ReturnValue + +Scaling mode name. +## Remarks + + + + + + mode + + + Scaling mode object. + + + +## See Also + +* Enum [ScalingMode](../../scalingmode/) +* Class [IconFit](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/iconfit/scalingreasontoname/_index.md b/english/cpp/aspose.pdf.forms/iconfit/scalingreasontoname/_index.md new file mode 100644 index 0000000000..5aaee58dd4 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/iconfit/scalingreasontoname/_index.md @@ -0,0 +1,45 @@ +--- +title: Aspose::Pdf::Forms::IconFit::ScalingReasonToName method +linktitle: ScalingReasonToName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::IconFit::ScalingReasonToName method. Converts scaling reason obejct to name in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.forms/iconfit/scalingreasontoname/ +--- +## IconFit::ScalingReasonToName method + + +Converts scaling reason obejct to name. + +```cpp +static ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Forms::IconFit::ScalingReasonToName(Aspose::Pdf::Forms::ScalingReason reason) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| reason | Aspose::Pdf::Forms::ScalingReason | Scaling reason object to be converted. | + +### ReturnValue + +Name of scaling reasong. +## Remarks + + + + + + reason + + + Scaling reason object to be converted. + + + +## See Also + +* Enum [ScalingReason](../../scalingreason/) +* Class [IconFit](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/iconfit/set_leftoverbottom/_index.md b/english/cpp/aspose.pdf.forms/iconfit/set_leftoverbottom/_index.md new file mode 100644 index 0000000000..764a73e849 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/iconfit/set_leftoverbottom/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::IconFit::set_LeftoverBottom method +linktitle: set_LeftoverBottom +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::IconFit::set_LeftoverBottom method. Sets space to allocate at the bottom of the icon in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.forms/iconfit/set_leftoverbottom/ +--- +## IconFit::set_LeftoverBottom method + + +Sets space to allocate at the bottom of the icon. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::IconFit::set_LeftoverBottom(double value) +``` + +## See Also + +* Class [IconFit](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/iconfit/set_leftoverleft/_index.md b/english/cpp/aspose.pdf.forms/iconfit/set_leftoverleft/_index.md new file mode 100644 index 0000000000..4a6b2b98e7 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/iconfit/set_leftoverleft/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::IconFit::set_LeftoverLeft method +linktitle: set_LeftoverLeft +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::IconFit::set_LeftoverLeft method. Sets space to allocate at the left of the icon in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.forms/iconfit/set_leftoverleft/ +--- +## IconFit::set_LeftoverLeft method + + +Sets space to allocate at the left of the icon. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::IconFit::set_LeftoverLeft(double value) +``` + +## See Also + +* Class [IconFit](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/iconfit/set_scalingmode/_index.md b/english/cpp/aspose.pdf.forms/iconfit/set_scalingmode/_index.md new file mode 100644 index 0000000000..b0cdbc3785 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/iconfit/set_scalingmode/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Forms::IconFit::set_ScalingMode method +linktitle: set_ScalingMode +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::IconFit::set_ScalingMode method. The type of scaling that shall be used. /// in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.forms/iconfit/set_scalingmode/ +--- +## IconFit::set_ScalingMode method + + +The type of scaling that shall be used. ///. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::IconFit::set_ScalingMode(Aspose::Pdf::Forms::ScalingMode value) +``` + +## See Also + +* Enum [ScalingMode](../../scalingmode/) +* Class [IconFit](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/iconfit/set_scalingreason/_index.md b/english/cpp/aspose.pdf.forms/iconfit/set_scalingreason/_index.md new file mode 100644 index 0000000000..ebff958233 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/iconfit/set_scalingreason/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Forms::IconFit::set_ScalingReason method +linktitle: set_ScalingReason +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::IconFit::set_ScalingReason method. Sets scaling reason in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.forms/iconfit/set_scalingreason/ +--- +## IconFit::set_ScalingReason method + + +Sets scaling reason. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::IconFit::set_ScalingReason(Aspose::Pdf::Forms::ScalingReason value) +``` + +## See Also + +* Enum [ScalingReason](../../scalingreason/) +* Class [IconFit](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/iconfit/set_spreadonborder/_index.md b/english/cpp/aspose.pdf.forms/iconfit/set_spreadonborder/_index.md new file mode 100644 index 0000000000..c350a8e347 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/iconfit/set_spreadonborder/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::IconFit::set_SpreadOnBorder method +linktitle: set_SpreadOnBorder +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::IconFit::set_SpreadOnBorder method. If true, indicates that the button appearance shall be scaled to fit fully within the bounds of the annotation without taking into consideration the line width of the border in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.forms/iconfit/set_spreadonborder/ +--- +## IconFit::set_SpreadOnBorder method + + +If true, indicates that the button appearance shall be scaled to fit fully within the bounds of the annotation without taking into consideration the line width of the border. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::IconFit::set_SpreadOnBorder(bool value) +``` + +## See Also + +* Class [IconFit](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/listboxfield/_index.md b/english/cpp/aspose.pdf.forms/listboxfield/_index.md new file mode 100644 index 0000000000..1991e3ee5b --- /dev/null +++ b/english/cpp/aspose.pdf.forms/listboxfield/_index.md @@ -0,0 +1,156 @@ +--- +title: Aspose::Pdf::Forms::ListBoxField class +linktitle: ListBoxField +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ListBoxField class. Class represents ListBox field in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.forms/listboxfield/ +--- +## ListBoxField class + + +Class represents ListBox field. + +```cpp +class ListBoxField : public Aspose::Pdf::Forms::ChoiceField +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Accept](../../aspose.pdf.annotations/widgetannotation/accept/)(System::SharedPtr\) override | Accepts visitor. | +| virtual [AddOption](../choicefield/addoption/)(System::String) | Adds new option with specified name. | +| virtual [AddOption](../choicefield/addoption/)(System::String, System::String) | Adds new option with specified export value and name. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| virtual [ChangeAfterResize](../../aspose.pdf.annotations/annotation/changeafterresize/)(System::SharedPtr\) | Update parameters and appearance, according to the matrix transform. | +| [ChoiceField](../choicefield/choicefield/)(System::SharedPtr\, System::SharedPtr\) | Constructor for [ChoiceField](../choicefield/). | +| [ChoiceField](../choicefield/choicefield/)(System::SharedPtr\) | Creates choice field (for Generator) | +| [ChoiceField](../choicefield/choicefield/)(System::SharedPtr\, System::SharedPtr\) | Constructor for [ChoiceField](../choicefield/). | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [CopyTo](../field/copyto/)(System::ArrayPtr\\>, int32_t) | Copies subfields of this field into array starting from specified index. | +| [CopyToWidgetArray](../field/copytowidgetarray/)(System::ArrayPtr\\>, int32_t) | Copies subfields of this field into array starting from specified index. | +| virtual [DeleteOption](../choicefield/deleteoption/)(System::String) | Deletes option by its name. | +| [ExecuteFieldJavaScript](../field/executefieldjavascript/)(System::SharedPtr\) | Executes a specified JavaScript action for the field. | +| [Field](../field/field/)(System::SharedPtr\) | Creates field for use in Generator. | +| [Flatten](../../aspose.pdf.annotations/annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](../../aspose.pdf.annotations/widgetannotation/get_actions/)() const | Gets the annotation actions. | +| [get_Actions](../../aspose.pdf.annotations/annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../../aspose.pdf.annotations/annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../../aspose.pdf.annotations/annotation/get_alignment/)() | [Annotation](../../aspose.pdf.annotations/annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [get_AlternateName](../field/get_alternatename/)() | Gets alternate name of the field (An alternate field name that shall be used in place of the actual field name wherever the field shall be identified in the user interface). Alternate name is used as field tooltip in Adobe Acrobat. | +| [get_AnnotationIndex](../field/get_annotationindex/)() | Gets index of this anotation on the page. | +| [get_AnnotationType](../../aspose.pdf.annotations/widgetannotation/get_annotationtype/)() override | Gets type of annotation. | +| [get_Appearance](../../aspose.pdf.annotations/annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../../aspose.pdf.annotations/annotation/get_border/)() const | Gets annotation border characteristics. [Border](../../aspose.pdf.annotations/border/) | +| [get_Characteristics](../../aspose.pdf.annotations/annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../../aspose.pdf.annotations/annotation/get_color/)() | Gets annotation color. | +| [get_CommitImmediately](../choicefield/get_commitimmediately/)() | Gets commit on selection change flag. | +| [get_Contents](../../aspose.pdf.annotations/annotation/get_contents/)() | Gets annotation text. | +| [get_Count](../field/get_count/)() const override | Gets number of subfields in this field. (For example number of items in radio button field). | +| [get_DefaultAppearance](../../aspose.pdf.annotations/widgetannotation/get_defaultappearance/)() | Gets default appearance of the field. | +| [get_Exportable](../../aspose.pdf.annotations/widgetannotation/get_exportable/)() | Gets exportable flag of the field. | +| static [get_FitIntoRectangle](../field/get_fitintorectangle/)() | If true then font size will reduced to fit text to specified rectangle. | +| [get_Flags](../../aspose.pdf.annotations/annotation/get_flags/)() | Flags of the annotation. | +| [get_FullName](../../aspose.pdf.annotations/annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../../aspose.pdf.annotations/annotation/get_height/)() | Gets height of the annotation. | +| [get_Highlighting](../../aspose.pdf.annotations/widgetannotation/get_highlighting/)() | [Annotation](../../aspose.pdf.annotations/annotation/) highlighting mode. | +| [get_HorizontalAlignment](../../aspose.pdf.annotations/annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsGroup](../field/get_isgroup/)() const | Gets boolean value which indicates is this field non-terminal field i.e. group of fields. | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_IsSharedField](../field/get_issharedfield/)() const | Property for Generator support. Used when field is added to header or footer. If true, this field will created once and it's appearance will be visible on all pages of the document. If false, separated field will be created for every document page. | +| [get_IsSynchronized](../field/get_issynchronized/)() | Returns true if dictionary is synchronized. | +| [get_MappingName](../field/get_mappingname/)() | Gets mapping name of the field that shall be used when exporting interactive form field data from the document. | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| static [get_MaxFontSize](../field/get_maxfontsize/)() | Maximail font size which can be used for field contents. -1 to don't check size. | +| static [get_MinFontSize](../field/get_minfontsize/)() | Minimal font size which can be used for field contents. -1 to don't check size. | +| [get_Modified](../../aspose.pdf.annotations/annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_MultiSelect](../choicefield/get_multiselect/)() | Gets multiselection flag. | +| [get_Name](../../aspose.pdf.annotations/annotation/get_name/)() | Gets annotation name on the page. | +| [get_OnActivated](../../aspose.pdf.annotations/widgetannotation/get_onactivated/)() | An action which shall be performed when the annotation is activated. | +| virtual [get_Options](../choicefield/get_options/)() | Gets collection of choice options. | +| [get_PageIndex](../field/get_pageindex/)() override | Gets index of page which contains this field. | +| [get_Parent](../../aspose.pdf.annotations/widgetannotation/get_parent/)() | Gets annotation parent. | +| [get_PartialName](../field/get_partialname/)() | Gets partial name of the field. | +| [get_ReadOnly](../../aspose.pdf.annotations/widgetannotation/get_readonly/)() | Gets read only status of the field. | +| [get_Rect](../field/get_rect/)() override | Gets the field rectangle. | +| [get_Required](../../aspose.pdf.annotations/widgetannotation/get_required/)() | Gets required status of the field. | +| virtual [get_Selected](../choicefield/get_selected/)() | Gets index of selected option. This property allows to change selection. | +| virtual [get_SelectedItems](../choicefield/get_selecteditems/)() | Gets array of selected items. For multiselect list array contains more then one item. For single selection list it contains single item. | +| [get_States](../../aspose.pdf.annotations/annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_SyncRoot](../field/get_syncroot/)() const | Synchronization object. | +| [get_TabOrder](../field/get_taborder/)() | Gets tab order of the field. | +| [get_TextHorizontalAlignment](../../aspose.pdf.annotations/annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| [get_TopIndex](./get_topindex/)() | Gets index of the top visible element of the list. | +| static [get_UpdateAppearanceOnConvert](../../aspose.pdf.annotations/annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../../aspose.pdf.annotations/annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| [get_Value](../choicefield/get_value/)() override | Gets value of the field. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../../aspose.pdf.annotations/annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetCheckedStateName](../../aspose.pdf.annotations/widgetannotation/getcheckedstatename/)() | Returns name of "checked" state according to existing state names. | +| [GetEnumerator](../field/getenumerator/)() override | Returns enumerator of contained fields. | +| [GetRectangle](../../aspose.pdf.annotations/annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| [idx_get](../field/idx_get/)(System::String) | Gets subfield contained in this field by name of the subfield. | +| [idx_get](../field/idx_get/)(int32_t) | Gets subfield contained in this field by index. | +| [ListBoxField](./listboxfield/)() | Constructor for [ListBoxField](./) to be used in Generator. | +| [ListBoxField](./listboxfield/)(System::SharedPtr\, System::SharedPtr\) | Creates new ListBox field. | +| [ListBoxField](./listboxfield/)(System::SharedPtr\, System::SharedPtr\) | Constructor for ListBox field. | +| [Recalculate](../field/recalculate/)() | Recaculates all calculated fields on the form. | +| virtual [set_ActiveState](../../aspose.pdf.annotations/annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../../aspose.pdf.annotations/annotation/set_alignment/)(TextAlignment) | [Annotation](../../aspose.pdf.annotations/annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_AlternateName](../field/set_alternatename/)(System::String) | Sets alternate name of the field (An alternate field name that shall be used in place of the actual field name wherever the field shall be identified in the user interface). Alternate name is used as field tooltip in Adobe Acrobat. | +| [set_AnnotationIndex](../field/set_annotationindex/)(int32_t) | Sets index of this anotation on the page. | +| [set_Border](../../aspose.pdf.annotations/annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../../aspose.pdf.annotations/border/) | +| [set_Color](../../aspose.pdf.annotations/annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_CommitImmediately](../choicefield/set_commitimmediately/)(bool) | Sets commit on selection change flag. | +| [set_Contents](../../aspose.pdf.annotations/annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_DefaultAppearance](../../aspose.pdf.annotations/widgetannotation/set_defaultappearance/)(System::SharedPtr\) | Sets default appearance of the field. | +| [set_Exportable](../../aspose.pdf.annotations/widgetannotation/set_exportable/)(bool) | Sets exportable flag of the field. | +| static [set_FitIntoRectangle](../field/set_fitintorectangle/)(bool) | If true then font size will reduced to fit text to specified rectangle. | +| [set_Flags](../../aspose.pdf.annotations/annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| virtual [set_Height](../../aspose.pdf.annotations/annotation/set_height/)(double) | Sets height of the annotation. | +| [set_Highlighting](../../aspose.pdf.annotations/widgetannotation/set_highlighting/)(HighlightingMode) | [Annotation](../../aspose.pdf.annotations/annotation/) highlighting mode. | +| [set_HorizontalAlignment](../../aspose.pdf.annotations/annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_IsSharedField](../field/set_issharedfield/)(bool) | Property for Generator support. Used when field is added to header or footer. If true, this field will created once and it's appearance will be visible on all pages of the document. If false, separated field will be created for every document page. | +| [set_MappingName](../field/set_mappingname/)(System::String) | Sets mapping name of the field that shall be used when exporting interactive form field data from the document. | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| static [set_MaxFontSize](../field/set_maxfontsize/)(double) | Maximail font size which can be used for field contents. -1 to don't check size. | +| static [set_MinFontSize](../field/set_minfontsize/)(double) | Minimal font size which can be used for field contents. -1 to don't check size. | +| [set_Modified](../../aspose.pdf.annotations/annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_MultiSelect](../choicefield/set_multiselect/)(bool) | Sets multiselection flag. | +| [set_Name](../../aspose.pdf.annotations/annotation/set_name/)(System::String) | Sets annotation name on the page. | +| [set_OnActivated](../../aspose.pdf.annotations/widgetannotation/set_onactivated/)(System::SharedPtr\) | An action which shall be performed when the annotation is activated. | +| [set_PartialName](../field/set_partialname/)(System::String) | Sets partial name of the field. | +| [set_ReadOnly](../../aspose.pdf.annotations/widgetannotation/set_readonly/)(bool) | Sets read only status of the field. | +| [set_Rect](../field/set_rect/)(System::SharedPtr\) override | Sets the field rectangle. | +| [set_Required](../../aspose.pdf.annotations/widgetannotation/set_required/)(bool) | Sets required status of the field. | +| [set_Selected](./set_selected/)(int32_t) override | Sets index of the selected item. Items are numbered from 1. | +| [set_SelectedItems](./set_selecteditems/)(System::ArrayPtr\) override | Sets array of the selected items in the multiselect list. For single-select list returns array with single item. | +| [set_TabOrder](../field/set_taborder/)(int32_t) | Sets tab order of the field. | +| [set_TextHorizontalAlignment](../../aspose.pdf.annotations/annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| [set_TopIndex](./set_topindex/)(int32_t) | Sets index of the top visible element of the list. | +| static [set_UpdateAppearanceOnConvert](../../aspose.pdf.annotations/annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../../aspose.pdf.annotations/annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| [set_Value](../choicefield/set_value/)(System::String) override | Sets value of the field. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../../aspose.pdf.annotations/annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| virtual [SetPosition](../field/setposition/)(System::SharedPtr\) | Set position of the field. | +| [SetTemplateWeakPtr](../field/settemplateweakptr/)(uint32_t) override | Set n'th template argument a weak pointer (rather than shared). Allows switching pointers in containers to weak mode. | +| [WidgetAnnotation](../../aspose.pdf.annotations/widgetannotation/widgetannotation/)(System::SharedPtr\) | Create annotation (used for Generator) | +## See Also + +* Class [ChoiceField](../choicefield/) +* Namespace [Aspose::Pdf::Forms](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.forms/listboxfield/get_topindex/_index.md b/english/cpp/aspose.pdf.forms/listboxfield/get_topindex/_index.md new file mode 100644 index 0000000000..c9cff9b6d0 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/listboxfield/get_topindex/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::ListBoxField::get_TopIndex method +linktitle: get_TopIndex +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ListBoxField::get_TopIndex method. Gets index of the top visible element of the list in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.forms/listboxfield/get_topindex/ +--- +## ListBoxField::get_TopIndex method + + +Gets index of the top visible element of the list. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Forms::ListBoxField::get_TopIndex() +``` + +## See Also + +* Class [ListBoxField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/listboxfield/listboxfield/_index.md b/english/cpp/aspose.pdf.forms/listboxfield/listboxfield/_index.md new file mode 100644 index 0000000000..3319cf30c2 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/listboxfield/listboxfield/_index.md @@ -0,0 +1,111 @@ +--- +title: Aspose::Pdf::Forms::ListBoxField::ListBoxField constructor +linktitle: ListBoxField +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ListBoxField::ListBoxField constructor. Constructor for ListBoxField to be used in Generator in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.forms/listboxfield/listboxfield/ +--- +## ListBoxField::ListBoxField() constructor + + +Constructor for [ListBoxField](../) to be used in Generator. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Forms::ListBoxField::ListBoxField() +``` + +## See Also + +* Class [ListBoxField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) +## ListBoxField::ListBoxField(System::SharedPtr\, System::SharedPtr\) constructor + + +Creates new ListBox field. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Forms::ListBoxField::ListBoxField(System::SharedPtr page, System::SharedPtr rect) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | [Page](../../../aspose.pdf/page/) where list box will be placed. | +| rect | System::SharedPtr\ | [Rectangle](../../../aspose.pdf/rectangle/) where list box will be placed on the page. | +## Remarks + + + + + + page + + + + Page where list box will be placed. + + + + + rect + + + + Rectangle where list box will be placed on the page. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [ListBoxField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) +## ListBoxField::ListBoxField(System::SharedPtr\, System::SharedPtr\) constructor + + +Constructor for ListBox field. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Forms::ListBoxField::ListBoxField(System::SharedPtr doc, System::SharedPtr rect) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| doc | System::SharedPtr\ | [Document](../../../aspose.pdf/document/) to which this field will belong. | +| rect | System::SharedPtr\ | [Rectangle](../../../aspose.pdf/rectangle/) where list box will be placed. | +## Remarks + + + + + + doc + + + + Document to which this field will belong. + + + + + rect + + + + Rectangle where list box will be placed. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [ListBoxField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/listboxfield/set_selected/_index.md b/english/cpp/aspose.pdf.forms/listboxfield/set_selected/_index.md new file mode 100644 index 0000000000..a0e8b08a16 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/listboxfield/set_selected/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::ListBoxField::set_Selected method +linktitle: set_Selected +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ListBoxField::set_Selected method. Sets index of the selected item. Items are numbered from 1 in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.forms/listboxfield/set_selected/ +--- +## ListBoxField::set_Selected method + + +Sets index of the selected item. Items are numbered from 1. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::ListBoxField::set_Selected(int32_t value) override +``` + +## See Also + +* Class [ListBoxField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/listboxfield/set_selecteditems/_index.md b/english/cpp/aspose.pdf.forms/listboxfield/set_selecteditems/_index.md new file mode 100644 index 0000000000..207e0aa009 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/listboxfield/set_selecteditems/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::ListBoxField::set_SelectedItems method +linktitle: set_SelectedItems +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ListBoxField::set_SelectedItems method. Sets array of the selected items in the multiselect list. For single-select list returns array with single item in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.forms/listboxfield/set_selecteditems/ +--- +## ListBoxField::set_SelectedItems method + + +Sets array of the selected items in the multiselect list. For single-select list returns array with single item. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::ListBoxField::set_SelectedItems(System::ArrayPtr value) override +``` + +## See Also + +* Class [ListBoxField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/listboxfield/set_topindex/_index.md b/english/cpp/aspose.pdf.forms/listboxfield/set_topindex/_index.md new file mode 100644 index 0000000000..04ea2e4441 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/listboxfield/set_topindex/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::ListBoxField::set_TopIndex method +linktitle: set_TopIndex +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::ListBoxField::set_TopIndex method. Sets index of the top visible element of the list in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.forms/listboxfield/set_topindex/ +--- +## ListBoxField::set_TopIndex method + + +Sets index of the top visible element of the list. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::ListBoxField::set_TopIndex(int32_t value) +``` + +## See Also + +* Class [ListBoxField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/numberfield/_index.md b/english/cpp/aspose.pdf.forms/numberfield/_index.md new file mode 100644 index 0000000000..232923dd4b --- /dev/null +++ b/english/cpp/aspose.pdf.forms/numberfield/_index.md @@ -0,0 +1,160 @@ +--- +title: Aspose::Pdf::Forms::NumberField class +linktitle: NumberField +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::NumberField class. TextField with specified valid chars in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.forms/numberfield/ +--- +## NumberField class + + +[Text](../../aspose.pdf.text/)[Field](../field/) with specified valid chars. + +```cpp +class NumberField : public Aspose::Pdf::Forms::TextBoxField +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Accept](../../aspose.pdf.annotations/widgetannotation/accept/)(System::SharedPtr\) override | Accepts visitor. | +| [AddBarcode](../textboxfield/addbarcode/)(System::String) | Adds barcode 128 into the field. [Field](../field/) value will be changed onto the code and field become read only. | +| [AddImage](../textboxfield/addimage/)(System::SharedPtr\) | Adds image into the field resources and draws it. | +| [BaseParagraph](../../aspose.pdf/baseparagraph/baseparagraph/)() | | +| virtual [ChangeAfterResize](../../aspose.pdf.annotations/annotation/changeafterresize/)(System::SharedPtr\) | Update parameters and appearance, according to the matrix transform. | +| [Clone](../../aspose.pdf/baseparagraph/clone/)() override | Clones this instance. Virtual method. Always return null. | +| [CopyTo](../field/copyto/)(System::ArrayPtr\\>, int32_t) | Copies subfields of this field into array starting from specified index. | +| [CopyToWidgetArray](../field/copytowidgetarray/)(System::ArrayPtr\\>, int32_t) | Copies subfields of this field into array starting from specified index. | +| [ExecuteFieldJavaScript](../field/executefieldjavascript/)(System::SharedPtr\) | Executes a specified JavaScript action for the field. | +| [Field](../field/field/)(System::SharedPtr\) | Creates field for use in Generator. | +| [Flatten](../../aspose.pdf.annotations/annotation/flatten/)() | Places annotation contents directly on the page, annotation object will be removed. | +| [get_Actions](../../aspose.pdf.annotations/widgetannotation/get_actions/)() const | Gets the annotation actions. | +| [get_Actions](../../aspose.pdf.annotations/annotation/get_actions/)() | Gets list of annotatation actions. | +| virtual [get_ActiveState](../../aspose.pdf.annotations/annotation/get_activestate/)() | Gets current annotation appearance state. | +| [get_Alignment](../../aspose.pdf.annotations/annotation/get_alignment/)() | [Annotation](../../aspose.pdf.annotations/annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [get_AllowedChars](./get_allowedchars/)() const | Gets the allowed chars. | +| [get_AlternateName](../field/get_alternatename/)() | Gets alternate name of the field (An alternate field name that shall be used in place of the actual field name wherever the field shall be identified in the user interface). Alternate name is used as field tooltip in Adobe Acrobat. | +| [get_AnnotationIndex](../field/get_annotationindex/)() | Gets index of this anotation on the page. | +| [get_AnnotationType](../../aspose.pdf.annotations/widgetannotation/get_annotationtype/)() override | Gets type of annotation. | +| [get_Appearance](../../aspose.pdf.annotations/annotation/get_appearance/)() | Gets appearance dictionary of the annotation. | +| [get_Border](../../aspose.pdf.annotations/annotation/get_border/)() const | Gets annotation border characteristics. [Border](../../aspose.pdf.annotations/border/) | +| [get_Characteristics](../../aspose.pdf.annotations/annotation/get_characteristics/)() | Gets annotation characteristics. | +| [get_Color](../../aspose.pdf.annotations/annotation/get_color/)() | Gets annotation color. | +| [get_Contents](../../aspose.pdf.annotations/annotation/get_contents/)() | Gets annotation text. | +| [get_Count](../field/get_count/)() const override | Gets number of subfields in this field. (For example number of items in radio button field). | +| [get_DefaultAppearance](../../aspose.pdf.annotations/widgetannotation/get_defaultappearance/)() | Gets default appearance of the field. | +| [get_Exportable](../../aspose.pdf.annotations/widgetannotation/get_exportable/)() | Gets exportable flag of the field. | +| static [get_FitIntoRectangle](../field/get_fitintorectangle/)() | If true then font size will reduced to fit text to specified rectangle. | +| [get_Flags](../../aspose.pdf.annotations/annotation/get_flags/)() | Flags of the annotation. | +| [get_ForceCombs](../textboxfield/get_forcecombs/)() | Gets flag which indicates is field divided into spaced positions. | +| [get_FullName](../../aspose.pdf.annotations/annotation/get_fullname/)() | Gets full qualified name of the annotation. | +| virtual [get_Height](../../aspose.pdf.annotations/annotation/get_height/)() | Gets height of the annotation. | +| [get_Highlighting](../../aspose.pdf.annotations/widgetannotation/get_highlighting/)() | [Annotation](../../aspose.pdf.annotations/annotation/) highlighting mode. | +| [get_HorizontalAlignment](../../aspose.pdf.annotations/annotation/get_horizontalalignment/)() override | Gets text alignment for annotation. | +| virtual [get_Hyperlink](../../aspose.pdf/baseparagraph/get_hyperlink/)() | Gets the fragment hyperlink(for pdf generator). | +| [get_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/get_isfirstparagraphincolumn/)() const | Gets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [get_IsGroup](../field/get_isgroup/)() const | Gets boolean value which indicates is this field non-terminal field i.e. group of fields. | +| [get_IsInLineParagraph](../../aspose.pdf/baseparagraph/get_isinlineparagraph/)() const | Gets a paragraph is inline. Default is false.(for pdf generation) | +| [get_IsInNewPage](../../aspose.pdf/baseparagraph/get_isinnewpage/)() const | Gets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [get_IsKeptWithNext](../../aspose.pdf/baseparagraph/get_iskeptwithnext/)() const | Gets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [get_IsSharedField](../field/get_issharedfield/)() const | Property for Generator support. Used when field is added to header or footer. If true, this field will created once and it's appearance will be visible on all pages of the document. If false, separated field will be created for every document page. | +| [get_IsSynchronized](../field/get_issynchronized/)() | Returns true if dictionary is synchronized. | +| [get_MappingName](../field/get_mappingname/)() | Gets mapping name of the field that shall be used when exporting interactive form field data from the document. | +| [get_Margin](../../aspose.pdf/baseparagraph/get_margin/)() | Gets a outer margin for paragraph (for pdf generation) | +| static [get_MaxFontSize](../field/get_maxfontsize/)() | Maximail font size which can be used for field contents. -1 to don't check size. | +| [get_MaxLen](../textboxfield/get_maxlen/)() | Gets maximum length of text in the field. | +| static [get_MinFontSize](../field/get_minfontsize/)() | Minimal font size which can be used for field contents. -1 to don't check size. | +| [get_Modified](../../aspose.pdf.annotations/annotation/get_modified/)() | Gets date and time when annotation was recently modified. | +| [get_Multiline](../textboxfield/get_multiline/)() | Gets multiline flag of the field. If Multiline is true field can contain multiple lines of text. | +| [get_Name](../../aspose.pdf.annotations/annotation/get_name/)() | Gets annotation name on the page. | +| [get_OnActivated](../../aspose.pdf.annotations/widgetannotation/get_onactivated/)() | An action which shall be performed when the annotation is activated. | +| [get_PageIndex](../field/get_pageindex/)() override | Gets index of page which contains this field. | +| [get_Parent](../../aspose.pdf.annotations/widgetannotation/get_parent/)() | Gets annotation parent. | +| [get_PartialName](../field/get_partialname/)() | Gets partial name of the field. | +| [get_ReadOnly](../../aspose.pdf.annotations/widgetannotation/get_readonly/)() | Gets read only status of the field. | +| [get_Rect](../field/get_rect/)() override | Gets the field rectangle. | +| [get_Required](../../aspose.pdf.annotations/widgetannotation/get_required/)() | Gets required status of the field. | +| [get_Scrollable](../textboxfield/get_scrollable/)() | Gets scrollable flag of field. If true field can be scrolled. | +| [get_SpellCheck](../textboxfield/get_spellcheck/)() | Gets spellcheck flag for field. If true field shall be spell checked. | +| [get_States](../../aspose.pdf.annotations/annotation/get_states/)() | Gets appearance dictionary of annotation. | +| [get_SyncRoot](../field/get_syncroot/)() const | Synchronization object. | +| [get_TabOrder](../field/get_taborder/)() | Gets tab order of the field. | +| [get_TextHorizontalAlignment](../../aspose.pdf.annotations/annotation/get_texthorizontalalignment/)() | Gets text alignment for annotation. | +| [get_TextVerticalAlignment](../textboxfield/get_textverticalalignment/)() const | Gets text vertical alignment for annotation. | +| static [get_UpdateAppearanceOnConvert](../../aspose.pdf.annotations/annotation/get_updateappearanceonconvert/)() | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [get_UseFontSubset](../../aspose.pdf.annotations/annotation/get_usefontsubset/)() | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| [get_Value](../textboxfield/get_value/)() override | Gets value of the field. | +| virtual [get_VerticalAlignment](../../aspose.pdf/baseparagraph/get_verticalalignment/)() | Gets a vertical alignment of paragraph. | +| virtual [get_Width](../../aspose.pdf.annotations/annotation/get_width/)() | Gets width of the annotation. | +| [get_ZIndex](../../aspose.pdf/baseparagraph/get_zindex/)() const | Gets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| [GetCheckedStateName](../../aspose.pdf.annotations/widgetannotation/getcheckedstatename/)() | Returns name of "checked" state according to existing state names. | +| [GetEnumerator](../field/getenumerator/)() override | Returns enumerator of contained fields. | +| [GetRectangle](../../aspose.pdf.annotations/annotation/getrectangle/)(bool) | Returns rectangle of annotation taking into consideration page rotation. | +| [idx_get](../field/idx_get/)(System::String) | Gets subfield contained in this field by name of the subfield. | +| [idx_get](../field/idx_get/)(int32_t) | Gets subfield contained in this field by index. | +| [NumberField](./numberfield/)() | Initializes a new instance of the [NumberField](./) class. | +| [NumberField](./numberfield/)(System::SharedPtr\, System::SharedPtr\) | Initializes a new instance of the [NumberField](./) class. | +| [NumberField](./numberfield/)(System::SharedPtr\, System::SharedPtr\) | Initializes a new instance of the [NumberField](./) class. | +| [Recalculate](../field/recalculate/)() | Recaculates all calculated fields on the form. | +| virtual [set_ActiveState](../../aspose.pdf.annotations/annotation/set_activestate/)(System::String) | Sets current annotation appearance state. | +| [set_Alignment](../../aspose.pdf.annotations/annotation/set_alignment/)(TextAlignment) | [Annotation](../../aspose.pdf.annotations/annotation/) alignment. This property is obsolete. Use HorizontalAligment instead. | +| [set_AllowedChars](./set_allowedchars/)(System::String) | Sets the allowed chars. | +| [set_AlternateName](../field/set_alternatename/)(System::String) | Sets alternate name of the field (An alternate field name that shall be used in place of the actual field name wherever the field shall be identified in the user interface). Alternate name is used as field tooltip in Adobe Acrobat. | +| [set_AnnotationIndex](../field/set_annotationindex/)(int32_t) | Sets index of this anotation on the page. | +| [set_Border](../../aspose.pdf.annotations/annotation/set_border/)(System::SharedPtr\) | Sets annotation border characteristics. [Border](../../aspose.pdf.annotations/border/) | +| [set_Color](../../aspose.pdf.annotations/annotation/set_color/)(System::SharedPtr\) | Sets annotation color. | +| [set_Contents](../../aspose.pdf.annotations/annotation/set_contents/)(System::String) | Sets annotation text. | +| [set_DefaultAppearance](../../aspose.pdf.annotations/widgetannotation/set_defaultappearance/)(System::SharedPtr\) | Sets default appearance of the field. | +| [set_Exportable](../../aspose.pdf.annotations/widgetannotation/set_exportable/)(bool) | Sets exportable flag of the field. | +| static [set_FitIntoRectangle](../field/set_fitintorectangle/)(bool) | If true then font size will reduced to fit text to specified rectangle. | +| [set_Flags](../../aspose.pdf.annotations/annotation/set_flags/)(AnnotationFlags) | Flags of the annotation. | +| [set_ForceCombs](../textboxfield/set_forcecombs/)(bool) | Sets flag which indicates is field divided into spaced positions. | +| virtual [set_Height](../../aspose.pdf.annotations/annotation/set_height/)(double) | Sets height of the annotation. | +| [set_Highlighting](../../aspose.pdf.annotations/widgetannotation/set_highlighting/)(HighlightingMode) | [Annotation](../../aspose.pdf.annotations/annotation/) highlighting mode. | +| [set_HorizontalAlignment](../../aspose.pdf.annotations/annotation/set_horizontalalignment/)(Aspose::Pdf::HorizontalAlignment) override | Sets text alignment for annotation. | +| virtual [set_Hyperlink](../../aspose.pdf/baseparagraph/set_hyperlink/)(System::SharedPtr\) | Sets the fragment hyperlink(for pdf generator). | +| [set_IsFirstParagraphInColumn](../../aspose.pdf/baseparagraph/set_isfirstparagraphincolumn/)(bool) | Sets a bool value that indicates whether this paragraph will be at next column. Default is false.(for pdf generation) | +| [set_IsInLineParagraph](../../aspose.pdf/baseparagraph/set_isinlineparagraph/)(bool) | Sets a paragraph is inline. Default is false.(for pdf generation) | +| [set_IsInNewPage](../../aspose.pdf/baseparagraph/set_isinnewpage/)(bool) | Sets a bool value that force this paragraph generates at new page. Default is false.(for pdf generation) | +| [set_IsKeptWithNext](../../aspose.pdf/baseparagraph/set_iskeptwithnext/)(bool) | Sets a bool value that indicates whether current paragraph remains in the same page along with next paragraph. Default is false.(for pdf generation) | +| [set_IsSharedField](../field/set_issharedfield/)(bool) | Property for Generator support. Used when field is added to header or footer. If true, this field will created once and it's appearance will be visible on all pages of the document. If false, separated field will be created for every document page. | +| [set_MappingName](../field/set_mappingname/)(System::String) | Sets mapping name of the field that shall be used when exporting interactive form field data from the document. | +| [set_Margin](../../aspose.pdf/baseparagraph/set_margin/)(System::SharedPtr\) | Sets a outer margin for paragraph (for pdf generation) | +| static [set_MaxFontSize](../field/set_maxfontsize/)(double) | Maximail font size which can be used for field contents. -1 to don't check size. | +| [set_MaxLen](../textboxfield/set_maxlen/)(int32_t) | Sets maximum length of text in the field. | +| static [set_MinFontSize](../field/set_minfontsize/)(double) | Minimal font size which can be used for field contents. -1 to don't check size. | +| [set_Modified](../../aspose.pdf.annotations/annotation/set_modified/)(System::DateTime) | Sets date and time when annotation was recently modified. | +| [set_Multiline](../textboxfield/set_multiline/)(bool) | Sets multiline flag of the field. If Multiline is true field can contain multiple lines of text. | +| [set_Name](../../aspose.pdf.annotations/annotation/set_name/)(System::String) | Sets annotation name on the page. | +| [set_OnActivated](../../aspose.pdf.annotations/widgetannotation/set_onactivated/)(System::SharedPtr\) | An action which shall be performed when the annotation is activated. | +| [set_PartialName](../field/set_partialname/)(System::String) | Sets partial name of the field. | +| [set_ReadOnly](../../aspose.pdf.annotations/widgetannotation/set_readonly/)(bool) | Sets read only status of the field. | +| [set_Rect](../field/set_rect/)(System::SharedPtr\) override | Sets the field rectangle. | +| [set_Required](../../aspose.pdf.annotations/widgetannotation/set_required/)(bool) | Sets required status of the field. | +| [set_Scrollable](../textboxfield/set_scrollable/)(bool) | Sets scrollable flag of field. If true field can be scrolled. | +| [set_SpellCheck](../textboxfield/set_spellcheck/)(bool) | Sets spellcheck flag for field. If true field shall be spell checked. | +| [set_TabOrder](../field/set_taborder/)(int32_t) | Sets tab order of the field. | +| [set_TextHorizontalAlignment](../../aspose.pdf.annotations/annotation/set_texthorizontalalignment/)(Aspose::Pdf::HorizontalAlignment) | Sets text alignment for annotation. | +| [set_TextVerticalAlignment](../textboxfield/set_textverticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets text vertical alignment for annotation. | +| static [set_UpdateAppearanceOnConvert](../../aspose.pdf.annotations/annotation/set_updateappearanceonconvert/)(bool) | If true, annotation appearance will be updated before converting PF document into image. This allows convert fields correctly but probably demand more time. | +| static [set_UseFontSubset](../../aspose.pdf.annotations/annotation/set_usefontsubset/)(bool) | If this property set to true, fonts will be added to document as subsets. Default value is true. | +| [set_Value](../textboxfield/set_value/)(System::String) override | Sets value of the field. | +| virtual [set_VerticalAlignment](../../aspose.pdf/baseparagraph/set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) | Sets a vertical alignment of paragraph. | +| virtual [set_Width](../../aspose.pdf.annotations/annotation/set_width/)(double) | Sets width of the annotation. | +| [set_ZIndex](../../aspose.pdf/baseparagraph/set_zindex/)(int32_t) | Sets a int value that indicates the Z-order of the graph. A graph with larger ZIndex will be placed over the graph with smaller ZIndex. ZIndex can be negative. Graph with negative ZIndex will be placed behind the text in the page. | +| virtual [SetPosition](../field/setposition/)(System::SharedPtr\) | Set position of the field. | +| [SetTemplateWeakPtr](../field/settemplateweakptr/)(uint32_t) override | Set n'th template argument a weak pointer (rather than shared). Allows switching pointers in containers to weak mode. | +| [TextBoxField](../textboxfield/textboxfield/)(System::SharedPtr\) | Constructor which should be used with Generator. | +| [TextBoxField](../textboxfield/textboxfield/)() | Create instance of [TextBoxField](../textboxfield/). | +| [TextBoxField](../textboxfield/textboxfield/)(System::SharedPtr\, System::SharedPtr\) | Constructor of TextBox field. | +| [TextBoxField](../textboxfield/textboxfield/)(System::SharedPtr\, System::SharedPtr\) | Constructor of TextBox field. | +| [WidgetAnnotation](../../aspose.pdf.annotations/widgetannotation/widgetannotation/)(System::SharedPtr\) | Create annotation (used for Generator) | + +## See Also + +* Class [TextBoxField](../textboxfield/) +* Namespace [Aspose::Pdf::Forms](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.forms/numberfield/get_allowedchars/_index.md b/english/cpp/aspose.pdf.forms/numberfield/get_allowedchars/_index.md new file mode 100644 index 0000000000..2dde6d7a61 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/numberfield/get_allowedchars/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Forms::NumberField::get_AllowedChars method +linktitle: get_AllowedChars +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::NumberField::get_AllowedChars method. Gets the allowed chars in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.forms/numberfield/get_allowedchars/ +--- +## NumberField::get_AllowedChars method + + +Gets the allowed chars. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Forms::NumberField::get_AllowedChars() const +``` + +## Remarks + + +The allowed chars string. 0123456789 by default +## See Also + +* Class [NumberField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/numberfield/numberfield/_index.md b/english/cpp/aspose.pdf.forms/numberfield/numberfield/_index.md new file mode 100644 index 0000000000..6521b977a3 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/numberfield/numberfield/_index.md @@ -0,0 +1,111 @@ +--- +title: Aspose::Pdf::Forms::NumberField::NumberField constructor +linktitle: NumberField +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::NumberField::NumberField constructor. Initializes a new instance of the NumberField class in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.forms/numberfield/numberfield/ +--- +## NumberField::NumberField() constructor + + +Initializes a new instance of the [NumberField](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Forms::NumberField::NumberField() +``` + +## See Also + +* Class [NumberField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) +## NumberField::NumberField(System::SharedPtr\, System::SharedPtr\) constructor + + +Initializes a new instance of the [NumberField](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Forms::NumberField::NumberField(System::SharedPtr page, System::SharedPtr rect) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| page | System::SharedPtr\ | [Page](../../../aspose.pdf/page/) where text field is placed. | +| rect | System::SharedPtr\ | [Rectangle](../../../aspose.pdf/rectangle/) where the field will be placed on the page. | +## Remarks + + + + + + page + + + + Page where text field is placed. + + + + + rect + + + + Rectangle where the field will be placed on the page. + + + +## See Also + +* Class [Page](../../../aspose.pdf/page/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [NumberField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) +## NumberField::NumberField(System::SharedPtr\, System::SharedPtr\) constructor + + +Initializes a new instance of the [NumberField](../) class. + +```cpp +ASPOSE_PDF_SHARED_API Aspose::Pdf::Forms::NumberField::NumberField(System::SharedPtr doc, System::SharedPtr rect) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| doc | System::SharedPtr\ | [Document](../../../aspose.pdf/document/) where field will be created. | +| rect | System::SharedPtr\ | [Rectangle](../../../aspose.pdf/rectangle/) of the field. | +## Remarks + + + + + + doc + + + + Document where field will be created. + + + + + rect + + + + Rectangle of the field. + + + +## See Also + +* Class [Document](../../../aspose.pdf/document/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [NumberField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/numberfield/set_allowedchars/_index.md b/english/cpp/aspose.pdf.forms/numberfield/set_allowedchars/_index.md new file mode 100644 index 0000000000..ad8ce8abc3 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/numberfield/set_allowedchars/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Forms::NumberField::set_AllowedChars method +linktitle: set_AllowedChars +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::NumberField::set_AllowedChars method. Sets the allowed chars in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.forms/numberfield/set_allowedchars/ +--- +## NumberField::set_AllowedChars method + + +Sets the allowed chars. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::NumberField::set_AllowedChars(System::String value) +``` + +## Remarks + + +The allowed chars string. 0123456789 by default +## See Also + +* Class [NumberField](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/option/_index.md b/english/cpp/aspose.pdf.forms/option/_index.md new file mode 100644 index 0000000000..6e392f7302 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/option/_index.md @@ -0,0 +1,33 @@ +--- +title: Aspose::Pdf::Forms::Option class +linktitle: Option +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Option class. Class represents option of choice field in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.forms/option/ +--- +## Option class + + +Class represents option of choice field. + +```cpp +class Option : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_Index](./get_index/)() | Gets index of the option. | +| [get_Name](./get_name/)() | Gets name of option. | +| [get_Selected](./get_selected/)() | Gets selected status of option. Returns true if option is selected. | +| [get_Value](./get_value/)() | Gets option export value. | +| [set_Name](./set_name/)(System::String) | Sets name of option. | +| [set_Selected](./set_selected/)(bool) | Sets selected status of option. Returns true if option is selected. | +| [set_Value](./set_value/)(System::String) | Sets option export value. | +## See Also + +* Namespace [Aspose::Pdf::Forms](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.forms/option/get_index/_index.md b/english/cpp/aspose.pdf.forms/option/get_index/_index.md new file mode 100644 index 0000000000..abdb6e7c0e --- /dev/null +++ b/english/cpp/aspose.pdf.forms/option/get_index/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Option::get_Index method +linktitle: get_Index +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Option::get_Index method. Gets index of the option in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.forms/option/get_index/ +--- +## Option::get_Index method + + +Gets index of the option. + +```cpp +ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Forms::Option::get_Index() +``` + +## See Also + +* Class [Option](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/option/get_name/_index.md b/english/cpp/aspose.pdf.forms/option/get_name/_index.md new file mode 100644 index 0000000000..c713f6e00f --- /dev/null +++ b/english/cpp/aspose.pdf.forms/option/get_name/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Option::get_Name method +linktitle: get_Name +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Option::get_Name method. Gets name of option in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.forms/option/get_name/ +--- +## Option::get_Name method + + +Gets name of option. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Forms::Option::get_Name() +``` + +## See Also + +* Class [Option](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/option/get_selected/_index.md b/english/cpp/aspose.pdf.forms/option/get_selected/_index.md new file mode 100644 index 0000000000..dbe32bee02 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/option/get_selected/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Option::get_Selected method +linktitle: get_Selected +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Option::get_Selected method. Gets selected status of option. Returns true if option is selected in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.forms/option/get_selected/ +--- +## Option::get_Selected method + + +Gets selected status of option. Returns true if option is selected. + +```cpp +ASPOSE_PDF_SHARED_API bool Aspose::Pdf::Forms::Option::get_Selected() +``` + +## See Also + +* Class [Option](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/option/get_value/_index.md b/english/cpp/aspose.pdf.forms/option/get_value/_index.md new file mode 100644 index 0000000000..fba27310bf --- /dev/null +++ b/english/cpp/aspose.pdf.forms/option/get_value/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Option::get_Value method +linktitle: get_Value +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Option::get_Value method. Gets option export value in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.forms/option/get_value/ +--- +## Option::get_Value method + + +Gets option export value. + +```cpp +ASPOSE_PDF_SHARED_API System::String Aspose::Pdf::Forms::Option::get_Value() +``` + +## See Also + +* Class [Option](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/option/set_name/_index.md b/english/cpp/aspose.pdf.forms/option/set_name/_index.md new file mode 100644 index 0000000000..3d59f5c8e2 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/option/set_name/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Option::set_Name method +linktitle: set_Name +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Option::set_Name method. Sets name of option in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.forms/option/set_name/ +--- +## Option::set_Name method + + +Sets name of option. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::Option::set_Name(System::String value) +``` + +## See Also + +* Class [Option](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/option/set_selected/_index.md b/english/cpp/aspose.pdf.forms/option/set_selected/_index.md new file mode 100644 index 0000000000..e5aac84743 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/option/set_selected/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Option::set_Selected method +linktitle: set_Selected +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Option::set_Selected method. Sets selected status of option. Returns true if option is selected in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.forms/option/set_selected/ +--- +## Option::set_Selected method + + +Sets selected status of option. Returns true if option is selected. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::Option::set_Selected(bool value) +``` + +## See Also + +* Class [Option](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/option/set_value/_index.md b/english/cpp/aspose.pdf.forms/option/set_value/_index.md new file mode 100644 index 0000000000..4124e0aca2 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/option/set_value/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Forms::Option::set_Value method +linktitle: set_Value +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Option::set_Value method. Sets option export value in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.forms/option/set_value/ +--- +## Option::set_Value method + + +Sets option export value. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::Option::set_Value(System::String value) +``` + +## See Also + +* Class [Option](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/optioncollection/_index.md b/english/cpp/aspose.pdf.forms/optioncollection/_index.md new file mode 100644 index 0000000000..a40a09f1da --- /dev/null +++ b/english/cpp/aspose.pdf.forms/optioncollection/_index.md @@ -0,0 +1,43 @@ +--- +title: Aspose::Pdf::Forms::OptionCollection class +linktitle: OptionCollection +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::OptionCollection class. Class representing collection of options of the choice field in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf.forms/optioncollection/ +--- +## OptionCollection class + + +Class representing collection of options of the choice field. + +```cpp +class OptionCollection : public System::Collections::Generic::ICollection> +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Add](./add/)(const System::SharedPtr\\&) override | Adds item in collection, throws +. | +| [Clear](./clear/)() override | Removes all items from collection. | +| [Contains](./contains/)(const System::SharedPtr\\&) const override | Checks if item exists in collection, throws +. | +| [CopyTo](./copyto/)(System::ArrayPtr\\>, int32_t) override | Copies options into array. | +| [get](./get/)(int32_t) | Gets option by index. | +| [get](./get/)(System::String) | Gets option from colleciton by option name. | +| [get_Count](./get_count/)() const override | Gets number of options. | +| [get_IsReadOnly](./get_isreadonly/)() const override | Gets a value indicating if collection is readonly. | +| [get_IsSynchronized](./get_issynchronized/)() | Returns true of object is synchronized. | +| [get_SyncRoot](./get_syncroot/)() const | Synchronization object of the collection. | +| [GetEnumerator](./getenumerator/)() override | Returns enumerator for options in collection. | +| [idx_get](./idx_get/)(int32_t) | Gets option by index. | +| [idx_get](./idx_get/)(System::String) | Gets option by its name. | +| [Remove](./remove/)(const System::SharedPtr\\&) override | Removes item from collection, throws +. | +## See Also + +* Namespace [Aspose::Pdf::Forms](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.forms/optioncollection/add/_index.md b/english/cpp/aspose.pdf.forms/optioncollection/add/_index.md new file mode 100644 index 0000000000..9f017fea47 --- /dev/null +++ b/english/cpp/aspose.pdf.forms/optioncollection/add/_index.md @@ -0,0 +1,44 @@ +--- +title: Aspose::Pdf::Forms::OptionCollection::Add method +linktitle: Add +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::OptionCollection::Add method. Adds item in collection, throws + in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.forms/optioncollection/add/ +--- +## OptionCollection::Add method + + +Adds item in collection, throws +. + +```cpp +ASPOSE_PDF_SHARED_API void Aspose::Pdf::Forms::OptionCollection::Add(const System::SharedPtr