From 85d0993fc6369ccb5deed7a79f6a5ccc7f6fc548 Mon Sep 17 00:00:00 2001 From: Oleksandr Andriienko Date: Tue, 29 Oct 2024 11:03:28 +0100 Subject: [PATCH 1/3] Aspose.PDF for JavaScript via C++: AsposePdfGetPagesLayers, AsposePdfMergeLayers --- english/javascript-cpp/_index.md | 2 + english/javascript-cpp/metadata/_index.md | 1 + .../asposepdfgetpageslayers/_index.md | 63 +++++++++++++++ english/javascript-cpp/organize/_index.md | 1 + .../organize/asposepdfmergelayers/_index.md | 79 +++++++++++++++++++ 5 files changed, 146 insertions(+) create mode 100644 english/javascript-cpp/metadata/asposepdfgetpageslayers/_index.md create mode 100644 english/javascript-cpp/organize/asposepdfmergelayers/_index.md diff --git a/english/javascript-cpp/_index.md b/english/javascript-cpp/_index.md index 5a525fcffb..d07a86bd93 100644 --- a/english/javascript-cpp/_index.md +++ b/english/javascript-cpp/_index.md @@ -84,6 +84,7 @@ Such operations are very time consuming, so we recommend using Web Worker. | [AsposePdfDeleteHiddenText](./organize/asposepdfdeletehiddentext/) | Delete hidden text from a PDF-file. | | [AsposePdfAddWatermark](./organize/asposepdfaddwatermark/) | Add watermark to a PDF-file. | | [AsposePdfDeleteWatermarks](./organize/asposepdfdeletewatermarks/) | Delete watermarks from a PDF-file. | +| [AsposePdfMergeLayers](./organize/asposepdfmergelayers/) | Merge layers a PDF-file. | ## Metadata PDF functions @@ -95,6 +96,7 @@ Such operations are very time consuming, so we recommend using Web Worker. | [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. | +| [AsposePdfGetPagesLayers](./metadata/asposepdfgetpageslayers/) | Get list layers from a PDF-file. | ## Security PDF functions diff --git a/english/javascript-cpp/metadata/_index.md b/english/javascript-cpp/metadata/_index.md index e9b6427d30..ab1b8d671e 100644 --- a/english/javascript-cpp/metadata/_index.md +++ b/english/javascript-cpp/metadata/_index.md @@ -15,6 +15,7 @@ url: /javascript-cpp/metadata/ | [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. | +| [AsposePdfGetPagesLayers](./asposepdfgetpageslayers/) | Get list layers from a PDF-file. | ## Detailed Description diff --git a/english/javascript-cpp/metadata/asposepdfgetpageslayers/_index.md b/english/javascript-cpp/metadata/asposepdfgetpageslayers/_index.md new file mode 100644 index 0000000000..899fdcde9d --- /dev/null +++ b/english/javascript-cpp/metadata/asposepdfgetpageslayers/_index.md @@ -0,0 +1,63 @@ +--- +title: "AsposePdfGetPagesLayers" +second_title: Aspose.PDF for JavaScript via C++ +description: "Get list layers from a PDF-file." +type: docs +url: /javascript-cpp/metadata/asposepdfgetpageslayers/ +--- + +_Get list layers from a PDF-file._ + +```js +function AsposePdfGetPagesLayers( + fileBlob, + fileName +) +``` + +**Parameters**: + +* **fileBlob** Blob object +* **fileName** file name + +**Return**: + +JSON object + +* **errorCode** - code error (0 no error) +* **errorText** - text error ("" no error) +* **pagesLayers[][]** - list of pages with lists of layers on each page + + +**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) ? `first page layers:\n${JSON.stringify(evt.data.json.pagesLayers[0], null, 4)}` : `Error: ${evt.data.json.errorText}`; + + /*Event handler*/ + const ffilePdfGetPagesLayers = e => { + const file_reader = new FileReader(); + file_reader.onload = event => { + /*Get list layers from a PDF-file - Ask Web Worker*/ + AsposePDFWebWorker.postMessage({ "operation": 'AsposePdfGetPagesLayers', "params": [event.target.result, e.target.files[0].name] }, [event.target.result]); + }; + file_reader.readAsArrayBuffer(e.target.files[0]); + }; +``` +**Simple example**: +```js + var ffilePdfGetPagesLayers = function (e) { + const file_reader = new FileReader(); + file_reader.onload = (event) => { + /*Get list layers from a PDF-file*/ + const json = AsposePdfGetPagesLayers(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/javascript-cpp/organize/_index.md b/english/javascript-cpp/organize/_index.md index 8665aa8c93..07f82ba465 100644 --- a/english/javascript-cpp/organize/_index.md +++ b/english/javascript-cpp/organize/_index.md @@ -38,6 +38,7 @@ url: /javascript-cpp/organize/ | [AsposePdfDeleteHiddenText](./asposepdfdeletehiddentext/) | Delete hidden text from a PDF-file. | | [AsposePdfAddWatermark](./asposepdfaddwatermark/) | Add watermark to a PDF-file. | | [AsposePdfDeleteWatermarks](./asposepdfdeletewatermarks/) | Delete watermarks from a PDF-file. | +| [AsposePdfMergeLayers](./asposepdfmergelayers/) | Merge layers a PDF-file. | ## Detailed Description diff --git a/english/javascript-cpp/organize/asposepdfmergelayers/_index.md b/english/javascript-cpp/organize/asposepdfmergelayers/_index.md new file mode 100644 index 0000000000..0dca79b851 --- /dev/null +++ b/english/javascript-cpp/organize/asposepdfmergelayers/_index.md @@ -0,0 +1,79 @@ +--- +title: "AsposePdfMergeLayers" +second_title: Aspose.PDF for JavaScript via C++ +description: "Merge layers a PDF-file." +type: docs +url: /javascript-cpp/organize/asposepdfmergelayers/ +--- + +_Merge layers a PDF-file._ + +```js +function AsposePdfMergeLayers( + fileBlob, + fileName, + newLayerName, + fileNameResult +) +``` + +**Parameters**: + +* **fileBlob** Blob object +* **fileName** file name +* **newLayerName** merged layer name for each page +* **fileNameResult** result file name + +**Return**: +JSON object + * **errorCode** - code error (0 no error) + * **errorText** - text error ("" no error) + * **fileNameResult** - result file name + + +**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) ? `Result:\n${DownloadFile(evt.data.json.fileNameResult, "application/pdf", evt.data.params[0])}` : `Error: ${evt.data.json.errorText}`; + + /*Event handler*/ + const ffilePdfMergeLayers = e => { + const file_reader = new FileReader(); + file_reader.onload = event => { + /*Merge layers a PDF-file and save the "ResultPdfMergeLayers.pdf" - Ask Web Worker*/ + AsposePDFWebWorker.postMessage({ "operation": 'AsposePdfMergeLayers', "params": [event.target.result, e.target.files[0].name, "MergedLayer", "ResultPdfMergeLayers.pdf"] }, [event.target.result]); + }; + file_reader.readAsArrayBuffer(e.target.files[0]); + }; + + /*Make a link to download the result file*/ + const DownloadFile = (filename, mime, content) => { + mime = mime || "application/octet-stream"; + var link = document.createElement("a"); + link.href = URL.createObjectURL(new Blob([content], {type: mime})); + link.download = filename; + link.innerHTML = "Click here to download the file " + filename; + document.body.appendChild(link); + document.body.appendChild(document.createElement("br")); + return filename; + } +``` +**Simple example**: +```js + var ffilePdfMergeLayers = function (e) { + const file_reader = new FileReader(); + file_reader.onload = (event) => { + /*Merge layers a PDF-file and save the "ResultPdfMergeLayers.pdf"*/ + const json = AsposePdfMergeLayers(event.target.result, e.target.files[0].name, "MergedLayer", "ResultPdfMergeLayers.pdf"); + if (json.errorCode == 0) document.getElementById('output').textContent = json.fileNameResult; + else document.getElementById('output').textContent = json.errorText; + /*Make a link to download the result file*/ + DownloadFile(json.fileNameResult, "application/pdf"); + }; + file_reader.readAsArrayBuffer(e.target.files[0]); + }; +``` From cc16696718b1e361e6aaf3d1fa50e803bbdbb299 Mon Sep 17 00:00:00 2001 From: Oleksandr Andriienko Date: Fri, 1 Nov 2024 11:34:27 +0100 Subject: [PATCH 2/3] Aspose.PDF for Node.js via C++: AsposePdfGetPagesLayers, AsposePdfMergeLayers --- english/nodejs-cpp/_index.md | 2 + english/nodejs-cpp/metadata/_index.md | 1 + .../asposepdfgetpageslayers/_index.md | 53 ++++++++++++++++++ english/nodejs-cpp/organize/_index.md | 1 + .../organize/asposepdfmergelayers/_index.md | 55 +++++++++++++++++++ 5 files changed, 112 insertions(+) create mode 100644 english/nodejs-cpp/metadata/asposepdfgetpageslayers/_index.md create mode 100644 english/nodejs-cpp/organize/asposepdfmergelayers/_index.md diff --git a/english/nodejs-cpp/_index.md b/english/nodejs-cpp/_index.md index d657a7bc0b..22d43a9317 100644 --- a/english/nodejs-cpp/_index.md +++ b/english/nodejs-cpp/_index.md @@ -83,6 +83,7 @@ is_root: true | [AsposePdfDeleteHiddenText](./organize/asposepdfdeletehiddentext/) | Delete hidden text from a PDF-file. | | [AsposePdfAddWatermark](./organize/asposepdfaddwatermark/) | Add watermark to a PDF-file. | | [AsposePdfDeleteWatermarks](./organize/asposepdfdeletewatermarks/) | Delete watermarks from a PDF-file. | +| [AsposePdfMergeLayers](./organize/asposepdfmergelayers/) | Merge layers a PDF-file. | ## Metadata PDF functions @@ -94,6 +95,7 @@ is_root: true | [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. | +| [AsposePdfGetPagesLayers](./metadata/asposepdfgetpageslayers/) | Get list layers from a PDF-file. | ## Security PDF functions diff --git a/english/nodejs-cpp/metadata/_index.md b/english/nodejs-cpp/metadata/_index.md index 7bc8f39813..6fbec6ea77 100644 --- a/english/nodejs-cpp/metadata/_index.md +++ b/english/nodejs-cpp/metadata/_index.md @@ -15,6 +15,7 @@ url: /nodejs-cpp/metadata/ | [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. | +| [AsposePdfGetPagesLayers](./asposepdfgetpageslayers/) | Get list layers from a PDF-file. | ## Detailed Description diff --git a/english/nodejs-cpp/metadata/asposepdfgetpageslayers/_index.md b/english/nodejs-cpp/metadata/asposepdfgetpageslayers/_index.md new file mode 100644 index 0000000000..0598c88cff --- /dev/null +++ b/english/nodejs-cpp/metadata/asposepdfgetpageslayers/_index.md @@ -0,0 +1,53 @@ +--- +title: "AsposePdfGetPagesLayers" +second_title: Aspose.PDF for Node.js via C++ +description: "Get list layers from a PDF-file." +type: docs +url: /nodejs-cpp/metadata/asposepdfgetpageslayers/ +--- + +_Get list layers from a PDF-file._ + +```js +function AsposePdfGetPagesLayers( + fileName +) +``` + +**Parameters**: + +* **fileName** file name + +**Return**: + +JSON object + +* **errorCode** - code error (0 no error) +* **errorText** - text error ("" no error) +* **pagesLayers[][]** - list of pages with lists of layers on each page + + +**CommonJS**: + +```js +const AsposePdf = require('asposepdfnodejs'); +const pdf_file = 'Aspose.pdf'; +AsposePdf().then(AsposePdfModule => { + /*Get list layers from a PDF-file*/ + const json = AsposePdfModule.AsposePdfGetPagesLayers(pdf_file); + /*json.pagesLayers - list of pages with lists of layers on each page*/ + console.log("AsposePdfGetPagesLayers => layers: %O", json.errorCode == 0 ? json.pagesLayers : json.errorText); +}); +``` + +**ECMAScript/ES6**: + +```js +import AsposePdf from 'asposepdfnodejs'; +const AsposePdfModule = await AsposePdf(); +const pdf_file = 'Aspose.pdf'; +/*Get list layers from a PDF-file*/ +const json = AsposePdfModule.AsposePdfGetPagesLayers(pdf_file); +/*json.pagesLayers - list of pages with lists of layers on each page*/ +console.log("AsposePdfGetPagesLayers => layers: %O", json.errorCode == 0 ? json.pagesLayers : json.errorText); +``` \ No newline at end of file diff --git a/english/nodejs-cpp/organize/_index.md b/english/nodejs-cpp/organize/_index.md index c11fe99f3f..df23574b87 100644 --- a/english/nodejs-cpp/organize/_index.md +++ b/english/nodejs-cpp/organize/_index.md @@ -38,6 +38,7 @@ url: /nodejs-cpp/organize/ | [AsposePdfDeleteHiddenText](./asposepdfdeletehiddentext/) | Delete hidden text from a PDF-file. | | [AsposePdfAddWatermark](./asposepdfaddwatermark/) | Add watermark to a PDF-file. | | [AsposePdfDeleteWatermarks](./asposepdfdeletewatermarks/) | Delete watermarks from a PDF-file. | +| [AsposePdfMergeLayers](./asposepdfmergelayers/) | Merge layers a PDF-file. | ## Detailed Description diff --git a/english/nodejs-cpp/organize/asposepdfmergelayers/_index.md b/english/nodejs-cpp/organize/asposepdfmergelayers/_index.md new file mode 100644 index 0000000000..2c7789f1a7 --- /dev/null +++ b/english/nodejs-cpp/organize/asposepdfmergelayers/_index.md @@ -0,0 +1,55 @@ +--- +title: "AsposePdfMergeLayers" +second_title: Aspose.PDF for Node.js via C++ +description: "Merge layers a PDF-file." +type: docs +url: /nodejs-cpp/organize/asposepdfmergelayers/ +--- + +_Merge layers a PDF-file._ + +```js +function AsposePdfMergeLayers( + fileName, + newLayerName, + fileNameResult +) +``` + +**Parameters**: + +* **fileName** file name +* **newLayerName** merged layer name for each page +* **fileNameResult** result file name + +**Return**: +JSON object + * **errorCode** - code error (0 no error) + * **errorText** - text error ("" no error) + * **fileNameResult** - result file name + + +**CommonJS**: + +```js +const AsposePdf = require('asposepdfnodejs'); +const pdf_file = 'Aspose.pdf'; +AsposePdf().then(AsposePdfModule => { + const mergedLayerName = 'MergedLayer'; + /*Merge layers a PDF-file and save the "ResultPdfMergeLayers.pdf"*/ + const json = AsposePdfModule.AsposePdfMergeLayers(pdf_file, mergedLayerName, "ResultPdfMergeLayers.pdf"); + console.log("AsposePdfMergeLayers => %O", json.errorCode == 0 ? json.fileNameResult : json.errorText); +}); +``` + +**ECMAScript/ES6**: + +```js +import AsposePdf from 'asposepdfnodejs'; +const AsposePdfModule = await AsposePdf(); +const pdf_file = 'Aspose.pdf'; +const mergedLayerName = 'MergedLayer'; +/*Merge layers a PDF-file and save the "ResultPdfMergeLayers.pdf"*/ +const json = AsposePdfModule.AsposePdfMergeLayers(pdf_file, mergedLayerName, "ResultPdfMergeLayers.pdf"); +console.log("AsposePdfMergeLayers => %O", json.errorCode == 0 ? json.fileNameResult : json.errorText); +``` \ No newline at end of file From fdd3d708c5db5b9286f993a47502e4b8214e93b7 Mon Sep 17 00:00:00 2001 From: Alexander Malokhovetskiy Date: Mon, 18 Nov 2024 17:14:22 +0200 Subject: [PATCH 3/3] C++ API Reference 24.11 --- english/cpp/_index.md | 4 +- .../aspose.pdf.artifacts.pagination/_index.md | 28 ++++++ .../center/_index.md | 23 +++++ .../datecomponent/_index.md | 31 +++++++ .../datecomponent/datecomponent/_index.md | 23 +++++ .../datecomponent/get_format/_index.md | 23 +++++ .../datecomponent/getformat/_index.md | 33 +++++++ .../datecomponent/set_format/_index.md | 23 +++++ .../footer/_index.md | 23 +++++ .../header/_index.md | 23 +++++ .../headerfooterdata/_index.md | 31 +++++++ .../headerfooterdata/get_pagedate/_index.md | 25 +++++ .../headerfooterdata/get_pagenumber/_index.md | 25 +++++ .../headerfooterdata/set_pagedate/_index.md | 25 +++++ .../headerfooterdata/set_pagenumber/_index.md | 25 +++++ .../headerfootersettings/_index.md | 33 +++++++ .../headerfootersettings/get_footer/_index.md | 25 +++++ .../headerfootersettings/get_header/_index.md | 25 +++++ .../get_pagerange/_index.md | 25 +++++ .../headerfootersettings/set_footer/_index.md | 25 +++++ .../headerfootersettings/set_header/_index.md | 25 +++++ .../set_pagerange/_index.md | 25 +++++ .../horizontalalignment/_index.md | 33 +++++++ .../horizontalalignment/get_center/_index.md | 25 +++++ .../horizontalalignment/get_left/_index.md | 25 +++++ .../horizontalalignment/get_right/_index.md | 25 +++++ .../horizontalalignment/set_center/_index.md | 25 +++++ .../horizontalalignment/set_left/_index.md | 25 +++++ .../horizontalalignment/set_right/_index.md | 25 +++++ .../left/_index.md | 23 +++++ .../pagedate/_index.md | 41 +++++++++ .../pagedate/daycomponent/_index.md | 29 ++++++ .../pagedate/daycomponent/getformat/_index.md | 30 ++++++ .../pagedate/get_day/_index.md | 25 +++++ .../pagedate/get_delimiter/_index.md | 24 +++++ .../pagedate/get_month/_index.md | 25 +++++ .../pagedate/get_year/_index.md | 25 +++++ .../pagedate/getformatteddate/_index.md | 29 ++++++ .../pagedate/monthcomponent/_index.md | 29 ++++++ .../monthcomponent/getformat/_index.md | 30 ++++++ .../pagedate/set_day/_index.md | 25 +++++ .../pagedate/set_delimiter/_index.md | 24 +++++ .../pagedate/set_month/_index.md | 25 +++++ .../pagedate/set_year/_index.md | 25 +++++ .../pagedate/yearcomponent/_index.md | 29 ++++++ .../yearcomponent/getformat/_index.md | 30 ++++++ .../pagenumber/_index.md | 41 +++++++++ .../pagenumber/get_delimiter/_index.md | 24 +++++ .../pagenumber/get_index/_index.md | 25 +++++ .../pagenumber/get_offset/_index.md | 23 +++++ .../pagenumber/get_totalnum/_index.md | 25 +++++ .../pagenumber/getpagenumberstring/_index.md | 34 +++++++ .../pagenumber/pageindex/_index.md | 24 +++++ .../pagenumber/pagenumber/_index.md | 23 +++++ .../pagenumber/pagetotalnum/_index.md | 24 +++++ .../pagenumber/set_delimiter/_index.md | 24 +++++ .../pagenumber/set_index/_index.md | 25 +++++ .../pagenumber/set_offset/_index.md | 23 +++++ .../pagenumber/set_totalnum/_index.md | 25 +++++ .../pagerange/_index.md | 36 ++++++++ .../pagerange/get_end/_index.md | 23 +++++ .../pagerange/get_even/_index.md | 23 +++++ .../pagerange/get_odd/_index.md | 23 +++++ .../pagerange/get_start/_index.md | 23 +++++ .../pagerange/pagerange/_index.md | 23 +++++ .../pagerange/set_end/_index.md | 23 +++++ .../pagerange/set_even/_index.md | 23 +++++ .../pagerange/set_odd/_index.md | 23 +++++ .../pagerange/set_start/_index.md | 23 +++++ .../right/_index.md | 23 +++++ english/cpp/aspose.pdf.collections/_index.md | 2 +- .../cpp/aspose.pdf.comparison.diff/_index.md | 2 +- .../_index.md | 2 +- .../_index.md | 2 +- .../_index.md | 2 +- english/cpp/aspose.pdf.comparison/_index.md | 2 +- english/cpp/aspose.pdf.devices/_index.md | 2 +- english/cpp/aspose.pdf.drawing/_index.md | 2 +- english/cpp/aspose.pdf.facades/_index.md | 2 +- .../pdffilesignature/_index.md | 1 + .../getaccesspermissions/_index.md | 2 +- .../getsignaturesinfo/_index.md | 31 +++++++ .../pdffilesignature/getsignername/_index.md | 2 +- .../pdffilesignature/getsignnames/_index.md | 2 +- .../gettotalrevision/_index.md | 2 +- .../iscontainsignature/_index.md | 2 +- .../iscoverswholedocument/_index.md | 2 +- .../removesignature/_index.md | 2 +- .../removesignatures/_index.md | 2 +- .../removeusagerights/_index.md | 2 +- .../pdffilesignature/save/_index.md | 2 +- .../set_signatureappearance/_index.md | 2 +- .../set_signatureappearancestream/_index.md | 2 +- .../pdffilesignature/setcertificate/_index.md | 2 +- .../pdffilesignature/sign/_index.md | 2 +- .../verifysignature/_index.md | 2 +- .../pdffilesignature/verifysigned/_index.md | 2 +- english/cpp/aspose.pdf.forms/_index.md | 8 +- .../cpp/aspose.pdf.forms/boxstyle/_index.md | 4 +- .../externalsignature/_index.md | 13 +-- .../externalsignature/_index.md | 65 ++++++++++++- english/cpp/aspose.pdf.forms/form/_index.md | 5 - .../form/flattensettings/_index.md | 2 +- .../_index.md | 2 +- english/cpp/aspose.pdf.forms/pkcs7/_index.md | 8 +- .../aspose.pdf.forms/pkcs7/pkcs7/_index.md | 8 +- .../aspose.pdf.forms/pkcs7detached/_index.md | 4 + .../pkcs7detached/pkcs7detached/_index.md | 91 +++++++++++++++++++ .../cpp/aspose.pdf.forms/signature/_index.md | 5 +- .../signature/get_customsignhash/_index.md | 8 +- .../getsignaturealgorithminfo/_index.md | 30 ++++++ .../signature/set_authority/_index.md | 2 +- .../signature/set_contactinfo/_index.md | 2 +- .../signature/set_customappearance/_index.md | 2 +- .../signature/set_customsignhash/_index.md | 10 +- .../signature/set_date/_index.md | 2 +- .../signature/set_location/_index.md | 2 +- .../signature/set_ocspsettings/_index.md | 2 +- .../signature/set_reason/_index.md | 2 +- .../signature/set_showproperties/_index.md | 2 +- .../signature/set_timestampsettings/_index.md | 2 +- .../signature/set_useltv/_index.md | 2 +- .../signature/verify/_index.md | 2 +- .../cpp/aspose.pdf.forms/signhash/_index.md | 2 +- english/cpp/aspose.pdf.generator/_index.md | 2 +- .../_index.md | 2 +- .../cpp/aspose.pdf.groupprocessor/_index.md | 2 +- .../cpp/aspose.pdf.logicalstructure/_index.md | 2 +- .../element/_index.md | 4 +- .../element/appendchild/_index.md | 3 +- .../element/insertchild/_index.md | 3 +- .../removeelement/_index.md | 2 +- .../structureelement/_index.md | 3 +- .../changeparentelement/_index.md | 3 +- .../_index.md | 28 ++++++ .../structureelement/set_actualtext/_index.md | 2 +- .../set_alternativetext/_index.md | 2 +- .../set_expansiontext/_index.md | 2 +- .../structureelement/set_language/_index.md | 2 +- .../structureelement/set_title/_index.md | 2 +- .../structureelement/setid/_index.md | 2 +- .../structureelement/settag/_index.md | 2 +- .../structureelement/tag/_index.md | 2 +- .../structureelement/tostring/_index.md | 2 +- .../cpp/aspose.pdf.multithreading/_index.md | 2 +- english/cpp/aspose.pdf.operators/_index.md | 2 +- .../aspose.pdf.operators/curveto/_index.md | 1 - .../curveto/tostring/_index.md | 2 +- english/cpp/aspose.pdf.optimization/_index.md | 2 +- .../optimizationoptions/_index.md | 6 +- .../optimizationoptions/all/_index.md | 2 +- .../get_linkduplcatestreams/_index.md | 8 +- .../get_linkduplicatestreams/_index.md | 23 +++++ .../get_maxresoultion/_index.md | 2 +- .../get_removeprivateinfo/_index.md | 2 +- .../get_removeunusedobjects/_index.md | 2 +- .../get_removeunusedstreams/_index.md | 2 +- .../get_resizeimages/_index.md | 2 +- .../get_subsetfonts/_index.md | 2 +- .../get_unembedfonts/_index.md | 2 +- .../set_allowreusepagecontent/_index.md | 2 +- .../set_compressimages/_index.md | 2 +- .../set_compressobjects/_index.md | 2 +- .../set_imageencoding/_index.md | 2 +- .../set_imagequality/_index.md | 2 +- .../set_linkduplcatestreams/_index.md | 10 +- .../set_linkduplicatestreams/_index.md | 23 +++++ .../set_maxresoultion/_index.md | 2 +- .../set_removeprivateinfo/_index.md | 2 +- .../set_removeunusedobjects/_index.md | 2 +- .../set_removeunusedstreams/_index.md | 2 +- .../set_resizeimages/_index.md | 2 +- .../set_subsetfonts/_index.md | 2 +- .../set_unembedfonts/_index.md | 2 +- .../aspose.pdf.pdfaoptionclasses/_index.md | 2 +- .../cpp/aspose.pdf.pdftomarkdown/_index.md | 2 +- .../markdownsaveoptions/_index.md | 6 -- english/cpp/aspose.pdf.sanitization/_index.md | 2 +- english/cpp/aspose.pdf.security/_index.md | 29 ++++++ .../cryptographicstandard/_index.md | 30 ++++++ .../dsaalgorithminfo/_index.md | 23 +++++ .../ecdsaalgorithminfo/_index.md | 23 +++++ .../keyedsignaturealgorithminfo/_index.md | 23 +++++ .../rsaalgorithminfo/_index.md | 23 +++++ .../signaturealgorithminfo/_index.md | 29 ++++++ .../get_signaturename/_index.md | 24 +++++ .../signaturealgorithminfo/tostring/_index.md | 29 ++++++ .../signaturealgorithmtype/_index.md | 32 +++++++ .../timestampalgorithminfo/_index.md | 23 +++++ .../unknownsignaturealgorithminfo/_index.md | 23 +++++ english/cpp/aspose.pdf.structure/_index.md | 2 +- english/cpp/aspose.pdf.tagged/_index.md | 2 +- english/cpp/aspose.pdf.text/_index.md | 2 +- .../textfragmentstate/_index.md | 6 -- .../cpp/aspose.pdf.text/textstate/_index.md | 6 -- .../unicodesubstitution/_index.md | 6 -- .../cpp/aspose.pdf.utils.publicdata/_index.md | 2 +- .../cospdfboolean/_index.md | 2 +- .../cospdfboolean/equals/_index.md | 12 +-- .../cospdfnumber/_index.md | 2 +- .../cospdfnumber/equals/_index.md | 12 +-- .../cospdfstring/_index.md | 2 +- .../cospdfstring/equals/_index.md | 12 +-- english/cpp/aspose.pdf.utils/_index.md | 2 +- .../aspose.pdf.vector.extraction/_index.md | 2 +- english/cpp/aspose.pdf.vector/_index.md | 7 +- .../cpp/aspose.pdf.vector/subpath/_index.md | 2 +- .../xformplacement/_index.md | 2 +- english/cpp/aspose.pdf.xfaconverter/_index.md | 2 +- english/cpp/aspose.pdf/_index.md | 4 +- .../cpp/aspose.pdf/afrelationship/_index.md | 2 +- .../cpp/aspose.pdf/apssaveoptions/_index.md | 6 -- english/cpp/aspose.pdf/artifact/_index.md | 2 +- .../artifact/get_textstate/_index.md | 2 +- english/cpp/aspose.pdf/blendmode/_index.md | 2 +- .../aspose.pdf/bordercornerstyle/_index.md | 2 +- english/cpp/aspose.pdf/borderside/_index.md | 2 +- .../collectionfieldsubtype/_index.md | 2 +- english/cpp/aspose.pdf/colorspace/_index.md | 2 +- english/cpp/aspose.pdf/colortype/_index.md | 2 +- .../cpp/aspose.pdf/columnadjustment/_index.md | 2 +- .../aspose.pdf/contentdisposition/_index.md | 2 +- .../aspose.pdf/converterroraction/_index.md | 2 +- .../convertsoftmaskaction/_index.md | 2 +- .../converttransparencyaction/_index.md | 2 +- .../aspose.pdf/crashreportoptions/_index.md | 4 +- .../get_custommessage/_index.md | 4 +- .../set_custommessage/_index.md | 4 +- .../cpp/aspose.pdf/cryptoalgorithm/_index.md | 2 +- .../deprecatedfeatureexception/_index.md | 2 +- .../aspose.pdf/digesthashalgorithm/_index.md | 14 +-- english/cpp/aspose.pdf/direction/_index.md | 2 +- .../cpp/aspose.pdf/docsaveoptions/_index.md | 7 -- .../docsaveoptions/docformat/_index.md | 2 +- .../docsaveoptions/recognitionmode/_index.md | 2 +- english/cpp/aspose.pdf/document/_index.md | 2 +- .../defaultnodesnuminsubtrees/_index.md | 2 +- .../_index.md | 2 +- .../document/get_islicensed/_index.md | 2 +- .../document/isrepairneeded/_index.md | 34 +++++++ .../aspose.pdf/document/loadfrom/_index.md | 2 +- .../cpp/aspose.pdf/document/merge/_index.md | 2 +- .../document/mergedocuments/_index.md | 2 +- .../aspose.pdf/document/optimize/_index.md | 2 +- .../document/optimizeresources/_index.md | 2 +- .../pagenodestobalancedtree/_index.md | 2 +- .../document/processparagraphs/_index.md | 2 +- .../document/removemetadata/_index.md | 2 +- .../document/removepdfacompliance/_index.md | 2 +- .../document/removepdfuacompliance/_index.md | 2 +- .../cpp/aspose.pdf/document/repair/_index.md | 2 +- .../cpp/aspose.pdf/document/save/_index.md | 2 +- .../cpp/aspose.pdf/document/savexml/_index.md | 2 +- .../cpp/aspose.pdf/document/sendto/_index.md | 2 +- .../set_allowreusepagecontent/_index.md | 2 +- .../document/set_background/_index.md | 2 +- .../document/set_centerwindow/_index.md | 2 +- .../document/set_collection/_index.md | 2 +- .../document/set_direction/_index.md | 2 +- .../_index.md | 2 +- .../document/set_displaydoctitle/_index.md | 2 +- .../aspose.pdf/document/set_duplex/_index.md | 2 +- .../document/set_embedstandardfonts/_index.md | 2 +- .../document/set_enableobjectunload/_index.md | 2 +- .../set_enablesignaturesanitization/_index.md | 2 +- .../_index.md | 2 +- .../document/set_fitwindow/_index.md | 2 +- .../set_handlesignaturechange/_index.md | 2 +- .../document/set_hidemenubar/_index.md | 2 +- .../document/set_hidetoolbar/_index.md | 2 +- .../document/set_hidewindowui/_index.md | 2 +- .../set_ignorecorruptedobjects/_index.md | 2 +- .../document/set_islinearized/_index.md | 2 +- .../document/set_isxrefgapsallowed/_index.md | 2 +- .../set_nonfullscreenpagemode/_index.md | 2 +- .../document/set_openaction/_index.md | 2 +- .../document/set_optimizesize/_index.md | 2 +- .../document/set_pageinfo/_index.md | 2 +- .../document/set_pagelayout/_index.md | 2 +- .../document/set_pagemode/_index.md | 2 +- .../document/set_picktraybypdfsize/_index.md | 2 +- .../document/set_printscaling/_index.md | 2 +- .../_index.md | 2 +- .../aspose.pdf/document/settitle/_index.md | 2 +- .../document/setxmpmetadata/_index.md | 2 +- .../aspose.pdf/document/validate/_index.md | 2 +- english/cpp/aspose.pdf/editiontype/_index.md | 2 +- .../embeddedfilesdoesnotexists/_index.md | 2 +- .../aspose.pdf/emptyvalueexception/_index.md | 2 +- .../cpp/aspose.pdf/epubloadoptions/_index.md | 6 -- .../cpp/aspose.pdf/epubsaveoptions/_index.md | 7 -- .../epubsaveoptions/recognitionmode/_index.md | 2 +- .../cpp/aspose.pdf/excelsaveoptions/_index.md | 6 -- .../cpp/aspose.pdf/extendedboolean/_index.md | 2 +- .../cpp/aspose.pdf/extractimagemode/_index.md | 2 +- .../cpp/aspose.pdf/fieldvaluetype/_index.md | 2 +- english/cpp/aspose.pdf/fileencoding/_index.md | 2 +- english/cpp/aspose.pdf/fixup/_index.md | 2 +- .../fontembeddingexception/_index.md | 2 +- .../fontnotfoundexception/_index.md | 2 +- .../aspose.pdf/fontsubsetstrategy/_index.md | 2 +- english/cpp/aspose.pdf/graphinfo/_index.md | 2 + .../cpp/aspose.pdf/graphinfo/get_x/_index.md | 23 +++++ .../cpp/aspose.pdf/graphinfo/get_y/_index.md | 23 +++++ .../aspose.pdf/graphinfo/set_color/_index.md | 2 +- .../graphinfo/set_dasharray/_index.md | 2 +- .../graphinfo/set_dashphase/_index.md | 2 +- .../graphinfo/set_fillcolor/_index.md | 2 +- .../graphinfo/set_isdoubled/_index.md | 2 +- .../graphinfo/set_linewidth/_index.md | 2 +- .../graphinfo/set_rotationangle/_index.md | 2 +- .../graphinfo/set_scalingratex/_index.md | 2 +- .../graphinfo/set_scalingratey/_index.md | 2 +- .../graphinfo/set_skewanglex/_index.md | 2 +- .../graphinfo/set_skewangley/_index.md | 2 +- .../aspose.pdf/horizontalalignment/_index.md | 2 +- .../cpp/aspose.pdf/htmldocumenttype/_index.md | 2 +- .../cpp/aspose.pdf/htmlloadoptions/_index.md | 6 -- .../cpp/aspose.pdf/htmlmediatype/_index.md | 2 +- .../aspose.pdf/htmlpagelayoutoption/_index.md | 2 +- .../cpp/aspose.pdf/htmlsaveoptions/_index.md | 37 -------- .../antialiasingprocessingtype/_index.md | 2 +- .../htmlsaveoptions/csssavinginfo/_index.md | 9 +- .../csssavingstrategy/_index.md | 2 +- .../cssurlmakingstrategy/_index.md | 2 +- .../cssurlrequestinfo/_index.md | 7 +- .../fontencodingrules/_index.md | 2 +- .../htmlsaveoptions/fontsavingmodes/_index.md | 2 +- .../htmlimagesavinginfo/_index.md | 15 +-- .../htmlsaveoptions/htmlimagetype/_index.md | 2 +- .../htmlmarkupgenerationmodes/_index.md | 2 +- .../htmlpagemarkupsavinginfo/_index.md | 11 +-- .../htmlpagemarkupsavingstrategy/_index.md | 2 +- .../imageparenttypes/_index.md | 2 +- .../letterspositioningmethods/_index.md | 2 +- .../partsembeddingmodes/_index.md | 2 +- .../rasterimagessavingmodes/_index.md | 2 +- .../resourcesavingstrategy/_index.md | 2 +- .../aspose.pdf/imagedeleteaction/_index.md | 2 +- .../cpp/aspose.pdf/imagefiletype/_index.md | 2 +- .../cpp/aspose.pdf/imagefiltertype/_index.md | 2 +- english/cpp/aspose.pdf/importformat/_index.md | 2 +- .../incorrectcmapusageexception/_index.md | 2 +- .../incorrectfontusageexception/_index.md | 2 +- .../invalidcgmfileformatexception/_index.md | 2 +- .../invalidfileformatexception/_index.md | 2 +- .../_index.md | 2 +- .../invalidpasswordexception/_index.md | 2 +- .../invalidpdffileformatexception/_index.md | 2 +- .../invalidvalueformatexception/_index.md | 2 +- .../javascriptextensionsexception/_index.md | 2 +- .../cpp/aspose.pdf/latexsaveoptions/_index.md | 6 -- english/cpp/aspose.pdf/licensestate/_index.md | 2 +- english/cpp/aspose.pdf/loadformat/_index.md | 2 +- .../resourceloadingresult/_index.md | 8 -- .../aspose.pdf/mobixmlsaveoptions/_index.md | 6 -- .../cpp/aspose.pdf/numberingstyle/_index.md | 2 +- english/cpp/aspose.pdf/operator!=/_index.md | 2 +- english/cpp/aspose.pdf/operator==/_index.md | 2 +- english/cpp/aspose.pdf/page/_index.md | 7 +- .../cpp/aspose.pdf/page/addimage/_index.md | 5 +- .../page/beforepagegenerate/_index.md | 2 +- .../cpp/aspose.pdf/pagecollection/_index.md | 4 +- .../aspose.pdf/pagecollection/add/_index.md | 4 +- .../pagecollection/insert/_index.md | 4 +- .../pagecollectionextension/_index.md | 28 ++++++ .../pagecollectionextension/_index.md | 23 +++++ .../updatepagination/_index.md | 30 ++++++ .../aspose.pdf/pagecoordinatetype/_index.md | 2 +- english/cpp/aspose.pdf/pageinfo/_index.md | 2 +- english/cpp/aspose.pdf/pagelabel/_index.md | 2 +- .../aspose.pdf/pagelabelcollection/_index.md | 2 +- english/cpp/aspose.pdf/pagelayout/_index.md | 2 +- .../aspose.pdf/pagelayoutconverter/_index.md | 2 +- english/cpp/aspose.pdf/pagemode/_index.md | 2 +- .../aspose.pdf/pagemodeconverter/_index.md | 2 +- .../cpp/aspose.pdf/pagenumberstamp/_index.md | 2 +- english/cpp/aspose.pdf/pagesize/_index.md | 2 +- english/cpp/aspose.pdf/paragraphs/_index.md | 2 +- english/cpp/aspose.pdf/passwordtype/_index.md | 2 +- .../cpp/aspose.pdf/pclloadoptions/_index.md | 9 +- .../conversionengines/_index.md | 2 +- .../pdfanonspecificationflags/_index.md | 2 +- .../_index.md | 2 +- english/cpp/aspose.pdf/pdfexception/_index.md | 2 +- english/cpp/aspose.pdf/pdfformat/_index.md | 2 +- .../pdfformatconversionoptions/_index.md | 7 +- .../puaprocessingstrategy/_index.md | 2 +- .../removefontsstrategy/_index.md | 2 +- .../segmentalignstrategy/_index.md | 2 +- english/cpp/aspose.pdf/pdfpagestamp/_index.md | 2 +- .../cpp/aspose.pdf/pdfsaveoptions/_index.md | 2 +- english/cpp/aspose.pdf/pdfversion/_index.md | 2 +- .../aspose.pdf/pdfversionmethods/_index.md | 2 +- .../aspose.pdf/pdfxmlloadoptions/_index.md | 2 +- .../aspose.pdf/pdfxmlsaveoptions/_index.md | 8 +- english/cpp/aspose.pdf/permissions/_index.md | 14 +-- english/cpp/aspose.pdf/point/_index.md | 2 +- english/cpp/aspose.pdf/point3d/_index.md | 2 +- .../cpp/aspose.pdf/pptxsaveoptions/_index.md | 8 +- english/cpp/aspose.pdf/printduplex/_index.md | 2 +- .../aspose.pdf/printduplexconverter/_index.md | 2 +- english/cpp/aspose.pdf/printscaling/_index.md | 2 +- .../printscalingconverter/_index.md | 2 +- english/cpp/aspose.pdf/producttype/_index.md | 2 +- .../aspose.pdf/progresseventtype/_index.md | 2 +- .../cpp/aspose.pdf/psloadoptions/_index.md | 2 +- .../cpp/aspose.pdf/pssaveoptions/_index.md | 8 +- english/cpp/aspose.pdf/rectangle/_index.md | 2 +- english/cpp/aspose.pdf/regexmanager/_index.md | 27 ++++++ .../regexmanager/regexmanager/_index.md | 23 +++++ .../cpp/aspose.pdf/renderingoptions/_index.md | 2 +- english/cpp/aspose.pdf/resources/_index.md | 2 +- english/cpp/aspose.pdf/returnaction/_index.md | 2 +- .../_index.md | 2 +- english/cpp/aspose.pdf/rotation/_index.md | 2 +- english/cpp/aspose.pdf/row/_index.md | 2 +- english/cpp/aspose.pdf/rows/_index.md | 2 +- english/cpp/aspose.pdf/saveformat/_index.md | 2 +- english/cpp/aspose.pdf/saveoptions/_index.md | 2 +- .../saveoptions/borderinfo/_index.md | 8 -- .../saveoptions/borderpartstyle/_index.md | 6 -- .../saveoptions/margininfo/_index.md | 8 -- .../saveoptions/resourcesavinginfo/_index.md | 7 -- english/cpp/aspose.pdf/stamp/_index.md | 2 +- .../cpp/aspose.pdf/svgloadoptions/_index.md | 7 +- .../conversionengines/_index.md | 2 +- .../cpp/aspose.pdf/svgsaveoptions/_index.md | 12 +-- .../embeddedimagessavingstrategy/_index.md | 2 +- .../svgexternalimagetype/_index.md | 2 +- .../svgimagesavinginfo/_index.md | 10 +- english/cpp/aspose.pdf/table/_index.md | 2 +- english/cpp/aspose.pdf/tablebroken/_index.md | 2 +- english/cpp/aspose.pdf/taborder/_index.md | 2 +- .../texfilesysteminputdirectory/_index.md | 2 +- .../texfilesystemoutputdirectory/_index.md | 2 +- english/cpp/aspose.pdf/texfragment/_index.md | 2 +- .../cpp/aspose.pdf/texloadoptions/_index.md | 2 +- .../cpp/aspose.pdf/texloadresult/_index.md | 2 +- .../texmemoryoutputdirectory/_index.md | 2 +- .../cpp/aspose.pdf/texsaveoptions/_index.md | 8 +- english/cpp/aspose.pdf/textstamp/_index.md | 2 +- .../aspose.pdf/timestampsettings/_index.md | 2 +- .../timestampsettings/_index.md | 4 +- english/cpp/aspose.pdf/tocinfo/_index.md | 2 +- .../cpp/aspose.pdf/txtloadoptions/_index.md | 2 +- .../aspose.pdf/unifiedsaveoptions/_index.md | 8 +- .../conversionprogresseventhandler/_index.md | 2 +- .../progresseventhandlerinfo/_index.md | 10 +- .../unsupportedfonttypeexception/_index.md | 2 +- .../aspose.pdf/verticalalignment/_index.md | 2 +- english/cpp/aspose.pdf/warninginfo/_index.md | 2 +- english/cpp/aspose.pdf/warningtype/_index.md | 2 +- english/cpp/aspose.pdf/watermark/_index.md | 2 +- .../aspose.pdf/watermarkartifact/_index.md | 2 +- english/cpp/aspose.pdf/webhyperlink/_index.md | 2 +- english/cpp/aspose.pdf/xfatag/_index.md | 2 +- english/cpp/aspose.pdf/xform/_index.md | 2 +- .../cpp/aspose.pdf/xformcollection/_index.md | 2 +- english/cpp/aspose.pdf/ximage/_index.md | 2 +- .../aspose.pdf/ximageaddingparams/_index.md | 2 +- .../cpp/aspose.pdf/ximagecollection/_index.md | 2 +- .../cpp/aspose.pdf/xmlloadoptions/_index.md | 2 +- .../cpp/aspose.pdf/xmlsaveoptions/_index.md | 2 +- english/cpp/aspose.pdf/xmpfield/_index.md | 2 +- english/cpp/aspose.pdf/xmpfieldtype/_index.md | 2 +- .../xmppdfaextensioncategorytype/_index.md | 2 +- .../xmppdfaextensionfield/_index.md | 2 +- .../xmppdfaextensionobject/_index.md | 2 +- .../xmppdfaextensionproperty/_index.md | 2 +- .../xmppdfaextensionschema/_index.md | 2 +- .../_index.md | 2 +- .../xmppdfaextensionvaluetype/_index.md | 2 +- english/cpp/aspose.pdf/xmpvalue/_index.md | 2 +- .../cpp/aspose.pdf/xpsloadoptions/_index.md | 2 +- .../cpp/aspose.pdf/xpssaveoptions/_index.md | 8 +- .../cpp/aspose.pdf/xslfoloadoptions/_index.md | 7 +- .../parsingerrorshandlingtypes/_index.md | 2 +- .../system.collections.concurrent/_index.md | 2 +- .../concurrentdictionary/_index.md | 1 + .../concurrentdictionary/basetype/_index.md | 2 +- .../concurrentdictionary/thistype/_index.md | 2 +- .../concurrentdictionary/tryadd/_index.md | 33 +++++++ .../cpp/system.collections.generic/_index.md | 3 +- .../_net_binnary_search/_index.md | 4 +- .../comparer/_index.md | 39 ++++++++ .../comparer/basetype/_index.md | 23 +++++ .../comparer/get_default/_index.md | 30 ++++++ .../comparer/thistype/_index.md | 23 +++++ .../defaultcomparer/_index.md | 2 +- .../dictionary/_index.md | 2 +- .../dictionary/dictionary/_index.md | 6 +- .../dictionaryiterator/_index.md | 2 +- .../dictionaryptr/_index.md | 2 +- .../enumerableext/_index.md | 2 +- .../enumeratorwrapperiterator/_index.md | 2 +- .../hashdictionary/_index.md | 2 +- .../hashset/_index.md | 2 +- .../hashset/hashset/_index.md | 2 +- .../hashsetptr/_index.md | 2 +- .../icollection/_index.md | 2 +- .../icomparer/_index.md | 2 +- .../idictionary/_index.md | 2 +- .../ienumerable/_index.md | 10 +- .../ienumerable/const_iterator/_index.md | 2 +- .../ienumerable/ienumeratortype/_index.md | 2 +- .../ienumerable/iterator/_index.md | 2 +- .../ienumerable/linq_aggregate/_index.md | 33 +++++++ .../ienumerable/linq_all/_index.md | 2 +- .../ienumerable/linq_any/_index.md | 2 +- .../ienumerable/linq_cast/_index.md | 2 +- .../ienumerable/linq_concat/_index.md | 2 +- .../ienumerable/linq_contains/_index.md | 2 +- .../ienumerable/linq_count/_index.md | 2 +- .../ienumerable/linq_elementat/_index.md | 4 +- .../linq_elementatordefault/_index.md | 32 +++++++ .../ienumerable/linq_first/_index.md | 2 +- .../ienumerable/linq_firstordefault/_index.md | 2 +- .../ienumerable/linq_groupby/_index.md | 2 +- .../ienumerable/linq_last/_index.md | 2 +- .../ienumerable/linq_lastordefault/_index.md | 2 +- .../ienumerable/linq_max/_index.md | 52 +++++++++++ .../ienumerable/linq_min/_index.md | 52 +++++++++++ .../ienumerable/linq_oftype/_index.md | 2 +- .../ienumerable/linq_orderby/_index.md | 12 +-- .../linq_orderbydescending/_index.md | 12 +-- .../ienumerable/linq_reverse/_index.md | 30 ++++++ .../ienumerable/linq_select/_index.md | 2 +- .../ienumerable/linq_selectmany/_index.md | 2 +- .../ienumerable/linq_take/_index.md | 34 +++++++ .../ienumerable/linq_toarray/_index.md | 2 +- .../ienumerable/linq_tolist/_index.md | 2 +- .../ienumerable/linq_where/_index.md | 2 +- .../ienumerable/valuetype/_index.md | 2 +- .../virtualizebeginconstiterator/_index.md | 2 +- .../virtualizebeginiterator/_index.md | 2 +- .../virtualized_iterator/_index.md | 2 +- .../virtualized_iterator_element/_index.md | 2 +- .../virtualizeendconstiterator/_index.md | 2 +- .../virtualizeenditerator/_index.md | 2 +- .../ienumerator/_index.md | 2 +- .../iequalitycomparer/_index.md | 2 +- .../ikvcollection/_index.md | 2 +- .../ilist/_index.md | 2 +- .../system.collections.generic/iset/_index.md | 2 +- .../keyiterator/_index.md | 2 +- .../keyvaluepair/_index.md | 2 +- .../kvpairiterator/_index.md | 2 +- .../linkedlist/_index.md | 2 +- .../linkedlistnode/_index.md | 2 +- .../system.collections.generic/list/_index.md | 2 +- .../list/binarysearch/_index.md | 4 +- .../listext/_index.md | 2 +- .../listptr/_index.md | 2 +- .../operator!=/_index.md | 2 +- .../operator==/_index.md | 2 +- .../operator__/_index.md | 2 +- .../queue/_index.md | 2 +- .../queueptr/_index.md | 2 +- .../reverseenumerator/_index.md | 2 +- .../simpleenumerator/_index.md | 2 +- .../sorteddictionary/_index.md | 2 +- .../sorteddictionary/_index.md | 4 +- .../sorteddictionaryptr/_index.md | 2 +- .../sortedlist/_index.md | 2 +- .../sortedlist/sortedlist/_index.md | 2 +- .../sortedlisthelper/_index.md | 2 +- .../sortedset/_index.md | 2 +- .../sortedset/sortedset/_index.md | 2 +- .../sortedsetptr/_index.md | 2 +- .../stack/_index.md | 2 +- .../stackptr/_index.md | 2 +- .../valueiterator/_index.md | 2 +- .../system.collections.objectmodel/_index.md | 2 +- .../keyedcollection/_index.md | 4 - .../system.collections.specialized/_index.md | 2 +- english/cpp/system.collections/_index.md | 3 +- .../iequalitycomparer/_index.md | 29 ++++++ .../iequalitycomparer/equals/_index.md | 38 ++++++++ .../iequalitycomparer/gethashcode/_index.md | 34 +++++++ .../cpp/system.collections/ilist/_index.md | 2 +- .../ilistimplreftype/_index.md | 2 +- .../ilistimplvaluetype/_index.md | 2 +- .../system.collections/ilistwrapper/_index.md | 2 +- .../invalidatable/_index.md | 2 +- .../invalidatabletracker/_index.md | 2 +- .../_index.md | 2 +- english/cpp/system.componentmodel/_index.md | 2 +- .../backgroundworker/_index.md | 11 +-- .../backgroundworker/reportprogress/_index.md | 4 +- .../backgroundworker/runworkerasync/_index.md | 2 +- english/cpp/system.data.common/_index.md | 2 +- english/cpp/system.data.sqlclient/_index.md | 2 +- english/cpp/system.data/_index.md | 2 +- english/cpp/system.diagnostics/_index.md | 2 +- .../cpp/system.drawing.drawing2d/_index.md | 2 +- english/cpp/system.drawing.imaging/_index.md | 2 +- english/cpp/system.drawing.printing/_index.md | 2 +- .../printdocument/_index.md | 5 - english/cpp/system.drawing.text/_index.md | 2 +- english/cpp/system.drawing/_index.md | 2 +- english/cpp/system.globalization/_index.md | 2 +- english/cpp/system.io.compression/_index.md | 2 +- english/cpp/system.io/_index.md | 2 +- .../system.io/filesysteminfostat/_index.md | 9 -- english/cpp/system.linq/_index.md | 3 +- .../system.linq/iorderedenumerable/_index.md | 41 +++++++++ .../iorderedenumerable/comparator/_index.md | 23 +++++ .../getenumerator/_index.md | 30 ++++++ .../iorderedenumerable/_index.md | 26 ++++++ .../iorderedenumerable/linq_thenby/_index.md | 56 ++++++++++++ english/cpp/system.net.cache/_index.md | 2 +- english/cpp/system.net.http.headers/_index.md | 2 +- english/cpp/system.net.http/_index.md | 2 +- .../system.net.networkinformation/_index.md | 2 +- english/cpp/system.net.security/_index.md | 2 +- english/cpp/system.net.sockets/_index.md | 2 +- english/cpp/system.net/_index.md | 2 +- english/cpp/system.net/cookie/_index.md | 2 - .../webrequestprefixelement/_index.md | 6 -- english/cpp/system.reflection/_index.md | 2 +- .../memberinfo/typeinternal/_index.md | 5 - english/cpp/system.resources/_index.md | 2 +- .../system.runtime.compilerservices/_index.md | 2 +- .../system.runtime.interopservices/_index.md | 2 +- .../system.runtime.serialization/_index.md | 2 +- .../system.security.authentication/_index.md | 2 +- .../_index.md | 2 +- .../_index.md | 2 +- .../_index.md | 2 +- .../system.security.cryptography/_index.md | 2 +- .../cspparameters/_index.md | 8 -- .../cpp/system.security.permissions/_index.md | 2 +- english/cpp/system.security.policy/_index.md | 2 +- english/cpp/system.security/_index.md | 2 +- .../_index.md | 2 +- .../system.text.regularexpressions/_index.md | 2 +- english/cpp/system.text/_index.md | 2 +- english/cpp/system.threading/_index.md | 2 +- english/cpp/system.timers/_index.md | 2 +- english/cpp/system.timers/timer/_index.md | 5 - .../system.web.services.description/_index.md | 2 +- .../system.web.services.protocols/_index.md | 2 +- .../httpwebclientprotocol/_index.md | 5 - .../soapclientmessage/_index.md | 6 -- .../soaphttpclientprotocol/_index.md | 5 - .../webclientprotocol/_index.md | 5 - english/cpp/system.web.services/_index.md | 2 +- .../cpp/system.web.ui.webcontrols/_index.md | 2 +- english/cpp/system.web/_index.md | 2 +- english/cpp/system.windows.forms/_index.md | 2 +- english/cpp/system.xml.resolvers/_index.md | 2 +- english/cpp/system.xml.schema/_index.md | 2 +- .../xmlschemacollection/_index.md | 5 - .../xmlschemacollection/ptr/_index.md | 2 +- .../xmlschemavalidator/_index.md | 5 - .../xmlschemavalidator/ptr/_index.md | 2 +- .../cpp/system.xml.serialization/_index.md | 2 +- english/cpp/system.xml.xpath/_index.md | 2 +- .../system.xml.xpath/xpathnavigator/_index.md | 2 +- .../get_navigatorcomparer/_index.md | 4 +- english/cpp/system.xml.xsl.runtime/_index.md | 2 +- english/cpp/system.xml.xsl/_index.md | 6 +- .../system.xml.xsl/xsltargumentlist/_index.md | 5 - .../xsltargumentlist/ptr/_index.md | 2 +- .../xsltmessageencounteredeventargs/_index.md | 2 +- .../_index.md | 2 +- english/cpp/system.xml/_index.md | 6 +- english/cpp/system.xml/xmldocument/_index.md | 10 -- .../cpp/system.xml/xmldocument/ptr/_index.md | 2 +- .../xmlnodechangedeventargs/_index.md | 2 +- .../get_newvalue/_index.md | 2 +- .../get_oldvalue/_index.md | 2 +- .../xmlnodechangedeventhandler/_index.md | 2 +- english/cpp/system/_index.md | 8 +- english/cpp/system/action/_index.md | 2 +- english/cpp/system/array/_index.md | 1 + .../cpp/system/array/const_iterator/_index.md | 2 +- .../array/const_reverse_iterator/_index.md | 2 +- .../system/array/constrainedcopy/_index.md | 41 +++++++++ english/cpp/system/array/convertall/_index.md | 2 +- english/cpp/system/array/copy/_index.md | 2 +- .../cpp/system/array/enumerableptr/_index.md | 2 +- english/cpp/system/array/enumerator/_index.md | 2 +- .../cpp/system/array/enumeratorptr/_index.md | 2 +- english/cpp/system/array/exists/_index.md | 2 +- english/cpp/system/array/find/_index.md | 2 +- english/cpp/system/array/findall/_index.md | 2 +- english/cpp/system/array/findindex/_index.md | 2 +- english/cpp/system/array/foreach/_index.md | 2 +- english/cpp/system/array/iterator/_index.md | 2 +- .../cpp/system/array/lastindexof/_index.md | 2 +- english/cpp/system/array/resize/_index.md | 2 +- english/cpp/system/array/reverse/_index.md | 2 +- .../system/array/reverse_iterator/_index.md | 2 +- english/cpp/system/array/sort/_index.md | 2 +- english/cpp/system/array/trueforall/_index.md | 2 +- .../cpp/system/array/underlyingtype/_index.md | 2 +- english/cpp/system/array/valuetype/_index.md | 2 +- english/cpp/system/arrayptr/_index.md | 2 +- english/cpp/system/ascast/_index.md | 29 +++++- english/cpp/system/asynccallback/_index.md | 2 +- .../system/badimageformatexception/_index.md | 2 +- .../system/base64formattingoptions/_index.md | 2 +- english/cpp/system/boxedenum/_index.md | 2 +- .../getunsignedlonglongvalue/_index.md | 2 +- english/cpp/system/boxedvalue/_index.md | 3 +- .../getunsignedlonglongvalue/_index.md | 6 +- english/cpp/system/boxedvaluebase/_index.md | 4 +- .../getunsignedlonglongvalue/_index.md | 2 +- .../cpp/system/boxedvaluebase/parse/_index.md | 2 +- .../system/boxedvaluebase/tostring/_index.md | 44 +++++++++ english/cpp/system/bytearrayptr/_index.md | 2 +- english/cpp/system/cast/_index.md | 2 +- english/cpp/system/cast_noexcept/_index.md | 2 +- english/cpp/system/castenumerableto/_index.md | 2 +- english/cpp/system/checkedcast/_index.md | 2 +- english/cpp/system/compare/_index.md | 2 +- .../cpp/system/const_pointer_cast/_index.md | 2 +- english/cpp/system/constcast/_index.md | 2 +- english/cpp/system/converter/_index.md | 2 +- english/cpp/system/datetimekind/_index.md | 2 +- english/cpp/system/dayofweek/_index.md | 2 +- .../system/decoderfallbackbufferptr/_index.md | 2 +- .../cpp/system/decoderfallbackptr/_index.md | 2 +- english/cpp/system/decoderptr/_index.md | 2 +- .../decoderreplacementfallbackptr/_index.md | 2 +- english/cpp/system/default/_index.md | 2 +- english/cpp/system/directoryinfoptr/_index.md | 2 +- english/cpp/system/discard/_index.md | 27 ++++++ english/cpp/system/dotryfinally/_index.md | 2 +- .../cpp/system/dynamic_pointer_cast/_index.md | 2 +- english/cpp/system/dynamiccast/_index.md | 2 +- .../cpp/system/dynamiccast_noexcept/_index.md | 2 +- english/cpp/system/dynamiccastarray/_index.md | 2 +- .../system/encoderfallbackbufferptr/_index.md | 2 +- .../cpp/system/encoderfallbackptr/_index.md | 2 +- english/cpp/system/encoderptr/_index.md | 2 +- .../_index.md | 2 +- .../encoderreplacementfallbackptr/_index.md | 2 +- english/cpp/system/encodinginfoptr/_index.md | 2 +- english/cpp/system/encodingptr/_index.md | 2 +- english/cpp/system/enumgetname/_index.md | 2 +- english/cpp/system/enumvalues/_index.md | 7 ++ .../cpp/system/enumvalues/getnames/_index.md | 25 +++++ .../enumvalues/getunderlyingtype/_index.md | 24 +++++ .../system/enumvalues/getvalueof/_index.md | 29 +++++- .../cpp/system/enumvalues/getvalues/_index.md | 2 +- english/cpp/system/enumvaluesbase/_index.md | 4 + .../system/enumvaluesbase/getnames/_index.md | 35 +++++++ .../getunderlyingtype/_index.md | 33 +++++++ .../system/enumvaluesbase/getvalues/_index.md | 2 +- .../cpp/system/enumvaluesbase/parse/_index.md | 2 +- .../system/enumvaluesbase/toobject/_index.md | 63 +++++++++++++ .../environmentvariabletarget/_index.md | 2 +- english/cpp/system/equals/_index.md | 2 +- .../system/equals_double,double_/_index.md | 2 +- .../cpp/system/equals_float,float_/_index.md | 2 +- english/cpp/system/event/_index.md | 2 +- english/cpp/system/eventargsptr/_index.md | 2 +- english/cpp/system/eventhandler/_index.md | 2 +- english/cpp/system/exception/_index.md | 2 +- english/cpp/system/exceptionptr/_index.md | 2 +- english/cpp/system/explicitcast/_index.md | 2 +- english/cpp/system/fileinfoptr/_index.md | 2 +- english/cpp/system/filestreamptr/_index.md | 2 +- .../cpp/system/filesysteminfoptr/_index.md | 2 +- english/cpp/system/flagsattribute/_index.md | 23 +++++ english/cpp/system/forcestaticcast/_index.md | 2 +- .../cpp/system/foreachmembergvname/_index.md | 2 +- english/cpp/system/func/_index.md | 2 +- english/cpp/system/gc/_index.md | 2 +- english/cpp/system/get_pointer/_index.md | 2 +- english/cpp/system/gethashcode/_index.md | 2 +- english/cpp/system/guid/_index.md | 2 +- english/cpp/system/iasyncresult/_index.md | 2 +- english/cpp/system/iasyncresultptr/_index.md | 2 +- english/cpp/system/icloneable/_index.md | 2 +- english/cpp/system/icomparable/_index.md | 2 +- english/cpp/system/iconvertible/_index.md | 2 +- english/cpp/system/icustomformatter/_index.md | 2 +- english/cpp/system/idisposable/_index.md | 2 +- english/cpp/system/iequatable/_index.md | 2 +- english/cpp/system/iformatprovider/_index.md | 2 +- .../cpp/system/iformatproviderptr/_index.md | 2 +- english/cpp/system/iformattable/_index.md | 2 +- english/cpp/system/int16/_index.md | 2 +- english/cpp/system/int32/_index.md | 2 +- english/cpp/system/int64/_index.md | 2 +- english/cpp/system/is_vp_test/_index.md | 2 +- .../system/isenummetainfodefined/_index.md | 2 +- english/cpp/system/isinfinity/_index.md | 2 +- english/cpp/system/isnan/_index.md | 2 +- .../cpp/system/isnegativeinfinity/_index.md | 2 +- english/cpp/system/ispattern/_index.md | 38 ++++++++ .../cpp/system/ispositiveinfinity/_index.md | 2 +- english/cpp/system/iterateover/_index.md | 2 +- english/cpp/system/lockcontext/_index.md | 2 +- english/cpp/system/makearray/_index.md | 2 +- english/cpp/system/makeconstref_t/_index.md | 2 +- english/cpp/system/makeobject/_index.md | 2 +- english/cpp/system/makescopeguard/_index.md | 2 +- english/cpp/system/makesharedptr/_index.md | 2 +- .../cpp/system/marshalbyrefobject/_index.md | 2 +- english/cpp/system/memberwiseclone/_index.md | 2 +- english/cpp/system/memorystreamptr/_index.md | 2 +- english/cpp/system/midpointrounding/_index.md | 2 +- .../_index.md | 2 +- english/cpp/system/nullable/_index.md | 2 +- english/cpp/system/nullableutils/_index.md | 27 ++++++ .../nullableutils/getunderlyingtype/_index.md | 33 +++++++ english/cpp/system/object/_index.md | 2 +- english/cpp/system/objectext/_index.md | 2 +- .../_index.md | 2 +- .../_index.md | 2 +- english/cpp/system/objecttype/_index.md | 2 +- english/cpp/system/operatingsystem/_index.md | 2 +- english/cpp/system/operator!=/_index.md | 2 +- english/cpp/system/operator+/_index.md | 2 +- english/cpp/system/operator-/_index.md | 2 +- english/cpp/system/operator/_index.md | 2 +- english/cpp/system/operator==/_index.md | 2 +- english/cpp/system/operator_/_index.md | 6 +- english/cpp/system/operator_=/_index.md | 4 +- english/cpp/system/operator__/_index.md | 4 +- english/cpp/system/platformid/_index.md | 2 +- english/cpp/system/predicate/_index.md | 2 +- english/cpp/system/printto/_index.md | 2 +- english/cpp/system/random/_index.md | 2 +- english/cpp/system/ref/_index.md | 2 +- english/cpp/system/safeinvoke/_index.md | 37 ++++++++ english/cpp/system/scopedculture/_index.md | 2 +- english/cpp/system/setter_add_wrap/_index.md | 2 +- english/cpp/system/setter_and_wrap/_index.md | 2 +- .../system/setter_decrement_wrap/_index.md | 2 +- english/cpp/system/setter_div_wrap/_index.md | 2 +- english/cpp/system/setter_exor_wrap/_index.md | 2 +- .../system/setter_increment_wrap/_index.md | 2 +- english/cpp/system/setter_mod_wrap/_index.md | 2 +- english/cpp/system/setter_mul_wrap/_index.md | 2 +- english/cpp/system/setter_or_wrap/_index.md | 2 +- .../setter_post_decrement_wrap/_index.md | 2 +- .../setter_post_increment_wrap/_index.md | 2 +- english/cpp/system/setter_shl_wrap/_index.md | 2 +- english/cpp/system/setter_shr_wrap/_index.md | 2 +- english/cpp/system/setter_sub_wrap/_index.md | 2 +- english/cpp/system/setter_wrap/_index.md | 2 +- english/cpp/system/sharedptr/_index.md | 2 +- english/cpp/system/smartptr/_index.md | 2 +- english/cpp/system/smartptrinfo/_index.md | 2 +- english/cpp/system/smartptrmode/_index.md | 2 +- .../cpp/system/static_pointer_cast/_index.md | 2 +- english/cpp/system/staticcast/_index.md | 2 +- .../cpp/system/staticcast_noexcept/_index.md | 2 +- english/cpp/system/staticcastarray/_index.md | 2 +- english/cpp/system/streamptr/_index.md | 2 +- english/cpp/system/streamreaderptr/_index.md | 2 +- english/cpp/system/streamwriterptr/_index.md | 2 +- english/cpp/system/string/_index.md | 2 +- english/cpp/system/stringcomparer/_index.md | 2 +- .../cpp/system/stringcomparerptr/_index.md | 2 +- english/cpp/system/stringcomparison/_index.md | 2 +- .../system/stringhashcompiletime/_index.md | 2 +- .../cpp/system/stringsplitoptions/_index.md | 2 +- english/cpp/system/timespan/_index.md | 2 +- english/cpp/system/timezone/_index.md | 2 +- english/cpp/system/timezoneinfo/_index.md | 2 +- english/cpp/system/timezoneinfoptr/_index.md | 2 +- english/cpp/system/timezoneptr/_index.md | 2 +- english/cpp/system/tuple/_index.md | 2 +- english/cpp/system/tuplefactory/_index.md | 2 +- english/cpp/system/typecode/_index.md | 2 +- english/cpp/system/typeinfo/_index.md | 6 +- .../cpp/system/typeinfo/boxedvalue/_index.md | 7 +- .../typeinfo/defaultconstructor/_index.md | 2 +- .../cpp/system/typeinfo/emptytype/_index.md | 23 +++++ .../cpp/system/typeinfo/emptytypes/_index.md | 2 +- english/cpp/system/typeinfo/equals/_index.md | 24 +++++ .../system/typeinfo/get_assembly/_index.md | 2 +- .../get_assemblyqualifiedname/_index.md | 2 +- .../system/typeinfo/get_basetype/_index.md | 2 +- .../get_containsgenericparameters/_index.md | 2 +- .../typeinfo/get_declaredmember/_index.md | 2 +- .../system/typeinfo/get_fullname/_index.md | 2 +- .../get_generictypearguments/_index.md | 2 +- .../system/typeinfo/get_isabstract/_index.md | 2 +- .../cpp/system/typeinfo/get_isarray/_index.md | 2 +- .../cpp/system/typeinfo/get_isclass/_index.md | 2 +- .../cpp/system/typeinfo/get_isenum/_index.md | 2 +- .../typeinfo/get_isgenerictype/_index.md | 2 +- .../get_isgenerictypedefinition/_index.md | 2 +- .../system/typeinfo/get_isinterface/_index.md | 2 +- .../system/typeinfo/get_issealed/_index.md | 2 +- .../system/typeinfo/get_isvaluetype/_index.md | 2 +- .../system/typeinfo/get_isvisible/_index.md | 2 +- .../cpp/system/typeinfo/get_name/_index.md | 2 +- .../system/typeinfo/get_namespace/_index.md | 2 +- .../system/typeinfo/getconstructor/_index.md | 2 +- .../system/typeinfo/getconstructors/_index.md | 2 +- .../typeinfo/getcustomattribute/_index.md | 2 +- .../typeinfo/getcustomattributes/_index.md | 2 +- .../system/typeinfo/getelementtype/_index.md | 2 +- .../cpp/system/typeinfo/getfield/_index.md | 27 ++++++ .../cpp/system/typeinfo/getfields/_index.md | 2 +- .../typeinfo/getgenericarguments/_index.md | 2 +- .../cpp/system/typeinfo/gethashcode/_index.md | 2 +- .../system/typeinfo/getinterfaces/_index.md | 2 +- .../cpp/system/typeinfo/getmember/_index.md | 2 +- .../cpp/system/typeinfo/getmethod/_index.md | 2 +- .../system/typeinfo/getproperties/_index.md | 2 +- .../typeinfo/gettemplparamtype/_index.md | 2 +- english/cpp/system/typeinfo/hash/_index.md | 2 +- .../typeinfo/isassignablefrom/_index.md | 2 +- .../cpp/system/typeinfo/isdefined/_index.md | 34 +++++++ .../typeinfo/isinstanceoftype/_index.md | 2 +- .../system/typeinfo/issubclassof/_index.md | 2 +- .../cpp/system/typeinfo/operator!=/_index.md | 2 +- .../cpp/system/typeinfo/operator==/_index.md | 2 +- english/cpp/system/typeinfo/reset/_index.md | 2 +- .../system/typeinfo/set_isvaluetype/_index.md | 2 +- .../cpp/system/typeinfo/setbasetype/_index.md | 2 +- .../typeinfo/settemplparamtype/_index.md | 2 +- .../cpp/system/typeinfo/tostring/_index.md | 2 +- english/cpp/system/uri/_index.md | 2 +- english/cpp/system/uribuilder/_index.md | 2 +- english/cpp/system/uricomponents/_index.md | 2 +- english/cpp/system/uriformat/_index.md | 2 +- english/cpp/system/urihostnametype/_index.md | 2 +- english/cpp/system/urikind/_index.md | 2 +- english/cpp/system/uriparser/_index.md | 2 +- english/cpp/system/uripartial/_index.md | 2 +- english/cpp/system/urishim/_index.md | 2 +- english/cpp/system/valuetype/_index.md | 2 +- english/cpp/system/version/_index.md | 2 +- english/cpp/system/void/_index.md | 2 +- english/cpp/system/weakptr/_index.md | 2 +- english/cpp/system/weakreference/_index.md | 2 +- english/cpp/system/weakreference__/_index.md | 2 +- english/cpp/system/weakreference_t_/_index.md | 2 +- 939 files changed, 4801 insertions(+), 1244 deletions(-) create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/center/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/datecomponent/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/datecomponent/datecomponent/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/datecomponent/get_format/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/datecomponent/getformat/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/datecomponent/set_format/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/footer/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/header/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/headerfooterdata/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/headerfooterdata/get_pagedate/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/headerfooterdata/get_pagenumber/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/headerfooterdata/set_pagedate/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/headerfooterdata/set_pagenumber/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/headerfootersettings/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/headerfootersettings/get_footer/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/headerfootersettings/get_header/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/headerfootersettings/get_pagerange/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/headerfootersettings/set_footer/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/headerfootersettings/set_header/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/headerfootersettings/set_pagerange/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/horizontalalignment/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/horizontalalignment/get_center/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/horizontalalignment/get_left/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/horizontalalignment/get_right/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/horizontalalignment/set_center/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/horizontalalignment/set_left/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/horizontalalignment/set_right/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/left/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/pagedate/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/pagedate/daycomponent/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/pagedate/daycomponent/getformat/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/pagedate/get_day/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/pagedate/get_delimiter/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/pagedate/get_month/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/pagedate/get_year/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/pagedate/getformatteddate/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/pagedate/monthcomponent/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/pagedate/monthcomponent/getformat/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/pagedate/set_day/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/pagedate/set_delimiter/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/pagedate/set_month/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/pagedate/set_year/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/pagedate/yearcomponent/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/pagedate/yearcomponent/getformat/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/pagenumber/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/pagenumber/get_delimiter/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/pagenumber/get_index/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/pagenumber/get_offset/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/pagenumber/get_totalnum/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/pagenumber/getpagenumberstring/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/pagenumber/pageindex/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/pagenumber/pagenumber/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/pagenumber/pagetotalnum/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/pagenumber/set_delimiter/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/pagenumber/set_index/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/pagenumber/set_offset/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/pagenumber/set_totalnum/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/pagerange/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/pagerange/get_end/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/pagerange/get_even/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/pagerange/get_odd/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/pagerange/get_start/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/pagerange/pagerange/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/pagerange/set_end/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/pagerange/set_even/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/pagerange/set_odd/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/pagerange/set_start/_index.md create mode 100644 english/cpp/aspose.pdf.artifacts.pagination/right/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdffilesignature/getsignaturesinfo/_index.md create mode 100644 english/cpp/aspose.pdf.forms/signature/getsignaturealgorithminfo/_index.md create mode 100644 english/cpp/aspose.pdf.logicalstructure/structureelement/removeandmoveitschildobjectstoitsparent/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/optimizationoptions/get_linkduplicatestreams/_index.md create mode 100644 english/cpp/aspose.pdf.optimization/optimizationoptions/set_linkduplicatestreams/_index.md create mode 100644 english/cpp/aspose.pdf.security/_index.md create mode 100644 english/cpp/aspose.pdf.security/cryptographicstandard/_index.md create mode 100644 english/cpp/aspose.pdf.security/dsaalgorithminfo/_index.md create mode 100644 english/cpp/aspose.pdf.security/ecdsaalgorithminfo/_index.md create mode 100644 english/cpp/aspose.pdf.security/keyedsignaturealgorithminfo/_index.md create mode 100644 english/cpp/aspose.pdf.security/rsaalgorithminfo/_index.md create mode 100644 english/cpp/aspose.pdf.security/signaturealgorithminfo/_index.md create mode 100644 english/cpp/aspose.pdf.security/signaturealgorithminfo/get_signaturename/_index.md create mode 100644 english/cpp/aspose.pdf.security/signaturealgorithminfo/tostring/_index.md create mode 100644 english/cpp/aspose.pdf.security/signaturealgorithmtype/_index.md create mode 100644 english/cpp/aspose.pdf.security/timestampalgorithminfo/_index.md create mode 100644 english/cpp/aspose.pdf.security/unknownsignaturealgorithminfo/_index.md create mode 100644 english/cpp/aspose.pdf/document/isrepairneeded/_index.md create mode 100644 english/cpp/aspose.pdf/graphinfo/get_x/_index.md create mode 100644 english/cpp/aspose.pdf/graphinfo/get_y/_index.md create mode 100644 english/cpp/aspose.pdf/pagecollectionextension/_index.md create mode 100644 english/cpp/aspose.pdf/pagecollectionextension/pagecollectionextension/_index.md create mode 100644 english/cpp/aspose.pdf/pagecollectionextension/updatepagination/_index.md create mode 100644 english/cpp/aspose.pdf/regexmanager/_index.md create mode 100644 english/cpp/aspose.pdf/regexmanager/regexmanager/_index.md create mode 100644 english/cpp/system.collections.concurrent/concurrentdictionary/tryadd/_index.md create mode 100644 english/cpp/system.collections.generic/comparer/_index.md create mode 100644 english/cpp/system.collections.generic/comparer/basetype/_index.md create mode 100644 english/cpp/system.collections.generic/comparer/get_default/_index.md create mode 100644 english/cpp/system.collections.generic/comparer/thistype/_index.md create mode 100644 english/cpp/system.collections.generic/ienumerable/linq_aggregate/_index.md create mode 100644 english/cpp/system.collections.generic/ienumerable/linq_elementatordefault/_index.md create mode 100644 english/cpp/system.collections.generic/ienumerable/linq_max/_index.md create mode 100644 english/cpp/system.collections.generic/ienumerable/linq_min/_index.md create mode 100644 english/cpp/system.collections.generic/ienumerable/linq_reverse/_index.md create mode 100644 english/cpp/system.collections.generic/ienumerable/linq_take/_index.md create mode 100644 english/cpp/system.collections/iequalitycomparer/_index.md create mode 100644 english/cpp/system.collections/iequalitycomparer/equals/_index.md create mode 100644 english/cpp/system.collections/iequalitycomparer/gethashcode/_index.md create mode 100644 english/cpp/system.linq/iorderedenumerable/_index.md create mode 100644 english/cpp/system.linq/iorderedenumerable/comparator/_index.md create mode 100644 english/cpp/system.linq/iorderedenumerable/getenumerator/_index.md create mode 100644 english/cpp/system.linq/iorderedenumerable/iorderedenumerable/_index.md create mode 100644 english/cpp/system.linq/iorderedenumerable/linq_thenby/_index.md create mode 100644 english/cpp/system/array/constrainedcopy/_index.md create mode 100644 english/cpp/system/boxedvaluebase/tostring/_index.md create mode 100644 english/cpp/system/discard/_index.md create mode 100644 english/cpp/system/enumvalues/getnames/_index.md create mode 100644 english/cpp/system/enumvalues/getunderlyingtype/_index.md create mode 100644 english/cpp/system/enumvaluesbase/getnames/_index.md create mode 100644 english/cpp/system/enumvaluesbase/getunderlyingtype/_index.md create mode 100644 english/cpp/system/enumvaluesbase/toobject/_index.md create mode 100644 english/cpp/system/flagsattribute/_index.md create mode 100644 english/cpp/system/ispattern/_index.md create mode 100644 english/cpp/system/nullableutils/_index.md create mode 100644 english/cpp/system/nullableutils/getunderlyingtype/_index.md create mode 100644 english/cpp/system/safeinvoke/_index.md create mode 100644 english/cpp/system/typeinfo/emptytype/_index.md create mode 100644 english/cpp/system/typeinfo/equals/_index.md create mode 100644 english/cpp/system/typeinfo/getfield/_index.md create mode 100644 english/cpp/system/typeinfo/isdefined/_index.md diff --git a/english/cpp/_index.md b/english/cpp/_index.md index 08ef4c6ede..c7d368f43c 100644 --- a/english/cpp/_index.md +++ b/english/cpp/_index.md @@ -16,6 +16,7 @@ is_root: true | --- | --- | | [Aspose::Pdf](./aspose.pdf/) | | | [Aspose::Pdf::Annotations](./aspose.pdf.annotations/) | | +| [Aspose::Pdf::Artifacts::Pagination](./aspose.pdf.artifacts.pagination/) | | | [Aspose::Pdf::Collections](./aspose.pdf.collections/) | | | [Aspose::Pdf::Comparison](./aspose.pdf.comparison/) | | | [Aspose::Pdf::Comparison::Diff](./aspose.pdf.comparison.diff/) | | @@ -36,12 +37,13 @@ is_root: true | [Aspose::Pdf::PdfAOptionClasses](./aspose.pdf.pdfaoptionclasses/) | | | [Aspose::Pdf::PdfToMarkdown](./aspose.pdf.pdftomarkdown/) | | | [Aspose::Pdf::Sanitization](./aspose.pdf.sanitization/) | | +| [Aspose::Pdf::Security](./aspose.pdf.security/) | | | [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](./aspose.pdf.vector/) | The **[Aspose.Pdf.Vector](./aspose.pdf.vector/)** is a root namespace for graphics operations. | | [Aspose::Pdf::Vector::Extraction](./aspose.pdf.vector.extraction/) | | | [Aspose::Pdf::XfaConverter](./aspose.pdf.xfaconverter/) | | | [System](./system/) | | diff --git a/english/cpp/aspose.pdf.artifacts.pagination/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/_index.md new file mode 100644 index 0000000000..3eb87806d0 --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination namespace +linktitle: Aspose::Pdf::Artifacts::Pagination +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Artifacts::Pagination namespace in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.artifacts.pagination/ +--- + + + +## Classes + +| Class | Description | +| --- | --- | +| [Center](./center/) | Represents the center alignment settings for header and footer data. | +| [DateComponent](./datecomponent/) | Represents a base class for date components with a format attribute. | +| [Footer](./footer/) | Represents the footer settings. | +| [Header](./header/) | Represents the header settings. | +| [HeaderFooterData](./headerfooterdata/) | Represents the pagination data for header and footer. | +| [HeaderFooterSettings](./headerfootersettings/) | Represents the settings for header and footer artifacts. | +| [HorizontalAlignment](./horizontalalignment/) | Represents horizontal alignment settings for header and footer. | +| [Left](./left/) | Represents the left alignment settings for header and footer data. | +| [PageDate](./pagedate/) | Represents a date format composed of day, month, and year components. | +| [PageNumber](./pagenumber/) | Represents a page number format that includes an index, total number of pages, and a delimiter. | +| [PageRange](./pagerange/) | Represents the range of pages for header and footer settings. | +| [Right](./right/) | Represents the right alignment settings for header and footer data. | diff --git a/english/cpp/aspose.pdf.artifacts.pagination/center/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/center/_index.md new file mode 100644 index 0000000000..ed34e23286 --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/center/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::Center class +linktitle: Center +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::Center class. Represents the center alignment settings for header and footer data in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.artifacts.pagination/center/ +--- +## Center class + + +Represents the center alignment settings for header and footer data. + +```cpp +class Center : public Aspose::Pdf::Artifacts::Pagination::HeaderFooterData +``` + +## See Also + +* Class [HeaderFooterData](../headerfooterdata/) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/datecomponent/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/datecomponent/_index.md new file mode 100644 index 0000000000..53f7d9f70b --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/datecomponent/_index.md @@ -0,0 +1,31 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::DateComponent class +linktitle: DateComponent +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::DateComponent class. Represents a base class for date components with a format attribute in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.artifacts.pagination/datecomponent/ +--- +## DateComponent class + + +Represents a base class for date components with a format attribute. + +```cpp +class DateComponent : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [DateComponent](./datecomponent/)() | | +| [get_Format](./get_format/)() const | Gets the format for the date component. | +| [GetFormat](./getformat/)(char16_t) | Returns a string composed of a specified character repeated based on the format. | +| [set_Format](./set_format/)(int32_t) | Sets the format for the date component. | +## See Also + +* Class [Object](../../system/object/) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/datecomponent/datecomponent/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/datecomponent/datecomponent/_index.md new file mode 100644 index 0000000000..a8d64eca58 --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/datecomponent/datecomponent/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::DateComponent::DateComponent constructor +linktitle: DateComponent +second_title: Aspose.PDF for C++ API Reference +description: 'How to use DateComponent constructor of Aspose::Pdf::Artifacts::Pagination::DateComponent class in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.artifacts.pagination/datecomponent/datecomponent/ +--- +## DateComponent::DateComponent constructor + + + + +```cpp +Aspose::Pdf::Artifacts::Pagination::DateComponent::DateComponent() +``` + +## See Also + +* Class [DateComponent](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/datecomponent/get_format/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/datecomponent/get_format/_index.md new file mode 100644 index 0000000000..939b75072c --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/datecomponent/get_format/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::DateComponent::get_Format method +linktitle: get_Format +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::DateComponent::get_Format method. Gets the format for the date component in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.artifacts.pagination/datecomponent/get_format/ +--- +## DateComponent::get_Format method + + +Gets the format for the date component. + +```cpp +int32_t Aspose::Pdf::Artifacts::Pagination::DateComponent::get_Format() const +``` + +## See Also + +* Class [DateComponent](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/datecomponent/getformat/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/datecomponent/getformat/_index.md new file mode 100644 index 0000000000..2b1f02f95d --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/datecomponent/getformat/_index.md @@ -0,0 +1,33 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::DateComponent::GetFormat method +linktitle: GetFormat +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::DateComponent::GetFormat method. Returns a string composed of a specified character repeated based on the format in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.artifacts.pagination/datecomponent/getformat/ +--- +## DateComponent::GetFormat method + + +Returns a string composed of a specified character repeated based on the format. + +```cpp +System::String Aspose::Pdf::Artifacts::Pagination::DateComponent::GetFormat(char16_t ch) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| ch | char16_t | The character to repeat. | + +### ReturnValue + +A string consisting of the character repeated. + +## See Also + +* Class [String](../../../system/string/) +* Class [DateComponent](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/datecomponent/set_format/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/datecomponent/set_format/_index.md new file mode 100644 index 0000000000..4351e7014f --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/datecomponent/set_format/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::DateComponent::set_Format method +linktitle: set_Format +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::DateComponent::set_Format method. Sets the format for the date component in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.artifacts.pagination/datecomponent/set_format/ +--- +## DateComponent::set_Format method + + +Sets the format for the date component. + +```cpp +void Aspose::Pdf::Artifacts::Pagination::DateComponent::set_Format(int32_t value) +``` + +## See Also + +* Class [DateComponent](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/footer/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/footer/_index.md new file mode 100644 index 0000000000..a22c63b629 --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/footer/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::Footer class +linktitle: Footer +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::Footer class. Represents the footer settings in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.artifacts.pagination/footer/ +--- +## Footer class + + +Represents the footer settings. + +```cpp +class Footer : public Aspose::Pdf::Artifacts::Pagination::HorizontalAlignment +``` + +## See Also + +* Class [HorizontalAlignment](../horizontalalignment/) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/header/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/header/_index.md new file mode 100644 index 0000000000..e22558618f --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/header/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::Header class +linktitle: Header +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::Header class. Represents the header settings in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.artifacts.pagination/header/ +--- +## Header class + + +Represents the header settings. + +```cpp +class Header : public Aspose::Pdf::Artifacts::Pagination::HorizontalAlignment +``` + +## See Also + +* Class [HorizontalAlignment](../horizontalalignment/) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/headerfooterdata/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/headerfooterdata/_index.md new file mode 100644 index 0000000000..517d80abea --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/headerfooterdata/_index.md @@ -0,0 +1,31 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::HeaderFooterData class +linktitle: HeaderFooterData +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::HeaderFooterData class. Represents the pagination data for header and footer in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.artifacts.pagination/headerfooterdata/ +--- +## HeaderFooterData class + + +Represents the pagination data for header and footer. + +```cpp +class HeaderFooterData : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_PageDate](./get_pagedate/)() const | Gets the date settings. | +| [get_PageNumber](./get_pagenumber/)() const | Gets the page number settings. | +| [set_PageDate](./set_pagedate/)(System::SharedPtr\) | Sets the date settings. | +| [set_PageNumber](./set_pagenumber/)(System::SharedPtr\) | Sets the page number settings. | +## See Also + +* Class [Object](../../system/object/) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/headerfooterdata/get_pagedate/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/headerfooterdata/get_pagedate/_index.md new file mode 100644 index 0000000000..80cd3b555b --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/headerfooterdata/get_pagedate/_index.md @@ -0,0 +1,25 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::HeaderFooterData::get_PageDate method +linktitle: get_PageDate +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::HeaderFooterData::get_PageDate method. Gets the date settings in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.artifacts.pagination/headerfooterdata/get_pagedate/ +--- +## HeaderFooterData::get_PageDate method + + +Gets the date settings. + +```cpp +const System::SharedPtr & Aspose::Pdf::Artifacts::Pagination::HeaderFooterData::get_PageDate() const +``` + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [PageDate](../../pagedate/) +* Class [HeaderFooterData](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/headerfooterdata/get_pagenumber/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/headerfooterdata/get_pagenumber/_index.md new file mode 100644 index 0000000000..b2dd18394e --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/headerfooterdata/get_pagenumber/_index.md @@ -0,0 +1,25 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::HeaderFooterData::get_PageNumber method +linktitle: get_PageNumber +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::HeaderFooterData::get_PageNumber method. Gets the page number settings in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.artifacts.pagination/headerfooterdata/get_pagenumber/ +--- +## HeaderFooterData::get_PageNumber method + + +Gets the page number settings. + +```cpp +const System::SharedPtr & Aspose::Pdf::Artifacts::Pagination::HeaderFooterData::get_PageNumber() const +``` + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [PageNumber](../../pagenumber/) +* Class [HeaderFooterData](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/headerfooterdata/set_pagedate/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/headerfooterdata/set_pagedate/_index.md new file mode 100644 index 0000000000..bd3094e625 --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/headerfooterdata/set_pagedate/_index.md @@ -0,0 +1,25 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::HeaderFooterData::set_PageDate method +linktitle: set_PageDate +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::HeaderFooterData::set_PageDate method. Sets the date settings in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.artifacts.pagination/headerfooterdata/set_pagedate/ +--- +## HeaderFooterData::set_PageDate method + + +Sets the date settings. + +```cpp +void Aspose::Pdf::Artifacts::Pagination::HeaderFooterData::set_PageDate(System::SharedPtr value) +``` + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [PageDate](../../pagedate/) +* Class [HeaderFooterData](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/headerfooterdata/set_pagenumber/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/headerfooterdata/set_pagenumber/_index.md new file mode 100644 index 0000000000..ccea1e7396 --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/headerfooterdata/set_pagenumber/_index.md @@ -0,0 +1,25 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::HeaderFooterData::set_PageNumber method +linktitle: set_PageNumber +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::HeaderFooterData::set_PageNumber method. Sets the page number settings in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.artifacts.pagination/headerfooterdata/set_pagenumber/ +--- +## HeaderFooterData::set_PageNumber method + + +Sets the page number settings. + +```cpp +void Aspose::Pdf::Artifacts::Pagination::HeaderFooterData::set_PageNumber(System::SharedPtr value) +``` + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [PageNumber](../../pagenumber/) +* Class [HeaderFooterData](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/headerfootersettings/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/headerfootersettings/_index.md new file mode 100644 index 0000000000..5f0c9643ed --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/headerfootersettings/_index.md @@ -0,0 +1,33 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::HeaderFooterSettings class +linktitle: HeaderFooterSettings +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::HeaderFooterSettings class. Represents the settings for header and footer artifacts in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.artifacts.pagination/headerfootersettings/ +--- +## HeaderFooterSettings class + + +Represents the settings for header and footer artifacts. + +```cpp +class HeaderFooterSettings : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_Footer](./get_footer/)() const | Gets the footer settings. | +| [get_Header](./get_header/)() const | Gets the header settings. | +| [get_PageRange](./get_pagerange/)() const | Gets the range of pages for the header and footer settings. | +| [set_Footer](./set_footer/)(System::SharedPtr\) | Sets the footer settings. | +| [set_Header](./set_header/)(System::SharedPtr\) | Sets the header settings. | +| [set_PageRange](./set_pagerange/)(System::SharedPtr\) | Sets the range of pages for the header and footer settings. | +## See Also + +* Class [Object](../../system/object/) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/headerfootersettings/get_footer/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/headerfootersettings/get_footer/_index.md new file mode 100644 index 0000000000..9ec5475305 --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/headerfootersettings/get_footer/_index.md @@ -0,0 +1,25 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::HeaderFooterSettings::get_Footer method +linktitle: get_Footer +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::HeaderFooterSettings::get_Footer method. Gets the footer settings in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.artifacts.pagination/headerfootersettings/get_footer/ +--- +## HeaderFooterSettings::get_Footer method + + +Gets the footer settings. + +```cpp +const System::SharedPtr & Aspose::Pdf::Artifacts::Pagination::HeaderFooterSettings::get_Footer() const +``` + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [Footer](../../footer/) +* Class [HeaderFooterSettings](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/headerfootersettings/get_header/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/headerfootersettings/get_header/_index.md new file mode 100644 index 0000000000..e72586b041 --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/headerfootersettings/get_header/_index.md @@ -0,0 +1,25 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::HeaderFooterSettings::get_Header method +linktitle: get_Header +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::HeaderFooterSettings::get_Header method. Gets the header settings in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.artifacts.pagination/headerfootersettings/get_header/ +--- +## HeaderFooterSettings::get_Header method + + +Gets the header settings. + +```cpp +const System::SharedPtr & Aspose::Pdf::Artifacts::Pagination::HeaderFooterSettings::get_Header() const +``` + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [Header](../../header/) +* Class [HeaderFooterSettings](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/headerfootersettings/get_pagerange/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/headerfootersettings/get_pagerange/_index.md new file mode 100644 index 0000000000..5a61ea9577 --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/headerfootersettings/get_pagerange/_index.md @@ -0,0 +1,25 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::HeaderFooterSettings::get_PageRange method +linktitle: get_PageRange +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::HeaderFooterSettings::get_PageRange method. Gets the range of pages for the header and footer settings in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.artifacts.pagination/headerfootersettings/get_pagerange/ +--- +## HeaderFooterSettings::get_PageRange method + + +Gets the range of pages for the header and footer settings. + +```cpp +const System::SharedPtr & Aspose::Pdf::Artifacts::Pagination::HeaderFooterSettings::get_PageRange() const +``` + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [PageRange](../../pagerange/) +* Class [HeaderFooterSettings](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/headerfootersettings/set_footer/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/headerfootersettings/set_footer/_index.md new file mode 100644 index 0000000000..90fa7eb3e8 --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/headerfootersettings/set_footer/_index.md @@ -0,0 +1,25 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::HeaderFooterSettings::set_Footer method +linktitle: set_Footer +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::HeaderFooterSettings::set_Footer method. Sets the footer settings in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.artifacts.pagination/headerfootersettings/set_footer/ +--- +## HeaderFooterSettings::set_Footer method + + +Sets the footer settings. + +```cpp +void Aspose::Pdf::Artifacts::Pagination::HeaderFooterSettings::set_Footer(System::SharedPtr value) +``` + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [Footer](../../footer/) +* Class [HeaderFooterSettings](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/headerfootersettings/set_header/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/headerfootersettings/set_header/_index.md new file mode 100644 index 0000000000..4e0ae91735 --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/headerfootersettings/set_header/_index.md @@ -0,0 +1,25 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::HeaderFooterSettings::set_Header method +linktitle: set_Header +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::HeaderFooterSettings::set_Header method. Sets the header settings in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.artifacts.pagination/headerfootersettings/set_header/ +--- +## HeaderFooterSettings::set_Header method + + +Sets the header settings. + +```cpp +void Aspose::Pdf::Artifacts::Pagination::HeaderFooterSettings::set_Header(System::SharedPtr value) +``` + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [Header](../../header/) +* Class [HeaderFooterSettings](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/headerfootersettings/set_pagerange/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/headerfootersettings/set_pagerange/_index.md new file mode 100644 index 0000000000..d946358eb1 --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/headerfootersettings/set_pagerange/_index.md @@ -0,0 +1,25 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::HeaderFooterSettings::set_PageRange method +linktitle: set_PageRange +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::HeaderFooterSettings::set_PageRange method. Sets the range of pages for the header and footer settings in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.artifacts.pagination/headerfootersettings/set_pagerange/ +--- +## HeaderFooterSettings::set_PageRange method + + +Sets the range of pages for the header and footer settings. + +```cpp +void Aspose::Pdf::Artifacts::Pagination::HeaderFooterSettings::set_PageRange(System::SharedPtr value) +``` + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [PageRange](../../pagerange/) +* Class [HeaderFooterSettings](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/horizontalalignment/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/horizontalalignment/_index.md new file mode 100644 index 0000000000..5f627a3f90 --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/horizontalalignment/_index.md @@ -0,0 +1,33 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::HorizontalAlignment class +linktitle: HorizontalAlignment +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::HorizontalAlignment class. Represents horizontal alignment settings for header and footer in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.artifacts.pagination/horizontalalignment/ +--- +## HorizontalAlignment class + + +Represents horizontal alignment settings for header and footer. + +```cpp +class HorizontalAlignment : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_Center](./get_center/)() const | Gets the center alignment settings. | +| [get_Left](./get_left/)() const | Gets the left alignment settings. | +| [get_Right](./get_right/)() const | Gets the right alignment settings. | +| [set_Center](./set_center/)(System::SharedPtr\) | Sets the center alignment settings. | +| [set_Left](./set_left/)(System::SharedPtr\) | Sets the left alignment settings. | +| [set_Right](./set_right/)(System::SharedPtr\) | Sets the right alignment settings. | +## See Also + +* Class [Object](../../system/object/) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/horizontalalignment/get_center/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/horizontalalignment/get_center/_index.md new file mode 100644 index 0000000000..53d8933e94 --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/horizontalalignment/get_center/_index.md @@ -0,0 +1,25 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::HorizontalAlignment::get_Center method +linktitle: get_Center +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::HorizontalAlignment::get_Center method. Gets the center alignment settings in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.artifacts.pagination/horizontalalignment/get_center/ +--- +## HorizontalAlignment::get_Center method + + +Gets the center alignment settings. + +```cpp +const System::SharedPtr & Aspose::Pdf::Artifacts::Pagination::HorizontalAlignment::get_Center() const +``` + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [Center](../../center/) +* Class [HorizontalAlignment](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/horizontalalignment/get_left/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/horizontalalignment/get_left/_index.md new file mode 100644 index 0000000000..c2ae5b4e75 --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/horizontalalignment/get_left/_index.md @@ -0,0 +1,25 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::HorizontalAlignment::get_Left method +linktitle: get_Left +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::HorizontalAlignment::get_Left method. Gets the left alignment settings in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.artifacts.pagination/horizontalalignment/get_left/ +--- +## HorizontalAlignment::get_Left method + + +Gets the left alignment settings. + +```cpp +const System::SharedPtr & Aspose::Pdf::Artifacts::Pagination::HorizontalAlignment::get_Left() const +``` + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [Left](../../left/) +* Class [HorizontalAlignment](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/horizontalalignment/get_right/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/horizontalalignment/get_right/_index.md new file mode 100644 index 0000000000..9195df1141 --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/horizontalalignment/get_right/_index.md @@ -0,0 +1,25 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::HorizontalAlignment::get_Right method +linktitle: get_Right +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::HorizontalAlignment::get_Right method. Gets the right alignment settings in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.artifacts.pagination/horizontalalignment/get_right/ +--- +## HorizontalAlignment::get_Right method + + +Gets the right alignment settings. + +```cpp +const System::SharedPtr & Aspose::Pdf::Artifacts::Pagination::HorizontalAlignment::get_Right() const +``` + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [Right](../../right/) +* Class [HorizontalAlignment](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/horizontalalignment/set_center/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/horizontalalignment/set_center/_index.md new file mode 100644 index 0000000000..5895b35fe7 --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/horizontalalignment/set_center/_index.md @@ -0,0 +1,25 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::HorizontalAlignment::set_Center method +linktitle: set_Center +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::HorizontalAlignment::set_Center method. Sets the center alignment settings in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.artifacts.pagination/horizontalalignment/set_center/ +--- +## HorizontalAlignment::set_Center method + + +Sets the center alignment settings. + +```cpp +void Aspose::Pdf::Artifacts::Pagination::HorizontalAlignment::set_Center(System::SharedPtr value) +``` + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [Center](../../center/) +* Class [HorizontalAlignment](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/horizontalalignment/set_left/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/horizontalalignment/set_left/_index.md new file mode 100644 index 0000000000..fb7694d1fe --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/horizontalalignment/set_left/_index.md @@ -0,0 +1,25 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::HorizontalAlignment::set_Left method +linktitle: set_Left +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::HorizontalAlignment::set_Left method. Sets the left alignment settings in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.artifacts.pagination/horizontalalignment/set_left/ +--- +## HorizontalAlignment::set_Left method + + +Sets the left alignment settings. + +```cpp +void Aspose::Pdf::Artifacts::Pagination::HorizontalAlignment::set_Left(System::SharedPtr value) +``` + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [Left](../../left/) +* Class [HorizontalAlignment](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/horizontalalignment/set_right/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/horizontalalignment/set_right/_index.md new file mode 100644 index 0000000000..12ee143bba --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/horizontalalignment/set_right/_index.md @@ -0,0 +1,25 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::HorizontalAlignment::set_Right method +linktitle: set_Right +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::HorizontalAlignment::set_Right method. Sets the right alignment settings in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.artifacts.pagination/horizontalalignment/set_right/ +--- +## HorizontalAlignment::set_Right method + + +Sets the right alignment settings. + +```cpp +void Aspose::Pdf::Artifacts::Pagination::HorizontalAlignment::set_Right(System::SharedPtr value) +``` + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [Right](../../right/) +* Class [HorizontalAlignment](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/left/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/left/_index.md new file mode 100644 index 0000000000..41443a0d3c --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/left/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::Left class +linktitle: Left +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::Left class. Represents the left alignment settings for header and footer data in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.artifacts.pagination/left/ +--- +## Left class + + +Represents the left alignment settings for header and footer data. + +```cpp +class Left : public Aspose::Pdf::Artifacts::Pagination::HeaderFooterData +``` + +## See Also + +* Class [HeaderFooterData](../headerfooterdata/) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/pagedate/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/pagedate/_index.md new file mode 100644 index 0000000000..99a2238816 --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/pagedate/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::PageDate class +linktitle: PageDate +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::PageDate class. Represents a date format composed of day, month, and year components in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.artifacts.pagination/pagedate/ +--- +## PageDate class + + +Represents a date format composed of day, month, and year components. + +```cpp +class PageDate : public System::Object +``` + +## Nested classes + +* Class [DayComponent](./daycomponent/) +* Class [MonthComponent](./monthcomponent/) +* Class [YearComponent](./yearcomponent/) +## Methods + +| Method | Description | +| --- | --- | +| [get_Day](./get_day/)() const | Gets the day component of the date. The format of the date will be updated based on this component. | +| [get_Delimiter](./get_delimiter/)() const | Gets the delimiter used in the date format. The format of the date will be updated based on this delimiter. | +| [get_Month](./get_month/)() const | Gets the month component of the date. The format of the date will be updated based on this component. | +| [get_Year](./get_year/)() const | Gets the year component of the date. The format of the date will be updated based on this component. | +| [GetFormattedDate](./getformatteddate/)() | Returns the formatted date string based on the current date format. | +| [set_Day](./set_day/)(System::SharedPtr\) | Sets the day component of the date. The format of the date will be updated based on this component. | +| [set_Delimiter](./set_delimiter/)(System::String) | Sets the delimiter used in the date format. The format of the date will be updated based on this delimiter. | +| [set_Month](./set_month/)(System::SharedPtr\) | Sets the month component of the date. The format of the date will be updated based on this component. | +| [set_Year](./set_year/)(System::SharedPtr\) | Sets the year component of the date. The format of the date will be updated based on this component. | +## See Also + +* Class [Object](../../system/object/) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/pagedate/daycomponent/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/pagedate/daycomponent/_index.md new file mode 100644 index 0000000000..2bc616f79e --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/pagedate/daycomponent/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::PageDate::DayComponent class +linktitle: DayComponent +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::PageDate::DayComponent class. Represents the day component of a date in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.artifacts.pagination/pagedate/daycomponent/ +--- +## DayComponent class + + +Represents the day component of a date. + +```cpp +class DayComponent : public Aspose::Pdf::Artifacts::Pagination::DateComponent +``` + +## Methods + +| Method | Description | +| --- | --- | +| [GetFormat](./getformat/)() | Gets the format string for the day component. | +## See Also + +* Class [DateComponent](../../datecomponent/) +* Class [PageDate](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/pagedate/daycomponent/getformat/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/pagedate/daycomponent/getformat/_index.md new file mode 100644 index 0000000000..6b03647ea1 --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/pagedate/daycomponent/getformat/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::PageDate::DayComponent::GetFormat method +linktitle: GetFormat +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::PageDate::DayComponent::GetFormat method. Gets the format string for the day component in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.artifacts.pagination/pagedate/daycomponent/getformat/ +--- +## DayComponent::GetFormat method + + +Gets the format string for the day component. + +```cpp +System::String Aspose::Pdf::Artifacts::Pagination::PageDate::DayComponent::GetFormat() +``` + + +### ReturnValue + +A string representing the day format. + +## See Also + +* Class [String](../../../../system/string/) +* Class [DayComponent](../) +* Class [PageDate](../../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../../) +* Library [Aspose.PDF for C++](../../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/pagedate/get_day/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/pagedate/get_day/_index.md new file mode 100644 index 0000000000..013ca9e088 --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/pagedate/get_day/_index.md @@ -0,0 +1,25 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::PageDate::get_Day method +linktitle: get_Day +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::PageDate::get_Day method. Gets the day component of the date. The format of the date will be updated based on this component in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.artifacts.pagination/pagedate/get_day/ +--- +## PageDate::get_Day method + + +Gets the day component of the date. The format of the date will be updated based on this component. + +```cpp +System::SharedPtr Aspose::Pdf::Artifacts::Pagination::PageDate::get_Day() const +``` + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [DayComponent](../daycomponent/) +* Class [PageDate](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/pagedate/get_delimiter/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/pagedate/get_delimiter/_index.md new file mode 100644 index 0000000000..19ed578a2a --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/pagedate/get_delimiter/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::PageDate::get_Delimiter method +linktitle: get_Delimiter +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::PageDate::get_Delimiter method. Gets the delimiter used in the date format. The format of the date will be updated based on this delimiter in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.artifacts.pagination/pagedate/get_delimiter/ +--- +## PageDate::get_Delimiter method + + +Gets the delimiter used in the date format. The format of the date will be updated based on this delimiter. + +```cpp +System::String Aspose::Pdf::Artifacts::Pagination::PageDate::get_Delimiter() const +``` + +## See Also + +* Class [String](../../../system/string/) +* Class [PageDate](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/pagedate/get_month/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/pagedate/get_month/_index.md new file mode 100644 index 0000000000..4e3a767022 --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/pagedate/get_month/_index.md @@ -0,0 +1,25 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::PageDate::get_Month method +linktitle: get_Month +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::PageDate::get_Month method. Gets the month component of the date. The format of the date will be updated based on this component in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.artifacts.pagination/pagedate/get_month/ +--- +## PageDate::get_Month method + + +Gets the month component of the date. The format of the date will be updated based on this component. + +```cpp +System::SharedPtr Aspose::Pdf::Artifacts::Pagination::PageDate::get_Month() const +``` + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [MonthComponent](../monthcomponent/) +* Class [PageDate](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/pagedate/get_year/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/pagedate/get_year/_index.md new file mode 100644 index 0000000000..1514fd2666 --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/pagedate/get_year/_index.md @@ -0,0 +1,25 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::PageDate::get_Year method +linktitle: get_Year +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::PageDate::get_Year method. Gets the year component of the date. The format of the date will be updated based on this component in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.artifacts.pagination/pagedate/get_year/ +--- +## PageDate::get_Year method + + +Gets the year component of the date. The format of the date will be updated based on this component. + +```cpp +System::SharedPtr Aspose::Pdf::Artifacts::Pagination::PageDate::get_Year() const +``` + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [YearComponent](../yearcomponent/) +* Class [PageDate](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/pagedate/getformatteddate/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/pagedate/getformatteddate/_index.md new file mode 100644 index 0000000000..a0213b8a18 --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/pagedate/getformatteddate/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::PageDate::GetFormattedDate method +linktitle: GetFormattedDate +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::PageDate::GetFormattedDate method. Returns the formatted date string based on the current date format in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.artifacts.pagination/pagedate/getformatteddate/ +--- +## PageDate::GetFormattedDate method + + +Returns the formatted date string based on the current date format. + +```cpp +System::String Aspose::Pdf::Artifacts::Pagination::PageDate::GetFormattedDate() +``` + + +### ReturnValue + +A formatted date string. + +## See Also + +* Class [String](../../../system/string/) +* Class [PageDate](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/pagedate/monthcomponent/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/pagedate/monthcomponent/_index.md new file mode 100644 index 0000000000..d385073fea --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/pagedate/monthcomponent/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::PageDate::MonthComponent class +linktitle: MonthComponent +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::PageDate::MonthComponent class. Represents the month component of a date in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.artifacts.pagination/pagedate/monthcomponent/ +--- +## MonthComponent class + + +Represents the month component of a date. + +```cpp +class MonthComponent : public Aspose::Pdf::Artifacts::Pagination::DateComponent +``` + +## Methods + +| Method | Description | +| --- | --- | +| [GetFormat](./getformat/)() | Gets the format string for the month component. | +## See Also + +* Class [DateComponent](../../datecomponent/) +* Class [PageDate](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/pagedate/monthcomponent/getformat/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/pagedate/monthcomponent/getformat/_index.md new file mode 100644 index 0000000000..e54eaff8be --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/pagedate/monthcomponent/getformat/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::PageDate::MonthComponent::GetFormat method +linktitle: GetFormat +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::PageDate::MonthComponent::GetFormat method. Gets the format string for the month component in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.artifacts.pagination/pagedate/monthcomponent/getformat/ +--- +## MonthComponent::GetFormat method + + +Gets the format string for the month component. + +```cpp +System::String Aspose::Pdf::Artifacts::Pagination::PageDate::MonthComponent::GetFormat() +``` + + +### ReturnValue + +A string representing the month format. + +## See Also + +* Class [String](../../../../system/string/) +* Class [MonthComponent](../) +* Class [PageDate](../../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../../) +* Library [Aspose.PDF for C++](../../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/pagedate/set_day/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/pagedate/set_day/_index.md new file mode 100644 index 0000000000..93b4e3dbca --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/pagedate/set_day/_index.md @@ -0,0 +1,25 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::PageDate::set_Day method +linktitle: set_Day +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::PageDate::set_Day method. Sets the day component of the date. The format of the date will be updated based on this component in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.artifacts.pagination/pagedate/set_day/ +--- +## PageDate::set_Day method + + +Sets the day component of the date. The format of the date will be updated based on this component. + +```cpp +void Aspose::Pdf::Artifacts::Pagination::PageDate::set_Day(System::SharedPtr value) +``` + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [DayComponent](../daycomponent/) +* Class [PageDate](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/pagedate/set_delimiter/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/pagedate/set_delimiter/_index.md new file mode 100644 index 0000000000..8719d7e91e --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/pagedate/set_delimiter/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::PageDate::set_Delimiter method +linktitle: set_Delimiter +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::PageDate::set_Delimiter method. Sets the delimiter used in the date format. The format of the date will be updated based on this delimiter in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.artifacts.pagination/pagedate/set_delimiter/ +--- +## PageDate::set_Delimiter method + + +Sets the delimiter used in the date format. The format of the date will be updated based on this delimiter. + +```cpp +void Aspose::Pdf::Artifacts::Pagination::PageDate::set_Delimiter(System::String value) +``` + +## See Also + +* Class [String](../../../system/string/) +* Class [PageDate](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/pagedate/set_month/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/pagedate/set_month/_index.md new file mode 100644 index 0000000000..be3b84f7a0 --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/pagedate/set_month/_index.md @@ -0,0 +1,25 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::PageDate::set_Month method +linktitle: set_Month +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::PageDate::set_Month method. Sets the month component of the date. The format of the date will be updated based on this component in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.artifacts.pagination/pagedate/set_month/ +--- +## PageDate::set_Month method + + +Sets the month component of the date. The format of the date will be updated based on this component. + +```cpp +void Aspose::Pdf::Artifacts::Pagination::PageDate::set_Month(System::SharedPtr value) +``` + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [MonthComponent](../monthcomponent/) +* Class [PageDate](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/pagedate/set_year/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/pagedate/set_year/_index.md new file mode 100644 index 0000000000..e834b11516 --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/pagedate/set_year/_index.md @@ -0,0 +1,25 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::PageDate::set_Year method +linktitle: set_Year +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::PageDate::set_Year method. Sets the year component of the date. The format of the date will be updated based on this component in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.artifacts.pagination/pagedate/set_year/ +--- +## PageDate::set_Year method + + +Sets the year component of the date. The format of the date will be updated based on this component. + +```cpp +void Aspose::Pdf::Artifacts::Pagination::PageDate::set_Year(System::SharedPtr value) +``` + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [YearComponent](../yearcomponent/) +* Class [PageDate](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/pagedate/yearcomponent/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/pagedate/yearcomponent/_index.md new file mode 100644 index 0000000000..3d054a6b05 --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/pagedate/yearcomponent/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::PageDate::YearComponent class +linktitle: YearComponent +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::PageDate::YearComponent class. Represents the year component of a date in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.artifacts.pagination/pagedate/yearcomponent/ +--- +## YearComponent class + + +Represents the year component of a date. + +```cpp +class YearComponent : public Aspose::Pdf::Artifacts::Pagination::DateComponent +``` + +## Methods + +| Method | Description | +| --- | --- | +| [GetFormat](./getformat/)() | Gets the format string for the year component. | +## See Also + +* Class [DateComponent](../../datecomponent/) +* Class [PageDate](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/pagedate/yearcomponent/getformat/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/pagedate/yearcomponent/getformat/_index.md new file mode 100644 index 0000000000..029225bcbe --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/pagedate/yearcomponent/getformat/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::PageDate::YearComponent::GetFormat method +linktitle: GetFormat +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::PageDate::YearComponent::GetFormat method. Gets the format string for the year component in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.artifacts.pagination/pagedate/yearcomponent/getformat/ +--- +## YearComponent::GetFormat method + + +Gets the format string for the year component. + +```cpp +System::String Aspose::Pdf::Artifacts::Pagination::PageDate::YearComponent::GetFormat() +``` + + +### ReturnValue + +A string representing the year format. + +## See Also + +* Class [String](../../../../system/string/) +* Class [YearComponent](../) +* Class [PageDate](../../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../../) +* Library [Aspose.PDF for C++](../../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/pagenumber/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/pagenumber/_index.md new file mode 100644 index 0000000000..de54417eaa --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/pagenumber/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::PageNumber class +linktitle: PageNumber +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::PageNumber class. Represents a page number format that includes an index, total number of pages, and a delimiter in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.artifacts.pagination/pagenumber/ +--- +## PageNumber class + + +Represents a page number format that includes an index, total number of pages, and a delimiter. + +```cpp +class PageNumber : public System::Object +``` + +## Nested classes + +* Class [PageIndex](./pageindex/) +* Class [PageTotalNum](./pagetotalnum/) +## Methods + +| Method | Description | +| --- | --- | +| [get_Delimiter](./get_delimiter/)() const | Gets the delimiter used in the page number format. The formatted string will be updated based on the specified delimiter. | +| [get_Index](./get_index/)() const | Gets the page index component of the page number format. The formatted string will include a placeholder for the page index. | +| [get_Offset](./get_offset/)() const | Gets the offset to be added to the page index. | +| [get_TotalNum](./get_totalnum/)() const | Gets the total number of pages component of the page number format. The formatted string will include a placeholder for the total number of pages. | +| [GetPageNumberString](./getpagenumberstring/)(int32_t, int32_t) | Returns a formatted string representing the page number based on the current settings. | +| [PageNumber](./pagenumber/)() | | +| [set_Delimiter](./set_delimiter/)(System::String) | Sets the delimiter used in the page number format. The formatted string will be updated based on the specified delimiter. | +| [set_Index](./set_index/)(System::SharedPtr\) | Sets the page index component of the page number format. The formatted string will include a placeholder for the page index. | +| [set_Offset](./set_offset/)(int32_t) | Sets the offset to be added to the page index. | +| [set_TotalNum](./set_totalnum/)(System::SharedPtr\) | Sets the total number of pages component of the page number format. The formatted string will include a placeholder for the total number of pages. | +## See Also + +* Class [Object](../../system/object/) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/pagenumber/get_delimiter/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/pagenumber/get_delimiter/_index.md new file mode 100644 index 0000000000..30d8544a41 --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/pagenumber/get_delimiter/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::PageNumber::get_Delimiter method +linktitle: get_Delimiter +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::PageNumber::get_Delimiter method. Gets the delimiter used in the page number format. The formatted string will be updated based on the specified delimiter in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.artifacts.pagination/pagenumber/get_delimiter/ +--- +## PageNumber::get_Delimiter method + + +Gets the delimiter used in the page number format. The formatted string will be updated based on the specified delimiter. + +```cpp +System::String Aspose::Pdf::Artifacts::Pagination::PageNumber::get_Delimiter() const +``` + +## See Also + +* Class [String](../../../system/string/) +* Class [PageNumber](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/pagenumber/get_index/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/pagenumber/get_index/_index.md new file mode 100644 index 0000000000..de3d33986c --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/pagenumber/get_index/_index.md @@ -0,0 +1,25 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::PageNumber::get_Index method +linktitle: get_Index +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::PageNumber::get_Index method. Gets the page index component of the page number format. The formatted string will include a placeholder for the page index in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.artifacts.pagination/pagenumber/get_index/ +--- +## PageNumber::get_Index method + + +Gets the page index component of the page number format. The formatted string will include a placeholder for the page index. + +```cpp +System::SharedPtr Aspose::Pdf::Artifacts::Pagination::PageNumber::get_Index() const +``` + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [PageIndex](../pageindex/) +* Class [PageNumber](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/pagenumber/get_offset/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/pagenumber/get_offset/_index.md new file mode 100644 index 0000000000..36bcea7989 --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/pagenumber/get_offset/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::PageNumber::get_Offset method +linktitle: get_Offset +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::PageNumber::get_Offset method. Gets the offset to be added to the page index in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.artifacts.pagination/pagenumber/get_offset/ +--- +## PageNumber::get_Offset method + + +Gets the offset to be added to the page index. + +```cpp +int32_t Aspose::Pdf::Artifacts::Pagination::PageNumber::get_Offset() const +``` + +## See Also + +* Class [PageNumber](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/pagenumber/get_totalnum/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/pagenumber/get_totalnum/_index.md new file mode 100644 index 0000000000..ce862e7e9c --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/pagenumber/get_totalnum/_index.md @@ -0,0 +1,25 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::PageNumber::get_TotalNum method +linktitle: get_TotalNum +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::PageNumber::get_TotalNum method. Gets the total number of pages component of the page number format. The formatted string will include a placeholder for the total number of pages in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.artifacts.pagination/pagenumber/get_totalnum/ +--- +## PageNumber::get_TotalNum method + + +Gets the total number of pages component of the page number format. The formatted string will include a placeholder for the total number of pages. + +```cpp +System::SharedPtr Aspose::Pdf::Artifacts::Pagination::PageNumber::get_TotalNum() const +``` + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [PageTotalNum](../pagetotalnum/) +* Class [PageNumber](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/pagenumber/getpagenumberstring/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/pagenumber/getpagenumberstring/_index.md new file mode 100644 index 0000000000..5a0dc8325d --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/pagenumber/getpagenumberstring/_index.md @@ -0,0 +1,34 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::PageNumber::GetPageNumberString method +linktitle: GetPageNumberString +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::PageNumber::GetPageNumberString method. Returns a formatted string representing the page number based on the current settings in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.artifacts.pagination/pagenumber/getpagenumberstring/ +--- +## PageNumber::GetPageNumberString method + + +Returns a formatted string representing the page number based on the current settings. + +```cpp +System::String Aspose::Pdf::Artifacts::Pagination::PageNumber::GetPageNumberString(int32_t pageNumber, int32_t count) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageNumber | int32_t | The current page number. | +| count | int32_t | The total number of pages. | + +### ReturnValue + +A formatted page number string. + +## See Also + +* Class [String](../../../system/string/) +* Class [PageNumber](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/pagenumber/pageindex/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/pagenumber/pageindex/_index.md new file mode 100644 index 0000000000..8724deef5b --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/pagenumber/pageindex/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::PageNumber::PageIndex class +linktitle: PageIndex +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::PageNumber::PageIndex class. Represents the page index component in the page number format in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.artifacts.pagination/pagenumber/pageindex/ +--- +## PageIndex class + + +Represents the page index component in the page number format. + +```cpp +class PageIndex : public System::Object +``` + +## See Also + +* Class [Object](../../../system/object/) +* Class [PageNumber](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/pagenumber/pagenumber/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/pagenumber/pagenumber/_index.md new file mode 100644 index 0000000000..23637af70c --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/pagenumber/pagenumber/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::PageNumber::PageNumber constructor +linktitle: PageNumber +second_title: Aspose.PDF for C++ API Reference +description: 'How to use PageNumber constructor of Aspose::Pdf::Artifacts::Pagination::PageNumber class in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.artifacts.pagination/pagenumber/pagenumber/ +--- +## PageNumber::PageNumber constructor + + + + +```cpp +Aspose::Pdf::Artifacts::Pagination::PageNumber::PageNumber() +``` + +## See Also + +* Class [PageNumber](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/pagenumber/pagetotalnum/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/pagenumber/pagetotalnum/_index.md new file mode 100644 index 0000000000..7f28838292 --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/pagenumber/pagetotalnum/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::PageNumber::PageTotalNum class +linktitle: PageTotalNum +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::PageNumber::PageTotalNum class. Represents the total number of pages component in the page number format in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.artifacts.pagination/pagenumber/pagetotalnum/ +--- +## PageTotalNum class + + +Represents the total number of pages component in the page number format. + +```cpp +class PageTotalNum : public System::Object +``` + +## See Also + +* Class [Object](../../../system/object/) +* Class [PageNumber](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/pagenumber/set_delimiter/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/pagenumber/set_delimiter/_index.md new file mode 100644 index 0000000000..f0cd8d8514 --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/pagenumber/set_delimiter/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::PageNumber::set_Delimiter method +linktitle: set_Delimiter +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::PageNumber::set_Delimiter method. Sets the delimiter used in the page number format. The formatted string will be updated based on the specified delimiter in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.artifacts.pagination/pagenumber/set_delimiter/ +--- +## PageNumber::set_Delimiter method + + +Sets the delimiter used in the page number format. The formatted string will be updated based on the specified delimiter. + +```cpp +void Aspose::Pdf::Artifacts::Pagination::PageNumber::set_Delimiter(System::String value) +``` + +## See Also + +* Class [String](../../../system/string/) +* Class [PageNumber](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/pagenumber/set_index/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/pagenumber/set_index/_index.md new file mode 100644 index 0000000000..ab11848d93 --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/pagenumber/set_index/_index.md @@ -0,0 +1,25 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::PageNumber::set_Index method +linktitle: set_Index +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::PageNumber::set_Index method. Sets the page index component of the page number format. The formatted string will include a placeholder for the page index in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.artifacts.pagination/pagenumber/set_index/ +--- +## PageNumber::set_Index method + + +Sets the page index component of the page number format. The formatted string will include a placeholder for the page index. + +```cpp +void Aspose::Pdf::Artifacts::Pagination::PageNumber::set_Index(System::SharedPtr value) +``` + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [PageIndex](../pageindex/) +* Class [PageNumber](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/pagenumber/set_offset/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/pagenumber/set_offset/_index.md new file mode 100644 index 0000000000..f59bc2d667 --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/pagenumber/set_offset/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::PageNumber::set_Offset method +linktitle: set_Offset +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::PageNumber::set_Offset method. Sets the offset to be added to the page index in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.artifacts.pagination/pagenumber/set_offset/ +--- +## PageNumber::set_Offset method + + +Sets the offset to be added to the page index. + +```cpp +void Aspose::Pdf::Artifacts::Pagination::PageNumber::set_Offset(int32_t value) +``` + +## See Also + +* Class [PageNumber](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/pagenumber/set_totalnum/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/pagenumber/set_totalnum/_index.md new file mode 100644 index 0000000000..307191a736 --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/pagenumber/set_totalnum/_index.md @@ -0,0 +1,25 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::PageNumber::set_TotalNum method +linktitle: set_TotalNum +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::PageNumber::set_TotalNum method. Sets the total number of pages component of the page number format. The formatted string will include a placeholder for the total number of pages in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.artifacts.pagination/pagenumber/set_totalnum/ +--- +## PageNumber::set_TotalNum method + + +Sets the total number of pages component of the page number format. The formatted string will include a placeholder for the total number of pages. + +```cpp +void Aspose::Pdf::Artifacts::Pagination::PageNumber::set_TotalNum(System::SharedPtr value) +``` + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [PageTotalNum](../pagetotalnum/) +* Class [PageNumber](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/pagerange/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/pagerange/_index.md new file mode 100644 index 0000000000..52d6392d42 --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/pagerange/_index.md @@ -0,0 +1,36 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::PageRange class +linktitle: PageRange +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::PageRange class. Represents the range of pages for header and footer settings in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.artifacts.pagination/pagerange/ +--- +## PageRange class + + +Represents the range of pages for header and footer settings. + +```cpp +class PageRange : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_End](./get_end/)() const | Gets the ending page number. | +| [get_Even](./get_even/)() const | Gets the setting for even pages. | +| [get_Odd](./get_odd/)() const | Gets the setting for odd pages. | +| [get_Start](./get_start/)() const | Gets the starting page number. | +| [PageRange](./pagerange/)() | | +| [set_End](./set_end/)(int32_t) | Sets the ending page number. | +| [set_Even](./set_even/)(uint8_t) | Sets the setting for even pages. | +| [set_Odd](./set_odd/)(uint8_t) | Sets the setting for odd pages. | +| [set_Start](./set_start/)(int32_t) | Sets the starting page number. | +## See Also + +* Class [Object](../../system/object/) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/pagerange/get_end/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/pagerange/get_end/_index.md new file mode 100644 index 0000000000..48e4e3c7b3 --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/pagerange/get_end/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::PageRange::get_End method +linktitle: get_End +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::PageRange::get_End method. Gets the ending page number in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.artifacts.pagination/pagerange/get_end/ +--- +## PageRange::get_End method + + +Gets the ending page number. + +```cpp +int32_t Aspose::Pdf::Artifacts::Pagination::PageRange::get_End() const +``` + +## See Also + +* Class [PageRange](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/pagerange/get_even/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/pagerange/get_even/_index.md new file mode 100644 index 0000000000..cf054d51a3 --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/pagerange/get_even/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::PageRange::get_Even method +linktitle: get_Even +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::PageRange::get_Even method. Gets the setting for even pages in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.artifacts.pagination/pagerange/get_even/ +--- +## PageRange::get_Even method + + +Gets the setting for even pages. + +```cpp +uint8_t Aspose::Pdf::Artifacts::Pagination::PageRange::get_Even() const +``` + +## See Also + +* Class [PageRange](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/pagerange/get_odd/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/pagerange/get_odd/_index.md new file mode 100644 index 0000000000..9678d621c8 --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/pagerange/get_odd/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::PageRange::get_Odd method +linktitle: get_Odd +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::PageRange::get_Odd method. Gets the setting for odd pages in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.artifacts.pagination/pagerange/get_odd/ +--- +## PageRange::get_Odd method + + +Gets the setting for odd pages. + +```cpp +uint8_t Aspose::Pdf::Artifacts::Pagination::PageRange::get_Odd() const +``` + +## See Also + +* Class [PageRange](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/pagerange/get_start/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/pagerange/get_start/_index.md new file mode 100644 index 0000000000..b196cd4d2f --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/pagerange/get_start/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::PageRange::get_Start method +linktitle: get_Start +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::PageRange::get_Start method. Gets the starting page number in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.artifacts.pagination/pagerange/get_start/ +--- +## PageRange::get_Start method + + +Gets the starting page number. + +```cpp +int32_t Aspose::Pdf::Artifacts::Pagination::PageRange::get_Start() const +``` + +## See Also + +* Class [PageRange](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/pagerange/pagerange/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/pagerange/pagerange/_index.md new file mode 100644 index 0000000000..ab6b20a88f --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/pagerange/pagerange/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::PageRange::PageRange constructor +linktitle: PageRange +second_title: Aspose.PDF for C++ API Reference +description: 'How to use PageRange constructor of Aspose::Pdf::Artifacts::Pagination::PageRange class in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.artifacts.pagination/pagerange/pagerange/ +--- +## PageRange::PageRange constructor + + + + +```cpp +Aspose::Pdf::Artifacts::Pagination::PageRange::PageRange() +``` + +## See Also + +* Class [PageRange](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/pagerange/set_end/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/pagerange/set_end/_index.md new file mode 100644 index 0000000000..6b48ce0bb2 --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/pagerange/set_end/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::PageRange::set_End method +linktitle: set_End +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::PageRange::set_End method. Sets the ending page number in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.artifacts.pagination/pagerange/set_end/ +--- +## PageRange::set_End method + + +Sets the ending page number. + +```cpp +void Aspose::Pdf::Artifacts::Pagination::PageRange::set_End(int32_t value) +``` + +## See Also + +* Class [PageRange](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/pagerange/set_even/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/pagerange/set_even/_index.md new file mode 100644 index 0000000000..9a33bb51e0 --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/pagerange/set_even/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::PageRange::set_Even method +linktitle: set_Even +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::PageRange::set_Even method. Sets the setting for even pages in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.artifacts.pagination/pagerange/set_even/ +--- +## PageRange::set_Even method + + +Sets the setting for even pages. + +```cpp +void Aspose::Pdf::Artifacts::Pagination::PageRange::set_Even(uint8_t value) +``` + +## See Also + +* Class [PageRange](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/pagerange/set_odd/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/pagerange/set_odd/_index.md new file mode 100644 index 0000000000..586b08c2b3 --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/pagerange/set_odd/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::PageRange::set_Odd method +linktitle: set_Odd +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::PageRange::set_Odd method. Sets the setting for odd pages in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.artifacts.pagination/pagerange/set_odd/ +--- +## PageRange::set_Odd method + + +Sets the setting for odd pages. + +```cpp +void Aspose::Pdf::Artifacts::Pagination::PageRange::set_Odd(uint8_t value) +``` + +## See Also + +* Class [PageRange](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/pagerange/set_start/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/pagerange/set_start/_index.md new file mode 100644 index 0000000000..b4236f9e70 --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/pagerange/set_start/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::PageRange::set_Start method +linktitle: set_Start +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::PageRange::set_Start method. Sets the starting page number in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.artifacts.pagination/pagerange/set_start/ +--- +## PageRange::set_Start method + + +Sets the starting page number. + +```cpp +void Aspose::Pdf::Artifacts::Pagination::PageRange::set_Start(int32_t value) +``` + +## See Also + +* Class [PageRange](../) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.artifacts.pagination/right/_index.md b/english/cpp/aspose.pdf.artifacts.pagination/right/_index.md new file mode 100644 index 0000000000..ebe2091ca8 --- /dev/null +++ b/english/cpp/aspose.pdf.artifacts.pagination/right/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Artifacts::Pagination::Right class +linktitle: Right +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Artifacts::Pagination::Right class. Represents the right alignment settings for header and footer data in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.artifacts.pagination/right/ +--- +## Right class + + +Represents the right alignment settings for header and footer data. + +```cpp +class Right : public Aspose::Pdf::Artifacts::Pagination::HeaderFooterData +``` + +## See Also + +* Class [HeaderFooterData](../headerfooterdata/) +* Namespace [Aspose::Pdf::Artifacts::Pagination](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.collections/_index.md b/english/cpp/aspose.pdf.collections/_index.md index e19cea5f9b..f68521b729 100644 --- a/english/cpp/aspose.pdf.collections/_index.md +++ b/english/cpp/aspose.pdf.collections/_index.md @@ -4,7 +4,7 @@ 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 +weight: 400 url: /cpp/aspose.pdf.collections/ --- diff --git a/english/cpp/aspose.pdf.comparison.diff/_index.md b/english/cpp/aspose.pdf.comparison.diff/_index.md index c87595c661..78a6512ec5 100644 --- a/english/cpp/aspose.pdf.comparison.diff/_index.md +++ b/english/cpp/aspose.pdf.comparison.diff/_index.md @@ -4,7 +4,7 @@ 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 +weight: 600 url: /cpp/aspose.pdf.comparison.diff/ --- diff --git a/english/cpp/aspose.pdf.comparison.graphicalcomparison/_index.md b/english/cpp/aspose.pdf.comparison.graphicalcomparison/_index.md index a661ef2af1..fbc19e5d9c 100644 --- a/english/cpp/aspose.pdf.comparison.graphicalcomparison/_index.md +++ b/english/cpp/aspose.pdf.comparison.graphicalcomparison/_index.md @@ -4,7 +4,7 @@ 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 +weight: 700 url: /cpp/aspose.pdf.comparison.graphicalcomparison/ --- diff --git a/english/cpp/aspose.pdf.comparison.outputgenerator/_index.md b/english/cpp/aspose.pdf.comparison.outputgenerator/_index.md index b23bb075c6..24198451f1 100644 --- a/english/cpp/aspose.pdf.comparison.outputgenerator/_index.md +++ b/english/cpp/aspose.pdf.comparison.outputgenerator/_index.md @@ -4,7 +4,7 @@ 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 +weight: 800 url: /cpp/aspose.pdf.comparison.outputgenerator/ --- diff --git a/english/cpp/aspose.pdf.comparison.sidebysidecomparison/_index.md b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/_index.md index 303b122952..215bcd2313 100644 --- a/english/cpp/aspose.pdf.comparison.sidebysidecomparison/_index.md +++ b/english/cpp/aspose.pdf.comparison.sidebysidecomparison/_index.md @@ -4,7 +4,7 @@ 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 +weight: 900 url: /cpp/aspose.pdf.comparison.sidebysidecomparison/ --- diff --git a/english/cpp/aspose.pdf.comparison/_index.md b/english/cpp/aspose.pdf.comparison/_index.md index 52dd3efa24..7ad96ed866 100644 --- a/english/cpp/aspose.pdf.comparison/_index.md +++ b/english/cpp/aspose.pdf.comparison/_index.md @@ -4,7 +4,7 @@ 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 +weight: 500 url: /cpp/aspose.pdf.comparison/ --- diff --git a/english/cpp/aspose.pdf.devices/_index.md b/english/cpp/aspose.pdf.devices/_index.md index 5c9ba0c53a..9937027a3f 100644 --- a/english/cpp/aspose.pdf.devices/_index.md +++ b/english/cpp/aspose.pdf.devices/_index.md @@ -4,7 +4,7 @@ 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 +weight: 1000 url: /cpp/aspose.pdf.devices/ --- diff --git a/english/cpp/aspose.pdf.drawing/_index.md b/english/cpp/aspose.pdf.drawing/_index.md index bd46aea1c4..28453f5092 100644 --- a/english/cpp/aspose.pdf.drawing/_index.md +++ b/english/cpp/aspose.pdf.drawing/_index.md @@ -4,7 +4,7 @@ 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 +weight: 1100 url: /cpp/aspose.pdf.drawing/ --- diff --git a/english/cpp/aspose.pdf.facades/_index.md b/english/cpp/aspose.pdf.facades/_index.md index eb8d68e797..49f23d13e5 100644 --- a/english/cpp/aspose.pdf.facades/_index.md +++ b/english/cpp/aspose.pdf.facades/_index.md @@ -4,7 +4,7 @@ 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: 1100 +weight: 1200 url: /cpp/aspose.pdf.facades/ --- diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/_index.md index d779ba6fd9..90c815a2a4 100644 --- a/english/cpp/aspose.pdf.facades/pdffilesignature/_index.md +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/_index.md @@ -41,6 +41,7 @@ class PdfFileSignature : public Aspose::Pdf::Facades::SaveableFacade | [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. | +| [GetSignaturesInfo](./getsignaturesinfo/)() | Retrieves information about all signatures algorithm present in the PDF document. | | [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. | diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/getaccesspermissions/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/getaccesspermissions/_index.md index 6ce04032a2..9c2cb38438 100644 --- a/english/cpp/aspose.pdf.facades/pdffilesignature/getaccesspermissions/_index.md +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/getaccesspermissions/_index.md @@ -19,7 +19,7 @@ Aspose::Pdf::Forms::DocMDPAccessPermissions Aspose::Pdf::Facades::PdfFileSignatu ### ReturnValue -If the document is being certified, than returns access permissions value; otherwise, System::PdfException +If the document is being certified, than returns access permissions value; otherwise, PdfException is thrown. ## See Also diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/getsignaturesinfo/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/getsignaturesinfo/_index.md new file mode 100644 index 0000000000..5ebb8ce75e --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/getsignaturesinfo/_index.md @@ -0,0 +1,31 @@ +--- +title: Aspose::Pdf::Facades::PdfFileSignature::GetSignaturesInfo method +linktitle: GetSignaturesInfo +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfFileSignature::GetSignaturesInfo method. Retrieves information about all signatures algorithm present in the PDF document in C++.' +type: docs +weight: 2100 +url: /cpp/aspose.pdf.facades/pdffilesignature/getsignaturesinfo/ +--- +## PdfFileSignature::GetSignaturesInfo method + + +Retrieves information about all signatures algorithm present in the PDF document. + +```cpp +System::SharedPtr>> Aspose::Pdf::Facades::PdfFileSignature::GetSignaturesInfo() +``` + + +### ReturnValue + +A list of [SignatureAlgorithmInfo](../) instances containing information about each signature. + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [List](../../../system.collections.generic/list/) +* Class [SignatureAlgorithmInfo](../../../aspose.pdf.security/signaturealgorithminfo/) +* 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 index 4b692bdb5f..abaf83105c 100644 --- a/english/cpp/aspose.pdf.facades/pdffilesignature/getsignername/_index.md +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/getsignername/_index.md @@ -4,7 +4,7 @@ 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: 2100 +weight: 2200 url: /cpp/aspose.pdf.facades/pdffilesignature/getsignername/ --- ## PdfFileSignature::GetSignerName method diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/getsignnames/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/getsignnames/_index.md index 12294d221a..1a8f38977c 100644 --- a/english/cpp/aspose.pdf.facades/pdffilesignature/getsignnames/_index.md +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/getsignnames/_index.md @@ -4,7 +4,7 @@ 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: 2200 +weight: 2300 url: /cpp/aspose.pdf.facades/pdffilesignature/getsignnames/ --- ## PdfFileSignature::GetSignNames method diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/gettotalrevision/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/gettotalrevision/_index.md index f22efb3e19..117735c4b4 100644 --- a/english/cpp/aspose.pdf.facades/pdffilesignature/gettotalrevision/_index.md +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/gettotalrevision/_index.md @@ -4,7 +4,7 @@ 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: 2300 +weight: 2400 url: /cpp/aspose.pdf.facades/pdffilesignature/gettotalrevision/ --- ## PdfFileSignature::GetTotalRevision method diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/iscontainsignature/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/iscontainsignature/_index.md index bb2c8edb99..b176ffd6e9 100644 --- a/english/cpp/aspose.pdf.facades/pdffilesignature/iscontainsignature/_index.md +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/iscontainsignature/_index.md @@ -4,7 +4,7 @@ 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: 2400 +weight: 2500 url: /cpp/aspose.pdf.facades/pdffilesignature/iscontainsignature/ --- ## PdfFileSignature::IsContainSignature method diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/iscoverswholedocument/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/iscoverswholedocument/_index.md index 8fe5a8d19a..c1d7bf72ca 100644 --- a/english/cpp/aspose.pdf.facades/pdffilesignature/iscoverswholedocument/_index.md +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/iscoverswholedocument/_index.md @@ -4,7 +4,7 @@ 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: 2500 +weight: 2600 url: /cpp/aspose.pdf.facades/pdffilesignature/iscoverswholedocument/ --- ## PdfFileSignature::IsCoversWholeDocument method diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/removesignature/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/removesignature/_index.md index e77ad772e5..310dfb513c 100644 --- a/english/cpp/aspose.pdf.facades/pdffilesignature/removesignature/_index.md +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/removesignature/_index.md @@ -4,7 +4,7 @@ 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: 2600 +weight: 2700 url: /cpp/aspose.pdf.facades/pdffilesignature/removesignature/ --- ## PdfFileSignature::RemoveSignature(System::String) method diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/removesignatures/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/removesignatures/_index.md index c655a78f33..6f8b00085f 100644 --- a/english/cpp/aspose.pdf.facades/pdffilesignature/removesignatures/_index.md +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/removesignatures/_index.md @@ -4,7 +4,7 @@ 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: 2700 +weight: 2800 url: /cpp/aspose.pdf.facades/pdffilesignature/removesignatures/ --- ## PdfFileSignature::RemoveSignatures method diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/removeusagerights/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/removeusagerights/_index.md index 223e660b1f..12cbd5381b 100644 --- a/english/cpp/aspose.pdf.facades/pdffilesignature/removeusagerights/_index.md +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/removeusagerights/_index.md @@ -4,7 +4,7 @@ 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: 2800 +weight: 2900 url: /cpp/aspose.pdf.facades/pdffilesignature/removeusagerights/ --- ## PdfFileSignature::RemoveUsageRights method diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/save/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/save/_index.md index da9340fac5..3478a4604b 100644 --- a/english/cpp/aspose.pdf.facades/pdffilesignature/save/_index.md +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/save/_index.md @@ -4,7 +4,7 @@ linktitle: Save second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Facades::PdfFileSignature::Save method. Save signed pdf file. Output filename must be provided before with the help of coresponding PdfFileSignature constructor in C++.' type: docs -weight: 2900 +weight: 3000 url: /cpp/aspose.pdf.facades/pdffilesignature/save/ --- ## PdfFileSignature::Save() method diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/set_signatureappearance/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/set_signatureappearance/_index.md index 356181bca2..9acfa61d3c 100644 --- a/english/cpp/aspose.pdf.facades/pdffilesignature/set_signatureappearance/_index.md +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/set_signatureappearance/_index.md @@ -4,7 +4,7 @@ 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: 3000 +weight: 3100 url: /cpp/aspose.pdf.facades/pdffilesignature/set_signatureappearance/ --- ## PdfFileSignature::set_SignatureAppearance method diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/set_signatureappearancestream/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/set_signatureappearancestream/_index.md index 5807bb51a7..dc14b4dea8 100644 --- a/english/cpp/aspose.pdf.facades/pdffilesignature/set_signatureappearancestream/_index.md +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/set_signatureappearancestream/_index.md @@ -4,7 +4,7 @@ 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: 3100 +weight: 3200 url: /cpp/aspose.pdf.facades/pdffilesignature/set_signatureappearancestream/ --- ## PdfFileSignature::set_SignatureAppearanceStream method diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/setcertificate/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/setcertificate/_index.md index bbdd363220..f0528a4c28 100644 --- a/english/cpp/aspose.pdf.facades/pdffilesignature/setcertificate/_index.md +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/setcertificate/_index.md @@ -4,7 +4,7 @@ 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: 3200 +weight: 3300 url: /cpp/aspose.pdf.facades/pdffilesignature/setcertificate/ --- ## PdfFileSignature::SetCertificate method diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/sign/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/sign/_index.md index 30bcceead8..0b1657d93b 100644 --- a/english/cpp/aspose.pdf.facades/pdffilesignature/sign/_index.md +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/sign/_index.md @@ -4,7 +4,7 @@ linktitle: Sign second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Facades::PdfFileSignature::Sign method. Sign the document with the given type signature in C++.' type: docs -weight: 3300 +weight: 3400 url: /cpp/aspose.pdf.facades/pdffilesignature/sign/ --- ## PdfFileSignature::Sign(int32_t, bool, System::Drawing::Rectangle, System::SharedPtr\) method diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/verifysignature/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/verifysignature/_index.md index 1e44b24a51..176e139c99 100644 --- a/english/cpp/aspose.pdf.facades/pdffilesignature/verifysignature/_index.md +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/verifysignature/_index.md @@ -4,7 +4,7 @@ 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: 3400 +weight: 3500 url: /cpp/aspose.pdf.facades/pdffilesignature/verifysignature/ --- ## PdfFileSignature::VerifySignature method diff --git a/english/cpp/aspose.pdf.facades/pdffilesignature/verifysigned/_index.md b/english/cpp/aspose.pdf.facades/pdffilesignature/verifysigned/_index.md index 438d91627d..45245164db 100644 --- a/english/cpp/aspose.pdf.facades/pdffilesignature/verifysigned/_index.md +++ b/english/cpp/aspose.pdf.facades/pdffilesignature/verifysigned/_index.md @@ -4,7 +4,7 @@ linktitle: VerifySigned second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Facades::PdfFileSignature::VerifySigned method. Checks the validity of a signature. The method is deprecated and will be deleted in 25.1 version. Use VerifySignature method instead in C++.' type: docs -weight: 3500 +weight: 3600 url: /cpp/aspose.pdf.facades/pdffilesignature/verifysigned/ --- ## PdfFileSignature::VerifySigned method diff --git a/english/cpp/aspose.pdf.forms/_index.md b/english/cpp/aspose.pdf.forms/_index.md index d71c3a1c08..e94c0b1cc1 100644 --- a/english/cpp/aspose.pdf.forms/_index.md +++ b/english/cpp/aspose.pdf.forms/_index.md @@ -4,7 +4,7 @@ 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: 1200 +weight: 1300 url: /cpp/aspose.pdf.forms/ --- @@ -21,7 +21,7 @@ url: /cpp/aspose.pdf.forms/ | [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. | +| [ExternalSignature](./externalsignature/) | Creates a detached PKCS#7 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. | @@ -32,7 +32,7 @@ url: /cpp/aspose.pdf.forms/ | [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. | +| [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. | @@ -48,7 +48,7 @@ url: /cpp/aspose.pdf.forms/ | Enum | Description | | --- | --- | -| [BoxStyle](./boxstyle/) | Represents styles of check box. | +| [BoxStyle](./boxstyle/) | Represents styles for drawing check in 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. | diff --git a/english/cpp/aspose.pdf.forms/boxstyle/_index.md b/english/cpp/aspose.pdf.forms/boxstyle/_index.md index dec042d43c..e148e84b06 100644 --- a/english/cpp/aspose.pdf.forms/boxstyle/_index.md +++ b/english/cpp/aspose.pdf.forms/boxstyle/_index.md @@ -2,7 +2,7 @@ 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++.' +description: 'Aspose::Pdf::Forms::BoxStyle enum. Represents styles for drawing check in check box in C++.' type: docs weight: 3100 url: /cpp/aspose.pdf.forms/boxstyle/ @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf.forms/boxstyle/ ## BoxStyle enum -Represents styles of check box. +Represents styles for drawing check in check box. ```cpp enum class BoxStyle diff --git a/english/cpp/aspose.pdf.forms/externalsignature/_index.md b/english/cpp/aspose.pdf.forms/externalsignature/_index.md index 398288c4d0..0dbcb23baa 100644 --- a/english/cpp/aspose.pdf.forms/externalsignature/_index.md +++ b/english/cpp/aspose.pdf.forms/externalsignature/_index.md @@ -2,7 +2,7 @@ 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++.' +description: 'Aspose::Pdf::Forms::ExternalSignature class. Creates a detached PKCS#7 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/ @@ -10,7 +10,7 @@ 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. +Creates a detached PKCS#7 signature using a X509Certificate2. It supports usb smartcards, tokens without exportable private keys. ```cpp class ExternalSignature : public Aspose::Pdf::Forms::Signature @@ -20,10 +20,11 @@ class ExternalSignature : public Aspose::Pdf::Forms::Signature | 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_Certificate](./get_certificate/)() const | The certificate with the private key. | +| [ExternalSignature](./externalsignature/)(System::SharedPtr\) | Creates a detached PKCS#7 **(detached)** signature using a X509Certificate2. It supports usb smartcards, tokens without exportable private keys. | +| [ExternalSignature](./externalsignature/)(System::SharedPtr\, DigestHashAlgorithm) | Creates a detached PKCS#7 **(detached)** signature using a X509Certificate2. It supports usb smartcards, tokens without exportable private keys. | +| [ExternalSignature](./externalsignature/)(System::SharedPtr\, bool) | Creates a detached PKCS#7 signature using a X509Certificate2. It supports usb smartcards, tokens without exportable private keys. | +| [ExternalSignature](./externalsignature/)(System::String, bool) | Creates a PKCS#7 signature using a X509Certificate2 as base64 string. | +| [ExternalSignature](./externalsignature/)(System::String, DigestHashAlgorithm) | Creates a PKCS#7 **(detached)** signature using a X509Certificate2 as base64 string. | ## See Also * Class [Signature](../signature/) diff --git a/english/cpp/aspose.pdf.forms/externalsignature/externalsignature/_index.md b/english/cpp/aspose.pdf.forms/externalsignature/externalsignature/_index.md index 219c5dcf08..36041a7543 100644 --- a/english/cpp/aspose.pdf.forms/externalsignature/externalsignature/_index.md +++ b/english/cpp/aspose.pdf.forms/externalsignature/externalsignature/_index.md @@ -2,7 +2,7 @@ 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++.' +description: 'Aspose::Pdf::Forms::ExternalSignature::ExternalSignature constructor. Creates a detached PKCS#7 (detached) signature using a X509Certificate2. It supports usb smartcards, tokens without exportable private keys in C++.' type: docs weight: 100 url: /cpp/aspose.pdf.forms/externalsignature/externalsignature/ @@ -10,7 +10,7 @@ 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. +Creates a detached PKCS#7 **(detached)** signature using a X509Certificate2. It supports usb smartcards, tokens without exportable private keys. ```cpp Aspose::Pdf::Forms::ExternalSignature::ExternalSignature(System::SharedPtr certificate) @@ -20,7 +20,11 @@ Aspose::Pdf::Forms::ExternalSignature::ExternalSignature(System::SharedPtr | The certificate with the private key. | +## Remarks + + +The digest algorithm will be automatically selected based on the certificate key data. ## See Also * Typedef [SharedPtr](../../../system/sharedptr/) @@ -31,7 +35,7 @@ Aspose::Pdf::Forms::ExternalSignature::ExternalSignature(System::SharedPtr, bool) constructor -Creates a detached PKCS#7Detached signature using a X509Certificate2. It supports usb smartcards, tokens without exportable private keys. +Creates a detached PKCS#7 signature using a X509Certificate2. It supports usb smartcards, tokens without exportable private keys. ```cpp Aspose::Pdf::Forms::ExternalSignature::ExternalSignature(System::SharedPtr certificate, bool detached) @@ -42,7 +46,11 @@ Aspose::Pdf::Forms::ExternalSignature::ExternalSignature(System::SharedPtr | The certificate with the private key. | | detached | bool | True if the signature should be detached, otherwise false. | +## Remarks + + +For detached set to false the digest algorithm will always be **SHA1**. Otherwise, the digest algorithm will be automatically selected based on the certificate key data( see [DigestHashAlgorithm::Auto](../../../aspose.pdf/digesthashalgorithm/) ). ## See Also * Typedef [SharedPtr](../../../system/sharedptr/) @@ -50,10 +58,33 @@ Aspose::Pdf::Forms::ExternalSignature::ExternalSignature(System::SharedPtr, DigestHashAlgorithm) constructor + + +Creates a detached PKCS#7 **(detached)** signature using a X509Certificate2. It supports usb smartcards, tokens without exportable private keys. + +```cpp +Aspose::Pdf::Forms::ExternalSignature::ExternalSignature(System::SharedPtr certificate, DigestHashAlgorithm digestHashAlgorithm) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| certificate | System::SharedPtr\ | The certificate with the private key. | +| digestHashAlgorithm | DigestHashAlgorithm | The digest algorithm to sign a document. | + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [X509Certificate2](../../../system.security.cryptography.x509certificates/x509certificate2/) +* Enum [DigestHashAlgorithm](../../../aspose.pdf/digesthashalgorithm/) +* 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. +Creates a PKCS#7 signature using a X509Certificate2 as base64 string. ```cpp Aspose::Pdf::Forms::ExternalSignature::ExternalSignature(System::String base64, bool detached) @@ -64,10 +95,36 @@ Aspose::Pdf::Forms::ExternalSignature::ExternalSignature(System::String base64, | --- | --- | --- | | base64 | System::String | X509Certificate2 as base64 string. | | detached | bool | True if the signature should be detached, otherwise false. | +## Remarks + + + +For detached set to false the digest algorithm will always be **SHA1**. Otherwise, the digest algorithm will be automatically selected based on the certificate key data( see [DigestHashAlgorithm::Auto](../../../aspose.pdf/digesthashalgorithm/) ). +## See Also + +* Class [String](../../../system/string/) +* Class [ExternalSignature](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) +## ExternalSignature::ExternalSignature(System::String, DigestHashAlgorithm) constructor + + +Creates a PKCS#7 **(detached)** signature using a X509Certificate2 as base64 string. + +```cpp +Aspose::Pdf::Forms::ExternalSignature::ExternalSignature(System::String base64, DigestHashAlgorithm digestHashAlgorithm) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| base64 | System::String | X509Certificate2 as base64 string. | +| digestHashAlgorithm | DigestHashAlgorithm | The digest algorithm to sign a document. | ## See Also * Class [String](../../../system/string/) +* Enum [DigestHashAlgorithm](../../../aspose.pdf/digesthashalgorithm/) * Class [ExternalSignature](../) * 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 index ff0186a950..657bd14c8e 100644 --- a/english/cpp/aspose.pdf.forms/form/_index.md +++ b/english/cpp/aspose.pdf.forms/form/_index.md @@ -71,11 +71,6 @@ class Form : public System::Collections::Generic::ICollection, System::String) | Inititalizes new instance of the [PKCS7](./) class. | +| [PKCS7](./pkcs7/)() | Initializes new instance of the [PKCS7](./) class. | +| [PKCS7](./pkcs7/)(System::String, System::String) | Initializes new instance of the [PKCS7](./) class. | +| [PKCS7](./pkcs7/)(System::SharedPtr\, System::String) | Initializes new instance of the [PKCS7](./) class. | ## See Also * Class [Signature](../signature/) diff --git a/english/cpp/aspose.pdf.forms/pkcs7/pkcs7/_index.md b/english/cpp/aspose.pdf.forms/pkcs7/pkcs7/_index.md index 373a4fca17..d50d0a94e9 100644 --- a/english/cpp/aspose.pdf.forms/pkcs7/pkcs7/_index.md +++ b/english/cpp/aspose.pdf.forms/pkcs7/pkcs7/_index.md @@ -2,7 +2,7 @@ title: Aspose::Pdf::Forms::PKCS7::PKCS7 constructor linktitle: PKCS7 second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Forms::PKCS7::PKCS7 constructor. Inititalizes new instance of the PKCS7 class in C++.' +description: 'Aspose::Pdf::Forms::PKCS7::PKCS7 constructor. Initializes new instance of the PKCS7 class in C++.' type: docs weight: 100 url: /cpp/aspose.pdf.forms/pkcs7/pkcs7/ @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf.forms/pkcs7/pkcs7/ ## PKCS7::PKCS7() constructor -Inititalizes new instance of the [PKCS7](../) class. +Initializes new instance of the [PKCS7](../) class. ```cpp Aspose::Pdf::Forms::PKCS7::PKCS7() @@ -24,7 +24,7 @@ Aspose::Pdf::Forms::PKCS7::PKCS7() ## PKCS7::PKCS7(System::SharedPtr\, System::String) constructor -Inititalizes new instance of the [PKCS7](../) class. +Initializes new instance of the [PKCS7](../) class. ```cpp Aspose::Pdf::Forms::PKCS7::PKCS7(System::SharedPtr pfx, System::String password) @@ -47,7 +47,7 @@ Aspose::Pdf::Forms::PKCS7::PKCS7(System::SharedPtr pfx, Syst ## PKCS7::PKCS7(System::String, System::String) constructor -Inititalizes new instance of the [PKCS7](../) class. +Initializes new instance of the [PKCS7](../) class. ```cpp Aspose::Pdf::Forms::PKCS7::PKCS7(System::String pfx, System::String password) diff --git a/english/cpp/aspose.pdf.forms/pkcs7detached/_index.md b/english/cpp/aspose.pdf.forms/pkcs7detached/_index.md index aca606ea33..f45c1f72e1 100644 --- a/english/cpp/aspose.pdf.forms/pkcs7detached/_index.md +++ b/english/cpp/aspose.pdf.forms/pkcs7detached/_index.md @@ -21,9 +21,13 @@ class PKCS7Detached : public Aspose::Pdf::Forms::Signature | Method | Description | | --- | --- | | [PKCS7Detached](./pkcs7detached/)(System::SharedPtr\) | Initializes new instance of the [PKCS7Detached](./) class. | +| [PKCS7Detached](./pkcs7detached/)(System::SharedPtr\, DigestHashAlgorithm) | Initializes new instance of the [PKCS7Detached](./) class. | | [PKCS7Detached](./pkcs7detached/)() | Inititalizes new instance of the [PKCS7Detached](./) class. | +| [PKCS7Detached](./pkcs7detached/)(DigestHashAlgorithm) | Inititalizes new instance of the [PKCS7Detached](./) class. | | [PKCS7Detached](./pkcs7detached/)(System::String, System::String) | Inititalizes new instance of the [PKCS7Detached](./) class. | +| [PKCS7Detached](./pkcs7detached/)(System::String, System::String, DigestHashAlgorithm) | Inititalizes new instance of the [PKCS7Detached](./) class. | | [PKCS7Detached](./pkcs7detached/)(System::SharedPtr\, System::String) | Inititalizes new instance of the [PKCS7Detached](./) class. | +| [PKCS7Detached](./pkcs7detached/)(System::SharedPtr\, System::String, DigestHashAlgorithm) | Inititalizes new instance of the [PKCS7Detached](./) class. | ## See Also * Class [Signature](../signature/) diff --git a/english/cpp/aspose.pdf.forms/pkcs7detached/pkcs7detached/_index.md b/english/cpp/aspose.pdf.forms/pkcs7detached/pkcs7detached/_index.md index 992e5c961a..2962b53d56 100644 --- a/english/cpp/aspose.pdf.forms/pkcs7detached/pkcs7detached/_index.md +++ b/english/cpp/aspose.pdf.forms/pkcs7detached/pkcs7detached/_index.md @@ -18,6 +18,26 @@ Aspose::Pdf::Forms::PKCS7Detached::PKCS7Detached() ## See Also +* Class [PKCS7Detached](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) +## PKCS7Detached::PKCS7Detached(DigestHashAlgorithm) constructor + + +Inititalizes new instance of the [PKCS7Detached](../) class. + +```cpp +Aspose::Pdf::Forms::PKCS7Detached::PKCS7Detached(DigestHashAlgorithm digestHashAlgorithm) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| digestHashAlgorithm | DigestHashAlgorithm | The digest algorithm to sign a document. | + +## See Also + +* Enum [DigestHashAlgorithm](../../../aspose.pdf/digesthashalgorithm/) * Class [PKCS7Detached](../) * Namespace [Aspose::Pdf::Forms](../../) * Library [Aspose.PDF for C++](../../../) @@ -42,6 +62,29 @@ Aspose::Pdf::Forms::PKCS7Detached::PKCS7Detached(System::SharedPtr, DigestHashAlgorithm) constructor + + +Initializes new instance of the [PKCS7Detached](../) class. + +```cpp +Aspose::Pdf::Forms::PKCS7Detached::PKCS7Detached(System::SharedPtr image, DigestHashAlgorithm digestHashAlgorithm) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| image | System::SharedPtr\ | This image will define signature appearance on the page. | +| digestHashAlgorithm | DigestHashAlgorithm | The digest algorithm to sign a document. | + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [Stream](../../../system.io/stream/) +* Enum [DigestHashAlgorithm](../../../aspose.pdf/digesthashalgorithm/) +* Class [PKCS7Detached](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) ## PKCS7Detached::PKCS7Detached(System::SharedPtr\, System::String) constructor @@ -65,6 +108,31 @@ Aspose::Pdf::Forms::PKCS7Detached::PKCS7Detached(System::SharedPtr, System::String, DigestHashAlgorithm) constructor + + +Inititalizes new instance of the [PKCS7Detached](../) class. + +```cpp +Aspose::Pdf::Forms::PKCS7Detached::PKCS7Detached(System::SharedPtr pfx, System::String password, DigestHashAlgorithm digestHashAlgorithm) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pfx | System::SharedPtr\ | Stream with certificate data organized as pfx. | +| password | System::String | Password to get access to the private key in the certificate. | +| digestHashAlgorithm | DigestHashAlgorithm | The digest algorithm to sign a document. | + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [Stream](../../../system.io/stream/) +* Class [String](../../../system/string/) +* Enum [DigestHashAlgorithm](../../../aspose.pdf/digesthashalgorithm/) +* Class [PKCS7Detached](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) ## PKCS7Detached::PKCS7Detached(System::String, System::String) constructor @@ -86,3 +154,26 @@ Aspose::Pdf::Forms::PKCS7Detached::PKCS7Detached(System::String pfx, System::Str * Class [PKCS7Detached](../) * Namespace [Aspose::Pdf::Forms](../../) * Library [Aspose.PDF for C++](../../../) +## PKCS7Detached::PKCS7Detached(System::String, System::String, DigestHashAlgorithm) constructor + + +Inititalizes new instance of the [PKCS7Detached](../) class. + +```cpp +Aspose::Pdf::Forms::PKCS7Detached::PKCS7Detached(System::String pfx, System::String password, DigestHashAlgorithm digestHashAlgorithm) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pfx | System::String | Pfx file which contains certificate for signing. | +| password | System::String | Password to get access to the private key in the certificate. | +| digestHashAlgorithm | DigestHashAlgorithm | The digest algorithm to sign a document. | + +## See Also + +* Class [String](../../../system/string/) +* Enum [DigestHashAlgorithm](../../../aspose.pdf/digesthashalgorithm/) +* Class [PKCS7Detached](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/signature/_index.md b/english/cpp/aspose.pdf.forms/signature/_index.md index 9524eee555..1afe8701b8 100644 --- a/english/cpp/aspose.pdf.forms/signature/_index.md +++ b/english/cpp/aspose.pdf.forms/signature/_index.md @@ -24,7 +24,7 @@ class Signature : public System::Object | [get_ByteRange](./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_ContactInfo](./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](./get_customappearance/)() const | Gets/sets the custom appearance. | -| [get_CustomSignHash](./get_customsignhash/)() const | The delegate for custom sign the document hash (Beta). | +| [get_CustomSignHash](./get_customsignhash/)() const | The delegate for custom sign the document hash. | | [get_Date](./get_date/)() const | The time of signing. | | [get_Location](./get_location/)() const | The CPU host name or physical location of the signing. | | [get_OcspSettings](./get_ocspsettings/)() const | Gets/sets ocsp settings. | @@ -32,10 +32,11 @@ class Signature : public System::Object | [get_ShowProperties](./get_showproperties/)() const | Force to show/hide signature properties. | | [get_TimestampSettings](./get_timestampsettings/)() const | Gets/sets timestamp settings. | | [get_UseLtv](./get_useltv/)() const | Gets/sets ltv validation flag. | +| [GetSignatureAlgorithmInfo](./getsignaturealgorithminfo/)() | Retrieves information about the signature algorithm used in the signature. | | [set_Authority](./set_authority/)(System::String) | The name of the person or authority signing the document. | | [set_ContactInfo](./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](./set_customappearance/)(System::SharedPtr\) | Gets/sets the custom appearance. | -| [set_CustomSignHash](./set_customsignhash/)(SignHash) | The delegate for custom sign the document hash (Beta). | +| [set_CustomSignHash](./set_customsignhash/)(SignHash) | The delegate for custom sign the document hash. | | [set_Date](./set_date/)(System::DateTime) | The time of signing. | | [set_Location](./set_location/)(System::String) | The CPU host name or physical location of the signing. | | [set_OcspSettings](./set_ocspsettings/)(System::SharedPtr\) | Gets/sets ocsp settings. | diff --git a/english/cpp/aspose.pdf.forms/signature/get_customsignhash/_index.md b/english/cpp/aspose.pdf.forms/signature/get_customsignhash/_index.md index 2fe2b1de29..e291105c02 100644 --- a/english/cpp/aspose.pdf.forms/signature/get_customsignhash/_index.md +++ b/english/cpp/aspose.pdf.forms/signature/get_customsignhash/_index.md @@ -2,7 +2,7 @@ title: Aspose::Pdf::Forms::Signature::get_CustomSignHash method linktitle: get_CustomSignHash second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Forms::Signature::get_CustomSignHash method. The delegate for custom sign the document hash (Beta) in C++.' +description: 'Aspose::Pdf::Forms::Signature::get_CustomSignHash method. The delegate for custom sign the document hash in C++.' type: docs weight: 600 url: /cpp/aspose.pdf.forms/signature/get_customsignhash/ @@ -10,12 +10,16 @@ url: /cpp/aspose.pdf.forms/signature/get_customsignhash/ ## Signature::get_CustomSignHash method -The delegate for custom sign the document hash (Beta). +The delegate for custom sign the document hash. ```cpp SignHash Aspose::Pdf::Forms::Signature::get_CustomSignHash() const ``` +## Remarks + + +**The algorithm with which you sign the hash in the delegate must match the type of the certificate's private key.** ## See Also * Typedef [SignHash](../../signhash/) diff --git a/english/cpp/aspose.pdf.forms/signature/getsignaturealgorithminfo/_index.md b/english/cpp/aspose.pdf.forms/signature/getsignaturealgorithminfo/_index.md new file mode 100644 index 0000000000..acb30d166c --- /dev/null +++ b/english/cpp/aspose.pdf.forms/signature/getsignaturealgorithminfo/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Forms::Signature::GetSignatureAlgorithmInfo method +linktitle: GetSignatureAlgorithmInfo +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Forms::Signature::GetSignatureAlgorithmInfo method. Retrieves information about the signature algorithm used in the signature in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.forms/signature/getsignaturealgorithminfo/ +--- +## Signature::GetSignatureAlgorithmInfo method + + +Retrieves information about the signature algorithm used in the signature. + +```cpp +System::SharedPtr Aspose::Pdf::Forms::Signature::GetSignatureAlgorithmInfo() +``` + + +### ReturnValue + +An instance of [SignatureAlgorithmInfo](../) that contains details about the signature algorithm. + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [SignatureAlgorithmInfo](../../../aspose.pdf.security/signaturealgorithminfo/) +* Class [Signature](../) +* Namespace [Aspose::Pdf::Forms](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/signature/set_authority/_index.md b/english/cpp/aspose.pdf.forms/signature/set_authority/_index.md index 1b44662c0e..10dcb7c767 100644 --- a/english/cpp/aspose.pdf.forms/signature/set_authority/_index.md +++ b/english/cpp/aspose.pdf.forms/signature/set_authority/_index.md @@ -4,7 +4,7 @@ linktitle: set_Authority second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Forms::Signature::set_Authority method. The name of the person or authority signing the document in C++.' type: docs -weight: 1400 +weight: 1500 url: /cpp/aspose.pdf.forms/signature/set_authority/ --- ## Signature::set_Authority method diff --git a/english/cpp/aspose.pdf.forms/signature/set_contactinfo/_index.md b/english/cpp/aspose.pdf.forms/signature/set_contactinfo/_index.md index 84cd279a8a..61025af0b2 100644 --- a/english/cpp/aspose.pdf.forms/signature/set_contactinfo/_index.md +++ b/english/cpp/aspose.pdf.forms/signature/set_contactinfo/_index.md @@ -4,7 +4,7 @@ linktitle: set_ContactInfo second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Forms::Signature::set_ContactInfo method. Information provided by the signer to enable a recipient to contact the signer to verify the signature, e.g. a phone number in C++.' type: docs -weight: 1500 +weight: 1600 url: /cpp/aspose.pdf.forms/signature/set_contactinfo/ --- ## Signature::set_ContactInfo method diff --git a/english/cpp/aspose.pdf.forms/signature/set_customappearance/_index.md b/english/cpp/aspose.pdf.forms/signature/set_customappearance/_index.md index 321c003499..b1461b1e3d 100644 --- a/english/cpp/aspose.pdf.forms/signature/set_customappearance/_index.md +++ b/english/cpp/aspose.pdf.forms/signature/set_customappearance/_index.md @@ -4,7 +4,7 @@ linktitle: set_CustomAppearance second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Forms::Signature::set_CustomAppearance method. Gets/sets the custom appearance in C++.' type: docs -weight: 1600 +weight: 1700 url: /cpp/aspose.pdf.forms/signature/set_customappearance/ --- ## Signature::set_CustomAppearance method diff --git a/english/cpp/aspose.pdf.forms/signature/set_customsignhash/_index.md b/english/cpp/aspose.pdf.forms/signature/set_customsignhash/_index.md index 18559b527a..967e7d549a 100644 --- a/english/cpp/aspose.pdf.forms/signature/set_customsignhash/_index.md +++ b/english/cpp/aspose.pdf.forms/signature/set_customsignhash/_index.md @@ -2,20 +2,24 @@ title: Aspose::Pdf::Forms::Signature::set_CustomSignHash method linktitle: set_CustomSignHash second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Forms::Signature::set_CustomSignHash method. The delegate for custom sign the document hash (Beta) in C++.' +description: 'Aspose::Pdf::Forms::Signature::set_CustomSignHash method. The delegate for custom sign the document hash in C++.' type: docs -weight: 1700 +weight: 1800 url: /cpp/aspose.pdf.forms/signature/set_customsignhash/ --- ## Signature::set_CustomSignHash method -The delegate for custom sign the document hash (Beta). +The delegate for custom sign the document hash. ```cpp void Aspose::Pdf::Forms::Signature::set_CustomSignHash(SignHash value) ``` +## Remarks + + +**The algorithm with which you sign the hash in the delegate must match the type of the certificate's private key.** ## See Also * Typedef [SignHash](../../signhash/) diff --git a/english/cpp/aspose.pdf.forms/signature/set_date/_index.md b/english/cpp/aspose.pdf.forms/signature/set_date/_index.md index 6b7319b4b0..3004d42b58 100644 --- a/english/cpp/aspose.pdf.forms/signature/set_date/_index.md +++ b/english/cpp/aspose.pdf.forms/signature/set_date/_index.md @@ -4,7 +4,7 @@ linktitle: set_Date second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Forms::Signature::set_Date method. The time of signing in C++.' type: docs -weight: 1800 +weight: 1900 url: /cpp/aspose.pdf.forms/signature/set_date/ --- ## Signature::set_Date method diff --git a/english/cpp/aspose.pdf.forms/signature/set_location/_index.md b/english/cpp/aspose.pdf.forms/signature/set_location/_index.md index 0b5ba7b858..0d35069eb7 100644 --- a/english/cpp/aspose.pdf.forms/signature/set_location/_index.md +++ b/english/cpp/aspose.pdf.forms/signature/set_location/_index.md @@ -4,7 +4,7 @@ linktitle: set_Location second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Forms::Signature::set_Location method. The CPU host name or physical location of the signing in C++.' type: docs -weight: 1900 +weight: 2000 url: /cpp/aspose.pdf.forms/signature/set_location/ --- ## Signature::set_Location method diff --git a/english/cpp/aspose.pdf.forms/signature/set_ocspsettings/_index.md b/english/cpp/aspose.pdf.forms/signature/set_ocspsettings/_index.md index 7d9ef8d207..065f2f7cb6 100644 --- a/english/cpp/aspose.pdf.forms/signature/set_ocspsettings/_index.md +++ b/english/cpp/aspose.pdf.forms/signature/set_ocspsettings/_index.md @@ -4,7 +4,7 @@ linktitle: set_OcspSettings second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Forms::Signature::set_OcspSettings method. Gets/sets ocsp settings in C++.' type: docs -weight: 2000 +weight: 2100 url: /cpp/aspose.pdf.forms/signature/set_ocspsettings/ --- ## Signature::set_OcspSettings method diff --git a/english/cpp/aspose.pdf.forms/signature/set_reason/_index.md b/english/cpp/aspose.pdf.forms/signature/set_reason/_index.md index 931db64451..3d3b8adbdb 100644 --- a/english/cpp/aspose.pdf.forms/signature/set_reason/_index.md +++ b/english/cpp/aspose.pdf.forms/signature/set_reason/_index.md @@ -4,7 +4,7 @@ linktitle: set_Reason second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Forms::Signature::set_Reason method. The reason for the signing, such as (I agree, Pip B.) in C++.' type: docs -weight: 2100 +weight: 2200 url: /cpp/aspose.pdf.forms/signature/set_reason/ --- ## Signature::set_Reason method diff --git a/english/cpp/aspose.pdf.forms/signature/set_showproperties/_index.md b/english/cpp/aspose.pdf.forms/signature/set_showproperties/_index.md index 23cbd15b74..bfb98e53da 100644 --- a/english/cpp/aspose.pdf.forms/signature/set_showproperties/_index.md +++ b/english/cpp/aspose.pdf.forms/signature/set_showproperties/_index.md @@ -4,7 +4,7 @@ linktitle: set_ShowProperties second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Forms::Signature::set_ShowProperties method. Force to show/hide signature properties in C++.' type: docs -weight: 2200 +weight: 2300 url: /cpp/aspose.pdf.forms/signature/set_showproperties/ --- ## Signature::set_ShowProperties method diff --git a/english/cpp/aspose.pdf.forms/signature/set_timestampsettings/_index.md b/english/cpp/aspose.pdf.forms/signature/set_timestampsettings/_index.md index 48dbb32a8c..959fa2c208 100644 --- a/english/cpp/aspose.pdf.forms/signature/set_timestampsettings/_index.md +++ b/english/cpp/aspose.pdf.forms/signature/set_timestampsettings/_index.md @@ -4,7 +4,7 @@ linktitle: set_TimestampSettings second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Forms::Signature::set_TimestampSettings method. Gets/sets timestamp settings in C++.' type: docs -weight: 2300 +weight: 2400 url: /cpp/aspose.pdf.forms/signature/set_timestampsettings/ --- ## Signature::set_TimestampSettings method diff --git a/english/cpp/aspose.pdf.forms/signature/set_useltv/_index.md b/english/cpp/aspose.pdf.forms/signature/set_useltv/_index.md index 812a5f4ac9..f81cfbac6c 100644 --- a/english/cpp/aspose.pdf.forms/signature/set_useltv/_index.md +++ b/english/cpp/aspose.pdf.forms/signature/set_useltv/_index.md @@ -4,7 +4,7 @@ linktitle: set_UseLtv second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Forms::Signature::set_UseLtv method. Gets/sets ltv validation flag in C++.' type: docs -weight: 2400 +weight: 2500 url: /cpp/aspose.pdf.forms/signature/set_useltv/ --- ## Signature::set_UseLtv method diff --git a/english/cpp/aspose.pdf.forms/signature/verify/_index.md b/english/cpp/aspose.pdf.forms/signature/verify/_index.md index 7c416d4728..d518e6077d 100644 --- a/english/cpp/aspose.pdf.forms/signature/verify/_index.md +++ b/english/cpp/aspose.pdf.forms/signature/verify/_index.md @@ -4,7 +4,7 @@ linktitle: Verify second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Forms::Signature::Verify method. Verify the document regarding this signature and return true if document is valid or otherwise false in C++.' type: docs -weight: 2500 +weight: 2600 url: /cpp/aspose.pdf.forms/signature/verify/ --- ## Signature::Verify method diff --git a/english/cpp/aspose.pdf.forms/signhash/_index.md b/english/cpp/aspose.pdf.forms/signhash/_index.md index da57c74fe9..26c19f1932 100644 --- a/english/cpp/aspose.pdf.forms/signhash/_index.md +++ b/english/cpp/aspose.pdf.forms/signhash/_index.md @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.forms/signhash/ ```cpp -using Aspose::Pdf::Forms::SignHash = System::MulticastDelegate(System::ArrayPtr)> +using Aspose::Pdf::Forms::SignHash = System::MulticastDelegate(System::ArrayPtr, DigestHashAlgorithm)> ``` ## See Also diff --git a/english/cpp/aspose.pdf.generator/_index.md b/english/cpp/aspose.pdf.generator/_index.md index fc83e67a3c..6bee90dde7 100644 --- a/english/cpp/aspose.pdf.generator/_index.md +++ b/english/cpp/aspose.pdf.generator/_index.md @@ -4,7 +4,7 @@ linktitle: Aspose::Pdf::Generator second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::Generator namespace in C++.' type: docs -weight: 1300 +weight: 1400 url: /cpp/aspose.pdf.generator/ --- diff --git a/english/cpp/aspose.pdf.groupprocessor.creators/_index.md b/english/cpp/aspose.pdf.groupprocessor.creators/_index.md index f58ab8add7..a1b2159a1a 100644 --- a/english/cpp/aspose.pdf.groupprocessor.creators/_index.md +++ b/english/cpp/aspose.pdf.groupprocessor.creators/_index.md @@ -4,7 +4,7 @@ linktitle: Aspose::Pdf::GroupProcessor::Creators second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::GroupProcessor::Creators namespace in C++.' type: docs -weight: 1500 +weight: 1600 url: /cpp/aspose.pdf.groupprocessor.creators/ --- diff --git a/english/cpp/aspose.pdf.groupprocessor/_index.md b/english/cpp/aspose.pdf.groupprocessor/_index.md index 699ade6e9a..4b0bdfb66c 100644 --- a/english/cpp/aspose.pdf.groupprocessor/_index.md +++ b/english/cpp/aspose.pdf.groupprocessor/_index.md @@ -4,7 +4,7 @@ linktitle: Aspose::Pdf::GroupProcessor second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::GroupProcessor namespace in C++.' type: docs -weight: 1400 +weight: 1500 url: /cpp/aspose.pdf.groupprocessor/ --- diff --git a/english/cpp/aspose.pdf.logicalstructure/_index.md b/english/cpp/aspose.pdf.logicalstructure/_index.md index a19cd7abc9..2fbe89a6c5 100644 --- a/english/cpp/aspose.pdf.logicalstructure/_index.md +++ b/english/cpp/aspose.pdf.logicalstructure/_index.md @@ -4,7 +4,7 @@ linktitle: Aspose::Pdf::LogicalStructure second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::LogicalStructure namespace in C++.' type: docs -weight: 1600 +weight: 1700 url: /cpp/aspose.pdf.logicalstructure/ --- diff --git a/english/cpp/aspose.pdf.logicalstructure/element/_index.md b/english/cpp/aspose.pdf.logicalstructure/element/_index.md index ec567c3d26..1240bbddc6 100644 --- a/english/cpp/aspose.pdf.logicalstructure/element/_index.md +++ b/english/cpp/aspose.pdf.logicalstructure/element/_index.md @@ -20,12 +20,12 @@ class Element : public virtual System::Object | Method | Description | | --- | --- | -| [AppendChild](./appendchild/)(System::SharedPtr\) | Append [T:/Aspose::Pdf::LogicalStructure::Element](../) to collection of children. | +| [AppendChild](./appendchild/)(System::SharedPtr\, bool) | Append [T:/Aspose::Pdf::LogicalStructure::Element](../) to collection of children. | | [ClearChilds](./clearchilds/)() | Clear all childs. | | [FindElements](./findelements/)(bool) | Find Elements of a given type. | | [get_ChildElements](./get_childelements/)() | Gets children collection of [T:/Aspose::Pdf::LogicalStructure::Element](../) objects. | | [get_ParentElement](./get_parentelement/)() const | Get parent element. | -| [InsertChild](./insertchild/)(System::SharedPtr\, int32_t) | Insert [T:/Aspose::Pdf::LogicalStructure::Element](../) to collection of children at specified index. | +| [InsertChild](./insertchild/)(System::SharedPtr\, int32_t, bool) | Insert [T:/Aspose::Pdf::LogicalStructure::Element](../) to collection of children at specified index. | | [RemoveChild](./removechild/)(int32_t) | Remove child at. | | virtual [Tag](./tag/)(System::SharedPtr\) | Bind a structure element to the content stream BDC operator. | | virtual [Tag](./tag/)(System::SharedPtr\) | Bind a structure element to the content stream [XForm](../../aspose.pdf/xform/). | diff --git a/english/cpp/aspose.pdf.logicalstructure/element/appendchild/_index.md b/english/cpp/aspose.pdf.logicalstructure/element/appendchild/_index.md index dd4ae9e5ed..7faa14b633 100644 --- a/english/cpp/aspose.pdf.logicalstructure/element/appendchild/_index.md +++ b/english/cpp/aspose.pdf.logicalstructure/element/appendchild/_index.md @@ -13,13 +13,14 @@ url: /cpp/aspose.pdf.logicalstructure/element/appendchild/ Append [T:/Aspose::Pdf::LogicalStructure::Element](../) to collection of children. ```cpp -System::SharedPtr Aspose::Pdf::LogicalStructure::Element::AppendChild(System::SharedPtr element) +System::SharedPtr Aspose::Pdf::LogicalStructure::Element::AppendChild(System::SharedPtr element, bool checkIfCanBeAppended=true) ``` | Parameter | Type | Description | | --- | --- | --- | | element | System::SharedPtr\ | [T:/Aspose::Pdf::LogicalStructure::Element](../) object to add. | +| checkIfCanBeAppended | bool | Check if can be appended. | ### ReturnValue diff --git a/english/cpp/aspose.pdf.logicalstructure/element/insertchild/_index.md b/english/cpp/aspose.pdf.logicalstructure/element/insertchild/_index.md index 2b6817062a..f315e9c6a0 100644 --- a/english/cpp/aspose.pdf.logicalstructure/element/insertchild/_index.md +++ b/english/cpp/aspose.pdf.logicalstructure/element/insertchild/_index.md @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.logicalstructure/element/insertchild/ Insert [T:/Aspose::Pdf::LogicalStructure::Element](../) to collection of children at specified index. ```cpp -System::SharedPtr Aspose::Pdf::LogicalStructure::Element::InsertChild(System::SharedPtr element, int32_t index) +System::SharedPtr Aspose::Pdf::LogicalStructure::Element::InsertChild(System::SharedPtr element, int32_t index, bool checkIfCanBeInserted=true) ``` @@ -21,6 +21,7 @@ System::SharedPtr Aspose::Pdf::LogicalStructure::Element::InsertChild(S | --- | --- | --- | | element | System::SharedPtr\ | [T:/Aspose::Pdf::LogicalStructure::Element](../) object to add. | | index | int32_t | [Element](../) index. | +| checkIfCanBeInserted | bool | Check if can be inserted. | ### ReturnValue diff --git a/english/cpp/aspose.pdf.logicalstructure/elementlistimplementation/removeelement/_index.md b/english/cpp/aspose.pdf.logicalstructure/elementlistimplementation/removeelement/_index.md index f06db86369..edcc77a4f7 100644 --- a/english/cpp/aspose.pdf.logicalstructure/elementlistimplementation/removeelement/_index.md +++ b/english/cpp/aspose.pdf.logicalstructure/elementlistimplementation/removeelement/_index.md @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.logicalstructure/elementlistimplementation/removeelement/ Remove element from list. ```cpp -void Aspose::Pdf::LogicalStructure::ElementListImplementation::RemoveElement(System::SharedPtr element, bool updatePdfDictionary=true) override +int32_t Aspose::Pdf::LogicalStructure::ElementListImplementation::RemoveElement(System::SharedPtr element, bool updatePdfDictionary=true) override ``` diff --git a/english/cpp/aspose.pdf.logicalstructure/structureelement/_index.md b/english/cpp/aspose.pdf.logicalstructure/structureelement/_index.md index f4742ec45c..89dba6c666 100644 --- a/english/cpp/aspose.pdf.logicalstructure/structureelement/_index.md +++ b/english/cpp/aspose.pdf.logicalstructure/structureelement/_index.md @@ -20,7 +20,7 @@ class StructureElement : public Aspose::Pdf::LogicalStructure::Element | Method | Description | | --- | --- | -| [ChangeParentElement](./changeparentelement/)(System::SharedPtr\) | Change parent element for current structure element. | +| [ChangeParentElement](./changeparentelement/)(System::SharedPtr\, bool) | Change parent element for current structure element. | | [ClearId](./clearid/)() | Clear ID for structure element. | | [GenerateId](./generateid/)() | Generate ID for structure element. | | [get_ActualText](./get_actualtext/)() | Gets the actual text for structure element. | @@ -34,6 +34,7 @@ class StructureElement : public Aspose::Pdf::LogicalStructure::Element | [get_StructureType](./get_structuretype/)() const | Gets type of structure element. | | [get_Title](./get_title/)() | Gets the title for structure element. | | [Remove](./remove/)() | Removes: an element from the structure, a reference to it from the parent object, references to it from child objects, the corresponding object from the document. | +| [RemoveAndMoveItsChildObjectsToItsParent](./removeandmoveitschildobjectstoitsparent/)(bool) | Removes an element from the structure, a reference to it from the parent object, references to it from child objects, and the corresponding object from the document. Inserts child objects of the removed object into its former parent child objects collection starting at the index of the removed object. | | [set_ActualText](./set_actualtext/)(System::String) | Sets the actual text for structure element. | | [set_AlternativeText](./set_alternativetext/)(System::String) | Sets the alternative text for structure element. | | [set_ExpansionText](./set_expansiontext/)(System::String) | Sets the expansion text for structure element. | diff --git a/english/cpp/aspose.pdf.logicalstructure/structureelement/changeparentelement/_index.md b/english/cpp/aspose.pdf.logicalstructure/structureelement/changeparentelement/_index.md index 2ba1c78d3a..4e18bb4794 100644 --- a/english/cpp/aspose.pdf.logicalstructure/structureelement/changeparentelement/_index.md +++ b/english/cpp/aspose.pdf.logicalstructure/structureelement/changeparentelement/_index.md @@ -13,13 +13,14 @@ url: /cpp/aspose.pdf.logicalstructure/structureelement/changeparentelement/ Change parent element for current structure element. ```cpp -void Aspose::Pdf::LogicalStructure::StructureElement::ChangeParentElement(System::SharedPtr newParentElement) +void Aspose::Pdf::LogicalStructure::StructureElement::ChangeParentElement(System::SharedPtr newParentElement, bool checkIfParentCanBeChanged=true) ``` | Parameter | Type | Description | | --- | --- | --- | | newParentElement | System::SharedPtr\ | New parent structure element | +| checkIfParentCanBeChanged | bool | Check if parent be changed. | ## See Also diff --git a/english/cpp/aspose.pdf.logicalstructure/structureelement/removeandmoveitschildobjectstoitsparent/_index.md b/english/cpp/aspose.pdf.logicalstructure/structureelement/removeandmoveitschildobjectstoitsparent/_index.md new file mode 100644 index 0000000000..a6996a4c71 --- /dev/null +++ b/english/cpp/aspose.pdf.logicalstructure/structureelement/removeandmoveitschildobjectstoitsparent/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::LogicalStructure::StructureElement::RemoveAndMoveItsChildObjectsToItsParent method +linktitle: RemoveAndMoveItsChildObjectsToItsParent +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::LogicalStructure::StructureElement::RemoveAndMoveItsChildObjectsToItsParent method. Removes an element from the structure, a reference to it from the parent object, references to it from child objects, and the corresponding object from the document. Inserts child objects of the removed object into its former parent child objects collection starting at the index of the removed object in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.logicalstructure/structureelement/removeandmoveitschildobjectstoitsparent/ +--- +## StructureElement::RemoveAndMoveItsChildObjectsToItsParent method + + +Removes an element from the structure, a reference to it from the parent object, references to it from child objects, and the corresponding object from the document. Inserts child objects of the removed object into its former parent child objects collection starting at the index of the removed object. + +```cpp +void Aspose::Pdf::LogicalStructure::StructureElement::RemoveAndMoveItsChildObjectsToItsParent(bool checkIfChildObjectsCanBeMovedToParent=true) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| checkIfChildObjectsCanBeMovedToParent | bool | Check if child objects of removed object can be inserted into its parent child objects collection. | + +## See Also + +* Class [StructureElement](../) +* Namespace [Aspose::Pdf::LogicalStructure](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.logicalstructure/structureelement/set_actualtext/_index.md b/english/cpp/aspose.pdf.logicalstructure/structureelement/set_actualtext/_index.md index 63fb72e867..7e3de7f0c7 100644 --- a/english/cpp/aspose.pdf.logicalstructure/structureelement/set_actualtext/_index.md +++ b/english/cpp/aspose.pdf.logicalstructure/structureelement/set_actualtext/_index.md @@ -4,7 +4,7 @@ linktitle: set_ActualText second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::LogicalStructure::StructureElement::set_ActualText method. Sets the actual text for structure element in C++.' type: docs -weight: 1500 +weight: 1600 url: /cpp/aspose.pdf.logicalstructure/structureelement/set_actualtext/ --- ## StructureElement::set_ActualText method diff --git a/english/cpp/aspose.pdf.logicalstructure/structureelement/set_alternativetext/_index.md b/english/cpp/aspose.pdf.logicalstructure/structureelement/set_alternativetext/_index.md index dbdf7e6254..fc30f38390 100644 --- a/english/cpp/aspose.pdf.logicalstructure/structureelement/set_alternativetext/_index.md +++ b/english/cpp/aspose.pdf.logicalstructure/structureelement/set_alternativetext/_index.md @@ -4,7 +4,7 @@ linktitle: set_AlternativeText second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::LogicalStructure::StructureElement::set_AlternativeText method. Sets the alternative text for structure element in C++.' type: docs -weight: 1600 +weight: 1700 url: /cpp/aspose.pdf.logicalstructure/structureelement/set_alternativetext/ --- ## StructureElement::set_AlternativeText method diff --git a/english/cpp/aspose.pdf.logicalstructure/structureelement/set_expansiontext/_index.md b/english/cpp/aspose.pdf.logicalstructure/structureelement/set_expansiontext/_index.md index bf124ffb44..4005932102 100644 --- a/english/cpp/aspose.pdf.logicalstructure/structureelement/set_expansiontext/_index.md +++ b/english/cpp/aspose.pdf.logicalstructure/structureelement/set_expansiontext/_index.md @@ -4,7 +4,7 @@ linktitle: set_ExpansionText second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::LogicalStructure::StructureElement::set_ExpansionText method. Sets the expansion text for structure element in C++.' type: docs -weight: 1700 +weight: 1800 url: /cpp/aspose.pdf.logicalstructure/structureelement/set_expansiontext/ --- ## StructureElement::set_ExpansionText method diff --git a/english/cpp/aspose.pdf.logicalstructure/structureelement/set_language/_index.md b/english/cpp/aspose.pdf.logicalstructure/structureelement/set_language/_index.md index 72631f0d3a..83090314bd 100644 --- a/english/cpp/aspose.pdf.logicalstructure/structureelement/set_language/_index.md +++ b/english/cpp/aspose.pdf.logicalstructure/structureelement/set_language/_index.md @@ -4,7 +4,7 @@ linktitle: set_Language second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::LogicalStructure::StructureElement::set_Language method. Sets the language for structure element in C++.' type: docs -weight: 1800 +weight: 1900 url: /cpp/aspose.pdf.logicalstructure/structureelement/set_language/ --- ## StructureElement::set_Language method diff --git a/english/cpp/aspose.pdf.logicalstructure/structureelement/set_title/_index.md b/english/cpp/aspose.pdf.logicalstructure/structureelement/set_title/_index.md index ab9c6701b4..7c3456ce95 100644 --- a/english/cpp/aspose.pdf.logicalstructure/structureelement/set_title/_index.md +++ b/english/cpp/aspose.pdf.logicalstructure/structureelement/set_title/_index.md @@ -4,7 +4,7 @@ linktitle: set_Title second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::LogicalStructure::StructureElement::set_Title method. Sets the title for structure element in C++.' type: docs -weight: 1900 +weight: 2000 url: /cpp/aspose.pdf.logicalstructure/structureelement/set_title/ --- ## StructureElement::set_Title method diff --git a/english/cpp/aspose.pdf.logicalstructure/structureelement/setid/_index.md b/english/cpp/aspose.pdf.logicalstructure/structureelement/setid/_index.md index b62c6910b0..57bdd18911 100644 --- a/english/cpp/aspose.pdf.logicalstructure/structureelement/setid/_index.md +++ b/english/cpp/aspose.pdf.logicalstructure/structureelement/setid/_index.md @@ -4,7 +4,7 @@ linktitle: SetId second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::LogicalStructure::StructureElement::SetId method. Sets ID for structure element in C++.' type: docs -weight: 2000 +weight: 2100 url: /cpp/aspose.pdf.logicalstructure/structureelement/setid/ --- ## StructureElement::SetId method diff --git a/english/cpp/aspose.pdf.logicalstructure/structureelement/settag/_index.md b/english/cpp/aspose.pdf.logicalstructure/structureelement/settag/_index.md index f6edd4b369..392261d068 100644 --- a/english/cpp/aspose.pdf.logicalstructure/structureelement/settag/_index.md +++ b/english/cpp/aspose.pdf.logicalstructure/structureelement/settag/_index.md @@ -4,7 +4,7 @@ linktitle: SetTag second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::LogicalStructure::StructureElement::SetTag method. Sets custom tag for structure element in C++.' type: docs -weight: 2100 +weight: 2200 url: /cpp/aspose.pdf.logicalstructure/structureelement/settag/ --- ## StructureElement::SetTag method diff --git a/english/cpp/aspose.pdf.logicalstructure/structureelement/tag/_index.md b/english/cpp/aspose.pdf.logicalstructure/structureelement/tag/_index.md index f371e63bc9..d6bc67633e 100644 --- a/english/cpp/aspose.pdf.logicalstructure/structureelement/tag/_index.md +++ b/english/cpp/aspose.pdf.logicalstructure/structureelement/tag/_index.md @@ -4,7 +4,7 @@ linktitle: Tag second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::LogicalStructure::StructureElement::Tag method. Bind a structure element to the Artifact in C++.' type: docs -weight: 2200 +weight: 2300 url: /cpp/aspose.pdf.logicalstructure/structureelement/tag/ --- ## StructureElement::Tag(System::SharedPtr\) method diff --git a/english/cpp/aspose.pdf.logicalstructure/structureelement/tostring/_index.md b/english/cpp/aspose.pdf.logicalstructure/structureelement/tostring/_index.md index 6f89ea584f..a3619a0290 100644 --- a/english/cpp/aspose.pdf.logicalstructure/structureelement/tostring/_index.md +++ b/english/cpp/aspose.pdf.logicalstructure/structureelement/tostring/_index.md @@ -4,7 +4,7 @@ linktitle: ToString second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::LogicalStructure::StructureElement::ToString method. Returns a string that represents the current object in C++.' type: docs -weight: 2300 +weight: 2400 url: /cpp/aspose.pdf.logicalstructure/structureelement/tostring/ --- ## StructureElement::ToString method diff --git a/english/cpp/aspose.pdf.multithreading/_index.md b/english/cpp/aspose.pdf.multithreading/_index.md index da09cfaf78..fbcae5c70c 100644 --- a/english/cpp/aspose.pdf.multithreading/_index.md +++ b/english/cpp/aspose.pdf.multithreading/_index.md @@ -4,7 +4,7 @@ linktitle: Aspose::Pdf::Multithreading second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::Multithreading namespace in C++.' type: docs -weight: 1700 +weight: 1800 url: /cpp/aspose.pdf.multithreading/ --- diff --git a/english/cpp/aspose.pdf.operators/_index.md b/english/cpp/aspose.pdf.operators/_index.md index 35bb38b7a3..9fa86e3511 100644 --- a/english/cpp/aspose.pdf.operators/_index.md +++ b/english/cpp/aspose.pdf.operators/_index.md @@ -4,7 +4,7 @@ linktitle: Aspose::Pdf::Operators second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::Operators namespace in C++.' type: docs -weight: 1800 +weight: 1900 url: /cpp/aspose.pdf.operators/ --- diff --git a/english/cpp/aspose.pdf.operators/curveto/_index.md b/english/cpp/aspose.pdf.operators/curveto/_index.md index e0759a67c7..3543f96f63 100644 --- a/english/cpp/aspose.pdf.operators/curveto/_index.md +++ b/english/cpp/aspose.pdf.operators/curveto/_index.md @@ -22,7 +22,6 @@ class CurveTo : public Aspose::Pdf::Operator | --- | --- | | [Accept](./accept/)(System::SharedPtr\) override | Accepts visitor object to process operator. | | [CurveTo](./curveto/)(double, double, double, double, double, double) | Initializes curve operator. | -| [get_Points](./get_points/)() const | Points of the curve. | | [ToString](./tostring/)() const override | Returns text representation of operator. | ## See Also diff --git a/english/cpp/aspose.pdf.operators/curveto/tostring/_index.md b/english/cpp/aspose.pdf.operators/curveto/tostring/_index.md index 67e2715ce6..5ad4a4bb80 100644 --- a/english/cpp/aspose.pdf.operators/curveto/tostring/_index.md +++ b/english/cpp/aspose.pdf.operators/curveto/tostring/_index.md @@ -4,7 +4,7 @@ linktitle: ToString second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Operators::CurveTo::ToString method. Returns text representation of operator in C++.' type: docs -weight: 400 +weight: 300 url: /cpp/aspose.pdf.operators/curveto/tostring/ --- ## CurveTo::ToString method diff --git a/english/cpp/aspose.pdf.optimization/_index.md b/english/cpp/aspose.pdf.optimization/_index.md index ad377d91bb..edd6c85b8b 100644 --- a/english/cpp/aspose.pdf.optimization/_index.md +++ b/english/cpp/aspose.pdf.optimization/_index.md @@ -4,7 +4,7 @@ linktitle: Aspose::Pdf::Optimization second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::Optimization namespace in C++.' type: docs -weight: 1900 +weight: 2000 url: /cpp/aspose.pdf.optimization/ --- diff --git a/english/cpp/aspose.pdf.optimization/optimizationoptions/_index.md b/english/cpp/aspose.pdf.optimization/optimizationoptions/_index.md index d019b27e10..71fb49a82e 100644 --- a/english/cpp/aspose.pdf.optimization/optimizationoptions/_index.md +++ b/english/cpp/aspose.pdf.optimization/optimizationoptions/_index.md @@ -29,7 +29,8 @@ class OptimizationOptions : public System::Object | [get_ImageCompressionOptions](./get_imagecompressionoptions/)() const | Set of options which describe will images in the document be compressed and parameters of the compression. | | [get_ImageEncoding](./get_imageencoding/)() const | [Image](../../aspose.pdf/image/) encodre which will be used. | | [get_ImageQuality](./get_imagequality/)() | Specifies level of image compression when CompressIamges flag is used. | -| [get_LinkDuplcateStreams](./get_linkduplcatestreams/)() const | If this flag is set to true, Resource streams will be analyzed. If duplicate streams are found (i.e. if stream contents is equal), then thes streams will be stored as one object. This allows to decrease document size in some cases (for example, when same document was concatenedted multiple times). | +| [get_LinkDuplcateStreams](./get_linkduplcatestreams/)() const | Obsolete! Use LinkDuplicateStreams instead. | +| [get_LinkDuplicateStreams](./get_linkduplicatestreams/)() const | If this flag is set to true, Resource streams will be analyzed. If duplicate streams are found (i.e. if stream contents is equal), then thes streams will be stored as one object. This allows to decrease document size in some cases (for example, when same document was concatenedted multiple times). | | [get_MaxResoultion](./get_maxresoultion/)() | Specifies maximum resolution of images. If image has higher resolition it will be scaled. | | [get_RemovePrivateInfo](./get_removeprivateinfo/)() const | Remove private information (page piece info). | | [get_RemoveUnusedObjects](./get_removeunusedobjects/)() const | If this flag is set to true, all document objects will be checked and unused objects (i.e. objects which does not have any reference) are removed from document. | @@ -45,7 +46,8 @@ class OptimizationOptions : public System::Object , [Pdf](../../aspose.pdf/) objects will be packed into Objest Streams and compressed to reduce pdf file size. | | [set_ImageEncoding](./set_imageencoding/)(Aspose::Pdf::Optimization::ImageEncoding) | [Image](../../aspose.pdf/image/) encodre which will be used. | | [set_ImageQuality](./set_imagequality/)(int32_t) | Specifies level of image compression when CompressIamges flag is used. | -| [set_LinkDuplcateStreams](./set_linkduplcatestreams/)(bool) | If this flag is set to true, Resource streams will be analyzed. If duplicate streams are found (i.e. if stream contents is equal), then thes streams will be stored as one object. This allows to decrease document size in some cases (for example, when same document was concatenedted multiple times). | +| [set_LinkDuplcateStreams](./set_linkduplcatestreams/)(bool) | Obsolete! Use LinkDuplicateStreams instead. | +| [set_LinkDuplicateStreams](./set_linkduplicatestreams/)(bool) | If this flag is set to true, Resource streams will be analyzed. If duplicate streams are found (i.e. if stream contents is equal), then thes streams will be stored as one object. This allows to decrease document size in some cases (for example, when same document was concatenedted multiple times). | | [set_MaxResoultion](./set_maxresoultion/)(int32_t) | Specifies maximum resolution of images. If image has higher resolition it will be scaled. | | [set_RemovePrivateInfo](./set_removeprivateinfo/)(bool) | Remove private information (page piece info). | | [set_RemoveUnusedObjects](./set_removeunusedobjects/)(bool) | If this flag is set to true, all document objects will be checked and unused objects (i.e. objects which does not have any reference) are removed from document. | diff --git a/english/cpp/aspose.pdf.optimization/optimizationoptions/all/_index.md b/english/cpp/aspose.pdf.optimization/optimizationoptions/all/_index.md index d218dd140e..ed378058ed 100644 --- a/english/cpp/aspose.pdf.optimization/optimizationoptions/all/_index.md +++ b/english/cpp/aspose.pdf.optimization/optimizationoptions/all/_index.md @@ -4,7 +4,7 @@ linktitle: All second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Optimization::OptimizationOptions::All method. Creates optimization strategy will all options activated. Please note that activated only options which does not change any functionality of the document. I.e. image compressing and fonts unembedding will not enabled (and can be embedded manually) in C++.' type: docs -weight: 2900 +weight: 3100 url: /cpp/aspose.pdf.optimization/optimizationoptions/all/ --- ## OptimizationOptions::All method diff --git a/english/cpp/aspose.pdf.optimization/optimizationoptions/get_linkduplcatestreams/_index.md b/english/cpp/aspose.pdf.optimization/optimizationoptions/get_linkduplcatestreams/_index.md index 56627184b2..831f59caa4 100644 --- a/english/cpp/aspose.pdf.optimization/optimizationoptions/get_linkduplcatestreams/_index.md +++ b/english/cpp/aspose.pdf.optimization/optimizationoptions/get_linkduplcatestreams/_index.md @@ -2,7 +2,7 @@ title: Aspose::Pdf::Optimization::OptimizationOptions::get_LinkDuplcateStreams method linktitle: get_LinkDuplcateStreams second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Optimization::OptimizationOptions::get_LinkDuplcateStreams method. If this flag is set to true, Resource streams will be analyzed. If duplicate streams are found (i.e. if stream contents is equal), then thes streams will be stored as one object. This allows to decrease document size in some cases (for example, when same document was concatenedted multiple times) in C++.' +description: 'Aspose::Pdf::Optimization::OptimizationOptions::get_LinkDuplcateStreams method. Obsolete! Use LinkDuplicateStreams instead in C++.' type: docs weight: 800 url: /cpp/aspose.pdf.optimization/optimizationoptions/get_linkduplcatestreams/ @@ -10,12 +10,16 @@ url: /cpp/aspose.pdf.optimization/optimizationoptions/get_linkduplcatestreams/ ## OptimizationOptions::get_LinkDuplcateStreams method -If this flag is set to true, Resource streams will be analyzed. If duplicate streams are found (i.e. if stream contents is equal), then thes streams will be stored as one object. This allows to decrease document size in some cases (for example, when same document was concatenedted multiple times). +Obsolete! Use LinkDuplicateStreams instead. ```cpp bool Aspose::Pdf::Optimization::OptimizationOptions::get_LinkDuplcateStreams() const ``` + +## Deprecated +Use LinkDuplicateStreams instead. + ## See Also * Class [OptimizationOptions](../) diff --git a/english/cpp/aspose.pdf.optimization/optimizationoptions/get_linkduplicatestreams/_index.md b/english/cpp/aspose.pdf.optimization/optimizationoptions/get_linkduplicatestreams/_index.md new file mode 100644 index 0000000000..38778250ca --- /dev/null +++ b/english/cpp/aspose.pdf.optimization/optimizationoptions/get_linkduplicatestreams/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Optimization::OptimizationOptions::get_LinkDuplicateStreams method +linktitle: get_LinkDuplicateStreams +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Optimization::OptimizationOptions::get_LinkDuplicateStreams method. If this flag is set to true, Resource streams will be analyzed. If duplicate streams are found (i.e. if stream contents is equal), then thes streams will be stored as one object. This allows to decrease document size in some cases (for example, when same document was concatenedted multiple times) in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.optimization/optimizationoptions/get_linkduplicatestreams/ +--- +## OptimizationOptions::get_LinkDuplicateStreams method + + +If this flag is set to true, Resource streams will be analyzed. If duplicate streams are found (i.e. if stream contents is equal), then thes streams will be stored as one object. This allows to decrease document size in some cases (for example, when same document was concatenedted multiple times). + +```cpp +bool Aspose::Pdf::Optimization::OptimizationOptions::get_LinkDuplicateStreams() const +``` + +## See Also + +* Class [OptimizationOptions](../) +* Namespace [Aspose::Pdf::Optimization](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.optimization/optimizationoptions/get_maxresoultion/_index.md b/english/cpp/aspose.pdf.optimization/optimizationoptions/get_maxresoultion/_index.md index ae254c57b4..41feac5590 100644 --- a/english/cpp/aspose.pdf.optimization/optimizationoptions/get_maxresoultion/_index.md +++ b/english/cpp/aspose.pdf.optimization/optimizationoptions/get_maxresoultion/_index.md @@ -4,7 +4,7 @@ linktitle: get_MaxResoultion second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Optimization::OptimizationOptions::get_MaxResoultion method. Specifies maximum resolution of images. If image has higher resolition it will be scaled in C++.' type: docs -weight: 900 +weight: 1000 url: /cpp/aspose.pdf.optimization/optimizationoptions/get_maxresoultion/ --- ## OptimizationOptions::get_MaxResoultion method diff --git a/english/cpp/aspose.pdf.optimization/optimizationoptions/get_removeprivateinfo/_index.md b/english/cpp/aspose.pdf.optimization/optimizationoptions/get_removeprivateinfo/_index.md index 5b75241952..54c3e8386b 100644 --- a/english/cpp/aspose.pdf.optimization/optimizationoptions/get_removeprivateinfo/_index.md +++ b/english/cpp/aspose.pdf.optimization/optimizationoptions/get_removeprivateinfo/_index.md @@ -4,7 +4,7 @@ linktitle: get_RemovePrivateInfo second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Optimization::OptimizationOptions::get_RemovePrivateInfo method. Remove private information (page piece info) in C++.' type: docs -weight: 1000 +weight: 1100 url: /cpp/aspose.pdf.optimization/optimizationoptions/get_removeprivateinfo/ --- ## OptimizationOptions::get_RemovePrivateInfo method diff --git a/english/cpp/aspose.pdf.optimization/optimizationoptions/get_removeunusedobjects/_index.md b/english/cpp/aspose.pdf.optimization/optimizationoptions/get_removeunusedobjects/_index.md index adebd51feb..93be7349d9 100644 --- a/english/cpp/aspose.pdf.optimization/optimizationoptions/get_removeunusedobjects/_index.md +++ b/english/cpp/aspose.pdf.optimization/optimizationoptions/get_removeunusedobjects/_index.md @@ -4,7 +4,7 @@ linktitle: get_RemoveUnusedObjects second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Optimization::OptimizationOptions::get_RemoveUnusedObjects method. If this flag is set to true, all document objects will be checked and unused objects (i.e. objects which does not have any reference) are removed from document in C++.' type: docs -weight: 1100 +weight: 1200 url: /cpp/aspose.pdf.optimization/optimizationoptions/get_removeunusedobjects/ --- ## OptimizationOptions::get_RemoveUnusedObjects method diff --git a/english/cpp/aspose.pdf.optimization/optimizationoptions/get_removeunusedstreams/_index.md b/english/cpp/aspose.pdf.optimization/optimizationoptions/get_removeunusedstreams/_index.md index 452ecf358a..e4e640e0fa 100644 --- a/english/cpp/aspose.pdf.optimization/optimizationoptions/get_removeunusedstreams/_index.md +++ b/english/cpp/aspose.pdf.optimization/optimizationoptions/get_removeunusedstreams/_index.md @@ -4,7 +4,7 @@ linktitle: get_RemoveUnusedStreams second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Optimization::OptimizationOptions::get_RemoveUnusedStreams method. If this flag set to true, every resource is checked on it''s usage. If resource is never used, then resources is removed. This may decrease document size for example when pages were extracted from document in C++.' type: docs -weight: 1200 +weight: 1300 url: /cpp/aspose.pdf.optimization/optimizationoptions/get_removeunusedstreams/ --- ## OptimizationOptions::get_RemoveUnusedStreams method diff --git a/english/cpp/aspose.pdf.optimization/optimizationoptions/get_resizeimages/_index.md b/english/cpp/aspose.pdf.optimization/optimizationoptions/get_resizeimages/_index.md index a2b7bbed17..8bbdad1582 100644 --- a/english/cpp/aspose.pdf.optimization/optimizationoptions/get_resizeimages/_index.md +++ b/english/cpp/aspose.pdf.optimization/optimizationoptions/get_resizeimages/_index.md @@ -4,7 +4,7 @@ linktitle: get_ResizeImages second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Optimization::OptimizationOptions::get_ResizeImages method. If this flag set to true and CompressImages is true images will be resized if image resoultion is greater then specified MaxResolution parameter in C++.' type: docs -weight: 1300 +weight: 1400 url: /cpp/aspose.pdf.optimization/optimizationoptions/get_resizeimages/ --- ## OptimizationOptions::get_ResizeImages method diff --git a/english/cpp/aspose.pdf.optimization/optimizationoptions/get_subsetfonts/_index.md b/english/cpp/aspose.pdf.optimization/optimizationoptions/get_subsetfonts/_index.md index 3bb512517b..ca8d583cd4 100644 --- a/english/cpp/aspose.pdf.optimization/optimizationoptions/get_subsetfonts/_index.md +++ b/english/cpp/aspose.pdf.optimization/optimizationoptions/get_subsetfonts/_index.md @@ -4,7 +4,7 @@ linktitle: get_SubsetFonts second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Optimization::OptimizationOptions::get_SubsetFonts method. Fonts will be converted into subsets if set to true in C++.' type: docs -weight: 1400 +weight: 1500 url: /cpp/aspose.pdf.optimization/optimizationoptions/get_subsetfonts/ --- ## OptimizationOptions::get_SubsetFonts method diff --git a/english/cpp/aspose.pdf.optimization/optimizationoptions/get_unembedfonts/_index.md b/english/cpp/aspose.pdf.optimization/optimizationoptions/get_unembedfonts/_index.md index 46807d984f..afcb116480 100644 --- a/english/cpp/aspose.pdf.optimization/optimizationoptions/get_unembedfonts/_index.md +++ b/english/cpp/aspose.pdf.optimization/optimizationoptions/get_unembedfonts/_index.md @@ -4,7 +4,7 @@ linktitle: get_UnembedFonts second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Optimization::OptimizationOptions::get_UnembedFonts method. Make fonts not embedded if set to true in C++.' type: docs -weight: 1500 +weight: 1600 url: /cpp/aspose.pdf.optimization/optimizationoptions/get_unembedfonts/ --- ## OptimizationOptions::get_UnembedFonts method diff --git a/english/cpp/aspose.pdf.optimization/optimizationoptions/set_allowreusepagecontent/_index.md b/english/cpp/aspose.pdf.optimization/optimizationoptions/set_allowreusepagecontent/_index.md index dcb4fc1032..ec5424afee 100644 --- a/english/cpp/aspose.pdf.optimization/optimizationoptions/set_allowreusepagecontent/_index.md +++ b/english/cpp/aspose.pdf.optimization/optimizationoptions/set_allowreusepagecontent/_index.md @@ -4,7 +4,7 @@ linktitle: set_AllowReusePageContent second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Optimization::OptimizationOptions::set_AllowReusePageContent method. If true page contents will be reused when document is optimized for equal pages in C++.' type: docs -weight: 1600 +weight: 1700 url: /cpp/aspose.pdf.optimization/optimizationoptions/set_allowreusepagecontent/ --- ## OptimizationOptions::set_AllowReusePageContent method diff --git a/english/cpp/aspose.pdf.optimization/optimizationoptions/set_compressimages/_index.md b/english/cpp/aspose.pdf.optimization/optimizationoptions/set_compressimages/_index.md index a169393111..7d385319f9 100644 --- a/english/cpp/aspose.pdf.optimization/optimizationoptions/set_compressimages/_index.md +++ b/english/cpp/aspose.pdf.optimization/optimizationoptions/set_compressimages/_index.md @@ -4,7 +4,7 @@ linktitle: set_CompressImages second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Optimization::OptimizationOptions::set_CompressImages method. If this flag is set to true images will be compressed in the document. compression level is specfied with ImageQuality property in C++.' type: docs -weight: 1700 +weight: 1800 url: /cpp/aspose.pdf.optimization/optimizationoptions/set_compressimages/ --- ## OptimizationOptions::set_CompressImages method diff --git a/english/cpp/aspose.pdf.optimization/optimizationoptions/set_compressobjects/_index.md b/english/cpp/aspose.pdf.optimization/optimizationoptions/set_compressobjects/_index.md index b302d8bd22..28a8e88e1d 100644 --- a/english/cpp/aspose.pdf.optimization/optimizationoptions/set_compressobjects/_index.md +++ b/english/cpp/aspose.pdf.optimization/optimizationoptions/set_compressobjects/_index.md @@ -4,7 +4,7 @@ linktitle: set_CompressObjects second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Optimization::OptimizationOptions::set_CompressObjects method. If this flag is set to true, Pdf objects will be packed into Objest Streams and compressed to reduce pdf file size in C++.' type: docs -weight: 1800 +weight: 1900 url: /cpp/aspose.pdf.optimization/optimizationoptions/set_compressobjects/ --- ## OptimizationOptions::set_CompressObjects method diff --git a/english/cpp/aspose.pdf.optimization/optimizationoptions/set_imageencoding/_index.md b/english/cpp/aspose.pdf.optimization/optimizationoptions/set_imageencoding/_index.md index 86ec91d1c9..107e161e7a 100644 --- a/english/cpp/aspose.pdf.optimization/optimizationoptions/set_imageencoding/_index.md +++ b/english/cpp/aspose.pdf.optimization/optimizationoptions/set_imageencoding/_index.md @@ -4,7 +4,7 @@ linktitle: set_ImageEncoding second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Optimization::OptimizationOptions::set_ImageEncoding method. Image encodre which will be used in C++.' type: docs -weight: 1900 +weight: 2000 url: /cpp/aspose.pdf.optimization/optimizationoptions/set_imageencoding/ --- ## OptimizationOptions::set_ImageEncoding method diff --git a/english/cpp/aspose.pdf.optimization/optimizationoptions/set_imagequality/_index.md b/english/cpp/aspose.pdf.optimization/optimizationoptions/set_imagequality/_index.md index 56e80c106c..54d1831fa5 100644 --- a/english/cpp/aspose.pdf.optimization/optimizationoptions/set_imagequality/_index.md +++ b/english/cpp/aspose.pdf.optimization/optimizationoptions/set_imagequality/_index.md @@ -4,7 +4,7 @@ linktitle: set_ImageQuality second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Optimization::OptimizationOptions::set_ImageQuality method. Specifies level of image compression when CompressIamges flag is used in C++.' type: docs -weight: 2000 +weight: 2100 url: /cpp/aspose.pdf.optimization/optimizationoptions/set_imagequality/ --- ## OptimizationOptions::set_ImageQuality method diff --git a/english/cpp/aspose.pdf.optimization/optimizationoptions/set_linkduplcatestreams/_index.md b/english/cpp/aspose.pdf.optimization/optimizationoptions/set_linkduplcatestreams/_index.md index 4192d86b56..19dd34cc0d 100644 --- a/english/cpp/aspose.pdf.optimization/optimizationoptions/set_linkduplcatestreams/_index.md +++ b/english/cpp/aspose.pdf.optimization/optimizationoptions/set_linkduplcatestreams/_index.md @@ -2,20 +2,24 @@ title: Aspose::Pdf::Optimization::OptimizationOptions::set_LinkDuplcateStreams method linktitle: set_LinkDuplcateStreams second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Optimization::OptimizationOptions::set_LinkDuplcateStreams method. If this flag is set to true, Resource streams will be analyzed. If duplicate streams are found (i.e. if stream contents is equal), then thes streams will be stored as one object. This allows to decrease document size in some cases (for example, when same document was concatenedted multiple times) in C++.' +description: 'Aspose::Pdf::Optimization::OptimizationOptions::set_LinkDuplcateStreams method. Obsolete! Use LinkDuplicateStreams instead in C++.' type: docs -weight: 2100 +weight: 2200 url: /cpp/aspose.pdf.optimization/optimizationoptions/set_linkduplcatestreams/ --- ## OptimizationOptions::set_LinkDuplcateStreams method -If this flag is set to true, Resource streams will be analyzed. If duplicate streams are found (i.e. if stream contents is equal), then thes streams will be stored as one object. This allows to decrease document size in some cases (for example, when same document was concatenedted multiple times). +Obsolete! Use LinkDuplicateStreams instead. ```cpp void Aspose::Pdf::Optimization::OptimizationOptions::set_LinkDuplcateStreams(bool value) ``` + +## Deprecated +Use LinkDuplicateStreams instead. + ## See Also * Class [OptimizationOptions](../) diff --git a/english/cpp/aspose.pdf.optimization/optimizationoptions/set_linkduplicatestreams/_index.md b/english/cpp/aspose.pdf.optimization/optimizationoptions/set_linkduplicatestreams/_index.md new file mode 100644 index 0000000000..a87726c38f --- /dev/null +++ b/english/cpp/aspose.pdf.optimization/optimizationoptions/set_linkduplicatestreams/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Optimization::OptimizationOptions::set_LinkDuplicateStreams method +linktitle: set_LinkDuplicateStreams +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Optimization::OptimizationOptions::set_LinkDuplicateStreams method. If this flag is set to true, Resource streams will be analyzed. If duplicate streams are found (i.e. if stream contents is equal), then thes streams will be stored as one object. This allows to decrease document size in some cases (for example, when same document was concatenedted multiple times) in C++.' +type: docs +weight: 2300 +url: /cpp/aspose.pdf.optimization/optimizationoptions/set_linkduplicatestreams/ +--- +## OptimizationOptions::set_LinkDuplicateStreams method + + +If this flag is set to true, Resource streams will be analyzed. If duplicate streams are found (i.e. if stream contents is equal), then thes streams will be stored as one object. This allows to decrease document size in some cases (for example, when same document was concatenedted multiple times). + +```cpp +void Aspose::Pdf::Optimization::OptimizationOptions::set_LinkDuplicateStreams(bool value) +``` + +## See Also + +* Class [OptimizationOptions](../) +* Namespace [Aspose::Pdf::Optimization](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.optimization/optimizationoptions/set_maxresoultion/_index.md b/english/cpp/aspose.pdf.optimization/optimizationoptions/set_maxresoultion/_index.md index 09ab75ae2c..bbca3df0ab 100644 --- a/english/cpp/aspose.pdf.optimization/optimizationoptions/set_maxresoultion/_index.md +++ b/english/cpp/aspose.pdf.optimization/optimizationoptions/set_maxresoultion/_index.md @@ -4,7 +4,7 @@ linktitle: set_MaxResoultion second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Optimization::OptimizationOptions::set_MaxResoultion method. Specifies maximum resolution of images. If image has higher resolition it will be scaled in C++.' type: docs -weight: 2200 +weight: 2400 url: /cpp/aspose.pdf.optimization/optimizationoptions/set_maxresoultion/ --- ## OptimizationOptions::set_MaxResoultion method diff --git a/english/cpp/aspose.pdf.optimization/optimizationoptions/set_removeprivateinfo/_index.md b/english/cpp/aspose.pdf.optimization/optimizationoptions/set_removeprivateinfo/_index.md index 64ead3f5c3..0048df18d6 100644 --- a/english/cpp/aspose.pdf.optimization/optimizationoptions/set_removeprivateinfo/_index.md +++ b/english/cpp/aspose.pdf.optimization/optimizationoptions/set_removeprivateinfo/_index.md @@ -4,7 +4,7 @@ linktitle: set_RemovePrivateInfo second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Optimization::OptimizationOptions::set_RemovePrivateInfo method. Remove private information (page piece info) in C++.' type: docs -weight: 2300 +weight: 2500 url: /cpp/aspose.pdf.optimization/optimizationoptions/set_removeprivateinfo/ --- ## OptimizationOptions::set_RemovePrivateInfo method diff --git a/english/cpp/aspose.pdf.optimization/optimizationoptions/set_removeunusedobjects/_index.md b/english/cpp/aspose.pdf.optimization/optimizationoptions/set_removeunusedobjects/_index.md index 0bc2e3e51d..3e683053bb 100644 --- a/english/cpp/aspose.pdf.optimization/optimizationoptions/set_removeunusedobjects/_index.md +++ b/english/cpp/aspose.pdf.optimization/optimizationoptions/set_removeunusedobjects/_index.md @@ -4,7 +4,7 @@ linktitle: set_RemoveUnusedObjects second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Optimization::OptimizationOptions::set_RemoveUnusedObjects method. If this flag is set to true, all document objects will be checked and unused objects (i.e. objects which does not have any reference) are removed from document in C++.' type: docs -weight: 2400 +weight: 2600 url: /cpp/aspose.pdf.optimization/optimizationoptions/set_removeunusedobjects/ --- ## OptimizationOptions::set_RemoveUnusedObjects method diff --git a/english/cpp/aspose.pdf.optimization/optimizationoptions/set_removeunusedstreams/_index.md b/english/cpp/aspose.pdf.optimization/optimizationoptions/set_removeunusedstreams/_index.md index d3366e93a9..4a2a15cced 100644 --- a/english/cpp/aspose.pdf.optimization/optimizationoptions/set_removeunusedstreams/_index.md +++ b/english/cpp/aspose.pdf.optimization/optimizationoptions/set_removeunusedstreams/_index.md @@ -4,7 +4,7 @@ linktitle: set_RemoveUnusedStreams second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Optimization::OptimizationOptions::set_RemoveUnusedStreams method. If this flag set to true, every resource is checked on it''s usage. If resource is never used, then resources is removed. This may decrease document size for example when pages were extracted from document in C++.' type: docs -weight: 2500 +weight: 2700 url: /cpp/aspose.pdf.optimization/optimizationoptions/set_removeunusedstreams/ --- ## OptimizationOptions::set_RemoveUnusedStreams method diff --git a/english/cpp/aspose.pdf.optimization/optimizationoptions/set_resizeimages/_index.md b/english/cpp/aspose.pdf.optimization/optimizationoptions/set_resizeimages/_index.md index 17cc2fdcc3..770a52434b 100644 --- a/english/cpp/aspose.pdf.optimization/optimizationoptions/set_resizeimages/_index.md +++ b/english/cpp/aspose.pdf.optimization/optimizationoptions/set_resizeimages/_index.md @@ -4,7 +4,7 @@ linktitle: set_ResizeImages second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Optimization::OptimizationOptions::set_ResizeImages method. If this flag set to true and CompressImages is true images will be resized if image resoultion is greater then specified MaxResolution parameter in C++.' type: docs -weight: 2600 +weight: 2800 url: /cpp/aspose.pdf.optimization/optimizationoptions/set_resizeimages/ --- ## OptimizationOptions::set_ResizeImages method diff --git a/english/cpp/aspose.pdf.optimization/optimizationoptions/set_subsetfonts/_index.md b/english/cpp/aspose.pdf.optimization/optimizationoptions/set_subsetfonts/_index.md index 8eff094e12..0e4df68231 100644 --- a/english/cpp/aspose.pdf.optimization/optimizationoptions/set_subsetfonts/_index.md +++ b/english/cpp/aspose.pdf.optimization/optimizationoptions/set_subsetfonts/_index.md @@ -4,7 +4,7 @@ linktitle: set_SubsetFonts second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Optimization::OptimizationOptions::set_SubsetFonts method. Fonts will be converted into subsets if set to true in C++.' type: docs -weight: 2700 +weight: 2900 url: /cpp/aspose.pdf.optimization/optimizationoptions/set_subsetfonts/ --- ## OptimizationOptions::set_SubsetFonts method diff --git a/english/cpp/aspose.pdf.optimization/optimizationoptions/set_unembedfonts/_index.md b/english/cpp/aspose.pdf.optimization/optimizationoptions/set_unembedfonts/_index.md index 651e1dbe88..01ceab10c9 100644 --- a/english/cpp/aspose.pdf.optimization/optimizationoptions/set_unembedfonts/_index.md +++ b/english/cpp/aspose.pdf.optimization/optimizationoptions/set_unembedfonts/_index.md @@ -4,7 +4,7 @@ linktitle: set_UnembedFonts second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Optimization::OptimizationOptions::set_UnembedFonts method. Make fonts not embedded if set to true in C++.' type: docs -weight: 2800 +weight: 3000 url: /cpp/aspose.pdf.optimization/optimizationoptions/set_unembedfonts/ --- ## OptimizationOptions::set_UnembedFonts method diff --git a/english/cpp/aspose.pdf.pdfaoptionclasses/_index.md b/english/cpp/aspose.pdf.pdfaoptionclasses/_index.md index cb47f2967a..c0826d76ea 100644 --- a/english/cpp/aspose.pdf.pdfaoptionclasses/_index.md +++ b/english/cpp/aspose.pdf.pdfaoptionclasses/_index.md @@ -4,7 +4,7 @@ linktitle: Aspose::Pdf::PdfAOptionClasses second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::PdfAOptionClasses namespace in C++.' type: docs -weight: 2000 +weight: 2100 url: /cpp/aspose.pdf.pdfaoptionclasses/ --- diff --git a/english/cpp/aspose.pdf.pdftomarkdown/_index.md b/english/cpp/aspose.pdf.pdftomarkdown/_index.md index d689c605e2..21e492a738 100644 --- a/english/cpp/aspose.pdf.pdftomarkdown/_index.md +++ b/english/cpp/aspose.pdf.pdftomarkdown/_index.md @@ -4,7 +4,7 @@ linktitle: Aspose::Pdf::PdfToMarkdown second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::PdfToMarkdown namespace in C++.' type: docs -weight: 2100 +weight: 2200 url: /cpp/aspose.pdf.pdftomarkdown/ --- diff --git a/english/cpp/aspose.pdf.pdftomarkdown/markdownsaveoptions/_index.md b/english/cpp/aspose.pdf.pdftomarkdown/markdownsaveoptions/_index.md index 8b22084994..74067103bb 100644 --- a/english/cpp/aspose.pdf.pdftomarkdown/markdownsaveoptions/_index.md +++ b/english/cpp/aspose.pdf.pdftomarkdown/markdownsaveoptions/_index.md @@ -41,12 +41,6 @@ class MarkdownSaveOptions : public Aspose::Pdf::UnifiedSaveOptions | [set_ResourcesDirectoryName](./set_resourcesdirectoryname/)(System::String) | Gets and sets the directory name to save document resources such as images. If the value is not specified, then the images will be written to the same directory as the markdown file itself. This is not path, it is only name! This directory will be automatically created in the directory with the saved markdown file. | | [set_SubscriptAndSuperscriptConversion](./set_subscriptandsuperscriptconversion/)(bool) | Gets ans sets allowance to convert subscript and superscript. This value is true by default. | | [set_UseImageHtmlTag](./set_useimagehtmltag/)(bool) | Gets and sets allowance to use of an img tag to insert images to the left and right of the text. In this case, in the markdown viewer, the text will wrap around the image. | -## Fields - -| Field | Description | -| --- | --- | -| [IsMultiThreading](../../aspose.pdf/unifiedsaveoptions/ismultithreading/) | Process pages in few threads. | -| [TryMergeAdjacentSameBackgroundImages](../../aspose.pdf/unifiedsaveoptions/trymergeadjacentsamebackgroundimages/) | Sometimes PDFs contain background images (of pages or table cells) constructed from several same tiling background images put one near other. In such case renderers of target formats (f.e MsWord for DOCS format) sometimes generates visible boundaries beetween parts of background images, cause their techniques of image edge smoothing (anti-aliasing) is different from Acrobat Reader. If it looks like exported document contains such visible boundaries between parts of same background images, please try use this setting to get rid of that unwanted effect. ATTENTION! This optimization of quality usually essentially slows down conversion, so, please, use this option only when it's really necessary. | ## See Also * Class [UnifiedSaveOptions](../../aspose.pdf/unifiedsaveoptions/) diff --git a/english/cpp/aspose.pdf.sanitization/_index.md b/english/cpp/aspose.pdf.sanitization/_index.md index d6449636f0..c12610de2c 100644 --- a/english/cpp/aspose.pdf.sanitization/_index.md +++ b/english/cpp/aspose.pdf.sanitization/_index.md @@ -4,7 +4,7 @@ linktitle: Aspose::Pdf::Sanitization second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::Sanitization namespace in C++.' type: docs -weight: 2200 +weight: 2300 url: /cpp/aspose.pdf.sanitization/ --- diff --git a/english/cpp/aspose.pdf.security/_index.md b/english/cpp/aspose.pdf.security/_index.md new file mode 100644 index 0000000000..7e180f494d --- /dev/null +++ b/english/cpp/aspose.pdf.security/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Security namespace +linktitle: Aspose::Pdf::Security +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Security namespace in C++.' +type: docs +weight: 2400 +url: /cpp/aspose.pdf.security/ +--- + + + +## Classes + +| Class | Description | +| --- | --- | +| [DsaAlgorithmInfo](./dsaalgorithminfo/) | Represents a class for the information about the DSA signature algorithm. | +| [EcdsaAlgorithmInfo](./ecdsaalgorithminfo/) | Represents a class for the information about the ECDSA signature algorithm. | +| [KeyedSignatureAlgorithmInfo](./keyedsignaturealgorithminfo/) | Represents a class for information about a keyed signature algorithm. | +| [RsaAlgorithmInfo](./rsaalgorithminfo/) | Represents a class for the information about the RSA signature algorithm. | +| [SignatureAlgorithmInfo](./signaturealgorithminfo/) | Represents a class for information about a signature algorithm, including its type, cryptographic standard, and digest hash algorithm. | +| [TimestampAlgorithmInfo](./timestampalgorithminfo/) | Represents a class for the information about the timestamp signature algorithm. | +| [UnknownSignatureAlgorithmInfo](./unknownsignaturealgorithminfo/) | Represents a class for the unknown signature algorithm information. | +## Enums + +| Enum | Description | +| --- | --- | +| [CryptographicStandard](./cryptographicstandard/) | Represents the available cryptographic standards for securing PDF documents. | +| [SignatureAlgorithmType](./signaturealgorithmtype/) | Enumerates the types of signature algorithms used for digital signatures. | diff --git a/english/cpp/aspose.pdf.security/cryptographicstandard/_index.md b/english/cpp/aspose.pdf.security/cryptographicstandard/_index.md new file mode 100644 index 0000000000..4d36888f83 --- /dev/null +++ b/english/cpp/aspose.pdf.security/cryptographicstandard/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Security::CryptographicStandard enum +linktitle: CryptographicStandard +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Security::CryptographicStandard enum. Represents the available cryptographic standards for securing PDF documents in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.security/cryptographicstandard/ +--- +## CryptographicStandard enum + + +Represents the available cryptographic standards for securing PDF documents. + +```cpp +enum class CryptographicStandard +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Pkcs1 | 0 | Public-Key Cryptography Standards (PKCS) #1. | +| Pkcs7 | 1 | Public-Key Cryptography Standards (PKCS) #7. | +| Rfc3161 | 2 | Public Key Infrastructure Time-Stamp Protocol (TSP, rfc3161). | + +## See Also + +* Namespace [Aspose::Pdf::Security](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.security/dsaalgorithminfo/_index.md b/english/cpp/aspose.pdf.security/dsaalgorithminfo/_index.md new file mode 100644 index 0000000000..31481525c8 --- /dev/null +++ b/english/cpp/aspose.pdf.security/dsaalgorithminfo/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Security::DsaAlgorithmInfo class +linktitle: DsaAlgorithmInfo +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Security::DsaAlgorithmInfo class. Represents a class for the information about the DSA signature algorithm in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.security/dsaalgorithminfo/ +--- +## DsaAlgorithmInfo class + + +Represents a class for the information about the DSA signature algorithm. + +```cpp +class DsaAlgorithmInfo : public Aspose::Pdf::Security::KeyedSignatureAlgorithmInfo +``` + +## See Also + +* Class [KeyedSignatureAlgorithmInfo](../keyedsignaturealgorithminfo/) +* Namespace [Aspose::Pdf::Security](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.security/ecdsaalgorithminfo/_index.md b/english/cpp/aspose.pdf.security/ecdsaalgorithminfo/_index.md new file mode 100644 index 0000000000..96811d3016 --- /dev/null +++ b/english/cpp/aspose.pdf.security/ecdsaalgorithminfo/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Security::EcdsaAlgorithmInfo class +linktitle: EcdsaAlgorithmInfo +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Security::EcdsaAlgorithmInfo class. Represents a class for the information about the ECDSA signature algorithm in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.security/ecdsaalgorithminfo/ +--- +## EcdsaAlgorithmInfo class + + +Represents a class for the information about the ECDSA signature algorithm. + +```cpp +class EcdsaAlgorithmInfo : public Aspose::Pdf::Security::KeyedSignatureAlgorithmInfo +``` + +## See Also + +* Class [KeyedSignatureAlgorithmInfo](../keyedsignaturealgorithminfo/) +* Namespace [Aspose::Pdf::Security](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.security/keyedsignaturealgorithminfo/_index.md b/english/cpp/aspose.pdf.security/keyedsignaturealgorithminfo/_index.md new file mode 100644 index 0000000000..ae4dd19702 --- /dev/null +++ b/english/cpp/aspose.pdf.security/keyedsignaturealgorithminfo/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Security::KeyedSignatureAlgorithmInfo class +linktitle: KeyedSignatureAlgorithmInfo +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Security::KeyedSignatureAlgorithmInfo class. Represents a class for information about a keyed signature algorithm in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.security/keyedsignaturealgorithminfo/ +--- +## KeyedSignatureAlgorithmInfo class + + +Represents a class for information about a keyed signature algorithm. + +```cpp +class KeyedSignatureAlgorithmInfo : public Aspose::Pdf::Security::SignatureAlgorithmInfo +``` + +## See Also + +* Class [SignatureAlgorithmInfo](../signaturealgorithminfo/) +* Namespace [Aspose::Pdf::Security](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.security/rsaalgorithminfo/_index.md b/english/cpp/aspose.pdf.security/rsaalgorithminfo/_index.md new file mode 100644 index 0000000000..ab8c30b987 --- /dev/null +++ b/english/cpp/aspose.pdf.security/rsaalgorithminfo/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Security::RsaAlgorithmInfo class +linktitle: RsaAlgorithmInfo +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Security::RsaAlgorithmInfo class. Represents a class for the information about the RSA signature algorithm in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.security/rsaalgorithminfo/ +--- +## RsaAlgorithmInfo class + + +Represents a class for the information about the RSA signature algorithm. + +```cpp +class RsaAlgorithmInfo : public Aspose::Pdf::Security::KeyedSignatureAlgorithmInfo +``` + +## See Also + +* Class [KeyedSignatureAlgorithmInfo](../keyedsignaturealgorithminfo/) +* Namespace [Aspose::Pdf::Security](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.security/signaturealgorithminfo/_index.md b/english/cpp/aspose.pdf.security/signaturealgorithminfo/_index.md new file mode 100644 index 0000000000..8005b3d06e --- /dev/null +++ b/english/cpp/aspose.pdf.security/signaturealgorithminfo/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Security::SignatureAlgorithmInfo class +linktitle: SignatureAlgorithmInfo +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Security::SignatureAlgorithmInfo class. Represents a class for information about a signature algorithm, including its type, cryptographic standard, and digest hash algorithm in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.security/signaturealgorithminfo/ +--- +## SignatureAlgorithmInfo class + + +Represents a class for information about a signature algorithm, including its type, cryptographic standard, and digest hash algorithm. + +```cpp +class SignatureAlgorithmInfo : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_SignatureName](./get_signaturename/)() const | Gets the name of the signature field. | +| [ToString](./tostring/)() const override | Converts the current information object to its string representation. | +## See Also + +* Class [Object](../../system/object/) +* Namespace [Aspose::Pdf::Security](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.security/signaturealgorithminfo/get_signaturename/_index.md b/english/cpp/aspose.pdf.security/signaturealgorithminfo/get_signaturename/_index.md new file mode 100644 index 0000000000..5164d2de9e --- /dev/null +++ b/english/cpp/aspose.pdf.security/signaturealgorithminfo/get_signaturename/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Security::SignatureAlgorithmInfo::get_SignatureName method +linktitle: get_SignatureName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Security::SignatureAlgorithmInfo::get_SignatureName method. Gets the name of the signature field in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.security/signaturealgorithminfo/get_signaturename/ +--- +## SignatureAlgorithmInfo::get_SignatureName method + + +Gets the name of the signature field. + +```cpp +System::String Aspose::Pdf::Security::SignatureAlgorithmInfo::get_SignatureName() const +``` + +## See Also + +* Class [String](../../../system/string/) +* Class [SignatureAlgorithmInfo](../) +* Namespace [Aspose::Pdf::Security](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.security/signaturealgorithminfo/tostring/_index.md b/english/cpp/aspose.pdf.security/signaturealgorithminfo/tostring/_index.md new file mode 100644 index 0000000000..2f9a0d22fc --- /dev/null +++ b/english/cpp/aspose.pdf.security/signaturealgorithminfo/tostring/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::Security::SignatureAlgorithmInfo::ToString method +linktitle: ToString +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Security::SignatureAlgorithmInfo::ToString method. Converts the current information object to its string representation in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.security/signaturealgorithminfo/tostring/ +--- +## SignatureAlgorithmInfo::ToString method + + +Converts the current information object to its string representation. + +```cpp +System::String Aspose::Pdf::Security::SignatureAlgorithmInfo::ToString() const override +``` + + +### ReturnValue + +A string that represents the current information object. + +## See Also + +* Class [String](../../../system/string/) +* Class [SignatureAlgorithmInfo](../) +* Namespace [Aspose::Pdf::Security](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.security/signaturealgorithmtype/_index.md b/english/cpp/aspose.pdf.security/signaturealgorithmtype/_index.md new file mode 100644 index 0000000000..f685877da0 --- /dev/null +++ b/english/cpp/aspose.pdf.security/signaturealgorithmtype/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Security::SignatureAlgorithmType enum +linktitle: SignatureAlgorithmType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Security::SignatureAlgorithmType enum. Enumerates the types of signature algorithms used for digital signatures in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.security/signaturealgorithmtype/ +--- +## SignatureAlgorithmType enum + + +Enumerates the types of signature algorithms used for digital signatures. + +```cpp +enum class SignatureAlgorithmType +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Ecdsa | 0 | The Elliptic Curve Digital Signature Algorithm (ECDSA) used for digital signatures. | +| Rsa | 1 | The Rivest–Shamir–Adleman (RSA) algorithm used for digital signatures. | +| Dsa | 2 | The Digital Signature Algorithm (DSA) used for digital signatures. | +| Timestamp | 3 | The Timestamp used as a signature algorithm to ensure the digital signatures. | +| Unknown | 4 | Indicates that the signature algorithm type is unknown. | + +## See Also + +* Namespace [Aspose::Pdf::Security](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.security/timestampalgorithminfo/_index.md b/english/cpp/aspose.pdf.security/timestampalgorithminfo/_index.md new file mode 100644 index 0000000000..6108ecf248 --- /dev/null +++ b/english/cpp/aspose.pdf.security/timestampalgorithminfo/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Security::TimestampAlgorithmInfo class +linktitle: TimestampAlgorithmInfo +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Security::TimestampAlgorithmInfo class. Represents a class for the information about the timestamp signature algorithm in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.security/timestampalgorithminfo/ +--- +## TimestampAlgorithmInfo class + + +Represents a class for the information about the timestamp signature algorithm. + +```cpp +class TimestampAlgorithmInfo : public Aspose::Pdf::Security::SignatureAlgorithmInfo +``` + +## See Also + +* Class [SignatureAlgorithmInfo](../signaturealgorithminfo/) +* Namespace [Aspose::Pdf::Security](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.security/unknownsignaturealgorithminfo/_index.md b/english/cpp/aspose.pdf.security/unknownsignaturealgorithminfo/_index.md new file mode 100644 index 0000000000..d827b4fda4 --- /dev/null +++ b/english/cpp/aspose.pdf.security/unknownsignaturealgorithminfo/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Security::UnknownSignatureAlgorithmInfo class +linktitle: UnknownSignatureAlgorithmInfo +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Security::UnknownSignatureAlgorithmInfo class. Represents a class for the unknown signature algorithm information in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.security/unknownsignaturealgorithminfo/ +--- +## UnknownSignatureAlgorithmInfo class + + +Represents a class for the unknown signature algorithm information. + +```cpp +class UnknownSignatureAlgorithmInfo : public Aspose::Pdf::Security::SignatureAlgorithmInfo +``` + +## See Also + +* Class [SignatureAlgorithmInfo](../signaturealgorithminfo/) +* Namespace [Aspose::Pdf::Security](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.structure/_index.md b/english/cpp/aspose.pdf.structure/_index.md index b075b6b2e2..69b08a25dc 100644 --- a/english/cpp/aspose.pdf.structure/_index.md +++ b/english/cpp/aspose.pdf.structure/_index.md @@ -4,7 +4,7 @@ linktitle: Aspose::Pdf::Structure second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::Structure namespace in C++.' type: docs -weight: 2300 +weight: 2500 url: /cpp/aspose.pdf.structure/ --- diff --git a/english/cpp/aspose.pdf.tagged/_index.md b/english/cpp/aspose.pdf.tagged/_index.md index 6a353782b9..cfeacbdece 100644 --- a/english/cpp/aspose.pdf.tagged/_index.md +++ b/english/cpp/aspose.pdf.tagged/_index.md @@ -4,7 +4,7 @@ linktitle: Aspose::Pdf::Tagged second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::Tagged namespace in C++.' type: docs -weight: 2400 +weight: 2600 url: /cpp/aspose.pdf.tagged/ --- diff --git a/english/cpp/aspose.pdf.text/_index.md b/english/cpp/aspose.pdf.text/_index.md index eef5e145d3..f4a1b9acc9 100644 --- a/english/cpp/aspose.pdf.text/_index.md +++ b/english/cpp/aspose.pdf.text/_index.md @@ -4,7 +4,7 @@ linktitle: Aspose::Pdf::Text second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::Text namespace in C++.' type: docs -weight: 2500 +weight: 2700 url: /cpp/aspose.pdf.text/ --- diff --git a/english/cpp/aspose.pdf.text/textfragmentstate/_index.md b/english/cpp/aspose.pdf.text/textfragmentstate/_index.md index 60142df5db..9ebe6ece9b 100644 --- a/english/cpp/aspose.pdf.text/textfragmentstate/_index.md +++ b/english/cpp/aspose.pdf.text/textfragmentstate/_index.md @@ -68,12 +68,6 @@ class TextFragmentState : public Aspose::Pdf::Text::TextState | [set_Underline](./set_underline/)(bool) override | Sets underline for the text, represented by the [TextFragment](../textfragment/) object. | | [set_WordSpacing](./set_wordspacing/)(float) override | Sets word spacing of the text. | | [TextFragmentState](./textfragmentstate/)(System::SharedPtr\) | Initializes new instance of the [TextFragmentState](./) object with specified [TextFragment](../textfragment/) object. This [TextFragmentState](./) initialization is not supported. [TextFragmentState](./) is only available with [TextFragment::TextState](../) property. | -## Fields - -| Field | Description | -| --- | --- | -| [TabstopDefaultValue](../textstate/tabstopdefaultvalue/) | Default value of tabulation in widths of space character of default font. | -| [TabTag](../textstate/tabtag/) | You can place this tag in text to declare tabulation. | ## Remarks diff --git a/english/cpp/aspose.pdf.text/textstate/_index.md b/english/cpp/aspose.pdf.text/textstate/_index.md index c2b6754e5f..b6e38c6ab7 100644 --- a/english/cpp/aspose.pdf.text/textstate/_index.md +++ b/english/cpp/aspose.pdf.text/textstate/_index.md @@ -66,12 +66,6 @@ class TextState : public System::Object | [TextState](./textstate/)(System::String) | Creates text state object with font family specification. | | [TextState](./textstate/)(System::String, bool, bool) | Creates text state object with font family and font style specification. | | [TextState](./textstate/)(System::String, double) | Creates text state object with font family and font size specification. | -## Fields - -| Field | Description | -| --- | --- | -| [TabstopDefaultValue](./tabstopdefaultvalue/) | Default value of tabulation in widths of space character of default font. | -| [TabTag](./tabtag/) | You can place this tag in text to declare tabulation. | ## See Also * Class [Object](../../system/object/) diff --git a/english/cpp/aspose.pdf.text/unicodesubstitution/_index.md b/english/cpp/aspose.pdf.text/unicodesubstitution/_index.md index 476250346e..1b3ab698b4 100644 --- a/english/cpp/aspose.pdf.text/unicodesubstitution/_index.md +++ b/english/cpp/aspose.pdf.text/unicodesubstitution/_index.md @@ -23,12 +23,6 @@ class UnicodeSubstitution : public System::Object, | --- | --- | | [UnicodeSubstitution](./unicodesubstitution/)(char16_t, char16_t) | Creates character code substitution struct. | | [UnicodeSubstitution](./unicodesubstitution/)() | | -## Fields - -| Field | Description | -| --- | --- | -| [OriginalCode](./originalcode/) | Represents original character unicode. | -| [SubstitutionCode](./substitutioncode/) | Represents character unicode that substitutes original unicode. | ## Remarks diff --git a/english/cpp/aspose.pdf.utils.publicdata/_index.md b/english/cpp/aspose.pdf.utils.publicdata/_index.md index 91eefb7f8f..a61dbabe4d 100644 --- a/english/cpp/aspose.pdf.utils.publicdata/_index.md +++ b/english/cpp/aspose.pdf.utils.publicdata/_index.md @@ -4,7 +4,7 @@ linktitle: Aspose::Pdf::Utils::PublicData second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::Utils::PublicData namespace in C++.' type: docs -weight: 2700 +weight: 2900 url: /cpp/aspose.pdf.utils.publicdata/ --- diff --git a/english/cpp/aspose.pdf.utils.publicdata/cospdfboolean/_index.md b/english/cpp/aspose.pdf.utils.publicdata/cospdfboolean/_index.md index dcaa59e3ab..4390a5c252 100644 --- a/english/cpp/aspose.pdf.utils.publicdata/cospdfboolean/_index.md +++ b/english/cpp/aspose.pdf.utils.publicdata/cospdfboolean/_index.md @@ -21,7 +21,7 @@ class CosPdfBoolean : public Aspose::Pdf::Utils::PublicData::CosPdfPrimitive | Method | Description | | --- | --- | | [CosPdfBoolean](./cospdfboolean/)(bool) | Initializes a new instance of the [PdfBoolean](../) class. | -| [Equals](./equals/)(System::SharedPtr\) override | // | +| [Equals](./equals/)(System::SharedPtr\) override | Determines that the specified object is equal to the current object. | | [get_Value](./get_value/)() const | Gets the value. | | [GetHashCode](./gethashcode/)() const override | Get hashcode for current object. | | [ToCosPdfBoolean](./tocospdfboolean/)() override | Tries cast this instance to [CosPdfBoolean](./). | diff --git a/english/cpp/aspose.pdf.utils.publicdata/cospdfboolean/equals/_index.md b/english/cpp/aspose.pdf.utils.publicdata/cospdfboolean/equals/_index.md index 3f3e643d4c..1ababe322d 100644 --- a/english/cpp/aspose.pdf.utils.publicdata/cospdfboolean/equals/_index.md +++ b/english/cpp/aspose.pdf.utils.publicdata/cospdfboolean/equals/_index.md @@ -2,7 +2,7 @@ title: Aspose::Pdf::Utils::PublicData::CosPdfBoolean::Equals method linktitle: Equals second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Utils::PublicData::CosPdfBoolean::Equals method. // in C++.' +description: 'Aspose::Pdf::Utils::PublicData::CosPdfBoolean::Equals method. Determines that the specified object is equal to the current object in C++.' type: docs weight: 200 url: /cpp/aspose.pdf.utils.publicdata/cospdfboolean/equals/ @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf.utils.publicdata/cospdfboolean/equals/ ## CosPdfBoolean::Equals method -// +Determines that the specified object is equal to the current object. ```cpp bool Aspose::Pdf::Utils::PublicData::CosPdfBoolean::Equals(System::SharedPtr obj) override @@ -19,15 +19,11 @@ bool Aspose::Pdf::Utils::PublicData::CosPdfBoolean::Equals(System::SharedPtr | The object to compare with current object | +| obj | System::SharedPtr\ | The object to compare with current object. | ### ReturnValue -true if specified object is equal to the current object; otherwise, false. -## Remarks - - -Determines that the specified object is equal to the current object. +True if specified object is equal to the current object; otherwise, false. ## See Also diff --git a/english/cpp/aspose.pdf.utils.publicdata/cospdfnumber/_index.md b/english/cpp/aspose.pdf.utils.publicdata/cospdfnumber/_index.md index 432d7ac164..baff3c8460 100644 --- a/english/cpp/aspose.pdf.utils.publicdata/cospdfnumber/_index.md +++ b/english/cpp/aspose.pdf.utils.publicdata/cospdfnumber/_index.md @@ -22,7 +22,7 @@ class CosPdfNumber : public Aspose::Pdf::Utils::PublicData::CosPdfPrimitive | --- | --- | | [CosPdfNumber](./cospdfnumber/)() | Initializes a new instance of the [CosPdfNumber](./) class. | | [CosPdfNumber](./cospdfnumber/)(double) | Initializes a new instance of the [CosPdfNumber](./) class. | -| [Equals](./equals/)(System::SharedPtr\) override | // | +| [Equals](./equals/)(System::SharedPtr\) override | Determines that the specified object is equal to the current object. | | [get_Value](./get_value/)() const | Gets the value. | | [GetHashCode](./gethashcode/)() const override | Get hashcode for current object. | | [ToCosPdfNumber](./tocospdfnumber/)() override | Tries cast this instance to [CosPdfNumber](./). | diff --git a/english/cpp/aspose.pdf.utils.publicdata/cospdfnumber/equals/_index.md b/english/cpp/aspose.pdf.utils.publicdata/cospdfnumber/equals/_index.md index ec18b77f46..1573f86c16 100644 --- a/english/cpp/aspose.pdf.utils.publicdata/cospdfnumber/equals/_index.md +++ b/english/cpp/aspose.pdf.utils.publicdata/cospdfnumber/equals/_index.md @@ -2,7 +2,7 @@ title: Aspose::Pdf::Utils::PublicData::CosPdfNumber::Equals method linktitle: Equals second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Utils::PublicData::CosPdfNumber::Equals method. // in C++.' +description: 'Aspose::Pdf::Utils::PublicData::CosPdfNumber::Equals method. Determines that the specified object is equal to the current object in C++.' type: docs weight: 200 url: /cpp/aspose.pdf.utils.publicdata/cospdfnumber/equals/ @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf.utils.publicdata/cospdfnumber/equals/ ## CosPdfNumber::Equals method -// +Determines that the specified object is equal to the current object. ```cpp bool Aspose::Pdf::Utils::PublicData::CosPdfNumber::Equals(System::SharedPtr obj) override @@ -19,15 +19,11 @@ bool Aspose::Pdf::Utils::PublicData::CosPdfNumber::Equals(System::SharedPtr | The object to compare with current object | +| obj | System::SharedPtr\ | The object to compare with current object. | ### ReturnValue -true if specified object is equal to the current object; otherwise, false. -## Remarks - - -Determines that the specified object is equal to the current object. +True if specified object is equal to the current object; otherwise, false. ## See Also diff --git a/english/cpp/aspose.pdf.utils.publicdata/cospdfstring/_index.md b/english/cpp/aspose.pdf.utils.publicdata/cospdfstring/_index.md index cec84573dd..0ff73778db 100644 --- a/english/cpp/aspose.pdf.utils.publicdata/cospdfstring/_index.md +++ b/english/cpp/aspose.pdf.utils.publicdata/cospdfstring/_index.md @@ -22,7 +22,7 @@ class CosPdfString : public Aspose::Pdf::Utils::PublicData::CosPdfPrimitive | --- | --- | | [CosPdfString](./cospdfstring/)(System::String) | Initializes a new instance of the [CosPdfString](./) class. | | [CosPdfString](./cospdfstring/)(System::String, bool) | Initializes a new instance of the [CosPdfString](./) class. | -| [Equals](./equals/)(System::SharedPtr\) override | // | +| [Equals](./equals/)(System::SharedPtr\) override | Determines that the specified object is equal to the current object. | | [get_IsHexadecimal](./get_ishexadecimal/)() const | Gets a value indicating whether this instance is hexadecimal. | | [get_Value](./get_value/)() const | Gets the string (ANSII). | | [GetHashCode](./gethashcode/)() const override | Get hashcode for current object. | diff --git a/english/cpp/aspose.pdf.utils.publicdata/cospdfstring/equals/_index.md b/english/cpp/aspose.pdf.utils.publicdata/cospdfstring/equals/_index.md index 1a19874fbd..bfa1cb4a43 100644 --- a/english/cpp/aspose.pdf.utils.publicdata/cospdfstring/equals/_index.md +++ b/english/cpp/aspose.pdf.utils.publicdata/cospdfstring/equals/_index.md @@ -2,7 +2,7 @@ title: Aspose::Pdf::Utils::PublicData::CosPdfString::Equals method linktitle: Equals second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Utils::PublicData::CosPdfString::Equals method. // in C++.' +description: 'Aspose::Pdf::Utils::PublicData::CosPdfString::Equals method. Determines that the specified object is equal to the current object in C++.' type: docs weight: 200 url: /cpp/aspose.pdf.utils.publicdata/cospdfstring/equals/ @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf.utils.publicdata/cospdfstring/equals/ ## CosPdfString::Equals method -// +Determines that the specified object is equal to the current object. ```cpp bool Aspose::Pdf::Utils::PublicData::CosPdfString::Equals(System::SharedPtr obj) override @@ -19,15 +19,11 @@ bool Aspose::Pdf::Utils::PublicData::CosPdfString::Equals(System::SharedPtr | The object to compare with current object | +| obj | System::SharedPtr\ | The object to compare with current object. | ### ReturnValue -true if specified object is equal to the current object; otherwise, false. -## Remarks - - -Determines that the specified object is equal to the current object. +True if specified object is equal to the current object; otherwise, false. ## See Also diff --git a/english/cpp/aspose.pdf.utils/_index.md b/english/cpp/aspose.pdf.utils/_index.md index bee4b20682..25e913e907 100644 --- a/english/cpp/aspose.pdf.utils/_index.md +++ b/english/cpp/aspose.pdf.utils/_index.md @@ -4,7 +4,7 @@ linktitle: Aspose::Pdf::Utils second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::Utils namespace in C++.' type: docs -weight: 2600 +weight: 2800 url: /cpp/aspose.pdf.utils/ --- diff --git a/english/cpp/aspose.pdf.vector.extraction/_index.md b/english/cpp/aspose.pdf.vector.extraction/_index.md index 3a0c8e4bed..8b7ddbed84 100644 --- a/english/cpp/aspose.pdf.vector.extraction/_index.md +++ b/english/cpp/aspose.pdf.vector.extraction/_index.md @@ -4,7 +4,7 @@ linktitle: Aspose::Pdf::Vector::Extraction second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::Vector::Extraction namespace in C++.' type: docs -weight: 2900 +weight: 3100 url: /cpp/aspose.pdf.vector.extraction/ --- diff --git a/english/cpp/aspose.pdf.vector/_index.md b/english/cpp/aspose.pdf.vector/_index.md index a7b6c56ab9..3de8884332 100644 --- a/english/cpp/aspose.pdf.vector/_index.md +++ b/english/cpp/aspose.pdf.vector/_index.md @@ -2,13 +2,13 @@ title: Aspose::Pdf::Vector namespace linktitle: Aspose::Pdf::Vector second_title: Aspose.PDF for C++ API Reference -description: 'How to use Aspose::Pdf::Vector namespace in C++.' +description: 'Aspose::Pdf::Vector namespace. The Aspose.Pdf.Vector is a root namespace for graphics operations in C++.' type: docs -weight: 2800 +weight: 3000 url: /cpp/aspose.pdf.vector/ --- - +The **[Aspose.Pdf.Vector](./)** is a root namespace for graphics operations. ## Classes @@ -18,6 +18,5 @@ url: /cpp/aspose.pdf.vector/ | [GraphicElementCollection](./graphicelementcollection/) | Represents [GraphicElement](./graphicelement/) collection. | | [GraphicsAbsorber](./graphicsabsorber/) | Represents an absorber object of graphics elements. Performs graphics search and provides access to search results via [GraphicsAbsorber::Elements](../) collection. | | [GraphicState](./graphicstate/) | Represents graphic state of the current [GraphicElement](./graphicelement/). | -| [NamespaceDoc](./namespacedoc/) | The **[Aspose.Pdf.Vector](./)** is a root namespace for graphics operations. | | [SubPath](./subpath/) | Represents vector graphics object on the page. Basically, vector graphics objects are represented by two groups of SubPaths. One of them is represented by a set of lines and curves. Others are presented as rectangles and can sometimes be confused. Usually it is a rectangular area that has a color, but very often this rectangle is placed at the beginning of the page and defines the entire space of the page in white. So you get the [SubPath](./subpath/), but visually you only see the text on the page. | | [XFormPlacement](./xformplacement/) | Represents [XForm](../aspose.pdf/xform/) placement. If the [XForm](../aspose.pdf/xform/) is displayed on the page more than 1 time, all XformPlacements associated with this [XForm](../aspose.pdf/xform/) will have common graphical elements, but different graphical states. | diff --git a/english/cpp/aspose.pdf.vector/subpath/_index.md b/english/cpp/aspose.pdf.vector/subpath/_index.md index b9c3c378bd..0c354e9152 100644 --- a/english/cpp/aspose.pdf.vector/subpath/_index.md +++ b/english/cpp/aspose.pdf.vector/subpath/_index.md @@ -4,7 +4,7 @@ linktitle: SubPath second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Vector::SubPath class. Represents vector graphics object on the page. Basically, vector graphics objects are represented by two groups of SubPaths. One of them is represented by a set of lines and curves. Others are presented as rectangles and can sometimes be confused. Usually it is a rectangular area that has a color, but very often this rectangle is placed at the beginning of the page and defines the entire space of the page in white. So you get the SubPath, but visually you only see the text on the page in C++.' type: docs -weight: 600 +weight: 500 url: /cpp/aspose.pdf.vector/subpath/ --- ## SubPath class diff --git a/english/cpp/aspose.pdf.vector/xformplacement/_index.md b/english/cpp/aspose.pdf.vector/xformplacement/_index.md index 11e2b1c73b..6d27394770 100644 --- a/english/cpp/aspose.pdf.vector/xformplacement/_index.md +++ b/english/cpp/aspose.pdf.vector/xformplacement/_index.md @@ -4,7 +4,7 @@ linktitle: XFormPlacement second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Vector::XFormPlacement class. Represents XForm placement. If the XForm is displayed on the page more than 1 time, all XformPlacements associated with this XForm will have common graphical elements, but different graphical states in C++.' type: docs -weight: 700 +weight: 600 url: /cpp/aspose.pdf.vector/xformplacement/ --- ## XFormPlacement class diff --git a/english/cpp/aspose.pdf.xfaconverter/_index.md b/english/cpp/aspose.pdf.xfaconverter/_index.md index 7883617c30..6eb11f67b7 100644 --- a/english/cpp/aspose.pdf.xfaconverter/_index.md +++ b/english/cpp/aspose.pdf.xfaconverter/_index.md @@ -4,7 +4,7 @@ linktitle: Aspose::Pdf::XfaConverter second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::XfaConverter namespace in C++.' type: docs -weight: 3000 +weight: 3200 url: /cpp/aspose.pdf.xfaconverter/ --- diff --git a/english/cpp/aspose.pdf/_index.md b/english/cpp/aspose.pdf/_index.md index 107a132076..fbf691de9a 100644 --- a/english/cpp/aspose.pdf/_index.md +++ b/english/cpp/aspose.pdf/_index.md @@ -125,6 +125,7 @@ url: /cpp/aspose.pdf/ | [Page](./page/) | Class representing page of PDF document. | | [PageActionCollection](./pageactioncollection/) | This class describes page actions. | | [PageCollection](./pagecollection/) | [Collection](./collection/) of PDF document pages. | +| [PageCollectionExtension](./pagecollectionextension/) | Represents the extension method for updating header and footer pagination. | | [PageInfo](./pageinfo/) | Represents the page information. | | [PageLabel](./pagelabel/) | Class representing [Page](./page/) Label range. | | [PageLabelCollection](./pagelabelcollection/) | Class represeingting page label collection. | @@ -150,6 +151,7 @@ url: /cpp/aspose.pdf/ | [PsLoadOptions](./psloadoptions/) | Represents options for loading/importing of .mht-file into pdf document. | | [PsSaveOptions](./pssaveoptions/) | Save options for export to PS (PostScript) or EPS format. | | [Rectangle](./rectangle/) | Class represents rectangle. | +| [RegexManager](./regexmanager/) | Provides a wrapper for regular expression operations with configurable timeout settings. | | [RenderingOptions](./renderingoptions/) | Represents rendering options. | | [Resources](./resources/) | Class representing page resources. | | [RgbToDeviceGrayConversionStrategy](./rgbtodevicegrayconversionstrategy/) | Represents rgb to device gray color spaces conversion strategy. | @@ -210,7 +212,7 @@ url: /cpp/aspose.pdf/ | [ConvertSoftMaskAction](./convertsoftmaskaction/) | This action represents actions for conversion of images with soft mask. | | [ConvertTransparencyAction](./converttransparencyaction/) | This class represents action for conversion of transparency. | | [CryptoAlgorithm](./cryptoalgorithm/) | Represent type of cryptographic algorithm that used in encryption/decryption routines. | -| [DigestHashAlgorithm](./digesthashalgorithm/) | Represent type of algoritm that maps data to a "hash". | +| [DigestHashAlgorithm](./digesthashalgorithm/) | Represent type of algorithm that maps data to a "hash". | | [Direction](./direction/) | [Text](../aspose.pdf.text/) direction. | | [EditionType](./editiontype/) | Specifies the edition type of the license. | | [ExtendedBoolean](./extendedboolean/) | Represents boolean type that supports Undefined value. | diff --git a/english/cpp/aspose.pdf/afrelationship/_index.md b/english/cpp/aspose.pdf/afrelationship/_index.md index 537c37e3bd..c3dd7d0bb0 100644 --- a/english/cpp/aspose.pdf/afrelationship/_index.md +++ b/english/cpp/aspose.pdf/afrelationship/_index.md @@ -4,7 +4,7 @@ linktitle: AFRelationship second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::AFRelationship enum. Enumeration describes associated files relationship in C++.' type: docs -weight: 18000 +weight: 18200 url: /cpp/aspose.pdf/afrelationship/ --- ## AFRelationship enum diff --git a/english/cpp/aspose.pdf/apssaveoptions/_index.md b/english/cpp/aspose.pdf/apssaveoptions/_index.md index 20faccc6e4..8346ae9eab 100644 --- a/english/cpp/aspose.pdf/apssaveoptions/_index.md +++ b/english/cpp/aspose.pdf/apssaveoptions/_index.md @@ -21,12 +21,6 @@ class ApsSaveOptions : public Aspose::Pdf::UnifiedSaveOptions | Method | Description | | --- | --- | | [ApsSaveOptions](./apssaveoptions/)() | Constructor of APsSaveOptions class. | -## Fields - -| Field | Description | -| --- | --- | -| [IsMultiThreading](../unifiedsaveoptions/ismultithreading/) | Process pages in few threads. | -| [TryMergeAdjacentSameBackgroundImages](../unifiedsaveoptions/trymergeadjacentsamebackgroundimages/) | Sometimes PDFs contain background images (of pages or table cells) constructed from several same tiling background images put one near other. In such case renderers of target formats (f.e MsWord for DOCS format) sometimes generates visible boundaries beetween parts of background images, cause their techniques of image edge smoothing (anti-aliasing) is different from Acrobat Reader. If it looks like exported document contains such visible boundaries between parts of same background images, please try use this setting to get rid of that unwanted effect. ATTENTION! This optimization of quality usually essentially slows down conversion, so, please, use this option only when it's really necessary. | ## See Also * Class [UnifiedSaveOptions](../unifiedsaveoptions/) diff --git a/english/cpp/aspose.pdf/artifact/_index.md b/english/cpp/aspose.pdf/artifact/_index.md index feac409052..49e71226a2 100644 --- a/english/cpp/aspose.pdf/artifact/_index.md +++ b/english/cpp/aspose.pdf/artifact/_index.md @@ -48,7 +48,7 @@ class Artifact : public System::IDisposable | [get_Rotation](./get_rotation/)() | Gets artifact rotation angle. | | [get_Subtype](./get_subtype/)() | Gets artifact subtype. If artifact has non-standard subtype, name of the subtype may be read via CustomSubtype. | | [get_Text](./get_text/)() | Gets text of the artifact. | -| [get_TextState](./get_textstate/)() const | [Text](../../aspose.pdf.text/) state for artifact text. | +| [get_TextState](./get_textstate/)() | [Text](../../aspose.pdf.text/) state for artifact text. | | [get_TopMargin](./get_topmargin/)() const | Top margin of artifact. If position is specified explicitly (in Position property) this value is ignored. | | [get_Type](./get_type/)() | Gets artifact type. | | [GetValue](./getvalue/)(System::String) | Gets custom value of artifact. | diff --git a/english/cpp/aspose.pdf/artifact/get_textstate/_index.md b/english/cpp/aspose.pdf/artifact/get_textstate/_index.md index 56ad9f5e49..25e57dd5cf 100644 --- a/english/cpp/aspose.pdf/artifact/get_textstate/_index.md +++ b/english/cpp/aspose.pdf/artifact/get_textstate/_index.md @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf/artifact/get_textstate/ [Text](../../../aspose.pdf.text/) state for artifact text. ```cpp -System::SharedPtr Aspose::Pdf::Artifact::get_TextState() const +System::SharedPtr Aspose::Pdf::Artifact::get_TextState() ``` ## See Also diff --git a/english/cpp/aspose.pdf/blendmode/_index.md b/english/cpp/aspose.pdf/blendmode/_index.md index ff1033985d..193d92430b 100644 --- a/english/cpp/aspose.pdf/blendmode/_index.md +++ b/english/cpp/aspose.pdf/blendmode/_index.md @@ -4,7 +4,7 @@ linktitle: BlendMode second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::BlendMode enum. The blend modes enumeration in C++.' type: docs -weight: 18100 +weight: 18300 url: /cpp/aspose.pdf/blendmode/ --- ## BlendMode enum diff --git a/english/cpp/aspose.pdf/bordercornerstyle/_index.md b/english/cpp/aspose.pdf/bordercornerstyle/_index.md index e1a08eeaa5..3be0ac8f4e 100644 --- a/english/cpp/aspose.pdf/bordercornerstyle/_index.md +++ b/english/cpp/aspose.pdf/bordercornerstyle/_index.md @@ -4,7 +4,7 @@ linktitle: BorderCornerStyle second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::BorderCornerStyle enum. Enumerates the border corner styles for border in C++.' type: docs -weight: 18200 +weight: 18400 url: /cpp/aspose.pdf/bordercornerstyle/ --- ## BorderCornerStyle enum diff --git a/english/cpp/aspose.pdf/borderside/_index.md b/english/cpp/aspose.pdf/borderside/_index.md index 0b4a4dcf22..a3be28e539 100644 --- a/english/cpp/aspose.pdf/borderside/_index.md +++ b/english/cpp/aspose.pdf/borderside/_index.md @@ -4,7 +4,7 @@ linktitle: BorderSide second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::BorderSide enum. Enumerates the border sides in C++.' type: docs -weight: 18300 +weight: 18500 url: /cpp/aspose.pdf/borderside/ --- ## BorderSide enum diff --git a/english/cpp/aspose.pdf/collectionfieldsubtype/_index.md b/english/cpp/aspose.pdf/collectionfieldsubtype/_index.md index 89f3babc4c..cb34fcec53 100644 --- a/english/cpp/aspose.pdf/collectionfieldsubtype/_index.md +++ b/english/cpp/aspose.pdf/collectionfieldsubtype/_index.md @@ -4,7 +4,7 @@ linktitle: CollectionFieldSubtype second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::CollectionFieldSubtype enum. Represents the subtype parameter of a field in a sceme collection in C++.' type: docs -weight: 18400 +weight: 18600 url: /cpp/aspose.pdf/collectionfieldsubtype/ --- ## CollectionFieldSubtype enum diff --git a/english/cpp/aspose.pdf/colorspace/_index.md b/english/cpp/aspose.pdf/colorspace/_index.md index ef185a565b..8f8efd5ee2 100644 --- a/english/cpp/aspose.pdf/colorspace/_index.md +++ b/english/cpp/aspose.pdf/colorspace/_index.md @@ -4,7 +4,7 @@ linktitle: ColorSpace second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::ColorSpace enum. The color spaces enumeration in C++.' type: docs -weight: 18500 +weight: 18700 url: /cpp/aspose.pdf/colorspace/ --- ## ColorSpace enum diff --git a/english/cpp/aspose.pdf/colortype/_index.md b/english/cpp/aspose.pdf/colortype/_index.md index d98b1b2725..0de49be4ea 100644 --- a/english/cpp/aspose.pdf/colortype/_index.md +++ b/english/cpp/aspose.pdf/colortype/_index.md @@ -4,7 +4,7 @@ linktitle: ColorType second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::ColorType enum. Specifies color type of elements on page in C++.' type: docs -weight: 18600 +weight: 18800 url: /cpp/aspose.pdf/colortype/ --- ## ColorType enum diff --git a/english/cpp/aspose.pdf/columnadjustment/_index.md b/english/cpp/aspose.pdf/columnadjustment/_index.md index 90f4285d35..e9e4b12b28 100644 --- a/english/cpp/aspose.pdf/columnadjustment/_index.md +++ b/english/cpp/aspose.pdf/columnadjustment/_index.md @@ -4,7 +4,7 @@ linktitle: ColumnAdjustment second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::ColumnAdjustment enum. Enumerates column adjustment types in C++.' type: docs -weight: 18700 +weight: 18900 url: /cpp/aspose.pdf/columnadjustment/ --- ## ColumnAdjustment enum diff --git a/english/cpp/aspose.pdf/contentdisposition/_index.md b/english/cpp/aspose.pdf/contentdisposition/_index.md index 2d2b4c5998..da13c5709c 100644 --- a/english/cpp/aspose.pdf/contentdisposition/_index.md +++ b/english/cpp/aspose.pdf/contentdisposition/_index.md @@ -4,7 +4,7 @@ linktitle: ContentDisposition second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::ContentDisposition enum. MIME protocol Content-Disposition header in C++.' type: docs -weight: 18800 +weight: 19000 url: /cpp/aspose.pdf/contentdisposition/ --- ## ContentDisposition enum diff --git a/english/cpp/aspose.pdf/converterroraction/_index.md b/english/cpp/aspose.pdf/converterroraction/_index.md index 652534e1b0..9be6050dce 100644 --- a/english/cpp/aspose.pdf/converterroraction/_index.md +++ b/english/cpp/aspose.pdf/converterroraction/_index.md @@ -4,7 +4,7 @@ linktitle: ConvertErrorAction second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::ConvertErrorAction enum. This class represents action for conversion errors in C++.' type: docs -weight: 18900 +weight: 19100 url: /cpp/aspose.pdf/converterroraction/ --- ## ConvertErrorAction enum diff --git a/english/cpp/aspose.pdf/convertsoftmaskaction/_index.md b/english/cpp/aspose.pdf/convertsoftmaskaction/_index.md index 92ec5bf4c7..4c2ba73f5f 100644 --- a/english/cpp/aspose.pdf/convertsoftmaskaction/_index.md +++ b/english/cpp/aspose.pdf/convertsoftmaskaction/_index.md @@ -4,7 +4,7 @@ linktitle: ConvertSoftMaskAction second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::ConvertSoftMaskAction enum. This action represents actions for conversion of images with soft mask in C++.' type: docs -weight: 19000 +weight: 19200 url: /cpp/aspose.pdf/convertsoftmaskaction/ --- ## ConvertSoftMaskAction enum diff --git a/english/cpp/aspose.pdf/converttransparencyaction/_index.md b/english/cpp/aspose.pdf/converttransparencyaction/_index.md index cfdc792595..ec638da93d 100644 --- a/english/cpp/aspose.pdf/converttransparencyaction/_index.md +++ b/english/cpp/aspose.pdf/converttransparencyaction/_index.md @@ -4,7 +4,7 @@ linktitle: ConvertTransparencyAction second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::ConvertTransparencyAction enum. This class represents action for conversion of transparency in C++.' type: docs -weight: 19100 +weight: 19300 url: /cpp/aspose.pdf/converttransparencyaction/ --- ## ConvertTransparencyAction enum diff --git a/english/cpp/aspose.pdf/crashreportoptions/_index.md b/english/cpp/aspose.pdf/crashreportoptions/_index.md index b5da3d6d9d..61ebcd9c3e 100644 --- a/english/cpp/aspose.pdf/crashreportoptions/_index.md +++ b/english/cpp/aspose.pdf/crashreportoptions/_index.md @@ -25,12 +25,12 @@ class CrashReportOptions : public System::Object | [get_CrashReportDirectory](./get_crashreportdirectory/)() const | Output directory for crash report. By default is set to current directory. | | [get_CrashReportFilename](./get_crashreportfilename/)() const | Filename for crash report. By default is auto-generated in format CrashReport__.html". | | [get_CrashReportPath](./get_crashreportpath/)() | Full path of crash report file. | -| [get_CustomMessage](./get_custommessage/)() const | Custom message to include into the report. It can be something like. | +| [get_CustomMessage](./get_custommessage/)() const | Custom message to include into the report. It can be something like value of variables or other details you want to send. | | [get_Exception](./get_exception/)() const | Exception that crash report will be based on. | | [get_LibraryVersion](./get_libraryversion/)() const | Version of library used. | | [set_CrashReportDirectory](./set_crashreportdirectory/)(System::String) | Output directory for crash report. By default is set to current directory. | | [set_CrashReportFilename](./set_crashreportfilename/)(System::String) | Filename for crash report. By default is auto-generated in format CrashReport__.html". | -| [set_CustomMessage](./set_custommessage/)(System::String) | Custom message to include into the report. It can be something like. | +| [set_CustomMessage](./set_custommessage/)(System::String) | Custom message to include into the report. It can be something like value of variables or other details you want to send. | ## See Also * Class [Object](../../system/object/) diff --git a/english/cpp/aspose.pdf/crashreportoptions/get_custommessage/_index.md b/english/cpp/aspose.pdf/crashreportoptions/get_custommessage/_index.md index 0fd1910aaf..a9de65e145 100644 --- a/english/cpp/aspose.pdf/crashreportoptions/get_custommessage/_index.md +++ b/english/cpp/aspose.pdf/crashreportoptions/get_custommessage/_index.md @@ -2,7 +2,7 @@ title: Aspose::Pdf::CrashReportOptions::get_CustomMessage method linktitle: get_CustomMessage second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::CrashReportOptions::get_CustomMessage method. Custom message to include into the report. It can be something like in C++.' +description: 'Aspose::Pdf::CrashReportOptions::get_CustomMessage method. Custom message to include into the report. It can be something like value of variables or other details you want to send in C++.' type: docs weight: 600 url: /cpp/aspose.pdf/crashreportoptions/get_custommessage/ @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf/crashreportoptions/get_custommessage/ ## CrashReportOptions::get_CustomMessage method -Custom message to include into the report. It can be something like. +Custom message to include into the report. It can be something like value of variables or other details you want to send. ```cpp System::String Aspose::Pdf::CrashReportOptions::get_CustomMessage() const diff --git a/english/cpp/aspose.pdf/crashreportoptions/set_custommessage/_index.md b/english/cpp/aspose.pdf/crashreportoptions/set_custommessage/_index.md index 3a03b31416..0e14c9599e 100644 --- a/english/cpp/aspose.pdf/crashreportoptions/set_custommessage/_index.md +++ b/english/cpp/aspose.pdf/crashreportoptions/set_custommessage/_index.md @@ -2,7 +2,7 @@ title: Aspose::Pdf::CrashReportOptions::set_CustomMessage method linktitle: set_CustomMessage second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::CrashReportOptions::set_CustomMessage method. Custom message to include into the report. It can be something like in C++.' +description: 'Aspose::Pdf::CrashReportOptions::set_CustomMessage method. Custom message to include into the report. It can be something like value of variables or other details you want to send in C++.' type: docs weight: 1100 url: /cpp/aspose.pdf/crashreportoptions/set_custommessage/ @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf/crashreportoptions/set_custommessage/ ## CrashReportOptions::set_CustomMessage method -Custom message to include into the report. It can be something like. +Custom message to include into the report. It can be something like value of variables or other details you want to send. ```cpp void Aspose::Pdf::CrashReportOptions::set_CustomMessage(System::String value) diff --git a/english/cpp/aspose.pdf/cryptoalgorithm/_index.md b/english/cpp/aspose.pdf/cryptoalgorithm/_index.md index 3ad62ccdc2..01b9a927ec 100644 --- a/english/cpp/aspose.pdf/cryptoalgorithm/_index.md +++ b/english/cpp/aspose.pdf/cryptoalgorithm/_index.md @@ -4,7 +4,7 @@ linktitle: CryptoAlgorithm second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::CryptoAlgorithm enum. Represent type of cryptographic algorithm that used in encryption/decryption routines in C++.' type: docs -weight: 19200 +weight: 19400 url: /cpp/aspose.pdf/cryptoalgorithm/ --- ## CryptoAlgorithm enum diff --git a/english/cpp/aspose.pdf/deprecatedfeatureexception/_index.md b/english/cpp/aspose.pdf/deprecatedfeatureexception/_index.md index 279fc43d68..b2e55e090f 100644 --- a/english/cpp/aspose.pdf/deprecatedfeatureexception/_index.md +++ b/english/cpp/aspose.pdf/deprecatedfeatureexception/_index.md @@ -4,7 +4,7 @@ linktitle: DeprecatedFeatureException second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::DeprecatedFeatureException typedef in C++.' type: docs -weight: 23500 +weight: 23700 url: /cpp/aspose.pdf/deprecatedfeatureexception/ --- ## DeprecatedFeatureException typedef diff --git a/english/cpp/aspose.pdf/digesthashalgorithm/_index.md b/english/cpp/aspose.pdf/digesthashalgorithm/_index.md index 4785bde53b..8ef17b32d2 100644 --- a/english/cpp/aspose.pdf/digesthashalgorithm/_index.md +++ b/english/cpp/aspose.pdf/digesthashalgorithm/_index.md @@ -2,15 +2,15 @@ title: Aspose::Pdf::DigestHashAlgorithm enum linktitle: DigestHashAlgorithm second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::DigestHashAlgorithm enum. Represent type of algoritm that maps data to a "hash" in C++.' +description: 'Aspose::Pdf::DigestHashAlgorithm enum. Represent type of algorithm that maps data to a "hash" in C++.' type: docs -weight: 19300 +weight: 19500 url: /cpp/aspose.pdf/digesthashalgorithm/ --- ## DigestHashAlgorithm enum -Represent type of algoritm that maps data to a "hash". +Represent type of algorithm that maps data to a "hash". ```cpp enum class DigestHashAlgorithm @@ -20,9 +20,11 @@ enum class DigestHashAlgorithm | Name | Value | Description | | --- | --- | --- | -| Sha1 | 0 | SHA-1. Secure Hash Algorithm 1. | -| Sha256 | 1 | SHA-256. Secure Hash Algorithm 2. | -| Sha512 | 2 | SHA-512. Secure Hash Algorithm 2. | +| Auto | 0 | Automatic setting of the hashing algorithm at the discretion of the signature algorithm. For EDCSA, the default value is determined by the key size. The default value for a not detached PKCS7 is Sha1. | +| Sha1 | 1 | SHA-1. Secure Hash Algorithm 1 It is a default value for a not detached PKCS7. | +| Sha256 | 2 | SHA-256. Secure Hash Algorithm 2 It is a default value for a detached PKCS7. | +| Sha384 | 3 | SHA-384. Secure Hash Algorithm 2. | +| Sha512 | 4 | SHA-512. Secure Hash Algorithm 2. | ## See Also diff --git a/english/cpp/aspose.pdf/direction/_index.md b/english/cpp/aspose.pdf/direction/_index.md index 9746f080ba..cee9033e39 100644 --- a/english/cpp/aspose.pdf/direction/_index.md +++ b/english/cpp/aspose.pdf/direction/_index.md @@ -4,7 +4,7 @@ linktitle: Direction second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Direction enum. Text direction in C++.' type: docs -weight: 19400 +weight: 19600 url: /cpp/aspose.pdf/direction/ --- ## Direction enum diff --git a/english/cpp/aspose.pdf/docsaveoptions/_index.md b/english/cpp/aspose.pdf/docsaveoptions/_index.md index 39520838a1..aae5751272 100644 --- a/english/cpp/aspose.pdf/docsaveoptions/_index.md +++ b/english/cpp/aspose.pdf/docsaveoptions/_index.md @@ -52,13 +52,6 @@ class DocSaveOptions : public Aspose::Pdf::UnifiedSaveOptions, | [set_RecognizeBullets](./set_recognizebullets/)(bool) | Switch on the recognition of bullets. | | [set_RelativeHorizontalProximity](./set_relativehorizontalproximity/)(float) | In [Pdf](../) words may be innerly represented with operators that prints words by independently printing their letters or syllables. So, to detect words sometimes we need detect groups of independent chars that are in fact words. This setting defines width of space between text elements(letters, syllables) that must be treated as distance between words during recognition of words in source PDF. (presence of empty space at least with this width between letters means that textual elements pertain to different words). It's normed to font size - 1.0 means 100% of supposed word's font size. ATTENTION!It's used only in cases when source PDF contains specific rarely used fonts for which optimal value cannot be calculated from font. So, in vast majority of cases this parameter changes nothing in result document. | | [set_ReSaveFonts](./set_resavefonts/)(bool) | Sets the procedure for resaving fonts. If set to true, we reload fonts on every page to avoid the influence of previous font properties and load the newly created font from scratch. Set this option to false if you want to improve performance. The default value is true;. | -## Fields - -| Field | Description | -| --- | --- | -| [CustomProgressHandler](./customprogresshandler/) | This handler can be used to handle conversion progress events f.e. it can be used to show progress bar or messages about current amount of processed pages, example of handler's code that shows progress on console is : | -| [IsMultiThreading](../unifiedsaveoptions/ismultithreading/) | Process pages in few threads. | -| [TryMergeAdjacentSameBackgroundImages](../unifiedsaveoptions/trymergeadjacentsamebackgroundimages/) | Sometimes PDFs contain background images (of pages or table cells) constructed from several same tiling background images put one near other. In such case renderers of target formats (f.e MsWord for DOCS format) sometimes generates visible boundaries beetween parts of background images, cause their techniques of image edge smoothing (anti-aliasing) is different from Acrobat Reader. If it looks like exported document contains such visible boundaries between parts of same background images, please try use this setting to get rid of that unwanted effect. ATTENTION! This optimization of quality usually essentially slows down conversion, so, please, use this option only when it's really necessary. | ## See Also * Class [UnifiedSaveOptions](../unifiedsaveoptions/) diff --git a/english/cpp/aspose.pdf/docsaveoptions/docformat/_index.md b/english/cpp/aspose.pdf/docsaveoptions/docformat/_index.md index 243309fc9b..d97a098bf7 100644 --- a/english/cpp/aspose.pdf/docsaveoptions/docformat/_index.md +++ b/english/cpp/aspose.pdf/docsaveoptions/docformat/_index.md @@ -4,7 +4,7 @@ linktitle: DocFormat second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::DocSaveOptions::DocFormat enum. Allows to specify .doc or .docx file format in C++.' type: docs -weight: 2700 +weight: 2600 url: /cpp/aspose.pdf/docsaveoptions/docformat/ --- ## DocFormat enum diff --git a/english/cpp/aspose.pdf/docsaveoptions/recognitionmode/_index.md b/english/cpp/aspose.pdf/docsaveoptions/recognitionmode/_index.md index deedc2fa19..3816b5ad17 100644 --- a/english/cpp/aspose.pdf/docsaveoptions/recognitionmode/_index.md +++ b/english/cpp/aspose.pdf/docsaveoptions/recognitionmode/_index.md @@ -4,7 +4,7 @@ linktitle: RecognitionMode second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::DocSaveOptions::RecognitionMode enum. Allows to control how a PDF document is converted into a word processing document in C++.' type: docs -weight: 2800 +weight: 2700 url: /cpp/aspose.pdf/docsaveoptions/recognitionmode/ --- ## RecognitionMode enum diff --git a/english/cpp/aspose.pdf/document/_index.md b/english/cpp/aspose.pdf/document/_index.md index b8b66f2a3b..f491516ee8 100644 --- a/english/cpp/aspose.pdf/document/_index.md +++ b/english/cpp/aspose.pdf/document/_index.md @@ -131,6 +131,7 @@ class Document : public System::IDisposable, | [HasIncrementalUpdate](./hasincrementalupdate/)() | Checks if the current PDF document has been saved with incremental updates. | | [ImportAnnotationsFromXfdf](./importannotationsfromxfdf/)(System::String) | Imports annotations from XFDF file to document. | | [ImportAnnotationsFromXfdf](./importannotationsfromxfdf/)(System::SharedPtr\) | Imports annotations from stream to document. | +| [IsRepairNeeded](./isrepairneeded/)(System::SharedPtr\\&) | Checks if document requires Repair method call. | | [LoadFrom](./loadfrom/)(System::String, System::SharedPtr\) | Loads a file, converting it to PDF. | | [Merge](./merge/)(System::SharedPtr\, const System::ArrayPtr\\>\&) | Merges documents. | | [Merge](./merge/)(System::SharedPtr\, const System::ArrayPtr\\&) | Merges documents. | @@ -202,7 +203,6 @@ class Document : public System::IDisposable, | Field | Description | | --- | --- | | static [DefaultNodesNumInSubtrees](./defaultnodesnuminsubtrees/) | | -| [FontSubstitution](./fontsubstitution/) | Occurs when font replaces another font in document. | ## Typedefs | Typedef | Description | diff --git a/english/cpp/aspose.pdf/document/defaultnodesnuminsubtrees/_index.md b/english/cpp/aspose.pdf/document/defaultnodesnuminsubtrees/_index.md index ecc02c6a6a..8f276e78b6 100644 --- a/english/cpp/aspose.pdf/document/defaultnodesnuminsubtrees/_index.md +++ b/english/cpp/aspose.pdf/document/defaultnodesnuminsubtrees/_index.md @@ -4,7 +4,7 @@ linktitle: DefaultNodesNumInSubtrees second_title: Aspose.PDF for C++ API Reference description: 'How to use DefaultNodesNumInSubtrees field of Aspose::Pdf::Document class in C++.' type: docs -weight: 11800 +weight: 11900 url: /cpp/aspose.pdf/document/defaultnodesnuminsubtrees/ --- ## DefaultNodesNumInSubtrees field diff --git a/english/cpp/aspose.pdf/document/get_filesizelimittomemoryloading/_index.md b/english/cpp/aspose.pdf/document/get_filesizelimittomemoryloading/_index.md index f7691f99c6..81284d586d 100644 --- a/english/cpp/aspose.pdf/document/get_filesizelimittomemoryloading/_index.md +++ b/english/cpp/aspose.pdf/document/get_filesizelimittomemoryloading/_index.md @@ -4,7 +4,7 @@ linktitle: get_FileSizeLimitToMemoryLoading second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::get_FileSizeLimitToMemoryLoading method. Get and set the file size limit for loading an entire file into memory. The value is set in megabytes. The default value is 210 Mb in C++.' type: docs -weight: 11300 +weight: 11400 url: /cpp/aspose.pdf/document/get_filesizelimittomemoryloading/ --- ## Document::get_FileSizeLimitToMemoryLoading method diff --git a/english/cpp/aspose.pdf/document/get_islicensed/_index.md b/english/cpp/aspose.pdf/document/get_islicensed/_index.md index ad66631ec5..301a4aac58 100644 --- a/english/cpp/aspose.pdf/document/get_islicensed/_index.md +++ b/english/cpp/aspose.pdf/document/get_islicensed/_index.md @@ -4,7 +4,7 @@ linktitle: get_IsLicensed second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::get_IsLicensed method. Gets licensed state of the system. Returns true is system works in licensed mode and false otherwise in C++.' type: docs -weight: 11400 +weight: 11500 url: /cpp/aspose.pdf/document/get_islicensed/ --- ## Document::get_IsLicensed method diff --git a/english/cpp/aspose.pdf/document/isrepairneeded/_index.md b/english/cpp/aspose.pdf/document/isrepairneeded/_index.md new file mode 100644 index 0000000000..e0870bcd06 --- /dev/null +++ b/english/cpp/aspose.pdf/document/isrepairneeded/_index.md @@ -0,0 +1,34 @@ +--- +title: Aspose::Pdf::Document::IsRepairNeeded method +linktitle: IsRepairNeeded +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Document::IsRepairNeeded method. Checks if document requires Repair method call in C++.' +type: docs +weight: 7000 +url: /cpp/aspose.pdf/document/isrepairneeded/ +--- +## Document::IsRepairNeeded method + + +Checks if document requires Repair method call. + +```cpp +bool Aspose::Pdf::Document::IsRepairNeeded(System::SharedPtr &options) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| options | System::SharedPtr\\& | Filled [RepairOptions](../repairoptions/) recommended to be used in Repair method | + +### ReturnValue + +Returns filled options to be used in Repair method + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [RepairOptions](../repairoptions/) +* Class [Document](../) +* Namespace [Aspose::Pdf](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf/document/loadfrom/_index.md b/english/cpp/aspose.pdf/document/loadfrom/_index.md index 643e9a633e..68fe5538e5 100644 --- a/english/cpp/aspose.pdf/document/loadfrom/_index.md +++ b/english/cpp/aspose.pdf/document/loadfrom/_index.md @@ -4,7 +4,7 @@ linktitle: LoadFrom second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::LoadFrom method. Loads a file, converting it to PDF in C++.' type: docs -weight: 7000 +weight: 7100 url: /cpp/aspose.pdf/document/loadfrom/ --- ## Document::LoadFrom method diff --git a/english/cpp/aspose.pdf/document/merge/_index.md b/english/cpp/aspose.pdf/document/merge/_index.md index 6d822b113e..267521ce4c 100644 --- a/english/cpp/aspose.pdf/document/merge/_index.md +++ b/english/cpp/aspose.pdf/document/merge/_index.md @@ -4,7 +4,7 @@ linktitle: Merge second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::Merge method. Merges documents in C++.' type: docs -weight: 7100 +weight: 7200 url: /cpp/aspose.pdf/document/merge/ --- ## Document::Merge(const System::ArrayPtr\\>\&) method diff --git a/english/cpp/aspose.pdf/document/mergedocuments/_index.md b/english/cpp/aspose.pdf/document/mergedocuments/_index.md index a9a8db6ef1..5923bd1cd7 100644 --- a/english/cpp/aspose.pdf/document/mergedocuments/_index.md +++ b/english/cpp/aspose.pdf/document/mergedocuments/_index.md @@ -4,7 +4,7 @@ linktitle: MergeDocuments second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::MergeDocuments method. Merges documents in C++.' type: docs -weight: 11500 +weight: 11600 url: /cpp/aspose.pdf/document/mergedocuments/ --- ## Document::MergeDocuments(const System::ArrayPtr\\>\&) method diff --git a/english/cpp/aspose.pdf/document/optimize/_index.md b/english/cpp/aspose.pdf/document/optimize/_index.md index f7f89f532a..82e98b5218 100644 --- a/english/cpp/aspose.pdf/document/optimize/_index.md +++ b/english/cpp/aspose.pdf/document/optimize/_index.md @@ -4,7 +4,7 @@ linktitle: Optimize second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::Optimize method. Linearize the document in order to in C++.' type: docs -weight: 7200 +weight: 7300 url: /cpp/aspose.pdf/document/optimize/ --- ## Document::Optimize method diff --git a/english/cpp/aspose.pdf/document/optimizeresources/_index.md b/english/cpp/aspose.pdf/document/optimizeresources/_index.md index 59097e8ec1..03f69ed66a 100644 --- a/english/cpp/aspose.pdf/document/optimizeresources/_index.md +++ b/english/cpp/aspose.pdf/document/optimizeresources/_index.md @@ -4,7 +4,7 @@ linktitle: OptimizeResources second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::OptimizeResources method. Optimize resources in the document: in C++.' type: docs -weight: 7300 +weight: 7400 url: /cpp/aspose.pdf/document/optimizeresources/ --- ## Document::OptimizeResources() method diff --git a/english/cpp/aspose.pdf/document/pagenodestobalancedtree/_index.md b/english/cpp/aspose.pdf/document/pagenodestobalancedtree/_index.md index 9be9ba8db5..6165b7d569 100644 --- a/english/cpp/aspose.pdf/document/pagenodestobalancedtree/_index.md +++ b/english/cpp/aspose.pdf/document/pagenodestobalancedtree/_index.md @@ -4,7 +4,7 @@ linktitle: PageNodesToBalancedTree second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::PageNodesToBalancedTree method. Organizes page tree nodes in a document into a balanced tree. Only if the document has more than nodesNumInSubtrees page objects, otherwise it does nothing. Do not call this method while iterating over Pages elements, it may give unpredictable results in C++.' type: docs -weight: 7400 +weight: 7500 url: /cpp/aspose.pdf/document/pagenodestobalancedtree/ --- ## Document::PageNodesToBalancedTree method diff --git a/english/cpp/aspose.pdf/document/processparagraphs/_index.md b/english/cpp/aspose.pdf/document/processparagraphs/_index.md index e4eed27eb6..f380322941 100644 --- a/english/cpp/aspose.pdf/document/processparagraphs/_index.md +++ b/english/cpp/aspose.pdf/document/processparagraphs/_index.md @@ -4,7 +4,7 @@ linktitle: ProcessParagraphs second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::ProcessParagraphs method. Process paragraphs for generator in C++.' type: docs -weight: 7500 +weight: 7600 url: /cpp/aspose.pdf/document/processparagraphs/ --- ## Document::ProcessParagraphs method diff --git a/english/cpp/aspose.pdf/document/removemetadata/_index.md b/english/cpp/aspose.pdf/document/removemetadata/_index.md index 9d079506ac..2affe718e5 100644 --- a/english/cpp/aspose.pdf/document/removemetadata/_index.md +++ b/english/cpp/aspose.pdf/document/removemetadata/_index.md @@ -4,7 +4,7 @@ linktitle: RemoveMetadata second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::RemoveMetadata method. Removes metadata from the document in C++.' type: docs -weight: 7600 +weight: 7700 url: /cpp/aspose.pdf/document/removemetadata/ --- ## Document::RemoveMetadata method diff --git a/english/cpp/aspose.pdf/document/removepdfacompliance/_index.md b/english/cpp/aspose.pdf/document/removepdfacompliance/_index.md index ea15c89d6c..dee648fbbd 100644 --- a/english/cpp/aspose.pdf/document/removepdfacompliance/_index.md +++ b/english/cpp/aspose.pdf/document/removepdfacompliance/_index.md @@ -4,7 +4,7 @@ linktitle: RemovePdfaCompliance second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::RemovePdfaCompliance method. Remove pdfa compliance from the document in C++.' type: docs -weight: 7700 +weight: 7800 url: /cpp/aspose.pdf/document/removepdfacompliance/ --- ## Document::RemovePdfaCompliance method diff --git a/english/cpp/aspose.pdf/document/removepdfuacompliance/_index.md b/english/cpp/aspose.pdf/document/removepdfuacompliance/_index.md index 50323bcd61..6872ea3226 100644 --- a/english/cpp/aspose.pdf/document/removepdfuacompliance/_index.md +++ b/english/cpp/aspose.pdf/document/removepdfuacompliance/_index.md @@ -4,7 +4,7 @@ linktitle: RemovePdfUaCompliance second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::RemovePdfUaCompliance method. Remove pdfUa compliance from the document in C++.' type: docs -weight: 7800 +weight: 7900 url: /cpp/aspose.pdf/document/removepdfuacompliance/ --- ## Document::RemovePdfUaCompliance method diff --git a/english/cpp/aspose.pdf/document/repair/_index.md b/english/cpp/aspose.pdf/document/repair/_index.md index d9b476bb96..83538af05c 100644 --- a/english/cpp/aspose.pdf/document/repair/_index.md +++ b/english/cpp/aspose.pdf/document/repair/_index.md @@ -4,7 +4,7 @@ linktitle: Repair second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::Repair method. Repairs broken document in C++.' type: docs -weight: 7900 +weight: 8000 url: /cpp/aspose.pdf/document/repair/ --- ## Document::Repair method diff --git a/english/cpp/aspose.pdf/document/save/_index.md b/english/cpp/aspose.pdf/document/save/_index.md index 4f256d2b40..3a01aa5e29 100644 --- a/english/cpp/aspose.pdf/document/save/_index.md +++ b/english/cpp/aspose.pdf/document/save/_index.md @@ -4,7 +4,7 @@ linktitle: Save second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::Save method. Save document incrementally (i.e. using incremental update technique) in C++.' type: docs -weight: 8000 +weight: 8100 url: /cpp/aspose.pdf/document/save/ --- ## Document::Save() method diff --git a/english/cpp/aspose.pdf/document/savexml/_index.md b/english/cpp/aspose.pdf/document/savexml/_index.md index e4afd59c77..2026d539cd 100644 --- a/english/cpp/aspose.pdf/document/savexml/_index.md +++ b/english/cpp/aspose.pdf/document/savexml/_index.md @@ -4,7 +4,7 @@ linktitle: SaveXml second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::SaveXml method. Save document to XML in C++.' type: docs -weight: 8100 +weight: 8200 url: /cpp/aspose.pdf/document/savexml/ --- ## Document::SaveXml method diff --git a/english/cpp/aspose.pdf/document/sendto/_index.md b/english/cpp/aspose.pdf/document/sendto/_index.md index b35a65a052..7b35616e19 100644 --- a/english/cpp/aspose.pdf/document/sendto/_index.md +++ b/english/cpp/aspose.pdf/document/sendto/_index.md @@ -4,7 +4,7 @@ linktitle: SendTo second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::SendTo method. Sends the certain pages of the document to the document device for processing in C++.' type: docs -weight: 8200 +weight: 8300 url: /cpp/aspose.pdf/document/sendto/ --- ## Document::SendTo(System::SharedPtr\, int32_t, int32_t, System::SharedPtr\) method diff --git a/english/cpp/aspose.pdf/document/set_allowreusepagecontent/_index.md b/english/cpp/aspose.pdf/document/set_allowreusepagecontent/_index.md index 75cb10aaef..1d1c55fddc 100644 --- a/english/cpp/aspose.pdf/document/set_allowreusepagecontent/_index.md +++ b/english/cpp/aspose.pdf/document/set_allowreusepagecontent/_index.md @@ -4,7 +4,7 @@ linktitle: set_AllowReusePageContent second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::set_AllowReusePageContent method. Allows to merge page contents to optimize docuement size. If used then differnet but duplicated pages may reference to the same content object. Please note that this mode may cause side effects like changing page content when other page is changed in C++.' type: docs -weight: 8300 +weight: 8400 url: /cpp/aspose.pdf/document/set_allowreusepagecontent/ --- ## Document::set_AllowReusePageContent method diff --git a/english/cpp/aspose.pdf/document/set_background/_index.md b/english/cpp/aspose.pdf/document/set_background/_index.md index 40a9796165..346eeb58e8 100644 --- a/english/cpp/aspose.pdf/document/set_background/_index.md +++ b/english/cpp/aspose.pdf/document/set_background/_index.md @@ -4,7 +4,7 @@ linktitle: set_Background second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::set_Background method. Sets the background color of the document in C++.' type: docs -weight: 8400 +weight: 8500 url: /cpp/aspose.pdf/document/set_background/ --- ## Document::set_Background method diff --git a/english/cpp/aspose.pdf/document/set_centerwindow/_index.md b/english/cpp/aspose.pdf/document/set_centerwindow/_index.md index eba5eed191..9070d151e1 100644 --- a/english/cpp/aspose.pdf/document/set_centerwindow/_index.md +++ b/english/cpp/aspose.pdf/document/set_centerwindow/_index.md @@ -4,7 +4,7 @@ linktitle: set_CenterWindow second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::set_CenterWindow method. Sets flag specifying whether position of the document''s window will be centerd on the screen in C++.' type: docs -weight: 8500 +weight: 8600 url: /cpp/aspose.pdf/document/set_centerwindow/ --- ## Document::set_CenterWindow method diff --git a/english/cpp/aspose.pdf/document/set_collection/_index.md b/english/cpp/aspose.pdf/document/set_collection/_index.md index a11d3cc9ab..2e7d86f5b9 100644 --- a/english/cpp/aspose.pdf/document/set_collection/_index.md +++ b/english/cpp/aspose.pdf/document/set_collection/_index.md @@ -4,7 +4,7 @@ linktitle: set_Collection second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::set_Collection method. Gets collection of document in C++.' type: docs -weight: 8600 +weight: 8700 url: /cpp/aspose.pdf/document/set_collection/ --- ## Document::set_Collection method diff --git a/english/cpp/aspose.pdf/document/set_direction/_index.md b/english/cpp/aspose.pdf/document/set_direction/_index.md index fc87fa9a96..3a9a080db2 100644 --- a/english/cpp/aspose.pdf/document/set_direction/_index.md +++ b/english/cpp/aspose.pdf/document/set_direction/_index.md @@ -4,7 +4,7 @@ linktitle: set_Direction second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::set_Direction method. Sets reading order of text: L2R (left to right) or R2L (right to left) in C++.' type: docs -weight: 8700 +weight: 8800 url: /cpp/aspose.pdf/document/set_direction/ --- ## Document::set_Direction method diff --git a/english/cpp/aspose.pdf/document/set_disablefontlicenseverifications/_index.md b/english/cpp/aspose.pdf/document/set_disablefontlicenseverifications/_index.md index e7196ef56c..9b974b47ce 100644 --- a/english/cpp/aspose.pdf/document/set_disablefontlicenseverifications/_index.md +++ b/english/cpp/aspose.pdf/document/set_disablefontlicenseverifications/_index.md @@ -4,7 +4,7 @@ linktitle: set_DisableFontLicenseVerifications second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::set_DisableFontLicenseVerifications method. Many operations with font can''t be executed if these operations are prohibited by license of this font. For example some font can''t be embedded into PDF document if license rules disable embedding for this font. This flag is used to disable any license restrictions for all fonts in current PDF document. Be careful when using this flag. When it is set it means that person who sets this flag, takes all responsibility of possible license/law violations on himself. So He takes it on it''s own risk. It''s strongly recommended to use this flag only when you are fully confident that you are not breaking the copyright law. By default false in C++.' type: docs -weight: 8800 +weight: 8900 url: /cpp/aspose.pdf/document/set_disablefontlicenseverifications/ --- ## Document::set_DisableFontLicenseVerifications method diff --git a/english/cpp/aspose.pdf/document/set_displaydoctitle/_index.md b/english/cpp/aspose.pdf/document/set_displaydoctitle/_index.md index e009e8fcae..57d71206c1 100644 --- a/english/cpp/aspose.pdf/document/set_displaydoctitle/_index.md +++ b/english/cpp/aspose.pdf/document/set_displaydoctitle/_index.md @@ -4,7 +4,7 @@ linktitle: set_DisplayDocTitle second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::set_DisplayDocTitle method. Sets flag specifying whether document''s window title bar should display document title in C++.' type: docs -weight: 8900 +weight: 9000 url: /cpp/aspose.pdf/document/set_displaydoctitle/ --- ## Document::set_DisplayDocTitle method diff --git a/english/cpp/aspose.pdf/document/set_duplex/_index.md b/english/cpp/aspose.pdf/document/set_duplex/_index.md index 1a1e4f3c35..293a97fee7 100644 --- a/english/cpp/aspose.pdf/document/set_duplex/_index.md +++ b/english/cpp/aspose.pdf/document/set_duplex/_index.md @@ -4,7 +4,7 @@ linktitle: set_Duplex second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::set_Duplex method. Sets print duplex mode handling option to use when printing the file from the print dialog in C++.' type: docs -weight: 9000 +weight: 9100 url: /cpp/aspose.pdf/document/set_duplex/ --- ## Document::set_Duplex method diff --git a/english/cpp/aspose.pdf/document/set_embedstandardfonts/_index.md b/english/cpp/aspose.pdf/document/set_embedstandardfonts/_index.md index b787d95e52..0f058ec80a 100644 --- a/english/cpp/aspose.pdf/document/set_embedstandardfonts/_index.md +++ b/english/cpp/aspose.pdf/document/set_embedstandardfonts/_index.md @@ -4,7 +4,7 @@ linktitle: set_EmbedStandardFonts second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::set_EmbedStandardFonts method. Property which declares that document must embed all standard Type1 fonts which has flag IsEmbedded set into true. All PDF fonts can be embedded into document simply via setting of flag IsEmbedded into true, but PDF standard Type1 fonts is an exception from this rule. Standard Type1 font embedding requires much time, so to embed these fonts it''s necessary not only set flag IsEmbedded into true for specified font but also set an additiona flag on document''s level - EmbedStandardFonts = true; This property can be set only one time for all fonts. By default false in C++.' type: docs -weight: 9100 +weight: 9200 url: /cpp/aspose.pdf/document/set_embedstandardfonts/ --- ## Document::set_EmbedStandardFonts method diff --git a/english/cpp/aspose.pdf/document/set_enableobjectunload/_index.md b/english/cpp/aspose.pdf/document/set_enableobjectunload/_index.md index 94ed5f7ca0..a571a6a653 100644 --- a/english/cpp/aspose.pdf/document/set_enableobjectunload/_index.md +++ b/english/cpp/aspose.pdf/document/set_enableobjectunload/_index.md @@ -4,7 +4,7 @@ linktitle: set_EnableObjectUnload second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::set_EnableObjectUnload method. Get or sets flag which enables document partially be unloaded from memory. This allow to decrease memory usage but may have negative effect on perfomance in C++.' type: docs -weight: 9200 +weight: 9300 url: /cpp/aspose.pdf/document/set_enableobjectunload/ --- ## Document::set_EnableObjectUnload method diff --git a/english/cpp/aspose.pdf/document/set_enablesignaturesanitization/_index.md b/english/cpp/aspose.pdf/document/set_enablesignaturesanitization/_index.md index 4b508c8ae2..422ecdd448 100644 --- a/english/cpp/aspose.pdf/document/set_enablesignaturesanitization/_index.md +++ b/english/cpp/aspose.pdf/document/set_enablesignaturesanitization/_index.md @@ -4,7 +4,7 @@ linktitle: set_EnableSignatureSanitization second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::set_EnableSignatureSanitization method. Sets flag to manage signature fields sanitization. Enabled by default in C++.' type: docs -weight: 9300 +weight: 9400 url: /cpp/aspose.pdf/document/set_enablesignaturesanitization/ --- ## Document::set_EnableSignatureSanitization method diff --git a/english/cpp/aspose.pdf/document/set_filesizelimittomemoryloading/_index.md b/english/cpp/aspose.pdf/document/set_filesizelimittomemoryloading/_index.md index 36b18adfdf..ba375efa6f 100644 --- a/english/cpp/aspose.pdf/document/set_filesizelimittomemoryloading/_index.md +++ b/english/cpp/aspose.pdf/document/set_filesizelimittomemoryloading/_index.md @@ -4,7 +4,7 @@ linktitle: set_FileSizeLimitToMemoryLoading second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::set_FileSizeLimitToMemoryLoading method. Get and set the file size limit for loading an entire file into memory. The value is set in megabytes. The default value is 210 Mb in C++.' type: docs -weight: 11600 +weight: 11700 url: /cpp/aspose.pdf/document/set_filesizelimittomemoryloading/ --- ## Document::set_FileSizeLimitToMemoryLoading method diff --git a/english/cpp/aspose.pdf/document/set_fitwindow/_index.md b/english/cpp/aspose.pdf/document/set_fitwindow/_index.md index 2f6cb18dfd..b2ac10693c 100644 --- a/english/cpp/aspose.pdf/document/set_fitwindow/_index.md +++ b/english/cpp/aspose.pdf/document/set_fitwindow/_index.md @@ -4,7 +4,7 @@ linktitle: set_FitWindow second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::set_FitWindow method. Sets flag specifying whether document window must be resized to fit the first displayed page in C++.' type: docs -weight: 9400 +weight: 9500 url: /cpp/aspose.pdf/document/set_fitwindow/ --- ## Document::set_FitWindow method diff --git a/english/cpp/aspose.pdf/document/set_handlesignaturechange/_index.md b/english/cpp/aspose.pdf/document/set_handlesignaturechange/_index.md index d3632b9fea..a4d1286b4d 100644 --- a/english/cpp/aspose.pdf/document/set_handlesignaturechange/_index.md +++ b/english/cpp/aspose.pdf/document/set_handlesignaturechange/_index.md @@ -4,7 +4,7 @@ linktitle: set_HandleSignatureChange second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::set_HandleSignatureChange method. Throw Exception if the document will save with changes and have signature in C++.' type: docs -weight: 9500 +weight: 9600 url: /cpp/aspose.pdf/document/set_handlesignaturechange/ --- ## Document::set_HandleSignatureChange method diff --git a/english/cpp/aspose.pdf/document/set_hidemenubar/_index.md b/english/cpp/aspose.pdf/document/set_hidemenubar/_index.md index e9e6356d47..34013e3b0f 100644 --- a/english/cpp/aspose.pdf/document/set_hidemenubar/_index.md +++ b/english/cpp/aspose.pdf/document/set_hidemenubar/_index.md @@ -4,7 +4,7 @@ linktitle: set_HideMenubar second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::set_HideMenubar method. Sets flag specifying whether menu bar should be hidden when document is active in C++.' type: docs -weight: 9600 +weight: 9700 url: /cpp/aspose.pdf/document/set_hidemenubar/ --- ## Document::set_HideMenubar method diff --git a/english/cpp/aspose.pdf/document/set_hidetoolbar/_index.md b/english/cpp/aspose.pdf/document/set_hidetoolbar/_index.md index 96d1dea5ff..eec3e0040f 100644 --- a/english/cpp/aspose.pdf/document/set_hidetoolbar/_index.md +++ b/english/cpp/aspose.pdf/document/set_hidetoolbar/_index.md @@ -4,7 +4,7 @@ linktitle: set_HideToolBar second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::set_HideToolBar method. Sets flag specifying whether toolbar should be hidden when document is active in C++.' type: docs -weight: 9700 +weight: 9800 url: /cpp/aspose.pdf/document/set_hidetoolbar/ --- ## Document::set_HideToolBar method diff --git a/english/cpp/aspose.pdf/document/set_hidewindowui/_index.md b/english/cpp/aspose.pdf/document/set_hidewindowui/_index.md index f4d7b50705..19f5da7ab5 100644 --- a/english/cpp/aspose.pdf/document/set_hidewindowui/_index.md +++ b/english/cpp/aspose.pdf/document/set_hidewindowui/_index.md @@ -4,7 +4,7 @@ linktitle: set_HideWindowUI second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::set_HideWindowUI method. Sets flag specifying whether user interface elements should be hidden when document is active in C++.' type: docs -weight: 9800 +weight: 9900 url: /cpp/aspose.pdf/document/set_hidewindowui/ --- ## Document::set_HideWindowUI method diff --git a/english/cpp/aspose.pdf/document/set_ignorecorruptedobjects/_index.md b/english/cpp/aspose.pdf/document/set_ignorecorruptedobjects/_index.md index 3d8e05cac1..23af525d91 100644 --- a/english/cpp/aspose.pdf/document/set_ignorecorruptedobjects/_index.md +++ b/english/cpp/aspose.pdf/document/set_ignorecorruptedobjects/_index.md @@ -4,7 +4,7 @@ linktitle: set_IgnoreCorruptedObjects second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::set_IgnoreCorruptedObjects method. Sets flag of ignoring errors in source files. When pages from source document copied into destination document, copying process is stopped with exception if some objects in source files are corrupted when this flag is false. example: dest.Pages.Add(src.Pages); If this flag is set to true then corrupted objects will be replaced with empty values. By default: true in C++.' type: docs -weight: 9900 +weight: 10000 url: /cpp/aspose.pdf/document/set_ignorecorruptedobjects/ --- ## Document::set_IgnoreCorruptedObjects method diff --git a/english/cpp/aspose.pdf/document/set_islinearized/_index.md b/english/cpp/aspose.pdf/document/set_islinearized/_index.md index 640de87852..66e52bee70 100644 --- a/english/cpp/aspose.pdf/document/set_islinearized/_index.md +++ b/english/cpp/aspose.pdf/document/set_islinearized/_index.md @@ -4,7 +4,7 @@ linktitle: set_IsLinearized second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::set_IsLinearized method. Sets a value indicating whether document is linearized in C++.' type: docs -weight: 10000 +weight: 10100 url: /cpp/aspose.pdf/document/set_islinearized/ --- ## Document::set_IsLinearized method diff --git a/english/cpp/aspose.pdf/document/set_isxrefgapsallowed/_index.md b/english/cpp/aspose.pdf/document/set_isxrefgapsallowed/_index.md index 6b3b6a6761..4f2f47256f 100644 --- a/english/cpp/aspose.pdf/document/set_isxrefgapsallowed/_index.md +++ b/english/cpp/aspose.pdf/document/set_isxrefgapsallowed/_index.md @@ -4,7 +4,7 @@ linktitle: set_IsXrefGapsAllowed second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::set_IsXrefGapsAllowed method. Sets the is document pdfa compliant in C++.' type: docs -weight: 10100 +weight: 10200 url: /cpp/aspose.pdf/document/set_isxrefgapsallowed/ --- ## Document::set_IsXrefGapsAllowed method diff --git a/english/cpp/aspose.pdf/document/set_nonfullscreenpagemode/_index.md b/english/cpp/aspose.pdf/document/set_nonfullscreenpagemode/_index.md index 4b25728f8c..21f5c39d21 100644 --- a/english/cpp/aspose.pdf/document/set_nonfullscreenpagemode/_index.md +++ b/english/cpp/aspose.pdf/document/set_nonfullscreenpagemode/_index.md @@ -4,7 +4,7 @@ linktitle: set_NonFullScreenPageMode second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::set_NonFullScreenPageMode method. Sets page mode, specifying how to display the document on exiting full-screen mode in C++.' type: docs -weight: 10200 +weight: 10300 url: /cpp/aspose.pdf/document/set_nonfullscreenpagemode/ --- ## Document::set_NonFullScreenPageMode method diff --git a/english/cpp/aspose.pdf/document/set_openaction/_index.md b/english/cpp/aspose.pdf/document/set_openaction/_index.md index 6d9fcd5fdf..9e3db478d1 100644 --- a/english/cpp/aspose.pdf/document/set_openaction/_index.md +++ b/english/cpp/aspose.pdf/document/set_openaction/_index.md @@ -4,7 +4,7 @@ linktitle: set_OpenAction second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::set_OpenAction method. Sets action performed at document opening in C++.' type: docs -weight: 10300 +weight: 10400 url: /cpp/aspose.pdf/document/set_openaction/ --- ## Document::set_OpenAction method diff --git a/english/cpp/aspose.pdf/document/set_optimizesize/_index.md b/english/cpp/aspose.pdf/document/set_optimizesize/_index.md index 3cc77691eb..0cc12e3f9b 100644 --- a/english/cpp/aspose.pdf/document/set_optimizesize/_index.md +++ b/english/cpp/aspose.pdf/document/set_optimizesize/_index.md @@ -4,7 +4,7 @@ linktitle: set_OptimizeSize second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::set_OptimizeSize method. Sets optimization flag. When pages are added to document, 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: 10400 +weight: 10500 url: /cpp/aspose.pdf/document/set_optimizesize/ --- ## Document::set_OptimizeSize method diff --git a/english/cpp/aspose.pdf/document/set_pageinfo/_index.md b/english/cpp/aspose.pdf/document/set_pageinfo/_index.md index 5d0ed7c284..461e9e642a 100644 --- a/english/cpp/aspose.pdf/document/set_pageinfo/_index.md +++ b/english/cpp/aspose.pdf/document/set_pageinfo/_index.md @@ -4,7 +4,7 @@ linktitle: set_PageInfo second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::set_PageInfo method. Sets the page info.(for generator only, not filled in when reading document) in C++.' type: docs -weight: 10500 +weight: 10600 url: /cpp/aspose.pdf/document/set_pageinfo/ --- ## Document::set_PageInfo method diff --git a/english/cpp/aspose.pdf/document/set_pagelayout/_index.md b/english/cpp/aspose.pdf/document/set_pagelayout/_index.md index 03b5285a33..864aabc466 100644 --- a/english/cpp/aspose.pdf/document/set_pagelayout/_index.md +++ b/english/cpp/aspose.pdf/document/set_pagelayout/_index.md @@ -4,7 +4,7 @@ linktitle: set_PageLayout second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::set_PageLayout method. Sets page layout which shall be used when the document is opened in C++.' type: docs -weight: 10600 +weight: 10700 url: /cpp/aspose.pdf/document/set_pagelayout/ --- ## Document::set_PageLayout method diff --git a/english/cpp/aspose.pdf/document/set_pagemode/_index.md b/english/cpp/aspose.pdf/document/set_pagemode/_index.md index 2cabcee49d..d818f9dd31 100644 --- a/english/cpp/aspose.pdf/document/set_pagemode/_index.md +++ b/english/cpp/aspose.pdf/document/set_pagemode/_index.md @@ -4,7 +4,7 @@ linktitle: set_PageMode second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::set_PageMode method. Sets page mode, specifying how document should be displayed when opened in C++.' type: docs -weight: 10700 +weight: 10800 url: /cpp/aspose.pdf/document/set_pagemode/ --- ## Document::set_PageMode method diff --git a/english/cpp/aspose.pdf/document/set_picktraybypdfsize/_index.md b/english/cpp/aspose.pdf/document/set_picktraybypdfsize/_index.md index 91fc24185e..7bf66533c0 100644 --- a/english/cpp/aspose.pdf/document/set_picktraybypdfsize/_index.md +++ b/english/cpp/aspose.pdf/document/set_picktraybypdfsize/_index.md @@ -4,7 +4,7 @@ linktitle: set_PickTrayByPdfSize second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::set_PickTrayByPdfSize method. Sets a flag specifying whether the PDF page size shall be used to select the input paper tray in C++.' type: docs -weight: 10800 +weight: 10900 url: /cpp/aspose.pdf/document/set_picktraybypdfsize/ --- ## Document::set_PickTrayByPdfSize method diff --git a/english/cpp/aspose.pdf/document/set_printscaling/_index.md b/english/cpp/aspose.pdf/document/set_printscaling/_index.md index 6dad553df1..656eefa06a 100644 --- a/english/cpp/aspose.pdf/document/set_printscaling/_index.md +++ b/english/cpp/aspose.pdf/document/set_printscaling/_index.md @@ -4,7 +4,7 @@ linktitle: set_PrintScaling second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::set_PrintScaling method. Sets the page scaling option that shall be selected when a print dialog is displayed for this document in C++.' type: docs -weight: 10900 +weight: 11000 url: /cpp/aspose.pdf/document/set_printscaling/ --- ## Document::set_PrintScaling method diff --git a/english/cpp/aspose.pdf/document/setdefaultfilesizelimittomemoryloading/_index.md b/english/cpp/aspose.pdf/document/setdefaultfilesizelimittomemoryloading/_index.md index 0d9c589b8f..ed7596a41f 100644 --- a/english/cpp/aspose.pdf/document/setdefaultfilesizelimittomemoryloading/_index.md +++ b/english/cpp/aspose.pdf/document/setdefaultfilesizelimittomemoryloading/_index.md @@ -4,7 +4,7 @@ linktitle: SetDefaultFileSizeLimitToMemoryLoading second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::SetDefaultFileSizeLimitToMemoryLoading method. Sets the file size limit for loading an entire file into memory to default value equals 210 Mb in C++.' type: docs -weight: 11700 +weight: 11800 url: /cpp/aspose.pdf/document/setdefaultfilesizelimittomemoryloading/ --- ## Document::SetDefaultFileSizeLimitToMemoryLoading method diff --git a/english/cpp/aspose.pdf/document/settitle/_index.md b/english/cpp/aspose.pdf/document/settitle/_index.md index 8ebc90cc18..f7da059e0f 100644 --- a/english/cpp/aspose.pdf/document/settitle/_index.md +++ b/english/cpp/aspose.pdf/document/settitle/_index.md @@ -4,7 +4,7 @@ linktitle: SetTitle second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::SetTitle method. Set Title for PdfDocument in C++.' type: docs -weight: 11000 +weight: 11100 url: /cpp/aspose.pdf/document/settitle/ --- ## Document::SetTitle method diff --git a/english/cpp/aspose.pdf/document/setxmpmetadata/_index.md b/english/cpp/aspose.pdf/document/setxmpmetadata/_index.md index 61aea225d2..e5ff85423a 100644 --- a/english/cpp/aspose.pdf/document/setxmpmetadata/_index.md +++ b/english/cpp/aspose.pdf/document/setxmpmetadata/_index.md @@ -4,7 +4,7 @@ linktitle: SetXmpMetadata second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::SetXmpMetadata method. Set XMP metadata of document in C++.' type: docs -weight: 11100 +weight: 11200 url: /cpp/aspose.pdf/document/setxmpmetadata/ --- ## Document::SetXmpMetadata method diff --git a/english/cpp/aspose.pdf/document/validate/_index.md b/english/cpp/aspose.pdf/document/validate/_index.md index ffd46e6492..34e19310fa 100644 --- a/english/cpp/aspose.pdf/document/validate/_index.md +++ b/english/cpp/aspose.pdf/document/validate/_index.md @@ -4,7 +4,7 @@ linktitle: Validate second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::Validate method. Validate document into the specified file in C++.' type: docs -weight: 11200 +weight: 11300 url: /cpp/aspose.pdf/document/validate/ --- ## Document::Validate(System::SharedPtr\) method diff --git a/english/cpp/aspose.pdf/editiontype/_index.md b/english/cpp/aspose.pdf/editiontype/_index.md index ccb5154a80..f9d360a7ce 100644 --- a/english/cpp/aspose.pdf/editiontype/_index.md +++ b/english/cpp/aspose.pdf/editiontype/_index.md @@ -4,7 +4,7 @@ linktitle: EditionType second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::EditionType enum. Specifies the edition type of the license in C++.' type: docs -weight: 19500 +weight: 19700 url: /cpp/aspose.pdf/editiontype/ --- ## EditionType enum diff --git a/english/cpp/aspose.pdf/embeddedfilesdoesnotexists/_index.md b/english/cpp/aspose.pdf/embeddedfilesdoesnotexists/_index.md index 6cdb763f55..2bb59207c6 100644 --- a/english/cpp/aspose.pdf/embeddedfilesdoesnotexists/_index.md +++ b/english/cpp/aspose.pdf/embeddedfilesdoesnotexists/_index.md @@ -4,7 +4,7 @@ linktitle: EmbeddedFilesDoesNotExists second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::EmbeddedFilesDoesNotExists typedef in C++.' type: docs -weight: 23600 +weight: 23800 url: /cpp/aspose.pdf/embeddedfilesdoesnotexists/ --- ## EmbeddedFilesDoesNotExists typedef diff --git a/english/cpp/aspose.pdf/emptyvalueexception/_index.md b/english/cpp/aspose.pdf/emptyvalueexception/_index.md index 57a6a14885..642e9e733d 100644 --- a/english/cpp/aspose.pdf/emptyvalueexception/_index.md +++ b/english/cpp/aspose.pdf/emptyvalueexception/_index.md @@ -4,7 +4,7 @@ linktitle: EmptyValueException second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::EmptyValueException typedef in C++.' type: docs -weight: 23700 +weight: 23900 url: /cpp/aspose.pdf/emptyvalueexception/ --- ## EmptyValueException typedef diff --git a/english/cpp/aspose.pdf/epubloadoptions/_index.md b/english/cpp/aspose.pdf/epubloadoptions/_index.md index da5edbcefe..158cf335ad 100644 --- a/english/cpp/aspose.pdf/epubloadoptions/_index.md +++ b/english/cpp/aspose.pdf/epubloadoptions/_index.md @@ -27,12 +27,6 @@ class EpubLoadOptions : public Aspose::Pdf::LoadOptions | [get_PageSize](./get_pagesize/)() const | Gets output page size for import. | | [set_CustomCss](./set_customcss/)(System::String) | Sets the custom Css to apply when opening the Epub document. | | [set_Margin](./set_margin/)(System::SharedPtr\) | Gets reference on object that represent marging info. | -## Fields - -| Field | Description | -| --- | --- | -| [MarginsAreaUsageMode](./marginsareausagemode/) | Represents mode of usage of margins area - defines treatement of instructions (if any) of CSS of imported document related to usage of margins. | -| [PageSizeAdjustmentMode](./pagesizeadjustmentmode/) | ATTENTION! The feature implemented but did not put yet to public API since blocker issue in OSHARED layer revealed for sample document. | ## See Also * Class [LoadOptions](../loadoptions/) diff --git a/english/cpp/aspose.pdf/epubsaveoptions/_index.md b/english/cpp/aspose.pdf/epubsaveoptions/_index.md index ebd85ae7d2..4020cd5068 100644 --- a/english/cpp/aspose.pdf/epubsaveoptions/_index.md +++ b/english/cpp/aspose.pdf/epubsaveoptions/_index.md @@ -28,13 +28,6 @@ class EpubSaveOptions : public Aspose::Pdf::UnifiedSaveOptions | [EpubSaveOptions](./epubsaveoptions/)() | Constructor. | | [get_Title](./get_title/)() const | Gets EPUB document title. | | [set_Title](./set_title/)(System::String) | Sets EPUB document title. | -## Fields - -| Field | Description | -| --- | --- | -| [ContentRecognitionMode](./contentrecognitionmode/) | When PDF file (that usually has fixed layout) is being converted, the conversion engine tries to perform grouping and multi-level analysis to restore the original document author's intent and produce result in flow layout. This property tunes that conversion for this or that desirable method of recognition of content. | -| [IsMultiThreading](../unifiedsaveoptions/ismultithreading/) | Process pages in few threads. | -| [TryMergeAdjacentSameBackgroundImages](../unifiedsaveoptions/trymergeadjacentsamebackgroundimages/) | Sometimes PDFs contain background images (of pages or table cells) constructed from several same tiling background images put one near other. In such case renderers of target formats (f.e MsWord for DOCS format) sometimes generates visible boundaries beetween parts of background images, cause their techniques of image edge smoothing (anti-aliasing) is different from Acrobat Reader. If it looks like exported document contains such visible boundaries between parts of same background images, please try use this setting to get rid of that unwanted effect. ATTENTION! This optimization of quality usually essentially slows down conversion, so, please, use this option only when it's really necessary. | ## See Also * Class [UnifiedSaveOptions](../unifiedsaveoptions/) diff --git a/english/cpp/aspose.pdf/epubsaveoptions/recognitionmode/_index.md b/english/cpp/aspose.pdf/epubsaveoptions/recognitionmode/_index.md index f6a62048ee..57846a2256 100644 --- a/english/cpp/aspose.pdf/epubsaveoptions/recognitionmode/_index.md +++ b/english/cpp/aspose.pdf/epubsaveoptions/recognitionmode/_index.md @@ -4,7 +4,7 @@ linktitle: RecognitionMode second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::EpubSaveOptions::RecognitionMode enum. When PDF file (that usually has fixed layout) is being converted, the conversion engine tries to perform grouping and multi-level analysis to restore the original document author''s intent and produce result in flow layout. This property tunes that conversion for this or that desirable method of recognition of content in C++.' type: docs -weight: 500 +weight: 400 url: /cpp/aspose.pdf/epubsaveoptions/recognitionmode/ --- ## RecognitionMode enum diff --git a/english/cpp/aspose.pdf/excelsaveoptions/_index.md b/english/cpp/aspose.pdf/excelsaveoptions/_index.md index 6ccb6ee12a..eef89b81f9 100644 --- a/english/cpp/aspose.pdf/excelsaveoptions/_index.md +++ b/english/cpp/aspose.pdf/excelsaveoptions/_index.md @@ -34,12 +34,6 @@ class ExcelSaveOptions : public Aspose::Pdf::UnifiedSaveOptions | [set_InsertBlankColumnAtFirst](./set_insertblankcolumnatfirst/)(bool) | Set true if you need inserting of blank column as the first column of worksheet. Default value is false; it means that blank column will not be inserted. | | [set_MinimizeTheNumberOfWorksheets](./set_minimizethenumberofworksheets/)(bool) | Set true if you need to minimize the number of worksheets in resultant workbook. Default value is false; it means save of each PDF page as separated worksheet. | | [set_UniformWorksheets](./set_uniformworksheets/)(bool) | Set true for using uniform columns division through the document. Default value is false; it means that columns division will independent for each page. | -## Fields - -| Field | Description | -| --- | --- | -| [IsMultiThreading](../unifiedsaveoptions/ismultithreading/) | Process pages in few threads. | -| [TryMergeAdjacentSameBackgroundImages](../unifiedsaveoptions/trymergeadjacentsamebackgroundimages/) | Sometimes PDFs contain background images (of pages or table cells) constructed from several same tiling background images put one near other. In such case renderers of target formats (f.e MsWord for DOCS format) sometimes generates visible boundaries beetween parts of background images, cause their techniques of image edge smoothing (anti-aliasing) is different from Acrobat Reader. If it looks like exported document contains such visible boundaries between parts of same background images, please try use this setting to get rid of that unwanted effect. ATTENTION! This optimization of quality usually essentially slows down conversion, so, please, use this option only when it's really necessary. | ## See Also * Class [UnifiedSaveOptions](../unifiedsaveoptions/) diff --git a/english/cpp/aspose.pdf/extendedboolean/_index.md b/english/cpp/aspose.pdf/extendedboolean/_index.md index bdd462c633..fa7e7678ec 100644 --- a/english/cpp/aspose.pdf/extendedboolean/_index.md +++ b/english/cpp/aspose.pdf/extendedboolean/_index.md @@ -4,7 +4,7 @@ linktitle: ExtendedBoolean second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::ExtendedBoolean enum. Represents boolean type that supports Undefined value in C++.' type: docs -weight: 19600 +weight: 19800 url: /cpp/aspose.pdf/extendedboolean/ --- ## ExtendedBoolean enum diff --git a/english/cpp/aspose.pdf/extractimagemode/_index.md b/english/cpp/aspose.pdf/extractimagemode/_index.md index 3f4d82dfbf..ce617961ce 100644 --- a/english/cpp/aspose.pdf/extractimagemode/_index.md +++ b/english/cpp/aspose.pdf/extractimagemode/_index.md @@ -4,7 +4,7 @@ linktitle: ExtractImageMode second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::ExtractImageMode enum. Defines different modes which can be used while extracting images from documents in C++.' type: docs -weight: 19700 +weight: 19900 url: /cpp/aspose.pdf/extractimagemode/ --- ## ExtractImageMode enum diff --git a/english/cpp/aspose.pdf/fieldvaluetype/_index.md b/english/cpp/aspose.pdf/fieldvaluetype/_index.md index b2d9679d03..78a19ec912 100644 --- a/english/cpp/aspose.pdf/fieldvaluetype/_index.md +++ b/english/cpp/aspose.pdf/fieldvaluetype/_index.md @@ -4,7 +4,7 @@ linktitle: FieldValueType second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::FieldValueType enum. Represents the type of a field value in a schema collection in C++.' type: docs -weight: 19800 +weight: 20000 url: /cpp/aspose.pdf/fieldvaluetype/ --- ## FieldValueType enum diff --git a/english/cpp/aspose.pdf/fileencoding/_index.md b/english/cpp/aspose.pdf/fileencoding/_index.md index 8c33597d1c..7e08c63c6b 100644 --- a/english/cpp/aspose.pdf/fileencoding/_index.md +++ b/english/cpp/aspose.pdf/fileencoding/_index.md @@ -4,7 +4,7 @@ linktitle: FileEncoding second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::FileEncoding enum. Encoding of the attached file. Possible values: Zip - file is compressed with ZIP, None - file is non compressed in C++.' type: docs -weight: 19900 +weight: 20100 url: /cpp/aspose.pdf/fileencoding/ --- ## FileEncoding enum diff --git a/english/cpp/aspose.pdf/fixup/_index.md b/english/cpp/aspose.pdf/fixup/_index.md index 8dd2388259..694130f604 100644 --- a/english/cpp/aspose.pdf/fixup/_index.md +++ b/english/cpp/aspose.pdf/fixup/_index.md @@ -4,7 +4,7 @@ linktitle: Fixup second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Fixup enum. This enum represents an type of Fixup in C++.' type: docs -weight: 20000 +weight: 20200 url: /cpp/aspose.pdf/fixup/ --- ## Fixup enum diff --git a/english/cpp/aspose.pdf/fontembeddingexception/_index.md b/english/cpp/aspose.pdf/fontembeddingexception/_index.md index aa3c717a04..ebf2dd5bdf 100644 --- a/english/cpp/aspose.pdf/fontembeddingexception/_index.md +++ b/english/cpp/aspose.pdf/fontembeddingexception/_index.md @@ -4,7 +4,7 @@ linktitle: FontEmbeddingException second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::FontEmbeddingException typedef in C++.' type: docs -weight: 23800 +weight: 24000 url: /cpp/aspose.pdf/fontembeddingexception/ --- ## FontEmbeddingException typedef diff --git a/english/cpp/aspose.pdf/fontnotfoundexception/_index.md b/english/cpp/aspose.pdf/fontnotfoundexception/_index.md index 58af10bab6..516a03e381 100644 --- a/english/cpp/aspose.pdf/fontnotfoundexception/_index.md +++ b/english/cpp/aspose.pdf/fontnotfoundexception/_index.md @@ -4,7 +4,7 @@ linktitle: FontNotFoundException second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::FontNotFoundException typedef in C++.' type: docs -weight: 23900 +weight: 24100 url: /cpp/aspose.pdf/fontnotfoundexception/ --- ## FontNotFoundException typedef diff --git a/english/cpp/aspose.pdf/fontsubsetstrategy/_index.md b/english/cpp/aspose.pdf/fontsubsetstrategy/_index.md index 7cabe71cf1..169c697377 100644 --- a/english/cpp/aspose.pdf/fontsubsetstrategy/_index.md +++ b/english/cpp/aspose.pdf/fontsubsetstrategy/_index.md @@ -4,7 +4,7 @@ linktitle: FontSubsetStrategy second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::FontSubsetStrategy enum. enumerates strategies for font subsetting in C++.' type: docs -weight: 20100 +weight: 20300 url: /cpp/aspose.pdf/fontsubsetstrategy/ --- ## FontSubsetStrategy enum diff --git a/english/cpp/aspose.pdf/graphinfo/_index.md b/english/cpp/aspose.pdf/graphinfo/_index.md index bf970fa1da..e541f7b376 100644 --- a/english/cpp/aspose.pdf/graphinfo/_index.md +++ b/english/cpp/aspose.pdf/graphinfo/_index.md @@ -32,6 +32,8 @@ class GraphInfo : public System::ICloneable | [get_ScalingRateY](./get_scalingratey/)() const | Gets a float value that indicates the scaling rate of the y-coordinate when transforming a coordinate system. | | [get_SkewAngleX](./get_skewanglex/)() const | Gets a float value that indicates the skew angle of the x-coordinate when transforming a coordinate system. | | [get_SkewAngleY](./get_skewangley/)() const | Gets a float value that indicates the skew angle of the y-coordinate when transforming a coordinate system. | +| [get_X](./get_x/)() const | Retrieve the X coordinate of a vertical border when using TableAbsorber, and return "-1" for a horizontal border. | +| [get_Y](./get_y/)() const | Retrieve the Y coordinate of a horizontal border when using TableAbsorber, and return "-1" for a vertical border. | | [GraphInfo](./graphinfo/)() | | | [set_Color](./set_color/)(System::SharedPtr\) | Sets a [Color](../color/) object that indicates the color of the graph. | | [set_DashArray](./set_dasharray/)(System::ArrayPtr\) | Sets a dash array. | diff --git a/english/cpp/aspose.pdf/graphinfo/get_x/_index.md b/english/cpp/aspose.pdf/graphinfo/get_x/_index.md new file mode 100644 index 0000000000..70279b1ad1 --- /dev/null +++ b/english/cpp/aspose.pdf/graphinfo/get_x/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::GraphInfo::get_X method +linktitle: get_X +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::GraphInfo::get_X method. Retrieve the X coordinate of a vertical border when using TableAbsorber, and return "-1" for a horizontal border in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf/graphinfo/get_x/ +--- +## GraphInfo::get_X method + + +Retrieve the X coordinate of a vertical border when using TableAbsorber, and return "-1" for a horizontal border. + +```cpp +double Aspose::Pdf::GraphInfo::get_X() const +``` + +## See Also + +* Class [GraphInfo](../) +* Namespace [Aspose::Pdf](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf/graphinfo/get_y/_index.md b/english/cpp/aspose.pdf/graphinfo/get_y/_index.md new file mode 100644 index 0000000000..da16d8fde4 --- /dev/null +++ b/english/cpp/aspose.pdf/graphinfo/get_y/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::GraphInfo::get_Y method +linktitle: get_Y +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::GraphInfo::get_Y method. Retrieve the Y coordinate of a horizontal border when using TableAbsorber, and return "-1" for a vertical border in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf/graphinfo/get_y/ +--- +## GraphInfo::get_Y method + + +Retrieve the Y coordinate of a horizontal border when using TableAbsorber, and return "-1" for a vertical border. + +```cpp +double Aspose::Pdf::GraphInfo::get_Y() const +``` + +## See Also + +* Class [GraphInfo](../) +* Namespace [Aspose::Pdf](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf/graphinfo/set_color/_index.md b/english/cpp/aspose.pdf/graphinfo/set_color/_index.md index 4a45fd5dd8..1b378b60d0 100644 --- a/english/cpp/aspose.pdf/graphinfo/set_color/_index.md +++ b/english/cpp/aspose.pdf/graphinfo/set_color/_index.md @@ -4,7 +4,7 @@ linktitle: set_Color second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::GraphInfo::set_Color method. Sets a Color object that indicates the color of the graph in C++.' type: docs -weight: 1400 +weight: 1600 url: /cpp/aspose.pdf/graphinfo/set_color/ --- ## GraphInfo::set_Color method diff --git a/english/cpp/aspose.pdf/graphinfo/set_dasharray/_index.md b/english/cpp/aspose.pdf/graphinfo/set_dasharray/_index.md index 0dc56c3c77..00247c3784 100644 --- a/english/cpp/aspose.pdf/graphinfo/set_dasharray/_index.md +++ b/english/cpp/aspose.pdf/graphinfo/set_dasharray/_index.md @@ -4,7 +4,7 @@ linktitle: set_DashArray second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::GraphInfo::set_DashArray method. Sets a dash array in C++.' type: docs -weight: 1500 +weight: 1700 url: /cpp/aspose.pdf/graphinfo/set_dasharray/ --- ## GraphInfo::set_DashArray method diff --git a/english/cpp/aspose.pdf/graphinfo/set_dashphase/_index.md b/english/cpp/aspose.pdf/graphinfo/set_dashphase/_index.md index 7d753c7d81..9c065bacc3 100644 --- a/english/cpp/aspose.pdf/graphinfo/set_dashphase/_index.md +++ b/english/cpp/aspose.pdf/graphinfo/set_dashphase/_index.md @@ -4,7 +4,7 @@ linktitle: set_DashPhase second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::GraphInfo::set_DashPhase method. Sets a dash phase in C++.' type: docs -weight: 1600 +weight: 1800 url: /cpp/aspose.pdf/graphinfo/set_dashphase/ --- ## GraphInfo::set_DashPhase method diff --git a/english/cpp/aspose.pdf/graphinfo/set_fillcolor/_index.md b/english/cpp/aspose.pdf/graphinfo/set_fillcolor/_index.md index 7d397c5fc5..880379a13b 100644 --- a/english/cpp/aspose.pdf/graphinfo/set_fillcolor/_index.md +++ b/english/cpp/aspose.pdf/graphinfo/set_fillcolor/_index.md @@ -4,7 +4,7 @@ linktitle: set_FillColor second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::GraphInfo::set_FillColor method. Sets a Color object that indicates the fill color of the graph in C++.' type: docs -weight: 1700 +weight: 1900 url: /cpp/aspose.pdf/graphinfo/set_fillcolor/ --- ## GraphInfo::set_FillColor method diff --git a/english/cpp/aspose.pdf/graphinfo/set_isdoubled/_index.md b/english/cpp/aspose.pdf/graphinfo/set_isdoubled/_index.md index 13ab10972f..94b6ad2358 100644 --- a/english/cpp/aspose.pdf/graphinfo/set_isdoubled/_index.md +++ b/english/cpp/aspose.pdf/graphinfo/set_isdoubled/_index.md @@ -4,7 +4,7 @@ linktitle: set_IsDoubled second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::GraphInfo::set_IsDoubled method. Sets is border doubled in C++.' type: docs -weight: 1800 +weight: 2000 url: /cpp/aspose.pdf/graphinfo/set_isdoubled/ --- ## GraphInfo::set_IsDoubled method diff --git a/english/cpp/aspose.pdf/graphinfo/set_linewidth/_index.md b/english/cpp/aspose.pdf/graphinfo/set_linewidth/_index.md index 6ace5b10cc..cbf2a9f034 100644 --- a/english/cpp/aspose.pdf/graphinfo/set_linewidth/_index.md +++ b/english/cpp/aspose.pdf/graphinfo/set_linewidth/_index.md @@ -4,7 +4,7 @@ linktitle: set_LineWidth second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::GraphInfo::set_LineWidth method. Sets a float value that indicates the line width of the graph in C++.' type: docs -weight: 1900 +weight: 2100 url: /cpp/aspose.pdf/graphinfo/set_linewidth/ --- ## GraphInfo::set_LineWidth method diff --git a/english/cpp/aspose.pdf/graphinfo/set_rotationangle/_index.md b/english/cpp/aspose.pdf/graphinfo/set_rotationangle/_index.md index 12a78ef116..b6dcb3d9ee 100644 --- a/english/cpp/aspose.pdf/graphinfo/set_rotationangle/_index.md +++ b/english/cpp/aspose.pdf/graphinfo/set_rotationangle/_index.md @@ -4,7 +4,7 @@ linktitle: set_RotationAngle second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::GraphInfo::set_RotationAngle method. Sets a float value that indicates the rotation angle of the coordinate system when transforming a coordinate system in C++.' type: docs -weight: 2000 +weight: 2200 url: /cpp/aspose.pdf/graphinfo/set_rotationangle/ --- ## GraphInfo::set_RotationAngle method diff --git a/english/cpp/aspose.pdf/graphinfo/set_scalingratex/_index.md b/english/cpp/aspose.pdf/graphinfo/set_scalingratex/_index.md index 54b1c4bc16..948bb41206 100644 --- a/english/cpp/aspose.pdf/graphinfo/set_scalingratex/_index.md +++ b/english/cpp/aspose.pdf/graphinfo/set_scalingratex/_index.md @@ -4,7 +4,7 @@ linktitle: set_ScalingRateX second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::GraphInfo::set_ScalingRateX method. Sets a float value that indicates the scaling rate of the x-coordinate when transforming a coordinate system in C++.' type: docs -weight: 2100 +weight: 2300 url: /cpp/aspose.pdf/graphinfo/set_scalingratex/ --- ## GraphInfo::set_ScalingRateX method diff --git a/english/cpp/aspose.pdf/graphinfo/set_scalingratey/_index.md b/english/cpp/aspose.pdf/graphinfo/set_scalingratey/_index.md index e9eac7b754..c0a03b4eb2 100644 --- a/english/cpp/aspose.pdf/graphinfo/set_scalingratey/_index.md +++ b/english/cpp/aspose.pdf/graphinfo/set_scalingratey/_index.md @@ -4,7 +4,7 @@ linktitle: set_ScalingRateY second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::GraphInfo::set_ScalingRateY method. Sets a float value that indicates the scaling rate of the y-coordinate when transforming a coordinate system in C++.' type: docs -weight: 2200 +weight: 2400 url: /cpp/aspose.pdf/graphinfo/set_scalingratey/ --- ## GraphInfo::set_ScalingRateY method diff --git a/english/cpp/aspose.pdf/graphinfo/set_skewanglex/_index.md b/english/cpp/aspose.pdf/graphinfo/set_skewanglex/_index.md index 4f4204e05d..3bf5217799 100644 --- a/english/cpp/aspose.pdf/graphinfo/set_skewanglex/_index.md +++ b/english/cpp/aspose.pdf/graphinfo/set_skewanglex/_index.md @@ -4,7 +4,7 @@ linktitle: set_SkewAngleX second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::GraphInfo::set_SkewAngleX method. Sets a float value that indicates the skew angle of the x-coordinate when transforming a coordinate system in C++.' type: docs -weight: 2300 +weight: 2500 url: /cpp/aspose.pdf/graphinfo/set_skewanglex/ --- ## GraphInfo::set_SkewAngleX method diff --git a/english/cpp/aspose.pdf/graphinfo/set_skewangley/_index.md b/english/cpp/aspose.pdf/graphinfo/set_skewangley/_index.md index 30ce3dc303..3c4a503a75 100644 --- a/english/cpp/aspose.pdf/graphinfo/set_skewangley/_index.md +++ b/english/cpp/aspose.pdf/graphinfo/set_skewangley/_index.md @@ -4,7 +4,7 @@ linktitle: set_SkewAngleY second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::GraphInfo::set_SkewAngleY method. Sets a float value that indicates the skew angle of the y-coordinate when transforming a coordinate system in C++.' type: docs -weight: 2400 +weight: 2600 url: /cpp/aspose.pdf/graphinfo/set_skewangley/ --- ## GraphInfo::set_SkewAngleY method diff --git a/english/cpp/aspose.pdf/horizontalalignment/_index.md b/english/cpp/aspose.pdf/horizontalalignment/_index.md index 0bc5bdf73c..ad9cd38a17 100644 --- a/english/cpp/aspose.pdf/horizontalalignment/_index.md +++ b/english/cpp/aspose.pdf/horizontalalignment/_index.md @@ -4,7 +4,7 @@ linktitle: HorizontalAlignment second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::HorizontalAlignment enum. Describes horizontal alignment in C++.' type: docs -weight: 20200 +weight: 20400 url: /cpp/aspose.pdf/horizontalalignment/ --- ## HorizontalAlignment enum diff --git a/english/cpp/aspose.pdf/htmldocumenttype/_index.md b/english/cpp/aspose.pdf/htmldocumenttype/_index.md index 297d5001db..19c723217c 100644 --- a/english/cpp/aspose.pdf/htmldocumenttype/_index.md +++ b/english/cpp/aspose.pdf/htmldocumenttype/_index.md @@ -4,7 +4,7 @@ linktitle: HtmlDocumentType second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::HtmlDocumentType enum. Represents enumeration of the Html document types in C++.' type: docs -weight: 20300 +weight: 20500 url: /cpp/aspose.pdf/htmldocumenttype/ --- ## HtmlDocumentType enum diff --git a/english/cpp/aspose.pdf/htmlloadoptions/_index.md b/english/cpp/aspose.pdf/htmlloadoptions/_index.md index 3fcb05b8bb..2ad95df89e 100644 --- a/english/cpp/aspose.pdf/htmlloadoptions/_index.md +++ b/english/cpp/aspose.pdf/htmlloadoptions/_index.md @@ -37,12 +37,6 @@ class HtmlLoadOptions : public Aspose::Pdf::LoadOptions | [set_IsRenderToSinglePage](./set_isrendertosinglepage/)(bool) | Sets rendering all document to single page. | | [set_PageInfo](./set_pageinfo/)(System::SharedPtr\) | Sets document page info. | | [set_PageLayoutOption](./set_pagelayoutoption/)(HtmlPageLayoutOption) | Sets layout option. | -## Fields - -| Field | Description | -| --- | --- | -| [CustomLoaderOfExternalResources](./customloaderofexternalresources/) | Sometimes it's necessary to avoid usage of internal loader of external resources(like images or CSSes) and supply custom method that will get requested resources from somewhere. For example, during usage of Aspose.PDF in cloude direct access to referenced files impossible: in such case some custome code put into special method should be used, and delegate that refers that method should be assygned to this attribute. | -| [ExternalResourcesCredentials](./externalresourcescredentials/) | If loading of external data referenced in HTML requirs credentials, You can put them into this parameter - they will be used during loading of external resources. | ## See Also * Class [LoadOptions](../loadoptions/) diff --git a/english/cpp/aspose.pdf/htmlmediatype/_index.md b/english/cpp/aspose.pdf/htmlmediatype/_index.md index 95a64b2450..7085ffcd64 100644 --- a/english/cpp/aspose.pdf/htmlmediatype/_index.md +++ b/english/cpp/aspose.pdf/htmlmediatype/_index.md @@ -4,7 +4,7 @@ linktitle: HtmlMediaType second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::HtmlMediaType enum. Specifies possible media types used during rendering in C++.' type: docs -weight: 20400 +weight: 20600 url: /cpp/aspose.pdf/htmlmediatype/ --- ## HtmlMediaType enum diff --git a/english/cpp/aspose.pdf/htmlpagelayoutoption/_index.md b/english/cpp/aspose.pdf/htmlpagelayoutoption/_index.md index b0db811793..f23e74d5bb 100644 --- a/english/cpp/aspose.pdf/htmlpagelayoutoption/_index.md +++ b/english/cpp/aspose.pdf/htmlpagelayoutoption/_index.md @@ -4,7 +4,7 @@ linktitle: HtmlPageLayoutOption second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::HtmlPageLayoutOption enum. Specifies flags that together other options determine sizes and layouts of pages in C++.' type: docs -weight: 20500 +weight: 20700 url: /cpp/aspose.pdf/htmlpagelayoutoption/ --- ## HtmlPageLayoutOption enum diff --git a/english/cpp/aspose.pdf/htmlsaveoptions/_index.md b/english/cpp/aspose.pdf/htmlsaveoptions/_index.md index 86b451e091..eacf964d73 100644 --- a/english/cpp/aspose.pdf/htmlsaveoptions/_index.md +++ b/english/cpp/aspose.pdf/htmlsaveoptions/_index.md @@ -88,43 +88,6 @@ class HtmlSaveOptions : public Aspose::Pdf::UnifiedSaveOptions, | [set_Title](./set_title/)(System::String) | Sets HTML page title. | | [set_TryMergeFragments](./set_trymergefragments/)(bool) | The flag for combining image fragments into one picture. | | [set_UseZOrder](./set_usezorder/)(bool) | If attribute UseZORder set to true, graphics and text are added to resultant HTML document accordingly Z-order in original PDF document. If this attribute is false all graphics is put as single layer which may cause some unnecessary effects for overlapped objects. | -## Fields - -| Field | Description | -| --- | --- | -| [AntialiasingProcessing](./antialiasingprocessing/) | This parameter defines required antialiasing measures during conversion of compound background images from PDF to HTML. | -| [CssClassNamesPrefix](./cssclassnamesprefix/) | When PDFtoHTML converter generates result CSSs, CSS class names (something like ".stl_01 {}" ... ".stl_NN {}) are generated -and used in result CSS. This property allows forcibly set class name prefix -For example, if You want that all class names start with 'my_prefix_' -(i.e. were something like 'my_prefix_1' ... 'my_prefix_NNN' ) , -then just assign 'my_prefix_' to this property before conversion. -If this property will stay untouched(i.e. null will be leaved as value ), then -converter will generate class names itself -(it wil be something like ".stl_01 {}" ... ".stl_NN {}") | -| [CustomCssSavingStrategy](./customcsssavingstrategy/) | This field can contain saving strategy that must be used (if present) during conversion of [Pdf](../) to Html for handling of saving of CSSes related to created HTML document as whole or to it's pages(if several HTMLpages are generated) If You want handle CSS file in some specific way, that just please create relevant method and assign delegate created from it to this property. | -| [CustomHtmlSavingStrategy](./customhtmlsavingstrategy/) | Result of conversion can contain one or several HTML-pages You can assign to this property delegate created from custom method that implements processing of one HTML-page(to be accurately - markup-HTML, without exteranl linked files if any) that was created during conversion. In such case processing (like saving of paage's HTML in stream or disk) can be done in that custom code . In such case all the necessary actions for saving of HTML page must be undertaken in code of supplied method, because saving of result in code of converter will be not in use . If processing for this or that case for some reason must be done by converter's code itself, not in custom code, please set in custom code flag 'CustomProcessingCancelled' of 'htmlSavingInfo' parameter's variable : it will signal to converter that all the necessary steps for processing of that resource must be done in converter itself in same way as if there was no any external custom code for procesing . | -| [CustomProgressHandler](./customprogresshandler/) | This handler can be used to handle conversion progress events f.e. it can be used to show progress bar or messages about current amount of processed pages, example of handler's code that shows progress on console is : | -| [CustomResourceSavingStrategy](./customresourcesavingstrategy/) | This field can contain saving strategy that must be used (if present) during conversion for customized handling of created referenced resource files (like images and fonts) related to nodes of saved HTML. That strategy must process resources and return string that represents desirable URL of saved resource in generated HTML. | -| [CustomStrategyOfCssUrlCreation](./customstrategyofcssurlcreation/) | This field can contain custom method that returns URL (Or URL template if multipage generation is on - see details below) of subject CSS as it should be put in generated result HTML. F.e. if You want converter put some specific URL instead of standard CSS file name into generated CSS, then You should just create and put into this property method that generates desirable URL. If flag 'SplitCssIntoPages' set, then this custom strategy (if any) must return not exact URL of CSS but rather template string that (after substitution of placeholder with page number with string.Format() function inside converter) can be resolved into URL for this or that page's CSS' URL. Examples of expected return string in such case are: 'SomeTargetLocation-page_{0}.css','../PartHandlers/GetCss.aspx?DocumentId=45654&CssPage={0}') | -| [ExcludeFontNameList](./excludefontnamelist/) | List of PDF embedded font names that not be embedded in HTML. | -| [FontEncodingStrategy](./fontencodingstrategy/) | Defines encoding special rule to tune PDF decoding for current document. | -| [FontSavingMode](./fontsavingmode/) | Defines font saving mode that will be used during saving of PDF to desirable format. | -| [HtmlMarkupGenerationMode](./htmlmarkupgenerationmode/) | Sometimes specific reqirments to generation of HTML markup are present. This parameter defines HTML preparing modes that can be used during conversion of PDF to HTML to match such specific requirments. | -| [IsMultiThreading](../unifiedsaveoptions/ismultithreading/) | Process pages in few threads. | -| [LettersPositioningMethod](./letterspositioningmethod/) | Sets mode of positioning of letters in words in result HTML. | -| [PageBorderIfAny](./pageborderifany/) | This attribute represents set of settings used for drawing border (if any) in result HTML document around area that represent source PDF page. In essence it concerns of showing of page's paper edges, not page border referenced in PDF page itself. | -| [PageMarginIfAny](./pagemarginifany/) | This attribute represents set of extra page margin (if any) in result HTML document around area that represent source PDF page. | -| [PagesFlowTypeDependsOnViewersScreenSize](./pagesflowtypedependsonviewersscreensize/) | If attribute 'SplitOnPages=false', than whole HTML representing all input PDF pages will be put into one big result HTML file. This flag defines whether result HTML will be generated in such way that flow of areas that represent PDF pages in result HTML will depend on screen resolution of viewer. Suppose width of screen on viewer side is big enough to put 2 or more pages one near other in horizontal direction. If this flag set to true, then this opportunity will be used (as many pages will be shown in horizontal direction one near another as it possible, then next horizontal group of pages will be shown under first one ). Otherwise pages will flow in such way: next page goes always under previous one. | -| [PartsEmbeddingMode](./partsembeddingmode/) | It defines whether referenced files (HTML, Fonts,Images, CSSes) will be embedded into main HTML file or will be generated as apart binary entities. | -| [RasterImagesSavingMode](./rasterimagessavingmode/) | Converted PDF can contain raster images This parameter defines how they should be handled during conversion of PDF to HTML. | -| [RemoveEmptyAreasOnTopAndBottom](./removeemptyareasontopandbottom/) | Defines whether in created HTML will be removed top and bottom empty area without any content (if any). | -| [SaveFullFont](./savefullfont/) | Indicates that full font will be saved, supports only True Type Fonts. By default SaveFullFont = false and the converter saves the subset of the initial font needed to display the text of the document. | -| [SaveShadowedTextsAsTransparentTexts](./saveshadowedtextsastransparenttexts/) | [Pdf](../) can contain texts that are shadowed by another elements (f.e. by images) but can be selected to clipboard in Acrobat Reader (usually it happen when document contains images and OCRed texts extracted from it). This settings tells to converter whether we need save such texts as transparent selectable texts in result HTML to mimic behaviour of Acrobat Reader (othervise such texts are usually saved as hidden, not available for copying to clipboard) | -| [SaveTransparentTexts](./savetransparenttexts/) | [Pdf](../) can contain transparent texts that can be selected to clipboard (usually it happen when document contains images and OCRed texts extracted from it). This settings tells to converter whether we need save such texts as transparent selectable texts in result HTML. | -| [SpecialFolderForAllImages](./specialfolderforallimages/) | Gets or sets path to directory to which must be saved any images if they are encountered during saving of document as HTML. If parameter is empty or null then image files(if any) wil be saved together with other files linked to HTML It does not affect anything if CustomImageSavingStrategy property was successfully used to process relevant image file. | -| [SpecialFolderForSvgImages](./specialfolderforsvgimages/) | Gets or sets path to directory to which must be saved only SVG-images if they are encountered during saving of document as HTML. If parameter is empty or null then SVG files(if any) wil be saved together with other image-files (near to output file) or in special folder for images (if it specified in SpecialImagesFolderIfAny option). It does not affect anything if CustomImageSavingStrategy property was successfully used to process relevant image file. | -| [TryMergeAdjacentSameBackgroundImages](../unifiedsaveoptions/trymergeadjacentsamebackgroundimages/) | Sometimes PDFs contain background images (of pages or table cells) constructed from several same tiling background images put one near other. In such case renderers of target formats (f.e MsWord for DOCS format) sometimes generates visible boundaries beetween parts of background images, cause their techniques of image edge smoothing (anti-aliasing) is different from Acrobat Reader. If it looks like exported document contains such visible boundaries between parts of same background images, please try use this setting to get rid of that unwanted effect. ATTENTION! This optimization of quality usually essentially slows down conversion, so, please, use this option only when it's really necessary. | -| [TrySaveTextUnderliningAndStrikeoutingInCss](./trysavetextunderliningandstrikeoutingincss/) | PDF itself does not contain underlining markers for texts. It emulated with line situated under text. This option allows converter try guess that this or that line is a text's underlining and put this info into CSS instead of drawing of underlining graphically. | ## Typedefs | Typedef | Description | diff --git a/english/cpp/aspose.pdf/htmlsaveoptions/antialiasingprocessingtype/_index.md b/english/cpp/aspose.pdf/htmlsaveoptions/antialiasingprocessingtype/_index.md index d383440e80..895cfc77ae 100644 --- a/english/cpp/aspose.pdf/htmlsaveoptions/antialiasingprocessingtype/_index.md +++ b/english/cpp/aspose.pdf/htmlsaveoptions/antialiasingprocessingtype/_index.md @@ -4,7 +4,7 @@ linktitle: AntialiasingProcessingType second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::HtmlSaveOptions::AntialiasingProcessingType enum. This enum describes possible antialiasing measures during conversion in C++.' type: docs -weight: 7300 +weight: 4900 url: /cpp/aspose.pdf/htmlsaveoptions/antialiasingprocessingtype/ --- ## AntialiasingProcessingType enum diff --git a/english/cpp/aspose.pdf/htmlsaveoptions/csssavinginfo/_index.md b/english/cpp/aspose.pdf/htmlsaveoptions/csssavinginfo/_index.md index 0a861e8fe8..140b721511 100644 --- a/english/cpp/aspose.pdf/htmlsaveoptions/csssavinginfo/_index.md +++ b/english/cpp/aspose.pdf/htmlsaveoptions/csssavinginfo/_index.md @@ -4,7 +4,7 @@ linktitle: CssSavingInfo second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::HtmlSaveOptions::CssSavingInfo class. This class represents set of data that related to custom saving of CSS during conversion of PDF to HTML format in C++.' type: docs -weight: 8200 +weight: 5800 url: /cpp/aspose.pdf/htmlsaveoptions/csssavinginfo/ --- ## CssSavingInfo class @@ -16,13 +16,6 @@ This class represents set of data that related to custom saving of CSS during co class CssSavingInfo : public System::Object ``` -## Fields - -| Field | Description | -| --- | --- | -| [ContentStream](./contentstream/) | Set by converter. Represents binary content of saved CSS | -| [CssNumber](./cssnumber/) | Set by converter. During conversion several CSS-files are created . This properties shows ordinal of saved CSS-file during conversion. It can be used in logic of custom code to decide how to process or where to save CSS content. | -| [SupposedURL](./supposedurl/) | Set by converter. Supposed file name that goes from converter to code of custom method Can be used in custom code to decide how to process or where to save content. | ## See Also * Class [Object](../../../system/object/) diff --git a/english/cpp/aspose.pdf/htmlsaveoptions/csssavingstrategy/_index.md b/english/cpp/aspose.pdf/htmlsaveoptions/csssavingstrategy/_index.md index 90c55f8307..61f19b4a08 100644 --- a/english/cpp/aspose.pdf/htmlsaveoptions/csssavingstrategy/_index.md +++ b/english/cpp/aspose.pdf/htmlsaveoptions/csssavingstrategy/_index.md @@ -4,7 +4,7 @@ linktitle: CssSavingStrategy second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::HtmlSaveOptions::CssSavingStrategy typedef of Aspose::Pdf::HtmlSaveOptions class in C++.' type: docs -weight: 6900 +weight: 4500 url: /cpp/aspose.pdf/htmlsaveoptions/csssavingstrategy/ --- ## CssSavingStrategy typedef diff --git a/english/cpp/aspose.pdf/htmlsaveoptions/cssurlmakingstrategy/_index.md b/english/cpp/aspose.pdf/htmlsaveoptions/cssurlmakingstrategy/_index.md index 007dde339f..f2d8a85eae 100644 --- a/english/cpp/aspose.pdf/htmlsaveoptions/cssurlmakingstrategy/_index.md +++ b/english/cpp/aspose.pdf/htmlsaveoptions/cssurlmakingstrategy/_index.md @@ -4,7 +4,7 @@ linktitle: CssUrlMakingStrategy second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::HtmlSaveOptions::CssUrlMakingStrategy typedef of Aspose::Pdf::HtmlSaveOptions class in C++.' type: docs -weight: 7000 +weight: 4600 url: /cpp/aspose.pdf/htmlsaveoptions/cssurlmakingstrategy/ --- ## CssUrlMakingStrategy typedef diff --git a/english/cpp/aspose.pdf/htmlsaveoptions/cssurlrequestinfo/_index.md b/english/cpp/aspose.pdf/htmlsaveoptions/cssurlrequestinfo/_index.md index f50ed4135e..f74f91f976 100644 --- a/english/cpp/aspose.pdf/htmlsaveoptions/cssurlrequestinfo/_index.md +++ b/english/cpp/aspose.pdf/htmlsaveoptions/cssurlrequestinfo/_index.md @@ -4,7 +4,7 @@ linktitle: CssUrlRequestInfo second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::HtmlSaveOptions::CssUrlRequestInfo class. Represents set of data that related to request from converter to custom code aimed to get desirable URL (or URL template)of subject CSS in C++.' type: docs -weight: 8300 +weight: 5900 url: /cpp/aspose.pdf/htmlsaveoptions/cssurlrequestinfo/ --- ## CssUrlRequestInfo class @@ -21,11 +21,6 @@ class CssUrlRequestInfo : public System::Object | Method | Description | | --- | --- | | [CssUrlRequestInfo](./cssurlrequestinfo/)() | Creates instance of [CssUrlRequestInfo](./). | -## Fields - -| Field | Description | -| --- | --- | -| [CustomProcessingCancelled](./customprocessingcancelled/) | Should be set by custom code if it cannot or should not define URL that will be used in generated HTML for referencing of that CSS. If it's 'true', then CSS file will be saved in standard way in standard place. | ## See Also * Class [Object](../../../system/object/) diff --git a/english/cpp/aspose.pdf/htmlsaveoptions/fontencodingrules/_index.md b/english/cpp/aspose.pdf/htmlsaveoptions/fontencodingrules/_index.md index dd90f7fc60..c6ef885563 100644 --- a/english/cpp/aspose.pdf/htmlsaveoptions/fontencodingrules/_index.md +++ b/english/cpp/aspose.pdf/htmlsaveoptions/fontencodingrules/_index.md @@ -4,7 +4,7 @@ linktitle: FontEncodingRules second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::HtmlSaveOptions::FontEncodingRules enum. This enumeration defines rules which tune encoding logic in C++.' type: docs -weight: 7400 +weight: 5000 url: /cpp/aspose.pdf/htmlsaveoptions/fontencodingrules/ --- ## FontEncodingRules enum diff --git a/english/cpp/aspose.pdf/htmlsaveoptions/fontsavingmodes/_index.md b/english/cpp/aspose.pdf/htmlsaveoptions/fontsavingmodes/_index.md index ad7dd45e45..15455edc2b 100644 --- a/english/cpp/aspose.pdf/htmlsaveoptions/fontsavingmodes/_index.md +++ b/english/cpp/aspose.pdf/htmlsaveoptions/fontsavingmodes/_index.md @@ -4,7 +4,7 @@ linktitle: FontSavingModes second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::HtmlSaveOptions::FontSavingModes enum. Enumerates modes that can be used for saving of fonts referenced in saved PDF in C++.' type: docs -weight: 7500 +weight: 5100 url: /cpp/aspose.pdf/htmlsaveoptions/fontsavingmodes/ --- ## FontSavingModes enum diff --git a/english/cpp/aspose.pdf/htmlsaveoptions/htmlimagesavinginfo/_index.md b/english/cpp/aspose.pdf/htmlsaveoptions/htmlimagesavinginfo/_index.md index fd52ccc8a5..4c5e266c47 100644 --- a/english/cpp/aspose.pdf/htmlsaveoptions/htmlimagesavinginfo/_index.md +++ b/english/cpp/aspose.pdf/htmlsaveoptions/htmlimagesavinginfo/_index.md @@ -4,7 +4,7 @@ linktitle: HtmlImageSavingInfo second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::HtmlSaveOptions::HtmlImageSavingInfo class. This class represents set of data that related to external resource image file''s saving during PDF to HTML conversion in C++.' type: docs -weight: 8400 +weight: 6000 url: /cpp/aspose.pdf/htmlsaveoptions/htmlimagesavinginfo/ --- ## HtmlImageSavingInfo class @@ -21,19 +21,6 @@ class HtmlImageSavingInfo : public Aspose::Pdf::SaveOptions::ResourceSavingInfo | Method | Description | | --- | --- | | [HtmlImageSavingInfo](./htmlimagesavinginfo/)() | creates new instance of [SaveOptions.ResourceSavingInfo](../../saveoptions/resourcesavinginfo/) | -## Fields - -| Field | Description | -| --- | --- | -| [ContentStream](../../saveoptions/resourcesavinginfo/contentstream/) | Set by converter. Represents binary content of saved file. | -| [CustomProcessingCancelled](../../saveoptions/resourcesavinginfo/customprocessingcancelled/) | this flag must set to "true" in custom code if for some reasons proposed file should be processed not with custom code but with converter's code itself in standard for converter way. So, it' setting set to true means that custom code did not process referenced file and converter must handle it itself (in both sences - for saving somewhere and for naming in referencing file). | -| [HtmlHostPageNumber](./htmlhostpagenumber/) | Tells to custom code to what page of generated set of HTML page-files pertains saved image. If splitting on pages turned off this value always contains '1' since in such case Only one HTML page is generated. | -| [ImageType](./imagetype/) | Represents type of saved image referenced in HTML. Set by converter and can be used in custom code to decide what should be done. | -| [ParentType](./parenttype/) | Saved image can pertain to HTML itself or can be extracted. from SVG embedded to HTML. This property can tell to custom code what's that type of parent of processed image. - - It set by converter and can be used in custom code to decide what should be done with that image (f.e. custom code can decide where to save image or how it must be referenced in parent's content). | -| [PdfHostPageNumber](./pdfhostpagenumber/) | Tells to custom code to what page of original PDF document pertains saved image Since it's possible that will be saved not all pages of original document, this value tells us about host page number in original PDF. If original page number for some reason is inknown, it allways return '1'. | -| [SupposedFileName](../../saveoptions/resourcesavinginfo/supposedfilename/) | Set by converter. Supposed file name that goes from converter to code of custom method Can be use in custom code to decide how to process or where save that file. | ## See Also * Class [ResourceSavingInfo](../../saveoptions/resourcesavinginfo/) diff --git a/english/cpp/aspose.pdf/htmlsaveoptions/htmlimagetype/_index.md b/english/cpp/aspose.pdf/htmlsaveoptions/htmlimagetype/_index.md index d54d2a8352..5db88420cb 100644 --- a/english/cpp/aspose.pdf/htmlsaveoptions/htmlimagetype/_index.md +++ b/english/cpp/aspose.pdf/htmlsaveoptions/htmlimagetype/_index.md @@ -4,7 +4,7 @@ linktitle: HtmlImageType second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::HtmlSaveOptions::HtmlImageType enum. enumerates possible types of image files that can be saved as external resources during Pdf to Html conversion in C++.' type: docs -weight: 7600 +weight: 5200 url: /cpp/aspose.pdf/htmlsaveoptions/htmlimagetype/ --- ## HtmlImageType enum diff --git a/english/cpp/aspose.pdf/htmlsaveoptions/htmlmarkupgenerationmodes/_index.md b/english/cpp/aspose.pdf/htmlsaveoptions/htmlmarkupgenerationmodes/_index.md index 2a5d4da942..4be48060d6 100644 --- a/english/cpp/aspose.pdf/htmlsaveoptions/htmlmarkupgenerationmodes/_index.md +++ b/english/cpp/aspose.pdf/htmlsaveoptions/htmlmarkupgenerationmodes/_index.md @@ -4,7 +4,7 @@ linktitle: HtmlMarkupGenerationModes second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::HtmlSaveOptions::HtmlMarkupGenerationModes enum. Sometimes specific reqirments to created HTML are present. This enum defines HTML preparing modes that can be used during conversion of PDF to HTML to match such specific requirments in C++.' type: docs -weight: 7700 +weight: 5300 url: /cpp/aspose.pdf/htmlsaveoptions/htmlmarkupgenerationmodes/ --- ## HtmlMarkupGenerationModes enum diff --git a/english/cpp/aspose.pdf/htmlsaveoptions/htmlpagemarkupsavinginfo/_index.md b/english/cpp/aspose.pdf/htmlsaveoptions/htmlpagemarkupsavinginfo/_index.md index bbd9711d56..315bb9eb7d 100644 --- a/english/cpp/aspose.pdf/htmlsaveoptions/htmlpagemarkupsavinginfo/_index.md +++ b/english/cpp/aspose.pdf/htmlsaveoptions/htmlpagemarkupsavinginfo/_index.md @@ -4,7 +4,7 @@ linktitle: HtmlPageMarkupSavingInfo second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::HtmlSaveOptions::HtmlPageMarkupSavingInfo class. If SplitToPages property of HtmlSaveOptions, then several HTML-files (one HTML file per converted page) are created during conversion of PDF to HTML. This class represents set of data that related to custom saving of one HTML-page''s markup during conversion of PDF to HTML in C++.' type: docs -weight: 8500 +weight: 6100 url: /cpp/aspose.pdf/htmlsaveoptions/htmlpagemarkupsavinginfo/ --- ## HtmlPageMarkupSavingInfo class @@ -16,15 +16,6 @@ If SplitToPages property of [HtmlSaveOptions](../), then several HTML-files (one class HtmlPageMarkupSavingInfo : public System::Object ``` -## Fields - -| Field | Description | -| --- | --- | -| [ContentStream](./contentstream/) | Set by converter. Represents saved HTML as stream. | -| [CustomProcessingCancelled](./customprocessingcancelled/) | Should be set in custom code when necessary. This flag must be set to "true" in custom code if for some reasons supplied html-markup should be processed not with custom code but with converter's code itself in standard for converter way. So, setting if this flag in custom code means that custom code did not process referenced file and converter must handle it itself. | -| [HtmlHostPageNumber](./htmlhostpagenumber/) | Set by converter. If set SplitToPages property, then several HTML-files(one HTML file per converted page) are created during conversion created . This property contains ordinal of saved HTML page's file. The property can be used in logic of custom code to decide how to process or where to save HTML page and If splitting on pages turned off this value always contains '1' since in such case only one big HTML page is generated for whole source document. | -| [PdfHostPageNumber](./pdfhostpagenumber/) | Set by converter. If SplitToPages property set, then several HTML-files(one HTML file per converted page) are created during conversion created . This property tells to custom code from what page of original PDF was created saved HTML-markup. If original page number for some reason is inknown or SplitOnPages=false,then this property allways contains '0' that signals that converter cannot supply exact original PDF's page number for supplied HTML-markup file. | -| [SupposedFileName](./supposedfilename/) | Set by converter. Supposed file name that goes from converter to code of custom method Can be used in custom code to decide how to process or where to save content. | ## See Also * Class [Object](../../../system/object/) diff --git a/english/cpp/aspose.pdf/htmlsaveoptions/htmlpagemarkupsavingstrategy/_index.md b/english/cpp/aspose.pdf/htmlsaveoptions/htmlpagemarkupsavingstrategy/_index.md index 711fa02ff5..c149db9f15 100644 --- a/english/cpp/aspose.pdf/htmlsaveoptions/htmlpagemarkupsavingstrategy/_index.md +++ b/english/cpp/aspose.pdf/htmlsaveoptions/htmlpagemarkupsavingstrategy/_index.md @@ -4,7 +4,7 @@ linktitle: HtmlPageMarkupSavingStrategy second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::HtmlSaveOptions::HtmlPageMarkupSavingStrategy typedef of Aspose::Pdf::HtmlSaveOptions class in C++.' type: docs -weight: 7100 +weight: 4700 url: /cpp/aspose.pdf/htmlsaveoptions/htmlpagemarkupsavingstrategy/ --- ## HtmlPageMarkupSavingStrategy typedef diff --git a/english/cpp/aspose.pdf/htmlsaveoptions/imageparenttypes/_index.md b/english/cpp/aspose.pdf/htmlsaveoptions/imageparenttypes/_index.md index 51ec80e408..b5f5e9d4d7 100644 --- a/english/cpp/aspose.pdf/htmlsaveoptions/imageparenttypes/_index.md +++ b/english/cpp/aspose.pdf/htmlsaveoptions/imageparenttypes/_index.md @@ -4,7 +4,7 @@ linktitle: ImageParentTypes second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::HtmlSaveOptions::ImageParentTypes enum. Enumerates possible types of image''s parents Image can pertain to HTML page or to SVG parent image in C++.' type: docs -weight: 7800 +weight: 5400 url: /cpp/aspose.pdf/htmlsaveoptions/imageparenttypes/ --- ## ImageParentTypes enum diff --git a/english/cpp/aspose.pdf/htmlsaveoptions/letterspositioningmethods/_index.md b/english/cpp/aspose.pdf/htmlsaveoptions/letterspositioningmethods/_index.md index ee15565c31..46fd603f5f 100644 --- a/english/cpp/aspose.pdf/htmlsaveoptions/letterspositioningmethods/_index.md +++ b/english/cpp/aspose.pdf/htmlsaveoptions/letterspositioningmethods/_index.md @@ -4,7 +4,7 @@ linktitle: LettersPositioningMethods second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::HtmlSaveOptions::LettersPositioningMethods enum. It enumerates possible modes of positioning of letters in words in result HTML in C++.' type: docs -weight: 7900 +weight: 5500 url: /cpp/aspose.pdf/htmlsaveoptions/letterspositioningmethods/ --- ## LettersPositioningMethods enum diff --git a/english/cpp/aspose.pdf/htmlsaveoptions/partsembeddingmodes/_index.md b/english/cpp/aspose.pdf/htmlsaveoptions/partsembeddingmodes/_index.md index 47598bd6fe..3b60d1a094 100644 --- a/english/cpp/aspose.pdf/htmlsaveoptions/partsembeddingmodes/_index.md +++ b/english/cpp/aspose.pdf/htmlsaveoptions/partsembeddingmodes/_index.md @@ -4,7 +4,7 @@ linktitle: PartsEmbeddingModes second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::HtmlSaveOptions::PartsEmbeddingModes enum. This enum enumerates possible modes of embedding of files referenced in HTML It allows to control whether referenced files (HTML, Fonts,Images, CSSes) will be embedded into main HTML file or will be generated as apart binary entities in C++.' type: docs -weight: 8000 +weight: 5600 url: /cpp/aspose.pdf/htmlsaveoptions/partsembeddingmodes/ --- ## PartsEmbeddingModes enum diff --git a/english/cpp/aspose.pdf/htmlsaveoptions/rasterimagessavingmodes/_index.md b/english/cpp/aspose.pdf/htmlsaveoptions/rasterimagessavingmodes/_index.md index 5e4e99d722..58b53ae82c 100644 --- a/english/cpp/aspose.pdf/htmlsaveoptions/rasterimagessavingmodes/_index.md +++ b/english/cpp/aspose.pdf/htmlsaveoptions/rasterimagessavingmodes/_index.md @@ -4,7 +4,7 @@ linktitle: RasterImagesSavingModes second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::HtmlSaveOptions::RasterImagesSavingModes enum. Converted PDF can contain raster images(.png, *.jpeg etc.) This enum defines methods of how raster images can be handled during conversion of PDF to HTML in C++.' type: docs -weight: 8100 +weight: 5700 url: /cpp/aspose.pdf/htmlsaveoptions/rasterimagessavingmodes/ --- ## RasterImagesSavingModes enum diff --git a/english/cpp/aspose.pdf/htmlsaveoptions/resourcesavingstrategy/_index.md b/english/cpp/aspose.pdf/htmlsaveoptions/resourcesavingstrategy/_index.md index 57f94f3334..8f56006308 100644 --- a/english/cpp/aspose.pdf/htmlsaveoptions/resourcesavingstrategy/_index.md +++ b/english/cpp/aspose.pdf/htmlsaveoptions/resourcesavingstrategy/_index.md @@ -4,7 +4,7 @@ linktitle: ResourceSavingStrategy second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::HtmlSaveOptions::ResourceSavingStrategy typedef. To this property You can assign delegate created from custom method that implements processing of external resource(Font or Image) that was extracted from PDF and must be saved as external resource during conversion of PDF to HTML. In such case processing (like saving in stream or disk) can be done in that custom code and that custom code must return path(or any another string without quotemarks) that will be afterwards incorporated into generated HTML instead of original supposed path to that image resource. In such case All the necessary actions for saving of image must be undertaken in code of supplied method, because saving of result in code of converter will be not in use . If processing for this or that file for some reason must be done by converter''s code itself, not in custom code, please set in custom code flag ''CustomProcessingCancelled'' of ''resourceSavingInfo'' parameter''s variable It signals to converter that all the necessary steps for processing of that resource must be done in converter itself as if there was no any external custom code in C++.' type: docs -weight: 7200 +weight: 4800 url: /cpp/aspose.pdf/htmlsaveoptions/resourcesavingstrategy/ --- ## ResourceSavingStrategy typedef diff --git a/english/cpp/aspose.pdf/imagedeleteaction/_index.md b/english/cpp/aspose.pdf/imagedeleteaction/_index.md index e57bb5392c..433117b4c6 100644 --- a/english/cpp/aspose.pdf/imagedeleteaction/_index.md +++ b/english/cpp/aspose.pdf/imagedeleteaction/_index.md @@ -4,7 +4,7 @@ linktitle: ImageDeleteAction second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::ImageDeleteAction enum. Action which performed with image object when image is removed from collection. If image object is removed in C++.' type: docs -weight: 20600 +weight: 20800 url: /cpp/aspose.pdf/imagedeleteaction/ --- ## ImageDeleteAction enum diff --git a/english/cpp/aspose.pdf/imagefiletype/_index.md b/english/cpp/aspose.pdf/imagefiletype/_index.md index 12c8e14b81..610d7ee99c 100644 --- a/english/cpp/aspose.pdf/imagefiletype/_index.md +++ b/english/cpp/aspose.pdf/imagefiletype/_index.md @@ -4,7 +4,7 @@ linktitle: ImageFileType second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::ImageFileType enum. Enumerates the image file types in C++.' type: docs -weight: 20700 +weight: 20900 url: /cpp/aspose.pdf/imagefiletype/ --- ## ImageFileType enum diff --git a/english/cpp/aspose.pdf/imagefiltertype/_index.md b/english/cpp/aspose.pdf/imagefiltertype/_index.md index 554ee2b86d..b46f1afc1c 100644 --- a/english/cpp/aspose.pdf/imagefiltertype/_index.md +++ b/english/cpp/aspose.pdf/imagefiltertype/_index.md @@ -4,7 +4,7 @@ linktitle: ImageFilterType second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::ImageFilterType enum. Enumeration representing image filter type in C++.' type: docs -weight: 20800 +weight: 21000 url: /cpp/aspose.pdf/imagefiltertype/ --- ## ImageFilterType enum diff --git a/english/cpp/aspose.pdf/importformat/_index.md b/english/cpp/aspose.pdf/importformat/_index.md index f03340a7bc..c85c36aa3c 100644 --- a/english/cpp/aspose.pdf/importformat/_index.md +++ b/english/cpp/aspose.pdf/importformat/_index.md @@ -4,7 +4,7 @@ linktitle: ImportFormat second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::ImportFormat enum. Specifies import format in C++.' type: docs -weight: 20900 +weight: 21100 url: /cpp/aspose.pdf/importformat/ --- ## ImportFormat enum diff --git a/english/cpp/aspose.pdf/incorrectcmapusageexception/_index.md b/english/cpp/aspose.pdf/incorrectcmapusageexception/_index.md index e3399efbd7..603b1833ff 100644 --- a/english/cpp/aspose.pdf/incorrectcmapusageexception/_index.md +++ b/english/cpp/aspose.pdf/incorrectcmapusageexception/_index.md @@ -4,7 +4,7 @@ linktitle: IncorrectCMapUsageException second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::IncorrectCMapUsageException typedef in C++.' type: docs -weight: 24000 +weight: 24200 url: /cpp/aspose.pdf/incorrectcmapusageexception/ --- ## IncorrectCMapUsageException typedef diff --git a/english/cpp/aspose.pdf/incorrectfontusageexception/_index.md b/english/cpp/aspose.pdf/incorrectfontusageexception/_index.md index a9f18915ba..e3caaffd31 100644 --- a/english/cpp/aspose.pdf/incorrectfontusageexception/_index.md +++ b/english/cpp/aspose.pdf/incorrectfontusageexception/_index.md @@ -4,7 +4,7 @@ linktitle: IncorrectFontUsageException second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::IncorrectFontUsageException typedef in C++.' type: docs -weight: 24100 +weight: 24300 url: /cpp/aspose.pdf/incorrectfontusageexception/ --- ## IncorrectFontUsageException typedef diff --git a/english/cpp/aspose.pdf/invalidcgmfileformatexception/_index.md b/english/cpp/aspose.pdf/invalidcgmfileformatexception/_index.md index 5c6ba41e60..0fcb318b20 100644 --- a/english/cpp/aspose.pdf/invalidcgmfileformatexception/_index.md +++ b/english/cpp/aspose.pdf/invalidcgmfileformatexception/_index.md @@ -4,7 +4,7 @@ linktitle: InvalidCgmFileFormatException second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::InvalidCgmFileFormatException typedef in C++.' type: docs -weight: 24200 +weight: 24400 url: /cpp/aspose.pdf/invalidcgmfileformatexception/ --- ## InvalidCgmFileFormatException typedef diff --git a/english/cpp/aspose.pdf/invalidfileformatexception/_index.md b/english/cpp/aspose.pdf/invalidfileformatexception/_index.md index 7d3647748e..d087f34cce 100644 --- a/english/cpp/aspose.pdf/invalidfileformatexception/_index.md +++ b/english/cpp/aspose.pdf/invalidfileformatexception/_index.md @@ -4,7 +4,7 @@ linktitle: InvalidFileFormatException second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::InvalidFileFormatException typedef in C++.' type: docs -weight: 24300 +weight: 24500 url: /cpp/aspose.pdf/invalidfileformatexception/ --- ## InvalidFileFormatException typedef diff --git a/english/cpp/aspose.pdf/invalidformtypeoperationexception/_index.md b/english/cpp/aspose.pdf/invalidformtypeoperationexception/_index.md index 03c3edc4d2..450b56a414 100644 --- a/english/cpp/aspose.pdf/invalidformtypeoperationexception/_index.md +++ b/english/cpp/aspose.pdf/invalidformtypeoperationexception/_index.md @@ -4,7 +4,7 @@ linktitle: InvalidFormTypeOperationException second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::InvalidFormTypeOperationException typedef in C++.' type: docs -weight: 24400 +weight: 24600 url: /cpp/aspose.pdf/invalidformtypeoperationexception/ --- ## InvalidFormTypeOperationException typedef diff --git a/english/cpp/aspose.pdf/invalidpasswordexception/_index.md b/english/cpp/aspose.pdf/invalidpasswordexception/_index.md index 99fe0186c8..4e67f7d76c 100644 --- a/english/cpp/aspose.pdf/invalidpasswordexception/_index.md +++ b/english/cpp/aspose.pdf/invalidpasswordexception/_index.md @@ -4,7 +4,7 @@ linktitle: InvalidPasswordException second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::InvalidPasswordException typedef in C++.' type: docs -weight: 24500 +weight: 24700 url: /cpp/aspose.pdf/invalidpasswordexception/ --- ## InvalidPasswordException typedef diff --git a/english/cpp/aspose.pdf/invalidpdffileformatexception/_index.md b/english/cpp/aspose.pdf/invalidpdffileformatexception/_index.md index 9bcc8e91aa..7bfb992d64 100644 --- a/english/cpp/aspose.pdf/invalidpdffileformatexception/_index.md +++ b/english/cpp/aspose.pdf/invalidpdffileformatexception/_index.md @@ -4,7 +4,7 @@ linktitle: InvalidPdfFileFormatException second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::InvalidPdfFileFormatException typedef in C++.' type: docs -weight: 24600 +weight: 24800 url: /cpp/aspose.pdf/invalidpdffileformatexception/ --- ## InvalidPdfFileFormatException typedef diff --git a/english/cpp/aspose.pdf/invalidvalueformatexception/_index.md b/english/cpp/aspose.pdf/invalidvalueformatexception/_index.md index 932ac051de..4f44df5b36 100644 --- a/english/cpp/aspose.pdf/invalidvalueformatexception/_index.md +++ b/english/cpp/aspose.pdf/invalidvalueformatexception/_index.md @@ -4,7 +4,7 @@ linktitle: InvalidValueFormatException second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::InvalidValueFormatException typedef in C++.' type: docs -weight: 24700 +weight: 24900 url: /cpp/aspose.pdf/invalidvalueformatexception/ --- ## InvalidValueFormatException typedef diff --git a/english/cpp/aspose.pdf/javascriptextensionsexception/_index.md b/english/cpp/aspose.pdf/javascriptextensionsexception/_index.md index 52658e68bd..544b9ec4a0 100644 --- a/english/cpp/aspose.pdf/javascriptextensionsexception/_index.md +++ b/english/cpp/aspose.pdf/javascriptextensionsexception/_index.md @@ -4,7 +4,7 @@ linktitle: JavascriptExtensionsException second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::JavascriptExtensionsException typedef in C++.' type: docs -weight: 24800 +weight: 25000 url: /cpp/aspose.pdf/javascriptextensionsexception/ --- ## JavascriptExtensionsException typedef diff --git a/english/cpp/aspose.pdf/latexsaveoptions/_index.md b/english/cpp/aspose.pdf/latexsaveoptions/_index.md index 26d4423b91..f33323c1eb 100644 --- a/english/cpp/aspose.pdf/latexsaveoptions/_index.md +++ b/english/cpp/aspose.pdf/latexsaveoptions/_index.md @@ -16,12 +16,6 @@ Save options for export to TeX format. class LaTeXSaveOptions : public Aspose::Pdf::TeXSaveOptions ``` -## Fields - -| Field | Description | -| --- | --- | -| [IsMultiThreading](../unifiedsaveoptions/ismultithreading/) | Process pages in few threads. | -| [TryMergeAdjacentSameBackgroundImages](../unifiedsaveoptions/trymergeadjacentsamebackgroundimages/) | Sometimes PDFs contain background images (of pages or table cells) constructed from several same tiling background images put one near other. In such case renderers of target formats (f.e MsWord for DOCS format) sometimes generates visible boundaries beetween parts of background images, cause their techniques of image edge smoothing (anti-aliasing) is different from Acrobat Reader. If it looks like exported document contains such visible boundaries between parts of same background images, please try use this setting to get rid of that unwanted effect. ATTENTION! This optimization of quality usually essentially slows down conversion, so, please, use this option only when it's really necessary. | ## Deprecated Use TeXSaveOptions instead diff --git a/english/cpp/aspose.pdf/licensestate/_index.md b/english/cpp/aspose.pdf/licensestate/_index.md index 141aac87bd..6208a3e84e 100644 --- a/english/cpp/aspose.pdf/licensestate/_index.md +++ b/english/cpp/aspose.pdf/licensestate/_index.md @@ -4,7 +4,7 @@ linktitle: LicenseState second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::LicenseState enum. Represents possible license states in C++.' type: docs -weight: 21000 +weight: 21200 url: /cpp/aspose.pdf/licensestate/ --- ## LicenseState enum diff --git a/english/cpp/aspose.pdf/loadformat/_index.md b/english/cpp/aspose.pdf/loadformat/_index.md index eb9a352e3b..5a91a0553d 100644 --- a/english/cpp/aspose.pdf/loadformat/_index.md +++ b/english/cpp/aspose.pdf/loadformat/_index.md @@ -4,7 +4,7 @@ linktitle: LoadFormat second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::LoadFormat enum. Specifies load format in C++.' type: docs -weight: 21100 +weight: 21300 url: /cpp/aspose.pdf/loadformat/ --- ## LoadFormat enum diff --git a/english/cpp/aspose.pdf/loadoptions/resourceloadingresult/_index.md b/english/cpp/aspose.pdf/loadoptions/resourceloadingresult/_index.md index bbe974c8d0..22c285f3f8 100644 --- a/english/cpp/aspose.pdf/loadoptions/resourceloadingresult/_index.md +++ b/english/cpp/aspose.pdf/loadoptions/resourceloadingresult/_index.md @@ -22,14 +22,6 @@ class ResourceLoadingResult : public System::Object | --- | --- | | [get_Data](./get_data/)() const | Bynary data that loaded with custom loader - it must be set after loading. | | [ResourceLoadingResult](./resourceloadingresult/)(System::ArrayPtr\) | Creates instance of loading result. | -## Fields - -| Field | Description | -| --- | --- | -| [EncodingIfKnown](./encodingifknown/) | Sometimes encoding of resource is known after or during loading. In such case custom code can provide converter with that knowledge via this parameter. You can leave null in this parameter if encoding is unknown or does not matter. | -| [ExceptionOfLoadingIfAny](./exceptionofloadingifany/) | Sometimes it's impossible to load requested resource for some reason. Unavailability of resource often does not lead to crash of conversiov and result document can be created anyway(but maybe in a bit worse quality, without images etc.). If exception occured during loading, just catch it and put in this parameter - sometimes that information is usefull for converter for rendering of result. | -| [LoadingCancelled](./loadingcancelled/) | Sometimes for some reasons loading should not occure custom code. In such case please set this flag as True. In such case converter will try use internal default resource loader to get that result(as it behave in situation when custom strategy not supplied). | -| [MIMETypeIfKnown](./mimetypeifknown/) | Sometimes knowledge about MIME type of loaded resource is usefull for converter You can provide MIME type(if it'd known after loading) in this parameter. Please leave parameter equal to null when MIME type unknown or it's not necessary to supply it. | ## See Also * Class [Object](../../../system/object/) diff --git a/english/cpp/aspose.pdf/mobixmlsaveoptions/_index.md b/english/cpp/aspose.pdf/mobixmlsaveoptions/_index.md index 1d56b385ae..2bd60bc686 100644 --- a/english/cpp/aspose.pdf/mobixmlsaveoptions/_index.md +++ b/english/cpp/aspose.pdf/mobixmlsaveoptions/_index.md @@ -21,12 +21,6 @@ class MobiXmlSaveOptions : public Aspose::Pdf::UnifiedSaveOptions | Method | Description | | --- | --- | | [MobiXmlSaveOptions](./mobixmlsaveoptions/)() | Constructor. | -## Fields - -| Field | Description | -| --- | --- | -| [IsMultiThreading](../unifiedsaveoptions/ismultithreading/) | Process pages in few threads. | -| [TryMergeAdjacentSameBackgroundImages](../unifiedsaveoptions/trymergeadjacentsamebackgroundimages/) | Sometimes PDFs contain background images (of pages or table cells) constructed from several same tiling background images put one near other. In such case renderers of target formats (f.e MsWord for DOCS format) sometimes generates visible boundaries beetween parts of background images, cause their techniques of image edge smoothing (anti-aliasing) is different from Acrobat Reader. If it looks like exported document contains such visible boundaries between parts of same background images, please try use this setting to get rid of that unwanted effect. ATTENTION! This optimization of quality usually essentially slows down conversion, so, please, use this option only when it's really necessary. | ## See Also * Class [UnifiedSaveOptions](../unifiedsaveoptions/) diff --git a/english/cpp/aspose.pdf/numberingstyle/_index.md b/english/cpp/aspose.pdf/numberingstyle/_index.md index ead29d1d2f..4202f417d4 100644 --- a/english/cpp/aspose.pdf/numberingstyle/_index.md +++ b/english/cpp/aspose.pdf/numberingstyle/_index.md @@ -4,7 +4,7 @@ linktitle: NumberingStyle second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::NumberingStyle enum. Enumeration of supported page numbering style for PageLabel class in C++.' type: docs -weight: 21200 +weight: 21400 url: /cpp/aspose.pdf/numberingstyle/ --- ## NumberingStyle enum diff --git a/english/cpp/aspose.pdf/operator!=/_index.md b/english/cpp/aspose.pdf/operator!=/_index.md index 18f06b6a51..b27a98200a 100644 --- a/english/cpp/aspose.pdf/operator!=/_index.md +++ b/english/cpp/aspose.pdf/operator!=/_index.md @@ -4,7 +4,7 @@ linktitle: operator!= second_title: Aspose.PDF for C++ API Reference description: 'How to use operator!= method of class in C++.' type: docs -weight: 25100 +weight: 25300 url: /cpp/aspose.pdf/operator!=/ --- ## Aspose::Pdf::operator!=(const System::SharedPtr\\&, const System::SharedPtr\\&) method diff --git a/english/cpp/aspose.pdf/operator==/_index.md b/english/cpp/aspose.pdf/operator==/_index.md index 9ac6784011..7b42ef15de 100644 --- a/english/cpp/aspose.pdf/operator==/_index.md +++ b/english/cpp/aspose.pdf/operator==/_index.md @@ -4,7 +4,7 @@ linktitle: operator== second_title: Aspose.PDF for C++ API Reference description: 'How to use operator== method of class in C++.' type: docs -weight: 25300 +weight: 25500 url: /cpp/aspose.pdf/operator==/ --- ## Aspose::Pdf::operator==(const System::SharedPtr\\&, const System::SharedPtr\\&) method diff --git a/english/cpp/aspose.pdf/page/_index.md b/english/cpp/aspose.pdf/page/_index.md index 1379065ed8..1396584685 100644 --- a/english/cpp/aspose.pdf/page/_index.md +++ b/english/cpp/aspose.pdf/page/_index.md @@ -27,7 +27,7 @@ class Page : public System::IDisposable, | [Accept](./accept/)(System::SharedPtr\) | Accepts [ImagePlacementAbsorber](../imageplacementabsorber/) visitor object that provides functionality to work with image placement objects. | | [Accept](./accept/)(System::SharedPtr\) | Accepts **TextAbsorber** visitor object that provides functionality to work with text objects. | | [AddGraphics](./addgraphics/)(System::SharedPtr\, System::SharedPtr\) | Adds graphics to the page. Works faster than adding elements one by one with [GraphicElement::AddOnPage(Page)](../) method. | -| [AddImage](./addimage/)(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) | Adds image onto the page and locates it in the middle of specified rectangle saving image's proportion. | +| [AddImage](./addimage/)(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\, bool) | Adds image onto the page and locates it in the middle of specified rectangle saving image's proportion. | | [AddImage](./addimage/)(System::String, System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) | Adds searchable image onto the page and locates it in the middle of specified rectangle saving image's proportion. | | [AddImage](./addimage/)(System::SharedPtr\, System::SharedPtr\, int32_t, int32_t, bool, System::SharedPtr\) | Adds image on page and places it depend on image rectangle position. | | [AddImage](./addimage/)(System::String, System::SharedPtr\) | Adds image onto the page and locates it in the middle of specified rectangle saving image's proportion. | @@ -107,11 +107,6 @@ class Page : public System::IDisposable, | [set_Watermark](./set_watermark/)(System::SharedPtr\) | Sets the watermark of the page. | | [SetPageSize](./setpagesize/)(double, double) | Sets page size for page. | | [TrySaveVectorGraphics](./trysavevectorgraphics/)(System::String) | Tries to save vector graphics if they are present on the page. The save format is SVG. | -## Fields - -| Field | Description | -| --- | --- | -| [OnBeforePageGenerate](./onbeforepagegenerate/) | Event for customize header and footer. | ## Typedefs | Typedef | Description | diff --git a/english/cpp/aspose.pdf/page/addimage/_index.md b/english/cpp/aspose.pdf/page/addimage/_index.md index 62c41f8bcd..5cfd6f62a5 100644 --- a/english/cpp/aspose.pdf/page/addimage/_index.md +++ b/english/cpp/aspose.pdf/page/addimage/_index.md @@ -34,13 +34,13 @@ void Aspose::Pdf::Page::AddImage(System::SharedPtr imageStre * Class [Page](../) * Namespace [Aspose::Pdf](../../) * Library [Aspose.PDF for C++](../../../) -## Page::AddImage(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) method +## Page::AddImage(System::SharedPtr\, System::SharedPtr\, System::SharedPtr\, bool) method Adds image onto the page and locates it in the middle of specified rectangle saving image's proportion. ```cpp -void Aspose::Pdf::Page::AddImage(System::SharedPtr imageStream, System::SharedPtr imageRect, System::SharedPtr bbox=nullptr) +void Aspose::Pdf::Page::AddImage(System::SharedPtr imageStream, System::SharedPtr imageRect, System::SharedPtr bbox=nullptr, bool autoAdjustRectangle=true) ``` @@ -49,6 +49,7 @@ void Aspose::Pdf::Page::AddImage(System::SharedPtr imageStre | imageStream | System::SharedPtr\ | The stream of the image. | | imageRect | System::SharedPtr\ | The position of the image. | | bbox | System::SharedPtr\ | Bbox of the image. | +| autoAdjustRectangle | bool | Adjust image in center of the input rectangle. | ## See Also diff --git a/english/cpp/aspose.pdf/page/beforepagegenerate/_index.md b/english/cpp/aspose.pdf/page/beforepagegenerate/_index.md index 379688f3de..96908ad780 100644 --- a/english/cpp/aspose.pdf/page/beforepagegenerate/_index.md +++ b/english/cpp/aspose.pdf/page/beforepagegenerate/_index.md @@ -4,7 +4,7 @@ linktitle: BeforePageGenerate second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Page::BeforePageGenerate typedef. Procedure for customize header and footer in C++.' type: docs -weight: 7900 +weight: 7800 url: /cpp/aspose.pdf/page/beforepagegenerate/ --- ## BeforePageGenerate typedef diff --git a/english/cpp/aspose.pdf/pagecollection/_index.md b/english/cpp/aspose.pdf/pagecollection/_index.md index aef864635e..7abd57453b 100644 --- a/english/cpp/aspose.pdf/pagecollection/_index.md +++ b/english/cpp/aspose.pdf/pagecollection/_index.md @@ -25,7 +25,7 @@ class PageCollection : public System::Collections::Generic::ICollection) | Accepts [ImagePlacementAbsorber](../imageplacementabsorber/) visitor object that provides functionality to work with image placement objects. | | [Accept](./accept/)(System::SharedPtr\) | Accepts [TextFragmentAbsorber](../) visitor object that provides functionality to work with text objects. | | [Accept](./accept/)(System::SharedPtr\) | Accepts [TextAbsorber](../) visitor object that provides functionality to work with text objects. | -| [Add](./add/)() | Adds empty page. | +| [Add](./add/)() | Adds an empty page. If the document already contains pages with varying sizes, the size of the most frequently occurring page will be selected. In the case there are only two different pages, the size of the first page will be used. | | [Add](./add/)(const System::SharedPtr\\>\>\&) | Adds to collection all pages from list. | | [Add](./add/)(const System::ArrayPtr\\>\&) | Adds to collection all pages from array. | | [Clear](./clear/)() override | Clear page collection. | @@ -44,7 +44,7 @@ class PageCollection : public System::Collections::Generic::ICollection) const | Returns index of the specified page. | -| [Insert](./insert/)(int32_t) | Insert empty apge into collection at the specified position. | +| [Insert](./insert/)(int32_t) | Insert an empty page into the collection at the specified position. If the document already contains pages with varying sizes, the size of the most frequently occurring page will be selected. In the case there are only two different pages, the size of the first page will be used. | | [Insert](./insert/)(int32_t, System::SharedPtr\) | Inserts page into page collection at specified place. | | [Insert](./insert/)(int32_t, System::SharedPtr\\>\>) | Inserts pages from the collection into document. | | [Insert](./insert/)(int32_t, System::ArrayPtr\\>) | Inserts pages of the array into document. | diff --git a/english/cpp/aspose.pdf/pagecollection/add/_index.md b/english/cpp/aspose.pdf/pagecollection/add/_index.md index d2730cbc8e..5d2ceb9843 100644 --- a/english/cpp/aspose.pdf/pagecollection/add/_index.md +++ b/english/cpp/aspose.pdf/pagecollection/add/_index.md @@ -2,7 +2,7 @@ title: Aspose::Pdf::PageCollection::Add method linktitle: Add second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::PageCollection::Add method. Adds empty page in C++.' +description: 'Aspose::Pdf::PageCollection::Add method. Adds an empty page. If the document already contains pages with varying sizes, the size of the most frequently occurring page will be selected. In the case there are only two different pages, the size of the first page will be used in C++.' type: docs weight: 200 url: /cpp/aspose.pdf/pagecollection/add/ @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf/pagecollection/add/ ## PageCollection::Add() method -Adds empty page. +Adds an empty page. If the document already contains pages with varying sizes, the size of the most frequently occurring page will be selected. In the case there are only two different pages, the size of the first page will be used. ```cpp System::SharedPtr Aspose::Pdf::PageCollection::Add() diff --git a/english/cpp/aspose.pdf/pagecollection/insert/_index.md b/english/cpp/aspose.pdf/pagecollection/insert/_index.md index 0065958f98..f591de9d9b 100644 --- a/english/cpp/aspose.pdf/pagecollection/insert/_index.md +++ b/english/cpp/aspose.pdf/pagecollection/insert/_index.md @@ -2,7 +2,7 @@ title: Aspose::Pdf::PageCollection::Insert method linktitle: Insert second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::PageCollection::Insert method. Insert empty apge into collection at the specified position in C++.' +description: 'Aspose::Pdf::PageCollection::Insert method. Insert an empty page into the collection at the specified position. If the document already contains pages with varying sizes, the size of the most frequently occurring page will be selected. In the case there are only two different pages, the size of the first page will be used in C++.' type: docs weight: 1700 url: /cpp/aspose.pdf/pagecollection/insert/ @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf/pagecollection/insert/ ## PageCollection::Insert(int32_t) method -Insert empty apge into collection at the specified position. +Insert an empty page into the collection at the specified position. If the document already contains pages with varying sizes, the size of the most frequently occurring page will be selected. In the case there are only two different pages, the size of the first page will be used. ```cpp System::SharedPtr Aspose::Pdf::PageCollection::Insert(int32_t pageNumber) diff --git a/english/cpp/aspose.pdf/pagecollectionextension/_index.md b/english/cpp/aspose.pdf/pagecollectionextension/_index.md new file mode 100644 index 0000000000..a4f6e126c4 --- /dev/null +++ b/english/cpp/aspose.pdf/pagecollectionextension/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::PageCollectionExtension class +linktitle: PageCollectionExtension +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::PageCollectionExtension class. Represents the extension method for updating header and footer pagination in C++.' +type: docs +weight: 11200 +url: /cpp/aspose.pdf/pagecollectionextension/ +--- +## PageCollectionExtension class + + +Represents the extension method for updating header and footer pagination. + +```cpp +class PageCollectionExtension +``` + +## Methods + +| Method | Description | +| --- | --- | +| [PageCollectionExtension](./pagecollectionextension/)() | | +| static [UpdatePagination](./updatepagination/)(System::SharedPtr\) | Updates the header and footer page numbers and dates for all pages. This will work if the document has at least one pagination artifact with special settings data. All pages in the collection will be updated with the source artifact according to its settings. | +## See Also + +* Namespace [Aspose::Pdf](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf/pagecollectionextension/pagecollectionextension/_index.md b/english/cpp/aspose.pdf/pagecollectionextension/pagecollectionextension/_index.md new file mode 100644 index 0000000000..aaf29b2bc2 --- /dev/null +++ b/english/cpp/aspose.pdf/pagecollectionextension/pagecollectionextension/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::PageCollectionExtension::PageCollectionExtension constructor +linktitle: PageCollectionExtension +second_title: Aspose.PDF for C++ API Reference +description: 'How to use PageCollectionExtension constructor of Aspose::Pdf::PageCollectionExtension class in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf/pagecollectionextension/pagecollectionextension/ +--- +## PageCollectionExtension::PageCollectionExtension constructor + + + + +```cpp +Aspose::Pdf::PageCollectionExtension::PageCollectionExtension()=delete +``` + +## See Also + +* Class [PageCollectionExtension](../) +* Namespace [Aspose::Pdf](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf/pagecollectionextension/updatepagination/_index.md b/english/cpp/aspose.pdf/pagecollectionextension/updatepagination/_index.md new file mode 100644 index 0000000000..b49ae4d8e9 --- /dev/null +++ b/english/cpp/aspose.pdf/pagecollectionextension/updatepagination/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::PageCollectionExtension::UpdatePagination method +linktitle: UpdatePagination +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::PageCollectionExtension::UpdatePagination method. Updates the header and footer page numbers and dates for all pages. This will work if the document has at least one pagination artifact with special settings data. All pages in the collection will be updated with the source artifact according to its settings in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf/pagecollectionextension/updatepagination/ +--- +## PageCollectionExtension::UpdatePagination method + + +Updates the header and footer page numbers and dates for all pages. This will work if the document has at least one pagination artifact with special settings data. All pages in the collection will be updated with the source artifact according to its settings. + +```cpp +static void Aspose::Pdf::PageCollectionExtension::UpdatePagination(System::SharedPtr pageCollection) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pageCollection | System::SharedPtr\ | The page collection. | + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [PageCollection](../../pagecollection/) +* Class [PageCollectionExtension](../) +* Namespace [Aspose::Pdf](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf/pagecoordinatetype/_index.md b/english/cpp/aspose.pdf/pagecoordinatetype/_index.md index b6685f805f..b52ee062e9 100644 --- a/english/cpp/aspose.pdf/pagecoordinatetype/_index.md +++ b/english/cpp/aspose.pdf/pagecoordinatetype/_index.md @@ -4,7 +4,7 @@ linktitle: PageCoordinateType second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::PageCoordinateType enum. Describes page coordinate type in C++.' type: docs -weight: 21300 +weight: 21500 url: /cpp/aspose.pdf/pagecoordinatetype/ --- ## PageCoordinateType enum diff --git a/english/cpp/aspose.pdf/pageinfo/_index.md b/english/cpp/aspose.pdf/pageinfo/_index.md index e29d709e64..6222bae6eb 100644 --- a/english/cpp/aspose.pdf/pageinfo/_index.md +++ b/english/cpp/aspose.pdf/pageinfo/_index.md @@ -4,7 +4,7 @@ linktitle: PageInfo second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::PageInfo class. Represents the page information in C++.' type: docs -weight: 11200 +weight: 11300 url: /cpp/aspose.pdf/pageinfo/ --- ## PageInfo class diff --git a/english/cpp/aspose.pdf/pagelabel/_index.md b/english/cpp/aspose.pdf/pagelabel/_index.md index fbeaac6d7c..d4ca0ed3a6 100644 --- a/english/cpp/aspose.pdf/pagelabel/_index.md +++ b/english/cpp/aspose.pdf/pagelabel/_index.md @@ -4,7 +4,7 @@ linktitle: PageLabel second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::PageLabel class. Class representing Page Label range in C++.' type: docs -weight: 11300 +weight: 11400 url: /cpp/aspose.pdf/pagelabel/ --- ## PageLabel class diff --git a/english/cpp/aspose.pdf/pagelabelcollection/_index.md b/english/cpp/aspose.pdf/pagelabelcollection/_index.md index 5ae70fe1cf..cbfcbbb59b 100644 --- a/english/cpp/aspose.pdf/pagelabelcollection/_index.md +++ b/english/cpp/aspose.pdf/pagelabelcollection/_index.md @@ -4,7 +4,7 @@ linktitle: PageLabelCollection second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::PageLabelCollection class. Class represeingting page label collection in C++.' type: docs -weight: 11400 +weight: 11500 url: /cpp/aspose.pdf/pagelabelcollection/ --- ## PageLabelCollection class diff --git a/english/cpp/aspose.pdf/pagelayout/_index.md b/english/cpp/aspose.pdf/pagelayout/_index.md index e71d7eb68d..ddd7db4c50 100644 --- a/english/cpp/aspose.pdf/pagelayout/_index.md +++ b/english/cpp/aspose.pdf/pagelayout/_index.md @@ -4,7 +4,7 @@ linktitle: PageLayout second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::PageLayout enum. Descibes page layout in C++.' type: docs -weight: 21400 +weight: 21600 url: /cpp/aspose.pdf/pagelayout/ --- ## PageLayout enum diff --git a/english/cpp/aspose.pdf/pagelayoutconverter/_index.md b/english/cpp/aspose.pdf/pagelayoutconverter/_index.md index 19d6fe0430..5b31f553b2 100644 --- a/english/cpp/aspose.pdf/pagelayoutconverter/_index.md +++ b/english/cpp/aspose.pdf/pagelayoutconverter/_index.md @@ -4,7 +4,7 @@ linktitle: PageLayoutConverter second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::PageLayoutConverter class in C++.' type: docs -weight: 11500 +weight: 11600 url: /cpp/aspose.pdf/pagelayoutconverter/ --- ## PageLayoutConverter class diff --git a/english/cpp/aspose.pdf/pagemode/_index.md b/english/cpp/aspose.pdf/pagemode/_index.md index 5ece0e14f9..bd186c375d 100644 --- a/english/cpp/aspose.pdf/pagemode/_index.md +++ b/english/cpp/aspose.pdf/pagemode/_index.md @@ -4,7 +4,7 @@ linktitle: PageMode second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::PageMode enum. Class descibes used components of the document page in C++.' type: docs -weight: 21500 +weight: 21700 url: /cpp/aspose.pdf/pagemode/ --- ## PageMode enum diff --git a/english/cpp/aspose.pdf/pagemodeconverter/_index.md b/english/cpp/aspose.pdf/pagemodeconverter/_index.md index c367e64d8b..76c0947194 100644 --- a/english/cpp/aspose.pdf/pagemodeconverter/_index.md +++ b/english/cpp/aspose.pdf/pagemodeconverter/_index.md @@ -4,7 +4,7 @@ linktitle: PageModeConverter second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::PageModeConverter class in C++.' type: docs -weight: 11600 +weight: 11700 url: /cpp/aspose.pdf/pagemodeconverter/ --- ## PageModeConverter class diff --git a/english/cpp/aspose.pdf/pagenumberstamp/_index.md b/english/cpp/aspose.pdf/pagenumberstamp/_index.md index 1bd9c6910c..0b3f2f8c40 100644 --- a/english/cpp/aspose.pdf/pagenumberstamp/_index.md +++ b/english/cpp/aspose.pdf/pagenumberstamp/_index.md @@ -4,7 +4,7 @@ linktitle: PageNumberStamp second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::PageNumberStamp class. Represents page number stamp and used to number pages in C++.' type: docs -weight: 11700 +weight: 11800 url: /cpp/aspose.pdf/pagenumberstamp/ --- ## PageNumberStamp class diff --git a/english/cpp/aspose.pdf/pagesize/_index.md b/english/cpp/aspose.pdf/pagesize/_index.md index 96ddd30fb2..30f0f1f3ad 100644 --- a/english/cpp/aspose.pdf/pagesize/_index.md +++ b/english/cpp/aspose.pdf/pagesize/_index.md @@ -4,7 +4,7 @@ linktitle: PageSize second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::PageSize class. Class representing size of page in PDF document in C++.' type: docs -weight: 11800 +weight: 11900 url: /cpp/aspose.pdf/pagesize/ --- ## PageSize class diff --git a/english/cpp/aspose.pdf/paragraphs/_index.md b/english/cpp/aspose.pdf/paragraphs/_index.md index 09e076d872..41a51ea510 100644 --- a/english/cpp/aspose.pdf/paragraphs/_index.md +++ b/english/cpp/aspose.pdf/paragraphs/_index.md @@ -4,7 +4,7 @@ linktitle: Paragraphs second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Paragraphs class. This class represents paragraph collection in C++.' type: docs -weight: 11900 +weight: 12000 url: /cpp/aspose.pdf/paragraphs/ --- ## Paragraphs class diff --git a/english/cpp/aspose.pdf/passwordtype/_index.md b/english/cpp/aspose.pdf/passwordtype/_index.md index 7fcb9f4aec..8bbcaa5910 100644 --- a/english/cpp/aspose.pdf/passwordtype/_index.md +++ b/english/cpp/aspose.pdf/passwordtype/_index.md @@ -4,7 +4,7 @@ linktitle: PasswordType second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::PasswordType enum. This enum represents known password types used for password protected pdf documents in C++.' type: docs -weight: 21600 +weight: 21800 url: /cpp/aspose.pdf/passwordtype/ --- ## PasswordType enum diff --git a/english/cpp/aspose.pdf/pclloadoptions/_index.md b/english/cpp/aspose.pdf/pclloadoptions/_index.md index 99931916bc..2d51a2c517 100644 --- a/english/cpp/aspose.pdf/pclloadoptions/_index.md +++ b/english/cpp/aspose.pdf/pclloadoptions/_index.md @@ -4,7 +4,7 @@ linktitle: PclLoadOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::PclLoadOptions class. Represents options for loading(import) PCL file into pdf document in C++.' type: docs -weight: 12000 +weight: 12100 url: /cpp/aspose.pdf/pclloadoptions/ --- ## PclLoadOptions class @@ -29,13 +29,6 @@ class PclLoadOptions : public Aspose::Pdf::LoadOptions, | [get_BatchSize](./get_batchsize/)() override | Defines batch size if batched conversion is applicable to source and destination formats pair. | | [PclLoadOptions](./pclloadoptions/)() | Creates [PclLoadOptions](./) object. | | [set_BatchSize](./set_batchsize/)(int32_t) override | Defines batch size if batched conversion is applicable to source and destination formats pair. | -## Fields - -| Field | Description | -| --- | --- | -| [ConversionEngine](./conversionengine/) | Defines conversion engine that will be used for conversion. | -| [Exceptions](./exceptions/) | List of conversion errors. | -| [SupressErrors](./supresserrors/) | Gets or sets boolean value which indicates will PCL conversion errors should be supressed. | ## See Also * Class [LoadOptions](../loadoptions/) diff --git a/english/cpp/aspose.pdf/pclloadoptions/conversionengines/_index.md b/english/cpp/aspose.pdf/pclloadoptions/conversionengines/_index.md index 4d477730b4..dc77c8567c 100644 --- a/english/cpp/aspose.pdf/pclloadoptions/conversionengines/_index.md +++ b/english/cpp/aspose.pdf/pclloadoptions/conversionengines/_index.md @@ -4,7 +4,7 @@ linktitle: ConversionEngines second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::PclLoadOptions::ConversionEngines enum. Enumerates conversion engines that can be used for conversion in C++.' type: docs -weight: 700 +weight: 400 url: /cpp/aspose.pdf/pclloadoptions/conversionengines/ --- ## ConversionEngines enum diff --git a/english/cpp/aspose.pdf/pdfanonspecificationflags/_index.md b/english/cpp/aspose.pdf/pdfanonspecificationflags/_index.md index 79aa5a4273..bf1942fee8 100644 --- a/english/cpp/aspose.pdf/pdfanonspecificationflags/_index.md +++ b/english/cpp/aspose.pdf/pdfanonspecificationflags/_index.md @@ -4,7 +4,7 @@ linktitle: PdfANonSpecificationFlags second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::PdfANonSpecificationFlags class. This class holds flags to control PDF/A conversion for cases when source PDF document doesn''t correspond to PDF specification. If flags of this clas are used it decreases performance but it''s necessary when source PDF document can''t be convert into PDF/A format by usual way. By default all flags are set to false in C++.' type: docs -weight: 12100 +weight: 12200 url: /cpp/aspose.pdf/pdfanonspecificationflags/ --- ## PdfANonSpecificationFlags class diff --git a/english/cpp/aspose.pdf/pdfasymbolicfontencodingstrategy/_index.md b/english/cpp/aspose.pdf/pdfasymbolicfontencodingstrategy/_index.md index a83b98b13a..2ceb548b58 100644 --- a/english/cpp/aspose.pdf/pdfasymbolicfontencodingstrategy/_index.md +++ b/english/cpp/aspose.pdf/pdfasymbolicfontencodingstrategy/_index.md @@ -4,7 +4,7 @@ linktitle: PdfASymbolicFontEncodingStrategy second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::PdfASymbolicFontEncodingStrategy class. This class describes rules which can be used to tune process of copying encoding data for cases when TrueType symbolic font has more than one encoding. Some PDF documents after conversion into PDF/A format could give an error "More than one encoding in symbolic TrueType font''s cmap". What is a reason of this error? All TrueType symbolic fonts have special table "cmap" in it''s internal data. This table maps character codes to glyph indices. And this table could contain different encoding subtables which describe encodings used. See advanced info about cmap tables at . Usually cmap table contains several encoding subtables, but PDF/A standard requires that either only one encoding subtable must be left for this font in PDF/A document or there must be a (3,0) encoding subtable among this font subtables. And key question here - what data must be taken from another subtables to copy into destination encoding table (3,0)? Majority of fonts have ''well-formed'' cmap tables where every encoding subtable is fully consistent with another subtable. But some fonts have cmap tables with collisions - where for example one subtable has glyph index 100 for unicode 100, but another subtable has glyph index 200 for the same unicode 100. To solve this problems special strategy needed. By default following strategy used: mac subtable(1,0) is looked for. If this table is found, only this data used to fill destination table (3,0). If mac subtable is not found then all subtables except (3,0) are iterated and used to copy data into destination (3,0) subtable. Also mapping for every unicode(unicode, glyph index) is copied into destination table only if destination table does not have this unicode at current moment. So, for example if first subtabe has glyph index 100 for unicode 100, and next subtable has glyph index 200 for the same unicode 100, only data from first subtable (unicode=100, glyph index = 100) will be copied. So each previous subtable takes precedence over the next. Properties of this class PdfASymbolicFontEncodingStrategy help tune default behaviour. If property PreferredCmapEncodingTable of type QueueItem::CMapEncodingTableType is set, then relevant subtable will be used in precedence to mac subtable(1,0). Value ''MacTable'' from enumeration QueueItem::CMapEncodingTableType has no sense in this case, cause it points on the same mac subtable (1,0) which will be used by default. Property CmapEncodingTablesPriorityQueue discards all priorities for any subtable. If this property is set, then only subtables from declared queue will be used in specified order. If subtables specified are not found then default iteration of all subtables and copy strategy described above will be used. Object QueueItem specifies encoding subtable used. This subtable can be set via combination of members(PlatformID, PlatformSpecificId) or via QueueItem::CMapEncodingTableType enumeration. In case when the font has no (3,0) subtable some other subtable will be used to maintain the PDF/A compatibility. The choice of the subtable to use is made under the same rules as described earlier, so that PreferredCmapEncodingTable and CmapEncodingTablesPriorityQueue properties are used to determine the resultant subtable, and if the font doesn''t have the requested subtable(s) either then any existant subtable will be used in C++.' type: docs -weight: 12200 +weight: 12300 url: /cpp/aspose.pdf/pdfasymbolicfontencodingstrategy/ --- ## PdfASymbolicFontEncodingStrategy class diff --git a/english/cpp/aspose.pdf/pdfexception/_index.md b/english/cpp/aspose.pdf/pdfexception/_index.md index e4c474b2f9..aec15ac269 100644 --- a/english/cpp/aspose.pdf/pdfexception/_index.md +++ b/english/cpp/aspose.pdf/pdfexception/_index.md @@ -4,7 +4,7 @@ linktitle: PdfException second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::PdfException typedef in C++.' type: docs -weight: 24900 +weight: 25100 url: /cpp/aspose.pdf/pdfexception/ --- ## PdfException typedef diff --git a/english/cpp/aspose.pdf/pdfformat/_index.md b/english/cpp/aspose.pdf/pdfformat/_index.md index 3940f69523..fcd5ef531a 100644 --- a/english/cpp/aspose.pdf/pdfformat/_index.md +++ b/english/cpp/aspose.pdf/pdfformat/_index.md @@ -4,7 +4,7 @@ linktitle: PdfFormat second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::PdfFormat enum. This class represents an pdf format in C++.' type: docs -weight: 21700 +weight: 21900 url: /cpp/aspose.pdf/pdfformat/ --- ## PdfFormat enum diff --git a/english/cpp/aspose.pdf/pdfformatconversionoptions/_index.md b/english/cpp/aspose.pdf/pdfformatconversionoptions/_index.md index c9cffb7a9e..b791786dda 100644 --- a/english/cpp/aspose.pdf/pdfformatconversionoptions/_index.md +++ b/english/cpp/aspose.pdf/pdfformatconversionoptions/_index.md @@ -4,7 +4,7 @@ linktitle: PdfFormatConversionOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::PdfFormatConversionOptions class. represents set of options for convert PDF document in C++.' type: docs -weight: 12300 +weight: 12400 url: /cpp/aspose.pdf/pdfformatconversionoptions/ --- ## PdfFormatConversionOptions class @@ -73,11 +73,6 @@ class PdfFormatConversionOptions : public System::Object | [set_SymbolicFontEncodingStrategy](./set_symbolicfontencodingstrategy/)(System::SharedPtr\) | Strategy to copy encoding data for symbolic fonts if symbolic TrueType font has more than one encoding subtable. | | [set_TransparencyAction](./set_transparencyaction/)(ConvertTransparencyAction) | Action for image masked objects. | | [set_UnicodeProcessingRules](./set_unicodeprocessingrules/)(System::SharedPtr\) | Rules to solve problems with unicode mapping. Can be null. | -## Fields - -| Field | Description | -| --- | --- | -| [AlignStrategy](./alignstrategy/) | Strategy to align text. This parameter has sense only when flag [AlignText](../) is set to true. | ## See Also * Class [Object](../../system/object/) diff --git a/english/cpp/aspose.pdf/pdfformatconversionoptions/puaprocessingstrategy/_index.md b/english/cpp/aspose.pdf/pdfformatconversionoptions/puaprocessingstrategy/_index.md index 00d1f61d4f..f103efbdbf 100644 --- a/english/cpp/aspose.pdf/pdfformatconversionoptions/puaprocessingstrategy/_index.md +++ b/english/cpp/aspose.pdf/pdfformatconversionoptions/puaprocessingstrategy/_index.md @@ -4,7 +4,7 @@ linktitle: PuaProcessingStrategy second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::PdfFormatConversionOptions::PuaProcessingStrategy enum. Some PDF documents have special unicode symbols, which are belonged to Private Use Area (PUA), see description at . This symbols cause an PDF/A compliant errors like "Text is mapped to Unicode Private Use Area but no ActualText entry is present". This enumeration declares a strategies which can be used to handle PUA symbols in C++.' type: docs -weight: 3900 +weight: 3800 url: /cpp/aspose.pdf/pdfformatconversionoptions/puaprocessingstrategy/ --- ## PuaProcessingStrategy enum diff --git a/english/cpp/aspose.pdf/pdfformatconversionoptions/removefontsstrategy/_index.md b/english/cpp/aspose.pdf/pdfformatconversionoptions/removefontsstrategy/_index.md index 3b9952b753..2820a0e4b9 100644 --- a/english/cpp/aspose.pdf/pdfformatconversionoptions/removefontsstrategy/_index.md +++ b/english/cpp/aspose.pdf/pdfformatconversionoptions/removefontsstrategy/_index.md @@ -4,7 +4,7 @@ linktitle: RemoveFontsStrategy second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::PdfFormatConversionOptions::RemoveFontsStrategy enum. Some documens have large size after converison into PDF/A format. To reduce file size for these documents it''s necessary to define a strategy of fonts removing. This enumeration declares a strategies which can be used to optimize fonts usage. Every strategy from this enumeration has sense only when flag OptimizeFileSize is set in C++.' type: docs -weight: 4000 +weight: 3900 url: /cpp/aspose.pdf/pdfformatconversionoptions/removefontsstrategy/ --- ## RemoveFontsStrategy enum diff --git a/english/cpp/aspose.pdf/pdfformatconversionoptions/segmentalignstrategy/_index.md b/english/cpp/aspose.pdf/pdfformatconversionoptions/segmentalignstrategy/_index.md index fd5466f4e8..fa82995b97 100644 --- a/english/cpp/aspose.pdf/pdfformatconversionoptions/segmentalignstrategy/_index.md +++ b/english/cpp/aspose.pdf/pdfformatconversionoptions/segmentalignstrategy/_index.md @@ -4,7 +4,7 @@ linktitle: SegmentAlignStrategy second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::PdfFormatConversionOptions::SegmentAlignStrategy enum. Describes strategies used to align document text segments. Now only strategy to restore segments to original bounds is supported. In future another strategies could be added in C++.' type: docs -weight: 4100 +weight: 4000 url: /cpp/aspose.pdf/pdfformatconversionoptions/segmentalignstrategy/ --- ## SegmentAlignStrategy enum diff --git a/english/cpp/aspose.pdf/pdfpagestamp/_index.md b/english/cpp/aspose.pdf/pdfpagestamp/_index.md index f5b1fa1b1e..caf585f206 100644 --- a/english/cpp/aspose.pdf/pdfpagestamp/_index.md +++ b/english/cpp/aspose.pdf/pdfpagestamp/_index.md @@ -4,7 +4,7 @@ linktitle: PdfPageStamp second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::PdfPageStamp class. Class represents stamp which uses PDF page as stamp in C++.' type: docs -weight: 12400 +weight: 12500 url: /cpp/aspose.pdf/pdfpagestamp/ --- ## PdfPageStamp class diff --git a/english/cpp/aspose.pdf/pdfsaveoptions/_index.md b/english/cpp/aspose.pdf/pdfsaveoptions/_index.md index cad5d359ec..78996cbf06 100644 --- a/english/cpp/aspose.pdf/pdfsaveoptions/_index.md +++ b/english/cpp/aspose.pdf/pdfsaveoptions/_index.md @@ -4,7 +4,7 @@ linktitle: PdfSaveOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::PdfSaveOptions class. Save options for export to Pdf format in C++.' type: docs -weight: 12500 +weight: 12600 url: /cpp/aspose.pdf/pdfsaveoptions/ --- ## PdfSaveOptions class diff --git a/english/cpp/aspose.pdf/pdfversion/_index.md b/english/cpp/aspose.pdf/pdfversion/_index.md index b42a46e10b..4c7f2e13bb 100644 --- a/english/cpp/aspose.pdf/pdfversion/_index.md +++ b/english/cpp/aspose.pdf/pdfversion/_index.md @@ -4,7 +4,7 @@ linktitle: PdfVersion second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::PdfVersion enum. This enum represents version of pdf file in C++.' type: docs -weight: 21800 +weight: 22000 url: /cpp/aspose.pdf/pdfversion/ --- ## PdfVersion enum diff --git a/english/cpp/aspose.pdf/pdfversionmethods/_index.md b/english/cpp/aspose.pdf/pdfversionmethods/_index.md index a553f3f2c1..84c67d6960 100644 --- a/english/cpp/aspose.pdf/pdfversionmethods/_index.md +++ b/english/cpp/aspose.pdf/pdfversionmethods/_index.md @@ -4,7 +4,7 @@ linktitle: PdfVersionMethods second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::PdfVersionMethods class. Extra methods for enum PdfVersion in C++.' type: docs -weight: 12600 +weight: 12700 url: /cpp/aspose.pdf/pdfversionmethods/ --- ## PdfVersionMethods class diff --git a/english/cpp/aspose.pdf/pdfxmlloadoptions/_index.md b/english/cpp/aspose.pdf/pdfxmlloadoptions/_index.md index eb6960613d..55d3c80d3e 100644 --- a/english/cpp/aspose.pdf/pdfxmlloadoptions/_index.md +++ b/english/cpp/aspose.pdf/pdfxmlloadoptions/_index.md @@ -4,7 +4,7 @@ linktitle: PdfXmlLoadOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::PdfXmlLoadOptions class. Load options for PdfXml format in C++.' type: docs -weight: 12700 +weight: 12800 url: /cpp/aspose.pdf/pdfxmlloadoptions/ --- ## PdfXmlLoadOptions class diff --git a/english/cpp/aspose.pdf/pdfxmlsaveoptions/_index.md b/english/cpp/aspose.pdf/pdfxmlsaveoptions/_index.md index 59d7e4cf6d..b52d51898c 100644 --- a/english/cpp/aspose.pdf/pdfxmlsaveoptions/_index.md +++ b/english/cpp/aspose.pdf/pdfxmlsaveoptions/_index.md @@ -4,7 +4,7 @@ linktitle: PdfXmlSaveOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::PdfXmlSaveOptions class. Save options for PdfXml format in C++.' type: docs -weight: 12800 +weight: 12900 url: /cpp/aspose.pdf/pdfxmlsaveoptions/ --- ## PdfXmlSaveOptions class @@ -21,12 +21,6 @@ class PdfXmlSaveOptions : public Aspose::Pdf::UnifiedSaveOptions | Method | Description | | --- | --- | | [PdfXmlSaveOptions](./pdfxmlsaveoptions/)() | Constructor ofr PdfXml format. | -## Fields - -| Field | Description | -| --- | --- | -| [IsMultiThreading](../unifiedsaveoptions/ismultithreading/) | Process pages in few threads. | -| [TryMergeAdjacentSameBackgroundImages](../unifiedsaveoptions/trymergeadjacentsamebackgroundimages/) | Sometimes PDFs contain background images (of pages or table cells) constructed from several same tiling background images put one near other. In such case renderers of target formats (f.e MsWord for DOCS format) sometimes generates visible boundaries beetween parts of background images, cause their techniques of image edge smoothing (anti-aliasing) is different from Acrobat Reader. If it looks like exported document contains such visible boundaries between parts of same background images, please try use this setting to get rid of that unwanted effect. ATTENTION! This optimization of quality usually essentially slows down conversion, so, please, use this option only when it's really necessary. | ## See Also * Class [UnifiedSaveOptions](../unifiedsaveoptions/) diff --git a/english/cpp/aspose.pdf/permissions/_index.md b/english/cpp/aspose.pdf/permissions/_index.md index 328aa869c4..698bbf6f8d 100644 --- a/english/cpp/aspose.pdf/permissions/_index.md +++ b/english/cpp/aspose.pdf/permissions/_index.md @@ -4,7 +4,7 @@ linktitle: Permissions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Permissions enum. This enum represents user''s permissions for a pdf in C++.' type: docs -weight: 21900 +weight: 22100 url: /cpp/aspose.pdf/permissions/ --- ## Permissions enum @@ -20,14 +20,14 @@ enum class Permissions | Name | Value | Description | | --- | --- | --- | -| PrintDocument | n/a | (Security handlers of revision 2) Print the document. (Security handlers of revision 3 or greater) Print the document (possibly not at the highest quality level, depending on whether [PrintingQuality](./) is also set). | +| PrintDocument | n/a | ([Security](../../aspose.pdf.security/) handlers of revision 2) Print the document. ([Security](../../aspose.pdf.security/) handlers of revision 3 or greater) Print the document (possibly not at the highest quality level, depending on whether [PrintingQuality](./) is also set). | | ModifyContent | n/a | Modify the contents of the document by operations other than those controlled by [ModifyTextAnnotations](./), [FillForm](./), and 11. | -| ExtractContent | n/a | (Security handlers of revision 2) Copy or otherwise extract text and graphics from the document, including extracting text and graphics (in support of accessibility to users with disabilities or for other purposes). (Security handlers of revision 3 or greater) Copy or otherwise extract text and graphics from the document by operations other than that controlled by [ExtractContentWithDisabilities](./). | +| ExtractContent | n/a | ([Security](../../aspose.pdf.security/) handlers of revision 2) Copy or otherwise extract text and graphics from the document, including extracting text and graphics (in support of accessibility to users with disabilities or for other purposes). ([Security](../../aspose.pdf.security/) handlers of revision 3 or greater) Copy or otherwise extract text and graphics from the document by operations other than that controlled by [ExtractContentWithDisabilities](./). | | ModifyTextAnnotations | n/a | Add or modify text annotations, fill in interactive form fields, and, if [ModifyContent](./) is also set, create or modify interactive form fields (including signature fields). | -| FillForm | n/a | (Security handlers of revision 3 or greater) Fill in existing interactive form fields (including signature fields), even if [ModifyTextAnnotations](./) is clear. | -| ExtractContentWithDisabilities | n/a | (Security handlers of revision 3 or greater) Extract text and graphics (in support of accessibility to users with disabilities or for other purposes). | -| AssembleDocument | n/a | (Security handlers of revision 3 or greater) Assemble the document (insert, rotate, or delete pages and create bookmarks or thumbnail images), even if [ModifyContent](./) is clear. | -| PrintingQuality | n/a | (Security handlers of revision 3 or greater) Print the document to a representation from which a faithful digital copy of the PDF content could be generated. When this bit is clear (and bit 3 is set), printing is limited to a low-level representation of the appearance, possibly of degraded quality. | +| FillForm | n/a | ([Security](../../aspose.pdf.security/) handlers of revision 3 or greater) Fill in existing interactive form fields (including signature fields), even if [ModifyTextAnnotations](./) is clear. | +| ExtractContentWithDisabilities | n/a | ([Security](../../aspose.pdf.security/) handlers of revision 3 or greater) Extract text and graphics (in support of accessibility to users with disabilities or for other purposes). | +| AssembleDocument | n/a | ([Security](../../aspose.pdf.security/) handlers of revision 3 or greater) Assemble the document (insert, rotate, or delete pages and create bookmarks or thumbnail images), even if [ModifyContent](./) is clear. | +| PrintingQuality | n/a | ([Security](../../aspose.pdf.security/) handlers of revision 3 or greater) Print the document to a representation from which a faithful digital copy of the PDF content could be generated. When this bit is clear (and bit 3 is set), printing is limited to a low-level representation of the appearance, possibly of degraded quality. | ## See Also diff --git a/english/cpp/aspose.pdf/point/_index.md b/english/cpp/aspose.pdf/point/_index.md index b24ddd8acd..15426a2447 100644 --- a/english/cpp/aspose.pdf/point/_index.md +++ b/english/cpp/aspose.pdf/point/_index.md @@ -4,7 +4,7 @@ linktitle: Point second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Point class. Represent point with fractional coordinates in C++.' type: docs -weight: 12900 +weight: 13000 url: /cpp/aspose.pdf/point/ --- ## Point class diff --git a/english/cpp/aspose.pdf/point3d/_index.md b/english/cpp/aspose.pdf/point3d/_index.md index d11f9086e4..58538529a4 100644 --- a/english/cpp/aspose.pdf/point3d/_index.md +++ b/english/cpp/aspose.pdf/point3d/_index.md @@ -4,7 +4,7 @@ linktitle: Point3D second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Point3D class. Represent point with fractional coordinates in C++.' type: docs -weight: 13000 +weight: 13100 url: /cpp/aspose.pdf/point3d/ --- ## Point3D class diff --git a/english/cpp/aspose.pdf/pptxsaveoptions/_index.md b/english/cpp/aspose.pdf/pptxsaveoptions/_index.md index df69204369..9912ec0563 100644 --- a/english/cpp/aspose.pdf/pptxsaveoptions/_index.md +++ b/english/cpp/aspose.pdf/pptxsaveoptions/_index.md @@ -4,7 +4,7 @@ linktitle: PptxSaveOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::PptxSaveOptions class. Save options for export to SVG format in C++.' type: docs -weight: 13100 +weight: 13200 url: /cpp/aspose.pdf/pptxsaveoptions/ --- ## PptxSaveOptions class @@ -31,12 +31,6 @@ class PptxSaveOptions : public Aspose::Pdf::UnifiedSaveOptions | [set_OptimizeTextBoxes](./set_optimizetextboxes/)(bool) | Toggles text columns recognition. | | [set_SeparateImages](./set_separateimages/)(bool) | If set to true then images are separated from all other graphics. | | [set_SlidesAsImages](./set_slidesasimages/)(bool) | If set to true then all the content is recognized as images (one per page) | -## Fields - -| Field | Description | -| --- | --- | -| [IsMultiThreading](../unifiedsaveoptions/ismultithreading/) | Process pages in few threads. | -| [TryMergeAdjacentSameBackgroundImages](../unifiedsaveoptions/trymergeadjacentsamebackgroundimages/) | Sometimes PDFs contain background images (of pages or table cells) constructed from several same tiling background images put one near other. In such case renderers of target formats (f.e MsWord for DOCS format) sometimes generates visible boundaries beetween parts of background images, cause their techniques of image edge smoothing (anti-aliasing) is different from Acrobat Reader. If it looks like exported document contains such visible boundaries between parts of same background images, please try use this setting to get rid of that unwanted effect. ATTENTION! This optimization of quality usually essentially slows down conversion, so, please, use this option only when it's really necessary. | ## See Also * Class [UnifiedSaveOptions](../unifiedsaveoptions/) diff --git a/english/cpp/aspose.pdf/printduplex/_index.md b/english/cpp/aspose.pdf/printduplex/_index.md index 96f4b7c4db..ace24b1763 100644 --- a/english/cpp/aspose.pdf/printduplex/_index.md +++ b/english/cpp/aspose.pdf/printduplex/_index.md @@ -4,7 +4,7 @@ linktitle: PrintDuplex second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::PrintDuplex enum. The paper handling option to use when printing the file from the print dialog in C++.' type: docs -weight: 22000 +weight: 22200 url: /cpp/aspose.pdf/printduplex/ --- ## PrintDuplex enum diff --git a/english/cpp/aspose.pdf/printduplexconverter/_index.md b/english/cpp/aspose.pdf/printduplexconverter/_index.md index e1de0b59a2..f473a9f212 100644 --- a/english/cpp/aspose.pdf/printduplexconverter/_index.md +++ b/english/cpp/aspose.pdf/printduplexconverter/_index.md @@ -4,7 +4,7 @@ linktitle: PrintDuplexConverter second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::PrintDuplexConverter class in C++.' type: docs -weight: 13200 +weight: 13300 url: /cpp/aspose.pdf/printduplexconverter/ --- ## PrintDuplexConverter class diff --git a/english/cpp/aspose.pdf/printscaling/_index.md b/english/cpp/aspose.pdf/printscaling/_index.md index bb399d305b..4f22bacc72 100644 --- a/english/cpp/aspose.pdf/printscaling/_index.md +++ b/english/cpp/aspose.pdf/printscaling/_index.md @@ -4,7 +4,7 @@ linktitle: PrintScaling second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::PrintScaling enum. The page scaling option that shall be selected when a print dialog is displayed for this document in C++.' type: docs -weight: 22100 +weight: 22300 url: /cpp/aspose.pdf/printscaling/ --- ## PrintScaling enum diff --git a/english/cpp/aspose.pdf/printscalingconverter/_index.md b/english/cpp/aspose.pdf/printscalingconverter/_index.md index 918bb4617d..eb7c78e2c9 100644 --- a/english/cpp/aspose.pdf/printscalingconverter/_index.md +++ b/english/cpp/aspose.pdf/printscalingconverter/_index.md @@ -4,7 +4,7 @@ linktitle: PrintScalingConverter second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::PrintScalingConverter class. Represents conversion routines between PrintScaling value and string representation in C++.' type: docs -weight: 13300 +weight: 13400 url: /cpp/aspose.pdf/printscalingconverter/ --- ## PrintScalingConverter class diff --git a/english/cpp/aspose.pdf/producttype/_index.md b/english/cpp/aspose.pdf/producttype/_index.md index e39821a0dc..46786f9101 100644 --- a/english/cpp/aspose.pdf/producttype/_index.md +++ b/english/cpp/aspose.pdf/producttype/_index.md @@ -4,7 +4,7 @@ linktitle: ProductType second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::ProductType enum. Which product of the license or black list : Aspose, Conholdate, Market in C++.' type: docs -weight: 22200 +weight: 22400 url: /cpp/aspose.pdf/producttype/ --- ## ProductType enum diff --git a/english/cpp/aspose.pdf/progresseventtype/_index.md b/english/cpp/aspose.pdf/progresseventtype/_index.md index 472487fae0..3dbfd97e32 100644 --- a/english/cpp/aspose.pdf/progresseventtype/_index.md +++ b/english/cpp/aspose.pdf/progresseventtype/_index.md @@ -4,7 +4,7 @@ linktitle: ProgressEventType second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::ProgressEventType enum. This enum describes possible progress event types that can occure during conversion in C++.' type: docs -weight: 22300 +weight: 22500 url: /cpp/aspose.pdf/progresseventtype/ --- ## ProgressEventType enum diff --git a/english/cpp/aspose.pdf/psloadoptions/_index.md b/english/cpp/aspose.pdf/psloadoptions/_index.md index 999c15609f..024a24bf04 100644 --- a/english/cpp/aspose.pdf/psloadoptions/_index.md +++ b/english/cpp/aspose.pdf/psloadoptions/_index.md @@ -4,7 +4,7 @@ linktitle: PsLoadOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::PsLoadOptions class. Represents options for loading/importing of .mht-file into pdf document in C++.' type: docs -weight: 13400 +weight: 13500 url: /cpp/aspose.pdf/psloadoptions/ --- ## PsLoadOptions class diff --git a/english/cpp/aspose.pdf/pssaveoptions/_index.md b/english/cpp/aspose.pdf/pssaveoptions/_index.md index 74b88baa02..ace8d98c85 100644 --- a/english/cpp/aspose.pdf/pssaveoptions/_index.md +++ b/english/cpp/aspose.pdf/pssaveoptions/_index.md @@ -4,7 +4,7 @@ linktitle: PsSaveOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::PsSaveOptions class. Save options for export to PS (PostScript) or EPS format in C++.' type: docs -weight: 13500 +weight: 13600 url: /cpp/aspose.pdf/pssaveoptions/ --- ## PsSaveOptions class @@ -26,12 +26,6 @@ class PsSaveOptions : public Aspose::Pdf::UnifiedSaveOptions | [PsSaveOptions](./pssaveoptions/)(Aspose::Pdf::SaveFormat) | Constructor. | | [set_EmbedFont](./set_embedfont/)(bool) | Gets/sets flag that indicates if fonts must be embedded in resulting PS document. | | [set_EmbedFontAs](./set_embedfontas/)(System::String) | Gets/sets type in which fonts must be embedded in resulting PS document. | -## Fields - -| Field | Description | -| --- | --- | -| [IsMultiThreading](../unifiedsaveoptions/ismultithreading/) | Process pages in few threads. | -| [TryMergeAdjacentSameBackgroundImages](../unifiedsaveoptions/trymergeadjacentsamebackgroundimages/) | Sometimes PDFs contain background images (of pages or table cells) constructed from several same tiling background images put one near other. In such case renderers of target formats (f.e MsWord for DOCS format) sometimes generates visible boundaries beetween parts of background images, cause their techniques of image edge smoothing (anti-aliasing) is different from Acrobat Reader. If it looks like exported document contains such visible boundaries between parts of same background images, please try use this setting to get rid of that unwanted effect. ATTENTION! This optimization of quality usually essentially slows down conversion, so, please, use this option only when it's really necessary. | ## See Also * Class [UnifiedSaveOptions](../unifiedsaveoptions/) diff --git a/english/cpp/aspose.pdf/rectangle/_index.md b/english/cpp/aspose.pdf/rectangle/_index.md index e57938a6b3..7e15e20aa4 100644 --- a/english/cpp/aspose.pdf/rectangle/_index.md +++ b/english/cpp/aspose.pdf/rectangle/_index.md @@ -4,7 +4,7 @@ linktitle: Rectangle second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Rectangle class. Class represents rectangle in C++.' type: docs -weight: 13600 +weight: 13700 url: /cpp/aspose.pdf/rectangle/ --- ## Rectangle class diff --git a/english/cpp/aspose.pdf/regexmanager/_index.md b/english/cpp/aspose.pdf/regexmanager/_index.md new file mode 100644 index 0000000000..9911a3437e --- /dev/null +++ b/english/cpp/aspose.pdf/regexmanager/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::RegexManager class +linktitle: RegexManager +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::RegexManager class. Provides a wrapper for regular expression operations with configurable timeout settings in C++.' +type: docs +weight: 13800 +url: /cpp/aspose.pdf/regexmanager/ +--- +## RegexManager class + + +Provides a wrapper for regular expression operations with configurable timeout settings. + +```cpp +class RegexManager +``` + +## Methods + +| Method | Description | +| --- | --- | +| [RegexManager](./regexmanager/)() | | +## See Also + +* Namespace [Aspose::Pdf](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf/regexmanager/regexmanager/_index.md b/english/cpp/aspose.pdf/regexmanager/regexmanager/_index.md new file mode 100644 index 0000000000..3474dc8882 --- /dev/null +++ b/english/cpp/aspose.pdf/regexmanager/regexmanager/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::RegexManager::RegexManager constructor +linktitle: RegexManager +second_title: Aspose.PDF for C++ API Reference +description: 'How to use RegexManager constructor of Aspose::Pdf::RegexManager class in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf/regexmanager/regexmanager/ +--- +## RegexManager::RegexManager constructor + + + + +```cpp +Aspose::Pdf::RegexManager::RegexManager()=delete +``` + +## See Also + +* Class [RegexManager](../) +* Namespace [Aspose::Pdf](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf/renderingoptions/_index.md b/english/cpp/aspose.pdf/renderingoptions/_index.md index a5680a5c25..2e0271eddc 100644 --- a/english/cpp/aspose.pdf/renderingoptions/_index.md +++ b/english/cpp/aspose.pdf/renderingoptions/_index.md @@ -4,7 +4,7 @@ linktitle: RenderingOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::RenderingOptions class. Represents rendering options in C++.' type: docs -weight: 13700 +weight: 13900 url: /cpp/aspose.pdf/renderingoptions/ --- ## RenderingOptions class diff --git a/english/cpp/aspose.pdf/resources/_index.md b/english/cpp/aspose.pdf/resources/_index.md index 8724efc3b5..4ed3231e48 100644 --- a/english/cpp/aspose.pdf/resources/_index.md +++ b/english/cpp/aspose.pdf/resources/_index.md @@ -4,7 +4,7 @@ linktitle: Resources second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Resources class. Class representing page resources in C++.' type: docs -weight: 13800 +weight: 14000 url: /cpp/aspose.pdf/resources/ --- ## Resources class diff --git a/english/cpp/aspose.pdf/returnaction/_index.md b/english/cpp/aspose.pdf/returnaction/_index.md index a0b258b614..4b3cea9ba7 100644 --- a/english/cpp/aspose.pdf/returnaction/_index.md +++ b/english/cpp/aspose.pdf/returnaction/_index.md @@ -4,7 +4,7 @@ linktitle: ReturnAction second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::ReturnAction enum. Enum represented a program workflow action in case of invoking the IWarningCallback::Warning(Aspose::Pdf::WarningInfo) method in C++.' type: docs -weight: 22400 +weight: 22600 url: /cpp/aspose.pdf/returnaction/ --- ## ReturnAction enum diff --git a/english/cpp/aspose.pdf/rgbtodevicegrayconversionstrategy/_index.md b/english/cpp/aspose.pdf/rgbtodevicegrayconversionstrategy/_index.md index ae4f7b67eb..925f2502b8 100644 --- a/english/cpp/aspose.pdf/rgbtodevicegrayconversionstrategy/_index.md +++ b/english/cpp/aspose.pdf/rgbtodevicegrayconversionstrategy/_index.md @@ -4,7 +4,7 @@ linktitle: RgbToDeviceGrayConversionStrategy second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::RgbToDeviceGrayConversionStrategy class. Represents rgb to device gray color spaces conversion strategy in C++.' type: docs -weight: 13900 +weight: 14100 url: /cpp/aspose.pdf/rgbtodevicegrayconversionstrategy/ --- ## RgbToDeviceGrayConversionStrategy class diff --git a/english/cpp/aspose.pdf/rotation/_index.md b/english/cpp/aspose.pdf/rotation/_index.md index b3ffe4db4a..6d89d5459e 100644 --- a/english/cpp/aspose.pdf/rotation/_index.md +++ b/english/cpp/aspose.pdf/rotation/_index.md @@ -4,7 +4,7 @@ linktitle: Rotation second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Rotation enum. Enumeration of possible rotation values in C++.' type: docs -weight: 22500 +weight: 22700 url: /cpp/aspose.pdf/rotation/ --- ## Rotation enum diff --git a/english/cpp/aspose.pdf/row/_index.md b/english/cpp/aspose.pdf/row/_index.md index 0f694ce27b..deffb46fed 100644 --- a/english/cpp/aspose.pdf/row/_index.md +++ b/english/cpp/aspose.pdf/row/_index.md @@ -4,7 +4,7 @@ linktitle: Row second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Row class. Represents a row of the table in C++.' type: docs -weight: 14000 +weight: 14200 url: /cpp/aspose.pdf/row/ --- ## Row class diff --git a/english/cpp/aspose.pdf/rows/_index.md b/english/cpp/aspose.pdf/rows/_index.md index e1096d0bc1..c73b8ca15c 100644 --- a/english/cpp/aspose.pdf/rows/_index.md +++ b/english/cpp/aspose.pdf/rows/_index.md @@ -4,7 +4,7 @@ linktitle: Rows second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Rows class. Represents a rows collection of table in C++.' type: docs -weight: 14100 +weight: 14300 url: /cpp/aspose.pdf/rows/ --- ## Rows class diff --git a/english/cpp/aspose.pdf/saveformat/_index.md b/english/cpp/aspose.pdf/saveformat/_index.md index def3d81577..014072d3ed 100644 --- a/english/cpp/aspose.pdf/saveformat/_index.md +++ b/english/cpp/aspose.pdf/saveformat/_index.md @@ -4,7 +4,7 @@ linktitle: SaveFormat second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::SaveFormat enum. Specifies format in C++.' type: docs -weight: 22600 +weight: 22800 url: /cpp/aspose.pdf/saveformat/ --- ## SaveFormat enum diff --git a/english/cpp/aspose.pdf/saveoptions/_index.md b/english/cpp/aspose.pdf/saveoptions/_index.md index e86ec6f978..5df926e8ef 100644 --- a/english/cpp/aspose.pdf/saveoptions/_index.md +++ b/english/cpp/aspose.pdf/saveoptions/_index.md @@ -4,7 +4,7 @@ linktitle: SaveOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::SaveOptions class. SaveOptions type hold level of abstraction on individual save options in C++.' type: docs -weight: 14200 +weight: 14400 url: /cpp/aspose.pdf/saveoptions/ --- ## SaveOptions class diff --git a/english/cpp/aspose.pdf/saveoptions/borderinfo/_index.md b/english/cpp/aspose.pdf/saveoptions/borderinfo/_index.md index 6632714841..fcf6802941 100644 --- a/english/cpp/aspose.pdf/saveoptions/borderinfo/_index.md +++ b/english/cpp/aspose.pdf/saveoptions/borderinfo/_index.md @@ -22,14 +22,6 @@ class BorderInfo : public System::Object | --- | --- | | [BorderInfo](./borderinfo/)() | Creates instance of [BorderInfo](./) class. | | [BorderInfo](./borderinfo/)(System::SharedPtr\) | Creates instance of [BorderInfo](./) class and initializes all elements of border(Top, Left, Right, Bottom) with attributes copied from supplied border style. | -## Fields - -| Field | Description | -| --- | --- | -| [BottomStyleIfAny](./bottomstyleifany/) | Represents bottom part(if any) of border. | -| [LeftStyleIfAny](./leftstyleifany/) | Represents left part(if any) of border. | -| [RightStyleIfAny](./rightstyleifany/) | Represents right part(if any) of border. | -| [TopStyleIfAny](./topstyleifany/) | Represents top part(if any) of border. | ## See Also * Class [Object](../../../system/object/) diff --git a/english/cpp/aspose.pdf/saveoptions/borderpartstyle/_index.md b/english/cpp/aspose.pdf/saveoptions/borderpartstyle/_index.md index 101d970087..46286fcb8b 100644 --- a/english/cpp/aspose.pdf/saveoptions/borderpartstyle/_index.md +++ b/english/cpp/aspose.pdf/saveoptions/borderpartstyle/_index.md @@ -23,12 +23,6 @@ class BorderPartStyle : public System::Object | [BorderPartStyle](./borderpartstyle/)() | | | [get_WidthInPoints](./get_widthinpoints/)() const | Represents border line's width in points. Must be number greater then zero. | | [set_WidthInPoints](./set_widthinpoints/)(int32_t) | Represents border line's width in points. Must be number greater then zero. | -## Fields - -| Field | Description | -| --- | --- | -| [Color](./color/) | Represents border line's line color. | -| [LineType](./linetype/) | Represents border line's type - f.e. Dashed or Solid. | ## See Also * Class [Object](../../../system/object/) diff --git a/english/cpp/aspose.pdf/saveoptions/margininfo/_index.md b/english/cpp/aspose.pdf/saveoptions/margininfo/_index.md index e3976dfd2b..d2fa39eaab 100644 --- a/english/cpp/aspose.pdf/saveoptions/margininfo/_index.md +++ b/english/cpp/aspose.pdf/saveoptions/margininfo/_index.md @@ -22,14 +22,6 @@ class MarginInfo : public System::Object | --- | --- | | [MarginInfo](./margininfo/)() | Creates instance of [MarginInfo](./). | | [MarginInfo](./margininfo/)(System::SharedPtr\) | Creates instance of [MarginInfo](./) class and initializes all elements of page margin(Top, Left, Right, Bottom) with attributes copied from supplied margin style. | -## Fields - -| Field | Description | -| --- | --- | -| [BottomMarginIfAny](./bottommarginifany/) | Represents bottom page margin(if any) | -| [LeftMarginIfAny](./leftmarginifany/) | Represents left page margin(if any) | -| [RightMarginIfAny](./rightmarginifany/) | Represents right page margin(if any) | -| [TopMarginIfAny](./topmarginifany/) | Represents top page margin(if any) | ## See Also * Class [Object](../../../system/object/) diff --git a/english/cpp/aspose.pdf/saveoptions/resourcesavinginfo/_index.md b/english/cpp/aspose.pdf/saveoptions/resourcesavinginfo/_index.md index 1cd8cb8193..f616ce66d4 100644 --- a/english/cpp/aspose.pdf/saveoptions/resourcesavinginfo/_index.md +++ b/english/cpp/aspose.pdf/saveoptions/resourcesavinginfo/_index.md @@ -21,13 +21,6 @@ class ResourceSavingInfo : public System::Object | Method | Description | | --- | --- | | [get_ResourceType](./get_resourcetype/)() const | Set by converter. Supposed file name that goes from converter to code of custom method Can be use in custom code to decide how to process or where save that file. | -## Fields - -| Field | Description | -| --- | --- | -| [ContentStream](./contentstream/) | Set by converter. Represents binary content of saved file. | -| [CustomProcessingCancelled](./customprocessingcancelled/) | this flag must set to "true" in custom code if for some reasons proposed file should be processed not with custom code but with converter's code itself in standard for converter way. So, it' setting set to true means that custom code did not process referenced file and converter must handle it itself (in both sences - for saving somewhere and for naming in referencing file). | -| [SupposedFileName](./supposedfilename/) | Set by converter. Supposed file name that goes from converter to code of custom method Can be use in custom code to decide how to process or where save that file. | ## See Also * Class [Object](../../../system/object/) diff --git a/english/cpp/aspose.pdf/stamp/_index.md b/english/cpp/aspose.pdf/stamp/_index.md index ec5b2826ca..aa33533dfe 100644 --- a/english/cpp/aspose.pdf/stamp/_index.md +++ b/english/cpp/aspose.pdf/stamp/_index.md @@ -4,7 +4,7 @@ linktitle: Stamp second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Stamp class. An abstract class for various kinds of stamps which come as descendants in C++.' type: docs -weight: 14300 +weight: 14500 url: /cpp/aspose.pdf/stamp/ --- ## Stamp class diff --git a/english/cpp/aspose.pdf/svgloadoptions/_index.md b/english/cpp/aspose.pdf/svgloadoptions/_index.md index 05ff8cd788..b44a1674bd 100644 --- a/english/cpp/aspose.pdf/svgloadoptions/_index.md +++ b/english/cpp/aspose.pdf/svgloadoptions/_index.md @@ -4,7 +4,7 @@ linktitle: SvgLoadOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::SvgLoadOptions class. Represents options for loading/importing SVG file into pdf document in C++.' type: docs -weight: 14400 +weight: 14600 url: /cpp/aspose.pdf/svgloadoptions/ --- ## SvgLoadOptions class @@ -30,11 +30,6 @@ class SvgLoadOptions : public Aspose::Pdf::LoadOptions | [set_AdjustPageSize](./set_adjustpagesize/)(bool) | Adust pdf page size to svg size. | | [set_PageInfo](./set_pageinfo/)(System::SharedPtr\) | Sets page info that should be applied during loading of document. | | [SvgLoadOptions](./svgloadoptions/)() | Creates [SvgLoadOptions](./) object. | -## Fields - -| Field | Description | -| --- | --- | -| [ConversionEngine](./conversionengine/) | Allows select conversion engine that will be in use during conversion. Currently new engine is in B-testing stage, so this value by default set to [ConversionEngines.LegacyEngine](./conversionengines/). | ## See Also * Class [LoadOptions](../loadoptions/) diff --git a/english/cpp/aspose.pdf/svgloadoptions/conversionengines/_index.md b/english/cpp/aspose.pdf/svgloadoptions/conversionengines/_index.md index f7f9eb861a..ec0455cba7 100644 --- a/english/cpp/aspose.pdf/svgloadoptions/conversionengines/_index.md +++ b/english/cpp/aspose.pdf/svgloadoptions/conversionengines/_index.md @@ -4,7 +4,7 @@ linktitle: ConversionEngines second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::SvgLoadOptions::ConversionEngines enum. Enumerates conversion engines that can be used for conversion in C++.' type: docs -weight: 700 +weight: 600 url: /cpp/aspose.pdf/svgloadoptions/conversionengines/ --- ## ConversionEngines enum diff --git a/english/cpp/aspose.pdf/svgsaveoptions/_index.md b/english/cpp/aspose.pdf/svgsaveoptions/_index.md index 64a9f013b4..f934149657 100644 --- a/english/cpp/aspose.pdf/svgsaveoptions/_index.md +++ b/english/cpp/aspose.pdf/svgsaveoptions/_index.md @@ -4,7 +4,7 @@ linktitle: SvgSaveOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::SvgSaveOptions class. Save options for export to SVG format in C++.' type: docs -weight: 14500 +weight: 14700 url: /cpp/aspose.pdf/svgsaveoptions/ --- ## SvgSaveOptions class @@ -29,16 +29,6 @@ class SvgSaveOptions : public Aspose::Pdf::UnifiedSaveOptions | Method | Description | | --- | --- | | [SvgSaveOptions](./svgsaveoptions/)() | Constructor. | -## Fields - -| Field | Description | -| --- | --- | -| [CompressOutputToZipArchive](./compressoutputtoziparchive/) | Specifies whether output will be created as one zip-archive. Please refer comment to 'TreatTargetFileNameAsDirectory' options to see rules of naming of svg-files of pages for multipage source document, that are also applied to zipped set of output files. | -| [CustomStrategyOfEmbeddedImagesSaving](./customstrategyofembeddedimagessaving/) | This field can contain saving strategy that must be used (if present) during conversion for customized handling of created referenced external images files (like embedded BMP or JPEG) embedded into saved SVG. That strategy must process resources and return string that represents desirable URI of saved resource in generated SVG. If processing for this or that file for some reason must be done by converter's code itself, not in custom code, please set in custom code flag 'CustomProcessingCancelled' of 'imageSavingInfo' parameter's variable It signals to converter that all the necessary steps for processing of that resource must be done in converter itself as if there was no any external custom code . | -| [IsMultiThreading](../unifiedsaveoptions/ismultithreading/) | Process pages in few threads. | -| [ScaleToPixels](./scaletopixels/) | Specifies whether to scale the output document from typographic points to pixels. | -| [TreatTargetFileNameAsDirectory](./treattargetfilenameasdirectory/) | This options defines whether will be created target directory (if absent yet) with same name as requested output file instead of requested output file itself. It so, that directory will contain all output SVG-images of pages (like described below). If no, output files of pages other then first one will be created exactly in requested directory as main output file, but will contain in file name suffix _[2...n], that is defined by page number, f.e. if You define output file "C:\AsposeTests\output.svg" and output will contain several svg-files of pages, then files of pages will be created also in directory "C:\AsposeTests\" and have names 'output.svg', 'output_2.svg', 'output_3.svg' etc. | -| [TryMergeAdjacentSameBackgroundImages](../unifiedsaveoptions/trymergeadjacentsamebackgroundimages/) | Sometimes PDFs contain background images (of pages or table cells) constructed from several same tiling background images put one near other. In such case renderers of target formats (f.e MsWord for DOCS format) sometimes generates visible boundaries beetween parts of background images, cause their techniques of image edge smoothing (anti-aliasing) is different from Acrobat Reader. If it looks like exported document contains such visible boundaries between parts of same background images, please try use this setting to get rid of that unwanted effect. ATTENTION! This optimization of quality usually essentially slows down conversion, so, please, use this option only when it's really necessary. | ## Typedefs | Typedef | Description | diff --git a/english/cpp/aspose.pdf/svgsaveoptions/embeddedimagessavingstrategy/_index.md b/english/cpp/aspose.pdf/svgsaveoptions/embeddedimagessavingstrategy/_index.md index 691aecab6b..c2ffea9dda 100644 --- a/english/cpp/aspose.pdf/svgsaveoptions/embeddedimagessavingstrategy/_index.md +++ b/english/cpp/aspose.pdf/svgsaveoptions/embeddedimagessavingstrategy/_index.md @@ -4,7 +4,7 @@ linktitle: EmbeddedImagesSavingStrategy second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::SvgSaveOptions::EmbeddedImagesSavingStrategy typedef of Aspose::Pdf::SvgSaveOptions class in C++.' type: docs -weight: 600 +weight: 200 url: /cpp/aspose.pdf/svgsaveoptions/embeddedimagessavingstrategy/ --- ## EmbeddedImagesSavingStrategy typedef diff --git a/english/cpp/aspose.pdf/svgsaveoptions/svgexternalimagetype/_index.md b/english/cpp/aspose.pdf/svgsaveoptions/svgexternalimagetype/_index.md index d09d5752c1..e48212239c 100644 --- a/english/cpp/aspose.pdf/svgsaveoptions/svgexternalimagetype/_index.md +++ b/english/cpp/aspose.pdf/svgsaveoptions/svgexternalimagetype/_index.md @@ -4,7 +4,7 @@ linktitle: SvgExternalImageType second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::SvgSaveOptions::SvgExternalImageType enum. enumerates possible types of image files that can be saved as external resources during during Pdf to SVG conversion in C++.' type: docs -weight: 700 +weight: 300 url: /cpp/aspose.pdf/svgsaveoptions/svgexternalimagetype/ --- ## SvgExternalImageType enum diff --git a/english/cpp/aspose.pdf/svgsaveoptions/svgimagesavinginfo/_index.md b/english/cpp/aspose.pdf/svgsaveoptions/svgimagesavinginfo/_index.md index 1a784c64a8..aa2ddb8582 100644 --- a/english/cpp/aspose.pdf/svgsaveoptions/svgimagesavinginfo/_index.md +++ b/english/cpp/aspose.pdf/svgsaveoptions/svgimagesavinginfo/_index.md @@ -4,7 +4,7 @@ linktitle: SvgImageSavingInfo second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::SvgSaveOptions::SvgImageSavingInfo class. This class represents set of data that related to external resource image file''s saving during PDF to HTML conversion in C++.' type: docs -weight: 800 +weight: 400 url: /cpp/aspose.pdf/svgsaveoptions/svgimagesavinginfo/ --- ## SvgImageSavingInfo class @@ -21,14 +21,6 @@ class SvgImageSavingInfo : public Aspose::Pdf::SaveOptions::ResourceSavingInfo | Method | Description | | --- | --- | | [SvgImageSavingInfo](./svgimagesavinginfo/)() | creates new instance of HtmlImageSavingInfo | -## Fields - -| Field | Description | -| --- | --- | -| [ContentStream](../../saveoptions/resourcesavinginfo/contentstream/) | Set by converter. Represents binary content of saved file. | -| [CustomProcessingCancelled](../../saveoptions/resourcesavinginfo/customprocessingcancelled/) | this flag must set to "true" in custom code if for some reasons proposed file should be processed not with custom code but with converter's code itself in standard for converter way. So, it' setting set to true means that custom code did not process referenced file and converter must handle it itself (in both sences - for saving somewhere and for naming in referencing file). | -| [ImageType](./imagetype/) | represent type os saved image referenced in HTML. Set by converter and can be used in custom code to decide what should be done | -| [SupposedFileName](../../saveoptions/resourcesavinginfo/supposedfilename/) | Set by converter. Supposed file name that goes from converter to code of custom method Can be use in custom code to decide how to process or where save that file. | ## See Also * Class [ResourceSavingInfo](../../saveoptions/resourcesavinginfo/) diff --git a/english/cpp/aspose.pdf/table/_index.md b/english/cpp/aspose.pdf/table/_index.md index 4a94c4067b..c1583d50e0 100644 --- a/english/cpp/aspose.pdf/table/_index.md +++ b/english/cpp/aspose.pdf/table/_index.md @@ -4,7 +4,7 @@ linktitle: Table second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Table class. Represents a table that can be added to the page in C++.' type: docs -weight: 14600 +weight: 14800 url: /cpp/aspose.pdf/table/ --- ## Table class diff --git a/english/cpp/aspose.pdf/tablebroken/_index.md b/english/cpp/aspose.pdf/tablebroken/_index.md index cefec36b1d..fa73dfea6a 100644 --- a/english/cpp/aspose.pdf/tablebroken/_index.md +++ b/english/cpp/aspose.pdf/tablebroken/_index.md @@ -4,7 +4,7 @@ linktitle: TableBroken second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::TableBroken enum. Enumerates the table broken in C++.' type: docs -weight: 22700 +weight: 22900 url: /cpp/aspose.pdf/tablebroken/ --- ## TableBroken enum diff --git a/english/cpp/aspose.pdf/taborder/_index.md b/english/cpp/aspose.pdf/taborder/_index.md index dfcef0cabd..41ff6f05bb 100644 --- a/english/cpp/aspose.pdf/taborder/_index.md +++ b/english/cpp/aspose.pdf/taborder/_index.md @@ -4,7 +4,7 @@ linktitle: TabOrder second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::TabOrder enum. Tab order on the page in C++.' type: docs -weight: 22800 +weight: 23000 url: /cpp/aspose.pdf/taborder/ --- ## TabOrder enum diff --git a/english/cpp/aspose.pdf/texfilesysteminputdirectory/_index.md b/english/cpp/aspose.pdf/texfilesysteminputdirectory/_index.md index 00899cd080..e1af80588a 100644 --- a/english/cpp/aspose.pdf/texfilesysteminputdirectory/_index.md +++ b/english/cpp/aspose.pdf/texfilesysteminputdirectory/_index.md @@ -4,7 +4,7 @@ linktitle: TeXFileSystemInputDirectory second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::TeXFileSystemInputDirectory class. Implements the regular file system''s method for getting a file stream to read from in C++.' type: docs -weight: 14700 +weight: 14900 url: /cpp/aspose.pdf/texfilesysteminputdirectory/ --- ## TeXFileSystemInputDirectory class diff --git a/english/cpp/aspose.pdf/texfilesystemoutputdirectory/_index.md b/english/cpp/aspose.pdf/texfilesystemoutputdirectory/_index.md index 5ad30da718..c897acdc86 100644 --- a/english/cpp/aspose.pdf/texfilesystemoutputdirectory/_index.md +++ b/english/cpp/aspose.pdf/texfilesystemoutputdirectory/_index.md @@ -4,7 +4,7 @@ linktitle: TeXFileSystemOutputDirectory second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::TeXFileSystemOutputDirectory class. Implements the regular file system''s method for getting a file stream to write to in C++.' type: docs -weight: 14800 +weight: 15000 url: /cpp/aspose.pdf/texfilesystemoutputdirectory/ --- ## TeXFileSystemOutputDirectory class diff --git a/english/cpp/aspose.pdf/texfragment/_index.md b/english/cpp/aspose.pdf/texfragment/_index.md index 5e3b40c4bb..44f3c90361 100644 --- a/english/cpp/aspose.pdf/texfragment/_index.md +++ b/english/cpp/aspose.pdf/texfragment/_index.md @@ -4,7 +4,7 @@ linktitle: TeXFragment second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::TeXFragment class. Represents TeX fragment in C++.' type: docs -weight: 14900 +weight: 15100 url: /cpp/aspose.pdf/texfragment/ --- ## TeXFragment class diff --git a/english/cpp/aspose.pdf/texloadoptions/_index.md b/english/cpp/aspose.pdf/texloadoptions/_index.md index ebd79fd426..29eb59d3fa 100644 --- a/english/cpp/aspose.pdf/texloadoptions/_index.md +++ b/english/cpp/aspose.pdf/texloadoptions/_index.md @@ -4,7 +4,7 @@ linktitle: TeXLoadOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::TeXLoadOptions class. Represents options for loading/importing TeX file into PDF document in C++.' type: docs -weight: 15000 +weight: 15200 url: /cpp/aspose.pdf/texloadoptions/ --- ## TeXLoadOptions class diff --git a/english/cpp/aspose.pdf/texloadresult/_index.md b/english/cpp/aspose.pdf/texloadresult/_index.md index f69e44be8c..841d4bd10d 100644 --- a/english/cpp/aspose.pdf/texloadresult/_index.md +++ b/english/cpp/aspose.pdf/texloadresult/_index.md @@ -4,7 +4,7 @@ linktitle: TeXLoadResult second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::TeXLoadResult enum. Results for TeX load and compiling in C++.' type: docs -weight: 22900 +weight: 23100 url: /cpp/aspose.pdf/texloadresult/ --- ## TeXLoadResult enum diff --git a/english/cpp/aspose.pdf/texmemoryoutputdirectory/_index.md b/english/cpp/aspose.pdf/texmemoryoutputdirectory/_index.md index e996c1a070..806594bfba 100644 --- a/english/cpp/aspose.pdf/texmemoryoutputdirectory/_index.md +++ b/english/cpp/aspose.pdf/texmemoryoutputdirectory/_index.md @@ -4,7 +4,7 @@ linktitle: TeXMemoryOutputDirectory second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::TeXMemoryOutputDirectory class. Implements fetching an output stream from memory. You can use it, for example, when you don''t want the accompanying output (like a log file) to be written to disk but you''d like to read it afterwards from memory in C++.' type: docs -weight: 15100 +weight: 15300 url: /cpp/aspose.pdf/texmemoryoutputdirectory/ --- ## TeXMemoryOutputDirectory class diff --git a/english/cpp/aspose.pdf/texsaveoptions/_index.md b/english/cpp/aspose.pdf/texsaveoptions/_index.md index 0467dc4779..7aac4fc96d 100644 --- a/english/cpp/aspose.pdf/texsaveoptions/_index.md +++ b/english/cpp/aspose.pdf/texsaveoptions/_index.md @@ -4,7 +4,7 @@ linktitle: TeXSaveOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::TeXSaveOptions class. Save options for export to TeX format in C++.' type: docs -weight: 15200 +weight: 15400 url: /cpp/aspose.pdf/texsaveoptions/ --- ## TeXSaveOptions class @@ -26,12 +26,6 @@ class TeXSaveOptions : public Aspose::Pdf::UnifiedSaveOptions | [get_PagesCount](./get_pagescount/)() const | Returns the number of pages after conversion. | | [set_OutDirectoryPath](./set_outdirectorypath/)(System::String) | Property for **_outDirectoryPath** parameter. | | [TeXSaveOptions](./texsaveoptions/)() | Initializes a new instance of the [TeXSaveOptions](./) class. | -## Fields - -| Field | Description | -| --- | --- | -| [IsMultiThreading](../unifiedsaveoptions/ismultithreading/) | Process pages in few threads. | -| [TryMergeAdjacentSameBackgroundImages](../unifiedsaveoptions/trymergeadjacentsamebackgroundimages/) | Sometimes PDFs contain background images (of pages or table cells) constructed from several same tiling background images put one near other. In such case renderers of target formats (f.e MsWord for DOCS format) sometimes generates visible boundaries beetween parts of background images, cause their techniques of image edge smoothing (anti-aliasing) is different from Acrobat Reader. If it looks like exported document contains such visible boundaries between parts of same background images, please try use this setting to get rid of that unwanted effect. ATTENTION! This optimization of quality usually essentially slows down conversion, so, please, use this option only when it's really necessary. | ## See Also * Class [UnifiedSaveOptions](../unifiedsaveoptions/) diff --git a/english/cpp/aspose.pdf/textstamp/_index.md b/english/cpp/aspose.pdf/textstamp/_index.md index fe8013a564..6cdc634e6a 100644 --- a/english/cpp/aspose.pdf/textstamp/_index.md +++ b/english/cpp/aspose.pdf/textstamp/_index.md @@ -4,7 +4,7 @@ linktitle: TextStamp second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::TextStamp class. Represents textual stamp in C++.' type: docs -weight: 15300 +weight: 15500 url: /cpp/aspose.pdf/textstamp/ --- ## TextStamp class diff --git a/english/cpp/aspose.pdf/timestampsettings/_index.md b/english/cpp/aspose.pdf/timestampsettings/_index.md index 08dcc90b1e..c91597ef07 100644 --- a/english/cpp/aspose.pdf/timestampsettings/_index.md +++ b/english/cpp/aspose.pdf/timestampsettings/_index.md @@ -4,7 +4,7 @@ linktitle: TimestampSettings second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::TimestampSettings class. Represents the ocsp settings using during signing process in C++.' type: docs -weight: 15400 +weight: 15600 url: /cpp/aspose.pdf/timestampsettings/ --- ## TimestampSettings class diff --git a/english/cpp/aspose.pdf/timestampsettings/timestampsettings/_index.md b/english/cpp/aspose.pdf/timestampsettings/timestampsettings/_index.md index f35481cffb..d360cf2d45 100644 --- a/english/cpp/aspose.pdf/timestampsettings/timestampsettings/_index.md +++ b/english/cpp/aspose.pdf/timestampsettings/timestampsettings/_index.md @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf/timestampsettings/timestampsettings/ Initializes a new instance of the [TimestampSettings](../) class. ```cpp -Aspose::Pdf::TimestampSettings::TimestampSettings(System::String serverUrl, System::String basicAuthCredentials, Aspose::Pdf::DigestHashAlgorithm digestHashAlgorithm=Aspose::Pdf::DigestHashAlgorithm::Sha1) +Aspose::Pdf::TimestampSettings::TimestampSettings(System::String serverUrl, System::String basicAuthCredentials, Aspose::Pdf::DigestHashAlgorithm digestHashAlgorithm=Aspose::Pdf::DigestHashAlgorithm::Sha256) ``` @@ -21,7 +21,7 @@ Aspose::Pdf::TimestampSettings::TimestampSettings(System::String serverUrl, Syst | --- | --- | --- | | serverUrl | System::String | The timestamp server url. | | basicAuthCredentials | System::String | The basic authentication credentials, username and password are combined into a string "username:password". | -| digestHashAlgorithm | Aspose::Pdf::DigestHashAlgorithm | The hash algorithm name, if it is omitted then sha1 is used. | +| digestHashAlgorithm | Aspose::Pdf::DigestHashAlgorithm | The hash algorithm name, if it is omitted then sha1 is used. The default value is **SHA256**. | ## See Also diff --git a/english/cpp/aspose.pdf/tocinfo/_index.md b/english/cpp/aspose.pdf/tocinfo/_index.md index 79c4bc4146..6808f2cfb5 100644 --- a/english/cpp/aspose.pdf/tocinfo/_index.md +++ b/english/cpp/aspose.pdf/tocinfo/_index.md @@ -4,7 +4,7 @@ linktitle: TocInfo second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::TocInfo class. Represents table of contents info in C++.' type: docs -weight: 15500 +weight: 15700 url: /cpp/aspose.pdf/tocinfo/ --- ## TocInfo class diff --git a/english/cpp/aspose.pdf/txtloadoptions/_index.md b/english/cpp/aspose.pdf/txtloadoptions/_index.md index 015bb70aea..0f676a379b 100644 --- a/english/cpp/aspose.pdf/txtloadoptions/_index.md +++ b/english/cpp/aspose.pdf/txtloadoptions/_index.md @@ -4,7 +4,7 @@ linktitle: TxtLoadOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::TxtLoadOptions class. Load options for TXT to PDF conversion in C++.' type: docs -weight: 15600 +weight: 15800 url: /cpp/aspose.pdf/txtloadoptions/ --- ## TxtLoadOptions class diff --git a/english/cpp/aspose.pdf/unifiedsaveoptions/_index.md b/english/cpp/aspose.pdf/unifiedsaveoptions/_index.md index 7df62bcd36..44545da6b4 100644 --- a/english/cpp/aspose.pdf/unifiedsaveoptions/_index.md +++ b/english/cpp/aspose.pdf/unifiedsaveoptions/_index.md @@ -4,7 +4,7 @@ linktitle: UnifiedSaveOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::UnifiedSaveOptions class. This class represents saving options for saving that uses unified conversion way (with unified internal document model) in C++.' type: docs -weight: 15700 +weight: 15900 url: /cpp/aspose.pdf/unifiedsaveoptions/ --- ## UnifiedSaveOptions class @@ -26,12 +26,6 @@ class UnifiedSaveOptions : public Aspose::Pdf::SaveOptions | [get_ExtractOcrSublayerOnly](./get_extractocrsublayeronly/)() const | This atrribute turned on functionality for extracting image or text for PDF documents with OCR sublayer. | | [set_ExtractOcrSublayerOnly](./set_extractocrsublayeronly/)(bool) | This atrribute turned on functionality for extracting image or text for PDF documents with OCR sublayer. | | [UnifiedSaveOptions](./unifiedsaveoptions/)() | | -## Fields - -| Field | Description | -| --- | --- | -| [IsMultiThreading](./ismultithreading/) | Process pages in few threads. | -| [TryMergeAdjacentSameBackgroundImages](./trymergeadjacentsamebackgroundimages/) | Sometimes PDFs contain background images (of pages or table cells) constructed from several same tiling background images put one near other. In such case renderers of target formats (f.e MsWord for DOCS format) sometimes generates visible boundaries beetween parts of background images, cause their techniques of image edge smoothing (anti-aliasing) is different from Acrobat Reader. If it looks like exported document contains such visible boundaries between parts of same background images, please try use this setting to get rid of that unwanted effect. ATTENTION! This optimization of quality usually essentially slows down conversion, so, please, use this option only when it's really necessary. | ## Typedefs | Typedef | Description | diff --git a/english/cpp/aspose.pdf/unifiedsaveoptions/conversionprogresseventhandler/_index.md b/english/cpp/aspose.pdf/unifiedsaveoptions/conversionprogresseventhandler/_index.md index faa8a49c7c..467cadb805 100644 --- a/english/cpp/aspose.pdf/unifiedsaveoptions/conversionprogresseventhandler/_index.md +++ b/english/cpp/aspose.pdf/unifiedsaveoptions/conversionprogresseventhandler/_index.md @@ -4,7 +4,7 @@ linktitle: ConversionProgressEventHandler second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::UnifiedSaveOptions::ConversionProgressEventHandler typedef of Aspose::Pdf::UnifiedSaveOptions class in C++.' type: docs -weight: 600 +weight: 400 url: /cpp/aspose.pdf/unifiedsaveoptions/conversionprogresseventhandler/ --- ## ConversionProgressEventHandler typedef diff --git a/english/cpp/aspose.pdf/unifiedsaveoptions/progresseventhandlerinfo/_index.md b/english/cpp/aspose.pdf/unifiedsaveoptions/progresseventhandlerinfo/_index.md index d96f4235d4..817ed308a8 100644 --- a/english/cpp/aspose.pdf/unifiedsaveoptions/progresseventhandlerinfo/_index.md +++ b/english/cpp/aspose.pdf/unifiedsaveoptions/progresseventhandlerinfo/_index.md @@ -4,7 +4,7 @@ linktitle: ProgressEventHandlerInfo second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::UnifiedSaveOptions::ProgressEventHandlerInfo class. This class represents information about conversion progress that can be used in external applicatuion to show conversion progress to end user in C++.' type: docs -weight: 700 +weight: 500 url: /cpp/aspose.pdf/unifiedsaveoptions/progresseventhandlerinfo/ --- ## ProgressEventHandlerInfo class @@ -16,14 +16,6 @@ This class represents information about conversion progress that can be used in class ProgressEventHandlerInfo : public System::Object ``` -## Fields - -| Field | Description | -| --- | --- | -| [DocumentId](./documentid/) | The unique document ID. | -| [EventType](./eventtype/) | Type of progress event that occurred. | -| [MaxValue](./maxvalue/) | Maximum possible value of progress value. | -| [Value](./value/) | Current value of progress value. | ## See Also * Class [Object](../../../system/object/) diff --git a/english/cpp/aspose.pdf/unsupportedfonttypeexception/_index.md b/english/cpp/aspose.pdf/unsupportedfonttypeexception/_index.md index dcc16c7674..94b3effeb4 100644 --- a/english/cpp/aspose.pdf/unsupportedfonttypeexception/_index.md +++ b/english/cpp/aspose.pdf/unsupportedfonttypeexception/_index.md @@ -4,7 +4,7 @@ linktitle: UnsupportedFontTypeException second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::UnsupportedFontTypeException typedef in C++.' type: docs -weight: 25000 +weight: 25200 url: /cpp/aspose.pdf/unsupportedfonttypeexception/ --- ## UnsupportedFontTypeException typedef diff --git a/english/cpp/aspose.pdf/verticalalignment/_index.md b/english/cpp/aspose.pdf/verticalalignment/_index.md index 7196ce7204..0d9d4dd45a 100644 --- a/english/cpp/aspose.pdf/verticalalignment/_index.md +++ b/english/cpp/aspose.pdf/verticalalignment/_index.md @@ -4,7 +4,7 @@ linktitle: VerticalAlignment second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::VerticalAlignment enum. Enumeration of possible vertical alignment values in C++.' type: docs -weight: 23000 +weight: 23200 url: /cpp/aspose.pdf/verticalalignment/ --- ## VerticalAlignment enum diff --git a/english/cpp/aspose.pdf/warninginfo/_index.md b/english/cpp/aspose.pdf/warninginfo/_index.md index 07229be960..0c67f4ce1f 100644 --- a/english/cpp/aspose.pdf/warninginfo/_index.md +++ b/english/cpp/aspose.pdf/warninginfo/_index.md @@ -4,7 +4,7 @@ linktitle: WarningInfo second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::WarningInfo class. Immutable object for encapsulating warning information in C++.' type: docs -weight: 15800 +weight: 16000 url: /cpp/aspose.pdf/warninginfo/ --- ## WarningInfo class diff --git a/english/cpp/aspose.pdf/warningtype/_index.md b/english/cpp/aspose.pdf/warningtype/_index.md index 75cddf4c3e..0adc4794f8 100644 --- a/english/cpp/aspose.pdf/warningtype/_index.md +++ b/english/cpp/aspose.pdf/warningtype/_index.md @@ -4,7 +4,7 @@ linktitle: WarningType second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::WarningType enum. Enum represented warning type in C++.' type: docs -weight: 23100 +weight: 23300 url: /cpp/aspose.pdf/warningtype/ --- ## WarningType enum diff --git a/english/cpp/aspose.pdf/watermark/_index.md b/english/cpp/aspose.pdf/watermark/_index.md index 1dcbdf6bb0..f154ab9790 100644 --- a/english/cpp/aspose.pdf/watermark/_index.md +++ b/english/cpp/aspose.pdf/watermark/_index.md @@ -4,7 +4,7 @@ linktitle: Watermark second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Watermark class. Represents a watermark of the page in C++.' type: docs -weight: 15900 +weight: 16100 url: /cpp/aspose.pdf/watermark/ --- ## Watermark class diff --git a/english/cpp/aspose.pdf/watermarkartifact/_index.md b/english/cpp/aspose.pdf/watermarkartifact/_index.md index aafc33c12f..4b950d3ef7 100644 --- a/english/cpp/aspose.pdf/watermarkartifact/_index.md +++ b/english/cpp/aspose.pdf/watermarkartifact/_index.md @@ -4,7 +4,7 @@ linktitle: WatermarkArtifact second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::WatermarkArtifact class. Class describes watermark artifact. This may be used to in C++.' type: docs -weight: 16000 +weight: 16200 url: /cpp/aspose.pdf/watermarkartifact/ --- ## WatermarkArtifact class diff --git a/english/cpp/aspose.pdf/webhyperlink/_index.md b/english/cpp/aspose.pdf/webhyperlink/_index.md index 32fbe44491..0ad3297f16 100644 --- a/english/cpp/aspose.pdf/webhyperlink/_index.md +++ b/english/cpp/aspose.pdf/webhyperlink/_index.md @@ -4,7 +4,7 @@ linktitle: WebHyperlink second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::WebHyperlink class. Represents web hyperlink object in C++.' type: docs -weight: 16100 +weight: 16300 url: /cpp/aspose.pdf/webhyperlink/ --- ## WebHyperlink class diff --git a/english/cpp/aspose.pdf/xfatag/_index.md b/english/cpp/aspose.pdf/xfatag/_index.md index 6b85a69afe..6525835433 100644 --- a/english/cpp/aspose.pdf/xfatag/_index.md +++ b/english/cpp/aspose.pdf/xfatag/_index.md @@ -4,7 +4,7 @@ linktitle: XfaTag second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::XfaTag enum. The xfa stream tag in C++.' type: docs -weight: 23200 +weight: 23400 url: /cpp/aspose.pdf/xfatag/ --- ## XfaTag enum diff --git a/english/cpp/aspose.pdf/xform/_index.md b/english/cpp/aspose.pdf/xform/_index.md index bfa2d1b037..18d98ad4ee 100644 --- a/english/cpp/aspose.pdf/xform/_index.md +++ b/english/cpp/aspose.pdf/xform/_index.md @@ -4,7 +4,7 @@ linktitle: XForm second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::XForm class. Class represent XForm in C++.' type: docs -weight: 16200 +weight: 16400 url: /cpp/aspose.pdf/xform/ --- ## XForm class diff --git a/english/cpp/aspose.pdf/xformcollection/_index.md b/english/cpp/aspose.pdf/xformcollection/_index.md index 8a54df0243..7223e5d134 100644 --- a/english/cpp/aspose.pdf/xformcollection/_index.md +++ b/english/cpp/aspose.pdf/xformcollection/_index.md @@ -4,7 +4,7 @@ linktitle: XFormCollection second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::XFormCollection class. Class represents collection of XFormCollection in C++.' type: docs -weight: 16300 +weight: 16500 url: /cpp/aspose.pdf/xformcollection/ --- ## XFormCollection class diff --git a/english/cpp/aspose.pdf/ximage/_index.md b/english/cpp/aspose.pdf/ximage/_index.md index 88b8362d15..1794deb318 100644 --- a/english/cpp/aspose.pdf/ximage/_index.md +++ b/english/cpp/aspose.pdf/ximage/_index.md @@ -4,7 +4,7 @@ linktitle: XImage second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::XImage class. Class representing image X-Object in C++.' type: docs -weight: 16400 +weight: 16600 url: /cpp/aspose.pdf/ximage/ --- ## XImage class diff --git a/english/cpp/aspose.pdf/ximageaddingparams/_index.md b/english/cpp/aspose.pdf/ximageaddingparams/_index.md index 3790ac3330..7f25286397 100644 --- a/english/cpp/aspose.pdf/ximageaddingparams/_index.md +++ b/english/cpp/aspose.pdf/ximageaddingparams/_index.md @@ -4,7 +4,7 @@ linktitle: XImageAddingParams second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::XImageAddingParams class in C++.' type: docs -weight: 16500 +weight: 16700 url: /cpp/aspose.pdf/ximageaddingparams/ --- ## XImageAddingParams class diff --git a/english/cpp/aspose.pdf/ximagecollection/_index.md b/english/cpp/aspose.pdf/ximagecollection/_index.md index f024dfc5d9..4b8cd059a2 100644 --- a/english/cpp/aspose.pdf/ximagecollection/_index.md +++ b/english/cpp/aspose.pdf/ximagecollection/_index.md @@ -4,7 +4,7 @@ linktitle: XImageCollection second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::XImageCollection class. Class representing XImage collection in C++.' type: docs -weight: 16600 +weight: 16800 url: /cpp/aspose.pdf/ximagecollection/ --- ## XImageCollection class diff --git a/english/cpp/aspose.pdf/xmlloadoptions/_index.md b/english/cpp/aspose.pdf/xmlloadoptions/_index.md index cd1ebacd97..c7ff8409e4 100644 --- a/english/cpp/aspose.pdf/xmlloadoptions/_index.md +++ b/english/cpp/aspose.pdf/xmlloadoptions/_index.md @@ -4,7 +4,7 @@ linktitle: XmlLoadOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::XmlLoadOptions class. Represents options for loading/importing XML file into pdf document in C++.' type: docs -weight: 16700 +weight: 16900 url: /cpp/aspose.pdf/xmlloadoptions/ --- ## XmlLoadOptions class diff --git a/english/cpp/aspose.pdf/xmlsaveoptions/_index.md b/english/cpp/aspose.pdf/xmlsaveoptions/_index.md index f96d12af92..d9d06f4796 100644 --- a/english/cpp/aspose.pdf/xmlsaveoptions/_index.md +++ b/english/cpp/aspose.pdf/xmlsaveoptions/_index.md @@ -4,7 +4,7 @@ linktitle: XmlSaveOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::XmlSaveOptions class. Save options for export to Xml format in C++.' type: docs -weight: 16800 +weight: 17000 url: /cpp/aspose.pdf/xmlsaveoptions/ --- ## XmlSaveOptions class diff --git a/english/cpp/aspose.pdf/xmpfield/_index.md b/english/cpp/aspose.pdf/xmpfield/_index.md index f32597704a..5003a0cf54 100644 --- a/english/cpp/aspose.pdf/xmpfield/_index.md +++ b/english/cpp/aspose.pdf/xmpfield/_index.md @@ -4,7 +4,7 @@ linktitle: XmpField second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::XmpField class. Represents XMP field in C++.' type: docs -weight: 16900 +weight: 17100 url: /cpp/aspose.pdf/xmpfield/ --- ## XmpField class diff --git a/english/cpp/aspose.pdf/xmpfieldtype/_index.md b/english/cpp/aspose.pdf/xmpfieldtype/_index.md index 71d07fc01c..87521e4075 100644 --- a/english/cpp/aspose.pdf/xmpfieldtype/_index.md +++ b/english/cpp/aspose.pdf/xmpfieldtype/_index.md @@ -4,7 +4,7 @@ linktitle: XmpFieldType second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::XmpFieldType enum. This enum represents types of a XMP field in C++.' type: docs -weight: 23300 +weight: 23500 url: /cpp/aspose.pdf/xmpfieldtype/ --- ## XmpFieldType enum diff --git a/english/cpp/aspose.pdf/xmppdfaextensioncategorytype/_index.md b/english/cpp/aspose.pdf/xmppdfaextensioncategorytype/_index.md index 10d9b9b334..52b907a59a 100644 --- a/english/cpp/aspose.pdf/xmppdfaextensioncategorytype/_index.md +++ b/english/cpp/aspose.pdf/xmppdfaextensioncategorytype/_index.md @@ -4,7 +4,7 @@ linktitle: XmpPdfAExtensionCategoryType second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::XmpPdfAExtensionCategoryType enum. Property category: internal or external in C++.' type: docs -weight: 23400 +weight: 23600 url: /cpp/aspose.pdf/xmppdfaextensioncategorytype/ --- ## XmpPdfAExtensionCategoryType enum diff --git a/english/cpp/aspose.pdf/xmppdfaextensionfield/_index.md b/english/cpp/aspose.pdf/xmppdfaextensionfield/_index.md index 7e65521878..9b9c9a1ca7 100644 --- a/english/cpp/aspose.pdf/xmppdfaextensionfield/_index.md +++ b/english/cpp/aspose.pdf/xmppdfaextensionfield/_index.md @@ -4,7 +4,7 @@ linktitle: XmpPdfAExtensionField second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::XmpPdfAExtensionField class. This schema describes a field in a structured type. It is very similar to the PDF/A Property Value Type schema, but defines a field in a structure instead of a property. Schema namespace URI: Required schema namespace prefix: pdfaField in C++.' type: docs -weight: 17000 +weight: 17200 url: /cpp/aspose.pdf/xmppdfaextensionfield/ --- ## XmpPdfAExtensionField class diff --git a/english/cpp/aspose.pdf/xmppdfaextensionobject/_index.md b/english/cpp/aspose.pdf/xmppdfaextensionobject/_index.md index ac6d6cd7bc..74a169f659 100644 --- a/english/cpp/aspose.pdf/xmppdfaextensionobject/_index.md +++ b/english/cpp/aspose.pdf/xmppdfaextensionobject/_index.md @@ -4,7 +4,7 @@ linktitle: XmpPdfAExtensionObject second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::XmpPdfAExtensionObject class. Represents the base class for field, property, value type instances in C++.' type: docs -weight: 17100 +weight: 17300 url: /cpp/aspose.pdf/xmppdfaextensionobject/ --- ## XmpPdfAExtensionObject class diff --git a/english/cpp/aspose.pdf/xmppdfaextensionproperty/_index.md b/english/cpp/aspose.pdf/xmppdfaextensionproperty/_index.md index f00bfbcc62..145685465c 100644 --- a/english/cpp/aspose.pdf/xmppdfaextensionproperty/_index.md +++ b/english/cpp/aspose.pdf/xmppdfaextensionproperty/_index.md @@ -4,7 +4,7 @@ linktitle: XmpPdfAExtensionProperty second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::XmpPdfAExtensionProperty class. Describes a single property. Schema namespace URI: Required schema namespace prefix: pdfaProperty in C++.' type: docs -weight: 17200 +weight: 17400 url: /cpp/aspose.pdf/xmppdfaextensionproperty/ --- ## XmpPdfAExtensionProperty class diff --git a/english/cpp/aspose.pdf/xmppdfaextensionschema/_index.md b/english/cpp/aspose.pdf/xmppdfaextensionschema/_index.md index 5395b52284..f1139e3ded 100644 --- a/english/cpp/aspose.pdf/xmppdfaextensionschema/_index.md +++ b/english/cpp/aspose.pdf/xmppdfaextensionschema/_index.md @@ -4,7 +4,7 @@ linktitle: XmpPdfAExtensionSchema second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::XmpPdfAExtensionSchema class. Describes the XMP extension schema which is provided by PDF/A-1 in C++.' type: docs -weight: 17300 +weight: 17500 url: /cpp/aspose.pdf/xmppdfaextensionschema/ --- ## XmpPdfAExtensionSchema class diff --git a/english/cpp/aspose.pdf/xmppdfaextensionschemadescription/_index.md b/english/cpp/aspose.pdf/xmppdfaextensionschemadescription/_index.md index b3ad19f007..2b09c89109 100644 --- a/english/cpp/aspose.pdf/xmppdfaextensionschemadescription/_index.md +++ b/english/cpp/aspose.pdf/xmppdfaextensionschemadescription/_index.md @@ -4,7 +4,7 @@ linktitle: XmpPdfAExtensionSchemaDescription second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::XmpPdfAExtensionSchemaDescription class. Represents the description of XMP extension schema which is provided by PDF/A-1 in C++.' type: docs -weight: 17400 +weight: 17600 url: /cpp/aspose.pdf/xmppdfaextensionschemadescription/ --- ## XmpPdfAExtensionSchemaDescription class diff --git a/english/cpp/aspose.pdf/xmppdfaextensionvaluetype/_index.md b/english/cpp/aspose.pdf/xmppdfaextensionvaluetype/_index.md index 3a3b82cbae..db6bf4ac2a 100644 --- a/english/cpp/aspose.pdf/xmppdfaextensionvaluetype/_index.md +++ b/english/cpp/aspose.pdf/xmppdfaextensionvaluetype/_index.md @@ -4,7 +4,7 @@ linktitle: XmpPdfAExtensionValueType second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::XmpPdfAExtensionValueType class. The PDF/A ValueType schema is required for all property value types which are not defined in the XMP 2004 specification, i.e. for value types outside of the following list: in C++.' type: docs -weight: 17500 +weight: 17700 url: /cpp/aspose.pdf/xmppdfaextensionvaluetype/ --- ## XmpPdfAExtensionValueType class diff --git a/english/cpp/aspose.pdf/xmpvalue/_index.md b/english/cpp/aspose.pdf/xmpvalue/_index.md index 9c8fa071cd..9516b033b8 100644 --- a/english/cpp/aspose.pdf/xmpvalue/_index.md +++ b/english/cpp/aspose.pdf/xmpvalue/_index.md @@ -4,7 +4,7 @@ linktitle: XmpValue second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::XmpValue class. Represents XMP value in C++.' type: docs -weight: 17600 +weight: 17800 url: /cpp/aspose.pdf/xmpvalue/ --- ## XmpValue class diff --git a/english/cpp/aspose.pdf/xpsloadoptions/_index.md b/english/cpp/aspose.pdf/xpsloadoptions/_index.md index bb280923d1..01dcf81721 100644 --- a/english/cpp/aspose.pdf/xpsloadoptions/_index.md +++ b/english/cpp/aspose.pdf/xpsloadoptions/_index.md @@ -4,7 +4,7 @@ linktitle: XpsLoadOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::XpsLoadOptions class. Represents options for loading/importing xps file into pdf document in C++.' type: docs -weight: 17700 +weight: 17900 url: /cpp/aspose.pdf/xpsloadoptions/ --- ## XpsLoadOptions class diff --git a/english/cpp/aspose.pdf/xpssaveoptions/_index.md b/english/cpp/aspose.pdf/xpssaveoptions/_index.md index 99dbae9ee0..f9e7bc5635 100644 --- a/english/cpp/aspose.pdf/xpssaveoptions/_index.md +++ b/english/cpp/aspose.pdf/xpssaveoptions/_index.md @@ -4,7 +4,7 @@ linktitle: XpsSaveOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::XpsSaveOptions class. Save options for export to Xps format in C++.' type: docs -weight: 17800 +weight: 18000 url: /cpp/aspose.pdf/xpssaveoptions/ --- ## XpsSaveOptions class @@ -28,12 +28,6 @@ class XpsSaveOptions : public Aspose::Pdf::UnifiedSaveOptions, | [set_SaveTransparentTexts](./set_savetransparenttexts/)(bool) | Indicates whether to preserve transparent (OCR'ed) text. | | [set_UseNewImagingEngine](./set_usenewimagingengine/)(bool) | Sets UseNewImagingEngine option. | | [XpsSaveOptions](./xpssaveoptions/)() | Constructor. | -## Fields - -| Field | Description | -| --- | --- | -| [IsMultiThreading](../unifiedsaveoptions/ismultithreading/) | Process pages in few threads. | -| [TryMergeAdjacentSameBackgroundImages](../unifiedsaveoptions/trymergeadjacentsamebackgroundimages/) | Sometimes PDFs contain background images (of pages or table cells) constructed from several same tiling background images put one near other. In such case renderers of target formats (f.e MsWord for DOCS format) sometimes generates visible boundaries beetween parts of background images, cause their techniques of image edge smoothing (anti-aliasing) is different from Acrobat Reader. If it looks like exported document contains such visible boundaries between parts of same background images, please try use this setting to get rid of that unwanted effect. ATTENTION! This optimization of quality usually essentially slows down conversion, so, please, use this option only when it's really necessary. | ## See Also * Class [UnifiedSaveOptions](../unifiedsaveoptions/) diff --git a/english/cpp/aspose.pdf/xslfoloadoptions/_index.md b/english/cpp/aspose.pdf/xslfoloadoptions/_index.md index 3608065630..552ba85c43 100644 --- a/english/cpp/aspose.pdf/xslfoloadoptions/_index.md +++ b/english/cpp/aspose.pdf/xslfoloadoptions/_index.md @@ -4,7 +4,7 @@ linktitle: XslFoLoadOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::XslFoLoadOptions class. Represents options for loading/importing XSL-FO file into pdf document in C++.' type: docs -weight: 17900 +weight: 18100 url: /cpp/aspose.pdf/xslfoloadoptions/ --- ## XslFoLoadOptions class @@ -32,11 +32,6 @@ class XslFoLoadOptions : public Aspose::Pdf::XmlLoadOptions | [XslFoLoadOptions](./xslfoloadoptions/)() | Creates [XslFoLoadOptions](./) object without xsl data. | | [XslFoLoadOptions](./xslfoloadoptions/)(System::String) | Creates [XslFoLoadOptions](./) object with xsl data. | | [XslFoLoadOptions](./xslfoloadoptions/)(System::SharedPtr\) | Creates [XslFoLoadOptions](./) object with xsl data. | -## Fields - -| Field | Description | -| --- | --- | -| [ParsingErrorsHandlingType](./parsingerrorshandlingtype/) | Source XSLFO document can contain formatting errors. This enum enumerates possible strategies of handking of that errors. | ## See Also * Class [XmlLoadOptions](../xmlloadoptions/) diff --git a/english/cpp/aspose.pdf/xslfoloadoptions/parsingerrorshandlingtypes/_index.md b/english/cpp/aspose.pdf/xslfoloadoptions/parsingerrorshandlingtypes/_index.md index 4091a6b961..a402199254 100644 --- a/english/cpp/aspose.pdf/xslfoloadoptions/parsingerrorshandlingtypes/_index.md +++ b/english/cpp/aspose.pdf/xslfoloadoptions/parsingerrorshandlingtypes/_index.md @@ -4,7 +4,7 @@ linktitle: ParsingErrorsHandlingTypes second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::XslFoLoadOptions::ParsingErrorsHandlingTypes enum. Source XSLFO document can contain formatting errors. This enum enumerates possible strategies of handling of such formatting errors in C++.' type: docs -weight: 700 +weight: 600 url: /cpp/aspose.pdf/xslfoloadoptions/parsingerrorshandlingtypes/ --- ## ParsingErrorsHandlingTypes enum diff --git a/english/cpp/system.collections.concurrent/_index.md b/english/cpp/system.collections.concurrent/_index.md index e7590eb3a5..c68a3944e5 100644 --- a/english/cpp/system.collections.concurrent/_index.md +++ b/english/cpp/system.collections.concurrent/_index.md @@ -4,7 +4,7 @@ linktitle: System::Collections::Concurrent second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Collections::Concurrent namespace in C++.' type: docs -weight: 3300 +weight: 3500 url: /cpp/system.collections.concurrent/ --- diff --git a/english/cpp/system.collections.concurrent/concurrentdictionary/_index.md b/english/cpp/system.collections.concurrent/concurrentdictionary/_index.md index 3d6f80dc75..81842b23b3 100644 --- a/english/cpp/system.collections.concurrent/concurrentdictionary/_index.md +++ b/english/cpp/system.collections.concurrent/concurrentdictionary/_index.md @@ -31,6 +31,7 @@ templateclass ConcurrentDictionary : public System::Col | [get_KeysInternal](./get_keysinternal/)() const override | Gets wrapper collection to access dictionary keys. | | [idx_set](./idx_set/)(const TKey\&, TValue) override | RTTI information. | | [Remove](./remove/)(const TKey\&) override | Removes element from container. | +| [TryAdd](./tryadd/)(const TKey\&, const TValue\&) | Tries to add key/value pair into the dictionary. | ## Typedefs | Typedef | Description | diff --git a/english/cpp/system.collections.concurrent/concurrentdictionary/basetype/_index.md b/english/cpp/system.collections.concurrent/concurrentdictionary/basetype/_index.md index 10aae13f59..b2a34c2e56 100644 --- a/english/cpp/system.collections.concurrent/concurrentdictionary/basetype/_index.md +++ b/english/cpp/system.collections.concurrent/concurrentdictionary/basetype/_index.md @@ -4,7 +4,7 @@ linktitle: BaseType second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Concurrent::ConcurrentDictionary::BaseType typedef. Implementation type in C++.' type: docs -weight: 700 +weight: 800 url: /cpp/system.collections.concurrent/concurrentdictionary/basetype/ --- ## BaseType typedef diff --git a/english/cpp/system.collections.concurrent/concurrentdictionary/thistype/_index.md b/english/cpp/system.collections.concurrent/concurrentdictionary/thistype/_index.md index ff598deb7f..5b20d2c1d4 100644 --- a/english/cpp/system.collections.concurrent/concurrentdictionary/thistype/_index.md +++ b/english/cpp/system.collections.concurrent/concurrentdictionary/thistype/_index.md @@ -4,7 +4,7 @@ linktitle: ThisType second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Concurrent::ConcurrentDictionary::ThisType typedef. This type in C++.' type: docs -weight: 800 +weight: 900 url: /cpp/system.collections.concurrent/concurrentdictionary/thistype/ --- ## ThisType typedef diff --git a/english/cpp/system.collections.concurrent/concurrentdictionary/tryadd/_index.md b/english/cpp/system.collections.concurrent/concurrentdictionary/tryadd/_index.md new file mode 100644 index 0000000000..2a1ed9da11 --- /dev/null +++ b/english/cpp/system.collections.concurrent/concurrentdictionary/tryadd/_index.md @@ -0,0 +1,33 @@ +--- +title: System::Collections::Concurrent::ConcurrentDictionary::TryAdd method +linktitle: TryAdd +second_title: Aspose.PDF for C++ API Reference +description: 'System::Collections::Concurrent::ConcurrentDictionary::TryAdd method. Tries to add key/value pair into the dictionary in C++.' +type: docs +weight: 700 +url: /cpp/system.collections.concurrent/concurrentdictionary/tryadd/ +--- +## ConcurrentDictionary::TryAdd method + + +Tries to add key/value pair into the dictionary. + +```cpp +bool System::Collections::Concurrent::ConcurrentDictionary::TryAdd(const TKey &key, const TValue &value) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| key | const TKey\& | Key to add. | +| value | const TValue\& | Value to add. | + +### ReturnValue + +True if key/value pair was added sucessfully, false otherwise. + +## See Also + +* Class [ConcurrentDictionary](../) +* Namespace [System::Collections::Concurrent](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.collections.generic/_index.md b/english/cpp/system.collections.generic/_index.md index 947ee700ad..54218e14de 100644 --- a/english/cpp/system.collections.generic/_index.md +++ b/english/cpp/system.collections.generic/_index.md @@ -4,7 +4,7 @@ linktitle: System::Collections::Generic second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Collections::Generic namespace in C++.' type: docs -weight: 3400 +weight: 3600 url: /cpp/system.collections.generic/ --- @@ -22,6 +22,7 @@ url: /cpp/system.collections.generic/ | [BaseEnumerator](./baseenumerator/) | Enumerator definition to wrap STL-styled types for C#-styled usage. Makes no assertions on container structure except for existance of sequental iterator. Uses begin() and end() functions. Objects of this class should only be allocated using [System::MakeObject()](../system/makeobject/) function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into [System::SmartPtr](../system/smartptr/) pointer and use this pointer to pass it to functions as argument. | | [BaseKVCollection](./basekvcollection/) | Holds common code for collections of keys or values. Objects of this class should only be allocated using [System::MakeObject()](../system/makeobject/) function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into [System::SmartPtr](../system/smartptr/) pointer and use this pointer to pass it to functions as argument. | | [BaseSet](./baseset/) | | +| [Comparer](./comparer/) | Provides a base class for implementations of the [System.Collections.Generic.IComparer](./icomparer/) generic interface. | | [DefaultComparer](./defaultcomparer/) | Default comparator class. Uses operator < and operator == to compare values. Objects of this class should only be allocated using [System::MakeObject()](../system/makeobject/) function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into [System::SmartPtr](../system/smartptr/) pointer and use this pointer to pass it to functions as argument. | | [Dictionary](./dictionary/) | Forward declaration of [Dictionary](./dictionary/) class. | | [DictionaryIterator](./dictionaryiterator/) | [Dictionary](./dictionary/) iterator that provides [KeyValuePair](./keyvaluepair/) notation. | diff --git a/english/cpp/system.collections.generic/_net_binnary_search/_index.md b/english/cpp/system.collections.generic/_net_binnary_search/_index.md index 66a1cfaae9..47d8b118a6 100644 --- a/english/cpp/system.collections.generic/_net_binnary_search/_index.md +++ b/english/cpp/system.collections.generic/_net_binnary_search/_index.md @@ -4,7 +4,7 @@ linktitle: _net_binnary_search second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::_net_binnary_search method. Implements binary search in random access container. Specialization for smart pointers. Uses System::Object::CompareTo method in C++.' type: docs -weight: 4800 +weight: 4900 url: /cpp/system.collections.generic/_net_binnary_search/ --- ## System::Collections::Generic::_net_binnary_search(const containterT\\&, int, int, T) method @@ -122,7 +122,7 @@ template class,class T,class Allocator> int Syste | index | int | Search range beginning index. | | count | int | Search range length. | | value | T | Value to look for. | -| comparer | const SharedPtr\\>\& | Comparer object. | +| comparer | const SharedPtr\\>\& | [Comparer](../comparer/) object. | ### ReturnValue diff --git a/english/cpp/system.collections.generic/comparer/_index.md b/english/cpp/system.collections.generic/comparer/_index.md new file mode 100644 index 0000000000..396d8c7203 --- /dev/null +++ b/english/cpp/system.collections.generic/comparer/_index.md @@ -0,0 +1,39 @@ +--- +title: System::Collections::Generic::Comparer class +linktitle: Comparer +second_title: Aspose.PDF for C++ API Reference +description: 'System::Collections::Generic::Comparer class. Provides a base class for implementations of the System.Collections.Generic.IComparer generic interface in C++.' +type: docs +weight: 900 +url: /cpp/system.collections.generic/comparer/ +--- +## Comparer class + + +Provides a base class for implementations of the [System.Collections.Generic.IComparer](../icomparer/) generic interface. + +```cpp +templateclass Comparer : public System::Collections::Generic::IComparer +``` + + +| Parameter | Description | +| --- | --- | +| T | The type of objects to compare. | +## Methods + +| Method | Description | +| --- | --- | +| static [get_Default](./get_default/)() | Returns a default sort order comparer for the type specified by the generic argument. | +## Typedefs + +| Typedef | Description | +| --- | --- | +| [BaseType](./basetype/) | Interface implemented. | +| [ThisType](./thistype/) | Curent type. | + +## See Also + +* Class [IComparer](../icomparer/) +* Namespace [System::Collections::Generic](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system.collections.generic/comparer/basetype/_index.md b/english/cpp/system.collections.generic/comparer/basetype/_index.md new file mode 100644 index 0000000000..95e93130df --- /dev/null +++ b/english/cpp/system.collections.generic/comparer/basetype/_index.md @@ -0,0 +1,23 @@ +--- +title: System::Collections::Generic::Comparer::BaseType typedef +linktitle: BaseType +second_title: Aspose.PDF for C++ API Reference +description: 'System::Collections::Generic::Comparer::BaseType typedef. Interface implemented in C++.' +type: docs +weight: 200 +url: /cpp/system.collections.generic/comparer/basetype/ +--- +## BaseType typedef + + +Interface implemented. + +```cpp +using System::Collections::Generic::Comparer< T >::BaseType = IComparer +``` + +## See Also + +* Class [Comparer](../) +* Namespace [System::Collections::Generic](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.collections.generic/comparer/get_default/_index.md b/english/cpp/system.collections.generic/comparer/get_default/_index.md new file mode 100644 index 0000000000..bde34f262c --- /dev/null +++ b/english/cpp/system.collections.generic/comparer/get_default/_index.md @@ -0,0 +1,30 @@ +--- +title: System::Collections::Generic::Comparer::get_Default method +linktitle: get_Default +second_title: Aspose.PDF for C++ API Reference +description: 'System::Collections::Generic::Comparer::get_Default method. Returns a default sort order comparer for the type specified by the generic argument in C++.' +type: docs +weight: 100 +url: /cpp/system.collections.generic/comparer/get_default/ +--- +## Comparer::get_Default method + + +Returns a default sort order comparer for the type specified by the generic argument. + +```cpp +static SharedPtr> System::Collections::Generic::Comparer::get_Default() +``` + + +### ReturnValue + +An object that inherits [System.Collections.Generic.Comparer](../) and serves as a sort order comparer for type T. + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [IComparer](../../icomparer/) +* Class [Comparer](../) +* Namespace [System::Collections::Generic](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.collections.generic/comparer/thistype/_index.md b/english/cpp/system.collections.generic/comparer/thistype/_index.md new file mode 100644 index 0000000000..6c4d0e1b37 --- /dev/null +++ b/english/cpp/system.collections.generic/comparer/thistype/_index.md @@ -0,0 +1,23 @@ +--- +title: System::Collections::Generic::Comparer::ThisType typedef +linktitle: ThisType +second_title: Aspose.PDF for C++ API Reference +description: 'System::Collections::Generic::Comparer::ThisType typedef. Curent type in C++.' +type: docs +weight: 300 +url: /cpp/system.collections.generic/comparer/thistype/ +--- +## ThisType typedef + + +Curent type. + +```cpp +using System::Collections::Generic::Comparer< T >::ThisType = Comparer +``` + +## See Also + +* Class [Comparer](../) +* Namespace [System::Collections::Generic](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.collections.generic/defaultcomparer/_index.md b/english/cpp/system.collections.generic/defaultcomparer/_index.md index 3f0d7d50a6..c9424e9dde 100644 --- a/english/cpp/system.collections.generic/defaultcomparer/_index.md +++ b/english/cpp/system.collections.generic/defaultcomparer/_index.md @@ -4,7 +4,7 @@ linktitle: DefaultComparer second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::DefaultComparer class. Default comparator class. Uses operator < and operator == to compare values. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument in C++.' type: docs -weight: 900 +weight: 1000 url: /cpp/system.collections.generic/defaultcomparer/ --- ## DefaultComparer class diff --git a/english/cpp/system.collections.generic/dictionary/_index.md b/english/cpp/system.collections.generic/dictionary/_index.md index c82fb7c2b0..f1533be73f 100644 --- a/english/cpp/system.collections.generic/dictionary/_index.md +++ b/english/cpp/system.collections.generic/dictionary/_index.md @@ -4,7 +4,7 @@ linktitle: Dictionary second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::Dictionary class. Forward declaration of Dictionary class in C++.' type: docs -weight: 1000 +weight: 1100 url: /cpp/system.collections.generic/dictionary/ --- ## Dictionary class diff --git a/english/cpp/system.collections.generic/dictionary/dictionary/_index.md b/english/cpp/system.collections.generic/dictionary/dictionary/_index.md index 60e69ba210..3ef1bdb02d 100644 --- a/english/cpp/system.collections.generic/dictionary/dictionary/_index.md +++ b/english/cpp/system.collections.generic/dictionary/dictionary/_index.md @@ -75,7 +75,7 @@ System::Collections::Generic::Dictionary::Dictionary(const SharedP | Parameter | Type | Description | | --- | --- | --- | | src | const SharedPtr\\>\& | Source dictionary. | -| comparer | const SharedPtr\\>\& | Comparer object to use. | +| comparer | const SharedPtr\\>\& | [Comparer](../../comparer/) object to use. | ## See Also @@ -97,7 +97,7 @@ System::Collections::Generic::Dictionary::Dictionary(const SharedP | Parameter | Type | Description | | --- | --- | --- | -| comparer | const SharedPtr\\>\& | Comparer to use. | +| comparer | const SharedPtr\\>\& | [Comparer](../../comparer/) to use. | ## See Also @@ -138,7 +138,7 @@ System::Collections::Generic::Dictionary::Dictionary(int capacity, | Parameter | Type | Description | | --- | --- | --- | | capacity | int | [Dictionary](../) capacity after creation; ignored. | -| comparer | const SharedPtr\\>\& | Comparer to use. | +| comparer | const SharedPtr\\>\& | [Comparer](../../comparer/) to use. | ## See Also diff --git a/english/cpp/system.collections.generic/dictionaryiterator/_index.md b/english/cpp/system.collections.generic/dictionaryiterator/_index.md index 0beba0c6af..bbe4aac6fa 100644 --- a/english/cpp/system.collections.generic/dictionaryiterator/_index.md +++ b/english/cpp/system.collections.generic/dictionaryiterator/_index.md @@ -4,7 +4,7 @@ linktitle: DictionaryIterator second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::DictionaryIterator class. Dictionary iterator that provides KeyValuePair notation in C++.' type: docs -weight: 1100 +weight: 1200 url: /cpp/system.collections.generic/dictionaryiterator/ --- ## DictionaryIterator class diff --git a/english/cpp/system.collections.generic/dictionaryptr/_index.md b/english/cpp/system.collections.generic/dictionaryptr/_index.md index f7db506ba7..2d22c0ffaf 100644 --- a/english/cpp/system.collections.generic/dictionaryptr/_index.md +++ b/english/cpp/system.collections.generic/dictionaryptr/_index.md @@ -4,7 +4,7 @@ linktitle: DictionaryPtr second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::DictionaryPtr class. Dictionary pointer class with operator overloads. This type is a pointer to manage other object''s deletion. It should be allocated on stack and passed to functions either by value or by const reference in C++.' type: docs -weight: 1200 +weight: 1300 url: /cpp/system.collections.generic/dictionaryptr/ --- ## DictionaryPtr class diff --git a/english/cpp/system.collections.generic/enumerableext/_index.md b/english/cpp/system.collections.generic/enumerableext/_index.md index 3ebc257dc6..e2d8d50489 100644 --- a/english/cpp/system.collections.generic/enumerableext/_index.md +++ b/english/cpp/system.collections.generic/enumerableext/_index.md @@ -4,7 +4,7 @@ linktitle: EnumerableExt second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Collections::Generic::EnumerableExt class in C++.' type: docs -weight: 1300 +weight: 1400 url: /cpp/system.collections.generic/enumerableext/ --- ## EnumerableExt class diff --git a/english/cpp/system.collections.generic/enumeratorwrapperiterator/_index.md b/english/cpp/system.collections.generic/enumeratorwrapperiterator/_index.md index a5c8d0da77..d754e83fc8 100644 --- a/english/cpp/system.collections.generic/enumeratorwrapperiterator/_index.md +++ b/english/cpp/system.collections.generic/enumeratorwrapperiterator/_index.md @@ -4,7 +4,7 @@ linktitle: EnumeratorWrapperIterator second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::EnumeratorWrapperIterator class. Iterator that wraps the pre-created enumerator and redirects all calls into it in C++.' type: docs -weight: 1400 +weight: 1500 url: /cpp/system.collections.generic/enumeratorwrapperiterator/ --- ## EnumeratorWrapperIterator class diff --git a/english/cpp/system.collections.generic/hashdictionary/_index.md b/english/cpp/system.collections.generic/hashdictionary/_index.md index a72da7a4d7..b80a01a6fa 100644 --- a/english/cpp/system.collections.generic/hashdictionary/_index.md +++ b/english/cpp/system.collections.generic/hashdictionary/_index.md @@ -4,7 +4,7 @@ linktitle: HashDictionary second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::HashDictionary class. Stub for HashDictionary class (not implemented currently). Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument in C++.' type: docs -weight: 1500 +weight: 1600 url: /cpp/system.collections.generic/hashdictionary/ --- ## HashDictionary class diff --git a/english/cpp/system.collections.generic/hashset/_index.md b/english/cpp/system.collections.generic/hashset/_index.md index 9ed087f485..29c8cae8ca 100644 --- a/english/cpp/system.collections.generic/hashset/_index.md +++ b/english/cpp/system.collections.generic/hashset/_index.md @@ -4,7 +4,7 @@ linktitle: HashSet second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::HashSet class. Forward declaration of HashSet class in C++.' type: docs -weight: 1600 +weight: 1700 url: /cpp/system.collections.generic/hashset/ --- ## HashSet class diff --git a/english/cpp/system.collections.generic/hashset/hashset/_index.md b/english/cpp/system.collections.generic/hashset/hashset/_index.md index af025bb6a1..d90f151e2e 100644 --- a/english/cpp/system.collections.generic/hashset/hashset/_index.md +++ b/english/cpp/system.collections.generic/hashset/hashset/_index.md @@ -53,7 +53,7 @@ System::Collections::Generic::HashSet::HashSet(const SharedPtr\>\& | Comparer object to associate with hashset. | +| comparer | const SharedPtr\\>\& | [Comparer](../../comparer/) object to associate with hashset. | ## See Also diff --git a/english/cpp/system.collections.generic/hashsetptr/_index.md b/english/cpp/system.collections.generic/hashsetptr/_index.md index 58469794ce..e0790214d6 100644 --- a/english/cpp/system.collections.generic/hashsetptr/_index.md +++ b/english/cpp/system.collections.generic/hashsetptr/_index.md @@ -4,7 +4,7 @@ linktitle: HashSetPtr second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::HashSetPtr class. Pointer to keep HashSet references. This type is a pointer to manage other object''s deletion. It should be allocated on stack and passed to functions either by value or by const reference in C++.' type: docs -weight: 1700 +weight: 1800 url: /cpp/system.collections.generic/hashsetptr/ --- ## HashSetPtr class diff --git a/english/cpp/system.collections.generic/icollection/_index.md b/english/cpp/system.collections.generic/icollection/_index.md index 715b226d34..92fba3a279 100644 --- a/english/cpp/system.collections.generic/icollection/_index.md +++ b/english/cpp/system.collections.generic/icollection/_index.md @@ -4,7 +4,7 @@ linktitle: ICollection second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::ICollection class. Interface of collection of elements. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument in C++.' type: docs -weight: 1800 +weight: 1900 url: /cpp/system.collections.generic/icollection/ --- ## ICollection class diff --git a/english/cpp/system.collections.generic/icomparer/_index.md b/english/cpp/system.collections.generic/icomparer/_index.md index 1b569d2d4c..fb88b5af20 100644 --- a/english/cpp/system.collections.generic/icomparer/_index.md +++ b/english/cpp/system.collections.generic/icomparer/_index.md @@ -4,7 +4,7 @@ linktitle: IComparer second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IComparer class. Interface that compares two objects in greater-equal-less sense. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument in C++.' type: docs -weight: 1900 +weight: 2000 url: /cpp/system.collections.generic/icomparer/ --- ## IComparer class diff --git a/english/cpp/system.collections.generic/idictionary/_index.md b/english/cpp/system.collections.generic/idictionary/_index.md index eb686ada3b..76333fb9bb 100644 --- a/english/cpp/system.collections.generic/idictionary/_index.md +++ b/english/cpp/system.collections.generic/idictionary/_index.md @@ -4,7 +4,7 @@ linktitle: IDictionary second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IDictionary class. Interface for dictionary-alike containers. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument in C++.' type: docs -weight: 2000 +weight: 2100 url: /cpp/system.collections.generic/idictionary/ --- ## IDictionary class diff --git a/english/cpp/system.collections.generic/ienumerable/_index.md b/english/cpp/system.collections.generic/ienumerable/_index.md index 51b885726e..e22c0a07f8 100644 --- a/english/cpp/system.collections.generic/ienumerable/_index.md +++ b/english/cpp/system.collections.generic/ienumerable/_index.md @@ -4,7 +4,7 @@ linktitle: IEnumerable second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IEnumerable class. Interface of object providing enumerator on contained elements in C++.' type: docs -weight: 2100 +weight: 2200 url: /cpp/system.collections.generic/ienumerable/ --- ## IEnumerable class @@ -31,6 +31,7 @@ templateclass IEnumerable : public virtual System::Object | [end](./end/)() | Gets iterator pointing right after the last element (if any) of the collection. This iterator can't be used to change a referenced object because [GetEnumerator()](./getenumerator/) returns a copy-object of T. | | [end](./end/)() const | Gets iterator pointing right after the last element (if any) of the const-qualified instance of the collection. | | virtual [GetEnumerator](./getenumerator/)() | Gets enumerator. | +| [LINQ_Aggregate](./linq_aggregate/)(const Func\\&) | Applies an accumulator function over a sequence. | | [LINQ_All](./linq_all/)(std::function\) | Determines whether all elements of a sequence satisfy a condition. | | [LINQ_Any](./linq_any/)() | Determines whether a sequence contains any elements. | | [LINQ_Any](./linq_any/)(std::function\) | Determines whether any element of a sequence exists or satisfies a condition. | @@ -41,6 +42,7 @@ templateclass IEnumerable : public virtual System::Object | [LINQ_Count](./linq_count/)() | Returns the number of elements in the sequence (calculated via direct counting). | | [LINQ_Count](./linq_count/)(const Func\\&) | Returns the number of elements in the sequence that satisfy the specified condition. | | [LINQ_ElementAt](./linq_elementat/)(int) | Returns the element at a specified index in a sequence. | +| [LINQ_ElementAtOrDefault](./linq_elementatordefault/)(int) | Returns the element at a specified index in a sequence. | | [LINQ_First](./linq_first/)() | Returns the first element of a sequence. | | [LINQ_First](./linq_first/)(const Func\\&) | Returns the first element of a sequence that satisfy the specified condition. | | [LINQ_FirstOrDefault](./linq_firstordefault/)() | Returns the first element of a sequence, or a default value if the sequence is empty. | @@ -49,18 +51,24 @@ templateclass IEnumerable : public virtual System::Object | [LINQ_GroupBy](./linq_groupby/)(System::Func\) | | | [LINQ_Last](./linq_last/)() | Returns the last element of a sequence. | | [LINQ_LastOrDefault](./linq_lastordefault/)() | Returns the last element of a sequence, or a default value if the sequence is empty. | +| [LINQ_Max](./linq_max/)(const Func\\&) | Invokes a transform function on each element of a generic sequence and returns the maximum resulting value. | +| [LINQ_Max](./linq_max/)(const Func\\&) | | +| [LINQ_Min](./linq_min/)(const Func\\&) | Invokes a transform function on each element of a generic sequence and returns the minimum resulting value. | +| [LINQ_Min](./linq_min/)(const Func\\&) | | | [LINQ_OfType](./linq_oftype/)() | Filters the elements of the sequence based on the specified type. | | [LINQ_OfType](./linq_oftype/)() | | | [LINQ_OrderBy](./linq_orderby/)(const Func\\&) | Sorts the elements of a sequence in ascending order according to the key values selected by keySelector. | | [LINQ_OrderBy](./linq_orderby/)(const Func\\&) | | | [LINQ_OrderByDescending](./linq_orderbydescending/)(const Func\\&) | Sorts the elements of a sequence in descending order according to the key values selected by keySelector. | | [LINQ_OrderByDescending](./linq_orderbydescending/)(const Func\\&) | | +| [LINQ_Reverse](./linq_reverse/)() | Inverts the order of the elements in a sequence. | | [LINQ_Select](./linq_select/)(const Func\\&) | Transforms elements of a sequence. | | [LINQ_Select](./linq_select/)(const Func\\&) | Transforms each element of a sequence into a new form by incorporating the element's index. | | [LINQ_Select](./linq_select/)(const Func\\&) | | | [LINQ_Select](./linq_select/)(const Func\\&) | | | [LINQ_SelectMany](./linq_selectmany/)(const Func\\>\>\&) | Projects each element of a sequence and combines the resulting sequences into one sequence. | | [LINQ_SelectMany](./linq_selectmany/)(const Func\\>\>\&) | | +| [LINQ_Take](./linq_take/)(int32_t) | Returns a specified number of contiguous elements from the start of a sequence. | | [LINQ_ToArray](./linq_toarray/)() | Creates an array from a sequence. | | [LINQ_ToList](./linq_tolist/)() | Creates a List from a sequence. | | [LINQ_Where](./linq_where/)(std::function\) | Filters a sequence based on the specified predicate. | diff --git a/english/cpp/system.collections.generic/ienumerable/const_iterator/_index.md b/english/cpp/system.collections.generic/ienumerable/const_iterator/_index.md index fc7df1a888..1b90eaf4d1 100644 --- a/english/cpp/system.collections.generic/ienumerable/const_iterator/_index.md +++ b/english/cpp/system.collections.generic/ienumerable/const_iterator/_index.md @@ -4,7 +4,7 @@ linktitle: const_iterator second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IEnumerable::const_iterator typedef. Const iterator type in C++.' type: docs -weight: 3000 +weight: 3600 url: /cpp/system.collections.generic/ienumerable/const_iterator/ --- ## const_iterator typedef diff --git a/english/cpp/system.collections.generic/ienumerable/ienumeratortype/_index.md b/english/cpp/system.collections.generic/ienumerable/ienumeratortype/_index.md index c78626b2eb..8531746827 100644 --- a/english/cpp/system.collections.generic/ienumerable/ienumeratortype/_index.md +++ b/english/cpp/system.collections.generic/ienumerable/ienumeratortype/_index.md @@ -4,7 +4,7 @@ linktitle: IEnumeratorType second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IEnumerable::IEnumeratorType typedef. RTTI information in C++.' type: docs -weight: 3100 +weight: 3700 url: /cpp/system.collections.generic/ienumerable/ienumeratortype/ --- ## IEnumeratorType typedef diff --git a/english/cpp/system.collections.generic/ienumerable/iterator/_index.md b/english/cpp/system.collections.generic/ienumerable/iterator/_index.md index b10fb99710..67a266c8e2 100644 --- a/english/cpp/system.collections.generic/ienumerable/iterator/_index.md +++ b/english/cpp/system.collections.generic/ienumerable/iterator/_index.md @@ -4,7 +4,7 @@ linktitle: iterator second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IEnumerable::iterator typedef. Iterator type in C++.' type: docs -weight: 3200 +weight: 3800 url: /cpp/system.collections.generic/ienumerable/iterator/ --- ## iterator typedef diff --git a/english/cpp/system.collections.generic/ienumerable/linq_aggregate/_index.md b/english/cpp/system.collections.generic/ienumerable/linq_aggregate/_index.md new file mode 100644 index 0000000000..f3e9f00e84 --- /dev/null +++ b/english/cpp/system.collections.generic/ienumerable/linq_aggregate/_index.md @@ -0,0 +1,33 @@ +--- +title: System::Collections::Generic::IEnumerable::LINQ_Aggregate method +linktitle: LINQ_Aggregate +second_title: Aspose.PDF for C++ API Reference +description: 'System::Collections::Generic::IEnumerable::LINQ_Aggregate method. Applies an accumulator function over a sequence in C++.' +type: docs +weight: 600 +url: /cpp/system.collections.generic/ienumerable/linq_aggregate/ +--- +## IEnumerable::LINQ_Aggregate method + + +Applies an accumulator function over a sequence. + +```cpp +T System::Collections::Generic::IEnumerable::LINQ_Aggregate(const Func &func) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| func | const Func\\& | An accumulator function to be invoked on each element. | + +### ReturnValue + +The final accumulator value. + +## See Also + +* Class [Func](../../../system/func/) +* Class [IEnumerable](../) +* Namespace [System::Collections::Generic](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.collections.generic/ienumerable/linq_all/_index.md b/english/cpp/system.collections.generic/ienumerable/linq_all/_index.md index 5ceaaaa8bf..16601ba4ae 100644 --- a/english/cpp/system.collections.generic/ienumerable/linq_all/_index.md +++ b/english/cpp/system.collections.generic/ienumerable/linq_all/_index.md @@ -4,7 +4,7 @@ linktitle: LINQ_All second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IEnumerable::LINQ_All method. Determines whether all elements of a sequence satisfy a condition in C++.' type: docs -weight: 600 +weight: 700 url: /cpp/system.collections.generic/ienumerable/linq_all/ --- ## IEnumerable::LINQ_All method diff --git a/english/cpp/system.collections.generic/ienumerable/linq_any/_index.md b/english/cpp/system.collections.generic/ienumerable/linq_any/_index.md index e1341bccb5..0dbdc8d2a4 100644 --- a/english/cpp/system.collections.generic/ienumerable/linq_any/_index.md +++ b/english/cpp/system.collections.generic/ienumerable/linq_any/_index.md @@ -4,7 +4,7 @@ linktitle: LINQ_Any second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IEnumerable::LINQ_Any method. Determines whether a sequence contains any elements in C++.' type: docs -weight: 700 +weight: 800 url: /cpp/system.collections.generic/ienumerable/linq_any/ --- ## IEnumerable::LINQ_Any() method diff --git a/english/cpp/system.collections.generic/ienumerable/linq_cast/_index.md b/english/cpp/system.collections.generic/ienumerable/linq_cast/_index.md index 9007655efe..1a6228da1a 100644 --- a/english/cpp/system.collections.generic/ienumerable/linq_cast/_index.md +++ b/english/cpp/system.collections.generic/ienumerable/linq_cast/_index.md @@ -4,7 +4,7 @@ linktitle: LINQ_Cast second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IEnumerable::LINQ_Cast method. Casts the elements to the specified type in C++.' type: docs -weight: 800 +weight: 900 url: /cpp/system.collections.generic/ienumerable/linq_cast/ --- ## IEnumerable::LINQ_Cast() method diff --git a/english/cpp/system.collections.generic/ienumerable/linq_concat/_index.md b/english/cpp/system.collections.generic/ienumerable/linq_concat/_index.md index db41e743f5..86a8e89b39 100644 --- a/english/cpp/system.collections.generic/ienumerable/linq_concat/_index.md +++ b/english/cpp/system.collections.generic/ienumerable/linq_concat/_index.md @@ -4,7 +4,7 @@ linktitle: LINQ_Concat second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IEnumerable::LINQ_Concat method. Concatenates two sequences in C++.' type: docs -weight: 900 +weight: 1000 url: /cpp/system.collections.generic/ienumerable/linq_concat/ --- ## IEnumerable::LINQ_Concat method diff --git a/english/cpp/system.collections.generic/ienumerable/linq_contains/_index.md b/english/cpp/system.collections.generic/ienumerable/linq_contains/_index.md index 171c8aa725..da5968b5d1 100644 --- a/english/cpp/system.collections.generic/ienumerable/linq_contains/_index.md +++ b/english/cpp/system.collections.generic/ienumerable/linq_contains/_index.md @@ -4,7 +4,7 @@ linktitle: LINQ_Contains second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IEnumerable::LINQ_Contains method. Determines if a sequence contains a specified value in C++.' type: docs -weight: 1000 +weight: 1100 url: /cpp/system.collections.generic/ienumerable/linq_contains/ --- ## IEnumerable::LINQ_Contains method diff --git a/english/cpp/system.collections.generic/ienumerable/linq_count/_index.md b/english/cpp/system.collections.generic/ienumerable/linq_count/_index.md index c889822727..dc0da09514 100644 --- a/english/cpp/system.collections.generic/ienumerable/linq_count/_index.md +++ b/english/cpp/system.collections.generic/ienumerable/linq_count/_index.md @@ -4,7 +4,7 @@ linktitle: LINQ_Count second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IEnumerable::LINQ_Count method. Returns the number of elements in the sequence (calculated via direct counting) in C++.' type: docs -weight: 1100 +weight: 1200 url: /cpp/system.collections.generic/ienumerable/linq_count/ --- ## IEnumerable::LINQ_Count() method diff --git a/english/cpp/system.collections.generic/ienumerable/linq_elementat/_index.md b/english/cpp/system.collections.generic/ienumerable/linq_elementat/_index.md index 79c8a48998..0b60710463 100644 --- a/english/cpp/system.collections.generic/ienumerable/linq_elementat/_index.md +++ b/english/cpp/system.collections.generic/ienumerable/linq_elementat/_index.md @@ -4,7 +4,7 @@ linktitle: LINQ_ElementAt second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IEnumerable::LINQ_ElementAt method. Returns the element at a specified index in a sequence in C++.' type: docs -weight: 1200 +weight: 1300 url: /cpp/system.collections.generic/ienumerable/linq_elementat/ --- ## IEnumerable::LINQ_ElementAt method @@ -23,7 +23,7 @@ T System::Collections::Generic::IEnumerable::LINQ_ElementAt(int index) ### ReturnValue -Element at specified index or default-constructed value if not found. +Element at specified index. ## See Also diff --git a/english/cpp/system.collections.generic/ienumerable/linq_elementatordefault/_index.md b/english/cpp/system.collections.generic/ienumerable/linq_elementatordefault/_index.md new file mode 100644 index 0000000000..40ec6ddcc2 --- /dev/null +++ b/english/cpp/system.collections.generic/ienumerable/linq_elementatordefault/_index.md @@ -0,0 +1,32 @@ +--- +title: System::Collections::Generic::IEnumerable::LINQ_ElementAtOrDefault method +linktitle: LINQ_ElementAtOrDefault +second_title: Aspose.PDF for C++ API Reference +description: 'System::Collections::Generic::IEnumerable::LINQ_ElementAtOrDefault method. Returns the element at a specified index in a sequence in C++.' +type: docs +weight: 1400 +url: /cpp/system.collections.generic/ienumerable/linq_elementatordefault/ +--- +## IEnumerable::LINQ_ElementAtOrDefault method + + +Returns the element at a specified index in a sequence. + +```cpp +T System::Collections::Generic::IEnumerable::LINQ_ElementAtOrDefault(int index) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| index | int | Index to get element at. | + +### ReturnValue + +Element at specified index or default-constructed value if not found. + +## See Also + +* Class [IEnumerable](../) +* Namespace [System::Collections::Generic](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.collections.generic/ienumerable/linq_first/_index.md b/english/cpp/system.collections.generic/ienumerable/linq_first/_index.md index 24f1e38f47..b95c5a1ce9 100644 --- a/english/cpp/system.collections.generic/ienumerable/linq_first/_index.md +++ b/english/cpp/system.collections.generic/ienumerable/linq_first/_index.md @@ -4,7 +4,7 @@ linktitle: LINQ_First second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IEnumerable::LINQ_First method. Returns the first element of a sequence in C++.' type: docs -weight: 1300 +weight: 1500 url: /cpp/system.collections.generic/ienumerable/linq_first/ --- ## IEnumerable::LINQ_First() method diff --git a/english/cpp/system.collections.generic/ienumerable/linq_firstordefault/_index.md b/english/cpp/system.collections.generic/ienumerable/linq_firstordefault/_index.md index d88e39a36b..3e414123a3 100644 --- a/english/cpp/system.collections.generic/ienumerable/linq_firstordefault/_index.md +++ b/english/cpp/system.collections.generic/ienumerable/linq_firstordefault/_index.md @@ -4,7 +4,7 @@ linktitle: LINQ_FirstOrDefault second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IEnumerable::LINQ_FirstOrDefault method. Returns the first element of a sequence, or a default value if the sequence is empty in C++.' type: docs -weight: 1400 +weight: 1600 url: /cpp/system.collections.generic/ienumerable/linq_firstordefault/ --- ## IEnumerable::LINQ_FirstOrDefault() method diff --git a/english/cpp/system.collections.generic/ienumerable/linq_groupby/_index.md b/english/cpp/system.collections.generic/ienumerable/linq_groupby/_index.md index eaefd05839..f19000c919 100644 --- a/english/cpp/system.collections.generic/ienumerable/linq_groupby/_index.md +++ b/english/cpp/system.collections.generic/ienumerable/linq_groupby/_index.md @@ -4,7 +4,7 @@ linktitle: LINQ_GroupBy second_title: Aspose.PDF for C++ API Reference description: 'How to use LINQ_GroupBy method of System::Collections::Generic::IEnumerable class in C++.' type: docs -weight: 1500 +weight: 1700 url: /cpp/system.collections.generic/ienumerable/linq_groupby/ --- ## IEnumerable::LINQ_GroupBy(System::Func\) method diff --git a/english/cpp/system.collections.generic/ienumerable/linq_last/_index.md b/english/cpp/system.collections.generic/ienumerable/linq_last/_index.md index 94afe897de..5e24c4c84b 100644 --- a/english/cpp/system.collections.generic/ienumerable/linq_last/_index.md +++ b/english/cpp/system.collections.generic/ienumerable/linq_last/_index.md @@ -4,7 +4,7 @@ linktitle: LINQ_Last second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IEnumerable::LINQ_Last method. Returns the last element of a sequence in C++.' type: docs -weight: 1600 +weight: 1800 url: /cpp/system.collections.generic/ienumerable/linq_last/ --- ## IEnumerable::LINQ_Last method diff --git a/english/cpp/system.collections.generic/ienumerable/linq_lastordefault/_index.md b/english/cpp/system.collections.generic/ienumerable/linq_lastordefault/_index.md index 3c6840dcc8..3c65999edb 100644 --- a/english/cpp/system.collections.generic/ienumerable/linq_lastordefault/_index.md +++ b/english/cpp/system.collections.generic/ienumerable/linq_lastordefault/_index.md @@ -4,7 +4,7 @@ linktitle: LINQ_LastOrDefault second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IEnumerable::LINQ_LastOrDefault method. Returns the last element of a sequence, or a default value if the sequence is empty in C++.' type: docs -weight: 1700 +weight: 1900 url: /cpp/system.collections.generic/ienumerable/linq_lastordefault/ --- ## IEnumerable::LINQ_LastOrDefault method diff --git a/english/cpp/system.collections.generic/ienumerable/linq_max/_index.md b/english/cpp/system.collections.generic/ienumerable/linq_max/_index.md new file mode 100644 index 0000000000..c2835968f9 --- /dev/null +++ b/english/cpp/system.collections.generic/ienumerable/linq_max/_index.md @@ -0,0 +1,52 @@ +--- +title: System::Collections::Generic::IEnumerable::LINQ_Max method +linktitle: LINQ_Max +second_title: Aspose.PDF for C++ API Reference +description: 'How to use LINQ_Max method of System::Collections::Generic::IEnumerable class in C++.' +type: docs +weight: 2000 +url: /cpp/system.collections.generic/ienumerable/linq_max/ +--- +## IEnumerable::LINQ_Max(const Func\\&) method + + + + +```cpp +template ResultType System::Collections::Generic::IEnumerable::LINQ_Max(const Func &selector) +``` + +## See Also + +* Class [Func](../../../system/func/) +* Class [IEnumerable](../) +* Namespace [System::Collections::Generic](../../) +* Library [Aspose.PDF for C++](../../../) +## IEnumerable::LINQ_Max(const Func\\&) method + + +Invokes a transform function on each element of a generic sequence and returns the maximum resulting value. + +```cpp +template ResultType System::Collections::Generic::IEnumerable::LINQ_Max(const Func &selector) +``` + + +| Parameter | Description | +| --- | --- | +| ResultType | The type of the value returned by selector. | + +| Parameter | Type | Description | +| --- | --- | --- | +| selector | const Func\\& | A transform function to apply to each element. | + +### ReturnValue + +The maximum value in the sequence. + +## See Also + +* Class [Func](../../../system/func/) +* Class [IEnumerable](../) +* Namespace [System::Collections::Generic](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.collections.generic/ienumerable/linq_min/_index.md b/english/cpp/system.collections.generic/ienumerable/linq_min/_index.md new file mode 100644 index 0000000000..6c98918549 --- /dev/null +++ b/english/cpp/system.collections.generic/ienumerable/linq_min/_index.md @@ -0,0 +1,52 @@ +--- +title: System::Collections::Generic::IEnumerable::LINQ_Min method +linktitle: LINQ_Min +second_title: Aspose.PDF for C++ API Reference +description: 'How to use LINQ_Min method of System::Collections::Generic::IEnumerable class in C++.' +type: docs +weight: 2100 +url: /cpp/system.collections.generic/ienumerable/linq_min/ +--- +## IEnumerable::LINQ_Min(const Func\\&) method + + + + +```cpp +template ResultType System::Collections::Generic::IEnumerable::LINQ_Min(const Func &selector) +``` + +## See Also + +* Class [Func](../../../system/func/) +* Class [IEnumerable](../) +* Namespace [System::Collections::Generic](../../) +* Library [Aspose.PDF for C++](../../../) +## IEnumerable::LINQ_Min(const Func\\&) method + + +Invokes a transform function on each element of a generic sequence and returns the minimum resulting value. + +```cpp +template ResultType System::Collections::Generic::IEnumerable::LINQ_Min(const Func &selector) +``` + + +| Parameter | Description | +| --- | --- | +| ResultType | The type of the value returned by selector. | + +| Parameter | Type | Description | +| --- | --- | --- | +| selector | const Func\\& | A transform function to apply to each element. | + +### ReturnValue + +The minimum value in the sequence. + +## See Also + +* Class [Func](../../../system/func/) +* Class [IEnumerable](../) +* Namespace [System::Collections::Generic](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.collections.generic/ienumerable/linq_oftype/_index.md b/english/cpp/system.collections.generic/ienumerable/linq_oftype/_index.md index deba2a5f07..6d9c8f2431 100644 --- a/english/cpp/system.collections.generic/ienumerable/linq_oftype/_index.md +++ b/english/cpp/system.collections.generic/ienumerable/linq_oftype/_index.md @@ -4,7 +4,7 @@ linktitle: LINQ_OfType second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IEnumerable::LINQ_OfType method. Filters the elements of the sequence based on the specified type in C++.' type: docs -weight: 1800 +weight: 2200 url: /cpp/system.collections.generic/ienumerable/linq_oftype/ --- ## IEnumerable::LINQ_OfType() method diff --git a/english/cpp/system.collections.generic/ienumerable/linq_orderby/_index.md b/english/cpp/system.collections.generic/ienumerable/linq_orderby/_index.md index f87546dc8b..0689d3f19e 100644 --- a/english/cpp/system.collections.generic/ienumerable/linq_orderby/_index.md +++ b/english/cpp/system.collections.generic/ienumerable/linq_orderby/_index.md @@ -4,7 +4,7 @@ linktitle: LINQ_OrderBy second_title: Aspose.PDF for C++ API Reference description: 'How to use LINQ_OrderBy method of System::Collections::Generic::IEnumerable class in C++.' type: docs -weight: 1900 +weight: 2300 url: /cpp/system.collections.generic/ienumerable/linq_orderby/ --- ## IEnumerable::LINQ_OrderBy(const Func\\&) method @@ -13,13 +13,13 @@ url: /cpp/system.collections.generic/ienumerable/linq_orderby/ ```cpp -template SharedPtr> System::Collections::Generic::IEnumerable::LINQ_OrderBy(const Func &keySelector) +template SharedPtr> System::Collections::Generic::IEnumerable::LINQ_OrderBy(const Func &keySelector) ``` ## See Also * Typedef [SharedPtr](../../../system/sharedptr/) -* Class [IEnumerable](../) +* Class [IOrderedEnumerable](../../../system.linq/iorderedenumerable/) * Class [Func](../../../system/func/) * Class [IEnumerable](../) * Namespace [System::Collections::Generic](../../) @@ -30,7 +30,7 @@ template SharedPtr> System::Collections::Gener Sorts the elements of a sequence in ascending order according to the key values selected by keySelector. ```cpp -template SharedPtr> System::Collections::Generic::IEnumerable::LINQ_OrderBy(const Func &keySelector) +template SharedPtr> System::Collections::Generic::IEnumerable::LINQ_OrderBy(const Func &keySelector) ``` @@ -40,12 +40,12 @@ template SharedPtr> System::Collections::Generic::I ### ReturnValue -An [IEnumerable](../) whose elements are sorted according to a key +An IOrderedEnumerable whose elements are sorted according to a key ## See Also * Typedef [SharedPtr](../../../system/sharedptr/) -* Class [IEnumerable](../) +* Class [IOrderedEnumerable](../../../system.linq/iorderedenumerable/) * Class [Func](../../../system/func/) * Class [IEnumerable](../) * Namespace [System::Collections::Generic](../../) diff --git a/english/cpp/system.collections.generic/ienumerable/linq_orderbydescending/_index.md b/english/cpp/system.collections.generic/ienumerable/linq_orderbydescending/_index.md index 23d9d6aca1..5005961a18 100644 --- a/english/cpp/system.collections.generic/ienumerable/linq_orderbydescending/_index.md +++ b/english/cpp/system.collections.generic/ienumerable/linq_orderbydescending/_index.md @@ -4,7 +4,7 @@ linktitle: LINQ_OrderByDescending second_title: Aspose.PDF for C++ API Reference description: 'How to use LINQ_OrderByDescending method of System::Collections::Generic::IEnumerable class in C++.' type: docs -weight: 2000 +weight: 2400 url: /cpp/system.collections.generic/ienumerable/linq_orderbydescending/ --- ## IEnumerable::LINQ_OrderByDescending(const Func\\&) method @@ -13,13 +13,13 @@ url: /cpp/system.collections.generic/ienumerable/linq_orderbydescending/ ```cpp -template SharedPtr> System::Collections::Generic::IEnumerable::LINQ_OrderByDescending(const Func &keySelector) +template SharedPtr> System::Collections::Generic::IEnumerable::LINQ_OrderByDescending(const Func &keySelector) ``` ## See Also * Typedef [SharedPtr](../../../system/sharedptr/) -* Class [IEnumerable](../) +* Class [IOrderedEnumerable](../../../system.linq/iorderedenumerable/) * Class [Func](../../../system/func/) * Class [IEnumerable](../) * Namespace [System::Collections::Generic](../../) @@ -30,7 +30,7 @@ template SharedPtr> System::Collections::Gener Sorts the elements of a sequence in descending order according to the key values selected by keySelector. ```cpp -template SharedPtr> System::Collections::Generic::IEnumerable::LINQ_OrderByDescending(const Func &keySelector) +template SharedPtr> System::Collections::Generic::IEnumerable::LINQ_OrderByDescending(const Func &keySelector) ``` @@ -40,12 +40,12 @@ template SharedPtr> System::Collections::Generic::I ### ReturnValue -An [IEnumerable](../) whose elements are sorted to the descending order of the key +An IOrderedEnumerable whose elements are sorted to the descending order of the key ## See Also * Typedef [SharedPtr](../../../system/sharedptr/) -* Class [IEnumerable](../) +* Class [IOrderedEnumerable](../../../system.linq/iorderedenumerable/) * Class [Func](../../../system/func/) * Class [IEnumerable](../) * Namespace [System::Collections::Generic](../../) diff --git a/english/cpp/system.collections.generic/ienumerable/linq_reverse/_index.md b/english/cpp/system.collections.generic/ienumerable/linq_reverse/_index.md new file mode 100644 index 0000000000..58a9e739aa --- /dev/null +++ b/english/cpp/system.collections.generic/ienumerable/linq_reverse/_index.md @@ -0,0 +1,30 @@ +--- +title: System::Collections::Generic::IEnumerable::LINQ_Reverse method +linktitle: LINQ_Reverse +second_title: Aspose.PDF for C++ API Reference +description: 'System::Collections::Generic::IEnumerable::LINQ_Reverse method. Inverts the order of the elements in a sequence in C++.' +type: docs +weight: 2500 +url: /cpp/system.collections.generic/ienumerable/linq_reverse/ +--- +## IEnumerable::LINQ_Reverse method + + +Inverts the order of the elements in a sequence. + +```cpp +SharedPtr> System::Collections::Generic::IEnumerable::LINQ_Reverse() +``` + + +### ReturnValue + +A sequence whose elements correspond to those of the input sequence in reverse order. + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [IEnumerable](../) +* Class [IEnumerable](../) +* Namespace [System::Collections::Generic](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.collections.generic/ienumerable/linq_select/_index.md b/english/cpp/system.collections.generic/ienumerable/linq_select/_index.md index f76598550a..342dc5af40 100644 --- a/english/cpp/system.collections.generic/ienumerable/linq_select/_index.md +++ b/english/cpp/system.collections.generic/ienumerable/linq_select/_index.md @@ -4,7 +4,7 @@ linktitle: LINQ_Select second_title: Aspose.PDF for C++ API Reference description: 'How to use LINQ_Select method of System::Collections::Generic::IEnumerable class in C++.' type: docs -weight: 2100 +weight: 2600 url: /cpp/system.collections.generic/ienumerable/linq_select/ --- ## IEnumerable::LINQ_Select(const Func\\&) method diff --git a/english/cpp/system.collections.generic/ienumerable/linq_selectmany/_index.md b/english/cpp/system.collections.generic/ienumerable/linq_selectmany/_index.md index df57df34f0..49c2549886 100644 --- a/english/cpp/system.collections.generic/ienumerable/linq_selectmany/_index.md +++ b/english/cpp/system.collections.generic/ienumerable/linq_selectmany/_index.md @@ -4,7 +4,7 @@ linktitle: LINQ_SelectMany second_title: Aspose.PDF for C++ API Reference description: 'How to use LINQ_SelectMany method of System::Collections::Generic::IEnumerable class in C++.' type: docs -weight: 2200 +weight: 2700 url: /cpp/system.collections.generic/ienumerable/linq_selectmany/ --- ## IEnumerable::LINQ_SelectMany(const Func\\>\>\&) method diff --git a/english/cpp/system.collections.generic/ienumerable/linq_take/_index.md b/english/cpp/system.collections.generic/ienumerable/linq_take/_index.md new file mode 100644 index 0000000000..80fc79ab8f --- /dev/null +++ b/english/cpp/system.collections.generic/ienumerable/linq_take/_index.md @@ -0,0 +1,34 @@ +--- +title: System::Collections::Generic::IEnumerable::LINQ_Take method +linktitle: LINQ_Take +second_title: Aspose.PDF for C++ API Reference +description: 'System::Collections::Generic::IEnumerable::LINQ_Take method. Returns a specified number of contiguous elements from the start of a sequence in C++.' +type: docs +weight: 2800 +url: /cpp/system.collections.generic/ienumerable/linq_take/ +--- +## IEnumerable::LINQ_Take method + + +Returns a specified number of contiguous elements from the start of a sequence. + +```cpp +SharedPtr> System::Collections::Generic::IEnumerable::LINQ_Take(int32_t count) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| count | int32_t | The number of elements to return. | + +### ReturnValue + +An [System.Collections.Generic.IEnumerable](../) that contains the specified number of elements from the start of the input sequence. + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [IEnumerable](../) +* Class [IEnumerable](../) +* Namespace [System::Collections::Generic](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.collections.generic/ienumerable/linq_toarray/_index.md b/english/cpp/system.collections.generic/ienumerable/linq_toarray/_index.md index d44e72e1bb..c115f3a9fe 100644 --- a/english/cpp/system.collections.generic/ienumerable/linq_toarray/_index.md +++ b/english/cpp/system.collections.generic/ienumerable/linq_toarray/_index.md @@ -4,7 +4,7 @@ linktitle: LINQ_ToArray second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IEnumerable::LINQ_ToArray method. Creates an array from a sequence in C++.' type: docs -weight: 2300 +weight: 2900 url: /cpp/system.collections.generic/ienumerable/linq_toarray/ --- ## IEnumerable::LINQ_ToArray method diff --git a/english/cpp/system.collections.generic/ienumerable/linq_tolist/_index.md b/english/cpp/system.collections.generic/ienumerable/linq_tolist/_index.md index 2f8d15fcf9..6ecfabb8fe 100644 --- a/english/cpp/system.collections.generic/ienumerable/linq_tolist/_index.md +++ b/english/cpp/system.collections.generic/ienumerable/linq_tolist/_index.md @@ -4,7 +4,7 @@ linktitle: LINQ_ToList second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IEnumerable::LINQ_ToList method. Creates a List from a sequence in C++.' type: docs -weight: 2400 +weight: 3000 url: /cpp/system.collections.generic/ienumerable/linq_tolist/ --- ## IEnumerable::LINQ_ToList method diff --git a/english/cpp/system.collections.generic/ienumerable/linq_where/_index.md b/english/cpp/system.collections.generic/ienumerable/linq_where/_index.md index 4d1b5a6471..56a47358c9 100644 --- a/english/cpp/system.collections.generic/ienumerable/linq_where/_index.md +++ b/english/cpp/system.collections.generic/ienumerable/linq_where/_index.md @@ -4,7 +4,7 @@ linktitle: LINQ_Where second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IEnumerable::LINQ_Where method. Filters a sequence based on the specified predicate in C++.' type: docs -weight: 2500 +weight: 3100 url: /cpp/system.collections.generic/ienumerable/linq_where/ --- ## IEnumerable::LINQ_Where method diff --git a/english/cpp/system.collections.generic/ienumerable/valuetype/_index.md b/english/cpp/system.collections.generic/ienumerable/valuetype/_index.md index d4ee16099e..07f2a038c2 100644 --- a/english/cpp/system.collections.generic/ienumerable/valuetype/_index.md +++ b/english/cpp/system.collections.generic/ienumerable/valuetype/_index.md @@ -4,7 +4,7 @@ linktitle: ValueType second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Collections::Generic::IEnumerable::ValueType typedef of System::Collections::Generic::IEnumerable class in C++.' type: docs -weight: 3300 +weight: 3900 url: /cpp/system.collections.generic/ienumerable/valuetype/ --- ## ValueType typedef diff --git a/english/cpp/system.collections.generic/ienumerable/virtualizebeginconstiterator/_index.md b/english/cpp/system.collections.generic/ienumerable/virtualizebeginconstiterator/_index.md index 52d30e336d..f8993d16e9 100644 --- a/english/cpp/system.collections.generic/ienumerable/virtualizebeginconstiterator/_index.md +++ b/english/cpp/system.collections.generic/ienumerable/virtualizebeginconstiterator/_index.md @@ -4,7 +4,7 @@ linktitle: virtualizeBeginConstIterator second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IEnumerable::virtualizeBeginConstIterator method. Gets the implementation of begin const iterator for the current container in C++.' type: docs -weight: 2600 +weight: 3200 url: /cpp/system.collections.generic/ienumerable/virtualizebeginconstiterator/ --- ## IEnumerable::virtualizeBeginConstIterator method diff --git a/english/cpp/system.collections.generic/ienumerable/virtualizebeginiterator/_index.md b/english/cpp/system.collections.generic/ienumerable/virtualizebeginiterator/_index.md index 5ce8f841b2..ac996fca1f 100644 --- a/english/cpp/system.collections.generic/ienumerable/virtualizebeginiterator/_index.md +++ b/english/cpp/system.collections.generic/ienumerable/virtualizebeginiterator/_index.md @@ -4,7 +4,7 @@ linktitle: virtualizeBeginIterator second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IEnumerable::virtualizeBeginIterator method. Gets the implementation of begin iterator for the current container in C++.' type: docs -weight: 2700 +weight: 3300 url: /cpp/system.collections.generic/ienumerable/virtualizebeginiterator/ --- ## IEnumerable::virtualizeBeginIterator method diff --git a/english/cpp/system.collections.generic/ienumerable/virtualized_iterator/_index.md b/english/cpp/system.collections.generic/ienumerable/virtualized_iterator/_index.md index 833da24627..7df09e1010 100644 --- a/english/cpp/system.collections.generic/ienumerable/virtualized_iterator/_index.md +++ b/english/cpp/system.collections.generic/ienumerable/virtualized_iterator/_index.md @@ -4,7 +4,7 @@ linktitle: virtualized_iterator second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IEnumerable::virtualized_iterator typedef. Inner iterator base type in C++.' type: docs -weight: 3400 +weight: 4000 url: /cpp/system.collections.generic/ienumerable/virtualized_iterator/ --- ## virtualized_iterator typedef diff --git a/english/cpp/system.collections.generic/ienumerable/virtualized_iterator_element/_index.md b/english/cpp/system.collections.generic/ienumerable/virtualized_iterator_element/_index.md index 75547aad9e..4c122e7886 100644 --- a/english/cpp/system.collections.generic/ienumerable/virtualized_iterator_element/_index.md +++ b/english/cpp/system.collections.generic/ienumerable/virtualized_iterator_element/_index.md @@ -4,7 +4,7 @@ linktitle: virtualized_iterator_element second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IEnumerable::virtualized_iterator_element typedef. Inner iterator element type in C++.' type: docs -weight: 3500 +weight: 4100 url: /cpp/system.collections.generic/ienumerable/virtualized_iterator_element/ --- ## virtualized_iterator_element typedef diff --git a/english/cpp/system.collections.generic/ienumerable/virtualizeendconstiterator/_index.md b/english/cpp/system.collections.generic/ienumerable/virtualizeendconstiterator/_index.md index 9cabbb3689..c8959f7fd1 100644 --- a/english/cpp/system.collections.generic/ienumerable/virtualizeendconstiterator/_index.md +++ b/english/cpp/system.collections.generic/ienumerable/virtualizeendconstiterator/_index.md @@ -4,7 +4,7 @@ linktitle: virtualizeEndConstIterator second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IEnumerable::virtualizeEndConstIterator method. Gets the implementation of end const iterator for the current container in C++.' type: docs -weight: 2800 +weight: 3400 url: /cpp/system.collections.generic/ienumerable/virtualizeendconstiterator/ --- ## IEnumerable::virtualizeEndConstIterator method diff --git a/english/cpp/system.collections.generic/ienumerable/virtualizeenditerator/_index.md b/english/cpp/system.collections.generic/ienumerable/virtualizeenditerator/_index.md index fa19a521a4..5eada37d20 100644 --- a/english/cpp/system.collections.generic/ienumerable/virtualizeenditerator/_index.md +++ b/english/cpp/system.collections.generic/ienumerable/virtualizeenditerator/_index.md @@ -4,7 +4,7 @@ linktitle: virtualizeEndIterator second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IEnumerable::virtualizeEndIterator method. Gets the implementation of end iterator for the current container in C++.' type: docs -weight: 2900 +weight: 3500 url: /cpp/system.collections.generic/ienumerable/virtualizeenditerator/ --- ## IEnumerable::virtualizeEndIterator method diff --git a/english/cpp/system.collections.generic/ienumerator/_index.md b/english/cpp/system.collections.generic/ienumerator/_index.md index c2e172f6fb..837096db40 100644 --- a/english/cpp/system.collections.generic/ienumerator/_index.md +++ b/english/cpp/system.collections.generic/ienumerator/_index.md @@ -4,7 +4,7 @@ linktitle: IEnumerator second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IEnumerator class. Interface of enumerator which can be used to iterate through some elements. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument in C++.' type: docs -weight: 2200 +weight: 2300 url: /cpp/system.collections.generic/ienumerator/ --- ## IEnumerator class diff --git a/english/cpp/system.collections.generic/iequalitycomparer/_index.md b/english/cpp/system.collections.generic/iequalitycomparer/_index.md index 9faa3acf22..aa7a3b68a0 100644 --- a/english/cpp/system.collections.generic/iequalitycomparer/_index.md +++ b/english/cpp/system.collections.generic/iequalitycomparer/_index.md @@ -4,7 +4,7 @@ linktitle: IEqualityComparer second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IEqualityComparer class. Interface providing means to compare two objects for equality. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument in C++.' type: docs -weight: 2300 +weight: 2400 url: /cpp/system.collections.generic/iequalitycomparer/ --- ## IEqualityComparer class diff --git a/english/cpp/system.collections.generic/ikvcollection/_index.md b/english/cpp/system.collections.generic/ikvcollection/_index.md index 116ad216b4..0743935cdb 100644 --- a/english/cpp/system.collections.generic/ikvcollection/_index.md +++ b/english/cpp/system.collections.generic/ikvcollection/_index.md @@ -4,7 +4,7 @@ linktitle: IKVCollection second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IKVCollection class. Interface of container containing keys or values of the dictionary-like container. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument in C++.' type: docs -weight: 2400 +weight: 2500 url: /cpp/system.collections.generic/ikvcollection/ --- ## IKVCollection class diff --git a/english/cpp/system.collections.generic/ilist/_index.md b/english/cpp/system.collections.generic/ilist/_index.md index 71427d28ad..d39768efe3 100644 --- a/english/cpp/system.collections.generic/ilist/_index.md +++ b/english/cpp/system.collections.generic/ilist/_index.md @@ -4,7 +4,7 @@ linktitle: IList second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IList class. Interface of indexed container of elements. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument in C++.' type: docs -weight: 2500 +weight: 2600 url: /cpp/system.collections.generic/ilist/ --- ## IList class diff --git a/english/cpp/system.collections.generic/iset/_index.md b/english/cpp/system.collections.generic/iset/_index.md index 378641a46f..984d35da37 100644 --- a/english/cpp/system.collections.generic/iset/_index.md +++ b/english/cpp/system.collections.generic/iset/_index.md @@ -4,7 +4,7 @@ linktitle: ISet second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::ISet class. Interface of collection containing a set of unique elements. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument in C++.' type: docs -weight: 2600 +weight: 2700 url: /cpp/system.collections.generic/iset/ --- ## ISet class diff --git a/english/cpp/system.collections.generic/keyiterator/_index.md b/english/cpp/system.collections.generic/keyiterator/_index.md index db6b067a2e..1e81faa895 100644 --- a/english/cpp/system.collections.generic/keyiterator/_index.md +++ b/english/cpp/system.collections.generic/keyiterator/_index.md @@ -4,7 +4,7 @@ linktitle: KeyIterator second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::KeyIterator class. Dictionary iterator that provides key access in C++.' type: docs -weight: 2700 +weight: 2800 url: /cpp/system.collections.generic/keyiterator/ --- ## KeyIterator class diff --git a/english/cpp/system.collections.generic/keyvaluepair/_index.md b/english/cpp/system.collections.generic/keyvaluepair/_index.md index 93802eb507..8d76318e8c 100644 --- a/english/cpp/system.collections.generic/keyvaluepair/_index.md +++ b/english/cpp/system.collections.generic/keyvaluepair/_index.md @@ -4,7 +4,7 @@ linktitle: KeyValuePair second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::KeyValuePair class. Pair of key and value. This type should be allocated on stack and passed to functions by value or by reference. Never use System::SmartPtr class to manage objects of this type in C++.' type: docs -weight: 2800 +weight: 2900 url: /cpp/system.collections.generic/keyvaluepair/ --- ## KeyValuePair class diff --git a/english/cpp/system.collections.generic/kvpairiterator/_index.md b/english/cpp/system.collections.generic/kvpairiterator/_index.md index 6655269795..592d9d92de 100644 --- a/english/cpp/system.collections.generic/kvpairiterator/_index.md +++ b/english/cpp/system.collections.generic/kvpairiterator/_index.md @@ -4,7 +4,7 @@ linktitle: KVPairIterator second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::KVPairIterator class. Adapting iterator, wraps std::pair into KVPair expected from Dictionary in C++.' type: docs -weight: 2900 +weight: 3000 url: /cpp/system.collections.generic/kvpairiterator/ --- ## KVPairIterator class diff --git a/english/cpp/system.collections.generic/linkedlist/_index.md b/english/cpp/system.collections.generic/linkedlist/_index.md index c1a18f99d2..d6d532b7f7 100644 --- a/english/cpp/system.collections.generic/linkedlist/_index.md +++ b/english/cpp/system.collections.generic/linkedlist/_index.md @@ -4,7 +4,7 @@ linktitle: LinkedList second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::LinkedList class. LinkedList forward declaration in C++.' type: docs -weight: 3000 +weight: 3100 url: /cpp/system.collections.generic/linkedlist/ --- ## LinkedList class diff --git a/english/cpp/system.collections.generic/linkedlistnode/_index.md b/english/cpp/system.collections.generic/linkedlistnode/_index.md index 441d1a2555..d44a9d8858 100644 --- a/english/cpp/system.collections.generic/linkedlistnode/_index.md +++ b/english/cpp/system.collections.generic/linkedlistnode/_index.md @@ -4,7 +4,7 @@ linktitle: LinkedListNode second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::LinkedListNode class. Node of linked list. Implements a wrapper over an iterator of std::list that is wrapped in linked list. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument in C++.' type: docs -weight: 3100 +weight: 3200 url: /cpp/system.collections.generic/linkedlistnode/ --- ## LinkedListNode class diff --git a/english/cpp/system.collections.generic/list/_index.md b/english/cpp/system.collections.generic/list/_index.md index c8ee89bf39..46ba85bd48 100644 --- a/english/cpp/system.collections.generic/list/_index.md +++ b/english/cpp/system.collections.generic/list/_index.md @@ -4,7 +4,7 @@ linktitle: List second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::List class. List forward declaration in C++.' type: docs -weight: 3200 +weight: 3300 url: /cpp/system.collections.generic/list/ --- ## List class diff --git a/english/cpp/system.collections.generic/list/binarysearch/_index.md b/english/cpp/system.collections.generic/list/binarysearch/_index.md index 53352c62a1..e786d5e00b 100644 --- a/english/cpp/system.collections.generic/list/binarysearch/_index.md +++ b/english/cpp/system.collections.generic/list/binarysearch/_index.md @@ -43,7 +43,7 @@ int System::Collections::Generic::List::BinarySearch(const T &item, const Sha | Parameter | Type | Description | | --- | --- | --- | | item | const T\& | Item to look for. | -| comparer | const SharedPtr\\>\& | Comparer to use. | +| comparer | const SharedPtr\\>\& | [Comparer](../../comparer/) to use. | ### ReturnValue @@ -71,7 +71,7 @@ int System::Collections::Generic::List::BinarySearch(int index, int count, co | index | int | Range beginning. | | count | int | Range size. | | item | const T\& | Item to look for. | -| comparer | const SharedPtr\\>\& | Comparer to use. | +| comparer | const SharedPtr\\>\& | [Comparer](../../comparer/) to use. | ### ReturnValue diff --git a/english/cpp/system.collections.generic/listext/_index.md b/english/cpp/system.collections.generic/listext/_index.md index dc6c7d6db7..0fcfe34c70 100644 --- a/english/cpp/system.collections.generic/listext/_index.md +++ b/english/cpp/system.collections.generic/listext/_index.md @@ -4,7 +4,7 @@ linktitle: ListExt second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::ListExt class. generic List class that implements IListWrapper interface in C++.' type: docs -weight: 3300 +weight: 3400 url: /cpp/system.collections.generic/listext/ --- ## ListExt class diff --git a/english/cpp/system.collections.generic/listptr/_index.md b/english/cpp/system.collections.generic/listptr/_index.md index 565c97ef65..9d41b49df5 100644 --- a/english/cpp/system.collections.generic/listptr/_index.md +++ b/english/cpp/system.collections.generic/listptr/_index.md @@ -4,7 +4,7 @@ linktitle: ListPtr second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::ListPtr class. List pointer with access operators. This type is a pointer to manage other object''s deletion. It should be allocated on stack and passed to functions either by value or by const reference in C++.' type: docs -weight: 3400 +weight: 3500 url: /cpp/system.collections.generic/listptr/ --- ## ListPtr class diff --git a/english/cpp/system.collections.generic/operator!=/_index.md b/english/cpp/system.collections.generic/operator!=/_index.md index 24db4ebb79..3123ea905b 100644 --- a/english/cpp/system.collections.generic/operator!=/_index.md +++ b/english/cpp/system.collections.generic/operator!=/_index.md @@ -4,7 +4,7 @@ linktitle: operator!= second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::operator!= method. Compares two key-value pairs using inverse ''equals'' semantics in C++.' type: docs -weight: 5200 +weight: 5300 url: /cpp/system.collections.generic/operator!=/ --- ## System::Collections::Generic::operator!= method diff --git a/english/cpp/system.collections.generic/operator==/_index.md b/english/cpp/system.collections.generic/operator==/_index.md index c1ae34f553..f5d74c00c1 100644 --- a/english/cpp/system.collections.generic/operator==/_index.md +++ b/english/cpp/system.collections.generic/operator==/_index.md @@ -4,7 +4,7 @@ linktitle: operator== second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::operator== method. Compares two key-value pairs using ''equals'' semantics. Uses operator == or EqualsTo method for both keys and values, whichever is defined in C++.' type: docs -weight: 5500 +weight: 5600 url: /cpp/system.collections.generic/operator==/ --- ## System::Collections::Generic::operator== method diff --git a/english/cpp/system.collections.generic/operator__/_index.md b/english/cpp/system.collections.generic/operator__/_index.md index 5d3be09a97..80461440e1 100644 --- a/english/cpp/system.collections.generic/operator__/_index.md +++ b/english/cpp/system.collections.generic/operator__/_index.md @@ -4,7 +4,7 @@ linktitle: operator<< second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::operator<< method. Insert data into the stream using UTF-8 encoding in C++.' type: docs -weight: 5300 +weight: 5400 url: /cpp/system.collections.generic/operator__/ --- ## System::Collections::Generic::operator<<(std::ostream\&, const KeyValuePair\\&) method diff --git a/english/cpp/system.collections.generic/queue/_index.md b/english/cpp/system.collections.generic/queue/_index.md index ba1f7e4549..f23b361789 100644 --- a/english/cpp/system.collections.generic/queue/_index.md +++ b/english/cpp/system.collections.generic/queue/_index.md @@ -4,7 +4,7 @@ linktitle: Queue second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::Queue class. Queue class forward declaration in C++.' type: docs -weight: 3500 +weight: 3600 url: /cpp/system.collections.generic/queue/ --- ## Queue class diff --git a/english/cpp/system.collections.generic/queueptr/_index.md b/english/cpp/system.collections.generic/queueptr/_index.md index b22be00169..6a33bb8cb1 100644 --- a/english/cpp/system.collections.generic/queueptr/_index.md +++ b/english/cpp/system.collections.generic/queueptr/_index.md @@ -4,7 +4,7 @@ linktitle: QueuePtr second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::QueuePtr class. Queue pointer. This type is a pointer to manage other object''s deletion. It should be allocated on stack and passed to functions either by value or by const reference in C++.' type: docs -weight: 3600 +weight: 3700 url: /cpp/system.collections.generic/queueptr/ --- ## QueuePtr class diff --git a/english/cpp/system.collections.generic/reverseenumerator/_index.md b/english/cpp/system.collections.generic/reverseenumerator/_index.md index 45330a7b0d..3362098d42 100644 --- a/english/cpp/system.collections.generic/reverseenumerator/_index.md +++ b/english/cpp/system.collections.generic/reverseenumerator/_index.md @@ -4,7 +4,7 @@ linktitle: ReverseEnumerator second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::ReverseEnumerator class. Enumerator that reverse-iterates through container. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument in C++.' type: docs -weight: 3700 +weight: 3800 url: /cpp/system.collections.generic/reverseenumerator/ --- ## ReverseEnumerator class diff --git a/english/cpp/system.collections.generic/simpleenumerator/_index.md b/english/cpp/system.collections.generic/simpleenumerator/_index.md index e05856b56a..dcc4e9758d 100644 --- a/english/cpp/system.collections.generic/simpleenumerator/_index.md +++ b/english/cpp/system.collections.generic/simpleenumerator/_index.md @@ -4,7 +4,7 @@ linktitle: SimpleEnumerator second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::SimpleEnumerator class. Iterator class for simple containers holding elements directly using rbegin() and rend() functions. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument in C++.' type: docs -weight: 3800 +weight: 3900 url: /cpp/system.collections.generic/simpleenumerator/ --- ## SimpleEnumerator class diff --git a/english/cpp/system.collections.generic/sorteddictionary/_index.md b/english/cpp/system.collections.generic/sorteddictionary/_index.md index e482030d38..c5f2be70ce 100644 --- a/english/cpp/system.collections.generic/sorteddictionary/_index.md +++ b/english/cpp/system.collections.generic/sorteddictionary/_index.md @@ -4,7 +4,7 @@ linktitle: SortedDictionary second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::SortedDictionary class. Sorted dictionary type forward declaration in C++.' type: docs -weight: 3900 +weight: 4000 url: /cpp/system.collections.generic/sorteddictionary/ --- ## SortedDictionary class diff --git a/english/cpp/system.collections.generic/sorteddictionary/sorteddictionary/_index.md b/english/cpp/system.collections.generic/sorteddictionary/sorteddictionary/_index.md index e3e3d2ded4..a8454a8584 100644 --- a/english/cpp/system.collections.generic/sorteddictionary/sorteddictionary/_index.md +++ b/english/cpp/system.collections.generic/sorteddictionary/sorteddictionary/_index.md @@ -33,7 +33,7 @@ System::Collections::Generic::SortedDictionary::SortedDictionary(c | Parameter | Type | Description | | --- | --- | --- | -| comparer | const SharedPtr\::type\>\>\& | Comparer to use. | +| comparer | const SharedPtr\::type\>\>\& | [Comparer](../../comparer/) to use. | ## See Also @@ -76,7 +76,7 @@ System::Collections::Generic::SortedDictionary::SortedDictionary(c | Parameter | Type | Description | | --- | --- | --- | | src | const SharedPtr\\>\& | Source dictionary to copy data from. | -| comparer | const SharedPtr\::type\>\>\& | Comparer to use. | +| comparer | const SharedPtr\::type\>\>\& | [Comparer](../../comparer/) to use. | ## See Also diff --git a/english/cpp/system.collections.generic/sorteddictionaryptr/_index.md b/english/cpp/system.collections.generic/sorteddictionaryptr/_index.md index c968d97c01..bf9c3dd86b 100644 --- a/english/cpp/system.collections.generic/sorteddictionaryptr/_index.md +++ b/english/cpp/system.collections.generic/sorteddictionaryptr/_index.md @@ -4,7 +4,7 @@ linktitle: SortedDictionaryPtr second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::SortedDictionaryPtr class. Sorted dictionary pointer with access operators. This type is a pointer to manage other object''s deletion. It should be allocated on stack and passed to functions either by value or by const reference in C++.' type: docs -weight: 4000 +weight: 4100 url: /cpp/system.collections.generic/sorteddictionaryptr/ --- ## SortedDictionaryPtr class diff --git a/english/cpp/system.collections.generic/sortedlist/_index.md b/english/cpp/system.collections.generic/sortedlist/_index.md index 5fc0c4aa55..0cbc918fc6 100644 --- a/english/cpp/system.collections.generic/sortedlist/_index.md +++ b/english/cpp/system.collections.generic/sortedlist/_index.md @@ -4,7 +4,7 @@ linktitle: SortedList second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::SortedList class. Sorted list wrapping FlatMap structure. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument in C++.' type: docs -weight: 4100 +weight: 4200 url: /cpp/system.collections.generic/sortedlist/ --- ## SortedList class diff --git a/english/cpp/system.collections.generic/sortedlist/sortedlist/_index.md b/english/cpp/system.collections.generic/sortedlist/sortedlist/_index.md index b249905236..5f3475716a 100644 --- a/english/cpp/system.collections.generic/sortedlist/sortedlist/_index.md +++ b/english/cpp/system.collections.generic/sortedlist/sortedlist/_index.md @@ -53,7 +53,7 @@ System::Collections::Generic::SortedList::SortedList(const SharedP | Parameter | Type | Description | | --- | --- | --- | -| comparer | const SharedPtr\\>\& | Comparer to use. | +| comparer | const SharedPtr\\>\& | [Comparer](../../comparer/) to use. | ## See Also diff --git a/english/cpp/system.collections.generic/sortedlisthelper/_index.md b/english/cpp/system.collections.generic/sortedlisthelper/_index.md index 3b4c5a6a1e..532621cbb5 100644 --- a/english/cpp/system.collections.generic/sortedlisthelper/_index.md +++ b/english/cpp/system.collections.generic/sortedlisthelper/_index.md @@ -4,7 +4,7 @@ linktitle: SortedListHelper second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::SortedListHelper class. This helper class is used to mask virtual functions get_Keys get_Values that come from IDictionary interface and substitute these to the functions with different return type in C++.' type: docs -weight: 4200 +weight: 4300 url: /cpp/system.collections.generic/sortedlisthelper/ --- ## SortedListHelper class diff --git a/english/cpp/system.collections.generic/sortedset/_index.md b/english/cpp/system.collections.generic/sortedset/_index.md index 87f5a55b3e..45d8814a53 100644 --- a/english/cpp/system.collections.generic/sortedset/_index.md +++ b/english/cpp/system.collections.generic/sortedset/_index.md @@ -4,7 +4,7 @@ linktitle: SortedSet second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::SortedSet class. Forward declaration of SortedSet class in C++.' type: docs -weight: 4300 +weight: 4400 url: /cpp/system.collections.generic/sortedset/ --- ## SortedSet class diff --git a/english/cpp/system.collections.generic/sortedset/sortedset/_index.md b/english/cpp/system.collections.generic/sortedset/sortedset/_index.md index 5cc0d80e82..dcf59b73f3 100644 --- a/english/cpp/system.collections.generic/sortedset/sortedset/_index.md +++ b/english/cpp/system.collections.generic/sortedset/sortedset/_index.md @@ -37,7 +37,7 @@ System::Collections::Generic::SortedSet::SortedSet(const SharedPtr\>\& | Comparer object to associate with [SortedSet](../). | +| comparer | const SharedPtr\\>\& | [Comparer](../../comparer/) object to associate with [SortedSet](../). | ## See Also diff --git a/english/cpp/system.collections.generic/sortedsetptr/_index.md b/english/cpp/system.collections.generic/sortedsetptr/_index.md index 2b94228b78..d6b8d3db7e 100644 --- a/english/cpp/system.collections.generic/sortedsetptr/_index.md +++ b/english/cpp/system.collections.generic/sortedsetptr/_index.md @@ -4,7 +4,7 @@ linktitle: SortedSetPtr second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::SortedSetPtr class. Pointer to keep SortedSet references. This type is a pointer to manage other object''s deletion. It should be allocated on stack and passed to functions either by value or by const reference in C++.' type: docs -weight: 4400 +weight: 4500 url: /cpp/system.collections.generic/sortedsetptr/ --- ## SortedSetPtr class diff --git a/english/cpp/system.collections.generic/stack/_index.md b/english/cpp/system.collections.generic/stack/_index.md index d3d7d3108c..ffc3776de3 100644 --- a/english/cpp/system.collections.generic/stack/_index.md +++ b/english/cpp/system.collections.generic/stack/_index.md @@ -4,7 +4,7 @@ linktitle: Stack second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::Stack class. Stack class forward declaration in C++.' type: docs -weight: 4500 +weight: 4600 url: /cpp/system.collections.generic/stack/ --- ## Stack class diff --git a/english/cpp/system.collections.generic/stackptr/_index.md b/english/cpp/system.collections.generic/stackptr/_index.md index 6f9e9d74f7..801427621b 100644 --- a/english/cpp/system.collections.generic/stackptr/_index.md +++ b/english/cpp/system.collections.generic/stackptr/_index.md @@ -4,7 +4,7 @@ linktitle: StackPtr second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::StackPtr class. Stack pointer. This type is a pointer to manage other object''s deletion. It should be allocated on stack and passed to functions either by value or by const reference in C++.' type: docs -weight: 4600 +weight: 4700 url: /cpp/system.collections.generic/stackptr/ --- ## StackPtr class diff --git a/english/cpp/system.collections.generic/valueiterator/_index.md b/english/cpp/system.collections.generic/valueiterator/_index.md index 010e9469f0..b7be006bc6 100644 --- a/english/cpp/system.collections.generic/valueiterator/_index.md +++ b/english/cpp/system.collections.generic/valueiterator/_index.md @@ -4,7 +4,7 @@ linktitle: ValueIterator second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::ValueIterator class. Dictionary iterator that provides value access in C++.' type: docs -weight: 4700 +weight: 4800 url: /cpp/system.collections.generic/valueiterator/ --- ## ValueIterator class diff --git a/english/cpp/system.collections.objectmodel/_index.md b/english/cpp/system.collections.objectmodel/_index.md index 0ecacb971d..e4fa6b8a4d 100644 --- a/english/cpp/system.collections.objectmodel/_index.md +++ b/english/cpp/system.collections.objectmodel/_index.md @@ -4,7 +4,7 @@ linktitle: System::Collections::ObjectModel second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Collections::ObjectModel namespace in C++.' type: docs -weight: 3500 +weight: 3700 url: /cpp/system.collections.objectmodel/ --- diff --git a/english/cpp/system.collections.objectmodel/keyedcollection/_index.md b/english/cpp/system.collections.objectmodel/keyedcollection/_index.md index 2954a1e725..8fab9b5646 100644 --- a/english/cpp/system.collections.objectmodel/keyedcollection/_index.md +++ b/english/cpp/system.collections.objectmodel/keyedcollection/_index.md @@ -35,11 +35,7 @@ templateclass KeyedCollection : public System::Col | Field | Description | | --- | --- | -| [comparer](./comparer/) | Comparer to use. | | static [defaultThreshold](./defaultthreshold/) | Lookup dictionary creation threshold, default. | -| [dict](./dict/) | Wrapped dictionary. | -| [keyCount](./keycount/) | Number of keys inserted into collection. | -| [threshold](./threshold/) | Lookup dictionary creation threshold, local. | ## See Also diff --git a/english/cpp/system.collections.specialized/_index.md b/english/cpp/system.collections.specialized/_index.md index 76d9f29923..9762cc9da1 100644 --- a/english/cpp/system.collections.specialized/_index.md +++ b/english/cpp/system.collections.specialized/_index.md @@ -4,7 +4,7 @@ linktitle: System::Collections::Specialized second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Collections::Specialized namespace in C++.' type: docs -weight: 3600 +weight: 3800 url: /cpp/system.collections.specialized/ --- diff --git a/english/cpp/system.collections/_index.md b/english/cpp/system.collections/_index.md index 6f50e58a3b..a02faa6887 100644 --- a/english/cpp/system.collections/_index.md +++ b/english/cpp/system.collections/_index.md @@ -4,7 +4,7 @@ linktitle: System::Collections second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Collections namespace in C++.' type: docs -weight: 3200 +weight: 3400 url: /cpp/system.collections/ --- @@ -22,6 +22,7 @@ url: /cpp/system.collections/ | [IEnumerator](./ienumerator/) | Interface of enumerator which can be used to iterate through some elements. Objects of this class should only be allocated using [System::MakeObject()](../system/makeobject/) function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into [System::SmartPtr](../system/smartptr/) pointer and use this pointer to pass it to functions as argument. | | [IEnumeratorImplRefType](./ienumeratorimplreftype/) | Wrapper the creates non generic [IEnumerator](./ienumerator/) implementation over the generic Iterator [IEnumeratorImplRefType](./ienumeratorimplreftype/) - wrapper for the Reference Types. | | [IEnumeratorImplValueType](./ienumeratorimplvaluetype/) | Wrapper the creates non generic [IEnumerator](./ienumerator/) implementation over the generic Iterator [IEnumeratorImplRefType](./ienumeratorimplreftype/) - wrapper for the value Types. | +| [IEqualityComparer](./iequalitycomparer/) | | | [IList](./ilist/) | [IList](./ilist/) Represents a non-generic collection of objects that can be individually accessed by index. | | [IListImplRefType](./ilistimplreftype/) | Stub that implements [System::Collections::IList](./ilist/) interface on [System::Collections::Generic::List](../system.collections.generic/list/) object Implementation for reference types. | | [IListImplValueType](./ilistimplvaluetype/) | Stub that implements [System::Collections::IList](./ilist/) interface on [System::Collections::Generic::List](../system.collections.generic/list/) object Implementation for value types. | diff --git a/english/cpp/system.collections/iequalitycomparer/_index.md b/english/cpp/system.collections/iequalitycomparer/_index.md new file mode 100644 index 0000000000..a841fb72eb --- /dev/null +++ b/english/cpp/system.collections/iequalitycomparer/_index.md @@ -0,0 +1,29 @@ +--- +title: System::Collections::IEqualityComparer class +linktitle: IEqualityComparer +second_title: Aspose.PDF for C++ API Reference +description: 'How to use System::Collections::IEqualityComparer class in C++.' +type: docs +weight: 900 +url: /cpp/system.collections/iequalitycomparer/ +--- +## IEqualityComparer class + + + + +```cpp +class IEqualityComparer : public virtual System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| virtual [Equals](./equals/)(const SharedPtr\\&, const SharedPtr\\&) const | RTTI information. | +| virtual [GetHashCode](./gethashcode/)(const SharedPtr\\&) const | Gets hash code for some object. | +## See Also + +* Class [Object](../../system/object/) +* Namespace [System::Collections](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system.collections/iequalitycomparer/equals/_index.md b/english/cpp/system.collections/iequalitycomparer/equals/_index.md new file mode 100644 index 0000000000..e0abef0185 --- /dev/null +++ b/english/cpp/system.collections/iequalitycomparer/equals/_index.md @@ -0,0 +1,38 @@ +--- +title: System::Collections::IEqualityComparer::Equals method +linktitle: Equals +second_title: Aspose.PDF for C++ API Reference +description: 'System::Collections::IEqualityComparer::Equals method. RTTI information in C++.' +type: docs +weight: 100 +url: /cpp/system.collections/iequalitycomparer/equals/ +--- +## IEqualityComparer::Equals method + + +RTTI information. + +```cpp +virtual bool System::Collections::IEqualityComparer::Equals(const SharedPtr &x, const SharedPtr &y) const =0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| x | const SharedPtr\\& | LHS object. | +| y | const SharedPtr\\& | RHS object. | + +### ReturnValue + +True if objects are considered equal, false otherwise. +## Remarks + + +Checks if two objects are equal. +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [Object](../../../system/object/) +* Class [IEqualityComparer](../) +* Namespace [System::Collections](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.collections/iequalitycomparer/gethashcode/_index.md b/english/cpp/system.collections/iequalitycomparer/gethashcode/_index.md new file mode 100644 index 0000000000..720e8091e3 --- /dev/null +++ b/english/cpp/system.collections/iequalitycomparer/gethashcode/_index.md @@ -0,0 +1,34 @@ +--- +title: System::Collections::IEqualityComparer::GetHashCode method +linktitle: GetHashCode +second_title: Aspose.PDF for C++ API Reference +description: 'System::Collections::IEqualityComparer::GetHashCode method. Gets hash code for some object in C++.' +type: docs +weight: 200 +url: /cpp/system.collections/iequalitycomparer/gethashcode/ +--- +## IEqualityComparer::GetHashCode method + + +Gets hash code for some object. + +```cpp +virtual int System::Collections::IEqualityComparer::GetHashCode(const SharedPtr &obj) const =0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| obj | const SharedPtr\\& | [Object](../../../system/object/) to calculate hash code for. | + +### ReturnValue + +Hash code calculated for **obj**. + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [Object](../../../system/object/) +* Class [IEqualityComparer](../) +* Namespace [System::Collections](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.collections/ilist/_index.md b/english/cpp/system.collections/ilist/_index.md index 10cba238c9..abef93937b 100644 --- a/english/cpp/system.collections/ilist/_index.md +++ b/english/cpp/system.collections/ilist/_index.md @@ -4,7 +4,7 @@ linktitle: IList second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::IList class. IList Represents a non-generic collection of objects that can be individually accessed by index in C++.' type: docs -weight: 900 +weight: 1000 url: /cpp/system.collections/ilist/ --- ## IList class diff --git a/english/cpp/system.collections/ilistimplreftype/_index.md b/english/cpp/system.collections/ilistimplreftype/_index.md index c94d88c772..5c601daf94 100644 --- a/english/cpp/system.collections/ilistimplreftype/_index.md +++ b/english/cpp/system.collections/ilistimplreftype/_index.md @@ -4,7 +4,7 @@ linktitle: IListImplRefType second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::IListImplRefType class. Stub that implements System::Collections::IList interface on System::Collections::Generic::List object Implementation for reference types in C++.' type: docs -weight: 1000 +weight: 1100 url: /cpp/system.collections/ilistimplreftype/ --- ## IListImplRefType class diff --git a/english/cpp/system.collections/ilistimplvaluetype/_index.md b/english/cpp/system.collections/ilistimplvaluetype/_index.md index 1ba58462a9..a74a241c9c 100644 --- a/english/cpp/system.collections/ilistimplvaluetype/_index.md +++ b/english/cpp/system.collections/ilistimplvaluetype/_index.md @@ -4,7 +4,7 @@ linktitle: IListImplValueType second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::IListImplValueType class. Stub that implements System::Collections::IList interface on System::Collections::Generic::List object Implementation for value types in C++.' type: docs -weight: 1100 +weight: 1200 url: /cpp/system.collections/ilistimplvaluetype/ --- ## IListImplValueType class diff --git a/english/cpp/system.collections/ilistwrapper/_index.md b/english/cpp/system.collections/ilistwrapper/_index.md index 604420167d..382408174d 100644 --- a/english/cpp/system.collections/ilistwrapper/_index.md +++ b/english/cpp/system.collections/ilistwrapper/_index.md @@ -4,7 +4,7 @@ linktitle: IListWrapper second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::IListWrapper class. Intrerface to support casting from generic to non-generic collection in C++.' type: docs -weight: 1200 +weight: 1300 url: /cpp/system.collections/ilistwrapper/ --- ## IListWrapper class diff --git a/english/cpp/system.collections/invalidatable/_index.md b/english/cpp/system.collections/invalidatable/_index.md index ba0ed10e62..88e7b35351 100644 --- a/english/cpp/system.collections/invalidatable/_index.md +++ b/english/cpp/system.collections/invalidatable/_index.md @@ -4,7 +4,7 @@ linktitle: Invalidatable second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Invalidatable class. Class that makes it possible to track the state of its descendants through InvalidatableTracker objects in C++.' type: docs -weight: 1300 +weight: 1400 url: /cpp/system.collections/invalidatable/ --- ## Invalidatable class diff --git a/english/cpp/system.collections/invalidatabletracker/_index.md b/english/cpp/system.collections/invalidatabletracker/_index.md index c5360edf4e..5bb9685b23 100644 --- a/english/cpp/system.collections/invalidatabletracker/_index.md +++ b/english/cpp/system.collections/invalidatabletracker/_index.md @@ -4,7 +4,7 @@ linktitle: InvalidatableTracker second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::InvalidatableTracker class. Class that implements trackers of Invalidatable objects in C++.' type: docs -weight: 1400 +weight: 1500 url: /cpp/system.collections/invalidatabletracker/ --- ## InvalidatableTracker class diff --git a/english/cpp/system.componentmodel.design.serialization/_index.md b/english/cpp/system.componentmodel.design.serialization/_index.md index da44888ff4..366efae5cb 100644 --- a/english/cpp/system.componentmodel.design.serialization/_index.md +++ b/english/cpp/system.componentmodel.design.serialization/_index.md @@ -4,7 +4,7 @@ linktitle: System::ComponentModel::Design::Serialization second_title: Aspose.PDF for C++ API Reference description: 'How to use System::ComponentModel::Design::Serialization namespace in C++.' type: docs -weight: 3800 +weight: 4000 url: /cpp/system.componentmodel.design.serialization/ --- diff --git a/english/cpp/system.componentmodel/_index.md b/english/cpp/system.componentmodel/_index.md index f3f11961f5..3a90a92c05 100644 --- a/english/cpp/system.componentmodel/_index.md +++ b/english/cpp/system.componentmodel/_index.md @@ -4,7 +4,7 @@ linktitle: System::ComponentModel second_title: Aspose.PDF for C++ API Reference description: 'How to use System::ComponentModel namespace in C++.' type: docs -weight: 3700 +weight: 3900 url: /cpp/system.componentmodel/ --- diff --git a/english/cpp/system.componentmodel/backgroundworker/_index.md b/english/cpp/system.componentmodel/backgroundworker/_index.md index 193c51057c..ec7967fa59 100644 --- a/english/cpp/system.componentmodel/backgroundworker/_index.md +++ b/english/cpp/system.componentmodel/backgroundworker/_index.md @@ -22,19 +22,12 @@ class BackgroundWorker : public System::ComponentModel::Component | --- | --- | | [BackgroundWorker](./backgroundworker/)() | RTTI information. | | [get_WorkerReportsProgress](./get_workerreportsprogress/)() const | Gets a value indicating whether the [System::ComponentModel::BackgroundWorker](./) can report progress updates. | -| [ReportProgress](./reportprogress/)(int) | Raises the [System::ComponentModel::BackgroundWorker::ProgressChanged](./progresschanged/) event. | -| [ReportProgress](./reportprogress/)(int, const System::SharedPtr\\&) | Raises the [System::ComponentModel::BackgroundWorker::ProgressChanged](./progresschanged/) event with userState object. | +| [ReportProgress](./reportprogress/)(int) | Raises the **System::ComponentModel::BackgroundWorker::ProgressChanged** event. | +| [ReportProgress](./reportprogress/)(int, const System::SharedPtr\\&) | Raises the **System::ComponentModel::BackgroundWorker::ProgressChanged** event with userState object. | | [RunWorkerAsync](./runworkerasync/)() | Starts execution of a background operation. | | [RunWorkerAsync](./runworkerasync/)(const System::SharedPtr\\&) | Starts execution of a background operation. | | [set_WorkerReportsProgress](./set_workerreportsprogress/)(bool) | Sets a value indicating whether the [System::ComponentModel::BackgroundWorker](./) can report progress updates. | | [~BackgroundWorker](./~backgroundworker/)() | Destructor. | -## Fields - -| Field | Description | -| --- | --- | -| [DoWork](./dowork/) | Occurs when [System::ComponentModel::BackgroundWorker::RunWorkerAsync](./runworkerasync/) is called. | -| [ProgressChanged](./progresschanged/) | Occurs when [System::ComponentModel::BackgroundWorker::ReportProgress(int)](./reportprogress/) is called. | -| [RunWorkerCompleted](./runworkercompleted/) | Occurs when the background operation has completed, has been canceled, or has raised an exception. | ## See Also * Class [Component](../component/) diff --git a/english/cpp/system.componentmodel/backgroundworker/reportprogress/_index.md b/english/cpp/system.componentmodel/backgroundworker/reportprogress/_index.md index 1166b892b0..6f072f6db6 100644 --- a/english/cpp/system.componentmodel/backgroundworker/reportprogress/_index.md +++ b/english/cpp/system.componentmodel/backgroundworker/reportprogress/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.componentmodel/backgroundworker/reportprogress/ ## BackgroundWorker::ReportProgress(int) method -Raises the [System::ComponentModel::BackgroundWorker::ProgressChanged](../progresschanged/) event. +Raises the **System::ComponentModel::BackgroundWorker::ProgressChanged** event. ```cpp void System::ComponentModel::BackgroundWorker::ReportProgress(int percentProgress) @@ -29,7 +29,7 @@ void System::ComponentModel::BackgroundWorker::ReportProgress(int percentProgres ## BackgroundWorker::ReportProgress(int, const System::SharedPtr\\&) method -Raises the [System::ComponentModel::BackgroundWorker::ProgressChanged](../progresschanged/) event with userState object. +Raises the **System::ComponentModel::BackgroundWorker::ProgressChanged** event with userState object. ```cpp void System::ComponentModel::BackgroundWorker::ReportProgress(int percentProgress, const System::SharedPtr &userState) diff --git a/english/cpp/system.componentmodel/backgroundworker/runworkerasync/_index.md b/english/cpp/system.componentmodel/backgroundworker/runworkerasync/_index.md index a7c9fd9e0d..cf86df57a3 100644 --- a/english/cpp/system.componentmodel/backgroundworker/runworkerasync/_index.md +++ b/english/cpp/system.componentmodel/backgroundworker/runworkerasync/_index.md @@ -33,7 +33,7 @@ void System::ComponentModel::BackgroundWorker::RunWorkerAsync(const System::Shar | Parameter | Type | Description | | --- | --- | --- | -| argument | const System::SharedPtr\\& | A parameter for use by the background operation to be executed in the [System::ComponentModel::BackgroundWorker::DoWork](../dowork/) event handler. | +| argument | const System::SharedPtr\\& | A parameter for use by the background operation to be executed in the **System::ComponentModel::BackgroundWorker::DoWork** event handler. | ## See Also diff --git a/english/cpp/system.data.common/_index.md b/english/cpp/system.data.common/_index.md index eab42c6a93..4cbebb5d88 100644 --- a/english/cpp/system.data.common/_index.md +++ b/english/cpp/system.data.common/_index.md @@ -4,7 +4,7 @@ linktitle: System::Data::Common second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Data::Common namespace in C++.' type: docs -weight: 4000 +weight: 4200 url: /cpp/system.data.common/ --- diff --git a/english/cpp/system.data.sqlclient/_index.md b/english/cpp/system.data.sqlclient/_index.md index be90b83f28..6a4dfedd4d 100644 --- a/english/cpp/system.data.sqlclient/_index.md +++ b/english/cpp/system.data.sqlclient/_index.md @@ -4,7 +4,7 @@ linktitle: System::Data::SqlClient second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Data::SqlClient namespace in C++.' type: docs -weight: 4100 +weight: 4300 url: /cpp/system.data.sqlclient/ --- diff --git a/english/cpp/system.data/_index.md b/english/cpp/system.data/_index.md index 0d37ddd487..dc59c7ccd3 100644 --- a/english/cpp/system.data/_index.md +++ b/english/cpp/system.data/_index.md @@ -4,7 +4,7 @@ linktitle: System::Data second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Data namespace in C++.' type: docs -weight: 3900 +weight: 4100 url: /cpp/system.data/ --- diff --git a/english/cpp/system.diagnostics/_index.md b/english/cpp/system.diagnostics/_index.md index cd117761fc..8684873677 100644 --- a/english/cpp/system.diagnostics/_index.md +++ b/english/cpp/system.diagnostics/_index.md @@ -4,7 +4,7 @@ linktitle: System::Diagnostics second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Diagnostics namespace in C++.' type: docs -weight: 4200 +weight: 4400 url: /cpp/system.diagnostics/ --- diff --git a/english/cpp/system.drawing.drawing2d/_index.md b/english/cpp/system.drawing.drawing2d/_index.md index 0b10401ce5..f7fa8020da 100644 --- a/english/cpp/system.drawing.drawing2d/_index.md +++ b/english/cpp/system.drawing.drawing2d/_index.md @@ -4,7 +4,7 @@ linktitle: System::Drawing::Drawing2D second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Drawing::Drawing2D namespace in C++.' type: docs -weight: 4400 +weight: 4600 url: /cpp/system.drawing.drawing2d/ --- diff --git a/english/cpp/system.drawing.imaging/_index.md b/english/cpp/system.drawing.imaging/_index.md index 5be4682b24..ca2c222e66 100644 --- a/english/cpp/system.drawing.imaging/_index.md +++ b/english/cpp/system.drawing.imaging/_index.md @@ -4,7 +4,7 @@ linktitle: System::Drawing::Imaging second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Drawing::Imaging namespace in C++.' type: docs -weight: 4500 +weight: 4700 url: /cpp/system.drawing.imaging/ --- diff --git a/english/cpp/system.drawing.printing/_index.md b/english/cpp/system.drawing.printing/_index.md index 662bfe8b3e..1b9d6f7428 100644 --- a/english/cpp/system.drawing.printing/_index.md +++ b/english/cpp/system.drawing.printing/_index.md @@ -4,7 +4,7 @@ linktitle: System::Drawing::Printing second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Drawing::Printing namespace in C++.' type: docs -weight: 4600 +weight: 4800 url: /cpp/system.drawing.printing/ --- diff --git a/english/cpp/system.drawing.printing/printdocument/_index.md b/english/cpp/system.drawing.printing/printdocument/_index.md index 387b9fbfc4..3611b11939 100644 --- a/english/cpp/system.drawing.printing/printdocument/_index.md +++ b/english/cpp/system.drawing.printing/printdocument/_index.md @@ -25,11 +25,6 @@ class PrintDocument : public System::Object | [set_DocumentName](./set_documentname/)(const String\&) | NOT IMPLEMENTED. | | [set_PrintController](./set_printcontroller/)(const SharedPtr\\&) | NOT IMPLEMENTED. | | [set_PrinterSettings](./set_printersettings/)(const SharedPtr\\&) | NOT IMPLEMENTED. | -## Fields - -| Field | Description | -| --- | --- | -| [PrintPage](./printpage/) | An event that gets fired when the output to print for the current page is needed. | ## See Also * Class [Object](../../system/object/) diff --git a/english/cpp/system.drawing.text/_index.md b/english/cpp/system.drawing.text/_index.md index 09dde4d9a1..cf8e12c466 100644 --- a/english/cpp/system.drawing.text/_index.md +++ b/english/cpp/system.drawing.text/_index.md @@ -4,7 +4,7 @@ linktitle: System::Drawing::Text second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Drawing::Text namespace in C++.' type: docs -weight: 4700 +weight: 4900 url: /cpp/system.drawing.text/ --- diff --git a/english/cpp/system.drawing/_index.md b/english/cpp/system.drawing/_index.md index 63bd1ac86c..760b68d95e 100644 --- a/english/cpp/system.drawing/_index.md +++ b/english/cpp/system.drawing/_index.md @@ -4,7 +4,7 @@ linktitle: System::Drawing second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Drawing namespace in C++.' type: docs -weight: 4300 +weight: 4500 url: /cpp/system.drawing/ --- diff --git a/english/cpp/system.globalization/_index.md b/english/cpp/system.globalization/_index.md index ff2884c631..f4c039a832 100644 --- a/english/cpp/system.globalization/_index.md +++ b/english/cpp/system.globalization/_index.md @@ -4,7 +4,7 @@ linktitle: System::Globalization second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Globalization namespace in C++.' type: docs -weight: 4800 +weight: 5000 url: /cpp/system.globalization/ --- diff --git a/english/cpp/system.io.compression/_index.md b/english/cpp/system.io.compression/_index.md index 08d1809d18..dc4fccad36 100644 --- a/english/cpp/system.io.compression/_index.md +++ b/english/cpp/system.io.compression/_index.md @@ -4,7 +4,7 @@ linktitle: System::IO::Compression second_title: Aspose.PDF for C++ API Reference description: 'How to use System::IO::Compression namespace in C++.' type: docs -weight: 5000 +weight: 5200 url: /cpp/system.io.compression/ --- diff --git a/english/cpp/system.io/_index.md b/english/cpp/system.io/_index.md index b7cec8e92d..1b24cd2879 100644 --- a/english/cpp/system.io/_index.md +++ b/english/cpp/system.io/_index.md @@ -4,7 +4,7 @@ linktitle: System::IO second_title: Aspose.PDF for C++ API Reference description: 'How to use System::IO namespace in C++.' type: docs -weight: 4900 +weight: 5100 url: /cpp/system.io/ --- diff --git a/english/cpp/system.io/filesysteminfostat/_index.md b/english/cpp/system.io/filesysteminfostat/_index.md index 5066a51f07..b117136cf6 100644 --- a/english/cpp/system.io/filesysteminfostat/_index.md +++ b/english/cpp/system.io/filesysteminfostat/_index.md @@ -16,15 +16,6 @@ Represents information about a file or directory. class FileSystemInfoStat ``` -## Fields - -| Field | Description | -| --- | --- | -| [aTime](./atime/) | Last access time. | -| [attr](./attr/) | Attributes of a file or a directory. | -| [cTime](./ctime/) | Creation time. | -| [size](./size/) | [File](../file/) size in bytes. | -| [wTime](./wtime/) | Last write time. | ## See Also * Namespace [System::IO](../) diff --git a/english/cpp/system.linq/_index.md b/english/cpp/system.linq/_index.md index 88add1fdf8..4ef56fe1a1 100644 --- a/english/cpp/system.linq/_index.md +++ b/english/cpp/system.linq/_index.md @@ -4,7 +4,7 @@ linktitle: System::Linq second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Linq namespace in C++.' type: docs -weight: 5100 +weight: 5300 url: /cpp/system.linq/ --- @@ -16,3 +16,4 @@ url: /cpp/system.linq/ | --- | --- | | [Enumerable](./enumerable/) | Provides static LINQ methods. | | [IGrouping](./igrouping/) | | +| [IOrderedEnumerable](./iorderedenumerable/) | Represents a sorted sequence. | diff --git a/english/cpp/system.linq/iorderedenumerable/_index.md b/english/cpp/system.linq/iorderedenumerable/_index.md new file mode 100644 index 0000000000..a3d11ea51d --- /dev/null +++ b/english/cpp/system.linq/iorderedenumerable/_index.md @@ -0,0 +1,41 @@ +--- +title: System::Linq::IOrderedEnumerable class +linktitle: IOrderedEnumerable +second_title: Aspose.PDF for C++ API Reference +description: 'System::Linq::IOrderedEnumerable class. Represents a sorted sequence in C++.' +type: docs +weight: 300 +url: /cpp/system.linq/iorderedenumerable/ +--- +## IOrderedEnumerable class + + +Represents a sorted sequence. + +```cpp +templateclass IOrderedEnumerable : public System::Collections::Generic::IEnumerable +``` + + +| Parameter | Description | +| --- | --- | +| T | The type of the elements of the sequence. | +## Methods + +| Method | Description | +| --- | --- | +| [GetEnumerator](./getenumerator/)() override | Gets enumerator. | +| [IOrderedEnumerable](./iorderedenumerable/)(const System::SharedPtr\\>\&, const Comparator\&) | | +| [LINQ_ThenBy](./linq_thenby/)(const Func\\&) | Performs a subsequent ordering of the elements in a sequence in ascending order according to a key. | +| [LINQ_ThenBy](./linq_thenby/)(const Func\\&) | | +## Typedefs + +| Typedef | Description | +| --- | --- | +| [Comparator](./comparator/) | RTTI information. | + +## See Also + +* Class [IEnumerable](../../system.collections.generic/ienumerable/) +* Namespace [System::Linq](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system.linq/iorderedenumerable/comparator/_index.md b/english/cpp/system.linq/iorderedenumerable/comparator/_index.md new file mode 100644 index 0000000000..109a78868a --- /dev/null +++ b/english/cpp/system.linq/iorderedenumerable/comparator/_index.md @@ -0,0 +1,23 @@ +--- +title: System::Linq::IOrderedEnumerable::Comparator typedef +linktitle: Comparator +second_title: Aspose.PDF for C++ API Reference +description: 'System::Linq::IOrderedEnumerable::Comparator typedef. RTTI information in C++.' +type: docs +weight: 400 +url: /cpp/system.linq/iorderedenumerable/comparator/ +--- +## Comparator typedef + + +RTTI information. + +```cpp +using System::Linq::IOrderedEnumerable< T >::Comparator = std::function +``` + +## See Also + +* Class [IOrderedEnumerable](../) +* Namespace [System::Linq](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.linq/iorderedenumerable/getenumerator/_index.md b/english/cpp/system.linq/iorderedenumerable/getenumerator/_index.md new file mode 100644 index 0000000000..4bbedaa8fc --- /dev/null +++ b/english/cpp/system.linq/iorderedenumerable/getenumerator/_index.md @@ -0,0 +1,30 @@ +--- +title: System::Linq::IOrderedEnumerable::GetEnumerator method +linktitle: GetEnumerator +second_title: Aspose.PDF for C++ API Reference +description: 'System::Linq::IOrderedEnumerable::GetEnumerator method. Gets enumerator in C++.' +type: docs +weight: 200 +url: /cpp/system.linq/iorderedenumerable/getenumerator/ +--- +## IOrderedEnumerable::GetEnumerator method + + +Gets enumerator. + +```cpp +virtual SharedPtr> System::Linq::IOrderedEnumerable::GetEnumerator() override +``` + + +### ReturnValue + +Pointer to newly created enumerator object which can be used to iterate through interfaced object. + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [IEnumerator](../../../system.collections.generic/ienumerator/) +* Class [IOrderedEnumerable](../) +* Namespace [System::Linq](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.linq/iorderedenumerable/iorderedenumerable/_index.md b/english/cpp/system.linq/iorderedenumerable/iorderedenumerable/_index.md new file mode 100644 index 0000000000..0c39169cf9 --- /dev/null +++ b/english/cpp/system.linq/iorderedenumerable/iorderedenumerable/_index.md @@ -0,0 +1,26 @@ +--- +title: System::Linq::IOrderedEnumerable::IOrderedEnumerable constructor +linktitle: IOrderedEnumerable +second_title: Aspose.PDF for C++ API Reference +description: 'How to use IOrderedEnumerable constructor of System::Linq::IOrderedEnumerable class in C++.' +type: docs +weight: 100 +url: /cpp/system.linq/iorderedenumerable/iorderedenumerable/ +--- +## IOrderedEnumerable::IOrderedEnumerable constructor + + + + +```cpp +System::Linq::IOrderedEnumerable::IOrderedEnumerable(const System::SharedPtr> &root, const Comparator &comp) +``` + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [IEnumerable](../../../system.collections.generic/ienumerable/) +* Typedef [Comparator](../comparator/) +* Class [IOrderedEnumerable](../) +* Namespace [System::Linq](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.linq/iorderedenumerable/linq_thenby/_index.md b/english/cpp/system.linq/iorderedenumerable/linq_thenby/_index.md new file mode 100644 index 0000000000..03f7997cf6 --- /dev/null +++ b/english/cpp/system.linq/iorderedenumerable/linq_thenby/_index.md @@ -0,0 +1,56 @@ +--- +title: System::Linq::IOrderedEnumerable::LINQ_ThenBy method +linktitle: LINQ_ThenBy +second_title: Aspose.PDF for C++ API Reference +description: 'How to use LINQ_ThenBy method of System::Linq::IOrderedEnumerable class in C++.' +type: docs +weight: 300 +url: /cpp/system.linq/iorderedenumerable/linq_thenby/ +--- +## IOrderedEnumerable::LINQ_ThenBy(const Func\\&) method + + + + +```cpp +template SharedPtr> System::Linq::IOrderedEnumerable::LINQ_ThenBy(const Func &keySelector) +``` + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [IOrderedEnumerable](../) +* Class [Func](../../../system/func/) +* Class [IOrderedEnumerable](../) +* Namespace [System::Linq](../../) +* Library [Aspose.PDF for C++](../../../) +## IOrderedEnumerable::LINQ_ThenBy(const Func\\&) method + + +Performs a subsequent ordering of the elements in a sequence in ascending order according to a key. + +```cpp +template SharedPtr> System::Linq::IOrderedEnumerable::LINQ_ThenBy(const Func &keySelector) +``` + + +| Parameter | Description | +| --- | --- | +| Key | The type of the key returned by keySelector. | + +| Parameter | Type | Description | +| --- | --- | --- | +| keySelector | const Func\\& | A function to extract a key from each element. | + +### ReturnValue + +[System::Linq::IOrderedEnumerable](../) whose elements are sorted according to a key. + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [IOrderedEnumerable](../) +* Class [Func](../../../system/func/) +* Class [IOrderedEnumerable](../) +* Namespace [System::Linq](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.net.cache/_index.md b/english/cpp/system.net.cache/_index.md index 3f694da12e..4a3baf4fe8 100644 --- a/english/cpp/system.net.cache/_index.md +++ b/english/cpp/system.net.cache/_index.md @@ -4,7 +4,7 @@ linktitle: System::Net::Cache second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Net::Cache namespace in C++.' type: docs -weight: 5300 +weight: 5500 url: /cpp/system.net.cache/ --- diff --git a/english/cpp/system.net.http.headers/_index.md b/english/cpp/system.net.http.headers/_index.md index 2544641e2c..6a603f9253 100644 --- a/english/cpp/system.net.http.headers/_index.md +++ b/english/cpp/system.net.http.headers/_index.md @@ -4,7 +4,7 @@ linktitle: System::Net::Http::Headers second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Net::Http::Headers namespace in C++.' type: docs -weight: 5500 +weight: 5700 url: /cpp/system.net.http.headers/ --- diff --git a/english/cpp/system.net.http/_index.md b/english/cpp/system.net.http/_index.md index f7580bb1da..d0acfa740b 100644 --- a/english/cpp/system.net.http/_index.md +++ b/english/cpp/system.net.http/_index.md @@ -4,7 +4,7 @@ linktitle: System::Net::Http second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Net::Http namespace in C++.' type: docs -weight: 5400 +weight: 5600 url: /cpp/system.net.http/ --- diff --git a/english/cpp/system.net.networkinformation/_index.md b/english/cpp/system.net.networkinformation/_index.md index 9530e2c829..8381d4956c 100644 --- a/english/cpp/system.net.networkinformation/_index.md +++ b/english/cpp/system.net.networkinformation/_index.md @@ -4,7 +4,7 @@ linktitle: System::Net::NetworkInformation second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Net::NetworkInformation namespace in C++.' type: docs -weight: 5600 +weight: 5800 url: /cpp/system.net.networkinformation/ --- diff --git a/english/cpp/system.net.security/_index.md b/english/cpp/system.net.security/_index.md index 3d532b7659..e80c39629b 100644 --- a/english/cpp/system.net.security/_index.md +++ b/english/cpp/system.net.security/_index.md @@ -4,7 +4,7 @@ linktitle: System::Net::Security second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Net::Security namespace in C++.' type: docs -weight: 5700 +weight: 5900 url: /cpp/system.net.security/ --- diff --git a/english/cpp/system.net.sockets/_index.md b/english/cpp/system.net.sockets/_index.md index 26f22b2e13..20138a8115 100644 --- a/english/cpp/system.net.sockets/_index.md +++ b/english/cpp/system.net.sockets/_index.md @@ -4,7 +4,7 @@ linktitle: System::Net::Sockets second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Net::Sockets namespace in C++.' type: docs -weight: 5800 +weight: 6000 url: /cpp/system.net.sockets/ --- diff --git a/english/cpp/system.net/_index.md b/english/cpp/system.net/_index.md index 4cd69a9aa8..1c1483a783 100644 --- a/english/cpp/system.net/_index.md +++ b/english/cpp/system.net/_index.md @@ -4,7 +4,7 @@ linktitle: System::Net second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Net namespace in C++.' type: docs -weight: 5200 +weight: 5400 url: /cpp/system.net/ --- diff --git a/english/cpp/system.net/cookie/_index.md b/english/cpp/system.net/cookie/_index.md index 19df682a6e..6b5dcba406 100644 --- a/english/cpp/system.net/cookie/_index.md +++ b/english/cpp/system.net/cookie/_index.md @@ -76,8 +76,6 @@ class Cookie : public System::Object | static [EqualsLiteral](./equalsliteral/) | The separator that is used to separates the name and value of an attribute. | | static [ExpiresAttributeName](./expiresattributename/) | The 'Expires' attribute's name. | | static [HttpOnlyAttributeName](./httponlyattributename/) | The 'HttpOnly' attribute's name. | -| [IsQuotedDomain](./isquoteddomain/) | A value that indicates if the domain is wrapped in the quotes. | -| [IsQuotedVersion](./isquotedversion/) | A value that indicates if the version is wrapped in the quotes. | | static [MaxAgeAttributeName](./maxageattributename/) | The 'Max-Age' attribute's name. | | static [MaxSupportedVersion](./maxsupportedversion/) | RTTI information. | | static [MaxSupportedVersionString](./maxsupportedversionstring/) | The string representation of the maximum supported version. | diff --git a/english/cpp/system.net/webrequest/webrequestprefixelement/_index.md b/english/cpp/system.net/webrequest/webrequestprefixelement/_index.md index c9a84d18f6..793dd716f5 100644 --- a/english/cpp/system.net/webrequest/webrequestprefixelement/_index.md +++ b/english/cpp/system.net/webrequest/webrequestprefixelement/_index.md @@ -21,12 +21,6 @@ class WebRequestPrefixElement : public System::Object | Method | Description | | --- | --- | | [WebRequestPrefixElement](./webrequestprefixelement/)(String, System::SharedPtr\) | Constructs a new instance. | -## Fields - -| Field | Description | -| --- | --- | -| [Creator](./creator/) | Creates a new instances of the [WebRequest](../) class. | -| [Prefix](./prefix/) | The prefix. | ## See Also * Class [Object](../../../system/object/) diff --git a/english/cpp/system.reflection/_index.md b/english/cpp/system.reflection/_index.md index 12e9ab1bc7..a9fade1438 100644 --- a/english/cpp/system.reflection/_index.md +++ b/english/cpp/system.reflection/_index.md @@ -4,7 +4,7 @@ linktitle: System::Reflection second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Reflection namespace in C++.' type: docs -weight: 5900 +weight: 6100 url: /cpp/system.reflection/ --- diff --git a/english/cpp/system.reflection/memberinfo/typeinternal/_index.md b/english/cpp/system.reflection/memberinfo/typeinternal/_index.md index c75b269501..2179668868 100644 --- a/english/cpp/system.reflection/memberinfo/typeinternal/_index.md +++ b/english/cpp/system.reflection/memberinfo/typeinternal/_index.md @@ -22,11 +22,6 @@ class TypeInternal | --- | --- | | [get_FullName](./get_fullname/)() const | Gets type full name. | | [get_Name](./get_name/)() const | Gets type short name. | -## Fields - -| Field | Description | -| --- | --- | -| [MemberInfo](./memberinfo/) | Friend declaration. | ## See Also * Class [MemberInfo](../) diff --git a/english/cpp/system.resources/_index.md b/english/cpp/system.resources/_index.md index 27d318754b..a26cdf955a 100644 --- a/english/cpp/system.resources/_index.md +++ b/english/cpp/system.resources/_index.md @@ -4,7 +4,7 @@ linktitle: System::Resources second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Resources namespace in C++.' type: docs -weight: 6000 +weight: 6200 url: /cpp/system.resources/ --- diff --git a/english/cpp/system.runtime.compilerservices/_index.md b/english/cpp/system.runtime.compilerservices/_index.md index 14f6cc8163..8e32079654 100644 --- a/english/cpp/system.runtime.compilerservices/_index.md +++ b/english/cpp/system.runtime.compilerservices/_index.md @@ -4,7 +4,7 @@ linktitle: System::Runtime::CompilerServices second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Runtime::CompilerServices namespace in C++.' type: docs -weight: 6100 +weight: 6300 url: /cpp/system.runtime.compilerservices/ --- diff --git a/english/cpp/system.runtime.interopservices/_index.md b/english/cpp/system.runtime.interopservices/_index.md index f846a6e599..1172d72eef 100644 --- a/english/cpp/system.runtime.interopservices/_index.md +++ b/english/cpp/system.runtime.interopservices/_index.md @@ -4,7 +4,7 @@ linktitle: System::Runtime::InteropServices second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Runtime::InteropServices namespace in C++.' type: docs -weight: 6200 +weight: 6400 url: /cpp/system.runtime.interopservices/ --- diff --git a/english/cpp/system.runtime.serialization/_index.md b/english/cpp/system.runtime.serialization/_index.md index 3f9ecadff5..bf8a55ae32 100644 --- a/english/cpp/system.runtime.serialization/_index.md +++ b/english/cpp/system.runtime.serialization/_index.md @@ -4,7 +4,7 @@ linktitle: System::Runtime::Serialization second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Runtime::Serialization namespace in C++.' type: docs -weight: 6300 +weight: 6500 url: /cpp/system.runtime.serialization/ --- diff --git a/english/cpp/system.security.authentication/_index.md b/english/cpp/system.security.authentication/_index.md index 01569bf32b..845ce3cf68 100644 --- a/english/cpp/system.security.authentication/_index.md +++ b/english/cpp/system.security.authentication/_index.md @@ -4,7 +4,7 @@ linktitle: System::Security::Authentication second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Security::Authentication namespace in C++.' type: docs -weight: 6500 +weight: 6700 url: /cpp/system.security.authentication/ --- diff --git a/english/cpp/system.security.cryptography.pkcs/_index.md b/english/cpp/system.security.cryptography.pkcs/_index.md index 07f5852e0d..321235a70b 100644 --- a/english/cpp/system.security.cryptography.pkcs/_index.md +++ b/english/cpp/system.security.cryptography.pkcs/_index.md @@ -4,7 +4,7 @@ linktitle: System::Security::Cryptography::Pkcs second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Security::Cryptography::Pkcs namespace in C++.' type: docs -weight: 6700 +weight: 6900 url: /cpp/system.security.cryptography.pkcs/ --- diff --git a/english/cpp/system.security.cryptography.x509certificates/_index.md b/english/cpp/system.security.cryptography.x509certificates/_index.md index c8e381b3b5..b219c793c1 100644 --- a/english/cpp/system.security.cryptography.x509certificates/_index.md +++ b/english/cpp/system.security.cryptography.x509certificates/_index.md @@ -4,7 +4,7 @@ linktitle: System::Security::Cryptography::X509Certificates second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Security::Cryptography::X509Certificates namespace in C++.' type: docs -weight: 6800 +weight: 7000 url: /cpp/system.security.cryptography.x509certificates/ --- diff --git a/english/cpp/system.security.cryptography.xml/_index.md b/english/cpp/system.security.cryptography.xml/_index.md index 4ae5c3d739..a69b6457da 100644 --- a/english/cpp/system.security.cryptography.xml/_index.md +++ b/english/cpp/system.security.cryptography.xml/_index.md @@ -4,7 +4,7 @@ linktitle: System::Security::Cryptography::Xml second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Security::Cryptography::Xml namespace in C++.' type: docs -weight: 6900 +weight: 7100 url: /cpp/system.security.cryptography.xml/ --- diff --git a/english/cpp/system.security.cryptography/_index.md b/english/cpp/system.security.cryptography/_index.md index 35ca0700cf..2472103664 100644 --- a/english/cpp/system.security.cryptography/_index.md +++ b/english/cpp/system.security.cryptography/_index.md @@ -4,7 +4,7 @@ linktitle: System::Security::Cryptography second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Security::Cryptography namespace in C++.' type: docs -weight: 6600 +weight: 6800 url: /cpp/system.security.cryptography/ --- diff --git a/english/cpp/system.security.cryptography/cspparameters/_index.md b/english/cpp/system.security.cryptography/cspparameters/_index.md index 03d687882c..c6eee81564 100644 --- a/english/cpp/system.security.cryptography/cspparameters/_index.md +++ b/english/cpp/system.security.cryptography/cspparameters/_index.md @@ -24,14 +24,6 @@ class CspParameters : public System::Object | [CspParameters](./cspparameters/)(int) | Constructor. | | [CspParameters](./cspparameters/)(int, const System::String\&) | Constructor. | | [CspParameters](./cspparameters/)(int, const System::String\&, const System::String\&) | Constructor. | -## Fields - -| Field | Description | -| --- | --- | -| [KeyContainerName](./keycontainername/) | RTTI information. | -| [KeyNumber](./keynumber/) | Specifies whether asymmetric key is signature key or exchange key. | -| [ProviderName](./providername/) | CSP name. | -| [ProviderType](./providertype/) | CSP type. | ## See Also * Class [Object](../../system/object/) diff --git a/english/cpp/system.security.permissions/_index.md b/english/cpp/system.security.permissions/_index.md index e357ff8dcc..0bf83aafbf 100644 --- a/english/cpp/system.security.permissions/_index.md +++ b/english/cpp/system.security.permissions/_index.md @@ -4,7 +4,7 @@ linktitle: System::Security::Permissions second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Security::Permissions namespace in C++.' type: docs -weight: 7000 +weight: 7200 url: /cpp/system.security.permissions/ --- diff --git a/english/cpp/system.security.policy/_index.md b/english/cpp/system.security.policy/_index.md index ba815a1a75..7cc1795362 100644 --- a/english/cpp/system.security.policy/_index.md +++ b/english/cpp/system.security.policy/_index.md @@ -4,7 +4,7 @@ linktitle: System::Security::Policy second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Security::Policy namespace in C++.' type: docs -weight: 7100 +weight: 7300 url: /cpp/system.security.policy/ --- diff --git a/english/cpp/system.security/_index.md b/english/cpp/system.security/_index.md index a59a0f0131..cbfb34901d 100644 --- a/english/cpp/system.security/_index.md +++ b/english/cpp/system.security/_index.md @@ -4,7 +4,7 @@ linktitle: System::Security second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Security namespace in C++.' type: docs -weight: 6400 +weight: 6600 url: /cpp/system.security/ --- diff --git a/english/cpp/system.testpredicates.typetraits/_index.md b/english/cpp/system.testpredicates.typetraits/_index.md index b53cafbb0d..14971577b4 100644 --- a/english/cpp/system.testpredicates.typetraits/_index.md +++ b/english/cpp/system.testpredicates.typetraits/_index.md @@ -4,7 +4,7 @@ linktitle: System::TestPredicates::TypeTraits second_title: Aspose.PDF for C++ API Reference description: 'How to use System::TestPredicates::TypeTraits namespace in C++.' type: docs -weight: 7200 +weight: 7400 url: /cpp/system.testpredicates.typetraits/ --- diff --git a/english/cpp/system.text.regularexpressions/_index.md b/english/cpp/system.text.regularexpressions/_index.md index 1a33426abb..902569bad7 100644 --- a/english/cpp/system.text.regularexpressions/_index.md +++ b/english/cpp/system.text.regularexpressions/_index.md @@ -4,7 +4,7 @@ linktitle: System::Text::RegularExpressions second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Text::RegularExpressions namespace in C++.' type: docs -weight: 7400 +weight: 7600 url: /cpp/system.text.regularexpressions/ --- diff --git a/english/cpp/system.text/_index.md b/english/cpp/system.text/_index.md index 7d4a9053b2..2eb4e6344e 100644 --- a/english/cpp/system.text/_index.md +++ b/english/cpp/system.text/_index.md @@ -4,7 +4,7 @@ linktitle: System::Text second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Text namespace in C++.' type: docs -weight: 7300 +weight: 7500 url: /cpp/system.text/ --- diff --git a/english/cpp/system.threading/_index.md b/english/cpp/system.threading/_index.md index 3e6c1f3ab5..64a685d68d 100644 --- a/english/cpp/system.threading/_index.md +++ b/english/cpp/system.threading/_index.md @@ -4,7 +4,7 @@ linktitle: System::Threading second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Threading namespace in C++.' type: docs -weight: 7500 +weight: 7700 url: /cpp/system.threading/ --- diff --git a/english/cpp/system.timers/_index.md b/english/cpp/system.timers/_index.md index 6d1dfc4e99..8056de2916 100644 --- a/english/cpp/system.timers/_index.md +++ b/english/cpp/system.timers/_index.md @@ -4,7 +4,7 @@ linktitle: System::Timers second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Timers namespace in C++.' type: docs -weight: 7600 +weight: 7800 url: /cpp/system.timers/ --- diff --git a/english/cpp/system.timers/timer/_index.md b/english/cpp/system.timers/timer/_index.md index 2973763c6f..f920a50235 100644 --- a/english/cpp/system.timers/timer/_index.md +++ b/english/cpp/system.timers/timer/_index.md @@ -33,11 +33,6 @@ class Timer : public System::ComponentModel::Component | [Stop](./stop/)() | Stops timer. | | [Timer](./timer/)() | RTTI information. | | [Timer](./timer/)(double) | Constructs stopped timer with specified interval. | -## Fields - -| Field | Description | -| --- | --- | -| [Elapsed](./elapsed/) | Callback function to be called by timer. | ## See Also * Class [Component](../../system.componentmodel/component/) diff --git a/english/cpp/system.web.services.description/_index.md b/english/cpp/system.web.services.description/_index.md index a96b524588..90320966ba 100644 --- a/english/cpp/system.web.services.description/_index.md +++ b/english/cpp/system.web.services.description/_index.md @@ -4,7 +4,7 @@ linktitle: System::Web::Services::Description second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Web::Services::Description namespace in C++.' type: docs -weight: 7900 +weight: 8100 url: /cpp/system.web.services.description/ --- diff --git a/english/cpp/system.web.services.protocols/_index.md b/english/cpp/system.web.services.protocols/_index.md index 1cdaec505b..9dbba08850 100644 --- a/english/cpp/system.web.services.protocols/_index.md +++ b/english/cpp/system.web.services.protocols/_index.md @@ -4,7 +4,7 @@ linktitle: System::Web::Services::Protocols second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Web::Services::Protocols namespace in C++.' type: docs -weight: 8000 +weight: 8200 url: /cpp/system.web.services.protocols/ --- diff --git a/english/cpp/system.web.services.protocols/httpwebclientprotocol/_index.md b/english/cpp/system.web.services.protocols/httpwebclientprotocol/_index.md index b4e6091e6e..dbb9f6bf20 100644 --- a/english/cpp/system.web.services.protocols/httpwebclientprotocol/_index.md +++ b/english/cpp/system.web.services.protocols/httpwebclientprotocol/_index.md @@ -35,11 +35,6 @@ class HttpWebClientProtocol : public System::Web::Services::Protocols::WebClient | [set_UnsafeAuthenticatedConnectionSharing](./set_unsafeauthenticatedconnectionsharing/)(bool) | Sets a value that indicates if the connection sharing is enabled when the client uses NTLM authentication. | | [set_UserAgent](./set_useragent/)(String) | Sets a value of the 'User-Agent' header. | | [UnregisterMapping](./unregistermapping/)(System::SharedPtr\) | | -## Fields - -| Field | Description | -| --- | --- | -| [uri](../webclientprotocol/uri/) | The XML [Web](../../system.web/) service URI. | ## See Also * Class [WebClientProtocol](../webclientprotocol/) diff --git a/english/cpp/system.web.services.protocols/soapclientmessage/_index.md b/english/cpp/system.web.services.protocols/soapclientmessage/_index.md index 77e4ed792f..25b88b5650 100644 --- a/english/cpp/system.web.services.protocols/soapclientmessage/_index.md +++ b/english/cpp/system.web.services.protocols/soapclientmessage/_index.md @@ -26,12 +26,6 @@ class SoapClientMessage : public System::Web::Services::Protocols::SoapMessage | [get_SoapVersion](./get_soapversion/)() override | Returns the SOAP version that is used. | | [get_Url](./get_url/)() override | Returns the XML [Web](../../system.web/) service URL. | | [SoapClientMessage](./soapclientmessage/)(System::SharedPtr\, System::SharedPtr\, String, System::ArrayPtr\\>) | Constructs a new instance. | -## Fields - -| Field | Description | -| --- | --- | -| [MethodStubInfo](./methodstubinfo/) | RTTI information. | -| [Parameters](./parameters/) | A collection of parameters. | ## See Also * Class [SoapMessage](../soapmessage/) diff --git a/english/cpp/system.web.services.protocols/soaphttpclientprotocol/_index.md b/english/cpp/system.web.services.protocols/soaphttpclientprotocol/_index.md index 1821de4f68..be5acadb6b 100644 --- a/english/cpp/system.web.services.protocols/soaphttpclientprotocol/_index.md +++ b/english/cpp/system.web.services.protocols/soaphttpclientprotocol/_index.md @@ -25,11 +25,6 @@ class SoapHttpClientProtocol : public System::Web::Services::Protocols::HttpWebC | [InitializeSerializers](./initializeserializers/)(const System::TypeInfo\&, System::SharedPtr\, String) | Initializes the internal fields. | | [set_SoapVersion](./set_soapversion/)(SoapProtocolVersion) | Sets the SOAP version. | | [SoapHttpClientProtocol](./soaphttpclientprotocol/)() | Constructs a new instance. | -## Fields - -| Field | Description | -| --- | --- | -| [uri](../webclientprotocol/uri/) | The XML [Web](../../system.web/) service URI. | ## See Also * Class [HttpWebClientProtocol](../httpwebclientprotocol/) diff --git a/english/cpp/system.web.services.protocols/webclientprotocol/_index.md b/english/cpp/system.web.services.protocols/webclientprotocol/_index.md index df44934819..753f65b489 100644 --- a/english/cpp/system.web.services.protocols/webclientprotocol/_index.md +++ b/english/cpp/system.web.services.protocols/webclientprotocol/_index.md @@ -37,11 +37,6 @@ class WebClientProtocol : public virtual System::Object | [set_Uri](./set_uri/)(System::SharedPtr\) | Sets the XML [Web](../../system.web/) service URI. | | [set_Url](./set_url/)(String) | Sets the XML [Web](../../system.web/) service URL. | | [set_UseDefaultCredentials](./set_usedefaultcredentials/)(bool) | Sets a value that indicates if the 'Credential' property is equal to the 'DefaultCredentials' property. | -## Fields - -| Field | Description | -| --- | --- | -| [uri](./uri/) | The XML [Web](../../system.web/) service URI. | ## See Also * Class [Object](../../system/object/) diff --git a/english/cpp/system.web.services/_index.md b/english/cpp/system.web.services/_index.md index ddc3e8feb4..6679a9f879 100644 --- a/english/cpp/system.web.services/_index.md +++ b/english/cpp/system.web.services/_index.md @@ -4,7 +4,7 @@ linktitle: System::Web::Services second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Web::Services namespace in C++.' type: docs -weight: 7800 +weight: 8000 url: /cpp/system.web.services/ --- diff --git a/english/cpp/system.web.ui.webcontrols/_index.md b/english/cpp/system.web.ui.webcontrols/_index.md index c178545951..a0e620893d 100644 --- a/english/cpp/system.web.ui.webcontrols/_index.md +++ b/english/cpp/system.web.ui.webcontrols/_index.md @@ -4,7 +4,7 @@ linktitle: System::Web::UI::WebControls second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Web::UI::WebControls namespace in C++.' type: docs -weight: 8100 +weight: 8300 url: /cpp/system.web.ui.webcontrols/ --- diff --git a/english/cpp/system.web/_index.md b/english/cpp/system.web/_index.md index f26295f067..253b0018f9 100644 --- a/english/cpp/system.web/_index.md +++ b/english/cpp/system.web/_index.md @@ -4,7 +4,7 @@ linktitle: System::Web second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Web namespace in C++.' type: docs -weight: 7700 +weight: 7900 url: /cpp/system.web/ --- diff --git a/english/cpp/system.windows.forms/_index.md b/english/cpp/system.windows.forms/_index.md index d4c5b96f6c..3aa6604b9e 100644 --- a/english/cpp/system.windows.forms/_index.md +++ b/english/cpp/system.windows.forms/_index.md @@ -4,7 +4,7 @@ linktitle: System::Windows::Forms second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Windows::Forms namespace in C++.' type: docs -weight: 8200 +weight: 8400 url: /cpp/system.windows.forms/ --- diff --git a/english/cpp/system.xml.resolvers/_index.md b/english/cpp/system.xml.resolvers/_index.md index 6141c4a086..35a9ebfe6d 100644 --- a/english/cpp/system.xml.resolvers/_index.md +++ b/english/cpp/system.xml.resolvers/_index.md @@ -4,7 +4,7 @@ linktitle: System::Xml::Resolvers second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Xml::Resolvers namespace in C++.' type: docs -weight: 8400 +weight: 8600 url: /cpp/system.xml.resolvers/ --- diff --git a/english/cpp/system.xml.schema/_index.md b/english/cpp/system.xml.schema/_index.md index 6e10c260a2..9a06361cd0 100644 --- a/english/cpp/system.xml.schema/_index.md +++ b/english/cpp/system.xml.schema/_index.md @@ -4,7 +4,7 @@ linktitle: System::Xml::Schema second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Xml::Schema namespace in C++.' type: docs -weight: 8500 +weight: 8700 url: /cpp/system.xml.schema/ --- diff --git a/english/cpp/system.xml.schema/xmlschemacollection/_index.md b/english/cpp/system.xml.schema/xmlschemacollection/_index.md index 3ee9c7f3ce..31318b43cd 100644 --- a/english/cpp/system.xml.schema/xmlschemacollection/_index.md +++ b/english/cpp/system.xml.schema/xmlschemacollection/_index.md @@ -35,11 +35,6 @@ class XmlSchemaCollection : public System::Collections::Generic::IEnumerable\&) | Initializes a new instance of the [XmlSchemaCollection](./) class with the specified [XmlNameTable](../../system.xml/xmlnametable/). The [XmlNameTable](../../system.xml/xmlnametable/) is used when loading schemas. | -## Fields - -| Field | Description | -| --- | --- | -| [ValidationEventHandler](./validationeventhandler/) | Sets an event handler for receiving information about the XDR and XML schema validation errors. | ## Typedefs | Typedef | Description | diff --git a/english/cpp/system.xml.schema/xmlschemacollection/ptr/_index.md b/english/cpp/system.xml.schema/xmlschemacollection/ptr/_index.md index bb147ce081..55bacc995c 100644 --- a/english/cpp/system.xml.schema/xmlschemacollection/ptr/_index.md +++ b/english/cpp/system.xml.schema/xmlschemacollection/ptr/_index.md @@ -4,7 +4,7 @@ linktitle: Ptr second_title: Aspose.PDF for C++ API Reference description: 'System::Xml::Schema::XmlSchemaCollection::Ptr typedef. An alias for shared pointer to an instance of this class in C++.' type: docs -weight: 1000 +weight: 900 url: /cpp/system.xml.schema/xmlschemacollection/ptr/ --- ## Ptr typedef diff --git a/english/cpp/system.xml.schema/xmlschemavalidator/_index.md b/english/cpp/system.xml.schema/xmlschemavalidator/_index.md index 308e091b40..a1362f3ca6 100644 --- a/english/cpp/system.xml.schema/xmlschemavalidator/_index.md +++ b/english/cpp/system.xml.schema/xmlschemavalidator/_index.md @@ -47,11 +47,6 @@ class XmlSchemaValidator : public System::Object | [ValidateWhitespace](./validatewhitespace/)(const String\&) | Validates whether the white space in the **string** specified is allowed in the current element context, and accumulates the white space for validation if the current element has simple content. | | [ValidateWhitespace](./validatewhitespace/)(XmlValueGetter) | Validates whether the white space returned by the XmlValueGetter object specified is allowed in the current element context, and accumulates the white space for validation if the current element has simple content. | | [XmlSchemaValidator](./xmlschemavalidator/)(const SharedPtr\\&, const SharedPtr\\&, const SharedPtr\\&, XmlSchemaValidationFlags) | Initializes a new instance of the [XmlSchemaValidator](./) class. | -## Fields - -| Field | Description | -| --- | --- | -| [ValidationEventHandler](./validationeventhandler/) | The ValidationEventHandler that receives schema validation warnings and errors encountered during schema validation. | ## Typedefs | Typedef | Description | diff --git a/english/cpp/system.xml.schema/xmlschemavalidator/ptr/_index.md b/english/cpp/system.xml.schema/xmlschemavalidator/ptr/_index.md index 29c52f523d..937ea9188f 100644 --- a/english/cpp/system.xml.schema/xmlschemavalidator/ptr/_index.md +++ b/english/cpp/system.xml.schema/xmlschemavalidator/ptr/_index.md @@ -4,7 +4,7 @@ linktitle: Ptr second_title: Aspose.PDF for C++ API Reference description: 'System::Xml::Schema::XmlSchemaValidator::Ptr typedef. An alias for shared pointer to an instance of this class in C++.' type: docs -weight: 2300 +weight: 2200 url: /cpp/system.xml.schema/xmlschemavalidator/ptr/ --- ## Ptr typedef diff --git a/english/cpp/system.xml.serialization/_index.md b/english/cpp/system.xml.serialization/_index.md index 380317dce2..c21b7060cc 100644 --- a/english/cpp/system.xml.serialization/_index.md +++ b/english/cpp/system.xml.serialization/_index.md @@ -4,7 +4,7 @@ linktitle: System::Xml::Serialization second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Xml::Serialization namespace in C++.' type: docs -weight: 8600 +weight: 8800 url: /cpp/system.xml.serialization/ --- diff --git a/english/cpp/system.xml.xpath/_index.md b/english/cpp/system.xml.xpath/_index.md index dd746eeea8..314c47e785 100644 --- a/english/cpp/system.xml.xpath/_index.md +++ b/english/cpp/system.xml.xpath/_index.md @@ -4,7 +4,7 @@ linktitle: System::Xml::XPath second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Xml::XPath namespace in C++.' type: docs -weight: 8700 +weight: 8900 url: /cpp/system.xml.xpath/ --- diff --git a/english/cpp/system.xml.xpath/xpathnavigator/_index.md b/english/cpp/system.xml.xpath/xpathnavigator/_index.md index a4ab96bd67..7b6e51212a 100644 --- a/english/cpp/system.xml.xpath/xpathnavigator/_index.md +++ b/english/cpp/system.xml.xpath/xpathnavigator/_index.md @@ -51,7 +51,7 @@ class XPathNavigator : public System::Xml::XPath::XPathItem, | virtual [get_Name](./get_name/)() | When overridden in a derived class, gets the qualified name of the current node. | | virtual [get_NamespaceURI](./get_namespaceuri/)() | When overridden in a derived class, gets the namespace URI of the current node. | | virtual [get_NameTable](./get_nametable/)() | When overridden in a derived class, gets the [XmlNameTable](../../system.xml/xmlnametable/) of the [XPathNavigator](./). | -| static [get_NavigatorComparer](./get_navigatorcomparer/)() | Returns an Collections::IEqualityComparer used for equality comparison of [XPathNavigator](./) objects. | +| static [get_NavigatorComparer](./get_navigatorcomparer/)() | Returns an [Collections::IEqualityComparer](../../system.collections/iequalitycomparer/) used for equality comparison of [XPathNavigator](./) objects. | | virtual [get_NodeType](./get_nodetype/)() | When overridden in a derived class, gets the XPathNodeType of the current node. | | virtual [get_OuterXml](./get_outerxml/)() | Returns the markup representing the opening and closing tags of the current node and its child nodes. | | virtual [get_Prefix](./get_prefix/)() | When overridden in a derived class, gets the namespace prefix associated with the current node. | diff --git a/english/cpp/system.xml.xpath/xpathnavigator/get_navigatorcomparer/_index.md b/english/cpp/system.xml.xpath/xpathnavigator/get_navigatorcomparer/_index.md index 5f011bdb15..a34238e689 100644 --- a/english/cpp/system.xml.xpath/xpathnavigator/get_navigatorcomparer/_index.md +++ b/english/cpp/system.xml.xpath/xpathnavigator/get_navigatorcomparer/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.xml.xpath/xpathnavigator/get_navigatorcomparer/ ## XPathNavigator::get_NavigatorComparer method -Returns an Collections::IEqualityComparer used for equality comparison of [XPathNavigator](../) objects. +Returns an [Collections::IEqualityComparer](../../../system.collections/iequalitycomparer/) used for equality comparison of [XPathNavigator](../) objects. ```cpp static SharedPtr>> System::Xml::XPath::XPathNavigator::get_NavigatorComparer() @@ -19,7 +19,7 @@ static SharedPtr , SharedPtr )> diff --git a/english/cpp/system.xml/_index.md b/english/cpp/system.xml/_index.md index 511aa302af..8b2af8875f 100644 --- a/english/cpp/system.xml/_index.md +++ b/english/cpp/system.xml/_index.md @@ -4,7 +4,7 @@ linktitle: System::Xml second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Xml namespace in C++.' type: docs -weight: 8300 +weight: 8500 url: /cpp/system.xml/ --- @@ -39,7 +39,7 @@ url: /cpp/system.xml/ | [XmlNamespaceManager](./xmlnamespacemanager/) | Resolves, adds, and removes namespaces to a collection and provides scope management for these namespaces. | | [XmlNameTable](./xmlnametable/) | Table of atomized string objects. | | [XmlNode](./xmlnode/) | Represents a single node in the XML document. | -| [XmlNodeChangedEventArgs](./xmlnodechangedeventargs/) | Provides data for the [XmlDocument::NodeChanged](./xmldocument/nodechanged/), [XmlDocument::NodeChanging](./xmldocument/nodechanging/), [XmlDocument::NodeInserted](./xmldocument/nodeinserted/), [XmlDocument::NodeInserting](./xmldocument/nodeinserting/), [XmlDocument::NodeRemoved](./xmldocument/noderemoved/) and [XmlDocument::NodeRemoving](./xmldocument/noderemoving/) events. | +| [XmlNodeChangedEventArgs](./xmlnodechangedeventargs/) | Provides data for the **XmlDocument::NodeChanged**, **XmlDocument::NodeChanging**, **XmlDocument::NodeInserted**, **XmlDocument::NodeInserting**, **XmlDocument::NodeRemoved** and **XmlDocument::NodeRemoving** events. | | [XmlNodeList](./xmlnodelist/) | Represents an ordered collection of nodes. | | [XmlNodeReader](./xmlnodereader/) | Represents a reader that provides fast, non-cached forward only access to XML data in an [XmlNode](./xmlnode/). | | [XmlNotation](./xmlnotation/) | Represents a notation declaration, such as ****. | @@ -89,7 +89,7 @@ url: /cpp/system.xml/ | Typedef | Description | | --- | --- | | [XmlException](./xmlexception/) | | -| [XmlNodeChangedEventHandler](./xmlnodechangedeventhandler/) | Represents the method that handles [XmlDocument::NodeChanged](./xmldocument/nodechanged/), [XmlDocument::NodeChanging](./xmldocument/nodechanging/), [XmlDocument::NodeInserted](./xmldocument/nodeinserted/), [XmlDocument::NodeInserting](./xmldocument/nodeinserting/), [XmlDocument::NodeRemoved](./xmldocument/noderemoved/) and [XmlDocument::NodeRemoving](./xmldocument/noderemoving/) events. | +| [XmlNodeChangedEventHandler](./xmlnodechangedeventhandler/) | Represents the method that handles **XmlDocument::NodeChanged**, **XmlDocument::NodeChanging**, **XmlDocument::NodeInserted**, **XmlDocument::NodeInserting**, **XmlDocument::NodeRemoved** and **XmlDocument::NodeRemoving** events. | ## Functions | Function | Description | diff --git a/english/cpp/system.xml/xmldocument/_index.md b/english/cpp/system.xml/xmldocument/_index.md index 72d016cc01..854faed786 100644 --- a/english/cpp/system.xml/xmldocument/_index.md +++ b/english/cpp/system.xml/xmldocument/_index.md @@ -80,16 +80,6 @@ class XmlDocument : public System::Xml::XmlNode | [WriteTo](./writeto/)(const SharedPtr\\&) override | Saves the [XmlDocument](./) node to the specified [XmlWriter](../xmlwriter/). | | [XmlDocument](./xmldocument/)() | Initializes a new instance of the [XmlDocument](./) class. | | [XmlDocument](./xmldocument/)(const SharedPtr\\&) | Initializes a new instance of the [XmlDocument](./) class with the specified [XmlNameTable](../xmlnametable/). | -## Fields - -| Field | Description | -| --- | --- | -| [NodeChanged](./nodechanged/) | Occurs when the [XmlNode::get_Value](../xmlnode/get_value/) of a node belonging to this document has been changed. | -| [NodeChanging](./nodechanging/) | Occurs when the [XmlNode::get_Value](../xmlnode/get_value/) of a node belonging to this document is about to be changed. | -| [NodeInserted](./nodeinserted/) | Occurs when a node belonging to this document has been inserted into another node. | -| [NodeInserting](./nodeinserting/) | Occurs when a node belonging to this document is about to be inserted into another node. | -| [NodeRemoved](./noderemoved/) | Occurs when a node belonging to this document has been removed from its parent. | -| [NodeRemoving](./noderemoving/) | Occurs when a node belonging to this document is about to be removed from the document. | ## Typedefs | Typedef | Description | diff --git a/english/cpp/system.xml/xmldocument/ptr/_index.md b/english/cpp/system.xml/xmldocument/ptr/_index.md index ef8dccd959..2f1813cc22 100644 --- a/english/cpp/system.xml/xmldocument/ptr/_index.md +++ b/english/cpp/system.xml/xmldocument/ptr/_index.md @@ -4,7 +4,7 @@ linktitle: Ptr second_title: Aspose.PDF for C++ API Reference description: 'System::Xml::XmlDocument::Ptr typedef. An alias for shared pointer to an instance of this class in C++.' type: docs -weight: 5200 +weight: 4600 url: /cpp/system.xml/xmldocument/ptr/ --- ## Ptr typedef diff --git a/english/cpp/system.xml/xmlnodechangedeventargs/_index.md b/english/cpp/system.xml/xmlnodechangedeventargs/_index.md index ad36c52d2e..2834ce535b 100644 --- a/english/cpp/system.xml/xmlnodechangedeventargs/_index.md +++ b/english/cpp/system.xml/xmlnodechangedeventargs/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.xml/xmlnodechangedeventargs/ ## XmlNodeChangedEventArgs class -Provides data for the [XmlDocument::NodeChanged](../xmldocument/nodechanged/), [XmlDocument::NodeChanging](../xmldocument/nodechanging/), [XmlDocument::NodeInserted](../xmldocument/nodeinserted/), [XmlDocument::NodeInserting](../xmldocument/nodeinserting/), [XmlDocument::NodeRemoved](../xmldocument/noderemoved/) and [XmlDocument::NodeRemoving](../xmldocument/noderemoving/) events. +Provides data for the **XmlDocument::NodeChanged**, **XmlDocument::NodeChanging**, **XmlDocument::NodeInserted**, **XmlDocument::NodeInserting**, **XmlDocument::NodeRemoved** and **XmlDocument::NodeRemoving** events. ```cpp class XmlNodeChangedEventArgs : public System::EventArgs diff --git a/english/cpp/system.xml/xmlnodechangedeventargs/get_newvalue/_index.md b/english/cpp/system.xml/xmlnodechangedeventargs/get_newvalue/_index.md index 2020588468..e80c21958c 100644 --- a/english/cpp/system.xml/xmlnodechangedeventargs/get_newvalue/_index.md +++ b/english/cpp/system.xml/xmlnodechangedeventargs/get_newvalue/_index.md @@ -19,7 +19,7 @@ String System::Xml::XmlNodeChangedEventArgs::get_NewValue() ### ReturnValue -The new value of the node. This method returns **nullptr** if the node is neither an attribute nor a text node, or if the node is being removed. If called in a [XmlDocument::NodeChanging](../../xmldocument/nodechanging/) event, **get_NewValue** returns the value of the node if the change is successful. If called in a [XmlDocument::NodeChanged](../../xmldocument/nodechanged/) event, **get_NewValue** returns the current value of the node. +The new value of the node. This method returns **nullptr** if the node is neither an attribute nor a text node, or if the node is being removed. If called in a **XmlDocument::NodeChanging** event, **get_NewValue** returns the value of the node if the change is successful. If called in a **XmlDocument::NodeChanged** event, **get_NewValue** returns the current value of the node. ## See Also diff --git a/english/cpp/system.xml/xmlnodechangedeventargs/get_oldvalue/_index.md b/english/cpp/system.xml/xmlnodechangedeventargs/get_oldvalue/_index.md index 27e12d5abd..bddaad5089 100644 --- a/english/cpp/system.xml/xmlnodechangedeventargs/get_oldvalue/_index.md +++ b/english/cpp/system.xml/xmlnodechangedeventargs/get_oldvalue/_index.md @@ -19,7 +19,7 @@ String System::Xml::XmlNodeChangedEventArgs::get_OldValue() ### ReturnValue -The original value of the node. This method returns **nullptr** if the node is neither an attribute nor a text node, or if the node is being inserted. If called in a [XmlDocument::NodeChanging](../../xmldocument/nodechanging/) event, **get_OldValue** returns the current value of the node that will be replaced if the change is successful. If called in a [XmlDocument::NodeChanged](../../xmldocument/nodechanged/) event, **get_OldValue** returns the value of node prior to the change. +The original value of the node. This method returns **nullptr** if the node is neither an attribute nor a text node, or if the node is being inserted. If called in a **XmlDocument::NodeChanging** event, **get_OldValue** returns the current value of the node that will be replaced if the change is successful. If called in a **XmlDocument::NodeChanged** event, **get_OldValue** returns the value of node prior to the change. ## See Also diff --git a/english/cpp/system.xml/xmlnodechangedeventhandler/_index.md b/english/cpp/system.xml/xmlnodechangedeventhandler/_index.md index 14f5a09b08..0fbe854ff0 100644 --- a/english/cpp/system.xml/xmlnodechangedeventhandler/_index.md +++ b/english/cpp/system.xml/xmlnodechangedeventhandler/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.xml/xmlnodechangedeventhandler/ ## XmlNodeChangedEventHandler typedef -Represents the method that handles [XmlDocument::NodeChanged](../xmldocument/nodechanged/), [XmlDocument::NodeChanging](../xmldocument/nodechanging/), [XmlDocument::NodeInserted](../xmldocument/nodeinserted/), [XmlDocument::NodeInserting](../xmldocument/nodeinserting/), [XmlDocument::NodeRemoved](../xmldocument/noderemoved/) and [XmlDocument::NodeRemoving](../xmldocument/noderemoving/) events. +Represents the method that handles **XmlDocument::NodeChanged**, **XmlDocument::NodeChanging**, **XmlDocument::NodeInserted**, **XmlDocument::NodeInserting**, **XmlDocument::NodeRemoved** and **XmlDocument::NodeRemoving** events. ```cpp using System::Xml::XmlNodeChangedEventHandler = System::MulticastDelegate , SharedPtr )> diff --git a/english/cpp/system/_index.md b/english/cpp/system/_index.md index 65e5d7683a..c9cc309deb 100644 --- a/english/cpp/system/_index.md +++ b/english/cpp/system/_index.md @@ -4,7 +4,7 @@ linktitle: System second_title: Aspose.PDF for C++ API Reference description: 'How to use System namespace in C++.' type: docs -weight: 3100 +weight: 3300 url: /cpp/system/ --- @@ -40,6 +40,7 @@ url: /cpp/system/ | [EnumValuesBase](./enumvaluesbase/) | A base class for a class that represents meta information of enumeration type. | | [EventArgs](./eventargs/) | The base class for classes that represent a context that is passed to the event subscribers when an event is triggered. Objects of this class should only be allocated using [System::MakeObject()](./makeobject/) function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into [System::SmartPtr](./smartptr/) pointer and use this pointer to pass it to functions as argument. | | [ExceptionWrapper](./exceptionwrapper/) | Template that represents wrapper of exceptions that are derived from Exception class. | +| [FlagsAttribute](./flagsattribute/) | Indicates that an enumeration can be treated as a bit field; that is, a set of. | | [Func](./func/) | Function delegate. This type should be allocated on stack and passed to functions by value or by reference. Never use [System::SmartPtr](./smartptr/) class to manage objects of this type. | | [GC](./gc/) | Represents an emulated Garbage Collection which acts more like a stub which effectively does nothing. This is a static type with no instance services. You should never create instances of it by any means. | | [Guid](./guid/) | Represents a Globally Unique IDentifier This type should be allocated on stack and passed to functions by value or by reference. Never use [System::SmartPtr](./smartptr/) class to manage objects of this type. | @@ -59,6 +60,7 @@ url: /cpp/system/ | [MarshalByRefObject](./marshalbyrefobject/) | Provides access to objects across application domain boundaries in remoting-enabled applications. Objects of this class should only be allocated using [System::MakeObject()](./makeobject/) function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into [System::SmartPtr](./smartptr/) pointer and use this pointer to pass it to functions as argument. | | [MulticastDelegate< ReturnType(ArgumentTypes...)>](./multicastdelegate_returntype(argumenttypes...)_/) | Represents a collection of delegates. This type should be allocated on stack and passed to functions by value or by reference. Never use [System::SmartPtr](./smartptr/) class to manage objects of this type. | | [Nullable](./nullable/) | Forward declaration. | +| [NullableUtils](./nullableutils/) | Represents C# [System.Nullable](./nullable/) (with no type arguments) static class. Unable to use original name due inability to overload class templates in C++. Supports a value type that can be assigned null. This class cannot be inherited. | | [Object](./object/) | Base class that enables using methods available for [System.Object](./object/) class in C#. All non-trivial classes used with translated environment should inherit it. | | [ObjectExt](./objectext/) | Provides static methods that emulate C# [Object](./object/) methods called for non-Object C++ types (strings, numbers, etc.). This is a static type with no instance services. You should never create instances of it by any means. | | [ObjectType](./objecttype/) | Provides static methods that implement object type getters. This is a static type with no instance services. You should never create instances of it by any means. | @@ -164,6 +166,7 @@ url: /cpp/system/ | AsCast | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | | AsCast | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | | AsCast | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | +| AsCast | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | | Cast | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | | Cast_noexcept | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | | CastEnumerableTo | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | @@ -175,6 +178,7 @@ url: /cpp/system/ | ConstCast | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | | Default | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | | Default | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | +| Discard | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | | DoTryFinally | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | | DoTryFinally | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | | DoTryFinally | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | @@ -225,6 +229,7 @@ url: /cpp/system/ | IsInfinity | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | | IsNaN | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | | IsNegativeInfinity | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | +| IsPattern | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | | IsPositiveInfinity | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | | IterateOver | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | | IterateOver | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | @@ -355,6 +360,7 @@ url: /cpp/system/ | Ref | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | | Ref | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | | Ref | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | +| SafeInvoke | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | | setter_add_wrap | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | | setter_add_wrap | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | | setter_add_wrap | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | diff --git a/english/cpp/system/action/_index.md b/english/cpp/system/action/_index.md index f43488d699..f651e7d295 100644 --- a/english/cpp/system/action/_index.md +++ b/english/cpp/system/action/_index.md @@ -4,7 +4,7 @@ linktitle: Action second_title: Aspose.PDF for C++ API Reference description: 'System::Action typedef. Delegate type that references methods that have no return value in C++.' type: docs -weight: 8900 +weight: 9100 url: /cpp/system/action/ --- ## Action typedef diff --git a/english/cpp/system/array/_index.md b/english/cpp/system/array/_index.md index 28ae4d6203..d5e092e082 100644 --- a/english/cpp/system/array/_index.md +++ b/english/cpp/system/array/_index.md @@ -49,6 +49,7 @@ templateclass Array : public virtual System::Object, | [Clear](./clear/)() override | Not supported because the array represented by the current object is read-only. | | static [Clear](./clear/)(const ArrayPtr\\&, int, int) | Replaces **count** values starting at the **startIndex** index in the specified array with default values. | | [Clone](./clone/)() | Clones the array. | +| static [ConstrainedCopy](./constrainedcopy/)(const ArrayPtr\\&, int64_t, const ArrayPtr\\&, int64_t, int64_t) | Copies a range of elements from an [System.Array](./) starting at the specified source. | | [Contains](./contains/)(const T\&) const override | Determines if the specified item is in the array. | | static [ConvertAll](./convertall/)(ArrayPtr\, Converter\) | Constructs a new [Array](./) object and fills it with elements of the specified array converted to **OutputType** type using the specified converter delegate. | | static [ConvertAll](./convertall/)(ArrayPtr\, std::function\) | Constructs a new [Array](./) object and fills it with elements of the specified array converted to **OutputType** type using the specified converter function object. | diff --git a/english/cpp/system/array/const_iterator/_index.md b/english/cpp/system/array/const_iterator/_index.md index 2cff2a2485..4ec5a95b86 100644 --- a/english/cpp/system/array/const_iterator/_index.md +++ b/english/cpp/system/array/const_iterator/_index.md @@ -4,7 +4,7 @@ linktitle: const_iterator second_title: Aspose.PDF for C++ API Reference description: 'System::Array::const_iterator typedef. Const iterator type in C++.' type: docs -weight: 5900 +weight: 6000 url: /cpp/system/array/const_iterator/ --- ## const_iterator typedef diff --git a/english/cpp/system/array/const_reverse_iterator/_index.md b/english/cpp/system/array/const_reverse_iterator/_index.md index d154d34bf5..85a27ce192 100644 --- a/english/cpp/system/array/const_reverse_iterator/_index.md +++ b/english/cpp/system/array/const_reverse_iterator/_index.md @@ -4,7 +4,7 @@ linktitle: const_reverse_iterator second_title: Aspose.PDF for C++ API Reference description: 'System::Array::const_reverse_iterator typedef. Const reverse iterator type in C++.' type: docs -weight: 6000 +weight: 6100 url: /cpp/system/array/const_reverse_iterator/ --- ## const_reverse_iterator typedef diff --git a/english/cpp/system/array/constrainedcopy/_index.md b/english/cpp/system/array/constrainedcopy/_index.md new file mode 100644 index 0000000000..4f42f1c264 --- /dev/null +++ b/english/cpp/system/array/constrainedcopy/_index.md @@ -0,0 +1,41 @@ +--- +title: System::Array::ConstrainedCopy method +linktitle: ConstrainedCopy +second_title: Aspose.PDF for C++ API Reference +description: 'System::Array::ConstrainedCopy method. Copies a range of elements from an System.Array starting at the specified source in C++.' +type: docs +weight: 4700 +url: /cpp/system/array/constrainedcopy/ +--- +## Array::ConstrainedCopy method + + +Copies a range of elements from an [System.Array](../) starting at the specified source. + +```cpp +template static void System::Array::ConstrainedCopy(const ArrayPtr &srcArray, int64_t srcIndex, const ArrayPtr &dstArray, int64_t dstIndex, int64_t count) +``` + + +| Parameter | Description | +| --- | --- | +| SrcType | Type of elements in source array | +| DstType | Type of elements in destination array | + +| Parameter | Type | Description | +| --- | --- | --- | +| srcArray | const ArrayPtr\\& | Source array | +| srcIndex | int64_t | Index in the source array designating the beginning of the range of items to copy | +| dstArray | const ArrayPtr\\& | Destination array | +| dstIndex | int64_t | Index in destination array to start inserting copied items at | +| count | int64_t | The number of elements to copy | +## Remarks + + +TEMPORARY RAW IMPLEMENTATION WITHOUT ANY UNDONES! +## See Also + +* Typedef [ArrayPtr](../../arrayptr/) +* Class [Array](../) +* Namespace [System](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system/array/convertall/_index.md b/english/cpp/system/array/convertall/_index.md index 8d3d8d22c5..373cfc3eda 100644 --- a/english/cpp/system/array/convertall/_index.md +++ b/english/cpp/system/array/convertall/_index.md @@ -4,7 +4,7 @@ linktitle: ConvertAll second_title: Aspose.PDF for C++ API Reference description: 'System::Array::ConvertAll method. Constructs a new Array object and fills it with elements of the specified array converted to OutputType type using the specified converter delegate in C++.' type: docs -weight: 4700 +weight: 4800 url: /cpp/system/array/convertall/ --- ## Array::ConvertAll(ArrayPtr\, Converter\) method diff --git a/english/cpp/system/array/copy/_index.md b/english/cpp/system/array/copy/_index.md index 1335b87070..5a56ab8ace 100644 --- a/english/cpp/system/array/copy/_index.md +++ b/english/cpp/system/array/copy/_index.md @@ -4,7 +4,7 @@ linktitle: Copy second_title: Aspose.PDF for C++ API Reference description: 'System::Array::Copy method. Copies the specified number of elements from the source array to the destination array in C++.' type: docs -weight: 4800 +weight: 4900 url: /cpp/system/array/copy/ --- ## Array::Copy(const ArrayPtr\\&, const ArrayPtr\\&, int64_t) method diff --git a/english/cpp/system/array/enumerableptr/_index.md b/english/cpp/system/array/enumerableptr/_index.md index e9e3195cdc..ac8120ee09 100644 --- a/english/cpp/system/array/enumerableptr/_index.md +++ b/english/cpp/system/array/enumerableptr/_index.md @@ -4,7 +4,7 @@ linktitle: EnumerablePtr second_title: Aspose.PDF for C++ API Reference description: 'System::Array::EnumerablePtr typedef. An alias for shared pointer type pointing to IEnumerable object containing elements of type T in C++.' type: docs -weight: 6100 +weight: 6200 url: /cpp/system/array/enumerableptr/ --- ## EnumerablePtr typedef diff --git a/english/cpp/system/array/enumerator/_index.md b/english/cpp/system/array/enumerator/_index.md index 1b29154430..c2193fa67f 100644 --- a/english/cpp/system/array/enumerator/_index.md +++ b/english/cpp/system/array/enumerator/_index.md @@ -4,7 +4,7 @@ linktitle: Enumerator second_title: Aspose.PDF for C++ API Reference description: 'System::Array::Enumerator class. Implements IEnumerator interface that enables enumeration of elements of an Array object. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument in C++.' type: docs -weight: 6700 +weight: 6800 url: /cpp/system/array/enumerator/ --- ## Enumerator class diff --git a/english/cpp/system/array/enumeratorptr/_index.md b/english/cpp/system/array/enumeratorptr/_index.md index 4d6ea8fd95..0ee9a37717 100644 --- a/english/cpp/system/array/enumeratorptr/_index.md +++ b/english/cpp/system/array/enumeratorptr/_index.md @@ -4,7 +4,7 @@ linktitle: EnumeratorPtr second_title: Aspose.PDF for C++ API Reference description: 'System::Array::EnumeratorPtr typedef. An alias for shared pointer type pointing to IEnumerator object containing elements of type T in C++.' type: docs -weight: 6200 +weight: 6300 url: /cpp/system/array/enumeratorptr/ --- ## EnumeratorPtr typedef diff --git a/english/cpp/system/array/exists/_index.md b/english/cpp/system/array/exists/_index.md index 68093abf57..ef2120c6d1 100644 --- a/english/cpp/system/array/exists/_index.md +++ b/english/cpp/system/array/exists/_index.md @@ -4,7 +4,7 @@ linktitle: Exists second_title: Aspose.PDF for C++ API Reference description: 'System::Array::Exists method. Determines if the specified Array object contains an element that satisfies requirements of the specified predicate in C++.' type: docs -weight: 4900 +weight: 5000 url: /cpp/system/array/exists/ --- ## Array::Exists method diff --git a/english/cpp/system/array/find/_index.md b/english/cpp/system/array/find/_index.md index c29f852553..80e0438847 100644 --- a/english/cpp/system/array/find/_index.md +++ b/english/cpp/system/array/find/_index.md @@ -4,7 +4,7 @@ linktitle: Find second_title: Aspose.PDF for C++ API Reference description: 'System::Array::Find method. Searches for the first element in the specified array that satisfies the conditions of the specified predicate in C++.' type: docs -weight: 5000 +weight: 5100 url: /cpp/system/array/find/ --- ## Array::Find method diff --git a/english/cpp/system/array/findall/_index.md b/english/cpp/system/array/findall/_index.md index 2eee86b424..fc9037a5de 100644 --- a/english/cpp/system/array/findall/_index.md +++ b/english/cpp/system/array/findall/_index.md @@ -4,7 +4,7 @@ linktitle: FindAll second_title: Aspose.PDF for C++ API Reference description: 'System::Array::FindAll method. Retrieves all the elements that match the conditions defined by the specified predicate in C++.' type: docs -weight: 5100 +weight: 5200 url: /cpp/system/array/findall/ --- ## Array::FindAll method diff --git a/english/cpp/system/array/findindex/_index.md b/english/cpp/system/array/findindex/_index.md index 6fae6c34b9..ba97688ce0 100644 --- a/english/cpp/system/array/findindex/_index.md +++ b/english/cpp/system/array/findindex/_index.md @@ -4,7 +4,7 @@ linktitle: FindIndex second_title: Aspose.PDF for C++ API Reference description: 'System::Array::FindIndex method. Searches for the first element in the specified array that satisfies the conditions of the specified predicate in C++.' type: docs -weight: 5200 +weight: 5300 url: /cpp/system/array/findindex/ --- ## Array::FindIndex method diff --git a/english/cpp/system/array/foreach/_index.md b/english/cpp/system/array/foreach/_index.md index 1cfd6dcb3a..bc0e0d23ee 100644 --- a/english/cpp/system/array/foreach/_index.md +++ b/english/cpp/system/array/foreach/_index.md @@ -4,7 +4,7 @@ linktitle: ForEach second_title: Aspose.PDF for C++ API Reference description: 'System::Array::ForEach method. Performs specified action on each element of the specified array in C++.' type: docs -weight: 5300 +weight: 5400 url: /cpp/system/array/foreach/ --- ## Array::ForEach method diff --git a/english/cpp/system/array/iterator/_index.md b/english/cpp/system/array/iterator/_index.md index eaabd79858..f187f5e8b3 100644 --- a/english/cpp/system/array/iterator/_index.md +++ b/english/cpp/system/array/iterator/_index.md @@ -4,7 +4,7 @@ linktitle: iterator second_title: Aspose.PDF for C++ API Reference description: 'System::Array::iterator typedef. Iterator type in C++.' type: docs -weight: 6300 +weight: 6400 url: /cpp/system/array/iterator/ --- ## iterator typedef diff --git a/english/cpp/system/array/lastindexof/_index.md b/english/cpp/system/array/lastindexof/_index.md index 7b51d875b1..fe7ff76b60 100644 --- a/english/cpp/system/array/lastindexof/_index.md +++ b/english/cpp/system/array/lastindexof/_index.md @@ -4,7 +4,7 @@ linktitle: LastIndexOf second_title: Aspose.PDF for C++ API Reference description: 'System::Array::LastIndexOf method. Determines the index of the last occurrence of the specified item in a range of items of the array specified by the start index and the number of elements in the range in C++.' type: docs -weight: 5400 +weight: 5500 url: /cpp/system/array/lastindexof/ --- ## Array::LastIndexOf(const ArrayPtr\\&, const ValueType\&, int, int) method diff --git a/english/cpp/system/array/resize/_index.md b/english/cpp/system/array/resize/_index.md index 9606babe87..c6652967e7 100644 --- a/english/cpp/system/array/resize/_index.md +++ b/english/cpp/system/array/resize/_index.md @@ -4,7 +4,7 @@ linktitle: Resize second_title: Aspose.PDF for C++ API Reference description: 'System::Array::Resize method. Changes the size of the specified array to the specified value or crates new array with specified size in C++.' type: docs -weight: 5500 +weight: 5600 url: /cpp/system/array/resize/ --- ## Array::Resize method diff --git a/english/cpp/system/array/reverse/_index.md b/english/cpp/system/array/reverse/_index.md index 08ffefb6b3..d762ea0a54 100644 --- a/english/cpp/system/array/reverse/_index.md +++ b/english/cpp/system/array/reverse/_index.md @@ -4,7 +4,7 @@ linktitle: Reverse second_title: Aspose.PDF for C++ API Reference description: 'System::Array::Reverse method. Reverses elements in the specified array in C++.' type: docs -weight: 5600 +weight: 5700 url: /cpp/system/array/reverse/ --- ## Array::Reverse(const ArrayPtr\\&) method diff --git a/english/cpp/system/array/reverse_iterator/_index.md b/english/cpp/system/array/reverse_iterator/_index.md index 63c842f49a..472453999e 100644 --- a/english/cpp/system/array/reverse_iterator/_index.md +++ b/english/cpp/system/array/reverse_iterator/_index.md @@ -4,7 +4,7 @@ linktitle: reverse_iterator second_title: Aspose.PDF for C++ API Reference description: 'System::Array::reverse_iterator typedef. Reverse iterator type in C++.' type: docs -weight: 6400 +weight: 6500 url: /cpp/system/array/reverse_iterator/ --- ## reverse_iterator typedef diff --git a/english/cpp/system/array/sort/_index.md b/english/cpp/system/array/sort/_index.md index aac8783a65..f57b67e351 100644 --- a/english/cpp/system/array/sort/_index.md +++ b/english/cpp/system/array/sort/_index.md @@ -4,7 +4,7 @@ linktitle: Sort second_title: Aspose.PDF for C++ API Reference description: 'System::Array::Sort method. Sorts two arrays one containing keys and the other - corresponding items, based on the values of array containing keys, elements of which are compared using operator< in C++.' type: docs -weight: 5700 +weight: 5800 url: /cpp/system/array/sort/ --- ## Array::Sort(const ArrayPtr\\&, const ArrayPtr\\&) method diff --git a/english/cpp/system/array/trueforall/_index.md b/english/cpp/system/array/trueforall/_index.md index 2b9e8427e6..a1e155664c 100644 --- a/english/cpp/system/array/trueforall/_index.md +++ b/english/cpp/system/array/trueforall/_index.md @@ -4,7 +4,7 @@ linktitle: TrueForAll second_title: Aspose.PDF for C++ API Reference description: 'System::Array::TrueForAll method. Determines whether all elements in the specified array satisfy the conditions defined by specified predicate in C++.' type: docs -weight: 5800 +weight: 5900 url: /cpp/system/array/trueforall/ --- ## Array::TrueForAll method diff --git a/english/cpp/system/array/underlyingtype/_index.md b/english/cpp/system/array/underlyingtype/_index.md index 162e161be2..bbfd9eb0c2 100644 --- a/english/cpp/system/array/underlyingtype/_index.md +++ b/english/cpp/system/array/underlyingtype/_index.md @@ -4,7 +4,7 @@ linktitle: UnderlyingType second_title: Aspose.PDF for C++ API Reference description: 'System::Array::UnderlyingType typedef. Alias for the type used to represent each element of the array in C++.' type: docs -weight: 6500 +weight: 6600 url: /cpp/system/array/underlyingtype/ --- ## UnderlyingType typedef diff --git a/english/cpp/system/array/valuetype/_index.md b/english/cpp/system/array/valuetype/_index.md index 22529e8700..84bb1e1509 100644 --- a/english/cpp/system/array/valuetype/_index.md +++ b/english/cpp/system/array/valuetype/_index.md @@ -4,7 +4,7 @@ linktitle: ValueType second_title: Aspose.PDF for C++ API Reference description: 'System::Array::ValueType typedef. Alias for the type of the elements of the array in C++.' type: docs -weight: 6600 +weight: 6700 url: /cpp/system/array/valuetype/ --- ## ValueType typedef diff --git a/english/cpp/system/arrayptr/_index.md b/english/cpp/system/arrayptr/_index.md index bffeb4038c..0b414a40c6 100644 --- a/english/cpp/system/arrayptr/_index.md +++ b/english/cpp/system/arrayptr/_index.md @@ -4,7 +4,7 @@ linktitle: ArrayPtr second_title: Aspose.PDF for C++ API Reference description: 'System::ArrayPtr typedef. Alias for ''pointer to array'' type in C++.' type: docs -weight: 9000 +weight: 9200 url: /cpp/system/arrayptr/ --- ## ArrayPtr typedef diff --git a/english/cpp/system/ascast/_index.md b/english/cpp/system/ascast/_index.md index 8438ee447b..2d49f81b03 100644 --- a/english/cpp/system/ascast/_index.md +++ b/english/cpp/system/ascast/_index.md @@ -4,7 +4,7 @@ linktitle: AsCast second_title: Aspose.PDF for C++ API Reference description: 'System::AsCast method. Casts the source type to the result type using ''as'' operator cast. Used when simple constructor-like cast is needed in C++.' type: docs -weight: 12700 +weight: 12900 url: /cpp/system/ascast/ --- ## System::AsCast(const Source\&) method @@ -201,6 +201,33 @@ The cast result. Returns empty nullable if no conversion available. ## System::AsCast(const Source\&) method +Invalid unboxing to non-object type. + +```cpp +template std::enable_if_t::InvalidUnboxing, Result> System::AsCast(const Source &value) +``` + + +| Parameter | Description | +| --- | --- | +| Source | The source type. | +| Result | The result type. | + +| Parameter | Type | Description | +| --- | --- | --- | +| value | const Source\& | [Object](../object/) to cast. | + +### ReturnValue + +Always returns null. + +## See Also + +* Namespace [System](../) +* Library [Aspose.PDF for C++](../../) +## System::AsCast(const Source\&) method + + Casts the source type to the result type using 'as' operator cast. Used for boxing nullable object. ```cpp diff --git a/english/cpp/system/asynccallback/_index.md b/english/cpp/system/asynccallback/_index.md index 51639130f6..949662bc3d 100644 --- a/english/cpp/system/asynccallback/_index.md +++ b/english/cpp/system/asynccallback/_index.md @@ -4,7 +4,7 @@ linktitle: AsyncCallback second_title: Aspose.PDF for C++ API Reference description: 'System::AsyncCallback typedef. A delegate type that represents a method to be called when asynchronous operation completes in C++.' type: docs -weight: 9100 +weight: 9300 url: /cpp/system/asynccallback/ --- ## AsyncCallback typedef diff --git a/english/cpp/system/badimageformatexception/_index.md b/english/cpp/system/badimageformatexception/_index.md index cdcaf05a92..bd0f92c6f1 100644 --- a/english/cpp/system/badimageformatexception/_index.md +++ b/english/cpp/system/badimageformatexception/_index.md @@ -4,7 +4,7 @@ linktitle: BadImageFormatException second_title: Aspose.PDF for C++ API Reference description: 'System::BadImageFormatException typedef. The exception that is thrown when the file image of a dynamic link library (DLL) or an executable program is invalid. Never wrap the BadImageFormatException class instances into System::SmartPtr in C++.' type: docs -weight: 9200 +weight: 9400 url: /cpp/system/badimageformatexception/ --- ## BadImageFormatException typedef diff --git a/english/cpp/system/base64formattingoptions/_index.md b/english/cpp/system/base64formattingoptions/_index.md index 29fbfe27b6..8730fa1176 100644 --- a/english/cpp/system/base64formattingoptions/_index.md +++ b/english/cpp/system/base64formattingoptions/_index.md @@ -4,7 +4,7 @@ linktitle: Base64FormattingOptions second_title: Aspose.PDF for C++ API Reference description: 'System::Base64FormattingOptions enum. Enumeration containing values that represent different formats of base-64 encoded data in C++.' type: docs -weight: 7400 +weight: 7600 url: /cpp/system/base64formattingoptions/ --- ## Base64FormattingOptions enum diff --git a/english/cpp/system/boxedenum/_index.md b/english/cpp/system/boxedenum/_index.md index b27bfecd85..273372e330 100644 --- a/english/cpp/system/boxedenum/_index.md +++ b/english/cpp/system/boxedenum/_index.md @@ -26,7 +26,7 @@ templateclass BoxedEnum : public System::BoxedValue::GetUnsignedLongLongValue() override +uint64_t System::BoxedEnum::GetUnsignedLongLongValue() const override ``` diff --git a/english/cpp/system/boxedvalue/_index.md b/english/cpp/system/boxedvalue/_index.md index 93b2fac349..c704e0f479 100644 --- a/english/cpp/system/boxedvalue/_index.md +++ b/english/cpp/system/boxedvalue/_index.md @@ -29,12 +29,13 @@ templateclass BoxedValue : public System::BoxedValueBase | [GetHashCode](./gethashcode/)() const override | Returns a hash code for the current object. | | [GetType](./gettype/)() const override | Gets actual type of object. | | [GetTypeCode](./gettypecode/)() const override | Returns the value representing the type of the boxed value represented by the current object. | -| [GetUnsignedLongLongValue](./getunsignedlonglongvalue/)() override | Always returns 0. | +| [GetUnsignedLongLongValue](./getunsignedlonglongvalue/)() const override | Returns numeric value of boxed object if it can be cast too, zero otherwise. | | [is](./is/)() const | Determines if the type of the boxed value represented by the current object is **V**. | | [IsBoxedEnum](./isboxedenum/)() override | Determines if current object represents a boxed value of enum type. | | static [Parse](../boxedvaluebase/parse/)(const TypeInfo\&, const String\&, bool) | Boxes the value of enumeration constant of the specified enumeration with the specified name. A parameter specifies if the case should be ignored when interpreting the string specifying the name of the enumeration constant. | | static [Parse](../boxedvaluebase/parse/)(const TypeInfo\&, const String\&) | Boxes the value of enumeration constant of the specified enumeration with the specified name. | | [ToString](./tostring/)() const override | Converts boxed value represented by current object to string. | +| [ToString](../boxedvaluebase/tostring/)(const System::String\&) const | Converts boxed object to string using specified format string. | | [unbox](./unbox/)() const | Unboxes the value represented by the current object. | ## See Also diff --git a/english/cpp/system/boxedvalue/getunsignedlonglongvalue/_index.md b/english/cpp/system/boxedvalue/getunsignedlonglongvalue/_index.md index f517598306..8cb2e84198 100644 --- a/english/cpp/system/boxedvalue/getunsignedlonglongvalue/_index.md +++ b/english/cpp/system/boxedvalue/getunsignedlonglongvalue/_index.md @@ -2,7 +2,7 @@ title: System::BoxedValue::GetUnsignedLongLongValue method linktitle: GetUnsignedLongLongValue second_title: Aspose.PDF for C++ API Reference -description: 'System::BoxedValue::GetUnsignedLongLongValue method. Always returns 0 in C++.' +description: 'System::BoxedValue::GetUnsignedLongLongValue method. Returns numeric value of boxed object if it can be cast too, zero otherwise in C++.' type: docs weight: 600 url: /cpp/system/boxedvalue/getunsignedlonglongvalue/ @@ -10,10 +10,10 @@ url: /cpp/system/boxedvalue/getunsignedlonglongvalue/ ## BoxedValue::GetUnsignedLongLongValue method -Always returns 0. +Returns numeric value of boxed object if it can be cast too, zero otherwise. ```cpp -uint64_t System::BoxedValue::GetUnsignedLongLongValue() override +uint64_t System::BoxedValue::GetUnsignedLongLongValue() const override ``` ## See Also diff --git a/english/cpp/system/boxedvaluebase/_index.md b/english/cpp/system/boxedvaluebase/_index.md index b9d6fd5da4..87346edf23 100644 --- a/english/cpp/system/boxedvaluebase/_index.md +++ b/english/cpp/system/boxedvaluebase/_index.md @@ -21,10 +21,12 @@ class BoxedValueBase : public System::Object | Method | Description | | --- | --- | | virtual [GetTypeCode](./gettypecode/)() const | Returns the value representing the type of the boxed value represented by the current object. | -| virtual [GetUnsignedLongLongValue](./getunsignedlonglongvalue/)() | Converts the boxed represented by the current object to 64-bit integer value. | +| virtual [GetUnsignedLongLongValue](./getunsignedlonglongvalue/)() const | Converts the boxed represented by the current object to 64-bit integer value. | | virtual [IsBoxedEnum](./isboxedenum/)() | Determines if current object represents a boxed value of enum type. | | static [Parse](./parse/)(const TypeInfo\&, const String\&, bool) | Boxes the value of enumeration constant of the specified enumeration with the specified name. A parameter specifies if the case should be ignored when interpreting the string specifying the name of the enumeration constant. | | static [Parse](./parse/)(const TypeInfo\&, const String\&) | Boxes the value of enumeration constant of the specified enumeration with the specified name. | +| [ToString](./tostring/)(const System::String\&) const | Converts boxed object to string using specified format string. | +| virtual [ToString](./tostring/)() const | Analog of C# [Object.ToString()](../object/tostring/) method. Enables converting custom objects to string. | ## See Also * Class [Object](../object/) diff --git a/english/cpp/system/boxedvaluebase/getunsignedlonglongvalue/_index.md b/english/cpp/system/boxedvaluebase/getunsignedlonglongvalue/_index.md index 951f145a83..9ff7c76a75 100644 --- a/english/cpp/system/boxedvaluebase/getunsignedlonglongvalue/_index.md +++ b/english/cpp/system/boxedvaluebase/getunsignedlonglongvalue/_index.md @@ -13,7 +13,7 @@ url: /cpp/system/boxedvaluebase/getunsignedlonglongvalue/ Converts the boxed represented by the current object to 64-bit integer value. ```cpp -virtual uint64_t System::BoxedValueBase::GetUnsignedLongLongValue()=0 +virtual uint64_t System::BoxedValueBase::GetUnsignedLongLongValue() const =0 ``` diff --git a/english/cpp/system/boxedvaluebase/parse/_index.md b/english/cpp/system/boxedvaluebase/parse/_index.md index ed37776a98..c327cf9c4d 100644 --- a/english/cpp/system/boxedvaluebase/parse/_index.md +++ b/english/cpp/system/boxedvaluebase/parse/_index.md @@ -4,7 +4,7 @@ linktitle: Parse second_title: Aspose.PDF for C++ API Reference description: 'System::BoxedValueBase::Parse method. Boxes the value of enumeration constant of the specified enumeration with the specified name in C++.' type: docs -weight: 400 +weight: 500 url: /cpp/system/boxedvaluebase/parse/ --- ## BoxedValueBase::Parse(const TypeInfo\&, const String\&) method diff --git a/english/cpp/system/boxedvaluebase/tostring/_index.md b/english/cpp/system/boxedvaluebase/tostring/_index.md new file mode 100644 index 0000000000..07c580c902 --- /dev/null +++ b/english/cpp/system/boxedvaluebase/tostring/_index.md @@ -0,0 +1,44 @@ +--- +title: System::BoxedValueBase::ToString method +linktitle: ToString +second_title: Aspose.PDF for C++ API Reference +description: 'System::BoxedValueBase::ToString method. Analog of C# Object.ToString() method. Enables converting custom objects to string in C++.' +type: docs +weight: 400 +url: /cpp/system/boxedvaluebase/tostring/ +--- +## BoxedValueBase::ToString() const method + + +Analog of C# [Object.ToString()](../../object/tostring/) method. Enables converting custom objects to string. + +```cpp +virtual String System::Object::ToString() const +``` + + +### ReturnValue + +[String](../../string/) representation as provided by final class. + +## See Also + +* Class [String](../../string/) +* Class [BoxedValueBase](../) +* Namespace [System](../../) +* Library [Aspose.PDF for C++](../../../) +## BoxedValueBase::ToString(const System::String\&) const method + + +Converts boxed object to string using specified format string. + +```cpp +System::String System::BoxedValueBase::ToString(const System::String &format) const +``` + +## See Also + +* Class [String](../../string/) +* Class [BoxedValueBase](../) +* Namespace [System](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system/bytearrayptr/_index.md b/english/cpp/system/bytearrayptr/_index.md index d3d133459e..5b2b210180 100644 --- a/english/cpp/system/bytearrayptr/_index.md +++ b/english/cpp/system/bytearrayptr/_index.md @@ -4,7 +4,7 @@ linktitle: ByteArrayPtr second_title: Aspose.PDF for C++ API Reference description: 'System::ByteArrayPtr typedef. An alias for a smart pointer object that points to an array of unsigned 8-bit integers in C++.' type: docs -weight: 9300 +weight: 9500 url: /cpp/system/bytearrayptr/ --- ## ByteArrayPtr typedef diff --git a/english/cpp/system/cast/_index.md b/english/cpp/system/cast/_index.md index 190b70cb29..c17d3d9482 100644 --- a/english/cpp/system/cast/_index.md +++ b/english/cpp/system/cast/_index.md @@ -4,7 +4,7 @@ linktitle: Cast second_title: Aspose.PDF for C++ API Reference description: 'System::Cast method. Performs cast on SmartPtr objects in C++.' type: docs -weight: 13900 +weight: 14200 url: /cpp/system/cast/ --- ## System::Cast method diff --git a/english/cpp/system/cast_noexcept/_index.md b/english/cpp/system/cast_noexcept/_index.md index 347b0e7754..c22f9034fa 100644 --- a/english/cpp/system/cast_noexcept/_index.md +++ b/english/cpp/system/cast_noexcept/_index.md @@ -4,7 +4,7 @@ linktitle: Cast_noexcept second_title: Aspose.PDF for C++ API Reference description: 'System::Cast_noexcept method. Performs cast on SmartPtr objects in C++.' type: docs -weight: 14000 +weight: 14300 url: /cpp/system/cast_noexcept/ --- ## System::Cast_noexcept method diff --git a/english/cpp/system/castenumerableto/_index.md b/english/cpp/system/castenumerableto/_index.md index 534b1ff89a..ba3407a314 100644 --- a/english/cpp/system/castenumerableto/_index.md +++ b/english/cpp/system/castenumerableto/_index.md @@ -4,7 +4,7 @@ linktitle: CastEnumerableTo second_title: Aspose.PDF for C++ API Reference description: 'System::CastEnumerableTo method. Performs the explicit casting of elements of the specified enumerable object to different type in C++.' type: docs -weight: 14100 +weight: 14400 url: /cpp/system/castenumerableto/ --- ## System::CastEnumerableTo(const From\&) method diff --git a/english/cpp/system/checkedcast/_index.md b/english/cpp/system/checkedcast/_index.md index 21594757d9..bd2429a7cb 100644 --- a/english/cpp/system/checkedcast/_index.md +++ b/english/cpp/system/checkedcast/_index.md @@ -4,7 +4,7 @@ linktitle: CheckedCast second_title: Aspose.PDF for C++ API Reference description: 'System::CheckedCast method. Determines if the specified value falls into the range of values of type TTo and if it does casts it to the type TTo in C++.' type: docs -weight: 14300 +weight: 14600 url: /cpp/system/checkedcast/ --- ## System::CheckedCast method diff --git a/english/cpp/system/compare/_index.md b/english/cpp/system/compare/_index.md index 08e02eb045..64c27c017a 100644 --- a/english/cpp/system/compare/_index.md +++ b/english/cpp/system/compare/_index.md @@ -4,7 +4,7 @@ linktitle: Compare second_title: Aspose.PDF for C++ API Reference description: 'System::Compare method. Compares two values in C++.' type: docs -weight: 14400 +weight: 14700 url: /cpp/system/compare/ --- ## System::Compare(const TA\&, const TB\&) method diff --git a/english/cpp/system/const_pointer_cast/_index.md b/english/cpp/system/const_pointer_cast/_index.md index a44dffc3b3..fc9a4914c5 100644 --- a/english/cpp/system/const_pointer_cast/_index.md +++ b/english/cpp/system/const_pointer_cast/_index.md @@ -4,7 +4,7 @@ linktitle: const_pointer_cast second_title: Aspose.PDF for C++ API Reference description: 'System::const_pointer_cast method. Casts smart pointers using const_cast in C++.' type: docs -weight: 14600 +weight: 14900 url: /cpp/system/const_pointer_cast/ --- ## System::const_pointer_cast method diff --git a/english/cpp/system/constcast/_index.md b/english/cpp/system/constcast/_index.md index 1932a416dc..f21e9aa0bf 100644 --- a/english/cpp/system/constcast/_index.md +++ b/english/cpp/system/constcast/_index.md @@ -4,7 +4,7 @@ linktitle: ConstCast second_title: Aspose.PDF for C++ API Reference description: 'System::ConstCast method. End of deprecated casts in C++.' type: docs -weight: 14700 +weight: 15000 url: /cpp/system/constcast/ --- ## System::ConstCast method diff --git a/english/cpp/system/converter/_index.md b/english/cpp/system/converter/_index.md index c13bead21a..2aec8711c8 100644 --- a/english/cpp/system/converter/_index.md +++ b/english/cpp/system/converter/_index.md @@ -4,7 +4,7 @@ linktitle: Converter second_title: Aspose.PDF for C++ API Reference description: 'System::Converter typedef. Represents a pointer to the invokable entity that accepts a single argument of the TInput type and returns a value of the TOutput type in C++.' type: docs -weight: 9400 +weight: 9600 url: /cpp/system/converter/ --- ## Converter typedef diff --git a/english/cpp/system/datetimekind/_index.md b/english/cpp/system/datetimekind/_index.md index 1c2481323b..56be7f4903 100644 --- a/english/cpp/system/datetimekind/_index.md +++ b/english/cpp/system/datetimekind/_index.md @@ -4,7 +4,7 @@ linktitle: DateTimeKind second_title: Aspose.PDF for C++ API Reference description: 'System::DateTimeKind enum. Enumeration values of which represent the kinds of date and time in C++.' type: docs -weight: 7500 +weight: 7700 url: /cpp/system/datetimekind/ --- ## DateTimeKind enum diff --git a/english/cpp/system/dayofweek/_index.md b/english/cpp/system/dayofweek/_index.md index d679223dc9..7a934abcc0 100644 --- a/english/cpp/system/dayofweek/_index.md +++ b/english/cpp/system/dayofweek/_index.md @@ -4,7 +4,7 @@ linktitle: DayOfWeek second_title: Aspose.PDF for C++ API Reference description: 'System::DayOfWeek enum. Enumeration that represents a day of week in C++.' type: docs -weight: 7600 +weight: 7800 url: /cpp/system/dayofweek/ --- ## DayOfWeek enum diff --git a/english/cpp/system/decoderfallbackbufferptr/_index.md b/english/cpp/system/decoderfallbackbufferptr/_index.md index 856c8a5306..d53b33368d 100644 --- a/english/cpp/system/decoderfallbackbufferptr/_index.md +++ b/english/cpp/system/decoderfallbackbufferptr/_index.md @@ -4,7 +4,7 @@ linktitle: DecoderFallbackBufferPtr second_title: Aspose.PDF for C++ API Reference description: 'System::DecoderFallbackBufferPtr typedef. An alias for a smart pointer that points to an instance of System::Text::DecoderFallbackBuffer class in C++.' type: docs -weight: 9500 +weight: 9700 url: /cpp/system/decoderfallbackbufferptr/ --- ## DecoderFallbackBufferPtr typedef diff --git a/english/cpp/system/decoderfallbackptr/_index.md b/english/cpp/system/decoderfallbackptr/_index.md index 15d7bef0d0..df27fc821d 100644 --- a/english/cpp/system/decoderfallbackptr/_index.md +++ b/english/cpp/system/decoderfallbackptr/_index.md @@ -4,7 +4,7 @@ linktitle: DecoderFallbackPtr second_title: Aspose.PDF for C++ API Reference description: 'System::DecoderFallbackPtr typedef. An alias for a smart pointer that points to an instance of System::Text::DecoderFallback class in C++.' type: docs -weight: 9600 +weight: 9800 url: /cpp/system/decoderfallbackptr/ --- ## DecoderFallbackPtr typedef diff --git a/english/cpp/system/decoderptr/_index.md b/english/cpp/system/decoderptr/_index.md index 8cd5463e9b..74b2b655be 100644 --- a/english/cpp/system/decoderptr/_index.md +++ b/english/cpp/system/decoderptr/_index.md @@ -4,7 +4,7 @@ linktitle: DecoderPtr second_title: Aspose.PDF for C++ API Reference description: 'System::DecoderPtr typedef. An alias for a smart pointer that points to an instance of System::Text::Decoder class in C++.' type: docs -weight: 9700 +weight: 9900 url: /cpp/system/decoderptr/ --- ## DecoderPtr typedef diff --git a/english/cpp/system/decoderreplacementfallbackptr/_index.md b/english/cpp/system/decoderreplacementfallbackptr/_index.md index b952a2f38a..8e089ecb06 100644 --- a/english/cpp/system/decoderreplacementfallbackptr/_index.md +++ b/english/cpp/system/decoderreplacementfallbackptr/_index.md @@ -4,7 +4,7 @@ linktitle: DecoderReplacementFallbackPtr second_title: Aspose.PDF for C++ API Reference description: 'System::DecoderReplacementFallbackPtr typedef. An alias for a smart pointer that points to an instance of System::Text::DecoderReplacementFallback class in C++.' type: docs -weight: 9800 +weight: 10000 url: /cpp/system/decoderreplacementfallbackptr/ --- ## DecoderReplacementFallbackPtr typedef diff --git a/english/cpp/system/default/_index.md b/english/cpp/system/default/_index.md index cdc879e256..1b762dd6e0 100644 --- a/english/cpp/system/default/_index.md +++ b/english/cpp/system/default/_index.md @@ -4,7 +4,7 @@ linktitle: Default second_title: Aspose.PDF for C++ API Reference description: 'System::Default method. Returns the default-constructed instance of the specified type in C++.' type: docs -weight: 14800 +weight: 15100 url: /cpp/system/default/ --- ## System::Default() method diff --git a/english/cpp/system/directoryinfoptr/_index.md b/english/cpp/system/directoryinfoptr/_index.md index 699c1d8c43..8c1dd6d28b 100644 --- a/english/cpp/system/directoryinfoptr/_index.md +++ b/english/cpp/system/directoryinfoptr/_index.md @@ -4,7 +4,7 @@ linktitle: DirectoryInfoPtr second_title: Aspose.PDF for C++ API Reference description: 'System::DirectoryInfoPtr typedef. An alias for a smart pointer that points to an instance of System::IO::DirectoryInfo class in C++.' type: docs -weight: 9900 +weight: 10100 url: /cpp/system/directoryinfoptr/ --- ## DirectoryInfoPtr typedef diff --git a/english/cpp/system/discard/_index.md b/english/cpp/system/discard/_index.md new file mode 100644 index 0000000000..bbd3cd4990 --- /dev/null +++ b/english/cpp/system/discard/_index.md @@ -0,0 +1,27 @@ +--- +title: System::Discard method +linktitle: Discard +second_title: Aspose.PDF for C++ API Reference +description: 'System::Discard method. Returns the default-constructed temporary instance of the specified type, which can be placed instead of discarding ''_'' argument in C++.' +type: docs +weight: 15300 +url: /cpp/system/discard/ +--- +## System::Discard method + + +Returns the default-constructed temporary instance of the specified type, which can be placed instead of discarding '_' argument. + +```cpp +template auto System::Discard() +``` + + +| Parameter | Description | +| --- | --- | +| T | The type whose instance is returned. | + +## See Also + +* Namespace [System](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system/dotryfinally/_index.md b/english/cpp/system/dotryfinally/_index.md index 175dc7ba7b..f934e8e273 100644 --- a/english/cpp/system/dotryfinally/_index.md +++ b/english/cpp/system/dotryfinally/_index.md @@ -4,7 +4,7 @@ linktitle: DoTryFinally second_title: Aspose.PDF for C++ API Reference description: 'System::DoTryFinally method. The sigle function that emulates behavior of C#''s try[-catch]-finally statement. During translation of C#''s try[-catch]-finally statement with translator''s option finally_statement_as_lambda set to true, the statement is translated into the invocation of this method in C++.' type: docs -weight: 15000 +weight: 15400 url: /cpp/system/dotryfinally/ --- ## System::DoTryFinally(T\&&, F\&&) method diff --git a/english/cpp/system/dynamic_pointer_cast/_index.md b/english/cpp/system/dynamic_pointer_cast/_index.md index 87c2956748..a1c5798f0f 100644 --- a/english/cpp/system/dynamic_pointer_cast/_index.md +++ b/english/cpp/system/dynamic_pointer_cast/_index.md @@ -4,7 +4,7 @@ linktitle: dynamic_pointer_cast second_title: Aspose.PDF for C++ API Reference description: 'System::dynamic_pointer_cast method. Casts smart pointers using dynamic_cast in C++.' type: docs -weight: 15300 +weight: 15700 url: /cpp/system/dynamic_pointer_cast/ --- ## System::dynamic_pointer_cast method diff --git a/english/cpp/system/dynamiccast/_index.md b/english/cpp/system/dynamiccast/_index.md index 9bcdaaede1..1b630870b7 100644 --- a/english/cpp/system/dynamiccast/_index.md +++ b/english/cpp/system/dynamiccast/_index.md @@ -4,7 +4,7 @@ linktitle: DynamicCast second_title: Aspose.PDF for C++ API Reference description: 'System::DynamicCast method. Performs dynamic cast on Exception objects in C++.' type: docs -weight: 15400 +weight: 15800 url: /cpp/system/dynamiccast/ --- ## System::DynamicCast(const TFrom\&) method diff --git a/english/cpp/system/dynamiccast_noexcept/_index.md b/english/cpp/system/dynamiccast_noexcept/_index.md index 15e94b4991..12df0ec82c 100644 --- a/english/cpp/system/dynamiccast_noexcept/_index.md +++ b/english/cpp/system/dynamiccast_noexcept/_index.md @@ -4,7 +4,7 @@ linktitle: DynamicCast_noexcept second_title: Aspose.PDF for C++ API Reference description: 'System::DynamicCast_noexcept method. Old obsolete casts. Will be removed in future versions in C++.' type: docs -weight: 16100 +weight: 16500 url: /cpp/system/dynamiccast_noexcept/ --- ## System::DynamicCast_noexcept(const TFrom\&) method diff --git a/english/cpp/system/dynamiccastarray/_index.md b/english/cpp/system/dynamiccastarray/_index.md index e82200092f..b55277ea5c 100644 --- a/english/cpp/system/dynamiccastarray/_index.md +++ b/english/cpp/system/dynamiccastarray/_index.md @@ -4,7 +4,7 @@ linktitle: DynamicCastArray second_title: Aspose.PDF for C++ API Reference description: 'System::DynamicCastArray method. Performs casting of elements of the specified array to different type in C++.' type: docs -weight: 16400 +weight: 16800 url: /cpp/system/dynamiccastarray/ --- ## System::DynamicCastArray method diff --git a/english/cpp/system/encoderfallbackbufferptr/_index.md b/english/cpp/system/encoderfallbackbufferptr/_index.md index f213bde0d8..eb2e17cf19 100644 --- a/english/cpp/system/encoderfallbackbufferptr/_index.md +++ b/english/cpp/system/encoderfallbackbufferptr/_index.md @@ -4,7 +4,7 @@ linktitle: EncoderFallbackBufferPtr second_title: Aspose.PDF for C++ API Reference description: 'System::EncoderFallbackBufferPtr typedef. An alias for a smart pointer that points to an instance of System::Text::EncoderFallbackBuffer class in C++.' type: docs -weight: 10000 +weight: 10200 url: /cpp/system/encoderfallbackbufferptr/ --- ## EncoderFallbackBufferPtr typedef diff --git a/english/cpp/system/encoderfallbackptr/_index.md b/english/cpp/system/encoderfallbackptr/_index.md index 4c2f9087de..909f1babb2 100644 --- a/english/cpp/system/encoderfallbackptr/_index.md +++ b/english/cpp/system/encoderfallbackptr/_index.md @@ -4,7 +4,7 @@ linktitle: EncoderFallbackPtr second_title: Aspose.PDF for C++ API Reference description: 'System::EncoderFallbackPtr typedef. An alias for a smart pointer that points to an instance of System::Text::EncoderFallback class in C++.' type: docs -weight: 10100 +weight: 10300 url: /cpp/system/encoderfallbackptr/ --- ## EncoderFallbackPtr typedef diff --git a/english/cpp/system/encoderptr/_index.md b/english/cpp/system/encoderptr/_index.md index 973de2ec21..c2036ac8a8 100644 --- a/english/cpp/system/encoderptr/_index.md +++ b/english/cpp/system/encoderptr/_index.md @@ -4,7 +4,7 @@ linktitle: EncoderPtr second_title: Aspose.PDF for C++ API Reference description: 'System::EncoderPtr typedef. An alias for a smart pointer that points to an instance of System::Text::Encoder class in C++.' type: docs -weight: 10200 +weight: 10400 url: /cpp/system/encoderptr/ --- ## EncoderPtr typedef diff --git a/english/cpp/system/encoderreplacementfallbackbufferptr/_index.md b/english/cpp/system/encoderreplacementfallbackbufferptr/_index.md index f557f09d75..53adf690c6 100644 --- a/english/cpp/system/encoderreplacementfallbackbufferptr/_index.md +++ b/english/cpp/system/encoderreplacementfallbackbufferptr/_index.md @@ -4,7 +4,7 @@ linktitle: EncoderReplacementFallbackBufferPtr second_title: Aspose.PDF for C++ API Reference description: 'System::EncoderReplacementFallbackBufferPtr typedef. An alias for a smart pointer that points to an instance of System::Text::EncoderReplacementFallbackBuffer class in C++.' type: docs -weight: 10300 +weight: 10500 url: /cpp/system/encoderreplacementfallbackbufferptr/ --- ## EncoderReplacementFallbackBufferPtr typedef diff --git a/english/cpp/system/encoderreplacementfallbackptr/_index.md b/english/cpp/system/encoderreplacementfallbackptr/_index.md index a860942fa0..aaff72e8a8 100644 --- a/english/cpp/system/encoderreplacementfallbackptr/_index.md +++ b/english/cpp/system/encoderreplacementfallbackptr/_index.md @@ -4,7 +4,7 @@ linktitle: EncoderReplacementFallbackPtr second_title: Aspose.PDF for C++ API Reference description: 'System::EncoderReplacementFallbackPtr typedef. An alias for a smart pointer that points to an instance of System::Text::EncoderReplacementFallback class in C++.' type: docs -weight: 10400 +weight: 10600 url: /cpp/system/encoderreplacementfallbackptr/ --- ## EncoderReplacementFallbackPtr typedef diff --git a/english/cpp/system/encodinginfoptr/_index.md b/english/cpp/system/encodinginfoptr/_index.md index 58e61130c7..ae92eef618 100644 --- a/english/cpp/system/encodinginfoptr/_index.md +++ b/english/cpp/system/encodinginfoptr/_index.md @@ -4,7 +4,7 @@ linktitle: EncodingInfoPtr second_title: Aspose.PDF for C++ API Reference description: 'System::EncodingInfoPtr typedef. An alias for a smart pointer that points to an instance of System::Text::EncodingInfo class in C++.' type: docs -weight: 10500 +weight: 10700 url: /cpp/system/encodinginfoptr/ --- ## EncodingInfoPtr typedef diff --git a/english/cpp/system/encodingptr/_index.md b/english/cpp/system/encodingptr/_index.md index 39a2aab64d..8fd037c95f 100644 --- a/english/cpp/system/encodingptr/_index.md +++ b/english/cpp/system/encodingptr/_index.md @@ -4,7 +4,7 @@ linktitle: EncodingPtr second_title: Aspose.PDF for C++ API Reference description: 'System::EncodingPtr typedef. An alias for a smart pointer that points to an instance of System::Text::Encoding class in C++.' type: docs -weight: 10600 +weight: 10800 url: /cpp/system/encodingptr/ --- ## EncodingPtr typedef diff --git a/english/cpp/system/enumgetname/_index.md b/english/cpp/system/enumgetname/_index.md index b7e3543104..9094632d03 100644 --- a/english/cpp/system/enumgetname/_index.md +++ b/english/cpp/system/enumgetname/_index.md @@ -4,7 +4,7 @@ linktitle: EnumGetName second_title: Aspose.PDF for C++ API Reference description: 'How to use EnumGetName method of class in C++.' type: docs -weight: 16500 +weight: 16900 url: /cpp/system/enumgetname/ --- ## System::EnumGetName(T) method diff --git a/english/cpp/system/enumvalues/_index.md b/english/cpp/system/enumvalues/_index.md index 95dd9af9f4..c6d2cbafa0 100644 --- a/english/cpp/system/enumvalues/_index.md +++ b/english/cpp/system/enumvalues/_index.md @@ -25,10 +25,17 @@ templateclass EnumValues : public System::EnumValuesBase | Method | Description | | --- | --- | | [EnumValues](./enumvalues/)() | Constructs an instance. | +| [GetNames](./getnames/)() const override | Returns an array containing all names of enumeration **E**. | +| static [GetNames](../enumvaluesbase/getnames/)(const TypeInfo\&) | Retrieves an array of the names of the constants in a specified enumeration. | +| [GetUnderlyingType](./getunderlyingtype/)() const override | Returns the underlying type of the specified enumeration. | +| static [GetUnderlyingType](../enumvaluesbase/getunderlyingtype/)(const TypeInfo\&) | Returns the underlying type of the specified enumeration. | | [GetValueOf](./getvalueof/)(const String\&, bool) const override | Returns boxed value of the enum constant with the specified name. | +| [GetValueOf](./getvalueof/)(long) const override | Returns boxed value of the enum constant with the specified value. | | [GetValues](./getvalues/)() const override | Returns an array containing all values of enumeration **E**. | | static [GetValues](../enumvaluesbase/getvalues/)(const TypeInfo\&) | Returns an array containing all values of the specified enumeration type. | | static [Parse](../enumvaluesbase/parse/)(const TypeInfo\&, const String\&, bool) | Returns an object that represents a value of enumeration constant of the specified enumeration type with the specified name. | +| static [ToObject](../enumvaluesbase/toobject/)(const TypeInfo\&, uint64_t) | Converts the specified 64-bit unsigned integer value to an enumeration member. | +| static [ToObject](../enumvaluesbase/toobject/)(const TypeInfo\&, const SharedPtr\\&) | Converts the specified object with an integer value to an enumeration member. | | virtual [~EnumValues](./~enumvalues/)() | Destructor. | ## See Also diff --git a/english/cpp/system/enumvalues/getnames/_index.md b/english/cpp/system/enumvalues/getnames/_index.md new file mode 100644 index 0000000000..108779b15e --- /dev/null +++ b/english/cpp/system/enumvalues/getnames/_index.md @@ -0,0 +1,25 @@ +--- +title: System::EnumValues::GetNames method +linktitle: GetNames +second_title: Aspose.PDF for C++ API Reference +description: 'System::EnumValues::GetNames method. Returns an array containing all names of enumeration E in C++.' +type: docs +weight: 300 +url: /cpp/system/enumvalues/getnames/ +--- +## EnumValues::GetNames method + + +Returns an array containing all names of enumeration **E**. + +```cpp +virtual ArrayPtr System::EnumValues::GetNames() const override +``` + +## See Also + +* Typedef [ArrayPtr](../../arrayptr/) +* Class [String](../../string/) +* Class [EnumValues](../) +* Namespace [System](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system/enumvalues/getunderlyingtype/_index.md b/english/cpp/system/enumvalues/getunderlyingtype/_index.md new file mode 100644 index 0000000000..7dfa7aafd5 --- /dev/null +++ b/english/cpp/system/enumvalues/getunderlyingtype/_index.md @@ -0,0 +1,24 @@ +--- +title: System::EnumValues::GetUnderlyingType method +linktitle: GetUnderlyingType +second_title: Aspose.PDF for C++ API Reference +description: 'System::EnumValues::GetUnderlyingType method. Returns the underlying type of the specified enumeration in C++.' +type: docs +weight: 400 +url: /cpp/system/enumvalues/getunderlyingtype/ +--- +## EnumValues::GetUnderlyingType method + + +Returns the underlying type of the specified enumeration. + +```cpp +virtual const System::TypeInfo & System::EnumValues::GetUnderlyingType() const override +``` + +## See Also + +* Class [TypeInfo](../../typeinfo/) +* Class [EnumValues](../) +* Namespace [System](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system/enumvalues/getvalueof/_index.md b/english/cpp/system/enumvalues/getvalueof/_index.md index 91eefbe168..3e85a51930 100644 --- a/english/cpp/system/enumvalues/getvalueof/_index.md +++ b/english/cpp/system/enumvalues/getvalueof/_index.md @@ -4,10 +4,10 @@ linktitle: GetValueOf second_title: Aspose.PDF for C++ API Reference description: 'System::EnumValues::GetValueOf method. Returns boxed value of the enum constant with the specified name in C++.' type: docs -weight: 300 +weight: 500 url: /cpp/system/enumvalues/getvalueof/ --- -## EnumValues::GetValueOf method +## EnumValues::GetValueOf(const String\&, bool) const method Returns boxed value of the enum constant with the specified name. @@ -34,3 +34,28 @@ A boxed value of the enum constant whose name is specified in **str**. * Class [EnumValues](../) * Namespace [System](../../) * Library [Aspose.PDF for C++](../../../) +## EnumValues::GetValueOf(long) const method + + +Returns boxed value of the enum constant with the specified value. + +```cpp +virtual SharedPtr System::EnumValues::GetValueOf(long val) const override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| val | long | The value of the enum constant | + +### ReturnValue + +A boxed value of the enum constant whose vakye is specified in **str**. + +## See Also + +* Typedef [SharedPtr](../../sharedptr/) +* Class [Object](../../object/) +* Class [EnumValues](../) +* Namespace [System](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system/enumvalues/getvalues/_index.md b/english/cpp/system/enumvalues/getvalues/_index.md index a8dc5ec096..8a7355269f 100644 --- a/english/cpp/system/enumvalues/getvalues/_index.md +++ b/english/cpp/system/enumvalues/getvalues/_index.md @@ -4,7 +4,7 @@ linktitle: GetValues second_title: Aspose.PDF for C++ API Reference description: 'System::EnumValues::GetValues method. Returns an array containing all values of enumeration E in C++.' type: docs -weight: 400 +weight: 600 url: /cpp/system/enumvalues/getvalues/ --- ## EnumValues::GetValues method diff --git a/english/cpp/system/enumvaluesbase/_index.md b/english/cpp/system/enumvaluesbase/_index.md index 1e03083f65..c3f8864f98 100644 --- a/english/cpp/system/enumvaluesbase/_index.md +++ b/english/cpp/system/enumvaluesbase/_index.md @@ -20,8 +20,12 @@ class EnumValuesBase | Method | Description | | --- | --- | +| static [GetNames](./getnames/)(const TypeInfo\&) | Retrieves an array of the names of the constants in a specified enumeration. | +| static [GetUnderlyingType](./getunderlyingtype/)(const TypeInfo\&) | Returns the underlying type of the specified enumeration. | | static [GetValues](./getvalues/)(const TypeInfo\&) | Returns an array containing all values of the specified enumeration type. | | static [Parse](./parse/)(const TypeInfo\&, const String\&, bool) | Returns an object that represents a value of enumeration constant of the specified enumeration type with the specified name. | +| static [ToObject](./toobject/)(const TypeInfo\&, uint64_t) | Converts the specified 64-bit unsigned integer value to an enumeration member. | +| static [ToObject](./toobject/)(const TypeInfo\&, const SharedPtr\\&) | Converts the specified object with an integer value to an enumeration member. | ## See Also * Namespace [System](../) diff --git a/english/cpp/system/enumvaluesbase/getnames/_index.md b/english/cpp/system/enumvaluesbase/getnames/_index.md new file mode 100644 index 0000000000..35913f2692 --- /dev/null +++ b/english/cpp/system/enumvaluesbase/getnames/_index.md @@ -0,0 +1,35 @@ +--- +title: System::EnumValuesBase::GetNames method +linktitle: GetNames +second_title: Aspose.PDF for C++ API Reference +description: 'System::EnumValuesBase::GetNames method. Retrieves an array of the names of the constants in a specified enumeration in C++.' +type: docs +weight: 100 +url: /cpp/system/enumvaluesbase/getnames/ +--- +## EnumValuesBase::GetNames method + + +Retrieves an array of the names of the constants in a specified enumeration. + +```cpp +static ArrayPtr System::EnumValuesBase::GetNames(const TypeInfo &type) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| type | const TypeInfo\& | An enumeration type. | + +### ReturnValue + +A string array of the names of the constants in enumType. + +## See Also + +* Typedef [ArrayPtr](../../arrayptr/) +* Class [String](../../string/) +* Class [TypeInfo](../../typeinfo/) +* Class [EnumValuesBase](../) +* Namespace [System](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system/enumvaluesbase/getunderlyingtype/_index.md b/english/cpp/system/enumvaluesbase/getunderlyingtype/_index.md new file mode 100644 index 0000000000..5b73d60aa0 --- /dev/null +++ b/english/cpp/system/enumvaluesbase/getunderlyingtype/_index.md @@ -0,0 +1,33 @@ +--- +title: System::EnumValuesBase::GetUnderlyingType method +linktitle: GetUnderlyingType +second_title: Aspose.PDF for C++ API Reference +description: 'System::EnumValuesBase::GetUnderlyingType method. Returns the underlying type of the specified enumeration in C++.' +type: docs +weight: 200 +url: /cpp/system/enumvaluesbase/getunderlyingtype/ +--- +## EnumValuesBase::GetUnderlyingType method + + +Returns the underlying type of the specified enumeration. + +```cpp +static const System::TypeInfo & System::EnumValuesBase::GetUnderlyingType(const TypeInfo &type) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| type | const TypeInfo\& | The enumeration whose underlying type will be retrieved. | + +### ReturnValue + +The underlying type of enumType. + +## See Also + +* Class [TypeInfo](../../typeinfo/) +* Class [EnumValuesBase](../) +* Namespace [System](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system/enumvaluesbase/getvalues/_index.md b/english/cpp/system/enumvaluesbase/getvalues/_index.md index 3ee551af48..33767853e8 100644 --- a/english/cpp/system/enumvaluesbase/getvalues/_index.md +++ b/english/cpp/system/enumvaluesbase/getvalues/_index.md @@ -4,7 +4,7 @@ linktitle: GetValues second_title: Aspose.PDF for C++ API Reference description: 'System::EnumValuesBase::GetValues method. Returns an array containing all values of the specified enumeration type in C++.' type: docs -weight: 100 +weight: 300 url: /cpp/system/enumvaluesbase/getvalues/ --- ## EnumValuesBase::GetValues method diff --git a/english/cpp/system/enumvaluesbase/parse/_index.md b/english/cpp/system/enumvaluesbase/parse/_index.md index c8a4a00044..43a2ecceee 100644 --- a/english/cpp/system/enumvaluesbase/parse/_index.md +++ b/english/cpp/system/enumvaluesbase/parse/_index.md @@ -4,7 +4,7 @@ linktitle: Parse second_title: Aspose.PDF for C++ API Reference description: 'System::EnumValuesBase::Parse method. Returns an object that represents a value of enumeration constant of the specified enumeration type with the specified name in C++.' type: docs -weight: 200 +weight: 400 url: /cpp/system/enumvaluesbase/parse/ --- ## EnumValuesBase::Parse method diff --git a/english/cpp/system/enumvaluesbase/toobject/_index.md b/english/cpp/system/enumvaluesbase/toobject/_index.md new file mode 100644 index 0000000000..e76305dafc --- /dev/null +++ b/english/cpp/system/enumvaluesbase/toobject/_index.md @@ -0,0 +1,63 @@ +--- +title: System::EnumValuesBase::ToObject method +linktitle: ToObject +second_title: Aspose.PDF for C++ API Reference +description: 'System::EnumValuesBase::ToObject method. Converts the specified object with an integer value to an enumeration member in C++.' +type: docs +weight: 500 +url: /cpp/system/enumvaluesbase/toobject/ +--- +## EnumValuesBase::ToObject(const TypeInfo\&, const SharedPtr\\&) method + + +Converts the specified object with an integer value to an enumeration member. + +```cpp +static SharedPtr System::EnumValuesBase::ToObject(const TypeInfo &type, const SharedPtr &value) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| type | const TypeInfo\& | The enumeration type to return. | +| value | const SharedPtr\\& | The value convert to an enumeration member. | + +### ReturnValue + +An enumeration object whose value is value. + +## See Also + +* Typedef [SharedPtr](../../sharedptr/) +* Class [Object](../../object/) +* Class [TypeInfo](../../typeinfo/) +* Class [EnumValuesBase](../) +* Namespace [System](../../) +* Library [Aspose.PDF for C++](../../../) +## EnumValuesBase::ToObject(const TypeInfo\&, uint64_t) method + + +Converts the specified 64-bit unsigned integer value to an enumeration member. + +```cpp +static SharedPtr System::EnumValuesBase::ToObject(const TypeInfo &type, uint64_t value) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| type | const TypeInfo\& | The enumeration type to return. | +| value | uint64_t | The value to convert to an enumeration member. | + +### ReturnValue + +An instance of the enumeration set to value. + +## See Also + +* Typedef [SharedPtr](../../sharedptr/) +* Class [Object](../../object/) +* Class [TypeInfo](../../typeinfo/) +* Class [EnumValuesBase](../) +* Namespace [System](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system/environmentvariabletarget/_index.md b/english/cpp/system/environmentvariabletarget/_index.md index 7e2d7fefbe..4ad94e6551 100644 --- a/english/cpp/system/environmentvariabletarget/_index.md +++ b/english/cpp/system/environmentvariabletarget/_index.md @@ -4,7 +4,7 @@ linktitle: EnvironmentVariableTarget second_title: Aspose.PDF for C++ API Reference description: 'System::EnvironmentVariableTarget enum. Specifies the environment variable location in C++.' type: docs -weight: 7700 +weight: 7900 url: /cpp/system/environmentvariabletarget/ --- ## EnvironmentVariableTarget enum diff --git a/english/cpp/system/equals/_index.md b/english/cpp/system/equals/_index.md index 6a01a372b9..7ce809c1ab 100644 --- a/english/cpp/system/equals/_index.md +++ b/english/cpp/system/equals/_index.md @@ -4,7 +4,7 @@ linktitle: Equals second_title: Aspose.PDF for C++ API Reference description: 'System::Equals method. Determines the equality of two values applying operator==() to them in C++.' type: docs -weight: 16700 +weight: 17100 url: /cpp/system/equals/ --- ## System::Equals method diff --git a/english/cpp/system/equals_double,double_/_index.md b/english/cpp/system/equals_double,double_/_index.md index bdd5e3c136..0d9110febe 100644 --- a/english/cpp/system/equals_double,double_/_index.md +++ b/english/cpp/system/equals_double,double_/_index.md @@ -4,7 +4,7 @@ linktitle: Equals< double, double > second_title: Aspose.PDF for C++ API Reference description: 'System::Equals< double, double > method. Specialization for double-precision floating point values in C++.' type: docs -weight: 16800 +weight: 17200 url: /cpp/system/equals_double,double_/ --- ## System::Equals< double, double > method diff --git a/english/cpp/system/equals_float,float_/_index.md b/english/cpp/system/equals_float,float_/_index.md index 872ffbc5fc..ef115e161e 100644 --- a/english/cpp/system/equals_float,float_/_index.md +++ b/english/cpp/system/equals_float,float_/_index.md @@ -4,7 +4,7 @@ linktitle: Equals< float, float > second_title: Aspose.PDF for C++ API Reference description: 'System::Equals< float, float > method. Specialization for single-precision floating point values. Although two floating point NaNs are defined by IEC 60559:1989 to always compare as unequal, the contract for System.Object.Equals, requires that overrides must satisfy the requirements for an equivalence operator. Therefore, System.Double.Equals and System.Single.Equals return True when comparing two NaNs, while the equality operator returns False in that case, as required by the standard in C++.' type: docs -weight: 16900 +weight: 17300 url: /cpp/system/equals_float,float_/ --- ## System::Equals< float, float > method diff --git a/english/cpp/system/event/_index.md b/english/cpp/system/event/_index.md index ee2e9ff831..b31c7b02b4 100644 --- a/english/cpp/system/event/_index.md +++ b/english/cpp/system/event/_index.md @@ -4,7 +4,7 @@ linktitle: Event second_title: Aspose.PDF for C++ API Reference description: 'System::Event typedef. Represents an event - a mechanism through which subscribers are notified about an occurence of interest by means of a delegate invocation in C++.' type: docs -weight: 10700 +weight: 10900 url: /cpp/system/event/ --- ## Event typedef diff --git a/english/cpp/system/eventargsptr/_index.md b/english/cpp/system/eventargsptr/_index.md index 4c314a0ffb..1de0659633 100644 --- a/english/cpp/system/eventargsptr/_index.md +++ b/english/cpp/system/eventargsptr/_index.md @@ -4,7 +4,7 @@ linktitle: EventArgsPtr second_title: Aspose.PDF for C++ API Reference description: 'System::EventArgsPtr typedef. Shared pointer to an instance of EventArgs class in C++.' type: docs -weight: 10800 +weight: 11000 url: /cpp/system/eventargsptr/ --- ## EventArgsPtr typedef diff --git a/english/cpp/system/eventhandler/_index.md b/english/cpp/system/eventhandler/_index.md index bb5b8bf2ab..883d11bf74 100644 --- a/english/cpp/system/eventhandler/_index.md +++ b/english/cpp/system/eventhandler/_index.md @@ -4,7 +4,7 @@ linktitle: EventHandler second_title: Aspose.PDF for C++ API Reference description: 'System::EventHandler typedef. Represents a method that reacts to and processes an event. This type should be allocated on stack and passed to functions by value or by reference. Never use System::SmartPtr class to manage objects of this type in C++.' type: docs -weight: 10900 +weight: 11100 url: /cpp/system/eventhandler/ --- ## EventHandler typedef diff --git a/english/cpp/system/exception/_index.md b/english/cpp/system/exception/_index.md index 484cecb673..c3456af13d 100644 --- a/english/cpp/system/exception/_index.md +++ b/english/cpp/system/exception/_index.md @@ -4,7 +4,7 @@ linktitle: Exception second_title: Aspose.PDF for C++ API Reference description: 'System::Exception typedef. Alias to be used instead of Details::Exception in C++.' type: docs -weight: 11000 +weight: 11200 url: /cpp/system/exception/ --- ## Exception typedef diff --git a/english/cpp/system/exceptionptr/_index.md b/english/cpp/system/exceptionptr/_index.md index 057f92fe83..6497de9292 100644 --- a/english/cpp/system/exceptionptr/_index.md +++ b/english/cpp/system/exceptionptr/_index.md @@ -4,7 +4,7 @@ linktitle: ExceptionPtr second_title: Aspose.PDF for C++ API Reference description: 'System::ExceptionPtr typedef. Type alias used by exception wrappers in C++.' type: docs -weight: 11100 +weight: 11300 url: /cpp/system/exceptionptr/ --- ## ExceptionPtr typedef diff --git a/english/cpp/system/explicitcast/_index.md b/english/cpp/system/explicitcast/_index.md index 2ae1b69e40..47336b2db5 100644 --- a/english/cpp/system/explicitcast/_index.md +++ b/english/cpp/system/explicitcast/_index.md @@ -4,7 +4,7 @@ linktitle: ExplicitCast second_title: Aspose.PDF for C++ API Reference description: 'System::ExplicitCast method. Casts the source type to the result type using explicit cast. Used when the source and the result types are the same in C++.' type: docs -weight: 17000 +weight: 17400 url: /cpp/system/explicitcast/ --- ## System::ExplicitCast(const Source\&) method diff --git a/english/cpp/system/fileinfoptr/_index.md b/english/cpp/system/fileinfoptr/_index.md index 013c3b5a43..b4abe5c1b7 100644 --- a/english/cpp/system/fileinfoptr/_index.md +++ b/english/cpp/system/fileinfoptr/_index.md @@ -4,7 +4,7 @@ linktitle: FileInfoPtr second_title: Aspose.PDF for C++ API Reference description: 'System::FileInfoPtr typedef. An alias for a smart pointer that points to an instance of System::IO::FileInfo class in C++.' type: docs -weight: 11200 +weight: 11400 url: /cpp/system/fileinfoptr/ --- ## FileInfoPtr typedef diff --git a/english/cpp/system/filestreamptr/_index.md b/english/cpp/system/filestreamptr/_index.md index 966dbb0278..081c112ede 100644 --- a/english/cpp/system/filestreamptr/_index.md +++ b/english/cpp/system/filestreamptr/_index.md @@ -4,7 +4,7 @@ linktitle: FileStreamPtr second_title: Aspose.PDF for C++ API Reference description: 'System::FileStreamPtr typedef. An alias for a smart pointer that points to an instance of System::IO::FileStream class in C++.' type: docs -weight: 11300 +weight: 11500 url: /cpp/system/filestreamptr/ --- ## FileStreamPtr typedef diff --git a/english/cpp/system/filesysteminfoptr/_index.md b/english/cpp/system/filesysteminfoptr/_index.md index 66faff2362..79829d2199 100644 --- a/english/cpp/system/filesysteminfoptr/_index.md +++ b/english/cpp/system/filesysteminfoptr/_index.md @@ -4,7 +4,7 @@ linktitle: FileSystemInfoPtr second_title: Aspose.PDF for C++ API Reference description: 'System::FileSystemInfoPtr typedef. An alias for a smart pointer that points to an instance of System::IO::FileSystemInfo class in C++.' type: docs -weight: 11400 +weight: 11600 url: /cpp/system/filesysteminfoptr/ --- ## FileSystemInfoPtr typedef diff --git a/english/cpp/system/flagsattribute/_index.md b/english/cpp/system/flagsattribute/_index.md new file mode 100644 index 0000000000..5cd6403e03 --- /dev/null +++ b/english/cpp/system/flagsattribute/_index.md @@ -0,0 +1,23 @@ +--- +title: System::FlagsAttribute class +linktitle: FlagsAttribute +second_title: Aspose.PDF for C++ API Reference +description: 'System::FlagsAttribute class. Indicates that an enumeration can be treated as a bit field; that is, a set of in C++.' +type: docs +weight: 2700 +url: /cpp/system/flagsattribute/ +--- +## FlagsAttribute class + + +Indicates that an enumeration can be treated as a bit field; that is, a set of. + +```cpp +class FlagsAttribute : public System::Attribute +``` + +## See Also + +* Class [Attribute](../attribute/) +* Namespace [System](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system/forcestaticcast/_index.md b/english/cpp/system/forcestaticcast/_index.md index 5d5f99e0ef..992ae7bc88 100644 --- a/english/cpp/system/forcestaticcast/_index.md +++ b/english/cpp/system/forcestaticcast/_index.md @@ -4,7 +4,7 @@ linktitle: ForceStaticCast second_title: Aspose.PDF for C++ API Reference description: 'System::ForceStaticCast method. Performs real static cast on SmartPtr objects in C++.' type: docs -weight: 18600 +weight: 19000 url: /cpp/system/forcestaticcast/ --- ## System::ForceStaticCast method diff --git a/english/cpp/system/foreachmembergvname/_index.md b/english/cpp/system/foreachmembergvname/_index.md index 394e104007..22680c0939 100644 --- a/english/cpp/system/foreachmembergvname/_index.md +++ b/english/cpp/system/foreachmembergvname/_index.md @@ -4,7 +4,7 @@ linktitle: ForEachMemberGVName second_title: Aspose.PDF for C++ API Reference description: 'How to use ForEachMemberGVName method of class in C++.' type: docs -weight: 18700 +weight: 19100 url: /cpp/system/foreachmembergvname/ --- ## System::ForEachMemberGVName method diff --git a/english/cpp/system/func/_index.md b/english/cpp/system/func/_index.md index 491300e71f..7f5368dcf8 100644 --- a/english/cpp/system/func/_index.md +++ b/english/cpp/system/func/_index.md @@ -4,7 +4,7 @@ linktitle: Func second_title: Aspose.PDF for C++ API Reference description: 'System::Func class. Function delegate. This type should be allocated on stack and passed to functions by value or by reference. Never use System::SmartPtr class to manage objects of this type in C++.' type: docs -weight: 2700 +weight: 2800 url: /cpp/system/func/ --- ## Func class diff --git a/english/cpp/system/gc/_index.md b/english/cpp/system/gc/_index.md index 868f32d358..dfe01675c3 100644 --- a/english/cpp/system/gc/_index.md +++ b/english/cpp/system/gc/_index.md @@ -4,7 +4,7 @@ linktitle: GC second_title: Aspose.PDF for C++ API Reference description: 'System::GC class. Represents an emulated Garbage Collection which acts more like a stub which effectively does nothing. This is a static type with no instance services. You should never create instances of it by any means in C++.' type: docs -weight: 2800 +weight: 2900 url: /cpp/system/gc/ --- ## GC class diff --git a/english/cpp/system/get_pointer/_index.md b/english/cpp/system/get_pointer/_index.md index bf19229b67..05b4360905 100644 --- a/english/cpp/system/get_pointer/_index.md +++ b/english/cpp/system/get_pointer/_index.md @@ -4,7 +4,7 @@ linktitle: get_pointer second_title: Aspose.PDF for C++ API Reference description: 'System::get_pointer method. Gets referenced object of smart pointer in C++.' type: docs -weight: 18800 +weight: 19200 url: /cpp/system/get_pointer/ --- ## System::get_pointer method diff --git a/english/cpp/system/gethashcode/_index.md b/english/cpp/system/gethashcode/_index.md index 15ab4de84d..a14784de48 100644 --- a/english/cpp/system/gethashcode/_index.md +++ b/english/cpp/system/gethashcode/_index.md @@ -4,7 +4,7 @@ linktitle: GetHashCode second_title: Aspose.PDF for C++ API Reference description: 'System::GetHashCode method. Specialization for std::thread::id; Returns the hash code for the specified thread object in C++.' type: docs -weight: 18900 +weight: 19300 url: /cpp/system/gethashcode/ --- ## System::GetHashCode(const std::thread::id\&) method diff --git a/english/cpp/system/guid/_index.md b/english/cpp/system/guid/_index.md index bd213e6f38..6d4b170a87 100644 --- a/english/cpp/system/guid/_index.md +++ b/english/cpp/system/guid/_index.md @@ -4,7 +4,7 @@ linktitle: Guid second_title: Aspose.PDF for C++ API Reference description: 'System::Guid class. Represents a Globally Unique IDentifier This type should be allocated on stack and passed to functions by value or by reference. Never use System::SmartPtr class to manage objects of this type in C++.' type: docs -weight: 2900 +weight: 3000 url: /cpp/system/guid/ --- ## Guid class diff --git a/english/cpp/system/iasyncresult/_index.md b/english/cpp/system/iasyncresult/_index.md index 65e980f21f..e9b4fdaeac 100644 --- a/english/cpp/system/iasyncresult/_index.md +++ b/english/cpp/system/iasyncresult/_index.md @@ -4,7 +4,7 @@ linktitle: IAsyncResult second_title: Aspose.PDF for C++ API Reference description: 'System::IAsyncResult class. Represents the status of asynchronous operation. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument in C++.' type: docs -weight: 3000 +weight: 3100 url: /cpp/system/iasyncresult/ --- ## IAsyncResult class diff --git a/english/cpp/system/iasyncresultptr/_index.md b/english/cpp/system/iasyncresultptr/_index.md index d08d322752..6ff3bb3657 100644 --- a/english/cpp/system/iasyncresultptr/_index.md +++ b/english/cpp/system/iasyncresultptr/_index.md @@ -4,7 +4,7 @@ linktitle: IAsyncResultPtr second_title: Aspose.PDF for C++ API Reference description: 'System::IAsyncResultPtr typedef. Shared pointer to IAsyncResult in C++.' type: docs -weight: 11500 +weight: 11700 url: /cpp/system/iasyncresultptr/ --- ## IAsyncResultPtr typedef diff --git a/english/cpp/system/icloneable/_index.md b/english/cpp/system/icloneable/_index.md index d08b500516..c99d789637 100644 --- a/english/cpp/system/icloneable/_index.md +++ b/english/cpp/system/icloneable/_index.md @@ -4,7 +4,7 @@ linktitle: ICloneable second_title: Aspose.PDF for C++ API Reference description: 'System::ICloneable class. Defies a method that enables object cloning - creating a copy of an object. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument in C++.' type: docs -weight: 3100 +weight: 3200 url: /cpp/system/icloneable/ --- ## ICloneable class diff --git a/english/cpp/system/icomparable/_index.md b/english/cpp/system/icomparable/_index.md index e8affd7fe2..d47acbe020 100644 --- a/english/cpp/system/icomparable/_index.md +++ b/english/cpp/system/icomparable/_index.md @@ -4,7 +4,7 @@ linktitle: IComparable second_title: Aspose.PDF for C++ API Reference description: 'System::IComparable class. Defines a method that compares two objects. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument in C++.' type: docs -weight: 3200 +weight: 3300 url: /cpp/system/icomparable/ --- ## IComparable class diff --git a/english/cpp/system/iconvertible/_index.md b/english/cpp/system/iconvertible/_index.md index be7cc111dd..54a5fb9f3a 100644 --- a/english/cpp/system/iconvertible/_index.md +++ b/english/cpp/system/iconvertible/_index.md @@ -4,7 +4,7 @@ linktitle: IConvertible second_title: Aspose.PDF for C++ API Reference description: 'System::IConvertible class. Defines methods that convert the value of the implementing reference or value type to a common language runtime type that has an equivalent value. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument in C++.' type: docs -weight: 3300 +weight: 3400 url: /cpp/system/iconvertible/ --- ## IConvertible class diff --git a/english/cpp/system/icustomformatter/_index.md b/english/cpp/system/icustomformatter/_index.md index c5c7f379d9..8cfb039860 100644 --- a/english/cpp/system/icustomformatter/_index.md +++ b/english/cpp/system/icustomformatter/_index.md @@ -4,7 +4,7 @@ linktitle: ICustomFormatter second_title: Aspose.PDF for C++ API Reference description: 'System::ICustomFormatter class. Defines a method that performs custom formatting of a string representation of a value represented by the specified object. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument in C++.' type: docs -weight: 3400 +weight: 3500 url: /cpp/system/icustomformatter/ --- ## ICustomFormatter class diff --git a/english/cpp/system/idisposable/_index.md b/english/cpp/system/idisposable/_index.md index f18b6231ae..7b2d34878a 100644 --- a/english/cpp/system/idisposable/_index.md +++ b/english/cpp/system/idisposable/_index.md @@ -4,7 +4,7 @@ linktitle: IDisposable second_title: Aspose.PDF for C++ API Reference description: 'System::IDisposable class. Defines method that releases resources owned by the current object. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument in C++.' type: docs -weight: 3500 +weight: 3600 url: /cpp/system/idisposable/ --- ## IDisposable class diff --git a/english/cpp/system/iequatable/_index.md b/english/cpp/system/iequatable/_index.md index 73ad55822b..d8a1774414 100644 --- a/english/cpp/system/iequatable/_index.md +++ b/english/cpp/system/iequatable/_index.md @@ -4,7 +4,7 @@ linktitle: IEquatable second_title: Aspose.PDF for C++ API Reference description: 'System::IEquatable class. Defines a method that determines the equality of two objects. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument in C++.' type: docs -weight: 3600 +weight: 3700 url: /cpp/system/iequatable/ --- ## IEquatable class diff --git a/english/cpp/system/iformatprovider/_index.md b/english/cpp/system/iformatprovider/_index.md index 68135d10d9..7824352069 100644 --- a/english/cpp/system/iformatprovider/_index.md +++ b/english/cpp/system/iformatprovider/_index.md @@ -4,7 +4,7 @@ linktitle: IFormatProvider second_title: Aspose.PDF for C++ API Reference description: 'System::IFormatProvider class. Defines a method that provides formatting information. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument in C++.' type: docs -weight: 3700 +weight: 3800 url: /cpp/system/iformatprovider/ --- ## IFormatProvider class diff --git a/english/cpp/system/iformatproviderptr/_index.md b/english/cpp/system/iformatproviderptr/_index.md index 5a977ee030..2af4ac973e 100644 --- a/english/cpp/system/iformatproviderptr/_index.md +++ b/english/cpp/system/iformatproviderptr/_index.md @@ -4,7 +4,7 @@ linktitle: IFormatProviderPtr second_title: Aspose.PDF for C++ API Reference description: 'System::IFormatProviderPtr typedef. An alias for a smart pointer that points to an instance of System::IFormatProvider class in C++.' type: docs -weight: 11600 +weight: 11800 url: /cpp/system/iformatproviderptr/ --- ## IFormatProviderPtr typedef diff --git a/english/cpp/system/iformattable/_index.md b/english/cpp/system/iformattable/_index.md index def1e69fba..7f0999e706 100644 --- a/english/cpp/system/iformattable/_index.md +++ b/english/cpp/system/iformattable/_index.md @@ -4,7 +4,7 @@ linktitle: IFormattable second_title: Aspose.PDF for C++ API Reference description: 'System::IFormattable class. Defines a method that formats the value of the current object using the specified format string and format provider in C++.' type: docs -weight: 3800 +weight: 3900 url: /cpp/system/iformattable/ --- ## IFormattable class diff --git a/english/cpp/system/int16/_index.md b/english/cpp/system/int16/_index.md index 7117103dde..25dc651db8 100644 --- a/english/cpp/system/int16/_index.md +++ b/english/cpp/system/int16/_index.md @@ -4,7 +4,7 @@ linktitle: Int16 second_title: Aspose.PDF for C++ API Reference description: 'System::Int16 class. Contains methods to work with the 16-bit integer in C++.' type: docs -weight: 3900 +weight: 4000 url: /cpp/system/int16/ --- ## Int16 class diff --git a/english/cpp/system/int32/_index.md b/english/cpp/system/int32/_index.md index cbf468f3b9..8af3e620ef 100644 --- a/english/cpp/system/int32/_index.md +++ b/english/cpp/system/int32/_index.md @@ -4,7 +4,7 @@ linktitle: Int32 second_title: Aspose.PDF for C++ API Reference description: 'System::Int32 class. Contains methods to work with the 32-bit integer in C++.' type: docs -weight: 4000 +weight: 4100 url: /cpp/system/int32/ --- ## Int32 class diff --git a/english/cpp/system/int64/_index.md b/english/cpp/system/int64/_index.md index 1607aee4de..b47fd35634 100644 --- a/english/cpp/system/int64/_index.md +++ b/english/cpp/system/int64/_index.md @@ -4,7 +4,7 @@ linktitle: Int64 second_title: Aspose.PDF for C++ API Reference description: 'System::Int64 class. Contains methods to work with the 64-bit integer in C++.' type: docs -weight: 4100 +weight: 4200 url: /cpp/system/int64/ --- ## Int64 class diff --git a/english/cpp/system/is_vp_test/_index.md b/english/cpp/system/is_vp_test/_index.md index 4fb1224f2b..c9b1938436 100644 --- a/english/cpp/system/is_vp_test/_index.md +++ b/english/cpp/system/is_vp_test/_index.md @@ -4,7 +4,7 @@ linktitle: is_vp_test second_title: Aspose.PDF for C++ API Reference description: 'How to use is_vp_test method of class in C++.' type: docs -weight: 19400 +weight: 19800 url: /cpp/system/is_vp_test/ --- ## System::is_vp_test method diff --git a/english/cpp/system/isenummetainfodefined/_index.md b/english/cpp/system/isenummetainfodefined/_index.md index de423f6872..451e6b9658 100644 --- a/english/cpp/system/isenummetainfodefined/_index.md +++ b/english/cpp/system/isenummetainfodefined/_index.md @@ -4,7 +4,7 @@ linktitle: IsEnumMetaInfoDefined second_title: Aspose.PDF for C++ API Reference description: 'How to use IsEnumMetaInfoDefined method of class in C++.' type: docs -weight: 19500 +weight: 19900 url: /cpp/system/isenummetainfodefined/ --- ## System::IsEnumMetaInfoDefined(T) method diff --git a/english/cpp/system/isinfinity/_index.md b/english/cpp/system/isinfinity/_index.md index e7d7fb5e63..8c5f0d95e1 100644 --- a/english/cpp/system/isinfinity/_index.md +++ b/english/cpp/system/isinfinity/_index.md @@ -4,7 +4,7 @@ linktitle: IsInfinity second_title: Aspose.PDF for C++ API Reference description: 'System::IsInfinity method. Determines if the specified value represents infinity in C++.' type: docs -weight: 19700 +weight: 20100 url: /cpp/system/isinfinity/ --- ## System::IsInfinity method diff --git a/english/cpp/system/isnan/_index.md b/english/cpp/system/isnan/_index.md index 21ddb05c8b..bbbb71699a 100644 --- a/english/cpp/system/isnan/_index.md +++ b/english/cpp/system/isnan/_index.md @@ -4,7 +4,7 @@ linktitle: IsNaN second_title: Aspose.PDF for C++ API Reference description: 'System::IsNaN method. Determines if the specified value is Not-A-Number value in C++.' type: docs -weight: 19800 +weight: 20200 url: /cpp/system/isnan/ --- ## System::IsNaN method diff --git a/english/cpp/system/isnegativeinfinity/_index.md b/english/cpp/system/isnegativeinfinity/_index.md index 601e60811e..366436e4cd 100644 --- a/english/cpp/system/isnegativeinfinity/_index.md +++ b/english/cpp/system/isnegativeinfinity/_index.md @@ -4,7 +4,7 @@ linktitle: IsNegativeInfinity second_title: Aspose.PDF for C++ API Reference description: 'System::IsNegativeInfinity method. Determines if the specified value represents negative infinity in C++.' type: docs -weight: 19900 +weight: 20300 url: /cpp/system/isnegativeinfinity/ --- ## System::IsNegativeInfinity method diff --git a/english/cpp/system/ispattern/_index.md b/english/cpp/system/ispattern/_index.md new file mode 100644 index 0000000000..3fff63576a --- /dev/null +++ b/english/cpp/system/ispattern/_index.md @@ -0,0 +1,38 @@ +--- +title: System::IsPattern method +linktitle: IsPattern +second_title: Aspose.PDF for C++ API Reference +description: 'System::IsPattern method. Implements ''is'' pattern translation in C++.' +type: docs +weight: 20400 +url: /cpp/system/ispattern/ +--- +## System::IsPattern method + + +Implements 'is' pattern translation. + +```cpp +template static bool System::IsPattern(const ExpressionT &left, ResultT &result) +``` + + +| Parameter | Description | +| --- | --- | +| PatternT | type to check. | +| ExpressionT | left expression type. | +| ResultT | type of result expression. | + +| Parameter | Type | Description | +| --- | --- | --- | +| left | const ExpressionT\& | expression which will be checked. | +| result | ResultT\& | variable which will be assigned to checked type. | + +### ReturnValue + +true if type check is successfull, false otherwise. + +## See Also + +* Namespace [System](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system/ispositiveinfinity/_index.md b/english/cpp/system/ispositiveinfinity/_index.md index 00a179de96..e5c409203e 100644 --- a/english/cpp/system/ispositiveinfinity/_index.md +++ b/english/cpp/system/ispositiveinfinity/_index.md @@ -4,7 +4,7 @@ linktitle: IsPositiveInfinity second_title: Aspose.PDF for C++ API Reference description: 'System::IsPositiveInfinity method. Determines if the specified value represents positive infinity in C++.' type: docs -weight: 20000 +weight: 20500 url: /cpp/system/ispositiveinfinity/ --- ## System::IsPositiveInfinity method diff --git a/english/cpp/system/iterateover/_index.md b/english/cpp/system/iterateover/_index.md index ce67d69a2b..457b989f55 100644 --- a/english/cpp/system/iterateover/_index.md +++ b/english/cpp/system/iterateover/_index.md @@ -4,7 +4,7 @@ linktitle: IterateOver second_title: Aspose.PDF for C++ API Reference description: 'System::IterateOver method. This function property wraps enumerable (or iterable) object so it can be used with range-based for loop This overload for Enumerable this with default target type in C++.' type: docs -weight: 20100 +weight: 20600 url: /cpp/system/iterateover/ --- ## System::IterateOver(const Enumerable *) method diff --git a/english/cpp/system/lockcontext/_index.md b/english/cpp/system/lockcontext/_index.md index 9c3256ae98..781bb39885 100644 --- a/english/cpp/system/lockcontext/_index.md +++ b/english/cpp/system/lockcontext/_index.md @@ -4,7 +4,7 @@ linktitle: LockContext second_title: Aspose.PDF for C++ API Reference description: 'System::LockContext class. Guard object implementing C# lock() statement in C++.' type: docs -weight: 4200 +weight: 4300 url: /cpp/system/lockcontext/ --- ## LockContext class diff --git a/english/cpp/system/makearray/_index.md b/english/cpp/system/makearray/_index.md index 22348aff96..bdc9e65e39 100644 --- a/english/cpp/system/makearray/_index.md +++ b/english/cpp/system/makearray/_index.md @@ -4,7 +4,7 @@ linktitle: MakeArray second_title: Aspose.PDF for C++ API Reference description: 'System::MakeArray method. A factory function that constructs a new Array object passing the specified arguments to its constructor in C++.' type: docs -weight: 20800 +weight: 21300 url: /cpp/system/makearray/ --- ## System::MakeArray(Args\&&...) method diff --git a/english/cpp/system/makeconstref_t/_index.md b/english/cpp/system/makeconstref_t/_index.md index c985719d8f..ebe927b50a 100644 --- a/english/cpp/system/makeconstref_t/_index.md +++ b/english/cpp/system/makeconstref_t/_index.md @@ -4,7 +4,7 @@ linktitle: MakeConstRef_t second_title: Aspose.PDF for C++ API Reference description: 'System::MakeConstRef_t typedef. Helper type for MakeConstRef modifier in C++.' type: docs -weight: 11700 +weight: 11900 url: /cpp/system/makeconstref_t/ --- ## MakeConstRef_t typedef diff --git a/english/cpp/system/makeobject/_index.md b/english/cpp/system/makeobject/_index.md index 4614326b80..758c528d8c 100644 --- a/english/cpp/system/makeobject/_index.md +++ b/english/cpp/system/makeobject/_index.md @@ -4,7 +4,7 @@ linktitle: MakeObject second_title: Aspose.PDF for C++ API Reference description: 'System::MakeObject method. Creates object on heap and returns shared pointer to it in C++.' type: docs -weight: 21100 +weight: 21600 url: /cpp/system/makeobject/ --- ## System::MakeObject(Args\&&...) method diff --git a/english/cpp/system/makescopeguard/_index.md b/english/cpp/system/makescopeguard/_index.md index 94d411bf9c..8034fc89d6 100644 --- a/english/cpp/system/makescopeguard/_index.md +++ b/english/cpp/system/makescopeguard/_index.md @@ -4,7 +4,7 @@ linktitle: MakeScopeGuard second_title: Aspose.PDF for C++ API Reference description: 'System::MakeScopeGuard method. A factory function that creates instances of ScopedGuard class in C++.' type: docs -weight: 21300 +weight: 21800 url: /cpp/system/makescopeguard/ --- ## System::MakeScopeGuard method diff --git a/english/cpp/system/makesharedptr/_index.md b/english/cpp/system/makesharedptr/_index.md index 58224b2c63..a2f878f2b4 100644 --- a/english/cpp/system/makesharedptr/_index.md +++ b/english/cpp/system/makesharedptr/_index.md @@ -4,7 +4,7 @@ linktitle: MakeSharedPtr second_title: Aspose.PDF for C++ API Reference description: 'System::MakeSharedPtr method. Converts raw pointer to smart pointer. Overload for const pointers. Useful e. g. when using ''this'' variable in C# methods translated as const in C++.' type: docs -weight: 21400 +weight: 21900 url: /cpp/system/makesharedptr/ --- ## System::MakeSharedPtr(const X *) method diff --git a/english/cpp/system/marshalbyrefobject/_index.md b/english/cpp/system/marshalbyrefobject/_index.md index 92e482e4d1..143f767d02 100644 --- a/english/cpp/system/marshalbyrefobject/_index.md +++ b/english/cpp/system/marshalbyrefobject/_index.md @@ -4,7 +4,7 @@ linktitle: MarshalByRefObject second_title: Aspose.PDF for C++ API Reference description: 'System::MarshalByRefObject class. Provides access to objects across application domain boundaries in remoting-enabled applications. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument in C++.' type: docs -weight: 4300 +weight: 4400 url: /cpp/system/marshalbyrefobject/ --- ## MarshalByRefObject class diff --git a/english/cpp/system/memberwiseclone/_index.md b/english/cpp/system/memberwiseclone/_index.md index 99dbd0720d..eec2e8251a 100644 --- a/english/cpp/system/memberwiseclone/_index.md +++ b/english/cpp/system/memberwiseclone/_index.md @@ -4,7 +4,7 @@ linktitle: MemberwiseClone second_title: Aspose.PDF for C++ API Reference description: 'System::MemberwiseClone method. Performs memberwise cloning using copy constructor in C++.' type: docs -weight: 21600 +weight: 22100 url: /cpp/system/memberwiseclone/ --- ## System::MemberwiseClone method diff --git a/english/cpp/system/memorystreamptr/_index.md b/english/cpp/system/memorystreamptr/_index.md index 6fca581769..62a1acd1eb 100644 --- a/english/cpp/system/memorystreamptr/_index.md +++ b/english/cpp/system/memorystreamptr/_index.md @@ -4,7 +4,7 @@ linktitle: MemoryStreamPtr second_title: Aspose.PDF for C++ API Reference description: 'System::MemoryStreamPtr typedef. An alias for a smart pointer that points to an instance of System::IO::MemoryStream class in C++.' type: docs -weight: 11800 +weight: 12000 url: /cpp/system/memorystreamptr/ --- ## MemoryStreamPtr typedef diff --git a/english/cpp/system/midpointrounding/_index.md b/english/cpp/system/midpointrounding/_index.md index f80ee474f7..7ac9bdfaee 100644 --- a/english/cpp/system/midpointrounding/_index.md +++ b/english/cpp/system/midpointrounding/_index.md @@ -4,7 +4,7 @@ linktitle: MidpointRounding second_title: Aspose.PDF for C++ API Reference description: 'System::MidpointRounding enum. Specifies the behavior of rounding functions in C++.' type: docs -weight: 7800 +weight: 8000 url: /cpp/system/midpointrounding/ --- ## MidpointRounding enum diff --git a/english/cpp/system/multicastdelegate_returntype(argumenttypes...)_/_index.md b/english/cpp/system/multicastdelegate_returntype(argumenttypes...)_/_index.md index 48d323b485..5fc2146b49 100644 --- a/english/cpp/system/multicastdelegate_returntype(argumenttypes...)_/_index.md +++ b/english/cpp/system/multicastdelegate_returntype(argumenttypes...)_/_index.md @@ -4,7 +4,7 @@ linktitle: MulticastDelegate< ReturnType(ArgumentTypes...)> second_title: Aspose.PDF for C++ API Reference description: 'System::MulticastDelegate< ReturnType(ArgumentTypes...)> class. Represents a collection of delegates. This type should be allocated on stack and passed to functions by value or by reference. Never use System::SmartPtr class to manage objects of this type in C++.' type: docs -weight: 4400 +weight: 4500 url: /cpp/system/multicastdelegate_returntype(argumenttypes...)_/ --- ## MulticastDelegate< ReturnType(ArgumentTypes...)> class diff --git a/english/cpp/system/nullable/_index.md b/english/cpp/system/nullable/_index.md index 9dc80c3d84..6bb920334e 100644 --- a/english/cpp/system/nullable/_index.md +++ b/english/cpp/system/nullable/_index.md @@ -4,7 +4,7 @@ linktitle: Nullable second_title: Aspose.PDF for C++ API Reference description: 'System::Nullable class. Forward declaration in C++.' type: docs -weight: 4500 +weight: 4600 url: /cpp/system/nullable/ --- ## Nullable class diff --git a/english/cpp/system/nullableutils/_index.md b/english/cpp/system/nullableutils/_index.md new file mode 100644 index 0000000000..1a31972a0c --- /dev/null +++ b/english/cpp/system/nullableutils/_index.md @@ -0,0 +1,27 @@ +--- +title: System::NullableUtils class +linktitle: NullableUtils +second_title: Aspose.PDF for C++ API Reference +description: 'System::NullableUtils class. Represents C# System.Nullable (with no type arguments) static class. Unable to use original name due inability to overload class templates in C++. Supports a value type that can be assigned null. This class cannot be inherited in C++.' +type: docs +weight: 4700 +url: /cpp/system/nullableutils/ +--- +## NullableUtils class + + +Represents C# [System.Nullable](../nullable/) (with no type arguments) static class. Unable to use original name due inability to overload class templates in C++. Supports a value type that can be assigned null. This class cannot be inherited. + +```cpp +class NullableUtils +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [GetUnderlyingType](./getunderlyingtype/)(const System::TypeInfo\&) | Returns the underlying type argument of the specified nullable type. | +## See Also + +* Namespace [System](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system/nullableutils/getunderlyingtype/_index.md b/english/cpp/system/nullableutils/getunderlyingtype/_index.md new file mode 100644 index 0000000000..6aef369ee2 --- /dev/null +++ b/english/cpp/system/nullableutils/getunderlyingtype/_index.md @@ -0,0 +1,33 @@ +--- +title: System::NullableUtils::GetUnderlyingType method +linktitle: GetUnderlyingType +second_title: Aspose.PDF for C++ API Reference +description: 'System::NullableUtils::GetUnderlyingType method. Returns the underlying type argument of the specified nullable type in C++.' +type: docs +weight: 100 +url: /cpp/system/nullableutils/getunderlyingtype/ +--- +## NullableUtils::GetUnderlyingType method + + +Returns the underlying type argument of the specified nullable type. + +```cpp +static const System::TypeInfo & System::NullableUtils::GetUnderlyingType(const System::TypeInfo &nullableType) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| nullableType | const System::TypeInfo\& | A System.Type object that describes a closed generic nullable type. | + +### ReturnValue + +The type argument of the nullableType parameter, if the nullableType parameter is a closed generic nullable type; otherwise, null + +## See Also + +* Class [TypeInfo](../../typeinfo/) +* Class [NullableUtils](../) +* Namespace [System](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system/object/_index.md b/english/cpp/system/object/_index.md index c5cc75d25e..34e0568329 100644 --- a/english/cpp/system/object/_index.md +++ b/english/cpp/system/object/_index.md @@ -4,7 +4,7 @@ linktitle: Object second_title: Aspose.PDF for C++ API Reference description: 'System::Object class. Base class that enables using methods available for System.Object class in C#. All non-trivial classes used with translated environment should inherit it in C++.' type: docs -weight: 4600 +weight: 4800 url: /cpp/system/object/ --- ## Object class diff --git a/english/cpp/system/objectext/_index.md b/english/cpp/system/objectext/_index.md index 795d9cdd9f..669277d60a 100644 --- a/english/cpp/system/objectext/_index.md +++ b/english/cpp/system/objectext/_index.md @@ -4,7 +4,7 @@ linktitle: ObjectExt second_title: Aspose.PDF for C++ API Reference description: 'System::ObjectExt class. Provides static methods that emulate C# Object methods called for non-Object C++ types (strings, numbers, etc.). This is a static type with no instance services. You should never create instances of it by any means in C++.' type: docs -weight: 4700 +weight: 4900 url: /cpp/system/objectext/ --- ## ObjectExt class diff --git a/english/cpp/system/objecttype.gettype_system.datetime_/_index.md b/english/cpp/system/objecttype.gettype_system.datetime_/_index.md index 843b46d375..e8b987e5cc 100644 --- a/english/cpp/system/objecttype.gettype_system.datetime_/_index.md +++ b/english/cpp/system/objecttype.gettype_system.datetime_/_index.md @@ -4,7 +4,7 @@ linktitle: ObjectType::GetType< System::DateTime > second_title: Aspose.PDF for C++ API Reference description: 'System::GetType< System::DateTime > method. Implements typeof() translation. Overload for DateTime in C++.' type: docs -weight: 21700 +weight: 22200 url: /cpp/system/objecttype.gettype_system.datetime_/ --- ## System::ObjectType::GetType< System::DateTime > method diff --git a/english/cpp/system/objecttype.gettype_system.string_/_index.md b/english/cpp/system/objecttype.gettype_system.string_/_index.md index 14b21a9b40..500ac90f92 100644 --- a/english/cpp/system/objecttype.gettype_system.string_/_index.md +++ b/english/cpp/system/objecttype.gettype_system.string_/_index.md @@ -4,7 +4,7 @@ linktitle: ObjectType::GetType< System::String > second_title: Aspose.PDF for C++ API Reference description: 'System::GetType< System::String > method. Implements typeof() translation. Overload for String in C++.' type: docs -weight: 21800 +weight: 22300 url: /cpp/system/objecttype.gettype_system.string_/ --- ## System::ObjectType::GetType< System::String > method diff --git a/english/cpp/system/objecttype/_index.md b/english/cpp/system/objecttype/_index.md index 18415b499b..16e19c7c7d 100644 --- a/english/cpp/system/objecttype/_index.md +++ b/english/cpp/system/objecttype/_index.md @@ -4,7 +4,7 @@ linktitle: ObjectType second_title: Aspose.PDF for C++ API Reference description: 'System::ObjectType class. Provides static methods that implement object type getters. This is a static type with no instance services. You should never create instances of it by any means in C++.' type: docs -weight: 4800 +weight: 5000 url: /cpp/system/objecttype/ --- ## ObjectType class diff --git a/english/cpp/system/operatingsystem/_index.md b/english/cpp/system/operatingsystem/_index.md index 04aa5c9b2a..24eae7bc40 100644 --- a/english/cpp/system/operatingsystem/_index.md +++ b/english/cpp/system/operatingsystem/_index.md @@ -4,7 +4,7 @@ linktitle: OperatingSystem second_title: Aspose.PDF for C++ API Reference description: 'System::OperatingSystem class. Represents a particular operating system and provides information about it. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument in C++.' type: docs -weight: 4900 +weight: 5100 url: /cpp/system/operatingsystem/ --- ## OperatingSystem class diff --git a/english/cpp/system/operator!=/_index.md b/english/cpp/system/operator!=/_index.md index 50a3d38347..85b3aa94db 100644 --- a/english/cpp/system/operator!=/_index.md +++ b/english/cpp/system/operator!=/_index.md @@ -4,7 +4,7 @@ linktitle: operator!= second_title: Aspose.PDF for C++ API Reference description: 'How to use operator!= method of class in C++.' type: docs -weight: 21900 +weight: 22400 url: /cpp/system/operator!=/ --- ## System::operator!=(ArraySegment\, ArraySegment\) method diff --git a/english/cpp/system/operator+/_index.md b/english/cpp/system/operator+/_index.md index 5400ab34d1..0e507ed0ca 100644 --- a/english/cpp/system/operator+/_index.md +++ b/english/cpp/system/operator+/_index.md @@ -4,7 +4,7 @@ linktitle: operator+ second_title: Aspose.PDF for C++ API Reference description: 'System::operator+ method. String concatenation in C++.' type: docs -weight: 23600 +weight: 24100 url: /cpp/system/operator+/ --- ## System::operator+(const char_t, const String\&) method diff --git a/english/cpp/system/operator-/_index.md b/english/cpp/system/operator-/_index.md index 95754878f4..02f01c1625 100644 --- a/english/cpp/system/operator-/_index.md +++ b/english/cpp/system/operator-/_index.md @@ -4,7 +4,7 @@ linktitle: operator- second_title: Aspose.PDF for C++ API Reference description: 'System::operator- method. Returns a new instance of Decimal class that represents a value that is the result of subtraction of the value represented by the specified Decimal object from the specified value in C++.' type: docs -weight: 24200 +weight: 24700 url: /cpp/system/operator-/ --- ## System::operator-(const T\&, const Decimal\&) method diff --git a/english/cpp/system/operator/_index.md b/english/cpp/system/operator/_index.md index 291faf9745..4123153fbc 100644 --- a/english/cpp/system/operator/_index.md +++ b/english/cpp/system/operator/_index.md @@ -4,7 +4,7 @@ linktitle: operator/ second_title: Aspose.PDF for C++ API Reference description: 'System::operator/ method. Returns a new instance of Decimal class that represents a value that is a result of division of the specified value and the value represented by the specified Decimal object in C++.' type: docs -weight: 24600 +weight: 25100 url: /cpp/system/operator/ --- ## System::operator/ method diff --git a/english/cpp/system/operator==/_index.md b/english/cpp/system/operator==/_index.md index 3fe72b69b6..d067072528 100644 --- a/english/cpp/system/operator==/_index.md +++ b/english/cpp/system/operator==/_index.md @@ -4,7 +4,7 @@ linktitle: operator== second_title: Aspose.PDF for C++ API Reference description: 'How to use operator== method of class in C++.' type: docs -weight: 28500 +weight: 29000 url: /cpp/system/operator==/ --- ## System::operator==(ArraySegment\, ArraySegment\) method diff --git a/english/cpp/system/operator_/_index.md b/english/cpp/system/operator_/_index.md index 5a3a0dbec5..c7ef2ce3aa 100644 --- a/english/cpp/system/operator_/_index.md +++ b/english/cpp/system/operator_/_index.md @@ -4,7 +4,7 @@ linktitle: operator* second_title: Aspose.PDF for C++ API Reference description: 'System::operator* method. Returns a new instance of Decimal class that represents a value that is a result of multiplication of the specified value and the value represented by the specified Decimal object in C++.' type: docs -weight: 23500 +weight: 24000 url: /cpp/system/operator_/ --- ## System::operator* method @@ -37,7 +37,7 @@ linktitle: operator< second_title: Aspose.PDF for C++ API Reference description: 'System::operator< method. Determines if the specified value is less than the value represented by the specified Nullable object by applying operator<() to these values in C++.' type: docs -weight: 24700 +weight: 25200 url: /cpp/system/operator_/ --- ## System::operator<(const T1\&, const Nullable\\&) method @@ -131,7 +131,7 @@ linktitle: operator> second_title: Aspose.PDF for C++ API Reference description: 'System::operator> method. Determines if the specified value is greater than the value represented by the specified Nullable object by applying operator>() to these values in C++.' type: docs -weight: 30200 +weight: 30700 url: /cpp/system/operator_/ --- ## System::operator>(const T1\&, const Nullable\\&) method diff --git a/english/cpp/system/operator_=/_index.md b/english/cpp/system/operator_=/_index.md index 0802ff88de..33e3431f56 100644 --- a/english/cpp/system/operator_=/_index.md +++ b/english/cpp/system/operator_=/_index.md @@ -4,7 +4,7 @@ linktitle: operator<= second_title: Aspose.PDF for C++ API Reference description: 'System::operator<= method. Determines if the specified value is less or equal to the value represented by the specified Nullable object by applying operator<=() to these values in C++.' type: docs -weight: 28000 +weight: 28500 url: /cpp/system/operator_=/ --- ## System::operator<=(const T1\&, const Nullable\\&) method @@ -98,7 +98,7 @@ linktitle: operator>= second_title: Aspose.PDF for C++ API Reference description: 'System::operator>= method. Determines if the specified value is greater or equal to the value represented by the specified Nullable object by applying operator>=() to these values in C++.' type: docs -weight: 30700 +weight: 31200 url: /cpp/system/operator_=/ --- ## System::operator>=(const T1\&, const Nullable\\&) method diff --git a/english/cpp/system/operator__/_index.md b/english/cpp/system/operator__/_index.md index 1dc0c9b1c3..95c737b667 100644 --- a/english/cpp/system/operator__/_index.md +++ b/english/cpp/system/operator__/_index.md @@ -4,7 +4,7 @@ linktitle: operator<< second_title: Aspose.PDF for C++ API Reference description: 'System::operator<< method. Outputs a string to the output stream using UTF-8 encoding in C++.' type: docs -weight: 25200 +weight: 25700 url: /cpp/system/operator__/ --- ## System::operator<<(std::ostream\&, const String\&) method @@ -685,7 +685,7 @@ linktitle: operator>> second_title: Aspose.PDF for C++ API Reference description: 'System::operator>> method. Gets a string from the input streamusing UTF-8 encoding in C++.' type: docs -weight: 31200 +weight: 31700 url: /cpp/system/operator__/ --- ## System::operator>>(std::istream\&, String\&) method diff --git a/english/cpp/system/platformid/_index.md b/english/cpp/system/platformid/_index.md index 83c153a6d7..c2b49bb2bc 100644 --- a/english/cpp/system/platformid/_index.md +++ b/english/cpp/system/platformid/_index.md @@ -4,7 +4,7 @@ linktitle: PlatformID second_title: Aspose.PDF for C++ API Reference description: 'System::PlatformID enum. Represents an operating system platform in C++.' type: docs -weight: 7900 +weight: 8100 url: /cpp/system/platformid/ --- ## PlatformID enum diff --git a/english/cpp/system/predicate/_index.md b/english/cpp/system/predicate/_index.md index 87d7ca8cce..ca89455a04 100644 --- a/english/cpp/system/predicate/_index.md +++ b/english/cpp/system/predicate/_index.md @@ -4,7 +4,7 @@ linktitle: Predicate second_title: Aspose.PDF for C++ API Reference description: 'System::Predicate typedef. Represents a pointer to a predicate - an invokable entity that accepts a single argument and returns a bool value in C++.' type: docs -weight: 11900 +weight: 12100 url: /cpp/system/predicate/ --- ## Predicate typedef diff --git a/english/cpp/system/printto/_index.md b/english/cpp/system/printto/_index.md index de40bab4d9..8880489c42 100644 --- a/english/cpp/system/printto/_index.md +++ b/english/cpp/system/printto/_index.md @@ -4,7 +4,7 @@ linktitle: PrintTo second_title: Aspose.PDF for C++ API Reference description: 'System::PrintTo method. Writes the value represented by the specified object to the specified output stream in C++.' type: docs -weight: 31400 +weight: 31900 url: /cpp/system/printto/ --- ## System::PrintTo(const Decimal\&, ::std::ostream *) method diff --git a/english/cpp/system/random/_index.md b/english/cpp/system/random/_index.md index a80fa135f0..31e7f39afc 100644 --- a/english/cpp/system/random/_index.md +++ b/english/cpp/system/random/_index.md @@ -4,7 +4,7 @@ linktitle: Random second_title: Aspose.PDF for C++ API Reference description: 'System::Random class. Represents a pseudo-random number generator. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument in C++.' type: docs -weight: 5000 +weight: 5200 url: /cpp/system/random/ --- ## Random class diff --git a/english/cpp/system/ref/_index.md b/english/cpp/system/ref/_index.md index 84d750e4b8..729b187d4f 100644 --- a/english/cpp/system/ref/_index.md +++ b/english/cpp/system/ref/_index.md @@ -4,7 +4,7 @@ linktitle: Ref second_title: Aspose.PDF for C++ API Reference description: 'System::Ref method. Wrapper to make sure Ref(std::ref(DynamicWeakPtr)) works in C++.' type: docs -weight: 32700 +weight: 33200 url: /cpp/system/ref/ --- ## System::Ref(const std::reference_wrapper\\&) method diff --git a/english/cpp/system/safeinvoke/_index.md b/english/cpp/system/safeinvoke/_index.md new file mode 100644 index 0000000000..6943877984 --- /dev/null +++ b/english/cpp/system/safeinvoke/_index.md @@ -0,0 +1,37 @@ +--- +title: System::SafeInvoke method +linktitle: SafeInvoke +second_title: Aspose.PDF for C++ API Reference +description: 'System::SafeInvoke method. Implementation of ''?.'' operator translation in C++.' +type: docs +weight: 33500 +url: /cpp/system/safeinvoke/ +--- +## System::SafeInvoke method + + +Implementation of '?.' operator translation. + +```cpp +template static auto System::SafeInvoke(T0 expr, T1 func) +``` + + +| Parameter | Description | +| --- | --- | +| T0 | expression type. | +| T1 | Type of lambda encapsulating 'WhenTrue' expression. | + +| Parameter | Type | Description | +| --- | --- | --- | +| expr | T0 | expression value. | +| func | T1 | 'WhenTrue' expression bound to functor. | + +### ReturnValue + +If expr value is not null, returns func called with its value as first argument, otherwise returns null. + +## See Also + +* Namespace [System](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system/scopedculture/_index.md b/english/cpp/system/scopedculture/_index.md index 637cbc0605..cffd4eb07c 100644 --- a/english/cpp/system/scopedculture/_index.md +++ b/english/cpp/system/scopedculture/_index.md @@ -4,7 +4,7 @@ linktitle: ScopedCulture second_title: Aspose.PDF for C++ API Reference description: 'System::ScopedCulture class. Represents a culture used within the scope in C++.' type: docs -weight: 5100 +weight: 5300 url: /cpp/system/scopedculture/ --- ## ScopedCulture class diff --git a/english/cpp/system/setter_add_wrap/_index.md b/english/cpp/system/setter_add_wrap/_index.md index 2ff73ba8e6..df67af9e40 100644 --- a/english/cpp/system/setter_add_wrap/_index.md +++ b/english/cpp/system/setter_add_wrap/_index.md @@ -4,7 +4,7 @@ linktitle: setter_add_wrap second_title: Aspose.PDF for C++ API Reference description: 'How to use setter_add_wrap method of class in C++.' type: docs -weight: 33000 +weight: 33600 url: /cpp/system/setter_add_wrap/ --- ## System::setter_add_wrap(HostT *const, PropT(HostGetT::*)(), void(HostSetT::*)(const PropT\&), PropValT) method diff --git a/english/cpp/system/setter_and_wrap/_index.md b/english/cpp/system/setter_and_wrap/_index.md index 57272b1c06..c78ca86c8b 100644 --- a/english/cpp/system/setter_and_wrap/_index.md +++ b/english/cpp/system/setter_and_wrap/_index.md @@ -4,7 +4,7 @@ linktitle: setter_and_wrap second_title: Aspose.PDF for C++ API Reference description: 'How to use setter_and_wrap method of class in C++.' type: docs -weight: 33400 +weight: 34000 url: /cpp/system/setter_and_wrap/ --- ## System::setter_and_wrap(HostT *const, PropT(HostGetT::*)(), void(HostSetT::*)(const PropT\&), PropValT) method diff --git a/english/cpp/system/setter_decrement_wrap/_index.md b/english/cpp/system/setter_decrement_wrap/_index.md index 7df239f91f..4142fbff61 100644 --- a/english/cpp/system/setter_decrement_wrap/_index.md +++ b/english/cpp/system/setter_decrement_wrap/_index.md @@ -4,7 +4,7 @@ linktitle: setter_decrement_wrap second_title: Aspose.PDF for C++ API Reference description: 'System::setter_decrement_wrap method. Translator translates C#''s pre-decrement expressions targeting instance''s property that has setter and getter defined, into invocation of this function (overload for const getter) in C++.' type: docs -weight: 33800 +weight: 34400 url: /cpp/system/setter_decrement_wrap/ --- ## System::setter_decrement_wrap(Host *const, T(HostConstGet::*)() const, void(HostSet::*)(T)) method diff --git a/english/cpp/system/setter_div_wrap/_index.md b/english/cpp/system/setter_div_wrap/_index.md index fb101d5218..ebfc7cf001 100644 --- a/english/cpp/system/setter_div_wrap/_index.md +++ b/english/cpp/system/setter_div_wrap/_index.md @@ -4,7 +4,7 @@ linktitle: setter_div_wrap second_title: Aspose.PDF for C++ API Reference description: 'How to use setter_div_wrap method of class in C++.' type: docs -weight: 34100 +weight: 34700 url: /cpp/system/setter_div_wrap/ --- ## System::setter_div_wrap(HostT *const, PropT(HostGetT::*)(), void(HostSetT::*)(const PropT\&), PropValT) method diff --git a/english/cpp/system/setter_exor_wrap/_index.md b/english/cpp/system/setter_exor_wrap/_index.md index 0ab7bf9ce3..e57c1fe0ac 100644 --- a/english/cpp/system/setter_exor_wrap/_index.md +++ b/english/cpp/system/setter_exor_wrap/_index.md @@ -4,7 +4,7 @@ linktitle: setter_exor_wrap second_title: Aspose.PDF for C++ API Reference description: 'How to use setter_exor_wrap method of class in C++.' type: docs -weight: 34500 +weight: 35100 url: /cpp/system/setter_exor_wrap/ --- ## System::setter_exor_wrap(HostT *const, PropT(HostGetT::*)(), void(HostSetT::*)(const PropT\&), PropValT) method diff --git a/english/cpp/system/setter_increment_wrap/_index.md b/english/cpp/system/setter_increment_wrap/_index.md index 680dd2c503..c2a11b57f7 100644 --- a/english/cpp/system/setter_increment_wrap/_index.md +++ b/english/cpp/system/setter_increment_wrap/_index.md @@ -4,7 +4,7 @@ linktitle: setter_increment_wrap second_title: Aspose.PDF for C++ API Reference description: 'System::setter_increment_wrap method. Translator translates C#''s increment expressions targeting class'' property that has setter and getter defined, into invocation of this function in C++.' type: docs -weight: 34900 +weight: 35500 url: /cpp/system/setter_increment_wrap/ --- ## System::setter_increment_wrap(Host *const, T(HostGet::*)(), void(HostSet::*)(T)) method diff --git a/english/cpp/system/setter_mod_wrap/_index.md b/english/cpp/system/setter_mod_wrap/_index.md index 1a5e2d2d3a..58c57f81d4 100644 --- a/english/cpp/system/setter_mod_wrap/_index.md +++ b/english/cpp/system/setter_mod_wrap/_index.md @@ -4,7 +4,7 @@ linktitle: setter_mod_wrap second_title: Aspose.PDF for C++ API Reference description: 'How to use setter_mod_wrap method of class in C++.' type: docs -weight: 35100 +weight: 35700 url: /cpp/system/setter_mod_wrap/ --- ## System::setter_mod_wrap(HostT *const, PropT(HostGetT::*)(), void(HostSetT::*)(const PropT\&), PropValT) method diff --git a/english/cpp/system/setter_mul_wrap/_index.md b/english/cpp/system/setter_mul_wrap/_index.md index 47c7ea7342..63f51f909e 100644 --- a/english/cpp/system/setter_mul_wrap/_index.md +++ b/english/cpp/system/setter_mul_wrap/_index.md @@ -4,7 +4,7 @@ linktitle: setter_mul_wrap second_title: Aspose.PDF for C++ API Reference description: 'How to use setter_mul_wrap method of class in C++.' type: docs -weight: 35500 +weight: 36100 url: /cpp/system/setter_mul_wrap/ --- ## System::setter_mul_wrap(HostT *const, PropT(HostGetT::*)(), void(HostSetT::*)(const PropT\&), PropValT) method diff --git a/english/cpp/system/setter_or_wrap/_index.md b/english/cpp/system/setter_or_wrap/_index.md index 11d357f51c..e348d476d6 100644 --- a/english/cpp/system/setter_or_wrap/_index.md +++ b/english/cpp/system/setter_or_wrap/_index.md @@ -4,7 +4,7 @@ linktitle: setter_or_wrap second_title: Aspose.PDF for C++ API Reference description: 'How to use setter_or_wrap method of class in C++.' type: docs -weight: 35900 +weight: 36500 url: /cpp/system/setter_or_wrap/ --- ## System::setter_or_wrap(HostT *const, PropT(HostGetT::*)(), void(HostSetT::*)(const PropT\&), PropValT) method diff --git a/english/cpp/system/setter_post_decrement_wrap/_index.md b/english/cpp/system/setter_post_decrement_wrap/_index.md index 0805b92080..1492ecb0e1 100644 --- a/english/cpp/system/setter_post_decrement_wrap/_index.md +++ b/english/cpp/system/setter_post_decrement_wrap/_index.md @@ -4,7 +4,7 @@ linktitle: setter_post_decrement_wrap second_title: Aspose.PDF for C++ API Reference description: 'System::setter_post_decrement_wrap method. Translator translates C#''s post-decrement expressions targeting instance''s property that has setter and getter defined, into invocation of this function (overload for const getter) in C++.' type: docs -weight: 36300 +weight: 36900 url: /cpp/system/setter_post_decrement_wrap/ --- ## System::setter_post_decrement_wrap(Host *const, T(HostConstGet::*)() const, void(HostSet::*)(T)) method diff --git a/english/cpp/system/setter_post_increment_wrap/_index.md b/english/cpp/system/setter_post_increment_wrap/_index.md index 793a58986f..3760cb649d 100644 --- a/english/cpp/system/setter_post_increment_wrap/_index.md +++ b/english/cpp/system/setter_post_increment_wrap/_index.md @@ -4,7 +4,7 @@ linktitle: setter_post_increment_wrap second_title: Aspose.PDF for C++ API Reference description: 'System::setter_post_increment_wrap method. Translator translates C#''s post-increment expressions targeting instance''s property that has setter and getter defined, into invocation of this function (overload for const getter) in C++.' type: docs -weight: 36600 +weight: 37200 url: /cpp/system/setter_post_increment_wrap/ --- ## System::setter_post_increment_wrap(Host *const, T(HostConstGet::*)() const, void(HostSet::*)(T)) method diff --git a/english/cpp/system/setter_shl_wrap/_index.md b/english/cpp/system/setter_shl_wrap/_index.md index 5bbdf47d95..c36f86e6cf 100644 --- a/english/cpp/system/setter_shl_wrap/_index.md +++ b/english/cpp/system/setter_shl_wrap/_index.md @@ -4,7 +4,7 @@ linktitle: setter_shl_wrap second_title: Aspose.PDF for C++ API Reference description: 'How to use setter_shl_wrap method of class in C++.' type: docs -weight: 36900 +weight: 37500 url: /cpp/system/setter_shl_wrap/ --- ## System::setter_shl_wrap(HostT *const, PropT(HostGetT::*)(), void(HostSetT::*)(const PropT\&), PropValT) method diff --git a/english/cpp/system/setter_shr_wrap/_index.md b/english/cpp/system/setter_shr_wrap/_index.md index 7292fd1a9c..dc497bc842 100644 --- a/english/cpp/system/setter_shr_wrap/_index.md +++ b/english/cpp/system/setter_shr_wrap/_index.md @@ -4,7 +4,7 @@ linktitle: setter_shr_wrap second_title: Aspose.PDF for C++ API Reference description: 'How to use setter_shr_wrap method of class in C++.' type: docs -weight: 37300 +weight: 37900 url: /cpp/system/setter_shr_wrap/ --- ## System::setter_shr_wrap(HostT *const, PropT(HostGetT::*)(), void(HostSetT::*)(const PropT\&), PropValT) method diff --git a/english/cpp/system/setter_sub_wrap/_index.md b/english/cpp/system/setter_sub_wrap/_index.md index 40ffcadb6f..c1a17c6b71 100644 --- a/english/cpp/system/setter_sub_wrap/_index.md +++ b/english/cpp/system/setter_sub_wrap/_index.md @@ -4,7 +4,7 @@ linktitle: setter_sub_wrap second_title: Aspose.PDF for C++ API Reference description: 'How to use setter_sub_wrap method of class in C++.' type: docs -weight: 37700 +weight: 38300 url: /cpp/system/setter_sub_wrap/ --- ## System::setter_sub_wrap(HostT *const, PropT(HostGetT::*)(), void(HostSetT::*)(const PropT\&), PropValT) method diff --git a/english/cpp/system/setter_wrap/_index.md b/english/cpp/system/setter_wrap/_index.md index 3e06f3a70b..6cd107c864 100644 --- a/english/cpp/system/setter_wrap/_index.md +++ b/english/cpp/system/setter_wrap/_index.md @@ -4,7 +4,7 @@ linktitle: setter_wrap second_title: Aspose.PDF for C++ API Reference description: 'System::setter_wrap method. Overload for instance setter functions with type conversion in C++.' type: docs -weight: 38100 +weight: 38700 url: /cpp/system/setter_wrap/ --- ## System::setter_wrap(Host *const, void(HostSet::*)(T2), T) method diff --git a/english/cpp/system/sharedptr/_index.md b/english/cpp/system/sharedptr/_index.md index c8df99b9d5..ef5f06e548 100644 --- a/english/cpp/system/sharedptr/_index.md +++ b/english/cpp/system/sharedptr/_index.md @@ -4,7 +4,7 @@ linktitle: SharedPtr second_title: Aspose.PDF for C++ API Reference description: 'System::SharedPtr typedef. Alias for smart pointer widely used in the library in C++.' type: docs -weight: 12000 +weight: 12200 url: /cpp/system/sharedptr/ --- ## SharedPtr typedef diff --git a/english/cpp/system/smartptr/_index.md b/english/cpp/system/smartptr/_index.md index ecd204e0f6..26eb887d56 100644 --- a/english/cpp/system/smartptr/_index.md +++ b/english/cpp/system/smartptr/_index.md @@ -4,7 +4,7 @@ linktitle: SmartPtr second_title: Aspose.PDF for C++ API Reference description: 'System::SmartPtr class. Pointer class to wrap types being allocated on heap. Use it to manage memory for classes inheriting Object. This pointer type follows intrusive pointer semantics. Reference counter is stored either in Object itself or in counter structure which is tied to Object instance tightly. In any case, all SmartPtr instances form single ownership group regardless how they were created which is unlike how std::shared_ptr class behaves. Converting raw pointer to SmartPtr is safe given there are other SmartPtr instances holding shared references to the same object. SmartPtr class instance can be in one of two states: shared pointer and weak pointer. To keep object alive, one should have count of shared references to it positive. Both weak and shared pointers can be used to access pointed object (to call methods, read or write fields, etc.), but weak pointers do not participate to shared pointer reference counting. Object is being deleted when the last ''shared'' SmartPtr pointer to it is being destroyed. So, make sure that this doesn''t happen when no other shared SmartPtr pointers to object exist, e. g. during object construction or destruction. Use System::Object::ThisProtector sentry objects (in C++ code) or CppCTORSelfReference or CppSelfReference attribute (in C# code being translated) to fix this issue. Similarily, make sure to break loop references by using System::WeakPtr pointer class or System::SmartPtrMode::Weak pointer mode (in C++ code) or CppWeakPtr attribute (in C# code being translated). If two or more objects reference each other using ''shared'' pointers, they will never be deleted. If pointer type (weak or shared) should be switched in runtime, use System::SmartPtr::set_Mode() method or System::DynamicWeakPtr class. SmartPtr class doesn''t contain any virtual methods. You should only inherit it if you''re creating a memory management strategy of your own. This type is a pointer to manage other object''s deletion. It should be allocated on stack and passed to functions either by value or by const reference in C++.' type: docs -weight: 5200 +weight: 5400 url: /cpp/system/smartptr/ --- ## SmartPtr class diff --git a/english/cpp/system/smartptrinfo/_index.md b/english/cpp/system/smartptrinfo/_index.md index 3f070fd261..b8ec69ef84 100644 --- a/english/cpp/system/smartptrinfo/_index.md +++ b/english/cpp/system/smartptrinfo/_index.md @@ -4,7 +4,7 @@ linktitle: SmartPtrInfo second_title: Aspose.PDF for C++ API Reference description: 'System::SmartPtrInfo class. Service class to test and alter SmartPtr''s contents without knowing final type. Used for garbage collection and loop references detection, etc. Think of it as of ''pointer to pointer''. We can''t use SmartPtr''s basetype as it doesn''t have any; instead, we use this ''info'' class in C++.' type: docs -weight: 5300 +weight: 5500 url: /cpp/system/smartptrinfo/ --- ## SmartPtrInfo class diff --git a/english/cpp/system/smartptrmode/_index.md b/english/cpp/system/smartptrmode/_index.md index bbef2f196f..90899034f4 100644 --- a/english/cpp/system/smartptrmode/_index.md +++ b/english/cpp/system/smartptrmode/_index.md @@ -4,7 +4,7 @@ linktitle: SmartPtrMode second_title: Aspose.PDF for C++ API Reference description: 'System::SmartPtrMode enum. SmartPtr pointer type: weak or shared. Defines whether pointer is being counted when it is being decided whether to delete object or not in C++.' type: docs -weight: 8000 +weight: 8200 url: /cpp/system/smartptrmode/ --- ## SmartPtrMode enum diff --git a/english/cpp/system/static_pointer_cast/_index.md b/english/cpp/system/static_pointer_cast/_index.md index 5230909af4..b2372be3fa 100644 --- a/english/cpp/system/static_pointer_cast/_index.md +++ b/english/cpp/system/static_pointer_cast/_index.md @@ -4,7 +4,7 @@ linktitle: static_pointer_cast second_title: Aspose.PDF for C++ API Reference description: 'System::static_pointer_cast method. Casts smart pointers using static_cast in C++.' type: docs -weight: 38300 +weight: 38900 url: /cpp/system/static_pointer_cast/ --- ## System::static_pointer_cast method diff --git a/english/cpp/system/staticcast/_index.md b/english/cpp/system/staticcast/_index.md index 0c7cc313bf..3215580a18 100644 --- a/english/cpp/system/staticcast/_index.md +++ b/english/cpp/system/staticcast/_index.md @@ -4,7 +4,7 @@ linktitle: StaticCast second_title: Aspose.PDF for C++ API Reference description: 'System::StaticCast method. Performs static cast on non-pointer objects in C++.' type: docs -weight: 38400 +weight: 39000 url: /cpp/system/staticcast/ --- ## System::StaticCast(const TFrom\&) method diff --git a/english/cpp/system/staticcast_noexcept/_index.md b/english/cpp/system/staticcast_noexcept/_index.md index 41c1e6422c..5b6c540007 100644 --- a/english/cpp/system/staticcast_noexcept/_index.md +++ b/english/cpp/system/staticcast_noexcept/_index.md @@ -4,7 +4,7 @@ linktitle: StaticCast_noexcept second_title: Aspose.PDF for C++ API Reference description: 'System::StaticCast_noexcept method. Performs static cast on Exception objects in C++.' type: docs -weight: 39300 +weight: 39900 url: /cpp/system/staticcast_noexcept/ --- ## System::StaticCast_noexcept(const TFrom\&) method diff --git a/english/cpp/system/staticcastarray/_index.md b/english/cpp/system/staticcastarray/_index.md index e54d87358b..c69bfe8bf6 100644 --- a/english/cpp/system/staticcastarray/_index.md +++ b/english/cpp/system/staticcastarray/_index.md @@ -4,7 +4,7 @@ linktitle: StaticCastArray second_title: Aspose.PDF for C++ API Reference description: 'System::StaticCastArray method. Performs casting of elements of the specified array to different type. Override for cases then From is SmartPtr obj in C++.' type: docs -weight: 39700 +weight: 40300 url: /cpp/system/staticcastarray/ --- ## System::StaticCastArray(const System::SharedPtr\\>\&) method diff --git a/english/cpp/system/streamptr/_index.md b/english/cpp/system/streamptr/_index.md index dbc741fc47..bd345e26ff 100644 --- a/english/cpp/system/streamptr/_index.md +++ b/english/cpp/system/streamptr/_index.md @@ -4,7 +4,7 @@ linktitle: StreamPtr second_title: Aspose.PDF for C++ API Reference description: 'System::StreamPtr typedef. An alias for a smart pointer that points to an instance of System::IO::Stream class in C++.' type: docs -weight: 12100 +weight: 12300 url: /cpp/system/streamptr/ --- ## StreamPtr typedef diff --git a/english/cpp/system/streamreaderptr/_index.md b/english/cpp/system/streamreaderptr/_index.md index e70961247a..d51f527e54 100644 --- a/english/cpp/system/streamreaderptr/_index.md +++ b/english/cpp/system/streamreaderptr/_index.md @@ -4,7 +4,7 @@ linktitle: StreamReaderPtr second_title: Aspose.PDF for C++ API Reference description: 'System::StreamReaderPtr typedef. An alias for a smart pointer that points to an instance of System::IO::StreamReader class in C++.' type: docs -weight: 12200 +weight: 12400 url: /cpp/system/streamreaderptr/ --- ## StreamReaderPtr typedef diff --git a/english/cpp/system/streamwriterptr/_index.md b/english/cpp/system/streamwriterptr/_index.md index 14781326ee..082edb0885 100644 --- a/english/cpp/system/streamwriterptr/_index.md +++ b/english/cpp/system/streamwriterptr/_index.md @@ -4,7 +4,7 @@ linktitle: StreamWriterPtr second_title: Aspose.PDF for C++ API Reference description: 'System::StreamWriterPtr typedef. An alias for a smart pointer that points to an instance of System::IO::StreamWriter class in C++.' type: docs -weight: 12300 +weight: 12500 url: /cpp/system/streamwriterptr/ --- ## StreamWriterPtr typedef diff --git a/english/cpp/system/string/_index.md b/english/cpp/system/string/_index.md index 0faec0009b..dd8bec8960 100644 --- a/english/cpp/system/string/_index.md +++ b/english/cpp/system/string/_index.md @@ -4,7 +4,7 @@ linktitle: String second_title: Aspose.PDF for C++ API Reference description: 'System::String class. String class used across the library. Is a substitute for C# System.String when translating code. For optimization reasons, isn''t considered an Object subclass. This type should be allocated on stack and passed to functions by value or by reference. Never use System::SmartPtr class to manage objects of this type in C++.' type: docs -weight: 5400 +weight: 5600 url: /cpp/system/string/ --- ## String class diff --git a/english/cpp/system/stringcomparer/_index.md b/english/cpp/system/stringcomparer/_index.md index b198bff78d..9303c78053 100644 --- a/english/cpp/system/stringcomparer/_index.md +++ b/english/cpp/system/stringcomparer/_index.md @@ -4,7 +4,7 @@ linktitle: StringComparer second_title: Aspose.PDF for C++ API Reference description: 'System::StringComparer class. Compares strings using different comparison modes. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument in C++.' type: docs -weight: 5500 +weight: 5700 url: /cpp/system/stringcomparer/ --- ## StringComparer class diff --git a/english/cpp/system/stringcomparerptr/_index.md b/english/cpp/system/stringcomparerptr/_index.md index 5001e014d9..6adf926582 100644 --- a/english/cpp/system/stringcomparerptr/_index.md +++ b/english/cpp/system/stringcomparerptr/_index.md @@ -4,7 +4,7 @@ linktitle: StringComparerPtr second_title: Aspose.PDF for C++ API Reference description: 'System::StringComparerPtr typedef. An alias for a shared pointer to an instance of StringComparer class in C++.' type: docs -weight: 12400 +weight: 12600 url: /cpp/system/stringcomparerptr/ --- ## StringComparerPtr typedef diff --git a/english/cpp/system/stringcomparison/_index.md b/english/cpp/system/stringcomparison/_index.md index 17356465f8..c35df1eb57 100644 --- a/english/cpp/system/stringcomparison/_index.md +++ b/english/cpp/system/stringcomparison/_index.md @@ -4,7 +4,7 @@ linktitle: StringComparison second_title: Aspose.PDF for C++ API Reference description: 'System::StringComparison enum. Defines string comparison style in C++.' type: docs -weight: 8100 +weight: 8300 url: /cpp/system/stringcomparison/ --- ## StringComparison enum diff --git a/english/cpp/system/stringhashcompiletime/_index.md b/english/cpp/system/stringhashcompiletime/_index.md index 3bb040ed06..c213ae0e7a 100644 --- a/english/cpp/system/stringhashcompiletime/_index.md +++ b/english/cpp/system/stringhashcompiletime/_index.md @@ -4,7 +4,7 @@ linktitle: StringHashCompiletime second_title: Aspose.PDF for C++ API Reference description: 'System::StringHashCompiletime class. A helper class that generates a hash value from a c-string in C++.' type: docs -weight: 5600 +weight: 5800 url: /cpp/system/stringhashcompiletime/ --- ## StringHashCompiletime class diff --git a/english/cpp/system/stringsplitoptions/_index.md b/english/cpp/system/stringsplitoptions/_index.md index 0a54520814..3d20ff0a21 100644 --- a/english/cpp/system/stringsplitoptions/_index.md +++ b/english/cpp/system/stringsplitoptions/_index.md @@ -4,7 +4,7 @@ linktitle: StringSplitOptions second_title: Aspose.PDF for C++ API Reference description: 'System::StringSplitOptions enum. Determines string splitting behavior in C++.' type: docs -weight: 8200 +weight: 8400 url: /cpp/system/stringsplitoptions/ --- ## StringSplitOptions enum diff --git a/english/cpp/system/timespan/_index.md b/english/cpp/system/timespan/_index.md index 4a3b307952..258c07c144 100644 --- a/english/cpp/system/timespan/_index.md +++ b/english/cpp/system/timespan/_index.md @@ -4,7 +4,7 @@ linktitle: TimeSpan second_title: Aspose.PDF for C++ API Reference description: 'System::TimeSpan class. Represents a time interval. This type should be allocated on stack and passed to functions by value or by reference. Never use System::SmartPtr class to manage objects of this type in C++.' type: docs -weight: 5700 +weight: 5900 url: /cpp/system/timespan/ --- ## TimeSpan class diff --git a/english/cpp/system/timezone/_index.md b/english/cpp/system/timezone/_index.md index 9e8b027068..97fe0fc68c 100644 --- a/english/cpp/system/timezone/_index.md +++ b/english/cpp/system/timezone/_index.md @@ -4,7 +4,7 @@ linktitle: TimeZone second_title: Aspose.PDF for C++ API Reference description: 'System::TimeZone class. Represents a time zone. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument in C++.' type: docs -weight: 5800 +weight: 6000 url: /cpp/system/timezone/ --- ## TimeZone class diff --git a/english/cpp/system/timezoneinfo/_index.md b/english/cpp/system/timezoneinfo/_index.md index 705bbbebf8..437c095cb6 100644 --- a/english/cpp/system/timezoneinfo/_index.md +++ b/english/cpp/system/timezoneinfo/_index.md @@ -4,7 +4,7 @@ linktitle: TimeZoneInfo second_title: Aspose.PDF for C++ API Reference description: 'System::TimeZoneInfo class. Represents an information destribing a particular time zone. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument in C++.' type: docs -weight: 5900 +weight: 6100 url: /cpp/system/timezoneinfo/ --- ## TimeZoneInfo class diff --git a/english/cpp/system/timezoneinfoptr/_index.md b/english/cpp/system/timezoneinfoptr/_index.md index c0ed8e83d9..c5d5f6a410 100644 --- a/english/cpp/system/timezoneinfoptr/_index.md +++ b/english/cpp/system/timezoneinfoptr/_index.md @@ -4,7 +4,7 @@ linktitle: TimeZoneInfoPtr second_title: Aspose.PDF for C++ API Reference description: 'System::TimeZoneInfoPtr typedef. Alias for shared pointer to an instance of TimeZoneInfo class in C++.' type: docs -weight: 12500 +weight: 12700 url: /cpp/system/timezoneinfoptr/ --- ## TimeZoneInfoPtr typedef diff --git a/english/cpp/system/timezoneptr/_index.md b/english/cpp/system/timezoneptr/_index.md index 913d278a46..31c800c6b8 100644 --- a/english/cpp/system/timezoneptr/_index.md +++ b/english/cpp/system/timezoneptr/_index.md @@ -4,7 +4,7 @@ linktitle: TimeZonePtr second_title: Aspose.PDF for C++ API Reference description: 'System::TimeZonePtr typedef. Shared pointer to an instance of TimeZone class in C++.' type: docs -weight: 12600 +weight: 12800 url: /cpp/system/timezoneptr/ --- ## TimeZonePtr typedef diff --git a/english/cpp/system/tuple/_index.md b/english/cpp/system/tuple/_index.md index cfe57842a8..45563fed88 100644 --- a/english/cpp/system/tuple/_index.md +++ b/english/cpp/system/tuple/_index.md @@ -4,7 +4,7 @@ linktitle: Tuple second_title: Aspose.PDF for C++ API Reference description: 'System::Tuple class. Class that represents a tuple data structure. Maximum number of items is 8 in C++.' type: docs -weight: 6000 +weight: 6200 url: /cpp/system/tuple/ --- ## Tuple class diff --git a/english/cpp/system/tuplefactory/_index.md b/english/cpp/system/tuplefactory/_index.md index 25d333af90..3805143a79 100644 --- a/english/cpp/system/tuplefactory/_index.md +++ b/english/cpp/system/tuplefactory/_index.md @@ -4,7 +4,7 @@ linktitle: TupleFactory second_title: Aspose.PDF for C++ API Reference description: 'System::TupleFactory class. Provides static methods for creating tuple objects in C++.' type: docs -weight: 6100 +weight: 6300 url: /cpp/system/tuplefactory/ --- ## TupleFactory class diff --git a/english/cpp/system/typecode/_index.md b/english/cpp/system/typecode/_index.md index 2ad130fc0d..cfb0e2b024 100644 --- a/english/cpp/system/typecode/_index.md +++ b/english/cpp/system/typecode/_index.md @@ -4,7 +4,7 @@ linktitle: TypeCode second_title: Aspose.PDF for C++ API Reference description: 'System::TypeCode enum. Represents the type of an object in C++.' type: docs -weight: 8300 +weight: 8500 url: /cpp/system/typecode/ --- ## TypeCode enum diff --git a/english/cpp/system/typeinfo/_index.md b/english/cpp/system/typeinfo/_index.md index e6b30103c4..dda76f84a0 100644 --- a/english/cpp/system/typeinfo/_index.md +++ b/english/cpp/system/typeinfo/_index.md @@ -4,7 +4,7 @@ linktitle: TypeInfo second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo class. Represents a particular type and provides information about it in C++.' type: docs -weight: 6200 +weight: 6400 url: /cpp/system/typeinfo/ --- ## TypeInfo class @@ -27,6 +27,7 @@ class TypeInfo | [AddDefaultConstructor](./adddefaultconstructor/)(DefaultConstructor) | Sets default constructor by the functor that creates class instanse. | | [AddMember](./addmember/)(const SharedPtr\\&) | Adds the specified member to the list of type's members. | | static [BoxedValueType](./boxedvaluetype/)() | Provides unique [TypeInfo](./) structure for [BoxedValue](./boxedvalue/) type to be shared by multiple Boxed* classes. | +| [Equals](./equals/)(const TypeInfo\&) const | | | [get_Assembly](./get_assembly/)() const | NOT IMPLEMENTED. Returns a pointer to the assembly in which the type represented by the current object is declared. | | [get_AssemblyQualifiedName](./get_assemblyqualifiedname/)() const | NOT IMPLEMENTED. Returns the fully qualified name including the assembly name of the type represented by the current object. | | [get_BaseType](./get_basetype/)() const | Returns base type descritor. | @@ -53,6 +54,7 @@ class TypeInfo | [GetCustomAttributes](./getcustomattributes/)() const | Returns an array containing objects that represent all custom attributes applied to the type. | | [GetCustomAttributes](./getcustomattributes/)(const TypeInfo\&, bool) const | Returns an array containing objects that represent specific attributes applied to the type. | | [GetElementType](./getelementtype/)() const | NOT IMPLEMENTED. | +| [GetField](./getfield/)(const System::String\&, System::Reflection::BindingFlags) const | Searches for the specified field, using the specified binding constraints. | | [GetFields](./getfields/)(System::Reflection::BindingFlags) const | Searches for the fields defined for the current Type, using the specified binding constraints. | | [GetGenericArguments](./getgenericarguments/)() const | Gets an array of the generic type arguments for this type. | | [GetHashCode](./gethashcode/)() const | Returns a hash code associated with this instance. | @@ -64,6 +66,7 @@ class TypeInfo | [GetTemplParamType](./gettemplparamtype/)() const | Gets template parameter type descritor. | | [Hash](./hash/)() const | Returns a hash value associated with the type represented by the current object. | | [IsAssignableFrom](./isassignablefrom/)(const TypeInfo\&) const | Determines whether an instance of a specified type can be assigned to a variable of the current type. | +| [IsDefined](./isdefined/)(const TypeInfo\&, bool) const | NOT IMPLEMENTED. Indicates whether one or more attributes of the specified type or of its derived types is applied to this member. | | [IsInstanceOfType](./isinstanceoftype/)(const SharedPtr\\&) const | Determines whether the specified object is an instance of the current type. | | [IsSubclassOf](./issubclassof/)(const TypeInfo\&) const | Determines whether the type represented by the current object is a subclass of the specified class. | | [operator!=](./operator!=/)(const TypeInfo\&) const | Determines if the current and the specified [TypeInfo](./) objects are not equal. | @@ -86,6 +89,7 @@ class TypeInfo | Field | Description | | --- | --- | +| static [EmptyType](./emptytype/) | Constant representing empty list of [TypeInfo](./). | | static [EmptyTypes](./emptytypes/) | Constant representing empty list of [TypeInfo](./). | ## Typedefs diff --git a/english/cpp/system/typeinfo/boxedvalue/_index.md b/english/cpp/system/typeinfo/boxedvalue/_index.md index c3acc8a103..34ec992cd2 100644 --- a/english/cpp/system/typeinfo/boxedvalue/_index.md +++ b/english/cpp/system/typeinfo/boxedvalue/_index.md @@ -4,7 +4,7 @@ linktitle: BoxedValue second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::BoxedValue struct. TypeInfo structure for BoxedValue class in C++.' type: docs -weight: 5300 +weight: 5700 url: /cpp/system/typeinfo/boxedvalue/ --- ## BoxedValue struct @@ -21,11 +21,6 @@ templateclass BoxedValue : public System::TypeInfoPtr | Method | Description | | --- | --- | | [BoxedValue](./boxedvalue/)() | Fills appropriate type name. | -## Fields - -| Field | Description | -| --- | --- | -| [ptr](../../typeinfoptr/ptr/) | Unique pointer to the [TypeInfo](../) object. | ## See Also * Class [TypeInfo](../) diff --git a/english/cpp/system/typeinfo/defaultconstructor/_index.md b/english/cpp/system/typeinfo/defaultconstructor/_index.md index a35586e4aa..e880a98a7c 100644 --- a/english/cpp/system/typeinfo/defaultconstructor/_index.md +++ b/english/cpp/system/typeinfo/defaultconstructor/_index.md @@ -4,7 +4,7 @@ linktitle: DefaultConstructor second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::DefaultConstructor typedef. Function pointer to construct type in C++.' type: docs -weight: 5200 +weight: 5600 url: /cpp/system/typeinfo/defaultconstructor/ --- ## DefaultConstructor typedef diff --git a/english/cpp/system/typeinfo/emptytype/_index.md b/english/cpp/system/typeinfo/emptytype/_index.md new file mode 100644 index 0000000000..bb9adbfe1f --- /dev/null +++ b/english/cpp/system/typeinfo/emptytype/_index.md @@ -0,0 +1,23 @@ +--- +title: System::TypeInfo::EmptyType field +linktitle: EmptyType +second_title: Aspose.PDF for C++ API Reference +description: 'System::TypeInfo::EmptyType field. Constant representing empty list of TypeInfo in C++.' +type: docs +weight: 5400 +url: /cpp/system/typeinfo/emptytype/ +--- +## EmptyType field + + +Constant representing empty list of [TypeInfo](../). + +```cpp +static TypeInfo System::TypeInfo::EmptyType +``` + +## See Also + +* Class [TypeInfo](../) +* Namespace [System](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system/typeinfo/emptytypes/_index.md b/english/cpp/system/typeinfo/emptytypes/_index.md index 6fe3c4c24f..172af8ae03 100644 --- a/english/cpp/system/typeinfo/emptytypes/_index.md +++ b/english/cpp/system/typeinfo/emptytypes/_index.md @@ -4,7 +4,7 @@ linktitle: EmptyTypes second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::EmptyTypes field. Constant representing empty list of TypeInfo in C++.' type: docs -weight: 5100 +weight: 5500 url: /cpp/system/typeinfo/emptytypes/ --- ## EmptyTypes field diff --git a/english/cpp/system/typeinfo/equals/_index.md b/english/cpp/system/typeinfo/equals/_index.md new file mode 100644 index 0000000000..15564ec77f --- /dev/null +++ b/english/cpp/system/typeinfo/equals/_index.md @@ -0,0 +1,24 @@ +--- +title: System::TypeInfo::Equals method +linktitle: Equals +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Equals method of System::TypeInfo class in C++.' +type: docs +weight: 800 +url: /cpp/system/typeinfo/equals/ +--- +## TypeInfo::Equals method + + + + +```cpp +bool System::TypeInfo::Equals(const TypeInfo &other) const +``` + +## See Also + +* Class [TypeInfo](../) +* Class [TypeInfo](../) +* Namespace [System](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system/typeinfo/get_assembly/_index.md b/english/cpp/system/typeinfo/get_assembly/_index.md index ff9866fa33..6e5315bffe 100644 --- a/english/cpp/system/typeinfo/get_assembly/_index.md +++ b/english/cpp/system/typeinfo/get_assembly/_index.md @@ -4,7 +4,7 @@ linktitle: get_Assembly second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::get_Assembly method. NOT IMPLEMENTED. Returns a pointer to the assembly in which the type represented by the current object is declared in C++.' type: docs -weight: 800 +weight: 900 url: /cpp/system/typeinfo/get_assembly/ --- ## TypeInfo::get_Assembly method diff --git a/english/cpp/system/typeinfo/get_assemblyqualifiedname/_index.md b/english/cpp/system/typeinfo/get_assemblyqualifiedname/_index.md index 9684b84e6e..7495a39724 100644 --- a/english/cpp/system/typeinfo/get_assemblyqualifiedname/_index.md +++ b/english/cpp/system/typeinfo/get_assemblyqualifiedname/_index.md @@ -4,7 +4,7 @@ linktitle: get_AssemblyQualifiedName second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::get_AssemblyQualifiedName method. NOT IMPLEMENTED. Returns the fully qualified name including the assembly name of the type represented by the current object in C++.' type: docs -weight: 900 +weight: 1000 url: /cpp/system/typeinfo/get_assemblyqualifiedname/ --- ## TypeInfo::get_AssemblyQualifiedName method diff --git a/english/cpp/system/typeinfo/get_basetype/_index.md b/english/cpp/system/typeinfo/get_basetype/_index.md index b857690b3c..1ea3f6c8d7 100644 --- a/english/cpp/system/typeinfo/get_basetype/_index.md +++ b/english/cpp/system/typeinfo/get_basetype/_index.md @@ -4,7 +4,7 @@ linktitle: get_BaseType second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::get_BaseType method. Returns base type descritor in C++.' type: docs -weight: 1000 +weight: 1100 url: /cpp/system/typeinfo/get_basetype/ --- ## TypeInfo::get_BaseType method diff --git a/english/cpp/system/typeinfo/get_containsgenericparameters/_index.md b/english/cpp/system/typeinfo/get_containsgenericparameters/_index.md index 1b305b4dbd..6ec6b76292 100644 --- a/english/cpp/system/typeinfo/get_containsgenericparameters/_index.md +++ b/english/cpp/system/typeinfo/get_containsgenericparameters/_index.md @@ -4,7 +4,7 @@ linktitle: get_ContainsGenericParameters second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::get_ContainsGenericParameters method. Gets a value indicating whether the current Type object has type parameters that have not been replaced by specific types in C++.' type: docs -weight: 1100 +weight: 1200 url: /cpp/system/typeinfo/get_containsgenericparameters/ --- ## TypeInfo::get_ContainsGenericParameters method diff --git a/english/cpp/system/typeinfo/get_declaredmember/_index.md b/english/cpp/system/typeinfo/get_declaredmember/_index.md index d769a8a3bf..9428b9fbef 100644 --- a/english/cpp/system/typeinfo/get_declaredmember/_index.md +++ b/english/cpp/system/typeinfo/get_declaredmember/_index.md @@ -4,7 +4,7 @@ linktitle: get_DeclaredMember second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::get_DeclaredMember method. Gets list of the members with specified name in C++.' type: docs -weight: 1200 +weight: 1300 url: /cpp/system/typeinfo/get_declaredmember/ --- ## TypeInfo::get_DeclaredMember method diff --git a/english/cpp/system/typeinfo/get_fullname/_index.md b/english/cpp/system/typeinfo/get_fullname/_index.md index 3adcbcea87..4cd367de9c 100644 --- a/english/cpp/system/typeinfo/get_fullname/_index.md +++ b/english/cpp/system/typeinfo/get_fullname/_index.md @@ -4,7 +4,7 @@ linktitle: get_FullName second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::get_FullName method. Returns the fully qualified name (but without the assembly name) of the type represented by the current object in C++.' type: docs -weight: 1300 +weight: 1400 url: /cpp/system/typeinfo/get_fullname/ --- ## TypeInfo::get_FullName method diff --git a/english/cpp/system/typeinfo/get_generictypearguments/_index.md b/english/cpp/system/typeinfo/get_generictypearguments/_index.md index 3727501f49..ec52310d7f 100644 --- a/english/cpp/system/typeinfo/get_generictypearguments/_index.md +++ b/english/cpp/system/typeinfo/get_generictypearguments/_index.md @@ -4,7 +4,7 @@ linktitle: get_GenericTypeArguments second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::get_GenericTypeArguments method. Gets an array of the generic type arguments for this type in C++.' type: docs -weight: 1400 +weight: 1500 url: /cpp/system/typeinfo/get_generictypearguments/ --- ## TypeInfo::get_GenericTypeArguments method diff --git a/english/cpp/system/typeinfo/get_isabstract/_index.md b/english/cpp/system/typeinfo/get_isabstract/_index.md index abc2032c40..bb7b684fba 100644 --- a/english/cpp/system/typeinfo/get_isabstract/_index.md +++ b/english/cpp/system/typeinfo/get_isabstract/_index.md @@ -4,7 +4,7 @@ linktitle: get_IsAbstract second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::get_IsAbstract method. Gets a value indicating whether the Type is abstract and must be overridden in C++.' type: docs -weight: 1500 +weight: 1600 url: /cpp/system/typeinfo/get_isabstract/ --- ## TypeInfo::get_IsAbstract method diff --git a/english/cpp/system/typeinfo/get_isarray/_index.md b/english/cpp/system/typeinfo/get_isarray/_index.md index 5b4b8f4916..19c145de50 100644 --- a/english/cpp/system/typeinfo/get_isarray/_index.md +++ b/english/cpp/system/typeinfo/get_isarray/_index.md @@ -4,7 +4,7 @@ linktitle: get_IsArray second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::get_IsArray method. Gets a value that indicates whether the type is an array in C++.' type: docs -weight: 1600 +weight: 1700 url: /cpp/system/typeinfo/get_isarray/ --- ## TypeInfo::get_IsArray method diff --git a/english/cpp/system/typeinfo/get_isclass/_index.md b/english/cpp/system/typeinfo/get_isclass/_index.md index e6f3a81e88..74a16a3c78 100644 --- a/english/cpp/system/typeinfo/get_isclass/_index.md +++ b/english/cpp/system/typeinfo/get_isclass/_index.md @@ -4,7 +4,7 @@ linktitle: get_IsClass second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::get_IsClass method. Gets a value indicating whether the Type is a class or a delegate; that is, not a value type or interface in C++.' type: docs -weight: 1700 +weight: 1800 url: /cpp/system/typeinfo/get_isclass/ --- ## TypeInfo::get_IsClass method diff --git a/english/cpp/system/typeinfo/get_isenum/_index.md b/english/cpp/system/typeinfo/get_isenum/_index.md index 873f4ac6de..cb43a8ea7b 100644 --- a/english/cpp/system/typeinfo/get_isenum/_index.md +++ b/english/cpp/system/typeinfo/get_isenum/_index.md @@ -4,7 +4,7 @@ linktitle: get_IsEnum second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::get_IsEnum method. Gets a value indicating whether the current Type represents an enumeration in C++.' type: docs -weight: 1800 +weight: 1900 url: /cpp/system/typeinfo/get_isenum/ --- ## TypeInfo::get_IsEnum method diff --git a/english/cpp/system/typeinfo/get_isgenerictype/_index.md b/english/cpp/system/typeinfo/get_isgenerictype/_index.md index faf0029009..0f3e710f85 100644 --- a/english/cpp/system/typeinfo/get_isgenerictype/_index.md +++ b/english/cpp/system/typeinfo/get_isgenerictype/_index.md @@ -4,7 +4,7 @@ linktitle: get_IsGenericType second_title: Aspose.PDF for C++ API Reference description: 'How to use get_IsGenericType method of System::TypeInfo class in C++.' type: docs -weight: 1900 +weight: 2000 url: /cpp/system/typeinfo/get_isgenerictype/ --- ## TypeInfo::get_IsGenericType method diff --git a/english/cpp/system/typeinfo/get_isgenerictypedefinition/_index.md b/english/cpp/system/typeinfo/get_isgenerictypedefinition/_index.md index 4792b183f0..98cd7dc1c6 100644 --- a/english/cpp/system/typeinfo/get_isgenerictypedefinition/_index.md +++ b/english/cpp/system/typeinfo/get_isgenerictypedefinition/_index.md @@ -4,7 +4,7 @@ linktitle: get_IsGenericTypeDefinition second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::get_IsGenericTypeDefinition method. Gets a value indicating whether the current Type represents a generic type definition, from which other generic types can be constructed in C++.' type: docs -weight: 2000 +weight: 2100 url: /cpp/system/typeinfo/get_isgenerictypedefinition/ --- ## TypeInfo::get_IsGenericTypeDefinition method diff --git a/english/cpp/system/typeinfo/get_isinterface/_index.md b/english/cpp/system/typeinfo/get_isinterface/_index.md index 9330e82189..786daf8a97 100644 --- a/english/cpp/system/typeinfo/get_isinterface/_index.md +++ b/english/cpp/system/typeinfo/get_isinterface/_index.md @@ -4,7 +4,7 @@ linktitle: get_IsInterface second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::get_IsInterface method. Gets a value indicating whether the Type is an interface; that is, not a class or a value type in C++.' type: docs -weight: 2100 +weight: 2200 url: /cpp/system/typeinfo/get_isinterface/ --- ## TypeInfo::get_IsInterface method diff --git a/english/cpp/system/typeinfo/get_issealed/_index.md b/english/cpp/system/typeinfo/get_issealed/_index.md index 35db45898d..067d52a19f 100644 --- a/english/cpp/system/typeinfo/get_issealed/_index.md +++ b/english/cpp/system/typeinfo/get_issealed/_index.md @@ -4,7 +4,7 @@ linktitle: get_IsSealed second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::get_IsSealed method. Gets a value indicating whether the Type is declared sealed in C++.' type: docs -weight: 2200 +weight: 2300 url: /cpp/system/typeinfo/get_issealed/ --- ## TypeInfo::get_IsSealed method diff --git a/english/cpp/system/typeinfo/get_isvaluetype/_index.md b/english/cpp/system/typeinfo/get_isvaluetype/_index.md index 608fdd6d9e..1d6b5ea956 100644 --- a/english/cpp/system/typeinfo/get_isvaluetype/_index.md +++ b/english/cpp/system/typeinfo/get_isvaluetype/_index.md @@ -4,7 +4,7 @@ linktitle: get_IsValueType second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::get_IsValueType method. Gets a value indicating whether the Type is a value type in C++.' type: docs -weight: 2300 +weight: 2400 url: /cpp/system/typeinfo/get_isvaluetype/ --- ## TypeInfo::get_IsValueType method diff --git a/english/cpp/system/typeinfo/get_isvisible/_index.md b/english/cpp/system/typeinfo/get_isvisible/_index.md index 5db0306657..2891bdffcc 100644 --- a/english/cpp/system/typeinfo/get_isvisible/_index.md +++ b/english/cpp/system/typeinfo/get_isvisible/_index.md @@ -4,7 +4,7 @@ linktitle: get_IsVisible second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::get_IsVisible method. Gets a value indicating whether the Type can be accessed by code outside the assembly in C++.' type: docs -weight: 2400 +weight: 2500 url: /cpp/system/typeinfo/get_isvisible/ --- ## TypeInfo::get_IsVisible method diff --git a/english/cpp/system/typeinfo/get_name/_index.md b/english/cpp/system/typeinfo/get_name/_index.md index 5576d99a4b..24a70fcee4 100644 --- a/english/cpp/system/typeinfo/get_name/_index.md +++ b/english/cpp/system/typeinfo/get_name/_index.md @@ -4,7 +4,7 @@ linktitle: get_Name second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::get_Name method. Returns the name of the type represented by the current object in C++.' type: docs -weight: 2500 +weight: 2600 url: /cpp/system/typeinfo/get_name/ --- ## TypeInfo::get_Name method diff --git a/english/cpp/system/typeinfo/get_namespace/_index.md b/english/cpp/system/typeinfo/get_namespace/_index.md index 8165c91660..4475ffe4e2 100644 --- a/english/cpp/system/typeinfo/get_namespace/_index.md +++ b/english/cpp/system/typeinfo/get_namespace/_index.md @@ -4,7 +4,7 @@ linktitle: get_Namespace second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::get_Namespace method. Gets the namespace of the Type in C++.' type: docs -weight: 2600 +weight: 2700 url: /cpp/system/typeinfo/get_namespace/ --- ## TypeInfo::get_Namespace method diff --git a/english/cpp/system/typeinfo/getconstructor/_index.md b/english/cpp/system/typeinfo/getconstructor/_index.md index c59f3fc274..ccbb6cf97a 100644 --- a/english/cpp/system/typeinfo/getconstructor/_index.md +++ b/english/cpp/system/typeinfo/getconstructor/_index.md @@ -4,7 +4,7 @@ linktitle: GetConstructor second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::GetConstructor method. Searches for a public instance constructor whose parameters match the types in the specified array in C++.' type: docs -weight: 2700 +weight: 2800 url: /cpp/system/typeinfo/getconstructor/ --- ## TypeInfo::GetConstructor method diff --git a/english/cpp/system/typeinfo/getconstructors/_index.md b/english/cpp/system/typeinfo/getconstructors/_index.md index 4e301eca86..7162f5eb5f 100644 --- a/english/cpp/system/typeinfo/getconstructors/_index.md +++ b/english/cpp/system/typeinfo/getconstructors/_index.md @@ -4,7 +4,7 @@ linktitle: GetConstructors second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::GetConstructors method. Returns all the public constructors defined for the current Type in C++.' type: docs -weight: 2800 +weight: 2900 url: /cpp/system/typeinfo/getconstructors/ --- ## TypeInfo::GetConstructors() const method diff --git a/english/cpp/system/typeinfo/getcustomattribute/_index.md b/english/cpp/system/typeinfo/getcustomattribute/_index.md index b3a4d2e3bf..a274025429 100644 --- a/english/cpp/system/typeinfo/getcustomattribute/_index.md +++ b/english/cpp/system/typeinfo/getcustomattribute/_index.md @@ -4,7 +4,7 @@ linktitle: GetCustomAttribute second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::GetCustomAttribute method. Searches for the custom attribute applied having the specified type and applied to the type reprsented by the current object in C++.' type: docs -weight: 2900 +weight: 3000 url: /cpp/system/typeinfo/getcustomattribute/ --- ## TypeInfo::GetCustomAttribute method diff --git a/english/cpp/system/typeinfo/getcustomattributes/_index.md b/english/cpp/system/typeinfo/getcustomattributes/_index.md index 3915042132..9382fdd3b6 100644 --- a/english/cpp/system/typeinfo/getcustomattributes/_index.md +++ b/english/cpp/system/typeinfo/getcustomattributes/_index.md @@ -4,7 +4,7 @@ linktitle: GetCustomAttributes second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::GetCustomAttributes method. Returns an array containing objects that represent all custom attributes applied to the type in C++.' type: docs -weight: 3000 +weight: 3100 url: /cpp/system/typeinfo/getcustomattributes/ --- ## TypeInfo::GetCustomAttributes() const method diff --git a/english/cpp/system/typeinfo/getelementtype/_index.md b/english/cpp/system/typeinfo/getelementtype/_index.md index 05e4a87b65..04240251a8 100644 --- a/english/cpp/system/typeinfo/getelementtype/_index.md +++ b/english/cpp/system/typeinfo/getelementtype/_index.md @@ -4,7 +4,7 @@ linktitle: GetElementType second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::GetElementType method. NOT IMPLEMENTED in C++.' type: docs -weight: 3100 +weight: 3200 url: /cpp/system/typeinfo/getelementtype/ --- ## TypeInfo::GetElementType method diff --git a/english/cpp/system/typeinfo/getfield/_index.md b/english/cpp/system/typeinfo/getfield/_index.md new file mode 100644 index 0000000000..09d2722588 --- /dev/null +++ b/english/cpp/system/typeinfo/getfield/_index.md @@ -0,0 +1,27 @@ +--- +title: System::TypeInfo::GetField method +linktitle: GetField +second_title: Aspose.PDF for C++ API Reference +description: 'System::TypeInfo::GetField method. Searches for the specified field, using the specified binding constraints in C++.' +type: docs +weight: 3300 +url: /cpp/system/typeinfo/getfield/ +--- +## TypeInfo::GetField method + + +Searches for the specified field, using the specified binding constraints. + +```cpp +SharedPtr System::TypeInfo::GetField(const System::String &name, System::Reflection::BindingFlags bindingAttr) const +``` + +## See Also + +* Typedef [SharedPtr](../../sharedptr/) +* Class [FieldInfo](../../../system.reflection/fieldinfo/) +* Class [String](../../string/) +* Enum [BindingFlags](../../../system.reflection/bindingflags/) +* Class [TypeInfo](../) +* Namespace [System](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system/typeinfo/getfields/_index.md b/english/cpp/system/typeinfo/getfields/_index.md index 0a72d16612..d3fb22e1de 100644 --- a/english/cpp/system/typeinfo/getfields/_index.md +++ b/english/cpp/system/typeinfo/getfields/_index.md @@ -4,7 +4,7 @@ linktitle: GetFields second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::GetFields method. Searches for the fields defined for the current Type, using the specified binding constraints in C++.' type: docs -weight: 3200 +weight: 3400 url: /cpp/system/typeinfo/getfields/ --- ## TypeInfo::GetFields method diff --git a/english/cpp/system/typeinfo/getgenericarguments/_index.md b/english/cpp/system/typeinfo/getgenericarguments/_index.md index 5264b412c3..f2885e4479 100644 --- a/english/cpp/system/typeinfo/getgenericarguments/_index.md +++ b/english/cpp/system/typeinfo/getgenericarguments/_index.md @@ -4,7 +4,7 @@ linktitle: GetGenericArguments second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::GetGenericArguments method. Gets an array of the generic type arguments for this type in C++.' type: docs -weight: 3300 +weight: 3500 url: /cpp/system/typeinfo/getgenericarguments/ --- ## TypeInfo::GetGenericArguments method diff --git a/english/cpp/system/typeinfo/gethashcode/_index.md b/english/cpp/system/typeinfo/gethashcode/_index.md index 74885c3f8c..38c068488f 100644 --- a/english/cpp/system/typeinfo/gethashcode/_index.md +++ b/english/cpp/system/typeinfo/gethashcode/_index.md @@ -4,7 +4,7 @@ linktitle: GetHashCode second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::GetHashCode method. Returns a hash code associated with this instance in C++.' type: docs -weight: 3400 +weight: 3600 url: /cpp/system/typeinfo/gethashcode/ --- ## TypeInfo::GetHashCode method diff --git a/english/cpp/system/typeinfo/getinterfaces/_index.md b/english/cpp/system/typeinfo/getinterfaces/_index.md index efb9dc0ef6..3d16029121 100644 --- a/english/cpp/system/typeinfo/getinterfaces/_index.md +++ b/english/cpp/system/typeinfo/getinterfaces/_index.md @@ -4,7 +4,7 @@ linktitle: GetInterfaces second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::GetInterfaces method. Gets all the interfaces implemented or inherited by the current Type in C++.' type: docs -weight: 3500 +weight: 3700 url: /cpp/system/typeinfo/getinterfaces/ --- ## TypeInfo::GetInterfaces method diff --git a/english/cpp/system/typeinfo/getmember/_index.md b/english/cpp/system/typeinfo/getmember/_index.md index 0b77ba5517..f8318a5703 100644 --- a/english/cpp/system/typeinfo/getmember/_index.md +++ b/english/cpp/system/typeinfo/getmember/_index.md @@ -4,7 +4,7 @@ linktitle: GetMember second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::GetMember method. Gets list of the members with specified name in C++.' type: docs -weight: 3600 +weight: 3800 url: /cpp/system/typeinfo/getmember/ --- ## TypeInfo::GetMember method diff --git a/english/cpp/system/typeinfo/getmethod/_index.md b/english/cpp/system/typeinfo/getmethod/_index.md index 59baed3575..e517c137bb 100644 --- a/english/cpp/system/typeinfo/getmethod/_index.md +++ b/english/cpp/system/typeinfo/getmethod/_index.md @@ -4,7 +4,7 @@ linktitle: GetMethod second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::GetMethod method. Gets method with specified name in C++.' type: docs -weight: 3700 +weight: 3900 url: /cpp/system/typeinfo/getmethod/ --- ## TypeInfo::GetMethod method diff --git a/english/cpp/system/typeinfo/getproperties/_index.md b/english/cpp/system/typeinfo/getproperties/_index.md index 3229dcad9a..95bcea2876 100644 --- a/english/cpp/system/typeinfo/getproperties/_index.md +++ b/english/cpp/system/typeinfo/getproperties/_index.md @@ -4,7 +4,7 @@ linktitle: GetProperties second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::GetProperties method. Returns all the public properties of the current Type in C++.' type: docs -weight: 3800 +weight: 4000 url: /cpp/system/typeinfo/getproperties/ --- ## TypeInfo::GetProperties() const method diff --git a/english/cpp/system/typeinfo/gettemplparamtype/_index.md b/english/cpp/system/typeinfo/gettemplparamtype/_index.md index 01814bb03c..f0c62f84cc 100644 --- a/english/cpp/system/typeinfo/gettemplparamtype/_index.md +++ b/english/cpp/system/typeinfo/gettemplparamtype/_index.md @@ -4,7 +4,7 @@ linktitle: GetTemplParamType second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::GetTemplParamType method. Gets template parameter type descritor in C++.' type: docs -weight: 3900 +weight: 4100 url: /cpp/system/typeinfo/gettemplparamtype/ --- ## TypeInfo::GetTemplParamType method diff --git a/english/cpp/system/typeinfo/hash/_index.md b/english/cpp/system/typeinfo/hash/_index.md index 9ef9f44c2a..b6c0a69eb7 100644 --- a/english/cpp/system/typeinfo/hash/_index.md +++ b/english/cpp/system/typeinfo/hash/_index.md @@ -4,7 +4,7 @@ linktitle: Hash second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::Hash method. Returns a hash value associated with the type represented by the current object in C++.' type: docs -weight: 4000 +weight: 4200 url: /cpp/system/typeinfo/hash/ --- ## TypeInfo::Hash method diff --git a/english/cpp/system/typeinfo/isassignablefrom/_index.md b/english/cpp/system/typeinfo/isassignablefrom/_index.md index c6bfaf4032..9e21d3c9b7 100644 --- a/english/cpp/system/typeinfo/isassignablefrom/_index.md +++ b/english/cpp/system/typeinfo/isassignablefrom/_index.md @@ -4,7 +4,7 @@ linktitle: IsAssignableFrom second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::IsAssignableFrom method. Determines whether an instance of a specified type can be assigned to a variable of the current type in C++.' type: docs -weight: 4100 +weight: 4300 url: /cpp/system/typeinfo/isassignablefrom/ --- ## TypeInfo::IsAssignableFrom method diff --git a/english/cpp/system/typeinfo/isdefined/_index.md b/english/cpp/system/typeinfo/isdefined/_index.md new file mode 100644 index 0000000000..2637340a83 --- /dev/null +++ b/english/cpp/system/typeinfo/isdefined/_index.md @@ -0,0 +1,34 @@ +--- +title: System::TypeInfo::IsDefined method +linktitle: IsDefined +second_title: Aspose.PDF for C++ API Reference +description: 'System::TypeInfo::IsDefined method. NOT IMPLEMENTED. Indicates whether one or more attributes of the specified type or of its derived types is applied to this member in C++.' +type: docs +weight: 4400 +url: /cpp/system/typeinfo/isdefined/ +--- +## TypeInfo::IsDefined method + + +NOT IMPLEMENTED. Indicates whether one or more attributes of the specified type or of its derived types is applied to this member. + +```cpp +bool System::TypeInfo::IsDefined(const TypeInfo &attributeType, bool inherit) const +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| attributeType | const TypeInfo\& | The type of custom attribute to search for. The search includes derived types. | +| inherit | bool | true to search this member's inheritance chain to find the attributes; otherwise, false. This parameter is ignored for properties and events. | + +### ReturnValue + +true if one or more instances of attributeType or any of its derived types is applied to this member; otherwise, false. + +## See Also + +* Class [TypeInfo](../) +* Class [TypeInfo](../) +* Namespace [System](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system/typeinfo/isinstanceoftype/_index.md b/english/cpp/system/typeinfo/isinstanceoftype/_index.md index ac5fbcaa40..9890df16c8 100644 --- a/english/cpp/system/typeinfo/isinstanceoftype/_index.md +++ b/english/cpp/system/typeinfo/isinstanceoftype/_index.md @@ -4,7 +4,7 @@ linktitle: IsInstanceOfType second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::IsInstanceOfType method. Determines whether the specified object is an instance of the current type in C++.' type: docs -weight: 4200 +weight: 4500 url: /cpp/system/typeinfo/isinstanceoftype/ --- ## TypeInfo::IsInstanceOfType method diff --git a/english/cpp/system/typeinfo/issubclassof/_index.md b/english/cpp/system/typeinfo/issubclassof/_index.md index 15e63d66a8..18c7c2c721 100644 --- a/english/cpp/system/typeinfo/issubclassof/_index.md +++ b/english/cpp/system/typeinfo/issubclassof/_index.md @@ -4,7 +4,7 @@ linktitle: IsSubclassOf second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::IsSubclassOf method. Determines whether the type represented by the current object is a subclass of the specified class in C++.' type: docs -weight: 4300 +weight: 4600 url: /cpp/system/typeinfo/issubclassof/ --- ## TypeInfo::IsSubclassOf method diff --git a/english/cpp/system/typeinfo/operator!=/_index.md b/english/cpp/system/typeinfo/operator!=/_index.md index da1d283459..b71218a962 100644 --- a/english/cpp/system/typeinfo/operator!=/_index.md +++ b/english/cpp/system/typeinfo/operator!=/_index.md @@ -4,7 +4,7 @@ linktitle: operator!= second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::operator!= method. Determines if the current and the specified TypeInfo objects are not equal in C++.' type: docs -weight: 4400 +weight: 4700 url: /cpp/system/typeinfo/operator!=/ --- ## TypeInfo::operator!=(const TypeInfo\&) const method diff --git a/english/cpp/system/typeinfo/operator==/_index.md b/english/cpp/system/typeinfo/operator==/_index.md index 9f468fac01..8af9097bf4 100644 --- a/english/cpp/system/typeinfo/operator==/_index.md +++ b/english/cpp/system/typeinfo/operator==/_index.md @@ -4,7 +4,7 @@ linktitle: operator== second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::operator== method. Determines if the current and the specified TypeInfo objects are equal in C++.' type: docs -weight: 4500 +weight: 4800 url: /cpp/system/typeinfo/operator==/ --- ## TypeInfo::operator==(const TypeInfo\&) const method diff --git a/english/cpp/system/typeinfo/reset/_index.md b/english/cpp/system/typeinfo/reset/_index.md index c75a34e182..8772a59b14 100644 --- a/english/cpp/system/typeinfo/reset/_index.md +++ b/english/cpp/system/typeinfo/reset/_index.md @@ -4,7 +4,7 @@ linktitle: reset second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::reset method. Sets TypeInfo to null in C++.' type: docs -weight: 4600 +weight: 4900 url: /cpp/system/typeinfo/reset/ --- ## TypeInfo::reset method diff --git a/english/cpp/system/typeinfo/set_isvaluetype/_index.md b/english/cpp/system/typeinfo/set_isvaluetype/_index.md index 71904397f5..f025d9aaf3 100644 --- a/english/cpp/system/typeinfo/set_isvaluetype/_index.md +++ b/english/cpp/system/typeinfo/set_isvaluetype/_index.md @@ -4,7 +4,7 @@ linktitle: set_IsValueType second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::set_IsValueType method. Sets a value indicating whether the Type is a value type in C++.' type: docs -weight: 4700 +weight: 5000 url: /cpp/system/typeinfo/set_isvaluetype/ --- ## TypeInfo::set_IsValueType method diff --git a/english/cpp/system/typeinfo/setbasetype/_index.md b/english/cpp/system/typeinfo/setbasetype/_index.md index 157a30abc2..d791e701c2 100644 --- a/english/cpp/system/typeinfo/setbasetype/_index.md +++ b/english/cpp/system/typeinfo/setbasetype/_index.md @@ -4,7 +4,7 @@ linktitle: SetBaseType second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::SetBaseType method. Sets base type descritor in C++.' type: docs -weight: 4800 +weight: 5100 url: /cpp/system/typeinfo/setbasetype/ --- ## TypeInfo::SetBaseType method diff --git a/english/cpp/system/typeinfo/settemplparamtype/_index.md b/english/cpp/system/typeinfo/settemplparamtype/_index.md index 640e4b202f..a999197de4 100644 --- a/english/cpp/system/typeinfo/settemplparamtype/_index.md +++ b/english/cpp/system/typeinfo/settemplparamtype/_index.md @@ -4,7 +4,7 @@ linktitle: SetTemplParamType second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::SetTemplParamType method. Sets template parameter type descritor in C++.' type: docs -weight: 4900 +weight: 5200 url: /cpp/system/typeinfo/settemplparamtype/ --- ## TypeInfo::SetTemplParamType method diff --git a/english/cpp/system/typeinfo/tostring/_index.md b/english/cpp/system/typeinfo/tostring/_index.md index 5e4531ed74..9ec65b64bf 100644 --- a/english/cpp/system/typeinfo/tostring/_index.md +++ b/english/cpp/system/typeinfo/tostring/_index.md @@ -4,7 +4,7 @@ linktitle: ToString second_title: Aspose.PDF for C++ API Reference description: 'System::TypeInfo::ToString method. Returns a string containing the name of the type represented by the current object in C++.' type: docs -weight: 5000 +weight: 5300 url: /cpp/system/typeinfo/tostring/ --- ## TypeInfo::ToString method diff --git a/english/cpp/system/uri/_index.md b/english/cpp/system/uri/_index.md index aabfef5ec7..0de60d47eb 100644 --- a/english/cpp/system/uri/_index.md +++ b/english/cpp/system/uri/_index.md @@ -4,7 +4,7 @@ linktitle: Uri second_title: Aspose.PDF for C++ API Reference description: 'System::Uri class. Unified resource identifier. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument in C++.' type: docs -weight: 6300 +weight: 6500 url: /cpp/system/uri/ --- ## Uri class diff --git a/english/cpp/system/uribuilder/_index.md b/english/cpp/system/uribuilder/_index.md index b1bb48b80c..becaf44070 100644 --- a/english/cpp/system/uribuilder/_index.md +++ b/english/cpp/system/uribuilder/_index.md @@ -4,7 +4,7 @@ linktitle: UriBuilder second_title: Aspose.PDF for C++ API Reference description: 'System::UriBuilder class. Provides methods to construct and modify universial resource identifiers (URIs). Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument in C++.' type: docs -weight: 6400 +weight: 6600 url: /cpp/system/uribuilder/ --- ## UriBuilder class diff --git a/english/cpp/system/uricomponents/_index.md b/english/cpp/system/uricomponents/_index.md index bb76c289af..764f95cc7c 100644 --- a/english/cpp/system/uricomponents/_index.md +++ b/english/cpp/system/uricomponents/_index.md @@ -4,7 +4,7 @@ linktitle: UriComponents second_title: Aspose.PDF for C++ API Reference description: 'System::UriComponents enum. Represents URI components in C++.' type: docs -weight: 8400 +weight: 8600 url: /cpp/system/uricomponents/ --- ## UriComponents enum diff --git a/english/cpp/system/uriformat/_index.md b/english/cpp/system/uriformat/_index.md index d95c352757..3eb9962028 100644 --- a/english/cpp/system/uriformat/_index.md +++ b/english/cpp/system/uriformat/_index.md @@ -4,7 +4,7 @@ linktitle: UriFormat second_title: Aspose.PDF for C++ API Reference description: 'System::UriFormat enum. Specifies how the URI is escaped in C++.' type: docs -weight: 8500 +weight: 8700 url: /cpp/system/uriformat/ --- ## UriFormat enum diff --git a/english/cpp/system/urihostnametype/_index.md b/english/cpp/system/urihostnametype/_index.md index 91ec892d76..2c9e0422bd 100644 --- a/english/cpp/system/urihostnametype/_index.md +++ b/english/cpp/system/urihostnametype/_index.md @@ -4,7 +4,7 @@ linktitle: UriHostNameType second_title: Aspose.PDF for C++ API Reference description: 'System::UriHostNameType enum. Represents the type of host name in C++.' type: docs -weight: 8600 +weight: 8800 url: /cpp/system/urihostnametype/ --- ## UriHostNameType enum diff --git a/english/cpp/system/urikind/_index.md b/english/cpp/system/urikind/_index.md index 700d458be3..9a41b44a7e 100644 --- a/english/cpp/system/urikind/_index.md +++ b/english/cpp/system/urikind/_index.md @@ -4,7 +4,7 @@ linktitle: UriKind second_title: Aspose.PDF for C++ API Reference description: 'System::UriKind enum. Represents the kinds of URIs in C++.' type: docs -weight: 8700 +weight: 8900 url: /cpp/system/urikind/ --- ## UriKind enum diff --git a/english/cpp/system/uriparser/_index.md b/english/cpp/system/uriparser/_index.md index 5200fdd3b3..1979742e22 100644 --- a/english/cpp/system/uriparser/_index.md +++ b/english/cpp/system/uriparser/_index.md @@ -4,7 +4,7 @@ linktitle: UriParser second_title: Aspose.PDF for C++ API Reference description: 'System::UriParser class. Used to parse a new URI scheme. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument in C++.' type: docs -weight: 6500 +weight: 6700 url: /cpp/system/uriparser/ --- ## UriParser class diff --git a/english/cpp/system/uripartial/_index.md b/english/cpp/system/uripartial/_index.md index e775ac0fed..2ae454deb6 100644 --- a/english/cpp/system/uripartial/_index.md +++ b/english/cpp/system/uripartial/_index.md @@ -4,7 +4,7 @@ linktitle: UriPartial second_title: Aspose.PDF for C++ API Reference description: 'System::UriPartial enum. Represents the parts of a URI for the Uri.GetLeftPart method in C++.' type: docs -weight: 8800 +weight: 9000 url: /cpp/system/uripartial/ --- ## UriPartial enum diff --git a/english/cpp/system/urishim/_index.md b/english/cpp/system/urishim/_index.md index be7271a9cd..532a8d0102 100644 --- a/english/cpp/system/urishim/_index.md +++ b/english/cpp/system/urishim/_index.md @@ -4,7 +4,7 @@ linktitle: UriShim second_title: Aspose.PDF for C++ API Reference description: 'System::UriShim class. Service class in C++.' type: docs -weight: 6600 +weight: 6800 url: /cpp/system/urishim/ --- ## UriShim class diff --git a/english/cpp/system/valuetype/_index.md b/english/cpp/system/valuetype/_index.md index 985cba8a18..5da30b3702 100644 --- a/english/cpp/system/valuetype/_index.md +++ b/english/cpp/system/valuetype/_index.md @@ -4,7 +4,7 @@ linktitle: ValueType second_title: Aspose.PDF for C++ API Reference description: 'System::ValueType class. Baseclass for value types with Object inheritance being truncated for performance reasons. This type should be allocated on stack and passed to functions by value or by reference. Never use System::SmartPtr class to manage objects of this type in C++.' type: docs -weight: 6700 +weight: 6900 url: /cpp/system/valuetype/ --- ## ValueType class diff --git a/english/cpp/system/version/_index.md b/english/cpp/system/version/_index.md index 2168cb4061..828baf9619 100644 --- a/english/cpp/system/version/_index.md +++ b/english/cpp/system/version/_index.md @@ -4,7 +4,7 @@ linktitle: Version second_title: Aspose.PDF for C++ API Reference description: 'System::Version class. Represents a version number. This type should be allocated on stack and passed to functions by value or by reference. Never use System::SmartPtr class to manage objects of this type in C++.' type: docs -weight: 6800 +weight: 7000 url: /cpp/system/version/ --- ## Version class diff --git a/english/cpp/system/void/_index.md b/english/cpp/system/void/_index.md index 6a6b708a6b..020fdfbd4e 100644 --- a/english/cpp/system/void/_index.md +++ b/english/cpp/system/void/_index.md @@ -4,7 +4,7 @@ linktitle: Void second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Void class in C++.' type: docs -weight: 6900 +weight: 7100 url: /cpp/system/void/ --- ## Void class diff --git a/english/cpp/system/weakptr/_index.md b/english/cpp/system/weakptr/_index.md index 50cd83c029..396874ca59 100644 --- a/english/cpp/system/weakptr/_index.md +++ b/english/cpp/system/weakptr/_index.md @@ -4,7 +4,7 @@ linktitle: WeakPtr second_title: Aspose.PDF for C++ API Reference description: 'System::WeakPtr class. Subclass of System::SmartPtr which sets itself to weak mode at construction. Please note that this class doesn''t guarantee that its instance will always remain in weak mode as set_Mode() is still accessible. This type is a pointer to manage other object''s deletion. It should be allocated on stack and passed to functions either by value or by const reference in C++.' type: docs -weight: 7000 +weight: 7200 url: /cpp/system/weakptr/ --- ## WeakPtr class diff --git a/english/cpp/system/weakreference/_index.md b/english/cpp/system/weakreference/_index.md index 9fe9408b4a..26624e96f2 100644 --- a/english/cpp/system/weakreference/_index.md +++ b/english/cpp/system/weakreference/_index.md @@ -4,7 +4,7 @@ linktitle: WeakReference second_title: Aspose.PDF for C++ API Reference description: 'System::WeakReference class. Represents a weak reference, which references an object while still allowing that object to be deleted in C++.' type: docs -weight: 7100 +weight: 7300 url: /cpp/system/weakreference/ --- ## WeakReference class diff --git a/english/cpp/system/weakreference__/_index.md b/english/cpp/system/weakreference__/_index.md index b3eae837de..64682e144a 100644 --- a/english/cpp/system/weakreference__/_index.md +++ b/english/cpp/system/weakreference__/_index.md @@ -4,7 +4,7 @@ linktitle: WeakReference<> second_title: Aspose.PDF for C++ API Reference description: 'System::WeakReference<> class. Represents a weak reference, which references an object while still allowing that object to be deleted in C++.' type: docs -weight: 7300 +weight: 7500 url: /cpp/system/weakreference__/ --- ## WeakReference<> class diff --git a/english/cpp/system/weakreference_t_/_index.md b/english/cpp/system/weakreference_t_/_index.md index db35566d69..a4fb0ffc24 100644 --- a/english/cpp/system/weakreference_t_/_index.md +++ b/english/cpp/system/weakreference_t_/_index.md @@ -4,7 +4,7 @@ linktitle: WeakReference< T > second_title: Aspose.PDF for C++ API Reference description: 'System::WeakReference< T > class. Represents a weak reference, which references an object while still allowing that object to be deleted in C++.' type: docs -weight: 7200 +weight: 7400 url: /cpp/system/weakreference_t_/ --- ## WeakReference< T > class