From c02fe04287fa4e208a39338afed66cc75387f350 Mon Sep 17 00:00:00 2001 From: Oleksandr Andriienko Date: Wed, 3 Dec 2025 10:20:25 +0100 Subject: [PATCH 1/5] Aspose.PDF for JavaScript/Node.js via C++: AsposePdfDeleteTextHeaders, AsposePdfDeleteTextFooters --- english/javascript-cpp/_index.md | 2 + english/javascript-cpp/organize/_index.md | 2 + .../asposepdfdeletetextfooters/_index.md | 77 +++++++++++++++++++ .../asposepdfdeletetextheaders/_index.md | 77 +++++++++++++++++++ english/nodejs-cpp/_index.md | 2 + english/nodejs-cpp/organize/_index.md | 2 + .../asposepdfdeletetextfooters/_index.md | 51 ++++++++++++ .../asposepdfdeletetextheaders/_index.md | 51 ++++++++++++ 8 files changed, 264 insertions(+) create mode 100644 english/javascript-cpp/organize/asposepdfdeletetextfooters/_index.md create mode 100644 english/javascript-cpp/organize/asposepdfdeletetextheaders/_index.md create mode 100644 english/nodejs-cpp/organize/asposepdfdeletetextfooters/_index.md create mode 100644 english/nodejs-cpp/organize/asposepdfdeletetextheaders/_index.md diff --git a/english/javascript-cpp/_index.md b/english/javascript-cpp/_index.md index 0d3657672b..46b7b3ae24 100644 --- a/english/javascript-cpp/_index.md +++ b/english/javascript-cpp/_index.md @@ -98,6 +98,8 @@ Such operations are very time consuming, so we recommend using Web Worker. | [AsposePdfOptimizeFileSize](./organize/asposepdfoptimizefilesize/) | Optimize size of PDF-file with image compression quality. | | [AsposePdfDeleteTables](./organize/asposepdfdeletetables/) | Delete tables from a PDF-file. | | [AsposePdfCropPages](./organize/asposepdfcroppages/) | Crop PDF-pages. | +| [AsposePdfDeleteTextHeaders](./organize/asposepdfdeletetextheaders/) | Delete text headers from a PDF-file. | +| [AsposePdfDeleteTextFooters](./organize/asposepdfdeletetextfooters/) | Delete text footers from a PDF-file. | ## Metadata PDF functions diff --git a/english/javascript-cpp/organize/_index.md b/english/javascript-cpp/organize/_index.md index 9e67d5a020..8a884e5a1c 100644 --- a/english/javascript-cpp/organize/_index.md +++ b/english/javascript-cpp/organize/_index.md @@ -50,6 +50,8 @@ url: /javascript-cpp/organize/ | [AsposePdfOptimizeFileSize](./asposepdfoptimizefilesize/) | Optimize size of PDF-file with image compression quality. | | [AsposePdfDeleteTables](./asposepdfdeletetables/) | Delete tables from a PDF-file. | | [AsposePdfCropPages](./asposepdfcroppages/) | Crop PDF-pages. | +| [AsposePdfDeleteTextHeaders](./asposepdfdeletetextheaders/) | Delete text headers from a PDF-file. | +| [AsposePdfDeleteTextFooters](./asposepdfdeletetextfooters/) | Delete text footers from a PDF-file. | ## Detailed Description diff --git a/english/javascript-cpp/organize/asposepdfdeletetextfooters/_index.md b/english/javascript-cpp/organize/asposepdfdeletetextfooters/_index.md new file mode 100644 index 0000000000..acef82887b --- /dev/null +++ b/english/javascript-cpp/organize/asposepdfdeletetextfooters/_index.md @@ -0,0 +1,77 @@ +--- +title: "AsposePdfDeleteTextFooters" +second_title: Aspose.PDF for JavaScript via C++ +description: "Delete text footers from a PDF-file." +type: docs +url: /javascript-cpp/organize/asposepdfdeletetextfooters/ +--- + +_Delete text footers from a PDF-file._ + +```js +function AsposePdfDeleteTextFooters( + fileBlob, + fileName, + fileNameResult +) +``` + +**Parameters**: + +* **fileBlob** Blob object +* **fileName** file name +* **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 ffilePdfDeleteTextFooters = e => { + const file_reader = new FileReader(); + file_reader.onload = event => { + /*Delete text footers from a PDF-file and save the "ResultPdfDeleteTextFooters.pdf" - Ask Web Worker*/ + AsposePDFWebWorker.postMessage({ "operation": 'AsposePdfDeleteTextFooters', "params": [event.target.result, e.target.files[0].name, "ResultPdfDeleteTextFooters.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 ffilePdfDeleteTextFooters = function (e) { + const file_reader = new FileReader(); + file_reader.onload = (event) => { + /*Delete text footers from a PDF-file and save the "ResultPdfDeleteTextFooters.pdf"*/ + const json = AsposePdfDeleteTextFooters(event.target.result, e.target.files[0].name, "ResultPdfDeleteTextFooters.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]); + }; +``` diff --git a/english/javascript-cpp/organize/asposepdfdeletetextheaders/_index.md b/english/javascript-cpp/organize/asposepdfdeletetextheaders/_index.md new file mode 100644 index 0000000000..1ca9cadf6d --- /dev/null +++ b/english/javascript-cpp/organize/asposepdfdeletetextheaders/_index.md @@ -0,0 +1,77 @@ +--- +title: "AsposePdfDeleteTextHeaders" +second_title: Aspose.PDF for JavaScript via C++ +description: "Delete text headers from a PDF-file." +type: docs +url: /javascript-cpp/organize/asposepdfdeletetextheaders/ +--- + +_Delete text headers from a PDF-file._ + +```js +function AsposePdfDeleteTextHeaders( + fileBlob, + fileName, + fileNameResult +) +``` + +**Parameters**: + +* **fileBlob** Blob object +* **fileName** file name +* **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 ffilePdfDeleteTextHeaders = e => { + const file_reader = new FileReader(); + file_reader.onload = event => { + /*Delete text headers from a PDF-file and save the "ResultPdfDeleteTextHeaders.pdf" - Ask Web Worker*/ + AsposePDFWebWorker.postMessage({ "operation": 'AsposePdfDeleteTextHeaders', "params": [event.target.result, e.target.files[0].name, "ResultPdfDeleteTextHeaders.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 ffilePdfDeleteTextHeaders = function (e) { + const file_reader = new FileReader(); + file_reader.onload = (event) => { + /*Delete text headers from a PDF-file and save the "ResultPdfDeleteTextHeaders.pdf"*/ + const json = AsposePdfDeleteTextHeaders(event.target.result, e.target.files[0].name, "ResultPdfDeleteTextHeaders.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]); + }; +``` diff --git a/english/nodejs-cpp/_index.md b/english/nodejs-cpp/_index.md index 448d567f77..e273ea6781 100644 --- a/english/nodejs-cpp/_index.md +++ b/english/nodejs-cpp/_index.md @@ -97,6 +97,8 @@ is_root: true | [AsposePdfOptimizeFileSize](./organize/asposepdfoptimizefilesize/) | Optimize size of PDF-file with image compression quality. | | [AsposePdfDeleteTables](./organize/asposepdfdeletetables/) | Delete tables from a PDF-file. | | [AsposePdfCropPages](./organize/asposepdfcroppages/) | Crop PDF-pages. | +| [AsposePdfDeleteTextHeaders](./organize/asposepdfdeletetextheaders/) | Delete text headers from a PDF-file. | +| [AsposePdfDeleteTextFooters](./organize/asposepdfdeletetextfooters/) | Delete text footers from a PDF-file. | ## Metadata PDF functions diff --git a/english/nodejs-cpp/organize/_index.md b/english/nodejs-cpp/organize/_index.md index c265896042..a91da9e814 100644 --- a/english/nodejs-cpp/organize/_index.md +++ b/english/nodejs-cpp/organize/_index.md @@ -50,6 +50,8 @@ url: /nodejs-cpp/organize/ | [AsposePdfOptimizeFileSize](./asposepdfoptimizefilesize/) | Optimize size of PDF-file with image compression quality. | | [AsposePdfDeleteTables](./asposepdfdeletetables/) | Delete tables from a PDF-file. | | [AsposePdfCropPages](./asposepdfcroppages/) | Crop PDF-pages. | +| [AsposePdfDeleteTextHeaders](./asposepdfdeletetextheaders/) | Delete text headers from a PDF-file. | +| [AsposePdfDeleteTextFooters](./asposepdfdeletetextfooters/) | Delete text footers from a PDF-file. | ## Detailed Description diff --git a/english/nodejs-cpp/organize/asposepdfdeletetextfooters/_index.md b/english/nodejs-cpp/organize/asposepdfdeletetextfooters/_index.md new file mode 100644 index 0000000000..0657826175 --- /dev/null +++ b/english/nodejs-cpp/organize/asposepdfdeletetextfooters/_index.md @@ -0,0 +1,51 @@ +--- +title: "AsposePdfDeleteTextFooters" +second_title: Aspose.PDF for Node.js via C++ +description: "Delete text footers from a PDF-file." +type: docs +url: /nodejs-cpp/organize/asposepdfdeletetextfooters/ +--- + +_Delete text footers from a PDF-file._ + +```js +function AsposePdfDeleteTextFooters( + fileName, + fileNameResult +) +``` + +**Parameters**: + +* **fileName** file name +* **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 => { + /*Delete text footers from a PDF-file and save the "ResultPdfDeleteTextFooters.pdf"*/ + const json = AsposePdfModule.AsposePdfDeleteTextFooters(pdf_file, "ResultPdfDeleteTextFooters.pdf"); + console.log("AsposePdfDeleteTextFooters => %O", json.errorCode == 0 ? json.fileNameResult : json.errorText); +}); +``` + +**ECMAScript/ES6**: + +```js +import AsposePdf from 'asposepdfnodejs'; +const AsposePdfModule = await AsposePdf(); +const pdf_file = 'Aspose.pdf'; +/*Delete text footers from a PDF-file and save the "ResultPdfDeleteTextFooters.pdf"*/ +const json = AsposePdfModule.AsposePdfDeleteTextFooters(pdf_file, "ResultPdfDeleteTextFooters.pdf"); +console.log("AsposePdfDeleteTextFooters => %O", json.errorCode == 0 ? json.fileNameResult : json.errorText); +``` \ No newline at end of file diff --git a/english/nodejs-cpp/organize/asposepdfdeletetextheaders/_index.md b/english/nodejs-cpp/organize/asposepdfdeletetextheaders/_index.md new file mode 100644 index 0000000000..e681177f86 --- /dev/null +++ b/english/nodejs-cpp/organize/asposepdfdeletetextheaders/_index.md @@ -0,0 +1,51 @@ +--- +title: "AsposePdfDeleteTextHeaders" +second_title: Aspose.PDF for Node.js via C++ +description: "Delete text headers from a PDF-file." +type: docs +url: /nodejs-cpp/organize/asposepdfdeletetextheaders/ +--- + +_Delete text headers from a PDF-file._ + +```js +function AsposePdfDeleteTextHeaders( + fileName, + fileNameResult +) +``` + +**Parameters**: + +* **fileName** file name +* **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 => { + /*Delete text headers from a PDF-file and save the "ResultPdfDeleteTextHeaders.pdf"*/ + const json = AsposePdfModule.AsposePdfDeleteTextHeaders(pdf_file, "ResultPdfDeleteTextHeaders.pdf"); + console.log("AsposePdfDeleteTextHeaders => %O", json.errorCode == 0 ? json.fileNameResult : json.errorText); +}); +``` + +**ECMAScript/ES6**: + +```js +import AsposePdf from 'asposepdfnodejs'; +const AsposePdfModule = await AsposePdf(); +const pdf_file = 'Aspose.pdf'; +/*Delete text headers from a PDF-file and save the "ResultPdfDeleteTextHeaders.pdf"*/ +const json = AsposePdfModule.AsposePdfDeleteTextHeaders(pdf_file, "ResultPdfDeleteTextHeaders.pdf"); +console.log("AsposePdfDeleteTextHeaders => %O", json.errorCode == 0 ? json.fileNameResult : json.errorText); +``` \ No newline at end of file From 3a5b814ca63ff1f1de8ac267726cbbeb4df90c00 Mon Sep 17 00:00:00 2001 From: Oleksandr Andriienko Date: Thu, 4 Dec 2025 23:01:53 +0100 Subject: [PATCH 2/5] Aspose.PDF for Go via C++: OpenWithPassword, Encrypt, Decrypt, SetPermissions, GetPermissions --- english/go-cpp/_index.md | 37 ++++++++ english/go-cpp/security/_index.md | 23 +++++ english/go-cpp/security/decrypt/_index.md | 47 ++++++++++ english/go-cpp/security/encrypt/_index.md | 80 +++++++++++++++++ .../go-cpp/security/getpermissions/_index.md | 86 +++++++++++++++++++ .../security/openwithpassword/_index.md | 41 +++++++++ .../go-cpp/security/setpermissions/_index.md | 70 +++++++++++++++ 7 files changed, 384 insertions(+) create mode 100644 english/go-cpp/security/_index.md create mode 100644 english/go-cpp/security/decrypt/_index.md create mode 100644 english/go-cpp/security/encrypt/_index.md create mode 100644 english/go-cpp/security/getpermissions/_index.md create mode 100644 english/go-cpp/security/openwithpassword/_index.md create mode 100644 english/go-cpp/security/setpermissions/_index.md diff --git a/english/go-cpp/_index.md b/english/go-cpp/_index.md index c75c7f24e4..23651d0dd9 100644 --- a/english/go-cpp/_index.md +++ b/english/go-cpp/_index.md @@ -127,6 +127,17 @@ type Document struct { | [PageIsBlank](./core/pageisblank/) | Return page is blank in PDF-document. | +## Security + +| Function | Description | +| -------- | ----------- | +| [OpenWithPassword](./security/openwithpassword/) | Open a password-protected PDF-document. | +| [Encrypt](./security/encrypt/) | Encrypt PDF-document. | +| [Decrypt](./security/decrypt/) | Decrypt PDF-document. | +| [SetPermissions](./security/setpermissions/) | Set permissions for PDF-document. | +| [GetPermissions](./security/getpermissions/) | Get current permissions of PDF-document. | + + ## Miscellaneous | Function | Description | @@ -179,3 +190,29 @@ const ( PageSizeP11x17 int32 = 11 // P11x17 size. ) ``` + +## Enumeration of possible crypto algorithms. +```go +type CryptoAlgorithm int32 +const ( + RC4x40 CryptoAlgorithm = 0 // RC4 with key length 40. + RC4x128 CryptoAlgorithm = 1 // RC4 with key length 128. + AESx128 CryptoAlgorithm = 2 // AES with key length 128. + AESx256 CryptoAlgorithm = 3 // AES with key length 256. +) +``` + +## Enumeration of possible permissions. +```go +type Permissions int32 +const ( + PrintDocument Permissions = 1 << 2 // 4 + ModifyContent Permissions = 1 << 3 // 8 + ExtractContent Permissions = 1 << 4 // 16 + ModifyTextAnnotations Permissions = 1 << 5 // 32 + FillForm Permissions = 1 << 8 // 256 + ExtractContentWithDisabilities Permissions = 1 << 9 // 512 + AssembleDocument Permissions = 1 << 10 // 1024 + PrintingQuality Permissions = 1 << 11 // 2048 +) +``` diff --git a/english/go-cpp/security/_index.md b/english/go-cpp/security/_index.md new file mode 100644 index 0000000000..109c9330cd --- /dev/null +++ b/english/go-cpp/security/_index.md @@ -0,0 +1,23 @@ +--- +title: "Security functions" +second_title: Aspose.PDF for Go via C++ +description: "Security functions." +type: docs +url: /go-cpp/security/ +--- + +## Security + +| Function | Description | +| -------- | ----------- | +| [OpenWithPassword](./openwithpassword/) | Open a password-protected PDF-document. | +| [Encrypt](./encrypt/) | Encrypt PDF-document. | +| [Decrypt](./decrypt/) | Decrypt PDF-document. | +| [SetPermissions](./setpermissions/) | Set permissions for PDF-document. | +| [GetPermissions](./getpermissions/) | Get current permissions of PDF-document. | + + +## Detailed Description + +Security functions. + diff --git a/english/go-cpp/security/decrypt/_index.md b/english/go-cpp/security/decrypt/_index.md new file mode 100644 index 0000000000..4501a7ad2d --- /dev/null +++ b/english/go-cpp/security/decrypt/_index.md @@ -0,0 +1,47 @@ +--- +title: "Decrypt" +second_title: Aspose.PDF for Go via C++ +description: "Decrypt PDF-document." +type: docs +url: /go-cpp/security/decrypt/ +--- + +_Decrypt PDF-document._ + +```go +func (document *Document) Decrypt() error +``` + +**Parameters**: + +**Return**: + * **error** - contains an error or nil if absent + + +**Example**: +```go +package main + +import "github.com/aspose-pdf/aspose-pdf-go-cpp" +import "log" + +func main() { + // OpenWithPassword(filename string, password string) opens a password-protected PDF-document + pdf, err := asposepdf.OpenWithPassword("sample_with_password.pdf", "ownerpass") + if err != nil { + log.Fatal(err) + } + // Close() releases allocated resources for PDF-document + defer pdf.Close() + // Decrypt() decrypts PDF-document + err = pdf.Decrypt() + if err != nil { + log.Fatal(err) + } + // SaveAs(filename string) saves previously opened PDF-document with new filename + err = pdf.SaveAs("sample_without_password.pdf") + if err != nil { + log.Fatal(err) + } +} +``` diff --git a/english/go-cpp/security/encrypt/_index.md b/english/go-cpp/security/encrypt/_index.md new file mode 100644 index 0000000000..188079f21b --- /dev/null +++ b/english/go-cpp/security/encrypt/_index.md @@ -0,0 +1,80 @@ +--- +title: "Encrypt" +second_title: Aspose.PDF for Go via C++ +description: "Encrypt PDF-document." +type: docs +url: /go-cpp/security/encrypt/ +--- + +_Encrypt PDF-document._ + +```go +func (document *Document) Encrypt(userPassword string, ownerPassword string, permissions Permissions, cryptoAlgorithm CryptoAlgorithm, usePdf20 bool) error +``` + +**Parameters**: + * **userPassword** - user password + * **ownerPassword** - owner password + * **permissions** - defines allowed permissions for user (can combine flags using |): +```go +type Permissions int32 +const ( + PrintDocument Permissions = 1 << 2 // 4 + ModifyContent Permissions = 1 << 3 // 8 + ExtractContent Permissions = 1 << 4 // 16 + ModifyTextAnnotations Permissions = 1 << 5 // 32 + FillForm Permissions = 1 << 8 // 256 + ExtractContentWithDisabilities Permissions = 1 << 9 // 512 + AssembleDocument Permissions = 1 << 10 // 1024 + PrintingQuality Permissions = 1 << 11 // 2048 +) +``` + * **cryptoAlgorithm** - encryption algorithm: +```go +type CryptoAlgorithm int32 +const ( + RC4x40 CryptoAlgorithm = 0 // RC4 with key length 40. + RC4x128 CryptoAlgorithm = 1 // RC4 with key length 128. + AESx128 CryptoAlgorithm = 2 // AES with key length 128. + AESx256 CryptoAlgorithm = 3 // AES with key length 256. +) +``` + * **usePdf20** - if true, uses PDF 2.0 encryption (for AESx128/256); otherwise uses standard PDF 1.x encryption + +**Return**: + * **error** - contains an error or nil if absent + + +**Example**: +```go +package main + +import "github.com/aspose-pdf/aspose-pdf-go-cpp" +import "log" + +func main() { + // New creates a new PDF-document + pdf, err := asposepdf.New() + if err != nil { + log.Fatal(err) + } + // Close() releases allocated resources for PDF-document + defer pdf.Close() + // Encrypt(userPassword, ownerPassword, permissions, cryptoAlgorithm, usePdf20) encrypts PDF-document + err = pdf.Encrypt( + "userpass", + "ownerpass", + asposepdf.PrintDocument|asposepdf.ModifyContent|asposepdf.FillForm, + asposepdf.AESx128, + true, + ) + if err != nil { + log.Fatal(err) + } + // SaveAs(filename string) saves previously opened PDF-document with new filename + err = pdf.SaveAs("sample_with_password.pdf") + if err != nil { + log.Fatal(err) + } +} +``` diff --git a/english/go-cpp/security/getpermissions/_index.md b/english/go-cpp/security/getpermissions/_index.md new file mode 100644 index 0000000000..04113b57c2 --- /dev/null +++ b/english/go-cpp/security/getpermissions/_index.md @@ -0,0 +1,86 @@ +--- +title: "GetPermissions" +second_title: Aspose.PDF for Go via C++ +description: "Get permissions for PDF-document." +type: docs +url: /go-cpp/security/getpermissions/ +--- + +_Get permissions for PDF-document._ + +```go +func (document *Document) GetPermissions() (Permissions, error) +``` + +**Parameters**: + +**Return**: + * **Permissions** - bitmask of permissions: +```go +type Permissions int32 +const ( + PrintDocument Permissions = 1 << 2 // 4 + ModifyContent Permissions = 1 << 3 // 8 + ExtractContent Permissions = 1 << 4 // 16 + ModifyTextAnnotations Permissions = 1 << 5 // 32 + FillForm Permissions = 1 << 8 // 256 + ExtractContentWithDisabilities Permissions = 1 << 9 // 512 + AssembleDocument Permissions = 1 << 10 // 1024 + PrintingQuality Permissions = 1 << 11 // 2048 +) +``` + * **error** - contains an error or nil if absent + + +**Example**: +```go +package main + +import "github.com/aspose-pdf/aspose-pdf-go-cpp" +import ( + "fmt" + "log" + "strings" +) + +var permissionNames = map[asposepdf.Permissions]string{ + asposepdf.PrintDocument: "Allow printing", + asposepdf.ModifyContent: "Allow modifying content (except forms/annotations)", + asposepdf.ExtractContent: "Allow copying/extracting text and graphics", + asposepdf.ModifyTextAnnotations: "Allow adding/modifying text annotations", + asposepdf.FillForm: "Allow filling interactive forms", + asposepdf.ExtractContentWithDisabilities: "Allow content extraction for accessibility", + asposepdf.AssembleDocument: "Allow inserting/rotating/deleting pages or changing structure", + asposepdf.PrintingQuality: "Allow high-quality / faithful printing", +} + +func PermissionsToString(p asposepdf.Permissions) string { + var result []string + for flag, name := range permissionNames { + if p&flag != 0 { + result = append(result, name) + } + } + if len(result) == 0 { + return "None" + } + return strings.Join(result, ", ") +} + +func main() { + // OpenWithPassword(filename string, password string) opens a password-protected PDF-document + pdf, err := asposepdf.OpenWithPassword("sample_with_permissions.pdf", "ownerpass") + if err != nil { + log.Fatal(err) + } + // Close() releases allocated resources for PDF-document + defer pdf.Close() + // GetPermissions() gets current permissions of PDF-document + permissions, err := pdf.GetPermissions() + if err != nil { + log.Fatal(err) + } + // Print permissions + fmt.Println("Permissions:", PermissionsToString(permissions)) +} +``` diff --git a/english/go-cpp/security/openwithpassword/_index.md b/english/go-cpp/security/openwithpassword/_index.md new file mode 100644 index 0000000000..39c4e0ad8f --- /dev/null +++ b/english/go-cpp/security/openwithpassword/_index.md @@ -0,0 +1,41 @@ +--- +title: "OpenWithPassword" +second_title: Aspose.PDF for Go via C++ +description: "Open a password-protected PDF-document." +type: docs +url: /go-cpp/security/openwithpassword/ +--- + +_Open a password-protected PDF-document._ + +```go +func OpenWithPassword(filename string, password string) (*Document, error) +``` + +**Parameters**: + * **\*Document** - pointer to document + * **filename** - full file name of the PDF-document + * **password** - user/owner password of the password-protected PDF-document + +**Return**: + * **error** - contains an error or nil if absent + + +**Example**: +```go +package main + +import "github.com/aspose-pdf/aspose-pdf-go-cpp" +import "log" + +func main() { + // OpenWithPassword(filename string, password string) opens a password-protected PDF-document + pdf, err := asposepdf.OpenWithPassword("sample_with_password.pdf", "ownerpass") + if err != nil { + log.Fatal(err) + } + // Close() releases allocated resources for PDF-document + defer pdf.Close() + // working... +} +``` diff --git a/english/go-cpp/security/setpermissions/_index.md b/english/go-cpp/security/setpermissions/_index.md new file mode 100644 index 0000000000..ae69a690b8 --- /dev/null +++ b/english/go-cpp/security/setpermissions/_index.md @@ -0,0 +1,70 @@ +--- +title: "SetPermissions" +second_title: Aspose.PDF for Go via C++ +description: "Set permissions for PDF-document." +type: docs +url: /go-cpp/security/setpermissions/ +--- + +_Set permissions for PDF-document._ + +```go +func (document *Document) SetPermissions(userPassword string, ownerPassword string, permissions Permissions) error +``` + +**Parameters**: + * **userPassword** - user password + * **ownerPassword** - owner password + * **permissions** - defines allowed permissions for user (can combine flags using |): +```go +type Permissions int32 +const ( + PrintDocument Permissions = 1 << 2 // 4 + ModifyContent Permissions = 1 << 3 // 8 + ExtractContent Permissions = 1 << 4 // 16 + ModifyTextAnnotations Permissions = 1 << 5 // 32 + FillForm Permissions = 1 << 8 // 256 + ExtractContentWithDisabilities Permissions = 1 << 9 // 512 + AssembleDocument Permissions = 1 << 10 // 1024 + PrintingQuality Permissions = 1 << 11 // 2048 +) +``` + +**Return**: + * **error** - contains an error or nil if absent + + +**Example**: +```go +package main + +import "github.com/aspose-pdf/aspose-pdf-go-cpp" +import "log" + +func main() { + // New creates a new PDF-document + pdf, err := asposepdf.New() + if err != nil { + log.Fatal(err) + } + // Close() releases allocated resources for PDF-document + defer pdf.Close() + + // SetPermissions(userPassword, ownerPassword, permissions) sets permissions for PDF-document + err = pdf.SetPermissions( + "userpass", + "ownerpass", + asposepdf.PrintDocument| + asposepdf.ModifyContent| + asposepdf.FillForm, + ) + if err != nil { + log.Fatal(err) + } + // SaveAs(filename string) saves previously opened PDF-document with new filename + err = pdf.SaveAs("sample_with_permissions.pdf") + if err != nil { + log.Fatal(err) + } +} +``` From 646490b31a8690b03b54a736f28eafbfa2b12b84 Mon Sep 17 00:00:00 2001 From: Oleksandr Andriienko Date: Tue, 9 Dec 2025 12:16:51 +0100 Subject: [PATCH 3/5] Aspose.PDF for Go via C++: upd Security fun --- english/go-cpp/_index.md | 2 +- english/go-cpp/security/encrypt/_index.md | 2 +- english/go-cpp/security/getpermissions/_index.md | 2 +- english/go-cpp/security/setpermissions/_index.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/english/go-cpp/_index.md b/english/go-cpp/_index.md index 23651d0dd9..0ff0a81802 100644 --- a/english/go-cpp/_index.md +++ b/english/go-cpp/_index.md @@ -202,7 +202,7 @@ const ( ) ``` -## Enumeration of possible permissions. +## Bitflag set representing PDF permission capabilities. ```go type Permissions int32 const ( diff --git a/english/go-cpp/security/encrypt/_index.md b/english/go-cpp/security/encrypt/_index.md index 188079f21b..836a9dee15 100644 --- a/english/go-cpp/security/encrypt/_index.md +++ b/english/go-cpp/security/encrypt/_index.md @@ -15,7 +15,7 @@ func (document *Document) Encrypt(userPassword string, ownerPassword string, per **Parameters**: * **userPassword** - user password * **ownerPassword** - owner password - * **permissions** - defines allowed permissions for user (can combine flags using |): + * **permissions** - bitmask of allowed PDF permissions (combine flags using `|`): ```go type Permissions int32 const ( diff --git a/english/go-cpp/security/getpermissions/_index.md b/english/go-cpp/security/getpermissions/_index.md index 04113b57c2..8a1ec22b15 100644 --- a/english/go-cpp/security/getpermissions/_index.md +++ b/english/go-cpp/security/getpermissions/_index.md @@ -15,7 +15,7 @@ func (document *Document) GetPermissions() (Permissions, error) **Parameters**: **Return**: - * **Permissions** - bitmask of permissions: + * **Permissions** - bitmask of PDF permission flags: ```go type Permissions int32 const ( diff --git a/english/go-cpp/security/setpermissions/_index.md b/english/go-cpp/security/setpermissions/_index.md index ae69a690b8..394e153b58 100644 --- a/english/go-cpp/security/setpermissions/_index.md +++ b/english/go-cpp/security/setpermissions/_index.md @@ -15,7 +15,7 @@ func (document *Document) SetPermissions(userPassword string, ownerPassword stri **Parameters**: * **userPassword** - user password * **ownerPassword** - owner password - * **permissions** - defines allowed permissions for user (can combine flags using |): + * **permissions** - bitmask of allowed PDF permissions (combine flags using `|`): ```go type Permissions int32 const ( From 73bb96f7d57ea713675f02eac2ca11914ab88fbf Mon Sep 17 00:00:00 2001 From: Oleksandr Andriienko Date: Wed, 10 Dec 2025 20:32:41 +0100 Subject: [PATCH 4/5] Aspose.PDF for Rust via C++: open_with_password, encrypt, decrypt, set_permissions, get_permissions --- english/rust-cpp/_index.md | 41 +++++++++++++ english/rust-cpp/security/_index.md | 23 ++++++++ english/rust-cpp/security/decrypt/_index.md | 40 +++++++++++++ english/rust-cpp/security/encrypt/_index.md | 57 +++++++++++++++++++ .../security/get_permissions/_index.md | 40 +++++++++++++ .../security/open_with_password/_index.md | 37 ++++++++++++ .../security/set_permissions/_index.md | 51 +++++++++++++++++ 7 files changed, 289 insertions(+) create mode 100644 english/rust-cpp/security/_index.md create mode 100644 english/rust-cpp/security/decrypt/_index.md create mode 100644 english/rust-cpp/security/encrypt/_index.md create mode 100644 english/rust-cpp/security/get_permissions/_index.md create mode 100644 english/rust-cpp/security/open_with_password/_index.md create mode 100644 english/rust-cpp/security/set_permissions/_index.md diff --git a/english/rust-cpp/_index.md b/english/rust-cpp/_index.md index dfbf99bfb2..ba3bbe4966 100644 --- a/english/rust-cpp/_index.md +++ b/english/rust-cpp/_index.md @@ -125,6 +125,16 @@ pub struct Document { /* private fields */ } | [page_is_blank](./core/page_is_blank/) | Return page is blank in PDF-document. | +## Security +| Function | Description | +| -------- | ----------- | +| [open_with_password](./security/open_with_password/) | Open a password-protected PDF-document. | +| [encrypt](./security/encrypt/) | Encrypt PDF-document. | +| [decrypt](./security/decrypt/) | Decrypt PDF-document. | +| [set_permissions](./security/set_permissions/) | Set permissions for PDF-document. | +| [get_permissions](./security/get_permissions/) | Get current permissions of PDF-document. | + + ## Miscellaneous | Function | Description | @@ -159,6 +169,23 @@ pub struct ProductInfo { } ``` +## Bitflag set representing PDF permission capabilities. +```rust +bitflags! { + /// Bitflag set representing PDF permission capabilities. + #[derive(Copy, Clone, PartialEq, Eq)] + pub struct Permissions: i32 { + const PRINT_DOCUMENT = 1 << 2; // 4 + const MODIFY_CONTENT = 1 << 3; // 8 + const EXTRACT_CONTENT = 1 << 4; // 16 + const MODIFY_TEXT_ANNOTATIONS = 1 << 5; // 32 + const FILL_FORM = 1 << 8; // 256 + const EXTRACT_CONTENT_WITH_DISABILITIES = 1 << 9; // 512 + const ASSEMBLE_DOCUMENT = 1 << 10; // 1024 + const PRINTING_QUALITY = 1 << 11; // 2048 + } +} +``` # Enums @@ -207,3 +234,17 @@ pub enum Rotation { On360 = 4, } ``` + +## An enumeration of possible crypto algorithms. +```rust +pub enum CryptoAlgorithm { + /// RC4 with key length 40. + RC4x40 = 0, + /// RC4 with key length 128. + RC4x128 = 1, + /// AES with key length 128. + AESx128 = 2, + /// AES with key length 256. + AESx256 = 3, +} +``` diff --git a/english/rust-cpp/security/_index.md b/english/rust-cpp/security/_index.md new file mode 100644 index 0000000000..ee9c3e497f --- /dev/null +++ b/english/rust-cpp/security/_index.md @@ -0,0 +1,23 @@ +--- +title: "Security functions" +second_title: Aspose.PDF for Rust via C++ +description: "Security functions." +type: docs +url: /rust-cpp/security/ +--- + +## Security + +| Function | Description | +| -------- | ----------- | +| [open_with_password](./open_with_password/) | Open a password-protected PDF-document. | +| [encrypt](./encrypt/) | Encrypt PDF-document. | +| [decrypt](./decrypt/) | Decrypt PDF-document. | +| [set_permissions](./set_permissions/) | Set permissions for PDF-document. | +| [get_permissions](./get_permissions/) | Get current permissions of PDF-document. | + + +## Detailed Description + +Security functions. + diff --git a/english/rust-cpp/security/decrypt/_index.md b/english/rust-cpp/security/decrypt/_index.md new file mode 100644 index 0000000000..a89dda149d --- /dev/null +++ b/english/rust-cpp/security/decrypt/_index.md @@ -0,0 +1,40 @@ +--- +title: "decrypt" +second_title: Aspose.PDF for Rust via C++ +description: "Decrypt PDF-document." +type: docs +url: /rust-cpp/security/decrypt/ +--- + +_Decrypt PDF-document._ + +```rust +pub fn decrypt(&self) -> Result<(), PdfError> +``` + +**Arguments** + + +**Returns** + * **Ok(())** - if the operation succeeds + * **Err(PdfError)** - if the operation fails + +**Example** + +```rust +use asposepdf::Document; + +fn main() -> Result<(), Box> { + // Open a password-protected PDF-document + let pdf = Document::open_with_password("sample_with_password.pdf", "ownerpass")?; + + // Decrypt PDF-document + pdf.decrypt()?; + + // Save the previously opened PDF-document with new filename + pdf.save_as("sample_decrypt.pdf")?; + + Ok(()) +} + +``` \ No newline at end of file diff --git a/english/rust-cpp/security/encrypt/_index.md b/english/rust-cpp/security/encrypt/_index.md new file mode 100644 index 0000000000..53484ccfd6 --- /dev/null +++ b/english/rust-cpp/security/encrypt/_index.md @@ -0,0 +1,57 @@ +--- +title: "encrypt" +second_title: Aspose.PDF for Rust via C++ +description: "Encrypt PDF-document." +type: docs +url: /rust-cpp/security/encrypt/ +--- + +_Encrypt PDF-document._ + +```rust +pub fn encrypt( + &self, + user_password: &str, + owner_password: &str, + permissions: Permissions, + crypto_algorithm: CryptoAlgorithm, + use_pdf_20: bool, +) -> Result<(), PdfError> +``` + +**Arguments** + * **user_password** - the user password + * **owner_password** - the owner password + * **permissions** - the allowed permissions (bitflags `Permissions`) + * **crypto_algorithm** - the encryption algorithm (`CryptoAlgorithm` enum) + * **use_pdf_20** - whether to use PDF 2.0 encryption + +**Returns** + * **Ok(())** - if the operation succeeds + * **Err(PdfError)** - if the operation fails + +**Example** + +```rust +use asposepdf::{CryptoAlgorithm, Document, Permissions}; + +fn main() -> Result<(), Box> { + // Create a new PDF-document + let pdf = Document::new()?; + + // Encrypt PDF-document + pdf.encrypt( + "userpass", // User password + "ownerpass", // Owner password + Permissions::PRINT_DOCUMENT | Permissions::MODIFY_CONTENT | Permissions::FILL_FORM, // Permissions bitmask + CryptoAlgorithm::AESx128, // Encryption algorithm + true, // Use PDF 2.0 encryption + )?; + + // Save the encrypted PDF-document + pdf.save_as("sample_with_password.pdf")?; + + Ok(()) +} + +``` \ No newline at end of file diff --git a/english/rust-cpp/security/get_permissions/_index.md b/english/rust-cpp/security/get_permissions/_index.md new file mode 100644 index 0000000000..7e200b987f --- /dev/null +++ b/english/rust-cpp/security/get_permissions/_index.md @@ -0,0 +1,40 @@ +--- +title: "get_permissions" +second_title: Aspose.PDF for Rust via C++ +description: "Get current permissions of PDF-document." +type: docs +url: /rust-cpp/security/get_permissions/ +--- + +_Get current permissions of PDF-document._ + +```rust +pub fn get_permissions(&self) -> Result +``` + +**Arguments** + + +**Returns** + * **Ok(Permissions)** - the bitmask of permissions, if the operation succeeds + * **Err(PdfError)** - if the operation fails + +**Example** + +```rust +use asposepdf::{Document, Permissions}; + +fn main() -> Result<(), Box> { + // Open a password-protected PDF-document + let pdf = Document::open_with_password("sample_with_permissions.pdf", "ownerpass")?; + + // Get current permissions of PDF-document + let permissions: Permissions = pdf.get_permissions()?; + + // Print permissions + println!("Permissions: {}", permissions); + + Ok(()) +} + +``` \ No newline at end of file diff --git a/english/rust-cpp/security/open_with_password/_index.md b/english/rust-cpp/security/open_with_password/_index.md new file mode 100644 index 0000000000..aead4d1422 --- /dev/null +++ b/english/rust-cpp/security/open_with_password/_index.md @@ -0,0 +1,37 @@ +--- +title: "open_with_password" +second_title: Aspose.PDF for Rust via C++ +description: "Open a password-protected PDF-document." +type: docs +url: /rust-cpp/security/open_with_password/ +--- + +_Open a password-protected PDF-document._ + +```rust +pub fn open_with_password(filename: &str, password: &str) -> Result +``` + +**Arguments** + * **filename** - path to the PDF-document to open + * **password** - user/owner password of the password-protected PDF-document + +**Returns** + * **Ok(Self)** - if the operation succeeds + * **Err(PdfError)** - if the operation fails + +**Example** + +```rust +use asposepdf::Document; + +fn main() -> Result<(), Box> { + // Open a password-protected PDF-document + let _pdf = Document::open_with_password("sample_with_password.pdf", "ownerpass")?; + + // working... + + Ok(()) +} + +``` \ No newline at end of file diff --git a/english/rust-cpp/security/set_permissions/_index.md b/english/rust-cpp/security/set_permissions/_index.md new file mode 100644 index 0000000000..129d865edd --- /dev/null +++ b/english/rust-cpp/security/set_permissions/_index.md @@ -0,0 +1,51 @@ +--- +title: "set_permissions" +second_title: Aspose.PDF for Rust via C++ +description: "Set permissions for PDF-document." +type: docs +url: /rust-cpp/security/set_permissions/ +--- + +_Set permissions for PDF-document._ + +```rust +pub fn set_permissions( + &self, + user_password: &str, + owner_password: &str, + permissions: Permissions, +) -> Result<(), PdfError> +``` + +**Arguments** + * **user_password** - the user password + * **owner_password** - the owner password + * **permissions** - the allowed permissions (bitflags `Permissions`) + +**Returns** + * **Ok(())** - if the operation succeeds + * **Err(PdfError)** - if the operation fails + +**Example** + +```rust +use asposepdf::{Document, Permissions}; + +fn main() -> Result<(), Box> { + // Create a new PDF-document + let pdf = Document::new()?; + + // Set permissions for PDF-document. + pdf.set_permissions( + "userpass", // User password + "ownerpass", // Owner password + Permissions::PRINT_DOCUMENT | Permissions::MODIFY_CONTENT | Permissions::FILL_FORM, // Permissions bitmask + )?; + + // Save the PDF-document with the updated permissions + pdf.save_as("sample_with_permissions.pdf")?; + + Ok(()) +} + +``` \ No newline at end of file From 51e004632f4033b25fdd3f197666485aca53b427 Mon Sep 17 00:00:00 2001 From: Alexander Malokhovetskiy Date: Mon, 15 Dec 2025 13:36:41 +0200 Subject: [PATCH 5/5] Aspose.PDF for C++ 25.12 --- .../appearancedictionary/copyto/_index.md | 4 ++ english/cpp/aspose.pdf.lowcode/_index.md | 2 + .../conversionmode/_index.md | 2 +- .../cpp/aspose.pdf.lowcode/datatype/_index.md | 2 +- .../pdfastandardversion/_index.md | 2 +- .../aspose.pdf.lowcode/saveformat/_index.md | 2 +- .../aspose.pdf.lowcode/selectfield/_index.md | 2 +- .../aspose.pdf.lowcode/timestamp/_index.md | 31 +++++++++++ .../timestamp/dispose/_index.md | 23 ++++++++ .../timestamp/process/_index.md | 35 ++++++++++++ .../timestampoptions/_index.md | 48 +++++++++++++++++ .../get_basicauthcredentials/_index.md | 24 +++++++++ .../get_digesthashalgorithm/_index.md | 24 +++++++++ .../get_operationname/_index.md | 24 +++++++++ .../timestampoptions/get_pagenumber/_index.md | 23 ++++++++ .../timestampoptions/get_rectangle/_index.md | 24 +++++++++ .../timestampoptions/get_serverurl/_index.md | 24 +++++++++ .../timestampoptions/get_sigcontact/_index.md | 24 +++++++++ .../get_siglocation/_index.md | 24 +++++++++ .../timestampoptions/get_sigreason/_index.md | 24 +++++++++ .../timestampoptions/get_visible/_index.md | 23 ++++++++ .../set_basicauthcredentials/_index.md | 24 +++++++++ .../set_digesthashalgorithm/_index.md | 24 +++++++++ .../timestampoptions/set_pagenumber/_index.md | 23 ++++++++ .../timestampoptions/set_rectangle/_index.md | 24 +++++++++ .../timestampoptions/set_serverurl/_index.md | 24 +++++++++ .../timestampoptions/set_sigcontact/_index.md | 24 +++++++++ .../set_siglocation/_index.md | 24 +++++++++ .../timestampoptions/set_sigreason/_index.md | 24 +++++++++ .../timestampoptions/set_visible/_index.md | 23 ++++++++ .../timestampoptions/_index.md | 53 +++++++++++++++++++ .../aspose.pdf.lowcode/tocgenerator/_index.md | 2 +- .../aspose.pdf.lowcode/tocoptions/_index.md | 2 +- .../aspose.pdf.lowcode/xlsconverter/_index.md | 2 +- english/cpp/aspose.pdf.security/_index.md | 1 + .../cryptographicstandard/_index.md | 2 +- .../signaturealgorithmtype/_index.md | 2 +- .../_index.md | 2 +- .../unsignedcontentabsorber/_index.md | 33 ++++++++++++ .../unsignedcontentabsorber/result/_index.md | 36 +++++++++++++ .../result/get_coverage/_index.md | 25 +++++++++ .../result/get_message/_index.md | 25 +++++++++ .../result/get_success/_index.md | 24 +++++++++ .../result/get_unsignedcontent/_index.md | 26 +++++++++ .../trygetcontent/_index.md | 30 +++++++++++ .../unsignedcontent/_index.md | 32 +++++++++++ .../unsignedcontent/get_annotations/_index.md | 27 ++++++++++ .../unsignedcontent/get_forms/_index.md | 27 ++++++++++ .../unsignedcontent/get_pages/_index.md | 31 +++++++++++ .../unsignedcontent/get_xforms/_index.md | 27 ++++++++++ .../unsignedcontentabsorber/_index.md | 30 +++++++++++ .../validationmethod/_index.md | 2 +- .../validationmode/_index.md | 2 +- .../validationoptions/_index.md | 2 +- .../validationresult/_index.md | 2 +- .../validationstatus/_index.md | 2 +- english/cpp/aspose.pdf.text/_index.md | 2 + .../coordinateorigin/_index.md | 2 +- .../cpp/aspose.pdf.text/fontstyles/_index.md | 2 +- .../cpp/aspose.pdf.text/fonttypes/_index.md | 2 +- .../substitutionfontcategories/_index.md | 2 +- .../tabalignmenttype/_index.md | 2 +- .../aspose.pdf.text/tableadertype/_index.md | 2 +- .../textparagraphabsorber/_index.md | 33 ++++++++++++ .../get_rectangles/_index.md | 26 +++++++++ .../get_textparagraphs/_index.md | 25 +++++++++ .../set_rectangles/_index.md | 26 +++++++++ .../set_textparagraphs/_index.md | 25 +++++++++ .../textparagraphabsorber/_index.md | 35 ++++++++++++ .../textparagraphabsorber/visit/_index.md | 25 +++++++++ .../textparagraphcollection/_index.md | 38 +++++++++++++ .../textparagraphcollection/add/_index.md | 25 +++++++++ .../textparagraphcollection/clear/_index.md | 23 ++++++++ .../contains/_index.md | 34 ++++++++++++ .../textparagraphcollection/copyto/_index.md | 26 +++++++++ .../get_count/_index.md | 23 ++++++++ .../get_isreadonly/_index.md | 23 ++++++++ .../get_issynchronized/_index.md | 23 ++++++++ .../get_syncroot/_index.md | 25 +++++++++ .../getenumerator/_index.md | 26 +++++++++ .../textparagraphcollection/idx_get/_index.md | 34 ++++++++++++ .../textparagraphcollection/remove/_index.md | 34 ++++++++++++ .../textrenderingmode/_index.md | 2 +- .../textreplaceoptions/_index.md | 2 +- .../textsearchoptions/_index.md | 2 +- .../cpp/aspose.pdf.text/textsegment/_index.md | 2 +- .../textsegmentcollection/_index.md | 2 +- .../cpp/aspose.pdf.text/textstate/_index.md | 2 +- .../unicodesubstitution/_index.md | 2 +- english/cpp/aspose.pdf/_index.md | 2 + .../cpp/aspose.pdf/afrelationship/_index.md | 2 +- .../autodetectedformatloadoptions/_index.md | 28 ++++++++++ .../autodetectedformatloadoptions/_index.md | 23 ++++++++ .../aspose.pdf/autotaggingsettings/_index.md | 2 +- .../aspose.pdf/backgroundartifact/_index.md | 2 +- .../aspose.pdf/baseactioncollection/_index.md | 2 +- .../baseoperatorcollection/_index.md | 2 +- .../cpp/aspose.pdf/baseparagraph/_index.md | 2 +- .../cpp/aspose.pdf/batesnartifact/_index.md | 2 +- english/cpp/aspose.pdf/bitmapinfo/_index.md | 2 +- english/cpp/aspose.pdf/blendmode/_index.md | 2 +- .../aspose.pdf/bordercornerstyle/_index.md | 2 +- english/cpp/aspose.pdf/borderinfo/_index.md | 2 +- english/cpp/aspose.pdf/borderside/_index.md | 2 +- .../aspose.pdf/boundscheckablelist/_index.md | 2 +- .../cpp/aspose.pdf/boundscheckmode/_index.md | 2 +- .../boundsoutofrangeexception/_index.md | 2 +- english/cpp/aspose.pdf/brush/_index.md | 23 ++++++++ .../cpp/aspose.pdf/buildversioninfo/_index.md | 2 +- .../cpp/aspose.pdf/cdrloadoptions/_index.md | 2 +- english/cpp/aspose.pdf/cell/_index.md | 2 +- english/cpp/aspose.pdf/cells/_index.md | 2 +- english/cpp/aspose.pdf/center/_index.md | 2 +- .../cpp/aspose.pdf/cgmimportoptions/_index.md | 2 +- .../cpp/aspose.pdf/cgmloadoptions/_index.md | 2 +- english/cpp/aspose.pdf/collection/_index.md | 2 +- .../cpp/aspose.pdf/collectionfield/_index.md | 2 +- .../collectionfieldsubtype/_index.md | 2 +- .../collectionfieldsubtypeconverter/_index.md | 2 +- .../cpp/aspose.pdf/collectionitem/_index.md | 2 +- .../cpp/aspose.pdf/collectionschema/_index.md | 2 +- .../cpp/aspose.pdf/collectionsort/_index.md | 2 +- english/cpp/aspose.pdf/color/_index.md | 2 +- english/cpp/aspose.pdf/colorspace/_index.md | 2 +- .../aspose.pdf/colorspaceconverter/_index.md | 2 +- english/cpp/aspose.pdf/colortype/_index.md | 2 +- .../cpp/aspose.pdf/columnadjustment/_index.md | 2 +- english/cpp/aspose.pdf/columninfo/_index.md | 2 +- english/cpp/aspose.pdf/comhelper/_index.md | 2 +- .../compositingparameters/_index.md | 2 +- .../aspose.pdf/contentdisposition/_index.md | 2 +- .../aspose.pdf/converterroraction/_index.md | 2 +- .../cpp/aspose.pdf/convertexception/_index.md | 2 +- .../convertsoftmaskaction/_index.md | 2 +- .../converttransparencyaction/_index.md | 2 +- .../aspose.pdf/crashreportoptions/_index.md | 2 +- .../cpp/aspose.pdf/cryptoalgorithm/_index.md | 2 +- .../cpp/aspose.pdf/datecomponent/_index.md | 2 +- english/cpp/aspose.pdf/defaultstate/_index.md | 2 +- .../deprecatedfeatureexception/_index.md | 2 +- .../destinationcollection/_index.md | 2 +- .../aspose.pdf/digesthashalgorithm/_index.md | 2 +- english/cpp/aspose.pdf/direction/_index.md | 2 +- .../aspose.pdf/directionconverter/_index.md | 2 +- .../cpp/aspose.pdf/djvuloadoptions/_index.md | 2 +- .../cpp/aspose.pdf/docsaveoptions/_index.md | 2 +- english/cpp/aspose.pdf/document/_index.md | 2 +- .../aspose.pdf/documentextensions/_index.md | 2 +- .../cpp/aspose.pdf/documentfactory/_index.md | 2 +- english/cpp/aspose.pdf/documentinfo/_index.md | 2 +- english/cpp/aspose.pdf/editiontype/_index.md | 2 +- .../embeddedfilecollection/_index.md | 2 +- .../embeddedfilesdoesnotexists/_index.md | 2 +- .../cpp/aspose.pdf/emphasisstyle/_index.md | 2 +- .../aspose.pdf/emptyvalueexception/_index.md | 2 +- .../cpp/aspose.pdf/encryptedpayload/_index.md | 2 +- .../cpp/aspose.pdf/epubloadoptions/_index.md | 2 +- .../cpp/aspose.pdf/epubsaveoptions/_index.md | 2 +- .../cpp/aspose.pdf/excelsaveoptions/_index.md | 2 +- .../aspose.pdf/exportfieldsoptions/_index.md | 2 +- .../exportfieldstojsonoptions/_index.md | 2 +- .../aspose.pdf/exportimportmessages/_index.md | 2 +- .../cpp/aspose.pdf/extendedboolean/_index.md | 2 +- .../cpp/aspose.pdf/extractimagemode/_index.md | 2 +- .../fieldserializationresult/_index.md | 2 +- .../fieldserializationstatus/_index.md | 2 +- .../cpp/aspose.pdf/fieldvaluetype/_index.md | 2 +- english/cpp/aspose.pdf/filechecker/_index.md | 2 +- english/cpp/aspose.pdf/fileencoding/_index.md | 2 +- .../cpp/aspose.pdf/filehyperlink/_index.md | 2 +- english/cpp/aspose.pdf/fileparams/_index.md | 2 +- .../aspose.pdf/filespecification/_index.md | 2 +- .../filespecificationcomparer/_index.md | 2 +- english/cpp/aspose.pdf/fixup/_index.md | 2 +- english/cpp/aspose.pdf/floatingbox/_index.md | 2 +- .../fontembeddingexception/_index.md | 2 +- .../aspose.pdf/fontembeddingoptions/_index.md | 2 +- .../fontnotfoundexception/_index.md | 2 +- .../aspose.pdf/fontsubsetstrategy/_index.md | 2 +- english/cpp/aspose.pdf/footer/_index.md | 2 +- .../cpp/aspose.pdf/footerartifact/_index.md | 2 +- .../aspose.pdf/formattedfragment/_index.md | 2 +- english/cpp/aspose.pdf/graphinfo/_index.md | 2 +- english/cpp/aspose.pdf/group/_index.md | 2 +- english/cpp/aspose.pdf/header/_index.md | 2 +- .../cpp/aspose.pdf/headerartifact/_index.md | 2 +- english/cpp/aspose.pdf/headerfooter/_index.md | 2 +- .../cpp/aspose.pdf/headerfooterdata/_index.md | 2 +- .../aspose.pdf/headerfootersettings/_index.md | 2 +- english/cpp/aspose.pdf/heading/_index.md | 2 +- .../cpp/aspose.pdf/headinglevels/_index.md | 2 +- .../headingrecognitionstrategy/_index.md | 2 +- english/cpp/aspose.pdf/headingstyle/_index.md | 2 +- .../aspose.pdf/horizontalalignment/_index.md | 2 +- .../cpp/aspose.pdf/htmldocumenttype/_index.md | 2 +- english/cpp/aspose.pdf/htmlfragment/_index.md | 2 +- .../cpp/aspose.pdf/htmlloadoptions/_index.md | 4 +- .../get_createlogicalstructure/_index.md | 29 ++++++++++ .../get_htmlmediatype/_index.md | 2 +- .../get_inputencoding/_index.md | 2 +- .../get_isembedfonts/_index.md | 2 +- .../get_isprioritycsspagerule/_index.md | 2 +- .../get_isrendertosinglepage/_index.md | 2 +- .../htmlloadoptions/get_pageinfo/_index.md | 2 +- .../get_pagelayoutoption/_index.md | 2 +- .../set_createlogicalstructure/_index.md | 29 ++++++++++ .../set_htmlmediatype/_index.md | 2 +- .../set_inputencoding/_index.md | 2 +- .../set_isembedfonts/_index.md | 2 +- .../set_isprioritycsspagerule/_index.md | 2 +- .../set_isrendertosinglepage/_index.md | 2 +- .../htmlloadoptions/set_pageinfo/_index.md | 2 +- .../set_pagelayoutoption/_index.md | 2 +- .../cpp/aspose.pdf/htmlmediatype/_index.md | 2 +- .../aspose.pdf/htmlpagelayoutoption/_index.md | 2 +- .../cpp/aspose.pdf/htmlsaveoptions/_index.md | 2 +- english/cpp/aspose.pdf/hyperlink/_index.md | 2 +- .../aspose.pdf/iboundscheckableitem/_index.md | 2 +- .../icolorspaceconversionstrategy/_index.md | 2 +- english/cpp/aspose.pdf/id/_index.md | 2 +- .../iindexbitmapconverter/_index.md | 2 +- english/cpp/aspose.pdf/image/_index.md | 2 +- .../aspose.pdf/imagedeleteaction/_index.md | 2 +- .../cpp/aspose.pdf/imagefiletype/_index.md | 2 +- .../cpp/aspose.pdf/imagefiltertype/_index.md | 2 +- .../cpp/aspose.pdf/imageplacement/_index.md | 2 +- .../imageplacementabsorber/_index.md | 2 +- .../imageplacementcollection/_index.md | 2 +- english/cpp/aspose.pdf/imagestamp/_index.md | 2 +- .../aspose.pdf/importfieldsoptions/_index.md | 2 +- .../importfieldstojsonoptions/_index.md | 2 +- english/cpp/aspose.pdf/importformat/_index.md | 2 +- .../cpp/aspose.pdf/importoptions/_index.md | 2 +- .../inameddestinationcollection/_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 +- .../aspose.pdf/ioperatorcontainer/_index.md | 2 +- .../aspose.pdf/ioperatorselector/_index.md | 2 +- .../cpp/aspose.pdf/ipagesetoptions/_index.md | 2 +- .../cpp/aspose.pdf/ipipelineoptions/_index.md | 2 +- .../isupportsmemorycleanup/_index.md | 2 +- .../aspose.pdf/itexinputdirectory/_index.md | 2 +- .../aspose.pdf/itexoutputdirectory/_index.md | 2 +- .../cpp/aspose.pdf/iwarningcallback/_index.md | 2 +- .../aspose.pdf/javascriptcollection/_index.md | 2 +- .../javascriptextensionsexception/_index.md | 2 +- .../cpp/aspose.pdf/latexfragment/_index.md | 2 +- .../cpp/aspose.pdf/latexloadoptions/_index.md | 2 +- .../cpp/aspose.pdf/latexsaveoptions/_index.md | 2 +- english/cpp/aspose.pdf/layer/_index.md | 2 +- english/cpp/aspose.pdf/left/_index.md | 2 +- english/cpp/aspose.pdf/levelformat/_index.md | 2 +- english/cpp/aspose.pdf/license/_index.md | 2 +- english/cpp/aspose.pdf/licenseinfo/_index.md | 2 +- english/cpp/aspose.pdf/licensestate/_index.md | 2 +- .../cpp/aspose.pdf/linebreakstyle/_index.md | 2 +- english/cpp/aspose.pdf/loadformat/_index.md | 3 +- english/cpp/aspose.pdf/loadoptions/_index.md | 2 +- .../cpp/aspose.pdf/localhyperlink/_index.md | 2 +- english/cpp/aspose.pdf/margininfo/_index.md | 2 +- .../aspose.pdf/markdownsaveoptions/_index.md | 2 +- english/cpp/aspose.pdf/matrix/_index.md | 2 +- english/cpp/aspose.pdf/matrix3d/_index.md | 2 +- .../cpp/aspose.pdf/mdloadoptions/_index.md | 2 +- english/cpp/aspose.pdf/metadata/_index.md | 2 +- english/cpp/aspose.pdf/metered/_index.md | 2 +- .../cpp/aspose.pdf/mhtloadoptions/_index.md | 2 +- .../aspose.pdf/mobixmlsaveoptions/_index.md | 2 +- .../nameddestinationcollection/_index.md | 2 +- english/cpp/aspose.pdf/note/_index.md | 2 +- .../cpp/aspose.pdf/numberingstyle/_index.md | 2 +- .../_index.md | 2 +- english/cpp/aspose.pdf/ocspsettings/_index.md | 2 +- .../cpp/aspose.pdf/ofdloadoptions/_index.md | 2 +- english/cpp/aspose.pdf/operator!=/_index.md | 2 +- english/cpp/aspose.pdf/operator/_index.md | 2 +- english/cpp/aspose.pdf/operator==/_index.md | 2 +- .../aspose.pdf/operatorcollection/_index.md | 2 +- .../cpp/aspose.pdf/operatorselector/_index.md | 2 +- english/cpp/aspose.pdf/opi/_index.md | 2 +- .../optimizedmemorystream/_index.md | 2 +- .../aspose.pdf/outlinecollection/_index.md | 2 +- .../outlineitemcollection/_index.md | 2 +- english/cpp/aspose.pdf/outlines/_index.md | 2 +- english/cpp/aspose.pdf/outputintent/_index.md | 2 +- .../cpp/aspose.pdf/outputintents/_index.md | 2 +- english/cpp/aspose.pdf/page/_index.md | 2 +- .../aspose.pdf/pageactioncollection/_index.md | 2 +- .../cpp/aspose.pdf/pagecollection/_index.md | 2 +- .../pagecollectionextensions/_index.md | 2 +- .../aspose.pdf/pagecoordinatetype/_index.md | 2 +- english/cpp/aspose.pdf/pagedate/_index.md | 2 +- .../cpp/aspose.pdf/pageextensions/_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 +- english/cpp/aspose.pdf/pagenumber/_index.md | 2 +- .../cpp/aspose.pdf/pagenumberstamp/_index.md | 2 +- english/cpp/aspose.pdf/pagerange/_index.md | 2 +- english/cpp/aspose.pdf/pagesize/_index.md | 2 +- .../aspose.pdf/paginationartifact/_index.md | 2 +- .../paragraphpositioningmode/_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 | 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 | 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 | 2 +- english/cpp/aspose.pdf/permissions/_index.md | 2 +- english/cpp/aspose.pdf/point/_index.md | 2 +- english/cpp/aspose.pdf/point3d/_index.md | 2 +- .../cpp/aspose.pdf/pptxsaveoptions/_index.md | 2 +- 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 | 2 +- english/cpp/aspose.pdf/rectangle/_index.md | 2 +- .../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/right/_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 | 3 +- .../saveoptions/borderinfo/_index.md | 2 +- .../saveoptions/borderpartstyle/_index.md | 2 +- .../saveoptions/get_cacheglyphs/_index.md | 2 +- .../saveoptions/get_closeresponse/_index.md | 2 +- .../saveoptions/get_saveformat/_index.md | 2 +- .../saveoptions/get_warninghandler/_index.md | 2 +- .../saveoptions/htmlborderlinetype/_index.md | 2 +- .../saveoptions/margininfo/_index.md | 2 +- .../saveoptions/marginpartstyle/_index.md | 2 +- .../nodelevelresourcetype/_index.md | 2 +- .../saveoptions/resourcesavinginfo/_index.md | 2 +- .../saveoptions/saveoptions/_index.md | 23 ++++++++ .../saveoptions/set_cacheglyphs/_index.md | 2 +- .../saveoptions/set_closeresponse/_index.md | 2 +- .../saveoptions/set_warninghandler/_index.md | 2 +- .../signaturescompromisedetector/_index.md | 2 +- english/cpp/aspose.pdf/stamp/_index.md | 2 +- english/cpp/aspose.pdf/subset/_index.md | 2 +- .../cpp/aspose.pdf/svgloadoptions/_index.md | 2 +- .../cpp/aspose.pdf/svgsaveoptions/_index.md | 2 +- 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 | 2 +- english/cpp/aspose.pdf/textstamp/_index.md | 2 +- .../aspose.pdf/timestampsettings/_index.md | 2 +- english/cpp/aspose.pdf/tocinfo/_index.md | 2 +- .../tounicodeprocessingrules/_index.md | 2 +- .../cpp/aspose.pdf/txtloadoptions/_index.md | 2 +- .../aspose.pdf/unifiedsaveoptions/_index.md | 2 +- .../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 | 2 +- .../cpp/aspose.pdf/xslfoloadoptions/_index.md | 2 +- english/cpp/system/decimal/_index.md | 4 +- .../cpp/system/decimal/operator%/_index.md | 4 +- .../cpp/system/decimal/operator%=/_index.md | 4 +- english/cpp/system/nullable/_index.md | 1 + .../cpp/system/nullable/set_value/_index.md | 28 ++++++++++ .../cpp/system/nullable/tostring/_index.md | 2 +- .../cpp/system/nullable/valuetype/_index.md | 2 +- english/cpp/system/objectext/_index.md | 1 + .../system/objectext/coalesceassign/_index.md | 38 +++++++++++++ .../objectext/coalesceinternal/_index.md | 2 +- english/cpp/system/objectext/equals/_index.md | 2 +- .../objectext/explicitcasttoobject/_index.md | 2 +- .../system/objectext/gethashcode/_index.md | 2 +- english/cpp/system/objectext/is/_index.md | 2 +- .../system/objectext/isboxedvalue/_index.md | 2 +- .../objectext/objecttounknown/_index.md | 2 +- .../cpp/system/objectext/tostring/_index.md | 2 +- english/cpp/system/objectext/unbox/_index.md | 2 +- .../objectext/unboxstringsafe/_index.md | 2 +- .../objectext/unboxtonullable/_index.md | 2 +- .../system/objectext/unknownisnull/_index.md | 2 +- .../objectext/unknowntoobject/_index.md | 2 +- 435 files changed, 2147 insertions(+), 369 deletions(-) create mode 100644 english/cpp/aspose.pdf.lowcode/timestamp/_index.md create mode 100644 english/cpp/aspose.pdf.lowcode/timestamp/dispose/_index.md create mode 100644 english/cpp/aspose.pdf.lowcode/timestamp/process/_index.md create mode 100644 english/cpp/aspose.pdf.lowcode/timestampoptions/_index.md create mode 100644 english/cpp/aspose.pdf.lowcode/timestampoptions/get_basicauthcredentials/_index.md create mode 100644 english/cpp/aspose.pdf.lowcode/timestampoptions/get_digesthashalgorithm/_index.md create mode 100644 english/cpp/aspose.pdf.lowcode/timestampoptions/get_operationname/_index.md create mode 100644 english/cpp/aspose.pdf.lowcode/timestampoptions/get_pagenumber/_index.md create mode 100644 english/cpp/aspose.pdf.lowcode/timestampoptions/get_rectangle/_index.md create mode 100644 english/cpp/aspose.pdf.lowcode/timestampoptions/get_serverurl/_index.md create mode 100644 english/cpp/aspose.pdf.lowcode/timestampoptions/get_sigcontact/_index.md create mode 100644 english/cpp/aspose.pdf.lowcode/timestampoptions/get_siglocation/_index.md create mode 100644 english/cpp/aspose.pdf.lowcode/timestampoptions/get_sigreason/_index.md create mode 100644 english/cpp/aspose.pdf.lowcode/timestampoptions/get_visible/_index.md create mode 100644 english/cpp/aspose.pdf.lowcode/timestampoptions/set_basicauthcredentials/_index.md create mode 100644 english/cpp/aspose.pdf.lowcode/timestampoptions/set_digesthashalgorithm/_index.md create mode 100644 english/cpp/aspose.pdf.lowcode/timestampoptions/set_pagenumber/_index.md create mode 100644 english/cpp/aspose.pdf.lowcode/timestampoptions/set_rectangle/_index.md create mode 100644 english/cpp/aspose.pdf.lowcode/timestampoptions/set_serverurl/_index.md create mode 100644 english/cpp/aspose.pdf.lowcode/timestampoptions/set_sigcontact/_index.md create mode 100644 english/cpp/aspose.pdf.lowcode/timestampoptions/set_siglocation/_index.md create mode 100644 english/cpp/aspose.pdf.lowcode/timestampoptions/set_sigreason/_index.md create mode 100644 english/cpp/aspose.pdf.lowcode/timestampoptions/set_visible/_index.md create mode 100644 english/cpp/aspose.pdf.lowcode/timestampoptions/timestampoptions/_index.md create mode 100644 english/cpp/aspose.pdf.security/unsignedcontentabsorber/_index.md create mode 100644 english/cpp/aspose.pdf.security/unsignedcontentabsorber/result/_index.md create mode 100644 english/cpp/aspose.pdf.security/unsignedcontentabsorber/result/get_coverage/_index.md create mode 100644 english/cpp/aspose.pdf.security/unsignedcontentabsorber/result/get_message/_index.md create mode 100644 english/cpp/aspose.pdf.security/unsignedcontentabsorber/result/get_success/_index.md create mode 100644 english/cpp/aspose.pdf.security/unsignedcontentabsorber/result/get_unsignedcontent/_index.md create mode 100644 english/cpp/aspose.pdf.security/unsignedcontentabsorber/trygetcontent/_index.md create mode 100644 english/cpp/aspose.pdf.security/unsignedcontentabsorber/unsignedcontent/_index.md create mode 100644 english/cpp/aspose.pdf.security/unsignedcontentabsorber/unsignedcontent/get_annotations/_index.md create mode 100644 english/cpp/aspose.pdf.security/unsignedcontentabsorber/unsignedcontent/get_forms/_index.md create mode 100644 english/cpp/aspose.pdf.security/unsignedcontentabsorber/unsignedcontent/get_pages/_index.md create mode 100644 english/cpp/aspose.pdf.security/unsignedcontentabsorber/unsignedcontent/get_xforms/_index.md create mode 100644 english/cpp/aspose.pdf.security/unsignedcontentabsorber/unsignedcontentabsorber/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraphabsorber/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraphabsorber/get_rectangles/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraphabsorber/get_textparagraphs/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraphabsorber/set_rectangles/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraphabsorber/set_textparagraphs/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraphabsorber/textparagraphabsorber/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraphabsorber/visit/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraphcollection/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraphcollection/add/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraphcollection/clear/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraphcollection/contains/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraphcollection/copyto/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraphcollection/get_count/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraphcollection/get_isreadonly/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraphcollection/get_issynchronized/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraphcollection/get_syncroot/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraphcollection/getenumerator/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraphcollection/idx_get/_index.md create mode 100644 english/cpp/aspose.pdf.text/textparagraphcollection/remove/_index.md create mode 100644 english/cpp/aspose.pdf/autodetectedformatloadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/autodetectedformatloadoptions/autodetectedformatloadoptions/_index.md create mode 100644 english/cpp/aspose.pdf/brush/_index.md create mode 100644 english/cpp/aspose.pdf/htmlloadoptions/get_createlogicalstructure/_index.md create mode 100644 english/cpp/aspose.pdf/htmlloadoptions/set_createlogicalstructure/_index.md create mode 100644 english/cpp/aspose.pdf/saveoptions/saveoptions/_index.md create mode 100644 english/cpp/system/nullable/set_value/_index.md create mode 100644 english/cpp/system/objectext/coalesceassign/_index.md diff --git a/english/cpp/aspose.pdf.annotations/appearancedictionary/copyto/_index.md b/english/cpp/aspose.pdf.annotations/appearancedictionary/copyto/_index.md index f01a89c327..d044e0cdc2 100644 --- a/english/cpp/aspose.pdf.annotations/appearancedictionary/copyto/_index.md +++ b/english/cpp/aspose.pdf.annotations/appearancedictionary/copyto/_index.md @@ -21,7 +21,11 @@ void Aspose::Pdf::Annotations::AppearanceDictionary::CopyTo(System::ArrayPtr\>\> | The one-dimensional Array that is the destination of the elements copied from ICollection. The Array must have zero-based indexing. | | arrayIndex | int32_t | The zero-based index in array at which copying begins. | +## Remarks + + +No bounds checking is performed. ## See Also * Typedef [ArrayPtr](../../../system/arrayptr/) diff --git a/english/cpp/aspose.pdf.lowcode/_index.md b/english/cpp/aspose.pdf.lowcode/_index.md index 3f193b5ae8..4300e6f8f1 100644 --- a/english/cpp/aspose.pdf.lowcode/_index.md +++ b/english/cpp/aspose.pdf.lowcode/_index.md @@ -103,6 +103,8 @@ url: /cpp/aspose.pdf.lowcode/ | [TextExtractorOptions](./textextractoroptions/) | Represents text extraction options for the [TextExtractor](./textextractor/) plugin. | | [Tiff](./tiff/) | Represents [Pdf](../aspose.pdf/) to [Tiff](./tiff/) plugin. | | [TiffOptions](./tiffoptions/) | Represents [Pdf](../aspose.pdf/) to [Tiff](./tiff/) converter options for the [Tiff](./tiff/) plugin. | +| [Timestamp](./timestamp/) | Plugin that adds a timestamp to a digital signature using a timestamp server. | +| [TimestampOptions](./timestampoptions/) | Options for the [Timestamp](./timestamp/) Low‑Code plugin. | | [TocGenerator](./tocgenerator/) | Represents Aspose.PDF [TocGenerator](./tocgenerator/) plugin. | | [TocOptions](./tocoptions/) | Represents options for add table of contents to document by [TocGenerator](./tocgenerator/) plugin. | | [XlsConverter](./xlsconverter/) | Represents [XlsConverter](./xlsconverter/) plugin. | diff --git a/english/cpp/aspose.pdf.lowcode/conversionmode/_index.md b/english/cpp/aspose.pdf.lowcode/conversionmode/_index.md index ec53c64392..47df3e98f9 100644 --- a/english/cpp/aspose.pdf.lowcode/conversionmode/_index.md +++ b/english/cpp/aspose.pdf.lowcode/conversionmode/_index.md @@ -4,7 +4,7 @@ linktitle: ConversionMode second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::LowCode::ConversionMode enum. Defines conversion mode of the output document in C++.' type: docs -weight: 9300 +weight: 9500 url: /cpp/aspose.pdf.lowcode/conversionmode/ --- ## ConversionMode enum diff --git a/english/cpp/aspose.pdf.lowcode/datatype/_index.md b/english/cpp/aspose.pdf.lowcode/datatype/_index.md index 41bf119de0..874f0cc95a 100644 --- a/english/cpp/aspose.pdf.lowcode/datatype/_index.md +++ b/english/cpp/aspose.pdf.lowcode/datatype/_index.md @@ -4,7 +4,7 @@ linktitle: DataType second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::LowCode::DataType enum. Represents possible types of data for plugin processing in C++.' type: docs -weight: 9400 +weight: 9600 url: /cpp/aspose.pdf.lowcode/datatype/ --- ## DataType enum diff --git a/english/cpp/aspose.pdf.lowcode/pdfastandardversion/_index.md b/english/cpp/aspose.pdf.lowcode/pdfastandardversion/_index.md index 36138ff0ca..146e152287 100644 --- a/english/cpp/aspose.pdf.lowcode/pdfastandardversion/_index.md +++ b/english/cpp/aspose.pdf.lowcode/pdfastandardversion/_index.md @@ -4,7 +4,7 @@ linktitle: PdfAStandardVersion second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::LowCode::PdfAStandardVersion enum. Specifies the PDF/A standard version for a PDF document in C++.' type: docs -weight: 9500 +weight: 9700 url: /cpp/aspose.pdf.lowcode/pdfastandardversion/ --- ## PdfAStandardVersion enum diff --git a/english/cpp/aspose.pdf.lowcode/saveformat/_index.md b/english/cpp/aspose.pdf.lowcode/saveformat/_index.md index e29993f18e..80fe35ef08 100644 --- a/english/cpp/aspose.pdf.lowcode/saveformat/_index.md +++ b/english/cpp/aspose.pdf.lowcode/saveformat/_index.md @@ -4,7 +4,7 @@ linktitle: SaveFormat second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::LowCode::SaveFormat enum. Allows to specify .doc or .docx file format in C++.' type: docs -weight: 9600 +weight: 9800 url: /cpp/aspose.pdf.lowcode/saveformat/ --- ## SaveFormat enum diff --git a/english/cpp/aspose.pdf.lowcode/selectfield/_index.md b/english/cpp/aspose.pdf.lowcode/selectfield/_index.md index c13346aacf..65d3f84ad0 100644 --- a/english/cpp/aspose.pdf.lowcode/selectfield/_index.md +++ b/english/cpp/aspose.pdf.lowcode/selectfield/_index.md @@ -4,7 +4,7 @@ linktitle: SelectField second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::LowCode::SelectField typedef in C++.' type: docs -weight: 9700 +weight: 9900 url: /cpp/aspose.pdf.lowcode/selectfield/ --- ## SelectField typedef diff --git a/english/cpp/aspose.pdf.lowcode/timestamp/_index.md b/english/cpp/aspose.pdf.lowcode/timestamp/_index.md new file mode 100644 index 0000000000..a36f0ba266 --- /dev/null +++ b/english/cpp/aspose.pdf.lowcode/timestamp/_index.md @@ -0,0 +1,31 @@ +--- +title: Aspose::Pdf::LowCode::Timestamp class +linktitle: Timestamp +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::LowCode::Timestamp class. Plugin that adds a timestamp to a digital signature using a timestamp server in C++.' +type: docs +weight: 9000 +url: /cpp/aspose.pdf.lowcode/timestamp/ +--- +## Timestamp class + + +Plugin that adds a timestamp to a digital signature using a timestamp server. + +```cpp +class Timestamp : public Aspose::Pdf::LowCode::IPlugin, + public System::IDisposable +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Dispose](./dispose/)() override | Releases resources used by the plugin. | +| [Process](./process/)(System::SharedPtr\) override | Processes the timestamp plugin with the supplied options. | +## See Also + +* Class [IPlugin](../iplugin/) +* Class [IDisposable](../../system/idisposable/) +* Namespace [Aspose::Pdf::LowCode](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.lowcode/timestamp/dispose/_index.md b/english/cpp/aspose.pdf.lowcode/timestamp/dispose/_index.md new file mode 100644 index 0000000000..923267ba45 --- /dev/null +++ b/english/cpp/aspose.pdf.lowcode/timestamp/dispose/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::LowCode::Timestamp::Dispose method +linktitle: Dispose +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::LowCode::Timestamp::Dispose method. Releases resources used by the plugin in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.lowcode/timestamp/dispose/ +--- +## Timestamp::Dispose method + + +Releases resources used by the plugin. + +```cpp +void Aspose::Pdf::LowCode::Timestamp::Dispose() override +``` + +## See Also + +* Class [Timestamp](../) +* Namespace [Aspose::Pdf::LowCode](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.lowcode/timestamp/process/_index.md b/english/cpp/aspose.pdf.lowcode/timestamp/process/_index.md new file mode 100644 index 0000000000..2919b8700a --- /dev/null +++ b/english/cpp/aspose.pdf.lowcode/timestamp/process/_index.md @@ -0,0 +1,35 @@ +--- +title: Aspose::Pdf::LowCode::Timestamp::Process method +linktitle: Process +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::LowCode::Timestamp::Process method. Processes the timestamp plugin with the supplied options in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.lowcode/timestamp/process/ +--- +## Timestamp::Process method + + +Processes the timestamp plugin with the supplied options. + +```cpp +System::SharedPtr Aspose::Pdf::LowCode::Timestamp::Process(System::SharedPtr options) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| options | System::SharedPtr\ | An options object containing inputs, outputs and timestamp settings. | + +### ReturnValue + +A [ResultContainer](../../resultcontainer/) with the operation results. + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [ResultContainer](../../resultcontainer/) +* Class [IPluginOptions](../../ipluginoptions/) +* Class [Timestamp](../) +* Namespace [Aspose::Pdf::LowCode](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.lowcode/timestampoptions/_index.md b/english/cpp/aspose.pdf.lowcode/timestampoptions/_index.md new file mode 100644 index 0000000000..e9e1cae70d --- /dev/null +++ b/english/cpp/aspose.pdf.lowcode/timestampoptions/_index.md @@ -0,0 +1,48 @@ +--- +title: Aspose::Pdf::LowCode::TimestampOptions class +linktitle: TimestampOptions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::LowCode::TimestampOptions class. Options for the Timestamp Low‑Code plugin in C++.' +type: docs +weight: 9100 +url: /cpp/aspose.pdf.lowcode/timestampoptions/ +--- +## TimestampOptions class + + +Options for the [Timestamp](../timestamp/) Low‑Code plugin. + +```cpp +class TimestampOptions : public Aspose::Pdf::LowCode::PdfConverterOptions +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_BasicAuthCredentials](./get_basicauthcredentials/)() const | Gets the basic authentication credentials, Username and password are combined into a string "username:password". | +| [get_DigestHashAlgorithm](./get_digesthashalgorithm/)() const | Digest hash algorithm to use for the timestamp. Defaults to Sha256. | +| [get_OperationName](./get_operationname/)() override | Returns operation name. | +| [get_PageNumber](./get_pagenumber/)() const | [Page](../../aspose.pdf/page/) number on which the timestamped signature will be applied. | +| [get_Rectangle](./get_rectangle/)() const | [Rectangle](../../aspose.pdf/rectangle/) defining the annotation area (ignored when Visible is false). | +| [get_ServerUrl](./get_serverurl/)() const | URL of the timestamp server. | +| [get_SigContact](./get_sigcontact/)() const | Contact information for the signature. | +| [get_SigLocation](./get_siglocation/)() const | Location for the signature. | +| [get_SigReason](./get_sigreason/)() const | Reason for the signature. | +| [get_Visible](./get_visible/)() const | Visibility flag – false for a pure timestamp (no visible annotation). | +| [set_BasicAuthCredentials](./set_basicauthcredentials/)(System::String) | Sets the basic authentication credentials, Username and password are combined into a string "username:password". | +| [set_DigestHashAlgorithm](./set_digesthashalgorithm/)(Aspose::Pdf::DigestHashAlgorithm) | Digest hash algorithm to use for the timestamp. Defaults to Sha256. | +| [set_PageNumber](./set_pagenumber/)(int32_t) | [Page](../../aspose.pdf/page/) number on which the timestamped signature will be applied. | +| [set_Rectangle](./set_rectangle/)(System::Drawing::Rectangle) | [Rectangle](../../aspose.pdf/rectangle/) defining the annotation area (ignored when Visible is false). | +| [set_ServerUrl](./set_serverurl/)(System::String) | URL of the timestamp server. | +| [set_SigContact](./set_sigcontact/)(System::String) | Contact information for the signature. | +| [set_SigLocation](./set_siglocation/)(System::String) | Location for the signature. | +| [set_SigReason](./set_sigreason/)(System::String) | Reason for the signature. | +| [set_Visible](./set_visible/)(bool) | Visibility flag – false for a pure timestamp (no visible annotation). | +| [TimestampOptions](./timestampoptions/)(System::String, System::String) | Creates a new instance with a PFX file path and password. | +| [TimestampOptions](./timestampoptions/)(System::SharedPtr\, System::String) | Creates a new instance with a PFX stream and password. | +## See Also + +* Class [PdfConverterOptions](../pdfconverteroptions/) +* Namespace [Aspose::Pdf::LowCode](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.lowcode/timestampoptions/get_basicauthcredentials/_index.md b/english/cpp/aspose.pdf.lowcode/timestampoptions/get_basicauthcredentials/_index.md new file mode 100644 index 0000000000..4bc35c400f --- /dev/null +++ b/english/cpp/aspose.pdf.lowcode/timestampoptions/get_basicauthcredentials/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::LowCode::TimestampOptions::get_BasicAuthCredentials method +linktitle: get_BasicAuthCredentials +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::LowCode::TimestampOptions::get_BasicAuthCredentials method. Gets the basic authentication credentials, Username and password are combined into a string "username:password" in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.lowcode/timestampoptions/get_basicauthcredentials/ +--- +## TimestampOptions::get_BasicAuthCredentials method + + +Gets the basic authentication credentials, Username and password are combined into a string "username:password". + +```cpp +System::String Aspose::Pdf::LowCode::TimestampOptions::get_BasicAuthCredentials() const +``` + +## See Also + +* Class [String](../../../system/string/) +* Class [TimestampOptions](../) +* Namespace [Aspose::Pdf::LowCode](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.lowcode/timestampoptions/get_digesthashalgorithm/_index.md b/english/cpp/aspose.pdf.lowcode/timestampoptions/get_digesthashalgorithm/_index.md new file mode 100644 index 0000000000..39d0748a87 --- /dev/null +++ b/english/cpp/aspose.pdf.lowcode/timestampoptions/get_digesthashalgorithm/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::LowCode::TimestampOptions::get_DigestHashAlgorithm method +linktitle: get_DigestHashAlgorithm +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::LowCode::TimestampOptions::get_DigestHashAlgorithm method. Digest hash algorithm to use for the timestamp. Defaults to Sha256 in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.lowcode/timestampoptions/get_digesthashalgorithm/ +--- +## TimestampOptions::get_DigestHashAlgorithm method + + +Digest hash algorithm to use for the timestamp. Defaults to Sha256. + +```cpp +Aspose::Pdf::DigestHashAlgorithm Aspose::Pdf::LowCode::TimestampOptions::get_DigestHashAlgorithm() const +``` + +## See Also + +* Enum [DigestHashAlgorithm](../../../aspose.pdf/digesthashalgorithm/) +* Class [TimestampOptions](../) +* Namespace [Aspose::Pdf::LowCode](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.lowcode/timestampoptions/get_operationname/_index.md b/english/cpp/aspose.pdf.lowcode/timestampoptions/get_operationname/_index.md new file mode 100644 index 0000000000..7832cce56e --- /dev/null +++ b/english/cpp/aspose.pdf.lowcode/timestampoptions/get_operationname/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::LowCode::TimestampOptions::get_OperationName method +linktitle: get_OperationName +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::LowCode::TimestampOptions::get_OperationName method. Returns operation name in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.lowcode/timestampoptions/get_operationname/ +--- +## TimestampOptions::get_OperationName method + + +Returns operation name. + +```cpp +System::String Aspose::Pdf::LowCode::TimestampOptions::get_OperationName() override +``` + +## See Also + +* Class [String](../../../system/string/) +* Class [TimestampOptions](../) +* Namespace [Aspose::Pdf::LowCode](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.lowcode/timestampoptions/get_pagenumber/_index.md b/english/cpp/aspose.pdf.lowcode/timestampoptions/get_pagenumber/_index.md new file mode 100644 index 0000000000..21b6184902 --- /dev/null +++ b/english/cpp/aspose.pdf.lowcode/timestampoptions/get_pagenumber/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::LowCode::TimestampOptions::get_PageNumber method +linktitle: get_PageNumber +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::LowCode::TimestampOptions::get_PageNumber method. Page number on which the timestamped signature will be applied in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.lowcode/timestampoptions/get_pagenumber/ +--- +## TimestampOptions::get_PageNumber method + + +[Page](../../../aspose.pdf/page/) number on which the timestamped signature will be applied. + +```cpp +int32_t Aspose::Pdf::LowCode::TimestampOptions::get_PageNumber() const +``` + +## See Also + +* Class [TimestampOptions](../) +* Namespace [Aspose::Pdf::LowCode](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.lowcode/timestampoptions/get_rectangle/_index.md b/english/cpp/aspose.pdf.lowcode/timestampoptions/get_rectangle/_index.md new file mode 100644 index 0000000000..1ce12e78e3 --- /dev/null +++ b/english/cpp/aspose.pdf.lowcode/timestampoptions/get_rectangle/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::LowCode::TimestampOptions::get_Rectangle method +linktitle: get_Rectangle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::LowCode::TimestampOptions::get_Rectangle method. Rectangle defining the annotation area (ignored when Visible is false) in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.lowcode/timestampoptions/get_rectangle/ +--- +## TimestampOptions::get_Rectangle method + + +[Rectangle](../../../aspose.pdf/rectangle/) defining the annotation area (ignored when Visible is false). + +```cpp +System::Drawing::Rectangle Aspose::Pdf::LowCode::TimestampOptions::get_Rectangle() const +``` + +## See Also + +* Class [Rectangle](../../../system.drawing/rectangle/) +* Class [TimestampOptions](../) +* Namespace [Aspose::Pdf::LowCode](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.lowcode/timestampoptions/get_serverurl/_index.md b/english/cpp/aspose.pdf.lowcode/timestampoptions/get_serverurl/_index.md new file mode 100644 index 0000000000..593f8a2e12 --- /dev/null +++ b/english/cpp/aspose.pdf.lowcode/timestampoptions/get_serverurl/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::LowCode::TimestampOptions::get_ServerUrl method +linktitle: get_ServerUrl +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::LowCode::TimestampOptions::get_ServerUrl method. URL of the timestamp server in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.lowcode/timestampoptions/get_serverurl/ +--- +## TimestampOptions::get_ServerUrl method + + +URL of the timestamp server. + +```cpp +System::String Aspose::Pdf::LowCode::TimestampOptions::get_ServerUrl() const +``` + +## See Also + +* Class [String](../../../system/string/) +* Class [TimestampOptions](../) +* Namespace [Aspose::Pdf::LowCode](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.lowcode/timestampoptions/get_sigcontact/_index.md b/english/cpp/aspose.pdf.lowcode/timestampoptions/get_sigcontact/_index.md new file mode 100644 index 0000000000..5cfa915f0e --- /dev/null +++ b/english/cpp/aspose.pdf.lowcode/timestampoptions/get_sigcontact/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::LowCode::TimestampOptions::get_SigContact method +linktitle: get_SigContact +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::LowCode::TimestampOptions::get_SigContact method. Contact information for the signature in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.lowcode/timestampoptions/get_sigcontact/ +--- +## TimestampOptions::get_SigContact method + + +Contact information for the signature. + +```cpp +System::String Aspose::Pdf::LowCode::TimestampOptions::get_SigContact() const +``` + +## See Also + +* Class [String](../../../system/string/) +* Class [TimestampOptions](../) +* Namespace [Aspose::Pdf::LowCode](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.lowcode/timestampoptions/get_siglocation/_index.md b/english/cpp/aspose.pdf.lowcode/timestampoptions/get_siglocation/_index.md new file mode 100644 index 0000000000..8088c4e3c8 --- /dev/null +++ b/english/cpp/aspose.pdf.lowcode/timestampoptions/get_siglocation/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::LowCode::TimestampOptions::get_SigLocation method +linktitle: get_SigLocation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::LowCode::TimestampOptions::get_SigLocation method. Location for the signature in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.lowcode/timestampoptions/get_siglocation/ +--- +## TimestampOptions::get_SigLocation method + + +Location for the signature. + +```cpp +System::String Aspose::Pdf::LowCode::TimestampOptions::get_SigLocation() const +``` + +## See Also + +* Class [String](../../../system/string/) +* Class [TimestampOptions](../) +* Namespace [Aspose::Pdf::LowCode](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.lowcode/timestampoptions/get_sigreason/_index.md b/english/cpp/aspose.pdf.lowcode/timestampoptions/get_sigreason/_index.md new file mode 100644 index 0000000000..c6d50d38e7 --- /dev/null +++ b/english/cpp/aspose.pdf.lowcode/timestampoptions/get_sigreason/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::LowCode::TimestampOptions::get_SigReason method +linktitle: get_SigReason +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::LowCode::TimestampOptions::get_SigReason method. Reason for the signature in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.lowcode/timestampoptions/get_sigreason/ +--- +## TimestampOptions::get_SigReason method + + +Reason for the signature. + +```cpp +System::String Aspose::Pdf::LowCode::TimestampOptions::get_SigReason() const +``` + +## See Also + +* Class [String](../../../system/string/) +* Class [TimestampOptions](../) +* Namespace [Aspose::Pdf::LowCode](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.lowcode/timestampoptions/get_visible/_index.md b/english/cpp/aspose.pdf.lowcode/timestampoptions/get_visible/_index.md new file mode 100644 index 0000000000..0bc6bac278 --- /dev/null +++ b/english/cpp/aspose.pdf.lowcode/timestampoptions/get_visible/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::LowCode::TimestampOptions::get_Visible method +linktitle: get_Visible +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::LowCode::TimestampOptions::get_Visible method. Visibility flag – false for a pure timestamp (no visible annotation) in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.lowcode/timestampoptions/get_visible/ +--- +## TimestampOptions::get_Visible method + + +Visibility flag – false for a pure timestamp (no visible annotation). + +```cpp +bool Aspose::Pdf::LowCode::TimestampOptions::get_Visible() const +``` + +## See Also + +* Class [TimestampOptions](../) +* Namespace [Aspose::Pdf::LowCode](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.lowcode/timestampoptions/set_basicauthcredentials/_index.md b/english/cpp/aspose.pdf.lowcode/timestampoptions/set_basicauthcredentials/_index.md new file mode 100644 index 0000000000..ded25e170c --- /dev/null +++ b/english/cpp/aspose.pdf.lowcode/timestampoptions/set_basicauthcredentials/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::LowCode::TimestampOptions::set_BasicAuthCredentials method +linktitle: set_BasicAuthCredentials +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::LowCode::TimestampOptions::set_BasicAuthCredentials method. Sets the basic authentication credentials, Username and password are combined into a string "username:password" in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.lowcode/timestampoptions/set_basicauthcredentials/ +--- +## TimestampOptions::set_BasicAuthCredentials method + + +Sets the basic authentication credentials, Username and password are combined into a string "username:password". + +```cpp +void Aspose::Pdf::LowCode::TimestampOptions::set_BasicAuthCredentials(System::String value) +``` + +## See Also + +* Class [String](../../../system/string/) +* Class [TimestampOptions](../) +* Namespace [Aspose::Pdf::LowCode](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.lowcode/timestampoptions/set_digesthashalgorithm/_index.md b/english/cpp/aspose.pdf.lowcode/timestampoptions/set_digesthashalgorithm/_index.md new file mode 100644 index 0000000000..43eedc0d07 --- /dev/null +++ b/english/cpp/aspose.pdf.lowcode/timestampoptions/set_digesthashalgorithm/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::LowCode::TimestampOptions::set_DigestHashAlgorithm method +linktitle: set_DigestHashAlgorithm +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::LowCode::TimestampOptions::set_DigestHashAlgorithm method. Digest hash algorithm to use for the timestamp. Defaults to Sha256 in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.lowcode/timestampoptions/set_digesthashalgorithm/ +--- +## TimestampOptions::set_DigestHashAlgorithm method + + +Digest hash algorithm to use for the timestamp. Defaults to Sha256. + +```cpp +void Aspose::Pdf::LowCode::TimestampOptions::set_DigestHashAlgorithm(Aspose::Pdf::DigestHashAlgorithm value) +``` + +## See Also + +* Enum [DigestHashAlgorithm](../../../aspose.pdf/digesthashalgorithm/) +* Class [TimestampOptions](../) +* Namespace [Aspose::Pdf::LowCode](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.lowcode/timestampoptions/set_pagenumber/_index.md b/english/cpp/aspose.pdf.lowcode/timestampoptions/set_pagenumber/_index.md new file mode 100644 index 0000000000..2981fcee41 --- /dev/null +++ b/english/cpp/aspose.pdf.lowcode/timestampoptions/set_pagenumber/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::LowCode::TimestampOptions::set_PageNumber method +linktitle: set_PageNumber +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::LowCode::TimestampOptions::set_PageNumber method. Page number on which the timestamped signature will be applied in C++.' +type: docs +weight: 1400 +url: /cpp/aspose.pdf.lowcode/timestampoptions/set_pagenumber/ +--- +## TimestampOptions::set_PageNumber method + + +[Page](../../../aspose.pdf/page/) number on which the timestamped signature will be applied. + +```cpp +void Aspose::Pdf::LowCode::TimestampOptions::set_PageNumber(int32_t value) +``` + +## See Also + +* Class [TimestampOptions](../) +* Namespace [Aspose::Pdf::LowCode](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.lowcode/timestampoptions/set_rectangle/_index.md b/english/cpp/aspose.pdf.lowcode/timestampoptions/set_rectangle/_index.md new file mode 100644 index 0000000000..1743602f84 --- /dev/null +++ b/english/cpp/aspose.pdf.lowcode/timestampoptions/set_rectangle/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::LowCode::TimestampOptions::set_Rectangle method +linktitle: set_Rectangle +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::LowCode::TimestampOptions::set_Rectangle method. Rectangle defining the annotation area (ignored when Visible is false) in C++.' +type: docs +weight: 1500 +url: /cpp/aspose.pdf.lowcode/timestampoptions/set_rectangle/ +--- +## TimestampOptions::set_Rectangle method + + +[Rectangle](../../../aspose.pdf/rectangle/) defining the annotation area (ignored when Visible is false). + +```cpp +void Aspose::Pdf::LowCode::TimestampOptions::set_Rectangle(System::Drawing::Rectangle value) +``` + +## See Also + +* Class [Rectangle](../../../system.drawing/rectangle/) +* Class [TimestampOptions](../) +* Namespace [Aspose::Pdf::LowCode](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.lowcode/timestampoptions/set_serverurl/_index.md b/english/cpp/aspose.pdf.lowcode/timestampoptions/set_serverurl/_index.md new file mode 100644 index 0000000000..209b8df3de --- /dev/null +++ b/english/cpp/aspose.pdf.lowcode/timestampoptions/set_serverurl/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::LowCode::TimestampOptions::set_ServerUrl method +linktitle: set_ServerUrl +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::LowCode::TimestampOptions::set_ServerUrl method. URL of the timestamp server in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf.lowcode/timestampoptions/set_serverurl/ +--- +## TimestampOptions::set_ServerUrl method + + +URL of the timestamp server. + +```cpp +void Aspose::Pdf::LowCode::TimestampOptions::set_ServerUrl(System::String value) +``` + +## See Also + +* Class [String](../../../system/string/) +* Class [TimestampOptions](../) +* Namespace [Aspose::Pdf::LowCode](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.lowcode/timestampoptions/set_sigcontact/_index.md b/english/cpp/aspose.pdf.lowcode/timestampoptions/set_sigcontact/_index.md new file mode 100644 index 0000000000..553c77f3dd --- /dev/null +++ b/english/cpp/aspose.pdf.lowcode/timestampoptions/set_sigcontact/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::LowCode::TimestampOptions::set_SigContact method +linktitle: set_SigContact +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::LowCode::TimestampOptions::set_SigContact method. Contact information for the signature in C++.' +type: docs +weight: 1700 +url: /cpp/aspose.pdf.lowcode/timestampoptions/set_sigcontact/ +--- +## TimestampOptions::set_SigContact method + + +Contact information for the signature. + +```cpp +void Aspose::Pdf::LowCode::TimestampOptions::set_SigContact(System::String value) +``` + +## See Also + +* Class [String](../../../system/string/) +* Class [TimestampOptions](../) +* Namespace [Aspose::Pdf::LowCode](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.lowcode/timestampoptions/set_siglocation/_index.md b/english/cpp/aspose.pdf.lowcode/timestampoptions/set_siglocation/_index.md new file mode 100644 index 0000000000..92f6f1620f --- /dev/null +++ b/english/cpp/aspose.pdf.lowcode/timestampoptions/set_siglocation/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::LowCode::TimestampOptions::set_SigLocation method +linktitle: set_SigLocation +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::LowCode::TimestampOptions::set_SigLocation method. Location for the signature in C++.' +type: docs +weight: 1800 +url: /cpp/aspose.pdf.lowcode/timestampoptions/set_siglocation/ +--- +## TimestampOptions::set_SigLocation method + + +Location for the signature. + +```cpp +void Aspose::Pdf::LowCode::TimestampOptions::set_SigLocation(System::String value) +``` + +## See Also + +* Class [String](../../../system/string/) +* Class [TimestampOptions](../) +* Namespace [Aspose::Pdf::LowCode](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.lowcode/timestampoptions/set_sigreason/_index.md b/english/cpp/aspose.pdf.lowcode/timestampoptions/set_sigreason/_index.md new file mode 100644 index 0000000000..e0fb27f3aa --- /dev/null +++ b/english/cpp/aspose.pdf.lowcode/timestampoptions/set_sigreason/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::LowCode::TimestampOptions::set_SigReason method +linktitle: set_SigReason +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::LowCode::TimestampOptions::set_SigReason method. Reason for the signature in C++.' +type: docs +weight: 1900 +url: /cpp/aspose.pdf.lowcode/timestampoptions/set_sigreason/ +--- +## TimestampOptions::set_SigReason method + + +Reason for the signature. + +```cpp +void Aspose::Pdf::LowCode::TimestampOptions::set_SigReason(System::String value) +``` + +## See Also + +* Class [String](../../../system/string/) +* Class [TimestampOptions](../) +* Namespace [Aspose::Pdf::LowCode](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.lowcode/timestampoptions/set_visible/_index.md b/english/cpp/aspose.pdf.lowcode/timestampoptions/set_visible/_index.md new file mode 100644 index 0000000000..f317b43309 --- /dev/null +++ b/english/cpp/aspose.pdf.lowcode/timestampoptions/set_visible/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::LowCode::TimestampOptions::set_Visible method +linktitle: set_Visible +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::LowCode::TimestampOptions::set_Visible method. Visibility flag – false for a pure timestamp (no visible annotation) in C++.' +type: docs +weight: 2000 +url: /cpp/aspose.pdf.lowcode/timestampoptions/set_visible/ +--- +## TimestampOptions::set_Visible method + + +Visibility flag – false for a pure timestamp (no visible annotation). + +```cpp +void Aspose::Pdf::LowCode::TimestampOptions::set_Visible(bool value) +``` + +## See Also + +* Class [TimestampOptions](../) +* Namespace [Aspose::Pdf::LowCode](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.lowcode/timestampoptions/timestampoptions/_index.md b/english/cpp/aspose.pdf.lowcode/timestampoptions/timestampoptions/_index.md new file mode 100644 index 0000000000..7635d0cdc6 --- /dev/null +++ b/english/cpp/aspose.pdf.lowcode/timestampoptions/timestampoptions/_index.md @@ -0,0 +1,53 @@ +--- +title: Aspose::Pdf::LowCode::TimestampOptions::TimestampOptions constructor +linktitle: TimestampOptions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::LowCode::TimestampOptions::TimestampOptions constructor. Creates a new instance with a PFX stream and password in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.lowcode/timestampoptions/timestampoptions/ +--- +## TimestampOptions::TimestampOptions(System::SharedPtr\, System::String) constructor + + +Creates a new instance with a PFX stream and password. + +```cpp +Aspose::Pdf::LowCode::TimestampOptions::TimestampOptions(System::SharedPtr pfxStream, System::String password) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pfxStream | System::SharedPtr\ | Stream containing the PFX data. | +| password | System::String | Password for the PFX. | + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [Stream](../../../system.io/stream/) +* Class [String](../../../system/string/) +* Class [TimestampOptions](../) +* Namespace [Aspose::Pdf::LowCode](../../) +* Library [Aspose.PDF for C++](../../../) +## TimestampOptions::TimestampOptions(System::String, System::String) constructor + + +Creates a new instance with a PFX file path and password. + +```cpp +Aspose::Pdf::LowCode::TimestampOptions::TimestampOptions(System::String pfxPath, System::String password) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| pfxPath | System::String | Path to the PFX file. | +| password | System::String | Password for the PFX file. | + +## See Also + +* Class [String](../../../system/string/) +* Class [TimestampOptions](../) +* Namespace [Aspose::Pdf::LowCode](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.lowcode/tocgenerator/_index.md b/english/cpp/aspose.pdf.lowcode/tocgenerator/_index.md index 78176dbbda..94a4f5d6d7 100644 --- a/english/cpp/aspose.pdf.lowcode/tocgenerator/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tocgenerator/_index.md @@ -4,7 +4,7 @@ linktitle: TocGenerator second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::LowCode::TocGenerator class. Represents Aspose.PDF TocGenerator plugin in C++.' type: docs -weight: 9000 +weight: 9200 url: /cpp/aspose.pdf.lowcode/tocgenerator/ --- ## TocGenerator class diff --git a/english/cpp/aspose.pdf.lowcode/tocoptions/_index.md b/english/cpp/aspose.pdf.lowcode/tocoptions/_index.md index 4c0971194d..6e4cca3d5f 100644 --- a/english/cpp/aspose.pdf.lowcode/tocoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tocoptions/_index.md @@ -4,7 +4,7 @@ linktitle: TocOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::LowCode::TocOptions class. Represents options for add table of contents to document by TocGenerator plugin in C++.' type: docs -weight: 9100 +weight: 9300 url: /cpp/aspose.pdf.lowcode/tocoptions/ --- ## TocOptions class diff --git a/english/cpp/aspose.pdf.lowcode/xlsconverter/_index.md b/english/cpp/aspose.pdf.lowcode/xlsconverter/_index.md index 7f8489f0cc..a7066ecd1a 100644 --- a/english/cpp/aspose.pdf.lowcode/xlsconverter/_index.md +++ b/english/cpp/aspose.pdf.lowcode/xlsconverter/_index.md @@ -4,7 +4,7 @@ linktitle: XlsConverter second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::LowCode::XlsConverter class. Represents XlsConverter plugin in C++.' type: docs -weight: 9200 +weight: 9400 url: /cpp/aspose.pdf.lowcode/xlsconverter/ --- ## XlsConverter class diff --git a/english/cpp/aspose.pdf.security/_index.md b/english/cpp/aspose.pdf.security/_index.md index 6f3b6c5e38..8ad9b52e3c 100644 --- a/english/cpp/aspose.pdf.security/_index.md +++ b/english/cpp/aspose.pdf.security/_index.md @@ -24,6 +24,7 @@ The **[Aspose.Pdf.Security](./)** namespace contains classes used for encryption | [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. | +| [UnsignedContentAbsorber](./unsignedcontentabsorber/) | Represents a class for extracting unsigned content from a PDF file managed by digital signatures. | | [ValidationOptions](./validationoptions/) | Represents options for validating a digital signature in a PDF document. | | [ValidationResult](./validationresult/) | Represents the result of a validation process for a certificate. | ## Enums diff --git a/english/cpp/aspose.pdf.security/cryptographicstandard/_index.md b/english/cpp/aspose.pdf.security/cryptographicstandard/_index.md index 0dd3b55997..8341a1732e 100644 --- a/english/cpp/aspose.pdf.security/cryptographicstandard/_index.md +++ b/english/cpp/aspose.pdf.security/cryptographicstandard/_index.md @@ -4,7 +4,7 @@ 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: 1300 +weight: 1400 url: /cpp/aspose.pdf.security/cryptographicstandard/ --- ## CryptographicStandard enum diff --git a/english/cpp/aspose.pdf.security/signaturealgorithmtype/_index.md b/english/cpp/aspose.pdf.security/signaturealgorithmtype/_index.md index e04c4ceec4..99b9f772bb 100644 --- a/english/cpp/aspose.pdf.security/signaturealgorithmtype/_index.md +++ b/english/cpp/aspose.pdf.security/signaturealgorithmtype/_index.md @@ -4,7 +4,7 @@ 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: 1400 +weight: 1500 url: /cpp/aspose.pdf.security/signaturealgorithmtype/ --- ## SignatureAlgorithmType enum diff --git a/english/cpp/aspose.pdf.security/signaturelengthmismatchexception/_index.md b/english/cpp/aspose.pdf.security/signaturelengthmismatchexception/_index.md index c8678545e2..b921ec04d0 100644 --- a/english/cpp/aspose.pdf.security/signaturelengthmismatchexception/_index.md +++ b/english/cpp/aspose.pdf.security/signaturelengthmismatchexception/_index.md @@ -4,7 +4,7 @@ linktitle: SignatureLengthMismatchException second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::Security::SignatureLengthMismatchException typedef in C++.' type: docs -weight: 1800 +weight: 1900 url: /cpp/aspose.pdf.security/signaturelengthmismatchexception/ --- ## SignatureLengthMismatchException typedef diff --git a/english/cpp/aspose.pdf.security/unsignedcontentabsorber/_index.md b/english/cpp/aspose.pdf.security/unsignedcontentabsorber/_index.md new file mode 100644 index 0000000000..19e6a7a73b --- /dev/null +++ b/english/cpp/aspose.pdf.security/unsignedcontentabsorber/_index.md @@ -0,0 +1,33 @@ +--- +title: Aspose::Pdf::Security::UnsignedContentAbsorber class +linktitle: UnsignedContentAbsorber +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Security::UnsignedContentAbsorber class. Represents a class for extracting unsigned content from a PDF file managed by digital signatures in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.security/unsignedcontentabsorber/ +--- +## UnsignedContentAbsorber class + + +Represents a class for extracting unsigned content from a PDF file managed by digital signatures. + +```cpp +class UnsignedContentAbsorber : public System::Object +``` + +## Nested classes + +* Class [Result](./result/) +* Class [UnsignedContent](./unsignedcontent/) +## Methods + +| Method | Description | +| --- | --- | +| [TryGetContent](./trygetcontent/)() | Attempt to retrieve the unsigned content from the associated document. | +| [UnsignedContentAbsorber](./unsignedcontentabsorber/)(System::SharedPtr\) | Represents a class used for processing unsigned content. | +## See Also + +* Class [Object](../../system/object/) +* Namespace [Aspose::Pdf::Security](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.security/unsignedcontentabsorber/result/_index.md b/english/cpp/aspose.pdf.security/unsignedcontentabsorber/result/_index.md new file mode 100644 index 0000000000..d4644059d0 --- /dev/null +++ b/english/cpp/aspose.pdf.security/unsignedcontentabsorber/result/_index.md @@ -0,0 +1,36 @@ +--- +title: Aspose::Pdf::Security::UnsignedContentAbsorber::Result class +linktitle: Result +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Security::UnsignedContentAbsorber::Result class. Encapsulates the result of an operation attempting to extract unsigned content from a PDF document in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.security/unsignedcontentabsorber/result/ +--- +## Result class + + +Encapsulates the result of an operation attempting to extract unsigned content from a PDF document. + +```cpp +class Result : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_Coverage](./get_coverage/)() const | Gets a value indicating the extent to which the document is covered by valid digital signatures. | +| [get_Message](./get_message/)() const | Gets a message describing the outcome of the operation. | +| [get_Success](./get_success/)() const | Gets a value indicating whether the operation to retrieve unsigned content from the document was successful. | +| [get_UnsignedContent](./get_unsignedcontent/)() const | Gets an unsigned content. | +## Remarks + + +This class provides information about the success of the operation, details of the unsigned content, a message describing the outcome, and the coverage status of the document's signatures. +## See Also + +* Class [Object](../../../system/object/) +* Class [UnsignedContentAbsorber](../) +* Namespace [Aspose::Pdf::Security](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.security/unsignedcontentabsorber/result/get_coverage/_index.md b/english/cpp/aspose.pdf.security/unsignedcontentabsorber/result/get_coverage/_index.md new file mode 100644 index 0000000000..5363d2fe96 --- /dev/null +++ b/english/cpp/aspose.pdf.security/unsignedcontentabsorber/result/get_coverage/_index.md @@ -0,0 +1,25 @@ +--- +title: Aspose::Pdf::Security::UnsignedContentAbsorber::Result::get_Coverage method +linktitle: get_Coverage +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Security::UnsignedContentAbsorber::Result::get_Coverage method. Gets a value indicating the extent to which the document is covered by valid digital signatures in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.security/unsignedcontentabsorber/result/get_coverage/ +--- +## Result::get_Coverage method + + +Gets a value indicating the extent to which the document is covered by valid digital signatures. + +```cpp +Signatures::SignaturesCoverage Aspose::Pdf::Security::UnsignedContentAbsorber::Result::get_Coverage() const +``` + +## See Also + +* Enum [SignaturesCoverage](../../../../aspose.pdf.signatures/signaturescoverage/) +* Class [Result](../) +* Class [UnsignedContentAbsorber](../../) +* Namespace [Aspose::Pdf::Security](../../../) +* Library [Aspose.PDF for C++](../../../../) diff --git a/english/cpp/aspose.pdf.security/unsignedcontentabsorber/result/get_message/_index.md b/english/cpp/aspose.pdf.security/unsignedcontentabsorber/result/get_message/_index.md new file mode 100644 index 0000000000..8e84ff60fc --- /dev/null +++ b/english/cpp/aspose.pdf.security/unsignedcontentabsorber/result/get_message/_index.md @@ -0,0 +1,25 @@ +--- +title: Aspose::Pdf::Security::UnsignedContentAbsorber::Result::get_Message method +linktitle: get_Message +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Security::UnsignedContentAbsorber::Result::get_Message method. Gets a message describing the outcome of the operation in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.security/unsignedcontentabsorber/result/get_message/ +--- +## Result::get_Message method + + +Gets a message describing the outcome of the operation. + +```cpp +System::String Aspose::Pdf::Security::UnsignedContentAbsorber::Result::get_Message() const +``` + +## See Also + +* Class [String](../../../../system/string/) +* Class [Result](../) +* Class [UnsignedContentAbsorber](../../) +* Namespace [Aspose::Pdf::Security](../../../) +* Library [Aspose.PDF for C++](../../../../) diff --git a/english/cpp/aspose.pdf.security/unsignedcontentabsorber/result/get_success/_index.md b/english/cpp/aspose.pdf.security/unsignedcontentabsorber/result/get_success/_index.md new file mode 100644 index 0000000000..b9a0c8a773 --- /dev/null +++ b/english/cpp/aspose.pdf.security/unsignedcontentabsorber/result/get_success/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Security::UnsignedContentAbsorber::Result::get_Success method +linktitle: get_Success +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Security::UnsignedContentAbsorber::Result::get_Success method. Gets a value indicating whether the operation to retrieve unsigned content from the document was successful in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.security/unsignedcontentabsorber/result/get_success/ +--- +## Result::get_Success method + + +Gets a value indicating whether the operation to retrieve unsigned content from the document was successful. + +```cpp +bool Aspose::Pdf::Security::UnsignedContentAbsorber::Result::get_Success() const +``` + +## See Also + +* Class [Result](../) +* Class [UnsignedContentAbsorber](../../) +* Namespace [Aspose::Pdf::Security](../../../) +* Library [Aspose.PDF for C++](../../../../) diff --git a/english/cpp/aspose.pdf.security/unsignedcontentabsorber/result/get_unsignedcontent/_index.md b/english/cpp/aspose.pdf.security/unsignedcontentabsorber/result/get_unsignedcontent/_index.md new file mode 100644 index 0000000000..d34eb70e49 --- /dev/null +++ b/english/cpp/aspose.pdf.security/unsignedcontentabsorber/result/get_unsignedcontent/_index.md @@ -0,0 +1,26 @@ +--- +title: Aspose::Pdf::Security::UnsignedContentAbsorber::Result::get_UnsignedContent method +linktitle: get_UnsignedContent +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Security::UnsignedContentAbsorber::Result::get_UnsignedContent method. Gets an unsigned content in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.security/unsignedcontentabsorber/result/get_unsignedcontent/ +--- +## Result::get_UnsignedContent method + + +Gets an unsigned content. + +```cpp +const System::SharedPtr & Aspose::Pdf::Security::UnsignedContentAbsorber::Result::get_UnsignedContent() const +``` + +## See Also + +* Typedef [SharedPtr](../../../../system/sharedptr/) +* Class [UnsignedContent](../../unsignedcontent/) +* Class [Result](../) +* Class [UnsignedContentAbsorber](../../) +* Namespace [Aspose::Pdf::Security](../../../) +* Library [Aspose.PDF for C++](../../../../) diff --git a/english/cpp/aspose.pdf.security/unsignedcontentabsorber/trygetcontent/_index.md b/english/cpp/aspose.pdf.security/unsignedcontentabsorber/trygetcontent/_index.md new file mode 100644 index 0000000000..f40634ac43 --- /dev/null +++ b/english/cpp/aspose.pdf.security/unsignedcontentabsorber/trygetcontent/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Security::UnsignedContentAbsorber::TryGetContent method +linktitle: TryGetContent +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Security::UnsignedContentAbsorber::TryGetContent method. Attempt to retrieve the unsigned content from the associated document in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.security/unsignedcontentabsorber/trygetcontent/ +--- +## UnsignedContentAbsorber::TryGetContent method + + +Attempt to retrieve the unsigned content from the associated document. + +```cpp +System::SharedPtr Aspose::Pdf::Security::UnsignedContentAbsorber::TryGetContent() +``` + + +### ReturnValue + +A [UnsignedContentAbsorber::Result](../result/) object containing details about the unsigned content, the coverage of digital signatures, the operation's success status, and an informational message. + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [Result](../result/) +* Class [UnsignedContentAbsorber](../) +* Namespace [Aspose::Pdf::Security](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.security/unsignedcontentabsorber/unsignedcontent/_index.md b/english/cpp/aspose.pdf.security/unsignedcontentabsorber/unsignedcontent/_index.md new file mode 100644 index 0000000000..e974eb319e --- /dev/null +++ b/english/cpp/aspose.pdf.security/unsignedcontentabsorber/unsignedcontent/_index.md @@ -0,0 +1,32 @@ +--- +title: Aspose::Pdf::Security::UnsignedContentAbsorber::UnsignedContent class +linktitle: UnsignedContent +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Security::UnsignedContentAbsorber::UnsignedContent class. Encapsulates unsigned content elements extracted from a PDF document. This class provides access to pages, form fields, XForms, and annotations that are part of the unsigned content within the document in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.security/unsignedcontentabsorber/unsignedcontent/ +--- +## UnsignedContent class + + +Encapsulates unsigned content elements extracted from a PDF document. This class provides access to pages, form fields, XForms, and annotations that are part of the unsigned content within the document. + +```cpp +class UnsignedContent : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_Annotations](./get_annotations/)() const | Gets a dictionary of modified annotations that may have changed or added. | +| [get_Forms](./get_forms/)() const | Gets form fields that have been incrementally changed or added. | +| [get_Pages](./get_pages/)() const | Gets a list of pages whose content is unsigned or has been incrementally changed. | +| [get_XForms](./get_xforms/)() const | Gets a dictionary of modified [XForm](../../../aspose.pdf/xform/) objects that may have changed, although the page itself has not changed (not in the Pages list). | +## See Also + +* Class [Object](../../../system/object/) +* Class [UnsignedContentAbsorber](../) +* Namespace [Aspose::Pdf::Security](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.security/unsignedcontentabsorber/unsignedcontent/get_annotations/_index.md b/english/cpp/aspose.pdf.security/unsignedcontentabsorber/unsignedcontent/get_annotations/_index.md new file mode 100644 index 0000000000..ed10369544 --- /dev/null +++ b/english/cpp/aspose.pdf.security/unsignedcontentabsorber/unsignedcontent/get_annotations/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Security::UnsignedContentAbsorber::UnsignedContent::get_Annotations method +linktitle: get_Annotations +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Security::UnsignedContentAbsorber::UnsignedContent::get_Annotations method. Gets a dictionary of modified annotations that may have changed or added in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.security/unsignedcontentabsorber/unsignedcontent/get_annotations/ +--- +## UnsignedContent::get_Annotations method + + +Gets a dictionary of modified annotations that may have changed or added. + +```cpp +const System::SharedPtr>> & Aspose::Pdf::Security::UnsignedContentAbsorber::UnsignedContent::get_Annotations() const +``` + +## See Also + +* Typedef [SharedPtr](../../../../system/sharedptr/) +* Class [Dictionary](../../../../system.collections.generic/dictionary/) +* Class [Annotation](../../../../aspose.pdf.annotations/annotation/) +* Class [UnsignedContent](../) +* Class [UnsignedContentAbsorber](../../) +* Namespace [Aspose::Pdf::Security](../../../) +* Library [Aspose.PDF for C++](../../../../) diff --git a/english/cpp/aspose.pdf.security/unsignedcontentabsorber/unsignedcontent/get_forms/_index.md b/english/cpp/aspose.pdf.security/unsignedcontentabsorber/unsignedcontent/get_forms/_index.md new file mode 100644 index 0000000000..e53b880ba9 --- /dev/null +++ b/english/cpp/aspose.pdf.security/unsignedcontentabsorber/unsignedcontent/get_forms/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Security::UnsignedContentAbsorber::UnsignedContent::get_Forms method +linktitle: get_Forms +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Security::UnsignedContentAbsorber::UnsignedContent::get_Forms method. Gets form fields that have been incrementally changed or added in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.security/unsignedcontentabsorber/unsignedcontent/get_forms/ +--- +## UnsignedContent::get_Forms method + + +Gets form fields that have been incrementally changed or added. + +```cpp +const System::SharedPtr>> & Aspose::Pdf::Security::UnsignedContentAbsorber::UnsignedContent::get_Forms() const +``` + +## See Also + +* Typedef [SharedPtr](../../../../system/sharedptr/) +* Class [List](../../../../system.collections.generic/list/) +* Class [WidgetAnnotation](../../../../aspose.pdf.annotations/widgetannotation/) +* Class [UnsignedContent](../) +* Class [UnsignedContentAbsorber](../../) +* Namespace [Aspose::Pdf::Security](../../../) +* Library [Aspose.PDF for C++](../../../../) diff --git a/english/cpp/aspose.pdf.security/unsignedcontentabsorber/unsignedcontent/get_pages/_index.md b/english/cpp/aspose.pdf.security/unsignedcontentabsorber/unsignedcontent/get_pages/_index.md new file mode 100644 index 0000000000..f92578caf1 --- /dev/null +++ b/english/cpp/aspose.pdf.security/unsignedcontentabsorber/unsignedcontent/get_pages/_index.md @@ -0,0 +1,31 @@ +--- +title: Aspose::Pdf::Security::UnsignedContentAbsorber::UnsignedContent::get_Pages method +linktitle: get_Pages +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Security::UnsignedContentAbsorber::UnsignedContent::get_Pages method. Gets a list of pages whose content is unsigned or has been incrementally changed in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.security/unsignedcontentabsorber/unsignedcontent/get_pages/ +--- +## UnsignedContent::get_Pages method + + +Gets a list of pages whose content is unsigned or has been incrementally changed. + +```cpp +const System::SharedPtr>> & Aspose::Pdf::Security::UnsignedContentAbsorber::UnsignedContent::get_Pages() const +``` + +## Remarks + + +The page is considered modified and XForms are not checked and do not appear in the XForms list. +## See Also + +* Typedef [SharedPtr](../../../../system/sharedptr/) +* Class [List](../../../../system.collections.generic/list/) +* Class [Page](../../../../aspose.pdf/page/) +* Class [UnsignedContent](../) +* Class [UnsignedContentAbsorber](../../) +* Namespace [Aspose::Pdf::Security](../../../) +* Library [Aspose.PDF for C++](../../../../) diff --git a/english/cpp/aspose.pdf.security/unsignedcontentabsorber/unsignedcontent/get_xforms/_index.md b/english/cpp/aspose.pdf.security/unsignedcontentabsorber/unsignedcontent/get_xforms/_index.md new file mode 100644 index 0000000000..2f63844df9 --- /dev/null +++ b/english/cpp/aspose.pdf.security/unsignedcontentabsorber/unsignedcontent/get_xforms/_index.md @@ -0,0 +1,27 @@ +--- +title: Aspose::Pdf::Security::UnsignedContentAbsorber::UnsignedContent::get_XForms method +linktitle: get_XForms +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Security::UnsignedContentAbsorber::UnsignedContent::get_XForms method. Gets a dictionary of modified XForm objects that may have changed, although the page itself has not changed (not in the Pages list) in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.security/unsignedcontentabsorber/unsignedcontent/get_xforms/ +--- +## UnsignedContent::get_XForms method + + +Gets a dictionary of modified [XForm](../../../../aspose.pdf/xform/) objects that may have changed, although the page itself has not changed (not in the Pages list). + +```cpp +const System::SharedPtr>> & Aspose::Pdf::Security::UnsignedContentAbsorber::UnsignedContent::get_XForms() const +``` + +## See Also + +* Typedef [SharedPtr](../../../../system/sharedptr/) +* Class [Dictionary](../../../../system.collections.generic/dictionary/) +* Class [XForm](../../../../aspose.pdf/xform/) +* Class [UnsignedContent](../) +* Class [UnsignedContentAbsorber](../../) +* Namespace [Aspose::Pdf::Security](../../../) +* Library [Aspose.PDF for C++](../../../../) diff --git a/english/cpp/aspose.pdf.security/unsignedcontentabsorber/unsignedcontentabsorber/_index.md b/english/cpp/aspose.pdf.security/unsignedcontentabsorber/unsignedcontentabsorber/_index.md new file mode 100644 index 0000000000..61ba9f5564 --- /dev/null +++ b/english/cpp/aspose.pdf.security/unsignedcontentabsorber/unsignedcontentabsorber/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Security::UnsignedContentAbsorber::UnsignedContentAbsorber constructor +linktitle: UnsignedContentAbsorber +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Security::UnsignedContentAbsorber::UnsignedContentAbsorber constructor. Represents a class used for processing unsigned content in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.security/unsignedcontentabsorber/unsignedcontentabsorber/ +--- +## UnsignedContentAbsorber::UnsignedContentAbsorber constructor + + +Represents a class used for processing unsigned content. + +```cpp +Aspose::Pdf::Security::UnsignedContentAbsorber::UnsignedContentAbsorber(System::SharedPtr signature) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| signature | System::SharedPtr\ | A [PdfFileSignature](../) object representing a digital signature. | + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [PdfFileSignature](../../../aspose.pdf.facades/pdffilesignature/) +* Class [UnsignedContentAbsorber](../) +* Namespace [Aspose::Pdf::Security](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.security/validationmethod/_index.md b/english/cpp/aspose.pdf.security/validationmethod/_index.md index 59b7adff77..d643730d12 100644 --- a/english/cpp/aspose.pdf.security/validationmethod/_index.md +++ b/english/cpp/aspose.pdf.security/validationmethod/_index.md @@ -4,7 +4,7 @@ linktitle: ValidationMethod second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Security::ValidationMethod enum. Represents an enum defined the method used for certificate validation in C++.' type: docs -weight: 1500 +weight: 1600 url: /cpp/aspose.pdf.security/validationmethod/ --- ## ValidationMethod enum diff --git a/english/cpp/aspose.pdf.security/validationmode/_index.md b/english/cpp/aspose.pdf.security/validationmode/_index.md index 8d8c7e0cd8..2b0749d414 100644 --- a/english/cpp/aspose.pdf.security/validationmode/_index.md +++ b/english/cpp/aspose.pdf.security/validationmode/_index.md @@ -4,7 +4,7 @@ linktitle: ValidationMode second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Security::ValidationMode enum. Specifies the validation mode for PDF signature validation processes in C++.' type: docs -weight: 1600 +weight: 1700 url: /cpp/aspose.pdf.security/validationmode/ --- ## ValidationMode enum diff --git a/english/cpp/aspose.pdf.security/validationoptions/_index.md b/english/cpp/aspose.pdf.security/validationoptions/_index.md index 0fa2e2ef05..e4075593f5 100644 --- a/english/cpp/aspose.pdf.security/validationoptions/_index.md +++ b/english/cpp/aspose.pdf.security/validationoptions/_index.md @@ -4,7 +4,7 @@ linktitle: ValidationOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Security::ValidationOptions class. Represents options for validating a digital signature in a PDF document in C++.' type: docs -weight: 1100 +weight: 1200 url: /cpp/aspose.pdf.security/validationoptions/ --- ## ValidationOptions class diff --git a/english/cpp/aspose.pdf.security/validationresult/_index.md b/english/cpp/aspose.pdf.security/validationresult/_index.md index f9cbfbd14a..d741dd0358 100644 --- a/english/cpp/aspose.pdf.security/validationresult/_index.md +++ b/english/cpp/aspose.pdf.security/validationresult/_index.md @@ -4,7 +4,7 @@ linktitle: ValidationResult second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Security::ValidationResult class. Represents the result of a validation process for a certificate in C++.' type: docs -weight: 1200 +weight: 1300 url: /cpp/aspose.pdf.security/validationresult/ --- ## ValidationResult class diff --git a/english/cpp/aspose.pdf.security/validationstatus/_index.md b/english/cpp/aspose.pdf.security/validationstatus/_index.md index a077effa43..f2c82a2e97 100644 --- a/english/cpp/aspose.pdf.security/validationstatus/_index.md +++ b/english/cpp/aspose.pdf.security/validationstatus/_index.md @@ -4,7 +4,7 @@ linktitle: ValidationStatus second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Security::ValidationStatus enum. Represents the validation status of a certificate validation in C++.' type: docs -weight: 1700 +weight: 1800 url: /cpp/aspose.pdf.security/validationstatus/ --- ## ValidationStatus enum diff --git a/english/cpp/aspose.pdf.text/_index.md b/english/cpp/aspose.pdf.text/_index.md index 8cc87cdf93..8b16f790a6 100644 --- a/english/cpp/aspose.pdf.text/_index.md +++ b/english/cpp/aspose.pdf.text/_index.md @@ -62,6 +62,8 @@ url: /cpp/aspose.pdf.text/ | [TextFragmentState](./textfragmentstate/) | Represents a text state of a text fragment. | | [TextOptions](./textoptions/) | Represents text processing options. | | [TextParagraph](./textparagraph/) | Represents text paragraphs as multiline text object. | +| [TextParagraphAbsorber](./textparagraphabsorber/) | Represents an absorber object of text paragraphs. Performs text search and provides access to search results via [TextParagraphAbsorber::TextParagraphs](../) collection. | +| [TextParagraphCollection](./textparagraphcollection/) | Represents a text paragraphs collection. | | [TextReplaceOptions](./textreplaceoptions/) | Represents text replace options. | | [TextSearchOptions](./textsearchoptions/) | Represents text search options. | | [TextSegment](./textsegment/) | Represents segment of [Pdf](../aspose.pdf/) text. | diff --git a/english/cpp/aspose.pdf.text/coordinateorigin/_index.md b/english/cpp/aspose.pdf.text/coordinateorigin/_index.md index b7cac61ae6..68e303c8bf 100644 --- a/english/cpp/aspose.pdf.text/coordinateorigin/_index.md +++ b/english/cpp/aspose.pdf.text/coordinateorigin/_index.md @@ -4,7 +4,7 @@ linktitle: CoordinateOrigin second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Text::CoordinateOrigin enum. TextCoordinateOrigin enumeration in C++.' type: docs -weight: 5500 +weight: 5700 url: /cpp/aspose.pdf.text/coordinateorigin/ --- ## CoordinateOrigin enum diff --git a/english/cpp/aspose.pdf.text/fontstyles/_index.md b/english/cpp/aspose.pdf.text/fontstyles/_index.md index 4fbc8802ad..99a5cfd0c8 100644 --- a/english/cpp/aspose.pdf.text/fontstyles/_index.md +++ b/english/cpp/aspose.pdf.text/fontstyles/_index.md @@ -4,7 +4,7 @@ linktitle: FontStyles second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Text::FontStyles enum. Specifies style information applied to text in C++.' type: docs -weight: 5600 +weight: 5800 url: /cpp/aspose.pdf.text/fontstyles/ --- ## FontStyles enum diff --git a/english/cpp/aspose.pdf.text/fonttypes/_index.md b/english/cpp/aspose.pdf.text/fonttypes/_index.md index 264b912d4b..4e0dc33a42 100644 --- a/english/cpp/aspose.pdf.text/fonttypes/_index.md +++ b/english/cpp/aspose.pdf.text/fonttypes/_index.md @@ -4,7 +4,7 @@ linktitle: FontTypes second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Text::FontTypes enum. Supported font types enumeration in C++.' type: docs -weight: 5700 +weight: 5900 url: /cpp/aspose.pdf.text/fonttypes/ --- ## FontTypes enum diff --git a/english/cpp/aspose.pdf.text/substitutionfontcategories/_index.md b/english/cpp/aspose.pdf.text/substitutionfontcategories/_index.md index 123b37cb43..5f5896355a 100644 --- a/english/cpp/aspose.pdf.text/substitutionfontcategories/_index.md +++ b/english/cpp/aspose.pdf.text/substitutionfontcategories/_index.md @@ -4,7 +4,7 @@ linktitle: SubstitutionFontCategories second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Text::SubstitutionFontCategories enum. Represents font categories that can be substituted in C++.' type: docs -weight: 5800 +weight: 6000 url: /cpp/aspose.pdf.text/substitutionfontcategories/ --- ## SubstitutionFontCategories enum diff --git a/english/cpp/aspose.pdf.text/tabalignmenttype/_index.md b/english/cpp/aspose.pdf.text/tabalignmenttype/_index.md index f069e7f6c1..844bf96f97 100644 --- a/english/cpp/aspose.pdf.text/tabalignmenttype/_index.md +++ b/english/cpp/aspose.pdf.text/tabalignmenttype/_index.md @@ -4,7 +4,7 @@ linktitle: TabAlignmentType second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Text::TabAlignmentType enum. Enumerates the tab alignment types in C++.' type: docs -weight: 5900 +weight: 6100 url: /cpp/aspose.pdf.text/tabalignmenttype/ --- ## TabAlignmentType enum diff --git a/english/cpp/aspose.pdf.text/tableadertype/_index.md b/english/cpp/aspose.pdf.text/tableadertype/_index.md index ff14aaa974..5c79551969 100644 --- a/english/cpp/aspose.pdf.text/tableadertype/_index.md +++ b/english/cpp/aspose.pdf.text/tableadertype/_index.md @@ -4,7 +4,7 @@ linktitle: TabLeaderType second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Text::TabLeaderType enum. Enumerates the tab leader types in C++.' type: docs -weight: 6000 +weight: 6200 url: /cpp/aspose.pdf.text/tableadertype/ --- ## TabLeaderType enum diff --git a/english/cpp/aspose.pdf.text/textparagraphabsorber/_index.md b/english/cpp/aspose.pdf.text/textparagraphabsorber/_index.md new file mode 100644 index 0000000000..52d457f0b3 --- /dev/null +++ b/english/cpp/aspose.pdf.text/textparagraphabsorber/_index.md @@ -0,0 +1,33 @@ +--- +title: Aspose::Pdf::Text::TextParagraphAbsorber class +linktitle: TextParagraphAbsorber +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Text::TextParagraphAbsorber class. Represents an absorber object of text paragraphs. Performs text search and provides access to search results via TextParagraphAbsorber::TextParagraphs collection in C++.' +type: docs +weight: 4900 +url: /cpp/aspose.pdf.text/textparagraphabsorber/ +--- +## TextParagraphAbsorber class + + +Represents an absorber object of text paragraphs. Performs text search and provides access to search results via [TextParagraphAbsorber::TextParagraphs](../) collection. + +```cpp +class TextParagraphAbsorber : public Aspose::Pdf::Text::TextAbsorber +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_Rectangles](./get_rectangles/)() const | Gets ractangles that the [TextParagraphAbsorber](./) used to searche for text paragraphs on the PDF document or page. | +| [get_TextParagraphs](./get_textparagraphs/)() const | Gets collection of search occurrences that are presented with [TextParagraph](../textparagraph/) objects. | +| [set_Rectangles](./set_rectangles/)(System::ArrayPtr\\>) | Sets ractangles that the [TextParagraphAbsorber](./) used to searche for text paragraphs on the PDF document or page. | +| [set_TextParagraphs](./set_textparagraphs/)(System::SharedPtr\) | Gets collection of search occurrences that are presented with [TextParagraph](../textparagraph/) objects. | +| [TextParagraphAbsorber](./textparagraphabsorber/)(System::ArrayPtr\\>) | Initializes a new instance of the [TextParagraphAbsorber](./) with rectangles collection. | +| [Visit](./visit/)(System::SharedPtr\) override | Performs search on the specified page. | +## See Also + +* Class [TextAbsorber](../textabsorber/) +* Namespace [Aspose::Pdf::Text](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.text/textparagraphabsorber/get_rectangles/_index.md b/english/cpp/aspose.pdf.text/textparagraphabsorber/get_rectangles/_index.md new file mode 100644 index 0000000000..5df1b98941 --- /dev/null +++ b/english/cpp/aspose.pdf.text/textparagraphabsorber/get_rectangles/_index.md @@ -0,0 +1,26 @@ +--- +title: Aspose::Pdf::Text::TextParagraphAbsorber::get_Rectangles method +linktitle: get_Rectangles +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Text::TextParagraphAbsorber::get_Rectangles method. Gets ractangles that the TextParagraphAbsorber used to searche for text paragraphs on the PDF document or page in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.text/textparagraphabsorber/get_rectangles/ +--- +## TextParagraphAbsorber::get_Rectangles method + + +Gets ractangles that the [TextParagraphAbsorber](../) used to searche for text paragraphs on the PDF document or page. + +```cpp +System::ArrayPtr> Aspose::Pdf::Text::TextParagraphAbsorber::get_Rectangles() const +``` + +## See Also + +* Typedef [ArrayPtr](../../../system/arrayptr/) +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [TextParagraphAbsorber](../) +* Namespace [Aspose::Pdf::Text](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.text/textparagraphabsorber/get_textparagraphs/_index.md b/english/cpp/aspose.pdf.text/textparagraphabsorber/get_textparagraphs/_index.md new file mode 100644 index 0000000000..d2964d8297 --- /dev/null +++ b/english/cpp/aspose.pdf.text/textparagraphabsorber/get_textparagraphs/_index.md @@ -0,0 +1,25 @@ +--- +title: Aspose::Pdf::Text::TextParagraphAbsorber::get_TextParagraphs method +linktitle: get_TextParagraphs +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Text::TextParagraphAbsorber::get_TextParagraphs method. Gets collection of search occurrences that are presented with TextParagraph objects in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.text/textparagraphabsorber/get_textparagraphs/ +--- +## TextParagraphAbsorber::get_TextParagraphs method + + +Gets collection of search occurrences that are presented with [TextParagraph](../../textparagraph/) objects. + +```cpp +System::SharedPtr Aspose::Pdf::Text::TextParagraphAbsorber::get_TextParagraphs() const +``` + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [TextParagraphCollection](../../textparagraphcollection/) +* Class [TextParagraphAbsorber](../) +* Namespace [Aspose::Pdf::Text](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.text/textparagraphabsorber/set_rectangles/_index.md b/english/cpp/aspose.pdf.text/textparagraphabsorber/set_rectangles/_index.md new file mode 100644 index 0000000000..185aacc453 --- /dev/null +++ b/english/cpp/aspose.pdf.text/textparagraphabsorber/set_rectangles/_index.md @@ -0,0 +1,26 @@ +--- +title: Aspose::Pdf::Text::TextParagraphAbsorber::set_Rectangles method +linktitle: set_Rectangles +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Text::TextParagraphAbsorber::set_Rectangles method. Sets ractangles that the TextParagraphAbsorber used to searche for text paragraphs on the PDF document or page in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.text/textparagraphabsorber/set_rectangles/ +--- +## TextParagraphAbsorber::set_Rectangles method + + +Sets ractangles that the [TextParagraphAbsorber](../) used to searche for text paragraphs on the PDF document or page. + +```cpp +void Aspose::Pdf::Text::TextParagraphAbsorber::set_Rectangles(System::ArrayPtr> value) +``` + +## See Also + +* Typedef [ArrayPtr](../../../system/arrayptr/) +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [TextParagraphAbsorber](../) +* Namespace [Aspose::Pdf::Text](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.text/textparagraphabsorber/set_textparagraphs/_index.md b/english/cpp/aspose.pdf.text/textparagraphabsorber/set_textparagraphs/_index.md new file mode 100644 index 0000000000..1d4daf5417 --- /dev/null +++ b/english/cpp/aspose.pdf.text/textparagraphabsorber/set_textparagraphs/_index.md @@ -0,0 +1,25 @@ +--- +title: Aspose::Pdf::Text::TextParagraphAbsorber::set_TextParagraphs method +linktitle: set_TextParagraphs +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Text::TextParagraphAbsorber::set_TextParagraphs method. Gets collection of search occurrences that are presented with TextParagraph objects in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.text/textparagraphabsorber/set_textparagraphs/ +--- +## TextParagraphAbsorber::set_TextParagraphs method + + +Gets collection of search occurrences that are presented with [TextParagraph](../../textparagraph/) objects. + +```cpp +void Aspose::Pdf::Text::TextParagraphAbsorber::set_TextParagraphs(System::SharedPtr value) +``` + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [TextParagraphCollection](../../textparagraphcollection/) +* Class [TextParagraphAbsorber](../) +* Namespace [Aspose::Pdf::Text](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.text/textparagraphabsorber/textparagraphabsorber/_index.md b/english/cpp/aspose.pdf.text/textparagraphabsorber/textparagraphabsorber/_index.md new file mode 100644 index 0000000000..3652ba4b65 --- /dev/null +++ b/english/cpp/aspose.pdf.text/textparagraphabsorber/textparagraphabsorber/_index.md @@ -0,0 +1,35 @@ +--- +title: Aspose::Pdf::Text::TextParagraphAbsorber::TextParagraphAbsorber constructor +linktitle: TextParagraphAbsorber +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Text::TextParagraphAbsorber::TextParagraphAbsorber constructor. Initializes a new instance of the TextParagraphAbsorber with rectangles collection in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.text/textparagraphabsorber/textparagraphabsorber/ +--- +## TextParagraphAbsorber::TextParagraphAbsorber constructor + + +Initializes a new instance of the [TextParagraphAbsorber](../) with rectangles collection. + +```cpp +Aspose::Pdf::Text::TextParagraphAbsorber::TextParagraphAbsorber(System::ArrayPtr> rectangles) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| rectangles | System::ArrayPtr\\> | The paragraphs' rectangles. | +## Remarks + + +The absorber will sarch for text and return paragraphs corresponding to the rectangles. + +## See Also + +* Typedef [ArrayPtr](../../../system/arrayptr/) +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [Rectangle](../../../aspose.pdf/rectangle/) +* Class [TextParagraphAbsorber](../) +* Namespace [Aspose::Pdf::Text](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.text/textparagraphabsorber/visit/_index.md b/english/cpp/aspose.pdf.text/textparagraphabsorber/visit/_index.md new file mode 100644 index 0000000000..57dc9c58f4 --- /dev/null +++ b/english/cpp/aspose.pdf.text/textparagraphabsorber/visit/_index.md @@ -0,0 +1,25 @@ +--- +title: Aspose::Pdf::Text::TextParagraphAbsorber::Visit method +linktitle: Visit +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Text::TextParagraphAbsorber::Visit method. Performs search on the specified page in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.text/textparagraphabsorber/visit/ +--- +## TextParagraphAbsorber::Visit method + + +Performs search on the specified page. + +```cpp +void Aspose::Pdf::Text::TextParagraphAbsorber::Visit(System::SharedPtr page) override +``` + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [Page](../../../aspose.pdf/page/) +* Class [TextParagraphAbsorber](../) +* Namespace [Aspose::Pdf::Text](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.text/textparagraphcollection/_index.md b/english/cpp/aspose.pdf.text/textparagraphcollection/_index.md new file mode 100644 index 0000000000..f7c26c5f39 --- /dev/null +++ b/english/cpp/aspose.pdf.text/textparagraphcollection/_index.md @@ -0,0 +1,38 @@ +--- +title: Aspose::Pdf::Text::TextParagraphCollection class +linktitle: TextParagraphCollection +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Text::TextParagraphCollection class. Represents a text paragraphs collection in C++.' +type: docs +weight: 5000 +url: /cpp/aspose.pdf.text/textparagraphcollection/ +--- +## TextParagraphCollection class + + +Represents a text paragraphs collection. + +```cpp +class TextParagraphCollection : public System::Collections::Generic::ICollection> +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Add](./add/)(const System::SharedPtr\\&) override | Adds the text paragraph element at the specified index. | +| [Clear](./clear/)() override | Clears all items from the collection. | +| [Contains](./contains/)(const System::SharedPtr\\&) const override | Determines whether the collection contains a specific value. | +| [CopyTo](./copyto/)(System::ArrayPtr\\>, int32_t) override | Copies the entire collection to a compatible one-dimensional Array, starting at the specified index of the target array. | +| [get_Count](./get_count/)() const override | Gets the number of [TextParagraph](../textparagraph/) object elements actually contained in the collection. | +| [get_IsReadOnly](./get_isreadonly/)() const override | Gets a value indicating whether collection is read-only. | +| [get_IsSynchronized](./get_issynchronized/)() | Gets a value indicating whether access to the collection is synchronized (thread safe). | +| [get_SyncRoot](./get_syncroot/)() const | Gets an object that can be used to synchronize access to the collection. | +| [GetEnumerator](./getenumerator/)() override | Returns an enumerator for the entire collection. | +| [idx_get](./idx_get/)(int32_t) | Gets the text paragraph element at the specified index. | +| [Remove](./remove/)(const System::SharedPtr\\&) override | Deletes specified item from collection. | +## See Also + +* Class [ICollection](../../system.collections.generic/icollection/) +* Namespace [Aspose::Pdf::Text](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.text/textparagraphcollection/add/_index.md b/english/cpp/aspose.pdf.text/textparagraphcollection/add/_index.md new file mode 100644 index 0000000000..d6b91b0586 --- /dev/null +++ b/english/cpp/aspose.pdf.text/textparagraphcollection/add/_index.md @@ -0,0 +1,25 @@ +--- +title: Aspose::Pdf::Text::TextParagraphCollection::Add method +linktitle: Add +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Text::TextParagraphCollection::Add method. Adds the text paragraph element at the specified index in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.text/textparagraphcollection/add/ +--- +## TextParagraphCollection::Add method + + +Adds the text paragraph element at the specified index. + +```cpp +void Aspose::Pdf::Text::TextParagraphCollection::Add(const System::SharedPtr ¶graph) override +``` + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [TextParagraph](../../textparagraph/) +* Class [TextParagraphCollection](../) +* Namespace [Aspose::Pdf::Text](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.text/textparagraphcollection/clear/_index.md b/english/cpp/aspose.pdf.text/textparagraphcollection/clear/_index.md new file mode 100644 index 0000000000..c8abf5f4ce --- /dev/null +++ b/english/cpp/aspose.pdf.text/textparagraphcollection/clear/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Text::TextParagraphCollection::Clear method +linktitle: Clear +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Text::TextParagraphCollection::Clear method. Clears all items from the collection in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.text/textparagraphcollection/clear/ +--- +## TextParagraphCollection::Clear method + + +Clears all items from the collection. + +```cpp +void Aspose::Pdf::Text::TextParagraphCollection::Clear() override +``` + +## See Also + +* Class [TextParagraphCollection](../) +* Namespace [Aspose::Pdf::Text](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.text/textparagraphcollection/contains/_index.md b/english/cpp/aspose.pdf.text/textparagraphcollection/contains/_index.md new file mode 100644 index 0000000000..f6d7401061 --- /dev/null +++ b/english/cpp/aspose.pdf.text/textparagraphcollection/contains/_index.md @@ -0,0 +1,34 @@ +--- +title: Aspose::Pdf::Text::TextParagraphCollection::Contains method +linktitle: Contains +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Text::TextParagraphCollection::Contains method. Determines whether the collection contains a specific value in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.text/textparagraphcollection/contains/ +--- +## TextParagraphCollection::Contains method + + +Determines whether the collection contains a specific value. + +```cpp +bool Aspose::Pdf::Text::TextParagraphCollection::Contains(const System::SharedPtr &item) const override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| item | const System::SharedPtr\\& | The object to locate in the collection | + +### ReturnValue + +true if item is found in the collection; otherwise, false. + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [TextParagraph](../../textparagraph/) +* Class [TextParagraphCollection](../) +* Namespace [Aspose::Pdf::Text](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.text/textparagraphcollection/copyto/_index.md b/english/cpp/aspose.pdf.text/textparagraphcollection/copyto/_index.md new file mode 100644 index 0000000000..17a97fd63a --- /dev/null +++ b/english/cpp/aspose.pdf.text/textparagraphcollection/copyto/_index.md @@ -0,0 +1,26 @@ +--- +title: Aspose::Pdf::Text::TextParagraphCollection::CopyTo method +linktitle: CopyTo +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Text::TextParagraphCollection::CopyTo method. Copies the entire collection to a compatible one-dimensional Array, starting at the specified index of the target array in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.text/textparagraphcollection/copyto/ +--- +## TextParagraphCollection::CopyTo method + + +Copies the entire collection to a compatible one-dimensional Array, starting at the specified index of the target array. + +```cpp +void Aspose::Pdf::Text::TextParagraphCollection::CopyTo(System::ArrayPtr> array, int32_t index) override +``` + +## See Also + +* Typedef [ArrayPtr](../../../system/arrayptr/) +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [TextParagraph](../../textparagraph/) +* Class [TextParagraphCollection](../) +* Namespace [Aspose::Pdf::Text](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.text/textparagraphcollection/get_count/_index.md b/english/cpp/aspose.pdf.text/textparagraphcollection/get_count/_index.md new file mode 100644 index 0000000000..e3440ebbcf --- /dev/null +++ b/english/cpp/aspose.pdf.text/textparagraphcollection/get_count/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Text::TextParagraphCollection::get_Count method +linktitle: get_Count +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Text::TextParagraphCollection::get_Count method. Gets the number of TextParagraph object elements actually contained in the collection in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.text/textparagraphcollection/get_count/ +--- +## TextParagraphCollection::get_Count method + + +Gets the number of [TextParagraph](../../textparagraph/) object elements actually contained in the collection. + +```cpp +int32_t Aspose::Pdf::Text::TextParagraphCollection::get_Count() const override +``` + +## See Also + +* Class [TextParagraphCollection](../) +* Namespace [Aspose::Pdf::Text](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.text/textparagraphcollection/get_isreadonly/_index.md b/english/cpp/aspose.pdf.text/textparagraphcollection/get_isreadonly/_index.md new file mode 100644 index 0000000000..a7056181a0 --- /dev/null +++ b/english/cpp/aspose.pdf.text/textparagraphcollection/get_isreadonly/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Text::TextParagraphCollection::get_IsReadOnly method +linktitle: get_IsReadOnly +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Text::TextParagraphCollection::get_IsReadOnly method. Gets a value indicating whether collection is read-only in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.text/textparagraphcollection/get_isreadonly/ +--- +## TextParagraphCollection::get_IsReadOnly method + + +Gets a value indicating whether collection is read-only. + +```cpp +bool Aspose::Pdf::Text::TextParagraphCollection::get_IsReadOnly() const override +``` + +## See Also + +* Class [TextParagraphCollection](../) +* Namespace [Aspose::Pdf::Text](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.text/textparagraphcollection/get_issynchronized/_index.md b/english/cpp/aspose.pdf.text/textparagraphcollection/get_issynchronized/_index.md new file mode 100644 index 0000000000..7d0fa8c66f --- /dev/null +++ b/english/cpp/aspose.pdf.text/textparagraphcollection/get_issynchronized/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Text::TextParagraphCollection::get_IsSynchronized method +linktitle: get_IsSynchronized +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Text::TextParagraphCollection::get_IsSynchronized method. Gets a value indicating whether access to the collection is synchronized (thread safe) in C++.' +type: docs +weight: 700 +url: /cpp/aspose.pdf.text/textparagraphcollection/get_issynchronized/ +--- +## TextParagraphCollection::get_IsSynchronized method + + +Gets a value indicating whether access to the collection is synchronized (thread safe). + +```cpp +bool Aspose::Pdf::Text::TextParagraphCollection::get_IsSynchronized() +``` + +## See Also + +* Class [TextParagraphCollection](../) +* Namespace [Aspose::Pdf::Text](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.text/textparagraphcollection/get_syncroot/_index.md b/english/cpp/aspose.pdf.text/textparagraphcollection/get_syncroot/_index.md new file mode 100644 index 0000000000..c98c607971 --- /dev/null +++ b/english/cpp/aspose.pdf.text/textparagraphcollection/get_syncroot/_index.md @@ -0,0 +1,25 @@ +--- +title: Aspose::Pdf::Text::TextParagraphCollection::get_SyncRoot method +linktitle: get_SyncRoot +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Text::TextParagraphCollection::get_SyncRoot method. Gets an object that can be used to synchronize access to the collection in C++.' +type: docs +weight: 800 +url: /cpp/aspose.pdf.text/textparagraphcollection/get_syncroot/ +--- +## TextParagraphCollection::get_SyncRoot method + + +Gets an object that can be used to synchronize access to the collection. + +```cpp +System::SharedPtr Aspose::Pdf::Text::TextParagraphCollection::get_SyncRoot() const +``` + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [Object](../../../system/object/) +* Class [TextParagraphCollection](../) +* Namespace [Aspose::Pdf::Text](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.text/textparagraphcollection/getenumerator/_index.md b/english/cpp/aspose.pdf.text/textparagraphcollection/getenumerator/_index.md new file mode 100644 index 0000000000..fb924f84d5 --- /dev/null +++ b/english/cpp/aspose.pdf.text/textparagraphcollection/getenumerator/_index.md @@ -0,0 +1,26 @@ +--- +title: Aspose::Pdf::Text::TextParagraphCollection::GetEnumerator method +linktitle: GetEnumerator +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Text::TextParagraphCollection::GetEnumerator method. Returns an enumerator for the entire collection in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.text/textparagraphcollection/getenumerator/ +--- +## TextParagraphCollection::GetEnumerator method + + +Returns an enumerator for the entire collection. + +```cpp +System::SharedPtr>> Aspose::Pdf::Text::TextParagraphCollection::GetEnumerator() override +``` + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [IEnumerator](../../../system.collections.generic/ienumerator/) +* Class [TextParagraph](../../textparagraph/) +* Class [TextParagraphCollection](../) +* Namespace [Aspose::Pdf::Text](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.text/textparagraphcollection/idx_get/_index.md b/english/cpp/aspose.pdf.text/textparagraphcollection/idx_get/_index.md new file mode 100644 index 0000000000..ef0833200d --- /dev/null +++ b/english/cpp/aspose.pdf.text/textparagraphcollection/idx_get/_index.md @@ -0,0 +1,34 @@ +--- +title: Aspose::Pdf::Text::TextParagraphCollection::idx_get method +linktitle: idx_get +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Text::TextParagraphCollection::idx_get method. Gets the text paragraph element at the specified index in C++.' +type: docs +weight: 1000 +url: /cpp/aspose.pdf.text/textparagraphcollection/idx_get/ +--- +## TextParagraphCollection::idx_get method + + +Gets the text paragraph element at the specified index. + +```cpp +System::SharedPtr Aspose::Pdf::Text::TextParagraphCollection::idx_get(int32_t index) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| index | int32_t | | + +### ReturnValue + + + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [TextParagraph](../../textparagraph/) +* Class [TextParagraphCollection](../) +* Namespace [Aspose::Pdf::Text](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.text/textparagraphcollection/remove/_index.md b/english/cpp/aspose.pdf.text/textparagraphcollection/remove/_index.md new file mode 100644 index 0000000000..0f44e9e3a7 --- /dev/null +++ b/english/cpp/aspose.pdf.text/textparagraphcollection/remove/_index.md @@ -0,0 +1,34 @@ +--- +title: Aspose::Pdf::Text::TextParagraphCollection::Remove method +linktitle: Remove +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Text::TextParagraphCollection::Remove method. Deletes specified item from collection in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf.text/textparagraphcollection/remove/ +--- +## TextParagraphCollection::Remove method + + +Deletes specified item from collection. + +```cpp +bool Aspose::Pdf::Text::TextParagraphCollection::Remove(const System::SharedPtr &item) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| item | const System::SharedPtr\\& | The object to delete | + +### ReturnValue + +true if item was deleted from collection; otherwise, false. + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [TextParagraph](../../textparagraph/) +* Class [TextParagraphCollection](../) +* Namespace [Aspose::Pdf::Text](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.text/textrenderingmode/_index.md b/english/cpp/aspose.pdf.text/textrenderingmode/_index.md index d92d0a1043..9f3a4775b2 100644 --- a/english/cpp/aspose.pdf.text/textrenderingmode/_index.md +++ b/english/cpp/aspose.pdf.text/textrenderingmode/_index.md @@ -4,7 +4,7 @@ linktitle: TextRenderingMode second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Text::TextRenderingMode enum. The text rendering mode, Tmode, determines whether showing text shall cause glyph outlines to be stroked, filled, used as a clipping boundary, or some combination of the three in C++.' type: docs -weight: 6100 +weight: 6300 url: /cpp/aspose.pdf.text/textrenderingmode/ --- ## TextRenderingMode enum diff --git a/english/cpp/aspose.pdf.text/textreplaceoptions/_index.md b/english/cpp/aspose.pdf.text/textreplaceoptions/_index.md index 8b4d82e2af..c47ca290bd 100644 --- a/english/cpp/aspose.pdf.text/textreplaceoptions/_index.md +++ b/english/cpp/aspose.pdf.text/textreplaceoptions/_index.md @@ -4,7 +4,7 @@ linktitle: TextReplaceOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Text::TextReplaceOptions class. Represents text replace options in C++.' type: docs -weight: 4900 +weight: 5100 url: /cpp/aspose.pdf.text/textreplaceoptions/ --- ## TextReplaceOptions class diff --git a/english/cpp/aspose.pdf.text/textsearchoptions/_index.md b/english/cpp/aspose.pdf.text/textsearchoptions/_index.md index fb5d880c79..6201b1f80b 100644 --- a/english/cpp/aspose.pdf.text/textsearchoptions/_index.md +++ b/english/cpp/aspose.pdf.text/textsearchoptions/_index.md @@ -4,7 +4,7 @@ linktitle: TextSearchOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Text::TextSearchOptions class. Represents text search options in C++.' type: docs -weight: 5000 +weight: 5200 url: /cpp/aspose.pdf.text/textsearchoptions/ --- ## TextSearchOptions class diff --git a/english/cpp/aspose.pdf.text/textsegment/_index.md b/english/cpp/aspose.pdf.text/textsegment/_index.md index f14ab6e7de..64afe189b8 100644 --- a/english/cpp/aspose.pdf.text/textsegment/_index.md +++ b/english/cpp/aspose.pdf.text/textsegment/_index.md @@ -4,7 +4,7 @@ linktitle: TextSegment second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Text::TextSegment class. Represents segment of Pdf text in C++.' type: docs -weight: 5100 +weight: 5300 url: /cpp/aspose.pdf.text/textsegment/ --- ## TextSegment class diff --git a/english/cpp/aspose.pdf.text/textsegmentcollection/_index.md b/english/cpp/aspose.pdf.text/textsegmentcollection/_index.md index 9fec3164ac..bf07604c0a 100644 --- a/english/cpp/aspose.pdf.text/textsegmentcollection/_index.md +++ b/english/cpp/aspose.pdf.text/textsegmentcollection/_index.md @@ -4,7 +4,7 @@ linktitle: TextSegmentCollection second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Text::TextSegmentCollection class. Represents a text segments collection in C++.' type: docs -weight: 5200 +weight: 5400 url: /cpp/aspose.pdf.text/textsegmentcollection/ --- ## TextSegmentCollection class diff --git a/english/cpp/aspose.pdf.text/textstate/_index.md b/english/cpp/aspose.pdf.text/textstate/_index.md index 86413c45a8..7de1be24ad 100644 --- a/english/cpp/aspose.pdf.text/textstate/_index.md +++ b/english/cpp/aspose.pdf.text/textstate/_index.md @@ -4,7 +4,7 @@ linktitle: TextState second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Text::TextState class. Represents a text state of a text in C++.' type: docs -weight: 5300 +weight: 5500 url: /cpp/aspose.pdf.text/textstate/ --- ## TextState class diff --git a/english/cpp/aspose.pdf.text/unicodesubstitution/_index.md b/english/cpp/aspose.pdf.text/unicodesubstitution/_index.md index 9cc1d81380..7be581548a 100644 --- a/english/cpp/aspose.pdf.text/unicodesubstitution/_index.md +++ b/english/cpp/aspose.pdf.text/unicodesubstitution/_index.md @@ -4,7 +4,7 @@ linktitle: UnicodeSubstitution second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Text::UnicodeSubstitution class. Represents character code substitution in C++.' type: docs -weight: 5400 +weight: 5600 url: /cpp/aspose.pdf.text/unicodesubstitution/ --- ## UnicodeSubstitution class diff --git a/english/cpp/aspose.pdf/_index.md b/english/cpp/aspose.pdf/_index.md index a29c0e1093..5318d782d9 100644 --- a/english/cpp/aspose.pdf/_index.md +++ b/english/cpp/aspose.pdf/_index.md @@ -19,6 +19,7 @@ The **[Aspose.Pdf](./)** is a root namespace for all classes of [Aspose.Pdf](./) | [Artifact](./artifact/) | Class represents PDF [Artifact](./artifact/) object. | | [ArtifactCollection](./artifactcollection/) | Class represents artifact collection. | | [AssemblyConstants](./assemblyconstants/) | Defines the constants that participate in the license check for the component. These used to be defined directly as assembly attributes, but I moved them into separate class because in .NET Compact Framework I cannot access assembly attributes. Now the licensing code when compiled for the .NET Compact Framework uses these constants instead of the assembly attributes. | +| [AutoDetectedFormatLoadOptions](./autodetectedformatloadoptions/) | Represents options for loading/importing PCL file into pdf document. | | [AutoTaggingSettings](./autotaggingsettings/) | Provides settings for the auto-tagging functionality in PDF documents. | | [BackgroundArtifact](./backgroundartifact/) | Class descibes background artifact. This artifact allows to set background of the page. | | [BaseActionCollection](./baseactioncollection/) | Class incapsulates basic actions wuth page/annotation/field interactive actions. | @@ -28,6 +29,7 @@ The **[Aspose.Pdf](./)** is a root namespace for all classes of [Aspose.Pdf](./) | [BitmapInfo](./bitmapinfo/) | Object containing array of pixels and bitmap information. | | [BorderInfo](./borderinfo/) | This class represents border for graphics elements. | | [BoundsCheckableList](./boundscheckablelist/) | Represents [BoundsCheckableList](./boundscheckablelist/) - wrapper around [System.Collections.Generic.List](../system.collections.generic/list/). | +| [Brush](./brush/) | This class represents abstract brush. | | [BuildVersionInfo](./buildversioninfo/) | This class provides information about current product build. | | [CdrLoadOptions](./cdrloadoptions/) | Class describes CDR load options. | | [Cell](./cell/) | Represents a cell of the table's row. | diff --git a/english/cpp/aspose.pdf/afrelationship/_index.md b/english/cpp/aspose.pdf/afrelationship/_index.md index 233b54752f..316dc67b76 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: 21000 +weight: 21200 url: /cpp/aspose.pdf/afrelationship/ --- ## AFRelationship enum diff --git a/english/cpp/aspose.pdf/autodetectedformatloadoptions/_index.md b/english/cpp/aspose.pdf/autodetectedformatloadoptions/_index.md new file mode 100644 index 0000000000..e23ba813ac --- /dev/null +++ b/english/cpp/aspose.pdf/autodetectedformatloadoptions/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::AutoDetectedFormatLoadOptions class +linktitle: AutoDetectedFormatLoadOptions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::AutoDetectedFormatLoadOptions class. Represents options for loading/importing PCL file into pdf document in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf/autodetectedformatloadoptions/ +--- +## AutoDetectedFormatLoadOptions class + + +Represents options for loading/importing PCL file into pdf document. + +```cpp +class AutoDetectedFormatLoadOptions : public Aspose::Pdf::LoadOptions +``` + +## Methods + +| Method | Description | +| --- | --- | +| [AutoDetectedFormatLoadOptions](./autodetectedformatloadoptions/)() | Creates [PclLoadOptions](../pclloadoptions/) object. | +## See Also + +* Class [LoadOptions](../loadoptions/) +* Namespace [Aspose::Pdf](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf/autodetectedformatloadoptions/autodetectedformatloadoptions/_index.md b/english/cpp/aspose.pdf/autodetectedformatloadoptions/autodetectedformatloadoptions/_index.md new file mode 100644 index 0000000000..d176da5510 --- /dev/null +++ b/english/cpp/aspose.pdf/autodetectedformatloadoptions/autodetectedformatloadoptions/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::AutoDetectedFormatLoadOptions::AutoDetectedFormatLoadOptions constructor +linktitle: AutoDetectedFormatLoadOptions +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::AutoDetectedFormatLoadOptions::AutoDetectedFormatLoadOptions constructor. Creates PclLoadOptions object in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf/autodetectedformatloadoptions/autodetectedformatloadoptions/ +--- +## AutoDetectedFormatLoadOptions::AutoDetectedFormatLoadOptions constructor + + +Creates [PclLoadOptions](../../pclloadoptions/) object. + +```cpp +Aspose::Pdf::AutoDetectedFormatLoadOptions::AutoDetectedFormatLoadOptions() +``` + +## See Also + +* Class [AutoDetectedFormatLoadOptions](../) +* Namespace [Aspose::Pdf](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf/autotaggingsettings/_index.md b/english/cpp/aspose.pdf/autotaggingsettings/_index.md index 568a3ef2a4..382bb588ea 100644 --- a/english/cpp/aspose.pdf/autotaggingsettings/_index.md +++ b/english/cpp/aspose.pdf/autotaggingsettings/_index.md @@ -4,7 +4,7 @@ linktitle: AutoTaggingSettings second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::AutoTaggingSettings class. Provides settings for the auto-tagging functionality in PDF documents in C++.' type: docs -weight: 600 +weight: 700 url: /cpp/aspose.pdf/autotaggingsettings/ --- ## AutoTaggingSettings class diff --git a/english/cpp/aspose.pdf/backgroundartifact/_index.md b/english/cpp/aspose.pdf/backgroundartifact/_index.md index 0b66343505..44b8cc1ad7 100644 --- a/english/cpp/aspose.pdf/backgroundartifact/_index.md +++ b/english/cpp/aspose.pdf/backgroundartifact/_index.md @@ -4,7 +4,7 @@ linktitle: BackgroundArtifact second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::BackgroundArtifact class. Class descibes background artifact. This artifact allows to set background of the page in C++.' type: docs -weight: 700 +weight: 800 url: /cpp/aspose.pdf/backgroundartifact/ --- ## BackgroundArtifact class diff --git a/english/cpp/aspose.pdf/baseactioncollection/_index.md b/english/cpp/aspose.pdf/baseactioncollection/_index.md index 273d8aea2b..77a5ade4c5 100644 --- a/english/cpp/aspose.pdf/baseactioncollection/_index.md +++ b/english/cpp/aspose.pdf/baseactioncollection/_index.md @@ -4,7 +4,7 @@ linktitle: BaseActionCollection second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::BaseActionCollection class. Class incapsulates basic actions wuth page/annotation/field interactive actions in C++.' type: docs -weight: 800 +weight: 900 url: /cpp/aspose.pdf/baseactioncollection/ --- ## BaseActionCollection class diff --git a/english/cpp/aspose.pdf/baseoperatorcollection/_index.md b/english/cpp/aspose.pdf/baseoperatorcollection/_index.md index d7ae1d505e..eb8d529902 100644 --- a/english/cpp/aspose.pdf/baseoperatorcollection/_index.md +++ b/english/cpp/aspose.pdf/baseoperatorcollection/_index.md @@ -4,7 +4,7 @@ linktitle: BaseOperatorCollection second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::BaseOperatorCollection class. Represents base class for operator collection in C++.' type: docs -weight: 900 +weight: 1000 url: /cpp/aspose.pdf/baseoperatorcollection/ --- ## BaseOperatorCollection class diff --git a/english/cpp/aspose.pdf/baseparagraph/_index.md b/english/cpp/aspose.pdf/baseparagraph/_index.md index 6193617e48..8ba8402458 100644 --- a/english/cpp/aspose.pdf/baseparagraph/_index.md +++ b/english/cpp/aspose.pdf/baseparagraph/_index.md @@ -4,7 +4,7 @@ linktitle: BaseParagraph second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::BaseParagraph class. Represents a abstract base object can be added to the page(doc.Paragraphs.Add()) in C++.' type: docs -weight: 1000 +weight: 1100 url: /cpp/aspose.pdf/baseparagraph/ --- ## BaseParagraph class diff --git a/english/cpp/aspose.pdf/batesnartifact/_index.md b/english/cpp/aspose.pdf/batesnartifact/_index.md index bafdebbaf1..e3a4bcdaf9 100644 --- a/english/cpp/aspose.pdf/batesnartifact/_index.md +++ b/english/cpp/aspose.pdf/batesnartifact/_index.md @@ -4,7 +4,7 @@ linktitle: BatesNArtifact second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::BatesNArtifact class. Class describes Bates Numbering artifact in C++.' type: docs -weight: 1100 +weight: 1200 url: /cpp/aspose.pdf/batesnartifact/ --- ## BatesNArtifact class diff --git a/english/cpp/aspose.pdf/bitmapinfo/_index.md b/english/cpp/aspose.pdf/bitmapinfo/_index.md index f8c5a1160b..1330714734 100644 --- a/english/cpp/aspose.pdf/bitmapinfo/_index.md +++ b/english/cpp/aspose.pdf/bitmapinfo/_index.md @@ -4,7 +4,7 @@ linktitle: BitmapInfo second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::BitmapInfo class. Object containing array of pixels and bitmap information in C++.' type: docs -weight: 1200 +weight: 1300 url: /cpp/aspose.pdf/bitmapinfo/ --- ## BitmapInfo class diff --git a/english/cpp/aspose.pdf/blendmode/_index.md b/english/cpp/aspose.pdf/blendmode/_index.md index d92552b4c6..05b7df552c 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: 21100 +weight: 21300 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 ae27187f04..b8d19d2fe6 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: 21200 +weight: 21400 url: /cpp/aspose.pdf/bordercornerstyle/ --- ## BorderCornerStyle enum diff --git a/english/cpp/aspose.pdf/borderinfo/_index.md b/english/cpp/aspose.pdf/borderinfo/_index.md index 8e7feb9c38..9a4e5cf177 100644 --- a/english/cpp/aspose.pdf/borderinfo/_index.md +++ b/english/cpp/aspose.pdf/borderinfo/_index.md @@ -4,7 +4,7 @@ linktitle: BorderInfo second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::BorderInfo class. This class represents border for graphics elements in C++.' type: docs -weight: 1300 +weight: 1400 url: /cpp/aspose.pdf/borderinfo/ --- ## BorderInfo class diff --git a/english/cpp/aspose.pdf/borderside/_index.md b/english/cpp/aspose.pdf/borderside/_index.md index e32dc07d71..d55973c3e0 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: 21300 +weight: 21500 url: /cpp/aspose.pdf/borderside/ --- ## BorderSide enum diff --git a/english/cpp/aspose.pdf/boundscheckablelist/_index.md b/english/cpp/aspose.pdf/boundscheckablelist/_index.md index 4b87f82d49..7c509d17a0 100644 --- a/english/cpp/aspose.pdf/boundscheckablelist/_index.md +++ b/english/cpp/aspose.pdf/boundscheckablelist/_index.md @@ -4,7 +4,7 @@ linktitle: BoundsCheckableList second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::BoundsCheckableList class. Represents BoundsCheckableList - wrapper around System.Collections.Generic.List in C++.' type: docs -weight: 1400 +weight: 1500 url: /cpp/aspose.pdf/boundscheckablelist/ --- ## BoundsCheckableList class diff --git a/english/cpp/aspose.pdf/boundscheckmode/_index.md b/english/cpp/aspose.pdf/boundscheckmode/_index.md index 859d4e597a..bb9c56c758 100644 --- a/english/cpp/aspose.pdf/boundscheckmode/_index.md +++ b/english/cpp/aspose.pdf/boundscheckmode/_index.md @@ -4,7 +4,7 @@ linktitle: BoundsCheckMode second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::BoundsCheckMode enum. Specifies the behavior for bounds checking when adding items to a collection in C++.' type: docs -weight: 21400 +weight: 21600 url: /cpp/aspose.pdf/boundscheckmode/ --- ## BoundsCheckMode enum diff --git a/english/cpp/aspose.pdf/boundsoutofrangeexception/_index.md b/english/cpp/aspose.pdf/boundsoutofrangeexception/_index.md index 229fd4fd84..d7aca03457 100644 --- a/english/cpp/aspose.pdf/boundsoutofrangeexception/_index.md +++ b/english/cpp/aspose.pdf/boundsoutofrangeexception/_index.md @@ -4,7 +4,7 @@ linktitle: BoundsOutOfRangeException second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::BoundsOutOfRangeException typedef in C++.' type: docs -weight: 27400 +weight: 27600 url: /cpp/aspose.pdf/boundsoutofrangeexception/ --- ## BoundsOutOfRangeException typedef diff --git a/english/cpp/aspose.pdf/brush/_index.md b/english/cpp/aspose.pdf/brush/_index.md new file mode 100644 index 0000000000..7da5648a65 --- /dev/null +++ b/english/cpp/aspose.pdf/brush/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Brush class +linktitle: Brush +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Brush class. This class represents abstract brush in C++.' +type: docs +weight: 1600 +url: /cpp/aspose.pdf/brush/ +--- +## Brush class + + +This class represents abstract brush. + +```cpp +class Brush : public System::Object +``` + +## See Also + +* Class [Object](../../system/object/) +* Namespace [Aspose::Pdf](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf/buildversioninfo/_index.md b/english/cpp/aspose.pdf/buildversioninfo/_index.md index 7d36a2479f..180f12a914 100644 --- a/english/cpp/aspose.pdf/buildversioninfo/_index.md +++ b/english/cpp/aspose.pdf/buildversioninfo/_index.md @@ -4,7 +4,7 @@ linktitle: BuildVersionInfo second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::BuildVersionInfo class. This class provides information about current product build in C++.' type: docs -weight: 1500 +weight: 1700 url: /cpp/aspose.pdf/buildversioninfo/ --- ## BuildVersionInfo class diff --git a/english/cpp/aspose.pdf/cdrloadoptions/_index.md b/english/cpp/aspose.pdf/cdrloadoptions/_index.md index da023b71e9..106fa662a6 100644 --- a/english/cpp/aspose.pdf/cdrloadoptions/_index.md +++ b/english/cpp/aspose.pdf/cdrloadoptions/_index.md @@ -4,7 +4,7 @@ linktitle: CdrLoadOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::CdrLoadOptions class. Class describes CDR load options in C++.' type: docs -weight: 1600 +weight: 1800 url: /cpp/aspose.pdf/cdrloadoptions/ --- ## CdrLoadOptions class diff --git a/english/cpp/aspose.pdf/cell/_index.md b/english/cpp/aspose.pdf/cell/_index.md index 7efdf77b3f..3dcfff0997 100644 --- a/english/cpp/aspose.pdf/cell/_index.md +++ b/english/cpp/aspose.pdf/cell/_index.md @@ -4,7 +4,7 @@ linktitle: Cell second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Cell class. Represents a cell of the table''s row in C++.' type: docs -weight: 1700 +weight: 1900 url: /cpp/aspose.pdf/cell/ --- ## Cell class diff --git a/english/cpp/aspose.pdf/cells/_index.md b/english/cpp/aspose.pdf/cells/_index.md index 7db63f5bfa..40da85bb3e 100644 --- a/english/cpp/aspose.pdf/cells/_index.md +++ b/english/cpp/aspose.pdf/cells/_index.md @@ -4,7 +4,7 @@ linktitle: Cells second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Cells class. Represents a cells collection of row in C++.' type: docs -weight: 1800 +weight: 2000 url: /cpp/aspose.pdf/cells/ --- ## Cells class diff --git a/english/cpp/aspose.pdf/center/_index.md b/english/cpp/aspose.pdf/center/_index.md index 135afd337c..973cc200b4 100644 --- a/english/cpp/aspose.pdf/center/_index.md +++ b/english/cpp/aspose.pdf/center/_index.md @@ -4,7 +4,7 @@ linktitle: Center second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Center class. Represents the center alignment settings for header and footer data in C++.' type: docs -weight: 1900 +weight: 2100 url: /cpp/aspose.pdf/center/ --- ## Center class diff --git a/english/cpp/aspose.pdf/cgmimportoptions/_index.md b/english/cpp/aspose.pdf/cgmimportoptions/_index.md index 6e591749fc..165c031b80 100644 --- a/english/cpp/aspose.pdf/cgmimportoptions/_index.md +++ b/english/cpp/aspose.pdf/cgmimportoptions/_index.md @@ -4,7 +4,7 @@ linktitle: CgmImportOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::CgmImportOptions class. Import option for import from Computer Graphics Metafile(CGM) format in C++.' type: docs -weight: 2000 +weight: 2200 url: /cpp/aspose.pdf/cgmimportoptions/ --- ## CgmImportOptions class diff --git a/english/cpp/aspose.pdf/cgmloadoptions/_index.md b/english/cpp/aspose.pdf/cgmloadoptions/_index.md index c302f8ea75..f5a0fef085 100644 --- a/english/cpp/aspose.pdf/cgmloadoptions/_index.md +++ b/english/cpp/aspose.pdf/cgmloadoptions/_index.md @@ -4,7 +4,7 @@ linktitle: CgmLoadOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::CgmLoadOptions class. Contains options for loading/importing CGM file into pdf document in C++.' type: docs -weight: 2100 +weight: 2300 url: /cpp/aspose.pdf/cgmloadoptions/ --- ## CgmLoadOptions class diff --git a/english/cpp/aspose.pdf/collection/_index.md b/english/cpp/aspose.pdf/collection/_index.md index e66b6d3e14..0e492e6ec4 100644 --- a/english/cpp/aspose.pdf/collection/_index.md +++ b/english/cpp/aspose.pdf/collection/_index.md @@ -4,7 +4,7 @@ linktitle: Collection second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Collection class. Represents class for Collection(12.3.5 Collections) in C++.' type: docs -weight: 2200 +weight: 2400 url: /cpp/aspose.pdf/collection/ --- ## Collection class diff --git a/english/cpp/aspose.pdf/collectionfield/_index.md b/english/cpp/aspose.pdf/collectionfield/_index.md index 2d523003c8..f9ef400fe8 100644 --- a/english/cpp/aspose.pdf/collectionfield/_index.md +++ b/english/cpp/aspose.pdf/collectionfield/_index.md @@ -4,7 +4,7 @@ linktitle: CollectionField second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::CollectionField class. Represents a document collection schema field class in C++.' type: docs -weight: 2300 +weight: 2500 url: /cpp/aspose.pdf/collectionfield/ --- ## CollectionField class diff --git a/english/cpp/aspose.pdf/collectionfieldsubtype/_index.md b/english/cpp/aspose.pdf/collectionfieldsubtype/_index.md index 276f8a7815..910cd83e81 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: 21500 +weight: 21700 url: /cpp/aspose.pdf/collectionfieldsubtype/ --- ## CollectionFieldSubtype enum diff --git a/english/cpp/aspose.pdf/collectionfieldsubtypeconverter/_index.md b/english/cpp/aspose.pdf/collectionfieldsubtypeconverter/_index.md index 90337abcda..fb03bf0fc6 100644 --- a/english/cpp/aspose.pdf/collectionfieldsubtypeconverter/_index.md +++ b/english/cpp/aspose.pdf/collectionfieldsubtypeconverter/_index.md @@ -4,7 +4,7 @@ linktitle: CollectionFieldSubtypeConverter second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::CollectionFieldSubtypeConverter class. Represents a class for converting CollectionFieldSubtype values in C++.' type: docs -weight: 2400 +weight: 2600 url: /cpp/aspose.pdf/collectionfieldsubtypeconverter/ --- ## CollectionFieldSubtypeConverter class diff --git a/english/cpp/aspose.pdf/collectionitem/_index.md b/english/cpp/aspose.pdf/collectionitem/_index.md index dadfc22a94..8d40371ab3 100644 --- a/english/cpp/aspose.pdf/collectionitem/_index.md +++ b/english/cpp/aspose.pdf/collectionitem/_index.md @@ -4,7 +4,7 @@ linktitle: CollectionItem second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::CollectionItem class. Represents a collection item class. The collection item contains the data described by the collection schema in C++.' type: docs -weight: 2500 +weight: 2700 url: /cpp/aspose.pdf/collectionitem/ --- ## CollectionItem class diff --git a/english/cpp/aspose.pdf/collectionschema/_index.md b/english/cpp/aspose.pdf/collectionschema/_index.md index 559f396f4e..68c6d3c963 100644 --- a/english/cpp/aspose.pdf/collectionschema/_index.md +++ b/english/cpp/aspose.pdf/collectionschema/_index.md @@ -4,7 +4,7 @@ linktitle: CollectionSchema second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::CollectionSchema class. Represents a class that describes the "Schema" of a document collection in C++.' type: docs -weight: 2600 +weight: 2800 url: /cpp/aspose.pdf/collectionschema/ --- ## CollectionSchema class diff --git a/english/cpp/aspose.pdf/collectionsort/_index.md b/english/cpp/aspose.pdf/collectionsort/_index.md index ffd1415685..8870ca23b0 100644 --- a/english/cpp/aspose.pdf/collectionsort/_index.md +++ b/english/cpp/aspose.pdf/collectionsort/_index.md @@ -4,7 +4,7 @@ linktitle: CollectionSort second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::CollectionSort class. Represents a class for a collection sort definition in C++.' type: docs -weight: 2700 +weight: 2900 url: /cpp/aspose.pdf/collectionsort/ --- ## CollectionSort class diff --git a/english/cpp/aspose.pdf/color/_index.md b/english/cpp/aspose.pdf/color/_index.md index f9699416a2..a5a58cd009 100644 --- a/english/cpp/aspose.pdf/color/_index.md +++ b/english/cpp/aspose.pdf/color/_index.md @@ -4,7 +4,7 @@ linktitle: Color second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Color class. Represents class for color value which can be expressed in different color space in C++.' type: docs -weight: 2800 +weight: 3000 url: /cpp/aspose.pdf/color/ --- ## Color class diff --git a/english/cpp/aspose.pdf/colorspace/_index.md b/english/cpp/aspose.pdf/colorspace/_index.md index bc7adb3a35..ec6b7ce2ad 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: 21600 +weight: 21800 url: /cpp/aspose.pdf/colorspace/ --- ## ColorSpace enum diff --git a/english/cpp/aspose.pdf/colorspaceconverter/_index.md b/english/cpp/aspose.pdf/colorspaceconverter/_index.md index 29c125027c..0fa60d16cb 100644 --- a/english/cpp/aspose.pdf/colorspaceconverter/_index.md +++ b/english/cpp/aspose.pdf/colorspaceconverter/_index.md @@ -4,7 +4,7 @@ linktitle: ColorSpaceConverter second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::ColorSpaceConverter class in C++.' type: docs -weight: 2900 +weight: 3100 url: /cpp/aspose.pdf/colorspaceconverter/ --- ## ColorSpaceConverter class diff --git a/english/cpp/aspose.pdf/colortype/_index.md b/english/cpp/aspose.pdf/colortype/_index.md index a5f30fc5dd..9d842dbe75 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: 21700 +weight: 21900 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 01f83a71e9..3fe2b573da 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: 21800 +weight: 22000 url: /cpp/aspose.pdf/columnadjustment/ --- ## ColumnAdjustment enum diff --git a/english/cpp/aspose.pdf/columninfo/_index.md b/english/cpp/aspose.pdf/columninfo/_index.md index caf323f143..bdeb9c7288 100644 --- a/english/cpp/aspose.pdf/columninfo/_index.md +++ b/english/cpp/aspose.pdf/columninfo/_index.md @@ -4,7 +4,7 @@ linktitle: ColumnInfo second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::ColumnInfo class. This class represents a columns info in C++.' type: docs -weight: 3000 +weight: 3200 url: /cpp/aspose.pdf/columninfo/ --- ## ColumnInfo class diff --git a/english/cpp/aspose.pdf/comhelper/_index.md b/english/cpp/aspose.pdf/comhelper/_index.md index 760ce36a0e..d2f1b66784 100644 --- a/english/cpp/aspose.pdf/comhelper/_index.md +++ b/english/cpp/aspose.pdf/comhelper/_index.md @@ -4,7 +4,7 @@ linktitle: ComHelper second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::ComHelper class. Provides methods for COM clients to load a document into Aspose.Pdf in C++.' type: docs -weight: 3100 +weight: 3300 url: /cpp/aspose.pdf/comhelper/ --- ## ComHelper class diff --git a/english/cpp/aspose.pdf/compositingparameters/_index.md b/english/cpp/aspose.pdf/compositingparameters/_index.md index 89b3437129..bcf6d9a5d9 100644 --- a/english/cpp/aspose.pdf/compositingparameters/_index.md +++ b/english/cpp/aspose.pdf/compositingparameters/_index.md @@ -4,7 +4,7 @@ linktitle: CompositingParameters second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::CompositingParameters class. Represents an object containing graphics compositing parameters of current graphics state in C++.' type: docs -weight: 3200 +weight: 3400 url: /cpp/aspose.pdf/compositingparameters/ --- ## CompositingParameters class diff --git a/english/cpp/aspose.pdf/contentdisposition/_index.md b/english/cpp/aspose.pdf/contentdisposition/_index.md index c5eb517ef6..d0d296c65c 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: 21900 +weight: 22100 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 f04bf2e0fe..eb1fcbb266 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: 22000 +weight: 22200 url: /cpp/aspose.pdf/converterroraction/ --- ## ConvertErrorAction enum diff --git a/english/cpp/aspose.pdf/convertexception/_index.md b/english/cpp/aspose.pdf/convertexception/_index.md index d9394d38d2..cc65e52447 100644 --- a/english/cpp/aspose.pdf/convertexception/_index.md +++ b/english/cpp/aspose.pdf/convertexception/_index.md @@ -4,7 +4,7 @@ linktitle: ConvertException second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::ConvertException typedef in C++.' type: docs -weight: 27500 +weight: 27700 url: /cpp/aspose.pdf/convertexception/ --- ## ConvertException typedef diff --git a/english/cpp/aspose.pdf/convertsoftmaskaction/_index.md b/english/cpp/aspose.pdf/convertsoftmaskaction/_index.md index 8fa47d721e..5d576d4c51 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: 22100 +weight: 22300 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 80e4fe1499..30ffd783b4 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: 22200 +weight: 22400 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 e2140e673f..0e4170e1f3 100644 --- a/english/cpp/aspose.pdf/crashreportoptions/_index.md +++ b/english/cpp/aspose.pdf/crashreportoptions/_index.md @@ -4,7 +4,7 @@ linktitle: CrashReportOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::CrashReportOptions class. Options for crash report generating in C++.' type: docs -weight: 3300 +weight: 3500 url: /cpp/aspose.pdf/crashreportoptions/ --- ## CrashReportOptions class diff --git a/english/cpp/aspose.pdf/cryptoalgorithm/_index.md b/english/cpp/aspose.pdf/cryptoalgorithm/_index.md index 919d25531e..a325476f2e 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: 22300 +weight: 22500 url: /cpp/aspose.pdf/cryptoalgorithm/ --- ## CryptoAlgorithm enum diff --git a/english/cpp/aspose.pdf/datecomponent/_index.md b/english/cpp/aspose.pdf/datecomponent/_index.md index 41dc620799..16f2c9f616 100644 --- a/english/cpp/aspose.pdf/datecomponent/_index.md +++ b/english/cpp/aspose.pdf/datecomponent/_index.md @@ -4,7 +4,7 @@ linktitle: DateComponent second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::DateComponent class. Represents a base class for date components with a format attribute in C++.' type: docs -weight: 3400 +weight: 3600 url: /cpp/aspose.pdf/datecomponent/ --- ## DateComponent class diff --git a/english/cpp/aspose.pdf/defaultstate/_index.md b/english/cpp/aspose.pdf/defaultstate/_index.md index ee5d62ac03..7bcf802cfc 100644 --- a/english/cpp/aspose.pdf/defaultstate/_index.md +++ b/english/cpp/aspose.pdf/defaultstate/_index.md @@ -4,7 +4,7 @@ linktitle: DefaultState second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::DefaultState enum. Represents the default state of a PDF layer in C++.' type: docs -weight: 22400 +weight: 22600 url: /cpp/aspose.pdf/defaultstate/ --- ## DefaultState enum diff --git a/english/cpp/aspose.pdf/deprecatedfeatureexception/_index.md b/english/cpp/aspose.pdf/deprecatedfeatureexception/_index.md index 582bfb76ce..ed4a8fb12b 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: 27600 +weight: 27800 url: /cpp/aspose.pdf/deprecatedfeatureexception/ --- ## DeprecatedFeatureException typedef diff --git a/english/cpp/aspose.pdf/destinationcollection/_index.md b/english/cpp/aspose.pdf/destinationcollection/_index.md index 1958bc3b52..4f26a3a286 100644 --- a/english/cpp/aspose.pdf/destinationcollection/_index.md +++ b/english/cpp/aspose.pdf/destinationcollection/_index.md @@ -4,7 +4,7 @@ linktitle: DestinationCollection second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::DestinationCollection class. Class represents the collection of all destinations (a name tree mapping name strings to destinations (see 12.3.2.3, "Named Destinations") and (see 7.7.4, "Name Dictionary")) in the pdf document in C++.' type: docs -weight: 3500 +weight: 3700 url: /cpp/aspose.pdf/destinationcollection/ --- ## DestinationCollection class diff --git a/english/cpp/aspose.pdf/digesthashalgorithm/_index.md b/english/cpp/aspose.pdf/digesthashalgorithm/_index.md index 9aabbdf5ee..15266086c8 100644 --- a/english/cpp/aspose.pdf/digesthashalgorithm/_index.md +++ b/english/cpp/aspose.pdf/digesthashalgorithm/_index.md @@ -4,7 +4,7 @@ linktitle: DigestHashAlgorithm second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::DigestHashAlgorithm enum. Represent type of algorithm that maps data to a "hash" in C++.' type: docs -weight: 22500 +weight: 22700 url: /cpp/aspose.pdf/digesthashalgorithm/ --- ## DigestHashAlgorithm enum diff --git a/english/cpp/aspose.pdf/direction/_index.md b/english/cpp/aspose.pdf/direction/_index.md index 77b332b225..fd6fd42ef0 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: 22600 +weight: 22800 url: /cpp/aspose.pdf/direction/ --- ## Direction enum diff --git a/english/cpp/aspose.pdf/directionconverter/_index.md b/english/cpp/aspose.pdf/directionconverter/_index.md index 80f9fbf41f..553257e3a2 100644 --- a/english/cpp/aspose.pdf/directionconverter/_index.md +++ b/english/cpp/aspose.pdf/directionconverter/_index.md @@ -4,7 +4,7 @@ linktitle: DirectionConverter second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::DirectionConverter class in C++.' type: docs -weight: 3600 +weight: 3800 url: /cpp/aspose.pdf/directionconverter/ --- ## DirectionConverter class diff --git a/english/cpp/aspose.pdf/djvuloadoptions/_index.md b/english/cpp/aspose.pdf/djvuloadoptions/_index.md index e9ff80d355..26a37debb0 100644 --- a/english/cpp/aspose.pdf/djvuloadoptions/_index.md +++ b/english/cpp/aspose.pdf/djvuloadoptions/_index.md @@ -4,7 +4,7 @@ linktitle: DjvuLoadOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::DjvuLoadOptions class. Class describes DJVU load options in C++.' type: docs -weight: 3700 +weight: 3900 url: /cpp/aspose.pdf/djvuloadoptions/ --- ## DjvuLoadOptions class diff --git a/english/cpp/aspose.pdf/docsaveoptions/_index.md b/english/cpp/aspose.pdf/docsaveoptions/_index.md index dd32c750af..f3b8f43dc7 100644 --- a/english/cpp/aspose.pdf/docsaveoptions/_index.md +++ b/english/cpp/aspose.pdf/docsaveoptions/_index.md @@ -4,7 +4,7 @@ linktitle: DocSaveOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::DocSaveOptions class. Save options for export to Doc format in C++.' type: docs -weight: 3800 +weight: 4000 url: /cpp/aspose.pdf/docsaveoptions/ --- ## DocSaveOptions class diff --git a/english/cpp/aspose.pdf/document/_index.md b/english/cpp/aspose.pdf/document/_index.md index ea2830b3a8..c7eda4e0ea 100644 --- a/english/cpp/aspose.pdf/document/_index.md +++ b/english/cpp/aspose.pdf/document/_index.md @@ -4,7 +4,7 @@ linktitle: Document second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document class. Class representing PDF document in C++.' type: docs -weight: 3900 +weight: 4100 url: /cpp/aspose.pdf/document/ --- ## Document class diff --git a/english/cpp/aspose.pdf/documentextensions/_index.md b/english/cpp/aspose.pdf/documentextensions/_index.md index f5930ee4ad..a32dc69da0 100644 --- a/english/cpp/aspose.pdf/documentextensions/_index.md +++ b/english/cpp/aspose.pdf/documentextensions/_index.md @@ -4,7 +4,7 @@ linktitle: DocumentExtensions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::DocumentExtensions class. Provides additional capabilities for the Document class in C++.' type: docs -weight: 4000 +weight: 4200 url: /cpp/aspose.pdf/documentextensions/ --- ## DocumentExtensions class diff --git a/english/cpp/aspose.pdf/documentfactory/_index.md b/english/cpp/aspose.pdf/documentfactory/_index.md index 525720868e..36a20c914d 100644 --- a/english/cpp/aspose.pdf/documentfactory/_index.md +++ b/english/cpp/aspose.pdf/documentfactory/_index.md @@ -4,7 +4,7 @@ linktitle: DocumentFactory second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::DocumentFactory class. Class which allows to create/load documents of different types in C++.' type: docs -weight: 4100 +weight: 4300 url: /cpp/aspose.pdf/documentfactory/ --- ## DocumentFactory class diff --git a/english/cpp/aspose.pdf/documentinfo/_index.md b/english/cpp/aspose.pdf/documentinfo/_index.md index 7ce9f157ce..765e147767 100644 --- a/english/cpp/aspose.pdf/documentinfo/_index.md +++ b/english/cpp/aspose.pdf/documentinfo/_index.md @@ -4,7 +4,7 @@ linktitle: DocumentInfo second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::DocumentInfo class. Represents meta information of PDF document in C++.' type: docs -weight: 4200 +weight: 4400 url: /cpp/aspose.pdf/documentinfo/ --- ## DocumentInfo class diff --git a/english/cpp/aspose.pdf/editiontype/_index.md b/english/cpp/aspose.pdf/editiontype/_index.md index c8ac705ae3..5a0a4a145c 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: 22700 +weight: 22900 url: /cpp/aspose.pdf/editiontype/ --- ## EditionType enum diff --git a/english/cpp/aspose.pdf/embeddedfilecollection/_index.md b/english/cpp/aspose.pdf/embeddedfilecollection/_index.md index 02036bfd50..252d064e38 100644 --- a/english/cpp/aspose.pdf/embeddedfilecollection/_index.md +++ b/english/cpp/aspose.pdf/embeddedfilecollection/_index.md @@ -4,7 +4,7 @@ linktitle: EmbeddedFileCollection second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::EmbeddedFileCollection class. Class representing embedded files collection in C++.' type: docs -weight: 4300 +weight: 4500 url: /cpp/aspose.pdf/embeddedfilecollection/ --- ## EmbeddedFileCollection class diff --git a/english/cpp/aspose.pdf/embeddedfilesdoesnotexists/_index.md b/english/cpp/aspose.pdf/embeddedfilesdoesnotexists/_index.md index e62277bc7f..ef78835007 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: 27700 +weight: 27900 url: /cpp/aspose.pdf/embeddedfilesdoesnotexists/ --- ## EmbeddedFilesDoesNotExists typedef diff --git a/english/cpp/aspose.pdf/emphasisstyle/_index.md b/english/cpp/aspose.pdf/emphasisstyle/_index.md index 51928381bb..1a606a3b87 100644 --- a/english/cpp/aspose.pdf/emphasisstyle/_index.md +++ b/english/cpp/aspose.pdf/emphasisstyle/_index.md @@ -4,7 +4,7 @@ linktitle: EmphasisStyle second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::EmphasisStyle enum. Defines the available serialization styles for emphasis and strong emphasis. For specification see CommonMark - Emphasis and strong emphasis in C++.' type: docs -weight: 22800 +weight: 23000 url: /cpp/aspose.pdf/emphasisstyle/ --- ## EmphasisStyle enum diff --git a/english/cpp/aspose.pdf/emptyvalueexception/_index.md b/english/cpp/aspose.pdf/emptyvalueexception/_index.md index 38aecbac58..385c976a5c 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: 27800 +weight: 28000 url: /cpp/aspose.pdf/emptyvalueexception/ --- ## EmptyValueException typedef diff --git a/english/cpp/aspose.pdf/encryptedpayload/_index.md b/english/cpp/aspose.pdf/encryptedpayload/_index.md index 1cc3265921..c116906851 100644 --- a/english/cpp/aspose.pdf/encryptedpayload/_index.md +++ b/english/cpp/aspose.pdf/encryptedpayload/_index.md @@ -4,7 +4,7 @@ linktitle: EncryptedPayload second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::EncryptedPayload class. Represents encrypted payload in file specification in C++.' type: docs -weight: 4400 +weight: 4600 url: /cpp/aspose.pdf/encryptedpayload/ --- ## EncryptedPayload class diff --git a/english/cpp/aspose.pdf/epubloadoptions/_index.md b/english/cpp/aspose.pdf/epubloadoptions/_index.md index 39f98b1e4e..3154435005 100644 --- a/english/cpp/aspose.pdf/epubloadoptions/_index.md +++ b/english/cpp/aspose.pdf/epubloadoptions/_index.md @@ -4,7 +4,7 @@ linktitle: EpubLoadOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::EpubLoadOptions class. Contains options for loading/importing EPUB file into pdf document in C++.' type: docs -weight: 4500 +weight: 4700 url: /cpp/aspose.pdf/epubloadoptions/ --- ## EpubLoadOptions class diff --git a/english/cpp/aspose.pdf/epubsaveoptions/_index.md b/english/cpp/aspose.pdf/epubsaveoptions/_index.md index 731188bb75..59ab24cf87 100644 --- a/english/cpp/aspose.pdf/epubsaveoptions/_index.md +++ b/english/cpp/aspose.pdf/epubsaveoptions/_index.md @@ -4,7 +4,7 @@ linktitle: EpubSaveOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::EpubSaveOptions class. Save options for export to EPUB format in C++.' type: docs -weight: 4600 +weight: 4800 url: /cpp/aspose.pdf/epubsaveoptions/ --- ## EpubSaveOptions class diff --git a/english/cpp/aspose.pdf/excelsaveoptions/_index.md b/english/cpp/aspose.pdf/excelsaveoptions/_index.md index 5e76407de8..eb68472203 100644 --- a/english/cpp/aspose.pdf/excelsaveoptions/_index.md +++ b/english/cpp/aspose.pdf/excelsaveoptions/_index.md @@ -4,7 +4,7 @@ linktitle: ExcelSaveOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::ExcelSaveOptions class. Save options for export to Excel format in C++.' type: docs -weight: 4700 +weight: 4900 url: /cpp/aspose.pdf/excelsaveoptions/ --- ## ExcelSaveOptions class diff --git a/english/cpp/aspose.pdf/exportfieldsoptions/_index.md b/english/cpp/aspose.pdf/exportfieldsoptions/_index.md index 1f021fa338..c78b9f2420 100644 --- a/english/cpp/aspose.pdf/exportfieldsoptions/_index.md +++ b/english/cpp/aspose.pdf/exportfieldsoptions/_index.md @@ -4,7 +4,7 @@ linktitle: ExportFieldsOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::ExportFieldsOptions class. Represents base class of options for exporting form fields in C++.' type: docs -weight: 4800 +weight: 5000 url: /cpp/aspose.pdf/exportfieldsoptions/ --- ## ExportFieldsOptions class diff --git a/english/cpp/aspose.pdf/exportfieldstojsonoptions/_index.md b/english/cpp/aspose.pdf/exportfieldstojsonoptions/_index.md index c25d5cc64d..7677ee13d1 100644 --- a/english/cpp/aspose.pdf/exportfieldstojsonoptions/_index.md +++ b/english/cpp/aspose.pdf/exportfieldstojsonoptions/_index.md @@ -4,7 +4,7 @@ linktitle: ExportFieldsToJsonOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::ExportFieldsToJsonOptions class. Represents options for exporting form fields to Json format in C++.' type: docs -weight: 4900 +weight: 5100 url: /cpp/aspose.pdf/exportfieldstojsonoptions/ --- ## ExportFieldsToJsonOptions class diff --git a/english/cpp/aspose.pdf/exportimportmessages/_index.md b/english/cpp/aspose.pdf/exportimportmessages/_index.md index 0bfd6ae57a..123fa858a1 100644 --- a/english/cpp/aspose.pdf/exportimportmessages/_index.md +++ b/english/cpp/aspose.pdf/exportimportmessages/_index.md @@ -4,7 +4,7 @@ linktitle: ExportImportMessages second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::ExportImportMessages class. Contains various error messages for export and import operations of form fields in C++.' type: docs -weight: 5000 +weight: 5200 url: /cpp/aspose.pdf/exportimportmessages/ --- ## ExportImportMessages class diff --git a/english/cpp/aspose.pdf/extendedboolean/_index.md b/english/cpp/aspose.pdf/extendedboolean/_index.md index 3e6cc9a4ed..00c7ce4f0d 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: 22900 +weight: 23100 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 aa8e9ef282..cc706a774e 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: 23000 +weight: 23200 url: /cpp/aspose.pdf/extractimagemode/ --- ## ExtractImageMode enum diff --git a/english/cpp/aspose.pdf/fieldserializationresult/_index.md b/english/cpp/aspose.pdf/fieldserializationresult/_index.md index 44a9994ddf..d8ffa04af3 100644 --- a/english/cpp/aspose.pdf/fieldserializationresult/_index.md +++ b/english/cpp/aspose.pdf/fieldserializationresult/_index.md @@ -4,7 +4,7 @@ linktitle: FieldSerializationResult second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::FieldSerializationResult class. Represents the result of a form field serialization process in C++.' type: docs -weight: 5100 +weight: 5300 url: /cpp/aspose.pdf/fieldserializationresult/ --- ## FieldSerializationResult class diff --git a/english/cpp/aspose.pdf/fieldserializationstatus/_index.md b/english/cpp/aspose.pdf/fieldserializationstatus/_index.md index e9edacd925..6ee6cd0a36 100644 --- a/english/cpp/aspose.pdf/fieldserializationstatus/_index.md +++ b/english/cpp/aspose.pdf/fieldserializationstatus/_index.md @@ -4,7 +4,7 @@ linktitle: FieldSerializationStatus second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::FieldSerializationStatus enum. Represents the status of the form field serialization in C++.' type: docs -weight: 23100 +weight: 23300 url: /cpp/aspose.pdf/fieldserializationstatus/ --- ## FieldSerializationStatus enum diff --git a/english/cpp/aspose.pdf/fieldvaluetype/_index.md b/english/cpp/aspose.pdf/fieldvaluetype/_index.md index 2a39091ea2..25dab48641 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: 23200 +weight: 23400 url: /cpp/aspose.pdf/fieldvaluetype/ --- ## FieldValueType enum diff --git a/english/cpp/aspose.pdf/filechecker/_index.md b/english/cpp/aspose.pdf/filechecker/_index.md index 9cae625972..ba02bf05e2 100644 --- a/english/cpp/aspose.pdf/filechecker/_index.md +++ b/english/cpp/aspose.pdf/filechecker/_index.md @@ -4,7 +4,7 @@ linktitle: FileChecker second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::FileChecker class. Represents a class for checking file security in C++.' type: docs -weight: 5200 +weight: 5400 url: /cpp/aspose.pdf/filechecker/ --- ## FileChecker class diff --git a/english/cpp/aspose.pdf/fileencoding/_index.md b/english/cpp/aspose.pdf/fileencoding/_index.md index 62ec92f122..40c69fd732 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: 23300 +weight: 23500 url: /cpp/aspose.pdf/fileencoding/ --- ## FileEncoding enum diff --git a/english/cpp/aspose.pdf/filehyperlink/_index.md b/english/cpp/aspose.pdf/filehyperlink/_index.md index ca1881a41c..fae653f72b 100644 --- a/english/cpp/aspose.pdf/filehyperlink/_index.md +++ b/english/cpp/aspose.pdf/filehyperlink/_index.md @@ -4,7 +4,7 @@ linktitle: FileHyperlink second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::FileHyperlink class. Represents file hyperlink object in C++.' type: docs -weight: 5300 +weight: 5500 url: /cpp/aspose.pdf/filehyperlink/ --- ## FileHyperlink class diff --git a/english/cpp/aspose.pdf/fileparams/_index.md b/english/cpp/aspose.pdf/fileparams/_index.md index 9e1c77dc7d..c194d4d936 100644 --- a/english/cpp/aspose.pdf/fileparams/_index.md +++ b/english/cpp/aspose.pdf/fileparams/_index.md @@ -4,7 +4,7 @@ linktitle: FileParams second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::FileParams class. Defines an embedded file parameter dictionary that shall contain additional file-specific information in C++.' type: docs -weight: 5400 +weight: 5600 url: /cpp/aspose.pdf/fileparams/ --- ## FileParams class diff --git a/english/cpp/aspose.pdf/filespecification/_index.md b/english/cpp/aspose.pdf/filespecification/_index.md index 7796784a18..b88a505ad9 100644 --- a/english/cpp/aspose.pdf/filespecification/_index.md +++ b/english/cpp/aspose.pdf/filespecification/_index.md @@ -4,7 +4,7 @@ linktitle: FileSpecification second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::FileSpecification class. Class representing embedded file in C++.' type: docs -weight: 5500 +weight: 5700 url: /cpp/aspose.pdf/filespecification/ --- ## FileSpecification class diff --git a/english/cpp/aspose.pdf/filespecificationcomparer/_index.md b/english/cpp/aspose.pdf/filespecificationcomparer/_index.md index 0d4a8c1cc8..30197bd430 100644 --- a/english/cpp/aspose.pdf/filespecificationcomparer/_index.md +++ b/english/cpp/aspose.pdf/filespecificationcomparer/_index.md @@ -4,7 +4,7 @@ linktitle: FileSpecificationComparer second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::FileSpecificationComparer class. Represents a comparator class for a file specification. The comparator compares according to the specification, using the list of fields to sort in the collection definition. According to the specification, sorting is done by collection items values. If there is no collection items dictionary, then sorting is done by Params values in C++.' type: docs -weight: 5600 +weight: 5800 url: /cpp/aspose.pdf/filespecificationcomparer/ --- ## FileSpecificationComparer class diff --git a/english/cpp/aspose.pdf/fixup/_index.md b/english/cpp/aspose.pdf/fixup/_index.md index cac6af6377..50f3e3c770 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: 23400 +weight: 23600 url: /cpp/aspose.pdf/fixup/ --- ## Fixup enum diff --git a/english/cpp/aspose.pdf/floatingbox/_index.md b/english/cpp/aspose.pdf/floatingbox/_index.md index cc26c6bfa9..17968277f4 100644 --- a/english/cpp/aspose.pdf/floatingbox/_index.md +++ b/english/cpp/aspose.pdf/floatingbox/_index.md @@ -4,7 +4,7 @@ linktitle: FloatingBox second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::FloatingBox class. Represents a FloatingBox in a Pdf document. FloatingBox is custom positioned in C++.' type: docs -weight: 5700 +weight: 5900 url: /cpp/aspose.pdf/floatingbox/ --- ## FloatingBox class diff --git a/english/cpp/aspose.pdf/fontembeddingexception/_index.md b/english/cpp/aspose.pdf/fontembeddingexception/_index.md index 22d7d8b482..f5d835a90c 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: 27900 +weight: 28100 url: /cpp/aspose.pdf/fontembeddingexception/ --- ## FontEmbeddingException typedef diff --git a/english/cpp/aspose.pdf/fontembeddingoptions/_index.md b/english/cpp/aspose.pdf/fontembeddingoptions/_index.md index 4d161f93f0..a8d4703cf6 100644 --- a/english/cpp/aspose.pdf/fontembeddingoptions/_index.md +++ b/english/cpp/aspose.pdf/fontembeddingoptions/_index.md @@ -4,7 +4,7 @@ linktitle: FontEmbeddingOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::FontEmbeddingOptions class. PDF/A standard requires, that all fonts must be embedded into document. This class includes flags for cases when it''s not possible to embed some font cause this font is absent on destination PC in C++.' type: docs -weight: 5800 +weight: 6000 url: /cpp/aspose.pdf/fontembeddingoptions/ --- ## FontEmbeddingOptions class diff --git a/english/cpp/aspose.pdf/fontnotfoundexception/_index.md b/english/cpp/aspose.pdf/fontnotfoundexception/_index.md index b3e22f39d2..302baffd5f 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: 28000 +weight: 28200 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 305f8fa7fe..345213fad1 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: 23500 +weight: 23700 url: /cpp/aspose.pdf/fontsubsetstrategy/ --- ## FontSubsetStrategy enum diff --git a/english/cpp/aspose.pdf/footer/_index.md b/english/cpp/aspose.pdf/footer/_index.md index 9cff7d3242..450ed6e1ab 100644 --- a/english/cpp/aspose.pdf/footer/_index.md +++ b/english/cpp/aspose.pdf/footer/_index.md @@ -4,7 +4,7 @@ linktitle: Footer second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Footer class. Represents the footer settings in C++.' type: docs -weight: 5900 +weight: 6100 url: /cpp/aspose.pdf/footer/ --- ## Footer class diff --git a/english/cpp/aspose.pdf/footerartifact/_index.md b/english/cpp/aspose.pdf/footerartifact/_index.md index f165e69369..c7f90cb61d 100644 --- a/english/cpp/aspose.pdf/footerartifact/_index.md +++ b/english/cpp/aspose.pdf/footerartifact/_index.md @@ -4,7 +4,7 @@ linktitle: FooterArtifact second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::FooterArtifact class. Describes footer artifact. This may be used to set footer of the page in C++.' type: docs -weight: 6000 +weight: 6200 url: /cpp/aspose.pdf/footerartifact/ --- ## FooterArtifact class diff --git a/english/cpp/aspose.pdf/formattedfragment/_index.md b/english/cpp/aspose.pdf/formattedfragment/_index.md index 18328ad440..01387ef91d 100644 --- a/english/cpp/aspose.pdf/formattedfragment/_index.md +++ b/english/cpp/aspose.pdf/formattedfragment/_index.md @@ -4,7 +4,7 @@ linktitle: FormattedFragment second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::FormattedFragment class. Represents abstract formatted fragment in C++.' type: docs -weight: 6100 +weight: 6300 url: /cpp/aspose.pdf/formattedfragment/ --- ## FormattedFragment class diff --git a/english/cpp/aspose.pdf/graphinfo/_index.md b/english/cpp/aspose.pdf/graphinfo/_index.md index cc72daadfc..fb129d3704 100644 --- a/english/cpp/aspose.pdf/graphinfo/_index.md +++ b/english/cpp/aspose.pdf/graphinfo/_index.md @@ -4,7 +4,7 @@ linktitle: GraphInfo second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::GraphInfo class. Represents graphics info in C++.' type: docs -weight: 6200 +weight: 6400 url: /cpp/aspose.pdf/graphinfo/ --- ## GraphInfo class diff --git a/english/cpp/aspose.pdf/group/_index.md b/english/cpp/aspose.pdf/group/_index.md index 77513b6b32..a9748dbcff 100644 --- a/english/cpp/aspose.pdf/group/_index.md +++ b/english/cpp/aspose.pdf/group/_index.md @@ -4,7 +4,7 @@ linktitle: Group second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Group class. A group attributes class specifying the attributes of the page''s page group for use in the transparent imaging model in C++.' type: docs -weight: 6300 +weight: 6500 url: /cpp/aspose.pdf/group/ --- ## Group class diff --git a/english/cpp/aspose.pdf/header/_index.md b/english/cpp/aspose.pdf/header/_index.md index 4a34138413..4a0f23e008 100644 --- a/english/cpp/aspose.pdf/header/_index.md +++ b/english/cpp/aspose.pdf/header/_index.md @@ -4,7 +4,7 @@ linktitle: Header second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Header class. Represents the header settings in C++.' type: docs -weight: 6400 +weight: 6600 url: /cpp/aspose.pdf/header/ --- ## Header class diff --git a/english/cpp/aspose.pdf/headerartifact/_index.md b/english/cpp/aspose.pdf/headerartifact/_index.md index 1cb09e5867..ab1c4c1649 100644 --- a/english/cpp/aspose.pdf/headerartifact/_index.md +++ b/english/cpp/aspose.pdf/headerartifact/_index.md @@ -4,7 +4,7 @@ linktitle: HeaderArtifact second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::HeaderArtifact class. Class describes Heaader artifact. This artifacgt may be used to set heading of the page in C++.' type: docs -weight: 6500 +weight: 6700 url: /cpp/aspose.pdf/headerartifact/ --- ## HeaderArtifact class diff --git a/english/cpp/aspose.pdf/headerfooter/_index.md b/english/cpp/aspose.pdf/headerfooter/_index.md index 6fb1c6e4e4..9aaf6ebc94 100644 --- a/english/cpp/aspose.pdf/headerfooter/_index.md +++ b/english/cpp/aspose.pdf/headerfooter/_index.md @@ -4,7 +4,7 @@ linktitle: HeaderFooter second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::HeaderFooter class. Class represents header or footer pdf page in C++.' type: docs -weight: 6600 +weight: 6800 url: /cpp/aspose.pdf/headerfooter/ --- ## HeaderFooter class diff --git a/english/cpp/aspose.pdf/headerfooterdata/_index.md b/english/cpp/aspose.pdf/headerfooterdata/_index.md index b1f48c5196..96e3a25282 100644 --- a/english/cpp/aspose.pdf/headerfooterdata/_index.md +++ b/english/cpp/aspose.pdf/headerfooterdata/_index.md @@ -4,7 +4,7 @@ linktitle: HeaderFooterData second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::HeaderFooterData class. Represents the pagination data for header and footer in C++.' type: docs -weight: 6700 +weight: 6900 url: /cpp/aspose.pdf/headerfooterdata/ --- ## HeaderFooterData class diff --git a/english/cpp/aspose.pdf/headerfootersettings/_index.md b/english/cpp/aspose.pdf/headerfootersettings/_index.md index e5c57ce61b..9de0512e0d 100644 --- a/english/cpp/aspose.pdf/headerfootersettings/_index.md +++ b/english/cpp/aspose.pdf/headerfootersettings/_index.md @@ -4,7 +4,7 @@ linktitle: HeaderFooterSettings second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::HeaderFooterSettings class. Represents the settings for header and footer artifacts in C++.' type: docs -weight: 6800 +weight: 7000 url: /cpp/aspose.pdf/headerfootersettings/ --- ## HeaderFooterSettings class diff --git a/english/cpp/aspose.pdf/heading/_index.md b/english/cpp/aspose.pdf/heading/_index.md index 52fd64adc3..031c8ed7d6 100644 --- a/english/cpp/aspose.pdf/heading/_index.md +++ b/english/cpp/aspose.pdf/heading/_index.md @@ -4,7 +4,7 @@ linktitle: Heading second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Heading class. Represents heading in C++.' type: docs -weight: 6900 +weight: 7100 url: /cpp/aspose.pdf/heading/ --- ## Heading class diff --git a/english/cpp/aspose.pdf/headinglevels/_index.md b/english/cpp/aspose.pdf/headinglevels/_index.md index 68f1734cca..55c4d18068 100644 --- a/english/cpp/aspose.pdf/headinglevels/_index.md +++ b/english/cpp/aspose.pdf/headinglevels/_index.md @@ -4,7 +4,7 @@ linktitle: HeadingLevels second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::HeadingLevels class. Represents a class to work with header levels based on font size in C++.' type: docs -weight: 7000 +weight: 7200 url: /cpp/aspose.pdf/headinglevels/ --- ## HeadingLevels class diff --git a/english/cpp/aspose.pdf/headingrecognitionstrategy/_index.md b/english/cpp/aspose.pdf/headingrecognitionstrategy/_index.md index a46ee6eeec..8211cac1e5 100644 --- a/english/cpp/aspose.pdf/headingrecognitionstrategy/_index.md +++ b/english/cpp/aspose.pdf/headingrecognitionstrategy/_index.md @@ -4,7 +4,7 @@ linktitle: HeadingRecognitionStrategy second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::HeadingRecognitionStrategy enum. Represents types of header recognition strategies in C++.' type: docs -weight: 23600 +weight: 23800 url: /cpp/aspose.pdf/headingrecognitionstrategy/ --- ## HeadingRecognitionStrategy enum diff --git a/english/cpp/aspose.pdf/headingstyle/_index.md b/english/cpp/aspose.pdf/headingstyle/_index.md index 7dfaa8f27c..59a0a9a359 100644 --- a/english/cpp/aspose.pdf/headingstyle/_index.md +++ b/english/cpp/aspose.pdf/headingstyle/_index.md @@ -4,7 +4,7 @@ linktitle: HeadingStyle second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::HeadingStyle enum. Defines the available serialization styles for headings. For specification see CommonMark - ATX headings, respectively CommonMark - Setext headings in C++.' type: docs -weight: 23700 +weight: 23900 url: /cpp/aspose.pdf/headingstyle/ --- ## HeadingStyle enum diff --git a/english/cpp/aspose.pdf/horizontalalignment/_index.md b/english/cpp/aspose.pdf/horizontalalignment/_index.md index 0f94092e0e..ff718824ef 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: 23800 +weight: 24000 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 4c4c7a3391..f719d6a9f7 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: 23900 +weight: 24100 url: /cpp/aspose.pdf/htmldocumenttype/ --- ## HtmlDocumentType enum diff --git a/english/cpp/aspose.pdf/htmlfragment/_index.md b/english/cpp/aspose.pdf/htmlfragment/_index.md index 740433c3de..be0bc8e946 100644 --- a/english/cpp/aspose.pdf/htmlfragment/_index.md +++ b/english/cpp/aspose.pdf/htmlfragment/_index.md @@ -4,7 +4,7 @@ linktitle: HtmlFragment second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::HtmlFragment class. Represents html fragment in C++.' type: docs -weight: 7100 +weight: 7300 url: /cpp/aspose.pdf/htmlfragment/ --- ## HtmlFragment class diff --git a/english/cpp/aspose.pdf/htmlloadoptions/_index.md b/english/cpp/aspose.pdf/htmlloadoptions/_index.md index 7fb44e03c8..b6184bba68 100644 --- a/english/cpp/aspose.pdf/htmlloadoptions/_index.md +++ b/english/cpp/aspose.pdf/htmlloadoptions/_index.md @@ -4,7 +4,7 @@ linktitle: HtmlLoadOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::HtmlLoadOptions class. Represents options for loading/importing html file into pdf document in C++.' type: docs -weight: 7200 +weight: 7400 url: /cpp/aspose.pdf/htmlloadoptions/ --- ## HtmlLoadOptions class @@ -21,6 +21,7 @@ class HtmlLoadOptions : public Aspose::Pdf::LoadOptions | Method | Description | | --- | --- | | [get_BasePath](./get_basepath/)() const | The base path/url for the html file. | +| [get_CreateLogicalStructure](./get_createlogicalstructure/)() const | Gets a value indicating whether to create a logical structure in the resulting PDF document. | | [get_HtmlMediaType](./get_htmlmediatype/)() const | Gets possible media types used during rendering. | | [get_InputEncoding](./get_inputencoding/)() const | Gets the attribute specifying the encoding used for this document at the time of the parsing. If this attribute is null the encoding will determine from document character set atribute. | | [get_IsEmbedFonts](./get_isembedfonts/)() const | Gets fonts embedding to result document. | @@ -30,6 +31,7 @@ class HtmlLoadOptions : public Aspose::Pdf::LoadOptions | [get_PageLayoutOption](./get_pagelayoutoption/)() const | Gets layout option. | | [HtmlLoadOptions](./htmlloadoptions/)() | Creates load options for converting html into pdf document with empty base path. | | [HtmlLoadOptions](./htmlloadoptions/)(System::String) | Creates load options for converting html into pdf document with defined base path. | +| [set_CreateLogicalStructure](./set_createlogicalstructure/)(bool) | Sets a value indicating whether to create a logical structure in the resulting PDF document. | | [set_HtmlMediaType](./set_htmlmediatype/)(Aspose::Pdf::HtmlMediaType) | Sets possible media types used during rendering. | | [set_InputEncoding](./set_inputencoding/)(System::String) | Sets the attribute specifying the encoding used for this document at the time of the parsing. If this attribute is null the encoding will determine from document character set atribute. | | [set_IsEmbedFonts](./set_isembedfonts/)(bool) | Sets fonts embedding to result document. | diff --git a/english/cpp/aspose.pdf/htmlloadoptions/get_createlogicalstructure/_index.md b/english/cpp/aspose.pdf/htmlloadoptions/get_createlogicalstructure/_index.md new file mode 100644 index 0000000000..28ade74703 --- /dev/null +++ b/english/cpp/aspose.pdf/htmlloadoptions/get_createlogicalstructure/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::HtmlLoadOptions::get_CreateLogicalStructure method +linktitle: get_CreateLogicalStructure +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::HtmlLoadOptions::get_CreateLogicalStructure method. Gets a value indicating whether to create a logical structure in the resulting PDF document in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf/htmlloadoptions/get_createlogicalstructure/ +--- +## HtmlLoadOptions::get_CreateLogicalStructure method + + +Gets a value indicating whether to create a logical structure in the resulting PDF document. + +```cpp +bool Aspose::Pdf::HtmlLoadOptions::get_CreateLogicalStructure() const +``` + +## Remarks + + +When set to **true** + +, the logical structure of the document is created, which can improve accessibility and make the document more suitable for screen readers and other assistive technologies. +## See Also + +* Class [HtmlLoadOptions](../) +* Namespace [Aspose::Pdf](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf/htmlloadoptions/get_htmlmediatype/_index.md b/english/cpp/aspose.pdf/htmlloadoptions/get_htmlmediatype/_index.md index baa800c76e..633dc5a62f 100644 --- a/english/cpp/aspose.pdf/htmlloadoptions/get_htmlmediatype/_index.md +++ b/english/cpp/aspose.pdf/htmlloadoptions/get_htmlmediatype/_index.md @@ -4,7 +4,7 @@ linktitle: get_HtmlMediaType second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::HtmlLoadOptions::get_HtmlMediaType method. Gets possible media types used during rendering in C++.' type: docs -weight: 300 +weight: 400 url: /cpp/aspose.pdf/htmlloadoptions/get_htmlmediatype/ --- ## HtmlLoadOptions::get_HtmlMediaType method diff --git a/english/cpp/aspose.pdf/htmlloadoptions/get_inputencoding/_index.md b/english/cpp/aspose.pdf/htmlloadoptions/get_inputencoding/_index.md index bcc97eba1a..051f6d729b 100644 --- a/english/cpp/aspose.pdf/htmlloadoptions/get_inputencoding/_index.md +++ b/english/cpp/aspose.pdf/htmlloadoptions/get_inputencoding/_index.md @@ -4,7 +4,7 @@ linktitle: get_InputEncoding second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::HtmlLoadOptions::get_InputEncoding method. Gets the attribute specifying the encoding used for this document at the time of the parsing. If this attribute is null the encoding will determine from document character set atribute in C++.' type: docs -weight: 400 +weight: 500 url: /cpp/aspose.pdf/htmlloadoptions/get_inputencoding/ --- ## HtmlLoadOptions::get_InputEncoding method diff --git a/english/cpp/aspose.pdf/htmlloadoptions/get_isembedfonts/_index.md b/english/cpp/aspose.pdf/htmlloadoptions/get_isembedfonts/_index.md index 1e43a422be..a8837bffbf 100644 --- a/english/cpp/aspose.pdf/htmlloadoptions/get_isembedfonts/_index.md +++ b/english/cpp/aspose.pdf/htmlloadoptions/get_isembedfonts/_index.md @@ -4,7 +4,7 @@ linktitle: get_IsEmbedFonts second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::HtmlLoadOptions::get_IsEmbedFonts method. Gets fonts embedding to result document in C++.' type: docs -weight: 500 +weight: 600 url: /cpp/aspose.pdf/htmlloadoptions/get_isembedfonts/ --- ## HtmlLoadOptions::get_IsEmbedFonts method diff --git a/english/cpp/aspose.pdf/htmlloadoptions/get_isprioritycsspagerule/_index.md b/english/cpp/aspose.pdf/htmlloadoptions/get_isprioritycsspagerule/_index.md index 9e4fa8c799..9b386e6783 100644 --- a/english/cpp/aspose.pdf/htmlloadoptions/get_isprioritycsspagerule/_index.md +++ b/english/cpp/aspose.pdf/htmlloadoptions/get_isprioritycsspagerule/_index.md @@ -4,7 +4,7 @@ linktitle: get_IsPriorityCssPageRule second_title: Aspose.PDF for C++ API Reference description: 'How to use get_IsPriorityCssPageRule method of Aspose::Pdf::HtmlLoadOptions class in C++.' type: docs -weight: 600 +weight: 700 url: /cpp/aspose.pdf/htmlloadoptions/get_isprioritycsspagerule/ --- ## HtmlLoadOptions::get_IsPriorityCssPageRule method diff --git a/english/cpp/aspose.pdf/htmlloadoptions/get_isrendertosinglepage/_index.md b/english/cpp/aspose.pdf/htmlloadoptions/get_isrendertosinglepage/_index.md index 865a2e4350..6600e65c80 100644 --- a/english/cpp/aspose.pdf/htmlloadoptions/get_isrendertosinglepage/_index.md +++ b/english/cpp/aspose.pdf/htmlloadoptions/get_isrendertosinglepage/_index.md @@ -4,7 +4,7 @@ linktitle: get_IsRenderToSinglePage second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::HtmlLoadOptions::get_IsRenderToSinglePage method. Gets rendering all document to single page in C++.' type: docs -weight: 700 +weight: 800 url: /cpp/aspose.pdf/htmlloadoptions/get_isrendertosinglepage/ --- ## HtmlLoadOptions::get_IsRenderToSinglePage method diff --git a/english/cpp/aspose.pdf/htmlloadoptions/get_pageinfo/_index.md b/english/cpp/aspose.pdf/htmlloadoptions/get_pageinfo/_index.md index 959fc9ede6..302e57a01c 100644 --- a/english/cpp/aspose.pdf/htmlloadoptions/get_pageinfo/_index.md +++ b/english/cpp/aspose.pdf/htmlloadoptions/get_pageinfo/_index.md @@ -4,7 +4,7 @@ linktitle: get_PageInfo second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::HtmlLoadOptions::get_PageInfo method. Gets document page info in C++.' type: docs -weight: 800 +weight: 900 url: /cpp/aspose.pdf/htmlloadoptions/get_pageinfo/ --- ## HtmlLoadOptions::get_PageInfo method diff --git a/english/cpp/aspose.pdf/htmlloadoptions/get_pagelayoutoption/_index.md b/english/cpp/aspose.pdf/htmlloadoptions/get_pagelayoutoption/_index.md index 54bc775ec6..2891f222dd 100644 --- a/english/cpp/aspose.pdf/htmlloadoptions/get_pagelayoutoption/_index.md +++ b/english/cpp/aspose.pdf/htmlloadoptions/get_pagelayoutoption/_index.md @@ -4,7 +4,7 @@ linktitle: get_PageLayoutOption second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::HtmlLoadOptions::get_PageLayoutOption method. Gets layout option in C++.' type: docs -weight: 900 +weight: 1000 url: /cpp/aspose.pdf/htmlloadoptions/get_pagelayoutoption/ --- ## HtmlLoadOptions::get_PageLayoutOption method diff --git a/english/cpp/aspose.pdf/htmlloadoptions/set_createlogicalstructure/_index.md b/english/cpp/aspose.pdf/htmlloadoptions/set_createlogicalstructure/_index.md new file mode 100644 index 0000000000..e5ee667983 --- /dev/null +++ b/english/cpp/aspose.pdf/htmlloadoptions/set_createlogicalstructure/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::HtmlLoadOptions::set_CreateLogicalStructure method +linktitle: set_CreateLogicalStructure +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::HtmlLoadOptions::set_CreateLogicalStructure method. Sets a value indicating whether to create a logical structure in the resulting PDF document in C++.' +type: docs +weight: 1100 +url: /cpp/aspose.pdf/htmlloadoptions/set_createlogicalstructure/ +--- +## HtmlLoadOptions::set_CreateLogicalStructure method + + +Sets a value indicating whether to create a logical structure in the resulting PDF document. + +```cpp +void Aspose::Pdf::HtmlLoadOptions::set_CreateLogicalStructure(bool value) +``` + +## Remarks + + +When set to **true** + +, the logical structure of the document is created, which can improve accessibility and make the document more suitable for screen readers and other assistive technologies. +## See Also + +* Class [HtmlLoadOptions](../) +* Namespace [Aspose::Pdf](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf/htmlloadoptions/set_htmlmediatype/_index.md b/english/cpp/aspose.pdf/htmlloadoptions/set_htmlmediatype/_index.md index 0e11bb54a9..ad27767484 100644 --- a/english/cpp/aspose.pdf/htmlloadoptions/set_htmlmediatype/_index.md +++ b/english/cpp/aspose.pdf/htmlloadoptions/set_htmlmediatype/_index.md @@ -4,7 +4,7 @@ linktitle: set_HtmlMediaType second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::HtmlLoadOptions::set_HtmlMediaType method. Sets possible media types used during rendering in C++.' type: docs -weight: 1000 +weight: 1200 url: /cpp/aspose.pdf/htmlloadoptions/set_htmlmediatype/ --- ## HtmlLoadOptions::set_HtmlMediaType method diff --git a/english/cpp/aspose.pdf/htmlloadoptions/set_inputencoding/_index.md b/english/cpp/aspose.pdf/htmlloadoptions/set_inputencoding/_index.md index e1c2c8613e..dcfccdb3e7 100644 --- a/english/cpp/aspose.pdf/htmlloadoptions/set_inputencoding/_index.md +++ b/english/cpp/aspose.pdf/htmlloadoptions/set_inputencoding/_index.md @@ -4,7 +4,7 @@ linktitle: set_InputEncoding second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::HtmlLoadOptions::set_InputEncoding method. Sets the attribute specifying the encoding used for this document at the time of the parsing. If this attribute is null the encoding will determine from document character set atribute in C++.' type: docs -weight: 1100 +weight: 1300 url: /cpp/aspose.pdf/htmlloadoptions/set_inputencoding/ --- ## HtmlLoadOptions::set_InputEncoding method diff --git a/english/cpp/aspose.pdf/htmlloadoptions/set_isembedfonts/_index.md b/english/cpp/aspose.pdf/htmlloadoptions/set_isembedfonts/_index.md index 9e9d395242..bcb2eb062c 100644 --- a/english/cpp/aspose.pdf/htmlloadoptions/set_isembedfonts/_index.md +++ b/english/cpp/aspose.pdf/htmlloadoptions/set_isembedfonts/_index.md @@ -4,7 +4,7 @@ linktitle: set_IsEmbedFonts second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::HtmlLoadOptions::set_IsEmbedFonts method. Sets fonts embedding to result document in C++.' type: docs -weight: 1200 +weight: 1400 url: /cpp/aspose.pdf/htmlloadoptions/set_isembedfonts/ --- ## HtmlLoadOptions::set_IsEmbedFonts method diff --git a/english/cpp/aspose.pdf/htmlloadoptions/set_isprioritycsspagerule/_index.md b/english/cpp/aspose.pdf/htmlloadoptions/set_isprioritycsspagerule/_index.md index ec6f4503b1..28701a770f 100644 --- a/english/cpp/aspose.pdf/htmlloadoptions/set_isprioritycsspagerule/_index.md +++ b/english/cpp/aspose.pdf/htmlloadoptions/set_isprioritycsspagerule/_index.md @@ -4,7 +4,7 @@ linktitle: set_IsPriorityCssPageRule second_title: Aspose.PDF for C++ API Reference description: 'How to use set_IsPriorityCssPageRule method of Aspose::Pdf::HtmlLoadOptions class in C++.' type: docs -weight: 1300 +weight: 1500 url: /cpp/aspose.pdf/htmlloadoptions/set_isprioritycsspagerule/ --- ## HtmlLoadOptions::set_IsPriorityCssPageRule method diff --git a/english/cpp/aspose.pdf/htmlloadoptions/set_isrendertosinglepage/_index.md b/english/cpp/aspose.pdf/htmlloadoptions/set_isrendertosinglepage/_index.md index 1d5ad13c9e..93af7df0d4 100644 --- a/english/cpp/aspose.pdf/htmlloadoptions/set_isrendertosinglepage/_index.md +++ b/english/cpp/aspose.pdf/htmlloadoptions/set_isrendertosinglepage/_index.md @@ -4,7 +4,7 @@ linktitle: set_IsRenderToSinglePage second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::HtmlLoadOptions::set_IsRenderToSinglePage method. Sets rendering all document to single page in C++.' type: docs -weight: 1400 +weight: 1600 url: /cpp/aspose.pdf/htmlloadoptions/set_isrendertosinglepage/ --- ## HtmlLoadOptions::set_IsRenderToSinglePage method diff --git a/english/cpp/aspose.pdf/htmlloadoptions/set_pageinfo/_index.md b/english/cpp/aspose.pdf/htmlloadoptions/set_pageinfo/_index.md index c1934eeafa..5a83212545 100644 --- a/english/cpp/aspose.pdf/htmlloadoptions/set_pageinfo/_index.md +++ b/english/cpp/aspose.pdf/htmlloadoptions/set_pageinfo/_index.md @@ -4,7 +4,7 @@ linktitle: set_PageInfo second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::HtmlLoadOptions::set_PageInfo method. Sets document page info in C++.' type: docs -weight: 1500 +weight: 1700 url: /cpp/aspose.pdf/htmlloadoptions/set_pageinfo/ --- ## HtmlLoadOptions::set_PageInfo method diff --git a/english/cpp/aspose.pdf/htmlloadoptions/set_pagelayoutoption/_index.md b/english/cpp/aspose.pdf/htmlloadoptions/set_pagelayoutoption/_index.md index 655dce7ece..51c96dee7a 100644 --- a/english/cpp/aspose.pdf/htmlloadoptions/set_pagelayoutoption/_index.md +++ b/english/cpp/aspose.pdf/htmlloadoptions/set_pagelayoutoption/_index.md @@ -4,7 +4,7 @@ linktitle: set_PageLayoutOption second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::HtmlLoadOptions::set_PageLayoutOption method. Sets layout option in C++.' type: docs -weight: 1600 +weight: 1800 url: /cpp/aspose.pdf/htmlloadoptions/set_pagelayoutoption/ --- ## HtmlLoadOptions::set_PageLayoutOption method diff --git a/english/cpp/aspose.pdf/htmlmediatype/_index.md b/english/cpp/aspose.pdf/htmlmediatype/_index.md index 80f1d6e3b2..9b647df0b7 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: 24000 +weight: 24200 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 5d042ae066..5b38c1c357 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: 24100 +weight: 24300 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 a6efd4cd9d..bb925779d9 100644 --- a/english/cpp/aspose.pdf/htmlsaveoptions/_index.md +++ b/english/cpp/aspose.pdf/htmlsaveoptions/_index.md @@ -4,7 +4,7 @@ linktitle: HtmlSaveOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::HtmlSaveOptions class. Save options for export to Html format in C++.' type: docs -weight: 7300 +weight: 7500 url: /cpp/aspose.pdf/htmlsaveoptions/ --- ## HtmlSaveOptions class diff --git a/english/cpp/aspose.pdf/hyperlink/_index.md b/english/cpp/aspose.pdf/hyperlink/_index.md index 8648054372..4bab3d86f1 100644 --- a/english/cpp/aspose.pdf/hyperlink/_index.md +++ b/english/cpp/aspose.pdf/hyperlink/_index.md @@ -4,7 +4,7 @@ linktitle: Hyperlink second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Hyperlink class. Represents abstract hyperlink in C++.' type: docs -weight: 7400 +weight: 7600 url: /cpp/aspose.pdf/hyperlink/ --- ## Hyperlink class diff --git a/english/cpp/aspose.pdf/iboundscheckableitem/_index.md b/english/cpp/aspose.pdf/iboundscheckableitem/_index.md index 83e9167b56..c06f9a3072 100644 --- a/english/cpp/aspose.pdf/iboundscheckableitem/_index.md +++ b/english/cpp/aspose.pdf/iboundscheckableitem/_index.md @@ -4,7 +4,7 @@ linktitle: IBoundsCheckableItem second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::IBoundsCheckableItem class in C++.' type: docs -weight: 7500 +weight: 7700 url: /cpp/aspose.pdf/iboundscheckableitem/ --- ## IBoundsCheckableItem class diff --git a/english/cpp/aspose.pdf/icolorspaceconversionstrategy/_index.md b/english/cpp/aspose.pdf/icolorspaceconversionstrategy/_index.md index a2b1ff46ee..7892c9bed3 100644 --- a/english/cpp/aspose.pdf/icolorspaceconversionstrategy/_index.md +++ b/english/cpp/aspose.pdf/icolorspaceconversionstrategy/_index.md @@ -4,7 +4,7 @@ linktitle: IColorSpaceConversionStrategy second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::IColorSpaceConversionStrategy class. Interface for color space conversion strategies in C++.' type: docs -weight: 7600 +weight: 7800 url: /cpp/aspose.pdf/icolorspaceconversionstrategy/ --- ## IColorSpaceConversionStrategy class diff --git a/english/cpp/aspose.pdf/id/_index.md b/english/cpp/aspose.pdf/id/_index.md index a17a7b114b..faa6340048 100644 --- a/english/cpp/aspose.pdf/id/_index.md +++ b/english/cpp/aspose.pdf/id/_index.md @@ -4,7 +4,7 @@ linktitle: Id second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Id class. Represents file identifier structure in C++.' type: docs -weight: 7700 +weight: 7900 url: /cpp/aspose.pdf/id/ --- ## Id class diff --git a/english/cpp/aspose.pdf/iindexbitmapconverter/_index.md b/english/cpp/aspose.pdf/iindexbitmapconverter/_index.md index fbe159315c..d4d8531073 100644 --- a/english/cpp/aspose.pdf/iindexbitmapconverter/_index.md +++ b/english/cpp/aspose.pdf/iindexbitmapconverter/_index.md @@ -4,7 +4,7 @@ linktitle: IIndexBitmapConverter second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::IIndexBitmapConverter class. This interface declared for customization algorithms of quantization. Users can implement their own realization of this algorithms (for example algorithms based on unmanaged code) in C++.' type: docs -weight: 7800 +weight: 8000 url: /cpp/aspose.pdf/iindexbitmapconverter/ --- ## IIndexBitmapConverter class diff --git a/english/cpp/aspose.pdf/image/_index.md b/english/cpp/aspose.pdf/image/_index.md index b552b1b880..fe9b7f31bf 100644 --- a/english/cpp/aspose.pdf/image/_index.md +++ b/english/cpp/aspose.pdf/image/_index.md @@ -4,7 +4,7 @@ linktitle: Image second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Image class. Represents image in C++.' type: docs -weight: 7900 +weight: 8100 url: /cpp/aspose.pdf/image/ --- ## Image class diff --git a/english/cpp/aspose.pdf/imagedeleteaction/_index.md b/english/cpp/aspose.pdf/imagedeleteaction/_index.md index 1ea61acaf1..0fd032ef15 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: 24200 +weight: 24400 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 8078c97bd3..63b00997b0 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: 24300 +weight: 24500 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 490818454c..7b58cee9d0 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: 24400 +weight: 24600 url: /cpp/aspose.pdf/imagefiltertype/ --- ## ImageFilterType enum diff --git a/english/cpp/aspose.pdf/imageplacement/_index.md b/english/cpp/aspose.pdf/imageplacement/_index.md index a9f05fe759..9c3233c72d 100644 --- a/english/cpp/aspose.pdf/imageplacement/_index.md +++ b/english/cpp/aspose.pdf/imageplacement/_index.md @@ -4,7 +4,7 @@ linktitle: ImagePlacement second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::ImagePlacement class. Represents characteristics of an image placed to Pdf document page in C++.' type: docs -weight: 8000 +weight: 8200 url: /cpp/aspose.pdf/imageplacement/ --- ## ImagePlacement class diff --git a/english/cpp/aspose.pdf/imageplacementabsorber/_index.md b/english/cpp/aspose.pdf/imageplacementabsorber/_index.md index 675c388226..f9724c7ecd 100644 --- a/english/cpp/aspose.pdf/imageplacementabsorber/_index.md +++ b/english/cpp/aspose.pdf/imageplacementabsorber/_index.md @@ -4,7 +4,7 @@ linktitle: ImagePlacementAbsorber second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::ImagePlacementAbsorber class. Represents an absorber object of image placement objects. Performs search of image usages and provides access to search results via ImagePlacementAbsorber::ImagePlacements collection in C++.' type: docs -weight: 8100 +weight: 8300 url: /cpp/aspose.pdf/imageplacementabsorber/ --- ## ImagePlacementAbsorber class diff --git a/english/cpp/aspose.pdf/imageplacementcollection/_index.md b/english/cpp/aspose.pdf/imageplacementcollection/_index.md index 7176cc50bf..6529cbe5b0 100644 --- a/english/cpp/aspose.pdf/imageplacementcollection/_index.md +++ b/english/cpp/aspose.pdf/imageplacementcollection/_index.md @@ -4,7 +4,7 @@ linktitle: ImagePlacementCollection second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::ImagePlacementCollection class. Represents an image placements collection in C++.' type: docs -weight: 8200 +weight: 8400 url: /cpp/aspose.pdf/imageplacementcollection/ --- ## ImagePlacementCollection class diff --git a/english/cpp/aspose.pdf/imagestamp/_index.md b/english/cpp/aspose.pdf/imagestamp/_index.md index c39eb24dc2..f0dab59a08 100644 --- a/english/cpp/aspose.pdf/imagestamp/_index.md +++ b/english/cpp/aspose.pdf/imagestamp/_index.md @@ -4,7 +4,7 @@ linktitle: ImageStamp second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::ImageStamp class. Represents a graphic stamp in C++.' type: docs -weight: 8300 +weight: 8500 url: /cpp/aspose.pdf/imagestamp/ --- ## ImageStamp class diff --git a/english/cpp/aspose.pdf/importfieldsoptions/_index.md b/english/cpp/aspose.pdf/importfieldsoptions/_index.md index b11b643843..ba2c2c1290 100644 --- a/english/cpp/aspose.pdf/importfieldsoptions/_index.md +++ b/english/cpp/aspose.pdf/importfieldsoptions/_index.md @@ -4,7 +4,7 @@ linktitle: ImportFieldsOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::ImportFieldsOptions class. Represents base class of options for importing form fields in C++.' type: docs -weight: 8400 +weight: 8600 url: /cpp/aspose.pdf/importfieldsoptions/ --- ## ImportFieldsOptions class diff --git a/english/cpp/aspose.pdf/importfieldstojsonoptions/_index.md b/english/cpp/aspose.pdf/importfieldstojsonoptions/_index.md index 7c45d08bf7..a4baa45b8b 100644 --- a/english/cpp/aspose.pdf/importfieldstojsonoptions/_index.md +++ b/english/cpp/aspose.pdf/importfieldstojsonoptions/_index.md @@ -4,7 +4,7 @@ linktitle: ImportFieldsToJsonOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::ImportFieldsToJsonOptions class. Represents options for importing form fields to Json format in C++.' type: docs -weight: 8500 +weight: 8700 url: /cpp/aspose.pdf/importfieldstojsonoptions/ --- ## ImportFieldsToJsonOptions class diff --git a/english/cpp/aspose.pdf/importformat/_index.md b/english/cpp/aspose.pdf/importformat/_index.md index 7fd061323f..6f5925ea33 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: 24500 +weight: 24700 url: /cpp/aspose.pdf/importformat/ --- ## ImportFormat enum diff --git a/english/cpp/aspose.pdf/importoptions/_index.md b/english/cpp/aspose.pdf/importoptions/_index.md index a8a93f874c..809a1a3472 100644 --- a/english/cpp/aspose.pdf/importoptions/_index.md +++ b/english/cpp/aspose.pdf/importoptions/_index.md @@ -4,7 +4,7 @@ linktitle: ImportOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::ImportOptions class. ImportOptions type hold level of abstraction on individual import options in C++.' type: docs -weight: 8600 +weight: 8800 url: /cpp/aspose.pdf/importoptions/ --- ## ImportOptions class diff --git a/english/cpp/aspose.pdf/inameddestinationcollection/_index.md b/english/cpp/aspose.pdf/inameddestinationcollection/_index.md index ae76147026..ce6ec88986 100644 --- a/english/cpp/aspose.pdf/inameddestinationcollection/_index.md +++ b/english/cpp/aspose.pdf/inameddestinationcollection/_index.md @@ -4,7 +4,7 @@ linktitle: INamedDestinationCollection second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::INamedDestinationCollection class. Collection of Named Destinations in C++.' type: docs -weight: 8700 +weight: 8900 url: /cpp/aspose.pdf/inameddestinationcollection/ --- ## INamedDestinationCollection class diff --git a/english/cpp/aspose.pdf/incorrectcmapusageexception/_index.md b/english/cpp/aspose.pdf/incorrectcmapusageexception/_index.md index 9d76227e87..6140541d59 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: 28100 +weight: 28300 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 58708ac816..bb42850587 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: 28200 +weight: 28400 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 dea0a298a9..361c595f7b 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: 28300 +weight: 28500 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 864e211d47..9d656283d2 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: 28400 +weight: 28600 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 6e247df072..871b06cc75 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: 28500 +weight: 28700 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 0f49dd5a66..9cf5244978 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: 28600 +weight: 28800 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 87dd7b7a42..7c8f54e90d 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: 28700 +weight: 28900 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 b31274bf5f..3791678ba8 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: 28800 +weight: 29000 url: /cpp/aspose.pdf/invalidvalueformatexception/ --- ## InvalidValueFormatException typedef diff --git a/english/cpp/aspose.pdf/ioperatorcontainer/_index.md b/english/cpp/aspose.pdf/ioperatorcontainer/_index.md index b60dd49f5e..691105839f 100644 --- a/english/cpp/aspose.pdf/ioperatorcontainer/_index.md +++ b/english/cpp/aspose.pdf/ioperatorcontainer/_index.md @@ -4,7 +4,7 @@ linktitle: IOperatorContainer second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::IOperatorContainer class. Represents objects that contain a collection of operators as their contents in C++.' type: docs -weight: 8800 +weight: 9000 url: /cpp/aspose.pdf/ioperatorcontainer/ --- ## IOperatorContainer class diff --git a/english/cpp/aspose.pdf/ioperatorselector/_index.md b/english/cpp/aspose.pdf/ioperatorselector/_index.md index f383795b8b..23de9010f7 100644 --- a/english/cpp/aspose.pdf/ioperatorselector/_index.md +++ b/english/cpp/aspose.pdf/ioperatorselector/_index.md @@ -4,7 +4,7 @@ linktitle: IOperatorSelector second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::IOperatorSelector class. Defines Visitor for visiting different pdf operators in C++.' type: docs -weight: 8900 +weight: 9100 url: /cpp/aspose.pdf/ioperatorselector/ --- ## IOperatorSelector class diff --git a/english/cpp/aspose.pdf/ipagesetoptions/_index.md b/english/cpp/aspose.pdf/ipagesetoptions/_index.md index 6a1ba7ab10..db1967a3d6 100644 --- a/english/cpp/aspose.pdf/ipagesetoptions/_index.md +++ b/english/cpp/aspose.pdf/ipagesetoptions/_index.md @@ -4,7 +4,7 @@ linktitle: IPageSetOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::IPageSetOptions class. Defines conversion options related to a set of pages to convert in C++.' type: docs -weight: 9000 +weight: 9200 url: /cpp/aspose.pdf/ipagesetoptions/ --- ## IPageSetOptions class diff --git a/english/cpp/aspose.pdf/ipipelineoptions/_index.md b/english/cpp/aspose.pdf/ipipelineoptions/_index.md index 1ce7926a6f..2c074dc361 100644 --- a/english/cpp/aspose.pdf/ipipelineoptions/_index.md +++ b/english/cpp/aspose.pdf/ipipelineoptions/_index.md @@ -4,7 +4,7 @@ linktitle: IPipelineOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::IPipelineOptions class. Defines conversion options related to pipeline configuration in C++.' type: docs -weight: 9100 +weight: 9300 url: /cpp/aspose.pdf/ipipelineoptions/ --- ## IPipelineOptions class diff --git a/english/cpp/aspose.pdf/isupportsmemorycleanup/_index.md b/english/cpp/aspose.pdf/isupportsmemorycleanup/_index.md index 3c7fb54642..35b7c0ad67 100644 --- a/english/cpp/aspose.pdf/isupportsmemorycleanup/_index.md +++ b/english/cpp/aspose.pdf/isupportsmemorycleanup/_index.md @@ -4,7 +4,7 @@ linktitle: ISupportsMemoryCleanup second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::ISupportsMemoryCleanup class. The interface defines ways to cleanup memory in case mass operations in C++.' type: docs -weight: 9200 +weight: 9400 url: /cpp/aspose.pdf/isupportsmemorycleanup/ --- ## ISupportsMemoryCleanup class diff --git a/english/cpp/aspose.pdf/itexinputdirectory/_index.md b/english/cpp/aspose.pdf/itexinputdirectory/_index.md index 0eb90a5f1c..8593b774cc 100644 --- a/english/cpp/aspose.pdf/itexinputdirectory/_index.md +++ b/english/cpp/aspose.pdf/itexinputdirectory/_index.md @@ -4,7 +4,7 @@ linktitle: ITeXInputDirectory second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::ITeXInputDirectory class. Interface of generalized TeX input directory in C++.' type: docs -weight: 9300 +weight: 9500 url: /cpp/aspose.pdf/itexinputdirectory/ --- ## ITeXInputDirectory class diff --git a/english/cpp/aspose.pdf/itexoutputdirectory/_index.md b/english/cpp/aspose.pdf/itexoutputdirectory/_index.md index 95b0679337..3f1e553be4 100644 --- a/english/cpp/aspose.pdf/itexoutputdirectory/_index.md +++ b/english/cpp/aspose.pdf/itexoutputdirectory/_index.md @@ -4,7 +4,7 @@ linktitle: ITeXOutputDirectory second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::ITeXOutputDirectory class. Interface of generalized TeX output directory in C++.' type: docs -weight: 9400 +weight: 9600 url: /cpp/aspose.pdf/itexoutputdirectory/ --- ## ITeXOutputDirectory class diff --git a/english/cpp/aspose.pdf/iwarningcallback/_index.md b/english/cpp/aspose.pdf/iwarningcallback/_index.md index 3184c8455a..335ad7c8e1 100644 --- a/english/cpp/aspose.pdf/iwarningcallback/_index.md +++ b/english/cpp/aspose.pdf/iwarningcallback/_index.md @@ -4,7 +4,7 @@ linktitle: IWarningCallback second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::IWarningCallback class. Interface for user''s callback mechanism support in C++.' type: docs -weight: 9500 +weight: 9700 url: /cpp/aspose.pdf/iwarningcallback/ --- ## IWarningCallback class diff --git a/english/cpp/aspose.pdf/javascriptcollection/_index.md b/english/cpp/aspose.pdf/javascriptcollection/_index.md index ed3a1eddc7..ea42561912 100644 --- a/english/cpp/aspose.pdf/javascriptcollection/_index.md +++ b/english/cpp/aspose.pdf/javascriptcollection/_index.md @@ -4,7 +4,7 @@ linktitle: JavaScriptCollection second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::JavaScriptCollection class. This class represents collection of JavaScript in C++.' type: docs -weight: 9600 +weight: 9800 url: /cpp/aspose.pdf/javascriptcollection/ --- ## JavaScriptCollection class diff --git a/english/cpp/aspose.pdf/javascriptextensionsexception/_index.md b/english/cpp/aspose.pdf/javascriptextensionsexception/_index.md index 96ddd7407a..74888548bc 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: 28900 +weight: 29100 url: /cpp/aspose.pdf/javascriptextensionsexception/ --- ## JavascriptExtensionsException typedef diff --git a/english/cpp/aspose.pdf/latexfragment/_index.md b/english/cpp/aspose.pdf/latexfragment/_index.md index 3628d116b3..1d5ed3f0ed 100644 --- a/english/cpp/aspose.pdf/latexfragment/_index.md +++ b/english/cpp/aspose.pdf/latexfragment/_index.md @@ -4,7 +4,7 @@ linktitle: LatexFragment second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::LatexFragment class. Represents TeX fragment in C++.' type: docs -weight: 9700 +weight: 9900 url: /cpp/aspose.pdf/latexfragment/ --- ## LatexFragment class diff --git a/english/cpp/aspose.pdf/latexloadoptions/_index.md b/english/cpp/aspose.pdf/latexloadoptions/_index.md index 724ffc1c7e..3b3fa427b3 100644 --- a/english/cpp/aspose.pdf/latexloadoptions/_index.md +++ b/english/cpp/aspose.pdf/latexloadoptions/_index.md @@ -4,7 +4,7 @@ linktitle: LatexLoadOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::LatexLoadOptions class. Represents options for loading/importing TeX file into PDF document in C++.' type: docs -weight: 9800 +weight: 10000 url: /cpp/aspose.pdf/latexloadoptions/ --- ## LatexLoadOptions class diff --git a/english/cpp/aspose.pdf/latexsaveoptions/_index.md b/english/cpp/aspose.pdf/latexsaveoptions/_index.md index 238a150b55..6d51b08a04 100644 --- a/english/cpp/aspose.pdf/latexsaveoptions/_index.md +++ b/english/cpp/aspose.pdf/latexsaveoptions/_index.md @@ -4,7 +4,7 @@ linktitle: LaTeXSaveOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::LaTeXSaveOptions class. Save options for export to TeX format in C++.' type: docs -weight: 9900 +weight: 10100 url: /cpp/aspose.pdf/latexsaveoptions/ --- ## LaTeXSaveOptions class diff --git a/english/cpp/aspose.pdf/layer/_index.md b/english/cpp/aspose.pdf/layer/_index.md index 592123d855..5bd73940a9 100644 --- a/english/cpp/aspose.pdf/layer/_index.md +++ b/english/cpp/aspose.pdf/layer/_index.md @@ -4,7 +4,7 @@ linktitle: Layer second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Layer class. Represents a layer within a PDF page in C++.' type: docs -weight: 10000 +weight: 10200 url: /cpp/aspose.pdf/layer/ --- ## Layer class diff --git a/english/cpp/aspose.pdf/left/_index.md b/english/cpp/aspose.pdf/left/_index.md index 10d7e4561a..6db54e4173 100644 --- a/english/cpp/aspose.pdf/left/_index.md +++ b/english/cpp/aspose.pdf/left/_index.md @@ -4,7 +4,7 @@ linktitle: Left second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Left class. Represents the left alignment settings for header and footer data in C++.' type: docs -weight: 10100 +weight: 10300 url: /cpp/aspose.pdf/left/ --- ## Left class diff --git a/english/cpp/aspose.pdf/levelformat/_index.md b/english/cpp/aspose.pdf/levelformat/_index.md index 8d98523e55..35a691e9f9 100644 --- a/english/cpp/aspose.pdf/levelformat/_index.md +++ b/english/cpp/aspose.pdf/levelformat/_index.md @@ -4,7 +4,7 @@ linktitle: LevelFormat second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::LevelFormat class. Represents format of the table of contents in C++.' type: docs -weight: 10200 +weight: 10400 url: /cpp/aspose.pdf/levelformat/ --- ## LevelFormat class diff --git a/english/cpp/aspose.pdf/license/_index.md b/english/cpp/aspose.pdf/license/_index.md index 7e7456f79b..17005882c9 100644 --- a/english/cpp/aspose.pdf/license/_index.md +++ b/english/cpp/aspose.pdf/license/_index.md @@ -4,7 +4,7 @@ linktitle: License second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::License class. Provides methods to license the component in C++.' type: docs -weight: 10300 +weight: 10500 url: /cpp/aspose.pdf/license/ --- ## License class diff --git a/english/cpp/aspose.pdf/licenseinfo/_index.md b/english/cpp/aspose.pdf/licenseinfo/_index.md index 62c8a9351d..8b773b5018 100644 --- a/english/cpp/aspose.pdf/licenseinfo/_index.md +++ b/english/cpp/aspose.pdf/licenseinfo/_index.md @@ -4,7 +4,7 @@ linktitle: LicenseInfo second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::LicenseInfo class. Represents a license information in C++.' type: docs -weight: 10400 +weight: 10600 url: /cpp/aspose.pdf/licenseinfo/ --- ## LicenseInfo class diff --git a/english/cpp/aspose.pdf/licensestate/_index.md b/english/cpp/aspose.pdf/licensestate/_index.md index 02115d3aa9..82c63449aa 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: 24600 +weight: 24800 url: /cpp/aspose.pdf/licensestate/ --- ## LicenseState enum diff --git a/english/cpp/aspose.pdf/linebreakstyle/_index.md b/english/cpp/aspose.pdf/linebreakstyle/_index.md index 1130f343a6..57c9a258da 100644 --- a/english/cpp/aspose.pdf/linebreakstyle/_index.md +++ b/english/cpp/aspose.pdf/linebreakstyle/_index.md @@ -4,7 +4,7 @@ linktitle: LineBreakStyle second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::LineBreakStyle enum. Represents the possible line break styles for a file in C++.' type: docs -weight: 24700 +weight: 24900 url: /cpp/aspose.pdf/linebreakstyle/ --- ## LineBreakStyle enum diff --git a/english/cpp/aspose.pdf/loadformat/_index.md b/english/cpp/aspose.pdf/loadformat/_index.md index 16ecec2f70..4480f59630 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: 24800 +weight: 25000 url: /cpp/aspose.pdf/loadformat/ --- ## LoadFormat enum @@ -38,6 +38,7 @@ enum class LoadFormat | OFD | 15 | means loading document in [OFD](../../aspose.pdf.ofd/) format. | | DJVU | 16 | means loading document in Djvu format. | | CDR | 17 | means loading document in CDR format. | +| AutoDetect | 18 | This option allows to loading engine try detection of format itself Currently only SVG,XML,XSLFO formats can be autodetected. If engine cannot detect type of file, HTML will be used. This logic came from old GEnerator cause method itself came from old Genedrator. | ## See Also diff --git a/english/cpp/aspose.pdf/loadoptions/_index.md b/english/cpp/aspose.pdf/loadoptions/_index.md index e80589ca36..f4c0655ae3 100644 --- a/english/cpp/aspose.pdf/loadoptions/_index.md +++ b/english/cpp/aspose.pdf/loadoptions/_index.md @@ -4,7 +4,7 @@ linktitle: LoadOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::LoadOptions class. LoadOptions type holds level of abstraction on individual load options in C++.' type: docs -weight: 10500 +weight: 10700 url: /cpp/aspose.pdf/loadoptions/ --- ## LoadOptions class diff --git a/english/cpp/aspose.pdf/localhyperlink/_index.md b/english/cpp/aspose.pdf/localhyperlink/_index.md index d0b4b91389..7d4fcff403 100644 --- a/english/cpp/aspose.pdf/localhyperlink/_index.md +++ b/english/cpp/aspose.pdf/localhyperlink/_index.md @@ -4,7 +4,7 @@ linktitle: LocalHyperlink second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::LocalHyperlink class. Represents local hyperlink object in C++.' type: docs -weight: 10600 +weight: 10800 url: /cpp/aspose.pdf/localhyperlink/ --- ## LocalHyperlink class diff --git a/english/cpp/aspose.pdf/margininfo/_index.md b/english/cpp/aspose.pdf/margininfo/_index.md index b4b50463f4..b0994d9ee4 100644 --- a/english/cpp/aspose.pdf/margininfo/_index.md +++ b/english/cpp/aspose.pdf/margininfo/_index.md @@ -4,7 +4,7 @@ linktitle: MarginInfo second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::MarginInfo class. This class represents a margin for different objects in C++.' type: docs -weight: 10700 +weight: 10900 url: /cpp/aspose.pdf/margininfo/ --- ## MarginInfo class diff --git a/english/cpp/aspose.pdf/markdownsaveoptions/_index.md b/english/cpp/aspose.pdf/markdownsaveoptions/_index.md index 0440704d56..2ddfe23b50 100644 --- a/english/cpp/aspose.pdf/markdownsaveoptions/_index.md +++ b/english/cpp/aspose.pdf/markdownsaveoptions/_index.md @@ -4,7 +4,7 @@ linktitle: MarkdownSaveOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::MarkdownSaveOptions class. Represents the document save option class in the markdown format in C++.' type: docs -weight: 10800 +weight: 11000 url: /cpp/aspose.pdf/markdownsaveoptions/ --- ## MarkdownSaveOptions class diff --git a/english/cpp/aspose.pdf/matrix/_index.md b/english/cpp/aspose.pdf/matrix/_index.md index 3a38fb9dfe..2718d24d59 100644 --- a/english/cpp/aspose.pdf/matrix/_index.md +++ b/english/cpp/aspose.pdf/matrix/_index.md @@ -4,7 +4,7 @@ linktitle: Matrix second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Matrix class. Class represents transformation matrix in C++.' type: docs -weight: 10900 +weight: 11100 url: /cpp/aspose.pdf/matrix/ --- ## Matrix class diff --git a/english/cpp/aspose.pdf/matrix3d/_index.md b/english/cpp/aspose.pdf/matrix3d/_index.md index 991ac0e7db..35077ac2b8 100644 --- a/english/cpp/aspose.pdf/matrix3d/_index.md +++ b/english/cpp/aspose.pdf/matrix3d/_index.md @@ -4,7 +4,7 @@ linktitle: Matrix3D second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Matrix3D class. Class represents transformation matrix in C++.' type: docs -weight: 11000 +weight: 11200 url: /cpp/aspose.pdf/matrix3d/ --- ## Matrix3D class diff --git a/english/cpp/aspose.pdf/mdloadoptions/_index.md b/english/cpp/aspose.pdf/mdloadoptions/_index.md index 25bc2195e8..7433351414 100644 --- a/english/cpp/aspose.pdf/mdloadoptions/_index.md +++ b/english/cpp/aspose.pdf/mdloadoptions/_index.md @@ -4,7 +4,7 @@ linktitle: MdLoadOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::MdLoadOptions class. Load options for Markdown format conversion in C++.' type: docs -weight: 11100 +weight: 11300 url: /cpp/aspose.pdf/mdloadoptions/ --- ## MdLoadOptions class diff --git a/english/cpp/aspose.pdf/metadata/_index.md b/english/cpp/aspose.pdf/metadata/_index.md index 64533d0075..d536fa667e 100644 --- a/english/cpp/aspose.pdf/metadata/_index.md +++ b/english/cpp/aspose.pdf/metadata/_index.md @@ -4,7 +4,7 @@ linktitle: Metadata second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Metadata class. Provides access to XMP metadata stream in C++.' type: docs -weight: 11200 +weight: 11400 url: /cpp/aspose.pdf/metadata/ --- ## Metadata class diff --git a/english/cpp/aspose.pdf/metered/_index.md b/english/cpp/aspose.pdf/metered/_index.md index a82c5c5c4e..098e5e3597 100644 --- a/english/cpp/aspose.pdf/metered/_index.md +++ b/english/cpp/aspose.pdf/metered/_index.md @@ -4,7 +4,7 @@ linktitle: Metered second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Metered class. Provides methods to set metered key in C++.' type: docs -weight: 11300 +weight: 11500 url: /cpp/aspose.pdf/metered/ --- ## Metered class diff --git a/english/cpp/aspose.pdf/mhtloadoptions/_index.md b/english/cpp/aspose.pdf/mhtloadoptions/_index.md index b6c7c1fcd5..1a4d9549f6 100644 --- a/english/cpp/aspose.pdf/mhtloadoptions/_index.md +++ b/english/cpp/aspose.pdf/mhtloadoptions/_index.md @@ -4,7 +4,7 @@ linktitle: MhtLoadOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::MhtLoadOptions class. Represents options for loading/importing of .mht-file into pdf document in C++.' type: docs -weight: 11400 +weight: 11600 url: /cpp/aspose.pdf/mhtloadoptions/ --- ## MhtLoadOptions class diff --git a/english/cpp/aspose.pdf/mobixmlsaveoptions/_index.md b/english/cpp/aspose.pdf/mobixmlsaveoptions/_index.md index 0e38ec7225..ad7a12fc6c 100644 --- a/english/cpp/aspose.pdf/mobixmlsaveoptions/_index.md +++ b/english/cpp/aspose.pdf/mobixmlsaveoptions/_index.md @@ -4,7 +4,7 @@ linktitle: MobiXmlSaveOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::MobiXmlSaveOptions class. Save options for export to Xml format in C++.' type: docs -weight: 11500 +weight: 11700 url: /cpp/aspose.pdf/mobixmlsaveoptions/ --- ## MobiXmlSaveOptions class diff --git a/english/cpp/aspose.pdf/nameddestinationcollection/_index.md b/english/cpp/aspose.pdf/nameddestinationcollection/_index.md index dfe1f989b8..0179db5018 100644 --- a/english/cpp/aspose.pdf/nameddestinationcollection/_index.md +++ b/english/cpp/aspose.pdf/nameddestinationcollection/_index.md @@ -4,7 +4,7 @@ linktitle: NamedDestinationCollection second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::NamedDestinationCollection class. Class represents the collection of all destinations (a name tree mapping name strings to destinations (see 12.3.2.3, "Named Destinations") and (see 7.7.4, "Name Dictionary")) in the pdf document in C++.' type: docs -weight: 11600 +weight: 11800 url: /cpp/aspose.pdf/nameddestinationcollection/ --- ## NamedDestinationCollection class diff --git a/english/cpp/aspose.pdf/note/_index.md b/english/cpp/aspose.pdf/note/_index.md index 433fcf8c5b..f4e32a8e2f 100644 --- a/english/cpp/aspose.pdf/note/_index.md +++ b/english/cpp/aspose.pdf/note/_index.md @@ -4,7 +4,7 @@ linktitle: Note second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Note class. This class represents generator paragraph note in C++.' type: docs -weight: 11700 +weight: 11900 url: /cpp/aspose.pdf/note/ --- ## Note class diff --git a/english/cpp/aspose.pdf/numberingstyle/_index.md b/english/cpp/aspose.pdf/numberingstyle/_index.md index 06fe829760..797d29220c 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: 24900 +weight: 25100 url: /cpp/aspose.pdf/numberingstyle/ --- ## NumberingStyle enum diff --git a/english/cpp/aspose.pdf/objectreferencecorruptedexception/_index.md b/english/cpp/aspose.pdf/objectreferencecorruptedexception/_index.md index 042d2bfbaa..3157401751 100644 --- a/english/cpp/aspose.pdf/objectreferencecorruptedexception/_index.md +++ b/english/cpp/aspose.pdf/objectreferencecorruptedexception/_index.md @@ -4,7 +4,7 @@ linktitle: ObjectReferenceCorruptedException second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::ObjectReferenceCorruptedException typedef in C++.' type: docs -weight: 29000 +weight: 29200 url: /cpp/aspose.pdf/objectreferencecorruptedexception/ --- ## ObjectReferenceCorruptedException typedef diff --git a/english/cpp/aspose.pdf/ocspsettings/_index.md b/english/cpp/aspose.pdf/ocspsettings/_index.md index bce2560829..3e0af5efa5 100644 --- a/english/cpp/aspose.pdf/ocspsettings/_index.md +++ b/english/cpp/aspose.pdf/ocspsettings/_index.md @@ -4,7 +4,7 @@ linktitle: OcspSettings second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::OcspSettings class. Represents the ocsp settings using during signing process in C++.' type: docs -weight: 11800 +weight: 12000 url: /cpp/aspose.pdf/ocspsettings/ --- ## OcspSettings class diff --git a/english/cpp/aspose.pdf/ofdloadoptions/_index.md b/english/cpp/aspose.pdf/ofdloadoptions/_index.md index 87e802d4ba..64015d9e7a 100644 --- a/english/cpp/aspose.pdf/ofdloadoptions/_index.md +++ b/english/cpp/aspose.pdf/ofdloadoptions/_index.md @@ -4,7 +4,7 @@ linktitle: OfdLoadOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::OfdLoadOptions class. Load options for OFD format in C++.' type: docs -weight: 11900 +weight: 12100 url: /cpp/aspose.pdf/ofdloadoptions/ --- ## OfdLoadOptions class diff --git a/english/cpp/aspose.pdf/operator!=/_index.md b/english/cpp/aspose.pdf/operator!=/_index.md index c90f803b14..8d0fb16151 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: 'Aspose::Pdf::operator!= method. Returns true if two Colors are not equal in C++.' type: docs -weight: 29300 +weight: 29500 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 1fcafdfe48..6c9b2df658 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: 'Aspose::Pdf::Operator class. Abstract class representing operator in C++.' type: docs -weight: 12000 +weight: 12200 url: /cpp/aspose.pdf/operator/ --- ## Operator class diff --git a/english/cpp/aspose.pdf/operator==/_index.md b/english/cpp/aspose.pdf/operator==/_index.md index 6294a9e779..c26eee6689 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: 'Aspose::Pdf::operator== method. Returns true if two Colors are equal in C++.' type: docs -weight: 29500 +weight: 29700 url: /cpp/aspose.pdf/operator==/ --- ## Aspose::Pdf::operator==(const System::SharedPtr\\&, const System::SharedPtr\\&) method diff --git a/english/cpp/aspose.pdf/operatorcollection/_index.md b/english/cpp/aspose.pdf/operatorcollection/_index.md index 73a4937aa4..1d73f1bdad 100644 --- a/english/cpp/aspose.pdf/operatorcollection/_index.md +++ b/english/cpp/aspose.pdf/operatorcollection/_index.md @@ -4,7 +4,7 @@ linktitle: OperatorCollection second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::OperatorCollection class. Class represents collection of operators in C++.' type: docs -weight: 12100 +weight: 12300 url: /cpp/aspose.pdf/operatorcollection/ --- ## OperatorCollection class diff --git a/english/cpp/aspose.pdf/operatorselector/_index.md b/english/cpp/aspose.pdf/operatorselector/_index.md index c8b2249293..5e529bf0f1 100644 --- a/english/cpp/aspose.pdf/operatorselector/_index.md +++ b/english/cpp/aspose.pdf/operatorselector/_index.md @@ -4,7 +4,7 @@ linktitle: OperatorSelector second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::OperatorSelector class. This class is used for selecting operators using Visitor template idea in C++.' type: docs -weight: 12200 +weight: 12400 url: /cpp/aspose.pdf/operatorselector/ --- ## OperatorSelector class diff --git a/english/cpp/aspose.pdf/opi/_index.md b/english/cpp/aspose.pdf/opi/_index.md index f9ae99a577..84a4509126 100644 --- a/english/cpp/aspose.pdf/opi/_index.md +++ b/english/cpp/aspose.pdf/opi/_index.md @@ -4,7 +4,7 @@ linktitle: Opi second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Opi class. Represents The Open Prepress Interface (OPI) is a mechanism for creating low-resolution placeholders, or proxies, for such high-resolution images in C++.' type: docs -weight: 12300 +weight: 12500 url: /cpp/aspose.pdf/opi/ --- ## Opi class diff --git a/english/cpp/aspose.pdf/optimizedmemorystream/_index.md b/english/cpp/aspose.pdf/optimizedmemorystream/_index.md index 7ee77906b6..fe6bbfccb6 100644 --- a/english/cpp/aspose.pdf/optimizedmemorystream/_index.md +++ b/english/cpp/aspose.pdf/optimizedmemorystream/_index.md @@ -4,7 +4,7 @@ linktitle: OptimizedMemoryStream second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::OptimizedMemoryStream class. Defines a MemoryStream that can contains more standard capacity in C++.' type: docs -weight: 12400 +weight: 12600 url: /cpp/aspose.pdf/optimizedmemorystream/ --- ## OptimizedMemoryStream class diff --git a/english/cpp/aspose.pdf/outlinecollection/_index.md b/english/cpp/aspose.pdf/outlinecollection/_index.md index 9dcb3dd244..893a349ad8 100644 --- a/english/cpp/aspose.pdf/outlinecollection/_index.md +++ b/english/cpp/aspose.pdf/outlinecollection/_index.md @@ -4,7 +4,7 @@ linktitle: OutlineCollection second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::OutlineCollection class. Represents document outline hierarchy in C++.' type: docs -weight: 12500 +weight: 12700 url: /cpp/aspose.pdf/outlinecollection/ --- ## OutlineCollection class diff --git a/english/cpp/aspose.pdf/outlineitemcollection/_index.md b/english/cpp/aspose.pdf/outlineitemcollection/_index.md index bb77542464..a5e0b1fb57 100644 --- a/english/cpp/aspose.pdf/outlineitemcollection/_index.md +++ b/english/cpp/aspose.pdf/outlineitemcollection/_index.md @@ -4,7 +4,7 @@ linktitle: OutlineItemCollection second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::OutlineItemCollection class. Represents outline entry in outline hierarchy of PDF document in C++.' type: docs -weight: 12600 +weight: 12800 url: /cpp/aspose.pdf/outlineitemcollection/ --- ## OutlineItemCollection class diff --git a/english/cpp/aspose.pdf/outlines/_index.md b/english/cpp/aspose.pdf/outlines/_index.md index c39227537e..81bcbf518f 100644 --- a/english/cpp/aspose.pdf/outlines/_index.md +++ b/english/cpp/aspose.pdf/outlines/_index.md @@ -4,7 +4,7 @@ linktitle: Outlines second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Outlines class. Class describes collection of outlines in C++.' type: docs -weight: 12700 +weight: 12900 url: /cpp/aspose.pdf/outlines/ --- ## Outlines class diff --git a/english/cpp/aspose.pdf/outputintent/_index.md b/english/cpp/aspose.pdf/outputintent/_index.md index 7fbf8d4504..cbd25ccb79 100644 --- a/english/cpp/aspose.pdf/outputintent/_index.md +++ b/english/cpp/aspose.pdf/outputintent/_index.md @@ -4,7 +4,7 @@ linktitle: OutputIntent second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::OutputIntent class. Represents an output intent that matches the color characteristics of a PDF document with those of a target output device or production environment in which the document will be printed in C++.' type: docs -weight: 12800 +weight: 13000 url: /cpp/aspose.pdf/outputintent/ --- ## OutputIntent class diff --git a/english/cpp/aspose.pdf/outputintents/_index.md b/english/cpp/aspose.pdf/outputintents/_index.md index 2328c60cb1..302489b46e 100644 --- a/english/cpp/aspose.pdf/outputintents/_index.md +++ b/english/cpp/aspose.pdf/outputintents/_index.md @@ -4,7 +4,7 @@ linktitle: OutputIntents second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::OutputIntents class. Represents the collection of OutputIntent in C++.' type: docs -weight: 12900 +weight: 13100 url: /cpp/aspose.pdf/outputintents/ --- ## OutputIntents class diff --git a/english/cpp/aspose.pdf/page/_index.md b/english/cpp/aspose.pdf/page/_index.md index 9e8a6ff2d4..db80f00306 100644 --- a/english/cpp/aspose.pdf/page/_index.md +++ b/english/cpp/aspose.pdf/page/_index.md @@ -4,7 +4,7 @@ linktitle: Page second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Page class. Class representing page of PDF document in C++.' type: docs -weight: 13000 +weight: 13200 url: /cpp/aspose.pdf/page/ --- ## Page class diff --git a/english/cpp/aspose.pdf/pageactioncollection/_index.md b/english/cpp/aspose.pdf/pageactioncollection/_index.md index e1b71463a1..277736cb75 100644 --- a/english/cpp/aspose.pdf/pageactioncollection/_index.md +++ b/english/cpp/aspose.pdf/pageactioncollection/_index.md @@ -4,7 +4,7 @@ linktitle: PageActionCollection second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::PageActionCollection class. This class describes page actions in C++.' type: docs -weight: 13100 +weight: 13300 url: /cpp/aspose.pdf/pageactioncollection/ --- ## PageActionCollection class diff --git a/english/cpp/aspose.pdf/pagecollection/_index.md b/english/cpp/aspose.pdf/pagecollection/_index.md index 127afbe4ed..f7d82564bb 100644 --- a/english/cpp/aspose.pdf/pagecollection/_index.md +++ b/english/cpp/aspose.pdf/pagecollection/_index.md @@ -4,7 +4,7 @@ linktitle: PageCollection second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::PageCollection class. Collection of PDF document pages in C++.' type: docs -weight: 13200 +weight: 13400 url: /cpp/aspose.pdf/pagecollection/ --- ## PageCollection class diff --git a/english/cpp/aspose.pdf/pagecollectionextensions/_index.md b/english/cpp/aspose.pdf/pagecollectionextensions/_index.md index 378ae1e8ca..2c9bd09e2b 100644 --- a/english/cpp/aspose.pdf/pagecollectionextensions/_index.md +++ b/english/cpp/aspose.pdf/pagecollectionextensions/_index.md @@ -4,7 +4,7 @@ linktitle: PageCollectionExtensions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::PageCollectionExtensions class. Represents the extension method for updating header and footer pagination in C++.' type: docs -weight: 13300 +weight: 13500 url: /cpp/aspose.pdf/pagecollectionextensions/ --- ## PageCollectionExtensions class diff --git a/english/cpp/aspose.pdf/pagecoordinatetype/_index.md b/english/cpp/aspose.pdf/pagecoordinatetype/_index.md index ce1cad0384..2343f10df7 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: 25000 +weight: 25200 url: /cpp/aspose.pdf/pagecoordinatetype/ --- ## PageCoordinateType enum diff --git a/english/cpp/aspose.pdf/pagedate/_index.md b/english/cpp/aspose.pdf/pagedate/_index.md index c90b01a769..ebb584148f 100644 --- a/english/cpp/aspose.pdf/pagedate/_index.md +++ b/english/cpp/aspose.pdf/pagedate/_index.md @@ -4,7 +4,7 @@ linktitle: PageDate second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::PageDate class. Represents a date format composed of day, month, and year components in C++.' type: docs -weight: 13400 +weight: 13600 url: /cpp/aspose.pdf/pagedate/ --- ## PageDate class diff --git a/english/cpp/aspose.pdf/pageextensions/_index.md b/english/cpp/aspose.pdf/pageextensions/_index.md index 5cce9108bd..ad467aeb7b 100644 --- a/english/cpp/aspose.pdf/pageextensions/_index.md +++ b/english/cpp/aspose.pdf/pageextensions/_index.md @@ -4,7 +4,7 @@ linktitle: PageExtensions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::PageExtensions class. Provides additional capabilities for the Page class in C++.' type: docs -weight: 13500 +weight: 13700 url: /cpp/aspose.pdf/pageextensions/ --- ## PageExtensions class diff --git a/english/cpp/aspose.pdf/pageinfo/_index.md b/english/cpp/aspose.pdf/pageinfo/_index.md index a22e08850d..16467d2dac 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: 13600 +weight: 13800 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 c5b909f8a5..74a653a42c 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: 13700 +weight: 13900 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 fb863fdf31..176cafa8b7 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: 13800 +weight: 14000 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 0a0abb3847..b6ab0f3729 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: 25100 +weight: 25300 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 19e7fe6801..f6c947fd3d 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: 13900 +weight: 14100 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 8dd10dd2a0..e760da1197 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: 25200 +weight: 25400 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 9ce468fbda..ce77814d06 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: 14000 +weight: 14200 url: /cpp/aspose.pdf/pagemodeconverter/ --- ## PageModeConverter class diff --git a/english/cpp/aspose.pdf/pagenumber/_index.md b/english/cpp/aspose.pdf/pagenumber/_index.md index a56a6d46dc..51aedb11d2 100644 --- a/english/cpp/aspose.pdf/pagenumber/_index.md +++ b/english/cpp/aspose.pdf/pagenumber/_index.md @@ -4,7 +4,7 @@ linktitle: PageNumber second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::PageNumber class. Represents a page number format that includes an index, total number of pages, and a delimiter in C++.' type: docs -weight: 14100 +weight: 14300 url: /cpp/aspose.pdf/pagenumber/ --- ## PageNumber class diff --git a/english/cpp/aspose.pdf/pagenumberstamp/_index.md b/english/cpp/aspose.pdf/pagenumberstamp/_index.md index 9e0f002960..800b43136b 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: 14200 +weight: 14400 url: /cpp/aspose.pdf/pagenumberstamp/ --- ## PageNumberStamp class diff --git a/english/cpp/aspose.pdf/pagerange/_index.md b/english/cpp/aspose.pdf/pagerange/_index.md index 2c56c9feb3..addb872d1f 100644 --- a/english/cpp/aspose.pdf/pagerange/_index.md +++ b/english/cpp/aspose.pdf/pagerange/_index.md @@ -4,7 +4,7 @@ linktitle: PageRange second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::PageRange class. Represents the range of pages for header and footer settings in C++.' type: docs -weight: 14300 +weight: 14500 url: /cpp/aspose.pdf/pagerange/ --- ## PageRange class diff --git a/english/cpp/aspose.pdf/pagesize/_index.md b/english/cpp/aspose.pdf/pagesize/_index.md index b25e922b5e..97bd26c652 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: 14400 +weight: 14600 url: /cpp/aspose.pdf/pagesize/ --- ## PageSize class diff --git a/english/cpp/aspose.pdf/paginationartifact/_index.md b/english/cpp/aspose.pdf/paginationartifact/_index.md index 7703cbc680..807f8df6ff 100644 --- a/english/cpp/aspose.pdf/paginationartifact/_index.md +++ b/english/cpp/aspose.pdf/paginationartifact/_index.md @@ -4,7 +4,7 @@ linktitle: PaginationArtifact second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::PaginationArtifact class. Represents an abstract base class for pagination artifacts in a document in C++.' type: docs -weight: 14500 +weight: 14700 url: /cpp/aspose.pdf/paginationartifact/ --- ## PaginationArtifact class diff --git a/english/cpp/aspose.pdf/paragraphpositioningmode/_index.md b/english/cpp/aspose.pdf/paragraphpositioningmode/_index.md index 161dd79f0d..09a0cfa310 100644 --- a/english/cpp/aspose.pdf/paragraphpositioningmode/_index.md +++ b/english/cpp/aspose.pdf/paragraphpositioningmode/_index.md @@ -4,7 +4,7 @@ linktitle: ParagraphPositioningMode second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::ParagraphPositioningMode enum. Specifies variant for determining the location of the element on the page in C++.' type: docs -weight: 25300 +weight: 25500 url: /cpp/aspose.pdf/paragraphpositioningmode/ --- ## ParagraphPositioningMode enum diff --git a/english/cpp/aspose.pdf/paragraphs/_index.md b/english/cpp/aspose.pdf/paragraphs/_index.md index 1590fb76c6..a52ca5b8fd 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: 14600 +weight: 14800 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 bfde57a7da..0ae9067582 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: 25400 +weight: 25600 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 580f1606ae..3edde7d9a3 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: 14700 +weight: 14900 url: /cpp/aspose.pdf/pclloadoptions/ --- ## PclLoadOptions class diff --git a/english/cpp/aspose.pdf/pdfanonspecificationflags/_index.md b/english/cpp/aspose.pdf/pdfanonspecificationflags/_index.md index 4c4aa1012b..c01621d62f 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: 14800 +weight: 15000 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 2eac9f7003..e44d57d6b0 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: 14900 +weight: 15100 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 a92c26e59a..c11200dfa5 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: 29100 +weight: 29300 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 44800d903b..c8a1cbb322 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: 25500 +weight: 25700 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 cf4ee447e4..a1c5f649b8 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: 15000 +weight: 15200 url: /cpp/aspose.pdf/pdfformatconversionoptions/ --- ## PdfFormatConversionOptions class diff --git a/english/cpp/aspose.pdf/pdfpagestamp/_index.md b/english/cpp/aspose.pdf/pdfpagestamp/_index.md index e44d93d8eb..126afb9594 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: 15100 +weight: 15300 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 c1d0cc63a3..cf9d54e4de 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: 15200 +weight: 15400 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 07fcc46166..965ceea9c9 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: 25600 +weight: 25800 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 fa56af0f21..f8d5793ebd 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: 15300 +weight: 15500 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 0d29fdfbb7..3496ac0025 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: 15400 +weight: 15600 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 9af9ad19fa..5e3b55bd69 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: 15500 +weight: 15700 url: /cpp/aspose.pdf/pdfxmlsaveoptions/ --- ## PdfXmlSaveOptions class diff --git a/english/cpp/aspose.pdf/permissions/_index.md b/english/cpp/aspose.pdf/permissions/_index.md index fedde8f7e1..6d15147528 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: 25700 +weight: 25900 url: /cpp/aspose.pdf/permissions/ --- ## Permissions enum diff --git a/english/cpp/aspose.pdf/point/_index.md b/english/cpp/aspose.pdf/point/_index.md index f5f5aac310..2c984023f2 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: 15600 +weight: 15800 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 7d2dc7e443..5028f9e111 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: 15700 +weight: 15900 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 aa4e3fc2de..45b50c2e26 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: 15800 +weight: 16000 url: /cpp/aspose.pdf/pptxsaveoptions/ --- ## PptxSaveOptions class diff --git a/english/cpp/aspose.pdf/printduplex/_index.md b/english/cpp/aspose.pdf/printduplex/_index.md index 4f5bb87f41..27e6337c32 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: 25800 +weight: 26000 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 ec836210ea..856fb9c74d 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: 15900 +weight: 16100 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 8846075563..adefc508df 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: 25900 +weight: 26100 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 510ed26617..cb53de9095 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: 16000 +weight: 16200 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 b9722336c3..862fa9fc62 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 in C++.' type: docs -weight: 26000 +weight: 26200 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 a282ef5a50..749b0b9fff 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: 26100 +weight: 26300 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 977cab7830..6616e3002b 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: 16100 +weight: 16300 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 5830c56b29..bb01873391 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: 16200 +weight: 16400 url: /cpp/aspose.pdf/pssaveoptions/ --- ## PsSaveOptions class diff --git a/english/cpp/aspose.pdf/rectangle/_index.md b/english/cpp/aspose.pdf/rectangle/_index.md index b65486b062..7ebc24cc85 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: 16300 +weight: 16500 url: /cpp/aspose.pdf/rectangle/ --- ## Rectangle class diff --git a/english/cpp/aspose.pdf/renderingoptions/_index.md b/english/cpp/aspose.pdf/renderingoptions/_index.md index 33dae54f08..67010dc9a2 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: 16400 +weight: 16600 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 c24f5eb10f..f02ad8de6d 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: 16500 +weight: 16700 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 67d41b361d..04eb96d0da 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: 26200 +weight: 26400 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 e52569912a..e9f32dc44c 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: 16600 +weight: 16800 url: /cpp/aspose.pdf/rgbtodevicegrayconversionstrategy/ --- ## RgbToDeviceGrayConversionStrategy class diff --git a/english/cpp/aspose.pdf/right/_index.md b/english/cpp/aspose.pdf/right/_index.md index d9a0103270..296743a164 100644 --- a/english/cpp/aspose.pdf/right/_index.md +++ b/english/cpp/aspose.pdf/right/_index.md @@ -4,7 +4,7 @@ linktitle: Right second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Right class. Represents the right alignment settings for header and footer data in C++.' type: docs -weight: 16700 +weight: 16900 url: /cpp/aspose.pdf/right/ --- ## Right class diff --git a/english/cpp/aspose.pdf/rotation/_index.md b/english/cpp/aspose.pdf/rotation/_index.md index e0cc3b1a8f..1244999be6 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: 26300 +weight: 26500 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 4c218ba34e..80d1f86b81 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: 16800 +weight: 17000 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 39eb733040..e1778026b9 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: 16900 +weight: 17100 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 575ed1ec8c..681765f0d3 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: 26400 +weight: 26600 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 b3b16dfa4b..4ee60b2086 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: 17000 +weight: 17200 url: /cpp/aspose.pdf/saveoptions/ --- ## SaveOptions class @@ -37,6 +37,7 @@ class SaveOptions : public virtual System::Object | [get_CloseResponse](./get_closeresponse/)() const | Gets boolean value which indicates will Response object be closed after document saved into response. | | [get_SaveFormat](./get_saveformat/)() const | Format of data save. | | [get_WarningHandler](./get_warninghandler/)() const | Callback to handle any warnings generated. The WarningHandler returns [ReturnAction](../returnaction/) enum item specifying either Continue or Abort. Continue is the default action and the Save operation continues, however the user may also return Abort in which case the Save operation should cease. | +| [SaveOptions](./saveoptions/)() | | | [set_CacheGlyphs](./set_cacheglyphs/)(bool) | Sets boolean value which indicates if will font glyphs be cached while preparing aps pages. Improves performance of conversion pdf to other formats but increases memory consumption. | | [set_CloseResponse](./set_closeresponse/)(bool) | Sets boolean value which indicates will Response object be closed after document saved into response. | | [set_WarningHandler](./set_warninghandler/)(System::SharedPtr\) | Callback to handle any warnings generated. The WarningHandler returns [ReturnAction](../returnaction/) enum item specifying either Continue or Abort. Continue is the default action and the Save operation continues, however the user may also return Abort in which case the Save operation should cease. | diff --git a/english/cpp/aspose.pdf/saveoptions/borderinfo/_index.md b/english/cpp/aspose.pdf/saveoptions/borderinfo/_index.md index fcf6802941..9a082836dc 100644 --- a/english/cpp/aspose.pdf/saveoptions/borderinfo/_index.md +++ b/english/cpp/aspose.pdf/saveoptions/borderinfo/_index.md @@ -4,7 +4,7 @@ linktitle: BorderInfo second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::SaveOptions::BorderInfo class. Instance of this class represents information about border That can be drown on some result document in C++.' type: docs -weight: 1000 +weight: 1100 url: /cpp/aspose.pdf/saveoptions/borderinfo/ --- ## BorderInfo class diff --git a/english/cpp/aspose.pdf/saveoptions/borderpartstyle/_index.md b/english/cpp/aspose.pdf/saveoptions/borderpartstyle/_index.md index 46286fcb8b..5a0e3dfe0e 100644 --- a/english/cpp/aspose.pdf/saveoptions/borderpartstyle/_index.md +++ b/english/cpp/aspose.pdf/saveoptions/borderpartstyle/_index.md @@ -4,7 +4,7 @@ linktitle: BorderPartStyle second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::SaveOptions::BorderPartStyle class. Represents information of one part of border(top, bottom, left side or right side) in C++.' type: docs -weight: 1100 +weight: 1200 url: /cpp/aspose.pdf/saveoptions/borderpartstyle/ --- ## BorderPartStyle class diff --git a/english/cpp/aspose.pdf/saveoptions/get_cacheglyphs/_index.md b/english/cpp/aspose.pdf/saveoptions/get_cacheglyphs/_index.md index 7de054825f..675d1e4146 100644 --- a/english/cpp/aspose.pdf/saveoptions/get_cacheglyphs/_index.md +++ b/english/cpp/aspose.pdf/saveoptions/get_cacheglyphs/_index.md @@ -4,7 +4,7 @@ linktitle: get_CacheGlyphs second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::SaveOptions::get_CacheGlyphs method. Gets boolean value which indicates if will font glyphs be cached while preparing aps pages. Improves performance of conversion pdf to other formats but increases memory consumption in C++.' type: docs -weight: 100 +weight: 200 url: /cpp/aspose.pdf/saveoptions/get_cacheglyphs/ --- ## SaveOptions::get_CacheGlyphs method diff --git a/english/cpp/aspose.pdf/saveoptions/get_closeresponse/_index.md b/english/cpp/aspose.pdf/saveoptions/get_closeresponse/_index.md index 101caa41fb..3627fbdf94 100644 --- a/english/cpp/aspose.pdf/saveoptions/get_closeresponse/_index.md +++ b/english/cpp/aspose.pdf/saveoptions/get_closeresponse/_index.md @@ -4,7 +4,7 @@ linktitle: get_CloseResponse second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::SaveOptions::get_CloseResponse method. Gets boolean value which indicates will Response object be closed after document saved into response in C++.' type: docs -weight: 200 +weight: 300 url: /cpp/aspose.pdf/saveoptions/get_closeresponse/ --- ## SaveOptions::get_CloseResponse method diff --git a/english/cpp/aspose.pdf/saveoptions/get_saveformat/_index.md b/english/cpp/aspose.pdf/saveoptions/get_saveformat/_index.md index b2ee599b60..834066fcd8 100644 --- a/english/cpp/aspose.pdf/saveoptions/get_saveformat/_index.md +++ b/english/cpp/aspose.pdf/saveoptions/get_saveformat/_index.md @@ -4,7 +4,7 @@ linktitle: get_SaveFormat second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::SaveOptions::get_SaveFormat method. Format of data save in C++.' type: docs -weight: 300 +weight: 400 url: /cpp/aspose.pdf/saveoptions/get_saveformat/ --- ## SaveOptions::get_SaveFormat method diff --git a/english/cpp/aspose.pdf/saveoptions/get_warninghandler/_index.md b/english/cpp/aspose.pdf/saveoptions/get_warninghandler/_index.md index 2d751a97b0..994d0f483d 100644 --- a/english/cpp/aspose.pdf/saveoptions/get_warninghandler/_index.md +++ b/english/cpp/aspose.pdf/saveoptions/get_warninghandler/_index.md @@ -4,7 +4,7 @@ linktitle: get_WarningHandler second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::SaveOptions::get_WarningHandler method. Callback to handle any warnings generated. The WarningHandler returns ReturnAction enum item specifying either Continue or Abort. Continue is the default action and the Save operation continues, however the user may also return Abort in which case the Save operation should cease in C++.' type: docs -weight: 400 +weight: 500 url: /cpp/aspose.pdf/saveoptions/get_warninghandler/ --- ## SaveOptions::get_WarningHandler method diff --git a/english/cpp/aspose.pdf/saveoptions/htmlborderlinetype/_index.md b/english/cpp/aspose.pdf/saveoptions/htmlborderlinetype/_index.md index 53e1400cf3..f29eb9e0d3 100644 --- a/english/cpp/aspose.pdf/saveoptions/htmlborderlinetype/_index.md +++ b/english/cpp/aspose.pdf/saveoptions/htmlborderlinetype/_index.md @@ -4,7 +4,7 @@ linktitle: HtmlBorderLineType second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::SaveOptions::HtmlBorderLineType enum. Represents line types that can be used in result document for drawing borders or another lines in C++.' type: docs -weight: 800 +weight: 900 url: /cpp/aspose.pdf/saveoptions/htmlborderlinetype/ --- ## HtmlBorderLineType enum diff --git a/english/cpp/aspose.pdf/saveoptions/margininfo/_index.md b/english/cpp/aspose.pdf/saveoptions/margininfo/_index.md index d2fa39eaab..7b2df07d88 100644 --- a/english/cpp/aspose.pdf/saveoptions/margininfo/_index.md +++ b/english/cpp/aspose.pdf/saveoptions/margininfo/_index.md @@ -4,7 +4,7 @@ linktitle: MarginInfo second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::SaveOptions::MarginInfo class. Instance of this class represents information about page margin That can be drown on some result document in C++.' type: docs -weight: 1200 +weight: 1300 url: /cpp/aspose.pdf/saveoptions/margininfo/ --- ## MarginInfo class diff --git a/english/cpp/aspose.pdf/saveoptions/marginpartstyle/_index.md b/english/cpp/aspose.pdf/saveoptions/marginpartstyle/_index.md index db9db291e8..b1a634652f 100644 --- a/english/cpp/aspose.pdf/saveoptions/marginpartstyle/_index.md +++ b/english/cpp/aspose.pdf/saveoptions/marginpartstyle/_index.md @@ -4,7 +4,7 @@ linktitle: MarginPartStyle second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::SaveOptions::MarginPartStyle class. Represents information of one part of margin(top, botom, left side or right side) in C++.' type: docs -weight: 1300 +weight: 1400 url: /cpp/aspose.pdf/saveoptions/marginpartstyle/ --- ## MarginPartStyle class diff --git a/english/cpp/aspose.pdf/saveoptions/nodelevelresourcetype/_index.md b/english/cpp/aspose.pdf/saveoptions/nodelevelresourcetype/_index.md index 14697bd1bf..8a562c1e0f 100644 --- a/english/cpp/aspose.pdf/saveoptions/nodelevelresourcetype/_index.md +++ b/english/cpp/aspose.pdf/saveoptions/nodelevelresourcetype/_index.md @@ -4,7 +4,7 @@ linktitle: NodeLevelResourceType second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::SaveOptions::NodeLevelResourceType enum. enumerates possible types of saved external resources in C++.' type: docs -weight: 900 +weight: 1000 url: /cpp/aspose.pdf/saveoptions/nodelevelresourcetype/ --- ## NodeLevelResourceType enum diff --git a/english/cpp/aspose.pdf/saveoptions/resourcesavinginfo/_index.md b/english/cpp/aspose.pdf/saveoptions/resourcesavinginfo/_index.md index f616ce66d4..9848281082 100644 --- a/english/cpp/aspose.pdf/saveoptions/resourcesavinginfo/_index.md +++ b/english/cpp/aspose.pdf/saveoptions/resourcesavinginfo/_index.md @@ -4,7 +4,7 @@ linktitle: ResourceSavingInfo second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::SaveOptions::ResourceSavingInfo class. This class represents set of data that related to external resource file''s saving that occures during conversion of PDF to some other format (f.e. HTML) in C++.' type: docs -weight: 1400 +weight: 1500 url: /cpp/aspose.pdf/saveoptions/resourcesavinginfo/ --- ## ResourceSavingInfo class diff --git a/english/cpp/aspose.pdf/saveoptions/saveoptions/_index.md b/english/cpp/aspose.pdf/saveoptions/saveoptions/_index.md new file mode 100644 index 0000000000..b98f58c310 --- /dev/null +++ b/english/cpp/aspose.pdf/saveoptions/saveoptions/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::SaveOptions::SaveOptions constructor +linktitle: SaveOptions +second_title: Aspose.PDF for C++ API Reference +description: 'How to use SaveOptions constructor of Aspose::Pdf::SaveOptions class in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf/saveoptions/saveoptions/ +--- +## SaveOptions::SaveOptions constructor + + + + +```cpp +Aspose::Pdf::SaveOptions::SaveOptions() +``` + +## See Also + +* Class [SaveOptions](../) +* Namespace [Aspose::Pdf](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf/saveoptions/set_cacheglyphs/_index.md b/english/cpp/aspose.pdf/saveoptions/set_cacheglyphs/_index.md index b18dbe55a3..790f92fe2d 100644 --- a/english/cpp/aspose.pdf/saveoptions/set_cacheglyphs/_index.md +++ b/english/cpp/aspose.pdf/saveoptions/set_cacheglyphs/_index.md @@ -4,7 +4,7 @@ linktitle: set_CacheGlyphs second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::SaveOptions::set_CacheGlyphs method. Sets boolean value which indicates if will font glyphs be cached while preparing aps pages. Improves performance of conversion pdf to other formats but increases memory consumption in C++.' type: docs -weight: 500 +weight: 600 url: /cpp/aspose.pdf/saveoptions/set_cacheglyphs/ --- ## SaveOptions::set_CacheGlyphs method diff --git a/english/cpp/aspose.pdf/saveoptions/set_closeresponse/_index.md b/english/cpp/aspose.pdf/saveoptions/set_closeresponse/_index.md index 53491bc44a..5fd55ed5b6 100644 --- a/english/cpp/aspose.pdf/saveoptions/set_closeresponse/_index.md +++ b/english/cpp/aspose.pdf/saveoptions/set_closeresponse/_index.md @@ -4,7 +4,7 @@ linktitle: set_CloseResponse second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::SaveOptions::set_CloseResponse method. Sets boolean value which indicates will Response object be closed after document saved into response in C++.' type: docs -weight: 600 +weight: 700 url: /cpp/aspose.pdf/saveoptions/set_closeresponse/ --- ## SaveOptions::set_CloseResponse method diff --git a/english/cpp/aspose.pdf/saveoptions/set_warninghandler/_index.md b/english/cpp/aspose.pdf/saveoptions/set_warninghandler/_index.md index 243eb1c8c4..b88d90c6fb 100644 --- a/english/cpp/aspose.pdf/saveoptions/set_warninghandler/_index.md +++ b/english/cpp/aspose.pdf/saveoptions/set_warninghandler/_index.md @@ -4,7 +4,7 @@ linktitle: set_WarningHandler second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::SaveOptions::set_WarningHandler method. Callback to handle any warnings generated. The WarningHandler returns ReturnAction enum item specifying either Continue or Abort. Continue is the default action and the Save operation continues, however the user may also return Abort in which case the Save operation should cease in C++.' type: docs -weight: 700 +weight: 800 url: /cpp/aspose.pdf/saveoptions/set_warninghandler/ --- ## SaveOptions::set_WarningHandler method diff --git a/english/cpp/aspose.pdf/signaturescompromisedetector/_index.md b/english/cpp/aspose.pdf/signaturescompromisedetector/_index.md index dfc07aabe2..caf46df611 100644 --- a/english/cpp/aspose.pdf/signaturescompromisedetector/_index.md +++ b/english/cpp/aspose.pdf/signaturescompromisedetector/_index.md @@ -4,7 +4,7 @@ linktitle: SignaturesCompromiseDetector second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::SignaturesCompromiseDetector class. Represents a class for checking compromising signatures of the document in C++.' type: docs -weight: 17100 +weight: 17300 url: /cpp/aspose.pdf/signaturescompromisedetector/ --- ## SignaturesCompromiseDetector class diff --git a/english/cpp/aspose.pdf/stamp/_index.md b/english/cpp/aspose.pdf/stamp/_index.md index ba4dbc92d1..5793636138 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: 17200 +weight: 17400 url: /cpp/aspose.pdf/stamp/ --- ## Stamp class diff --git a/english/cpp/aspose.pdf/subset/_index.md b/english/cpp/aspose.pdf/subset/_index.md index e50b6ecb71..140de89621 100644 --- a/english/cpp/aspose.pdf/subset/_index.md +++ b/english/cpp/aspose.pdf/subset/_index.md @@ -4,7 +4,7 @@ linktitle: Subset second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Subset enum. Represents the subset of pages to which a pagination artifact can apply in C++.' type: docs -weight: 26500 +weight: 26700 url: /cpp/aspose.pdf/subset/ --- ## Subset enum diff --git a/english/cpp/aspose.pdf/svgloadoptions/_index.md b/english/cpp/aspose.pdf/svgloadoptions/_index.md index 0e15ab5b45..1782347743 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: 17300 +weight: 17500 url: /cpp/aspose.pdf/svgloadoptions/ --- ## SvgLoadOptions class diff --git a/english/cpp/aspose.pdf/svgsaveoptions/_index.md b/english/cpp/aspose.pdf/svgsaveoptions/_index.md index 79127ee4fe..6b07932349 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: 17400 +weight: 17600 url: /cpp/aspose.pdf/svgsaveoptions/ --- ## SvgSaveOptions class diff --git a/english/cpp/aspose.pdf/table/_index.md b/english/cpp/aspose.pdf/table/_index.md index 7319951fad..7c802ba5bc 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: 17500 +weight: 17700 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 ebfa05f6be..ba4ae56fc2 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: 26600 +weight: 26800 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 ec7bb2051e..74c5abd02e 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: 26700 +weight: 26900 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 00ff43917f..caa2646c39 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: 17600 +weight: 17800 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 843ba6515e..6710cccc60 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: 17700 +weight: 17900 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 d6bb9f23ed..b38ff28d81 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: 17800 +weight: 18000 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 f1e2714d3a..440603ad47 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: 17900 +weight: 18100 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 1d81401830..de145f22d7 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: 26800 +weight: 27000 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 5f51ec3b32..2068829cd7 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: 18000 +weight: 18200 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 a261755151..c5acc5c74c 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: 18100 +weight: 18300 url: /cpp/aspose.pdf/texsaveoptions/ --- ## TeXSaveOptions class diff --git a/english/cpp/aspose.pdf/textstamp/_index.md b/english/cpp/aspose.pdf/textstamp/_index.md index 8b127631f8..b7f6ea1c80 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: 18200 +weight: 18400 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 841fb055e1..c34fd51972 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: 18300 +weight: 18500 url: /cpp/aspose.pdf/timestampsettings/ --- ## TimestampSettings class diff --git a/english/cpp/aspose.pdf/tocinfo/_index.md b/english/cpp/aspose.pdf/tocinfo/_index.md index 2b26501680..d724284f82 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: 18400 +weight: 18600 url: /cpp/aspose.pdf/tocinfo/ --- ## TocInfo class diff --git a/english/cpp/aspose.pdf/tounicodeprocessingrules/_index.md b/english/cpp/aspose.pdf/tounicodeprocessingrules/_index.md index eb314d2777..6c0b1331ab 100644 --- a/english/cpp/aspose.pdf/tounicodeprocessingrules/_index.md +++ b/english/cpp/aspose.pdf/tounicodeprocessingrules/_index.md @@ -4,7 +4,7 @@ linktitle: ToUnicodeProcessingRules second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::ToUnicodeProcessingRules class. This class describes rules which can be used to solve Adobe Preflight error "Text cannot be mapped to Unicode" in C++.' type: docs -weight: 18500 +weight: 18700 url: /cpp/aspose.pdf/tounicodeprocessingrules/ --- ## ToUnicodeProcessingRules class diff --git a/english/cpp/aspose.pdf/txtloadoptions/_index.md b/english/cpp/aspose.pdf/txtloadoptions/_index.md index 9671529865..221e97652d 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: 18600 +weight: 18800 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 0fed89865a..94766a442e 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: 18700 +weight: 18900 url: /cpp/aspose.pdf/unifiedsaveoptions/ --- ## UnifiedSaveOptions class diff --git a/english/cpp/aspose.pdf/unsupportedfonttypeexception/_index.md b/english/cpp/aspose.pdf/unsupportedfonttypeexception/_index.md index e948f475a6..15c2e117ae 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: 29200 +weight: 29400 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 96ed0e3647..2a7408f12d 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: 26900 +weight: 27100 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 87a28195f2..c8b9fb2248 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: 18800 +weight: 19000 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 a8cf75e9e9..640a61c5a7 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: 27000 +weight: 27200 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 ec5c3f43b6..1ee0cf1114 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: 18900 +weight: 19100 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 4185ce00c6..7ded193ef3 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: 19000 +weight: 19200 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 39a44d47a4..678cf85b5f 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: 19100 +weight: 19300 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 2517ed8186..c2bcede88b 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: 27100 +weight: 27300 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 0bdcffabca..3035c92bec 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: 19200 +weight: 19400 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 174a8147ba..a065ab82ad 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: 19300 +weight: 19500 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 3385254097..37704ec359 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: 19400 +weight: 19600 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 bbd6f8f85f..f52266c195 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: 19500 +weight: 19700 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 07d5c08933..0ebf5f8ec5 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: 19600 +weight: 19800 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 6ced472304..bbf00fd6bc 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: 19700 +weight: 19900 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 a3c0aaed32..167cf6e832 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: 19800 +weight: 20000 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 6dc625553c..32b11d6aca 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: 19900 +weight: 20100 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 d5f2e90a13..8365606246 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: 27200 +weight: 27400 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 1b1ab8e455..97229ba3cb 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: 27300 +weight: 27500 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 1a9796da23..4f21652d1d 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: 20000 +weight: 20200 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 cc8914826b..90164d53e8 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: 20100 +weight: 20300 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 5f81102bb4..45a2c14544 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: 20200 +weight: 20400 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 2e417b4d50..18c2d1570f 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: 20300 +weight: 20500 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 dbaaf60c20..eaa6060324 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: 20400 +weight: 20600 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 c252f027f2..b361248654 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: 20500 +weight: 20700 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 c4a641a2b5..38279be5e8 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: 20600 +weight: 20800 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 c3820851f4..80edffe723 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: 20700 +weight: 20900 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 ae456cccd9..e0a2bf3dae 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: 20800 +weight: 21000 url: /cpp/aspose.pdf/xpssaveoptions/ --- ## XpsSaveOptions class diff --git a/english/cpp/aspose.pdf/xslfoloadoptions/_index.md b/english/cpp/aspose.pdf/xslfoloadoptions/_index.md index 0c9edd085d..865f2544e7 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: 20900 +weight: 21100 url: /cpp/aspose.pdf/xslfoloadoptions/ --- ## XslFoLoadOptions class diff --git a/english/cpp/system/decimal/_index.md b/english/cpp/system/decimal/_index.md index bffd39de59..bac8535ebc 100644 --- a/english/cpp/system/decimal/_index.md +++ b/english/cpp/system/decimal/_index.md @@ -58,8 +58,8 @@ class Decimal | explicit [operator float](./operatorfloat/)() const | Converts the value represented by the current object to single-precision floating-point value. | | [operator!=](./operator!=/)(const Decimal\&) const | Determines if the values represented by the current object and the specified object are not equal. | | [operator!=](./operator!=/)(std::nullptr_t) const | Determines if the value represented by the current object is different from 0. | -| [operator%](./operator-percent/)(const Decimal\&) const | Returns a new instance of [Decimal](./) class that represents a value that is a result of modulo operation with the values represented by the current and the specified objects. | -| [operator%=](./operator-percent-equal/)(const Decimal\&) | Assigns to the current object a new value that is the result of modulo operation with the values represented by the current and the specified objects. | +| [operator%](./operator%/)(const Decimal\&) const | Returns a new instance of [Decimal](./) class that represents a value that is a result of modulo operation with the values represented by the current and the specified objects. | +| [operator%=](./operator%=/)(const Decimal\&) | Assigns to the current object a new value that is the result of modulo operation with the values represented by the current and the specified objects. | | [operator*](./operator_/)(const Decimal\&) const | Returns a new instance of [Decimal](./) class that represents a value that is a result of multiplication of values represented by the current and specified objects. | | [operator*=](./operator_=/)(const Decimal\&) | Assigns to the current object a new value that is the result of multiplication of values represented by the current and specified objects. | | [operator+](./operator+/)(const Decimal\&) const | Returns a new instance of [Decimal](./) class that represents a value that is a sum of values represented by the current and specified objects. | diff --git a/english/cpp/system/decimal/operator%/_index.md b/english/cpp/system/decimal/operator%/_index.md index a3914cedf1..2d600574fd 100644 --- a/english/cpp/system/decimal/operator%/_index.md +++ b/english/cpp/system/decimal/operator%/_index.md @@ -5,9 +5,7 @@ second_title: Aspose.PDF for C++ API Reference description: 'System::Decimal::operator% method. Returns a new instance of Decimal class that represents a value that is a result of modulo operation with the values represented by the current and the specified objects in C++.' type: docs weight: 1100 -url: /cpp/system/decimal/operator-percent/ -aliases: - - /cpp/system/decimal/operator%/ +url: /cpp/system/decimal/operator%/ --- ## Decimal::operator% method diff --git a/english/cpp/system/decimal/operator%=/_index.md b/english/cpp/system/decimal/operator%=/_index.md index 3008a63084..a37ad3af7d 100644 --- a/english/cpp/system/decimal/operator%=/_index.md +++ b/english/cpp/system/decimal/operator%=/_index.md @@ -5,9 +5,7 @@ second_title: Aspose.PDF for C++ API Reference description: 'System::Decimal::operator%= method. Assigns to the current object a new value that is the result of modulo operation with the values represented by the current and the specified objects in C++.' type: docs weight: 1200 -url: /cpp/system/decimal/operator-percent-equal/ -aliases: - - /cpp/system/decimal/operator%=/ +url: /cpp/system/decimal/operator%=/ --- ## Decimal::operator%= method diff --git a/english/cpp/system/nullable/_index.md b/english/cpp/system/nullable/_index.md index 6bb920334e..085119d2cc 100644 --- a/english/cpp/system/nullable/_index.md +++ b/english/cpp/system/nullable/_index.md @@ -73,6 +73,7 @@ templateclass Nullable | [operator>=](./operator_=/)(const Nullable\\&) const | Determines if the value represented by the current object is greater or equal to the value represented by the specified [Nullable](./) object by applying [operator>=()](./operator_=/) to these values. | | [operator|=](./operator_=/)(bool) | Applies [operator|=()](./operator_=/) to the value represented by the current object using the specified value as a right-side argument. | | [reset](./reset/)() | Sets the currently represented value to null. | +| [set_Value](./set_value/)(const T\&) | Sets a new value to nullable object. | | [ToString](./tostring/)() const | Converts the value represented by the current object to string. | ## Typedefs diff --git a/english/cpp/system/nullable/set_value/_index.md b/english/cpp/system/nullable/set_value/_index.md new file mode 100644 index 0000000000..5b371689b2 --- /dev/null +++ b/english/cpp/system/nullable/set_value/_index.md @@ -0,0 +1,28 @@ +--- +title: System::Nullable::set_Value method +linktitle: set_Value +second_title: Aspose.PDF for C++ API Reference +description: 'System::Nullable::set_Value method. Sets a new value to nullable object in C++.' +type: docs +weight: 2400 +url: /cpp/system/nullable/set_value/ +--- +## Nullable::set_Value method + + +Sets a new value to nullable object. + +```cpp +void System::Nullable::set_Value(const T &value) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| value | const T\& | New value of nullable | + +## See Also + +* Class [Nullable](../) +* Namespace [System](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system/nullable/tostring/_index.md b/english/cpp/system/nullable/tostring/_index.md index d60c5821bc..31aeb788b6 100644 --- a/english/cpp/system/nullable/tostring/_index.md +++ b/english/cpp/system/nullable/tostring/_index.md @@ -4,7 +4,7 @@ linktitle: ToString second_title: Aspose.PDF for C++ API Reference description: 'System::Nullable::ToString method. Converts the value represented by the current object to string in C++.' type: docs -weight: 2400 +weight: 2500 url: /cpp/system/nullable/tostring/ --- ## Nullable::ToString method diff --git a/english/cpp/system/nullable/valuetype/_index.md b/english/cpp/system/nullable/valuetype/_index.md index be39f23ce4..44f51a381c 100644 --- a/english/cpp/system/nullable/valuetype/_index.md +++ b/english/cpp/system/nullable/valuetype/_index.md @@ -4,7 +4,7 @@ linktitle: ValueType second_title: Aspose.PDF for C++ API Reference description: 'System::Nullable::ValueType typedef. An alias for a type of the value represented by this class in C++.' type: docs -weight: 2500 +weight: 2600 url: /cpp/system/nullable/valuetype/ --- ## ValueType typedef diff --git a/english/cpp/system/objectext/_index.md b/english/cpp/system/objectext/_index.md index da7647d436..2a323ccf16 100644 --- a/english/cpp/system/objectext/_index.md +++ b/english/cpp/system/objectext/_index.md @@ -29,6 +29,7 @@ class ObjectExt : public System::ObjectType | static [CastToIList](./casttoilist/)(const SmartPtr\\&) | | | static [Coalesce](./coalesce/)(T0, T1) | Implementation of '??' operator translation for non-nullable types. | | static [Coalesce](./coalesce/)(System::Nullable\, T1) | Implementation of '??' operator translation for nullable types. | +| static [CoalesceAssign](./coalesceassign/)(T0\&, T1) | Implementation of '??=' operator translation. | | static [CoalesceInternal](./coalesceinternal/)(RT1, F) | Implementation of '??' operator translation for non-nullable types. Overload for case if RT2 is convertable to RT1. | | static [Equals](./equals/)(const T\&, const T2\&) | | | static [Equals](./equals/)(const T\&, const T2\&) | Substitution for C# [Object.Equals](../object/equals/) calls working for any type in C++. Overload for smart pointer types. | diff --git a/english/cpp/system/objectext/coalesceassign/_index.md b/english/cpp/system/objectext/coalesceassign/_index.md new file mode 100644 index 0000000000..3dba480f2b --- /dev/null +++ b/english/cpp/system/objectext/coalesceassign/_index.md @@ -0,0 +1,38 @@ +--- +title: System::ObjectExt::CoalesceAssign method +linktitle: CoalesceAssign +second_title: Aspose.PDF for C++ API Reference +description: 'System::ObjectExt::CoalesceAssign method. Implementation of ''??='' operator translation in C++.' +type: docs +weight: 600 +url: /cpp/system/objectext/coalesceassign/ +--- +## ObjectExt::CoalesceAssign method + + +Implementation of '??=' operator translation. + +```cpp +template static T0 & System::ObjectExt::CoalesceAssign(T0 &value, T1 func) +``` + + +| Parameter | Description | +| --- | --- | +| T0 | LHS value type. | +| T1 | Type of lambda encapsulating RHS expression. | + +| Parameter | Type | Description | +| --- | --- | --- | +| value | T0\& | LHS value. | +| func | T1 | RHS expression. | + +### ReturnValue + +If LHS value is not null, returns LHS, otherwise calculates RHS expression and returns result. + +## See Also + +* Class [ObjectExt](../) +* Namespace [System](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system/objectext/coalesceinternal/_index.md b/english/cpp/system/objectext/coalesceinternal/_index.md index 7e47787e2a..bf47e3396e 100644 --- a/english/cpp/system/objectext/coalesceinternal/_index.md +++ b/english/cpp/system/objectext/coalesceinternal/_index.md @@ -4,7 +4,7 @@ linktitle: CoalesceInternal second_title: Aspose.PDF for C++ API Reference description: 'System::ObjectExt::CoalesceInternal method. Implementation of ''??'' operator translation for non-nullable types. Overload for case if RT2 is convertable to RT1 in C++.' type: docs -weight: 600 +weight: 700 url: /cpp/system/objectext/coalesceinternal/ --- ## ObjectExt::CoalesceInternal method diff --git a/english/cpp/system/objectext/equals/_index.md b/english/cpp/system/objectext/equals/_index.md index 93177b1893..a98a6d6c55 100644 --- a/english/cpp/system/objectext/equals/_index.md +++ b/english/cpp/system/objectext/equals/_index.md @@ -4,7 +4,7 @@ linktitle: Equals second_title: Aspose.PDF for C++ API Reference description: 'System::ObjectExt::Equals method. Substitution for C# Object.Equals calls working for any type in C++. Overload for string literal with string comparison in C++.' type: docs -weight: 700 +weight: 800 url: /cpp/system/objectext/equals/ --- ## ObjectExt::Equals(const char_t(&), String) method diff --git a/english/cpp/system/objectext/explicitcasttoobject/_index.md b/english/cpp/system/objectext/explicitcasttoobject/_index.md index e737ad0dbf..65763654b9 100644 --- a/english/cpp/system/objectext/explicitcasttoobject/_index.md +++ b/english/cpp/system/objectext/explicitcasttoobject/_index.md @@ -4,7 +4,7 @@ linktitle: ExplicitCastToObject second_title: Aspose.PDF for C++ API Reference description: 'How to use ExplicitCastToObject method of System::ObjectExt class in C++.' type: docs -weight: 800 +weight: 900 url: /cpp/system/objectext/explicitcasttoobject/ --- ## ObjectExt::ExplicitCastToObject(const T\&) method diff --git a/english/cpp/system/objectext/gethashcode/_index.md b/english/cpp/system/objectext/gethashcode/_index.md index 48814412e1..1296a59879 100644 --- a/english/cpp/system/objectext/gethashcode/_index.md +++ b/english/cpp/system/objectext/gethashcode/_index.md @@ -4,7 +4,7 @@ linktitle: GetHashCode second_title: Aspose.PDF for C++ API Reference description: 'System::ObjectExt::GetHashCode method. Implements GetHashCode() calls; works on both Object subclasses and unrelated types in C++.' type: docs -weight: 900 +weight: 1000 url: /cpp/system/objectext/gethashcode/ --- ## ObjectExt::GetHashCode method diff --git a/english/cpp/system/objectext/is/_index.md b/english/cpp/system/objectext/is/_index.md index 046d8da958..6c8b3468e2 100644 --- a/english/cpp/system/objectext/is/_index.md +++ b/english/cpp/system/objectext/is/_index.md @@ -4,7 +4,7 @@ linktitle: Is second_title: Aspose.PDF for C++ API Reference description: 'System::ObjectExt::Is method. Implements ''is'' operator translation. Specialization for string literal in C++.' type: docs -weight: 1000 +weight: 1100 url: /cpp/system/objectext/is/ --- ## ObjectExt::Is(const char16_t *) method diff --git a/english/cpp/system/objectext/isboxedvalue/_index.md b/english/cpp/system/objectext/isboxedvalue/_index.md index 925350e36d..7eaffd6d91 100644 --- a/english/cpp/system/objectext/isboxedvalue/_index.md +++ b/english/cpp/system/objectext/isboxedvalue/_index.md @@ -4,7 +4,7 @@ linktitle: IsBoxedValue second_title: Aspose.PDF for C++ API Reference description: 'System::ObjectExt::IsBoxedValue method. Checks if object is a boxed value in C++.' type: docs -weight: 1100 +weight: 1200 url: /cpp/system/objectext/isboxedvalue/ --- ## ObjectExt::IsBoxedValue method diff --git a/english/cpp/system/objectext/objecttounknown/_index.md b/english/cpp/system/objectext/objecttounknown/_index.md index a0efa94237..251657b098 100644 --- a/english/cpp/system/objectext/objecttounknown/_index.md +++ b/english/cpp/system/objectext/objecttounknown/_index.md @@ -4,7 +4,7 @@ linktitle: ObjectToUnknown second_title: Aspose.PDF for C++ API Reference description: 'System::ObjectExt::ObjectToUnknown method. Converts Object to unknown type, handling both smart pointer type and bpxed value situations in C++.' type: docs -weight: 1200 +weight: 1300 url: /cpp/system/objectext/objecttounknown/ --- ## ObjectExt::ObjectToUnknown(SmartPtr\) method diff --git a/english/cpp/system/objectext/tostring/_index.md b/english/cpp/system/objectext/tostring/_index.md index da41cb9be5..c04b994898 100644 --- a/english/cpp/system/objectext/tostring/_index.md +++ b/english/cpp/system/objectext/tostring/_index.md @@ -4,7 +4,7 @@ linktitle: ToString second_title: Aspose.PDF for C++ API Reference description: 'System::ObjectExt::ToString method. Substitution for C# ToString method to work on any C++ type in C++.' type: docs -weight: 1300 +weight: 1400 url: /cpp/system/objectext/tostring/ --- ## ObjectExt::ToString(const char_t *) method diff --git a/english/cpp/system/objectext/unbox/_index.md b/english/cpp/system/objectext/unbox/_index.md index a62871a924..b3660e0681 100644 --- a/english/cpp/system/objectext/unbox/_index.md +++ b/english/cpp/system/objectext/unbox/_index.md @@ -4,7 +4,7 @@ linktitle: Unbox second_title: Aspose.PDF for C++ API Reference description: 'System::ObjectExt::Unbox method. Unboxes value types after converting to Object. Implementation for enum types in C++.' type: docs -weight: 1400 +weight: 1500 url: /cpp/system/objectext/unbox/ --- ## ObjectExt::Unbox(const SmartPtr\\&) method diff --git a/english/cpp/system/objectext/unboxstringsafe/_index.md b/english/cpp/system/objectext/unboxstringsafe/_index.md index 500320d20d..ea69db20be 100644 --- a/english/cpp/system/objectext/unboxstringsafe/_index.md +++ b/english/cpp/system/objectext/unboxstringsafe/_index.md @@ -4,7 +4,7 @@ linktitle: UnboxStringSafe second_title: Aspose.PDF for C++ API Reference description: 'System::ObjectExt::UnboxStringSafe method. Unboxes string from boxed value in C++.' type: docs -weight: 1500 +weight: 1600 url: /cpp/system/objectext/unboxstringsafe/ --- ## ObjectExt::UnboxStringSafe method diff --git a/english/cpp/system/objectext/unboxtonullable/_index.md b/english/cpp/system/objectext/unboxtonullable/_index.md index 6b66f83d2f..78db475e10 100644 --- a/english/cpp/system/objectext/unboxtonullable/_index.md +++ b/english/cpp/system/objectext/unboxtonullable/_index.md @@ -4,7 +4,7 @@ linktitle: UnboxToNullable second_title: Aspose.PDF for C++ API Reference description: 'System::ObjectExt::UnboxToNullable method. Unboxes object to nullable type in C++.' type: docs -weight: 1600 +weight: 1700 url: /cpp/system/objectext/unboxtonullable/ --- ## ObjectExt::UnboxToNullable method diff --git a/english/cpp/system/objectext/unknownisnull/_index.md b/english/cpp/system/objectext/unknownisnull/_index.md index f224d96dc8..425f1f80f3 100644 --- a/english/cpp/system/objectext/unknownisnull/_index.md +++ b/english/cpp/system/objectext/unknownisnull/_index.md @@ -4,7 +4,7 @@ linktitle: UnknownIsNull second_title: Aspose.PDF for C++ API Reference description: 'System::ObjectExt::UnknownIsNull method. Checks whether unknown type object is nullptr. Overload for non-scalar types in C++.' type: docs -weight: 1700 +weight: 1800 url: /cpp/system/objectext/unknownisnull/ --- ## ObjectExt::UnknownIsNull(T) method diff --git a/english/cpp/system/objectext/unknowntoobject/_index.md b/english/cpp/system/objectext/unknowntoobject/_index.md index ffb2e8f88a..78c72e0020 100644 --- a/english/cpp/system/objectext/unknowntoobject/_index.md +++ b/english/cpp/system/objectext/unknowntoobject/_index.md @@ -4,7 +4,7 @@ linktitle: UnknownToObject second_title: Aspose.PDF for C++ API Reference description: 'System::ObjectExt::UnknownToObject method. Converts unknown type to Object, handling both smart pointer type and value type situations in C++.' type: docs -weight: 1800 +weight: 1900 url: /cpp/system/objectext/unknowntoobject/ --- ## ObjectExt::UnknownToObject(const T\&) method