From e08572729b485ae7fdbb29245f7f4f00d155a418 Mon Sep 17 00:00:00 2001 From: Oleksandr Andriienko Date: Wed, 3 Sep 2025 09:19:47 +0200 Subject: [PATCH 1/9] Aspose.PDF for Rust via C++: flatten, remove_annotations, remove_attachments, remove_blank_pages, remove_bookmarks, remove_hidden_text, remove_images, remove_javascripts --- english/rust-cpp/_index.md | 8 ++++ english/rust-cpp/organize/_index.md | 8 ++++ english/rust-cpp/organize/flatten/_index.md | 40 +++++++++++++++++++ .../organize/remove_annotations/_index.md | 40 +++++++++++++++++++ .../organize/remove_attachments/_index.md | 40 +++++++++++++++++++ .../organize/remove_blank_pages/_index.md | 40 +++++++++++++++++++ .../organize/remove_bookmarks/_index.md | 40 +++++++++++++++++++ .../organize/remove_hidden_text/_index.md | 40 +++++++++++++++++++ .../rust-cpp/organize/remove_images/_index.md | 40 +++++++++++++++++++ .../organize/remove_javascripts/_index.md | 40 +++++++++++++++++++ 10 files changed, 336 insertions(+) create mode 100644 english/rust-cpp/organize/flatten/_index.md create mode 100644 english/rust-cpp/organize/remove_annotations/_index.md create mode 100644 english/rust-cpp/organize/remove_attachments/_index.md create mode 100644 english/rust-cpp/organize/remove_blank_pages/_index.md create mode 100644 english/rust-cpp/organize/remove_bookmarks/_index.md create mode 100644 english/rust-cpp/organize/remove_hidden_text/_index.md create mode 100644 english/rust-cpp/organize/remove_images/_index.md create mode 100644 english/rust-cpp/organize/remove_javascripts/_index.md diff --git a/english/rust-cpp/_index.md b/english/rust-cpp/_index.md index 176393ad37..18e67aa57b 100644 --- a/english/rust-cpp/_index.md +++ b/english/rust-cpp/_index.md @@ -65,6 +65,14 @@ pub struct Document { /* private fields */ } | [add_page_num](./organize/add_page_num/) | Add page number to a PDF-document | | [add_text_header](./organize/add_text_header/) | Add text in Header of a PDF-document | | [add_text_footer](./organize/add_text_footer/) | Add text in Footer of a PDF-document | +| [flatten](./organize/flatten/) | Flatten PDF-document | +| [remove_annotations](./organize/remove_annotations/) | Remove annotations from PDF-document | +| [remove_attachments](./organize/remove_attachments/) | Remove attachments from PDF-document | +| [remove_blank_pages](./organize/remove_blank_pages/) | Remove blank pages from PDF-document | +| [remove_bookmarks](./organize/remove_bookmarks/) | Remove bookmarks from PDF-document | +| [remove_hidden_text](./organize/remove_hidden_text/) | Remove hidden text from PDF-document | +| [remove_images](./organize/remove_images/) | Remove images from PDF-document | +| [remove_javascripts](./organize/remove_javascripts/) | Remove java scripts from PDF-document | | [page_rotate](./organize/page_rotate/) | Rotate a page in the PDF-document. | | [page_set_size](./organize/page_set_size/) | Set the size of a page in the PDF-document. | | [page_grayscale](./organize/page_grayscale/) | Convert page to black and white. | diff --git a/english/rust-cpp/organize/_index.md b/english/rust-cpp/organize/_index.md index 348ec51a3a..434bfe4dc0 100644 --- a/english/rust-cpp/organize/_index.md +++ b/english/rust-cpp/organize/_index.md @@ -20,6 +20,14 @@ url: /rust-cpp/organize/ | [add_page_num](./add_page_num/) | Add page number to a PDF-document | | [add_text_header](./add_text_header/) | Add text in Header of a PDF-document | | [add_text_footer](./add_text_footer/) | Add text in Footer of a PDF-document | +| [flatten](./flatten/) | Flatten PDF-document | +| [remove_annotations](./remove_annotations/) | Remove annotations from PDF-document | +| [remove_attachments](./remove_attachments/) | Remove attachments from PDF-document | +| [remove_blank_pages](./remove_blank_pages/) | Remove blank pages from PDF-document | +| [remove_bookmarks](./remove_bookmarks/) | Remove bookmarks from PDF-document | +| [remove_hidden_text](./remove_hidden_text/) | Remove hidden text from PDF-document | +| [remove_images](./remove_images/) | Remove images from PDF-document | +| [remove_javascripts](./remove_javascripts/) | Remove java scripts from PDF-document | | [page_rotate](./page_rotate/) | Rotate a page in the PDF-document. | | [page_set_size](./page_set_size/) | Set the size of a page in the PDF-document. | | [page_grayscale](./page_grayscale/) | Convert page to black and white. | diff --git a/english/rust-cpp/organize/flatten/_index.md b/english/rust-cpp/organize/flatten/_index.md new file mode 100644 index 0000000000..321837e544 --- /dev/null +++ b/english/rust-cpp/organize/flatten/_index.md @@ -0,0 +1,40 @@ +--- +title: "flatten" +second_title: Aspose.PDF for Rust via C++ +description: "Flattens PDF-document." +type: docs +url: /rust-cpp/organize/flatten/ +--- + +_Flattens PDF-document._ + +```rust +pub fn flatten(&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 PDF-document with filename + let pdf = Document::open("sample.pdf")?; + + // Return the PDF-document contents as plain text + let txt = pdf.extract_text()?; + + // Print extracted text + println!("Extracted text:\n{}", txt); + + Ok(()) +} + +``` \ No newline at end of file diff --git a/english/rust-cpp/organize/remove_annotations/_index.md b/english/rust-cpp/organize/remove_annotations/_index.md new file mode 100644 index 0000000000..0c019eb4f3 --- /dev/null +++ b/english/rust-cpp/organize/remove_annotations/_index.md @@ -0,0 +1,40 @@ +--- +title: "remove_annotations" +second_title: Aspose.PDF for Rust via C++ +description: "Removes annotations from PDF-document." +type: docs +url: /rust-cpp/organize/remove_annotations/ +--- + +_Removes annotations from PDF-document._ + +```rust +pub fn remove_annotations(&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 PDF-document with filename + let pdf = Document::open("sample.pdf")?; + + // Remove annotations from PDF-document + pdf.remove_annotations()?; + + // Save the previously opened PDF-document with new filename + pdf.save_as("sample_remove_annotations.pdf")?; + + Ok(()) +} + +``` \ No newline at end of file diff --git a/english/rust-cpp/organize/remove_attachments/_index.md b/english/rust-cpp/organize/remove_attachments/_index.md new file mode 100644 index 0000000000..7d9130468a --- /dev/null +++ b/english/rust-cpp/organize/remove_attachments/_index.md @@ -0,0 +1,40 @@ +--- +title: "remove_attachments" +second_title: Aspose.PDF for Rust via C++ +description: "Removes attachments from PDF-document." +type: docs +url: /rust-cpp/organize/remove_attachments/ +--- + +_Removes attachments from PDF-document._ + +```rust +pub fn remove_attachments(&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 PDF-document with filename + let pdf = Document::open("sample.pdf")?; + + // Remove attachments from PDF-document + pdf.remove_attachments()?; + + // Save the previously opened PDF-document with new filename + pdf.save_as("sample_remove_attachments.pdf")?; + + Ok(()) +} + +``` \ No newline at end of file diff --git a/english/rust-cpp/organize/remove_blank_pages/_index.md b/english/rust-cpp/organize/remove_blank_pages/_index.md new file mode 100644 index 0000000000..229a43a966 --- /dev/null +++ b/english/rust-cpp/organize/remove_blank_pages/_index.md @@ -0,0 +1,40 @@ +--- +title: "remove_blank_pages" +second_title: Aspose.PDF for Rust via C++ +description: "Removes blank pages from PDF-document." +type: docs +url: /rust-cpp/organize/remove_blank_pages/ +--- + +_Removes blank pages from PDF-document._ + +```rust +pub fn remove_blank_pages(&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 PDF-document with filename + let pdf = Document::open("sample.pdf")?; + + // Remove blank pages from PDF-document + pdf.remove_blank_pages()?; + + // Save the previously opened PDF-document with new filename + pdf.save_as("sample_remove_blank_pages.pdf")?; + + Ok(()) +} + +``` \ No newline at end of file diff --git a/english/rust-cpp/organize/remove_bookmarks/_index.md b/english/rust-cpp/organize/remove_bookmarks/_index.md new file mode 100644 index 0000000000..dbb17b545c --- /dev/null +++ b/english/rust-cpp/organize/remove_bookmarks/_index.md @@ -0,0 +1,40 @@ +--- +title: "remove_bookmarks" +second_title: Aspose.PDF for Rust via C++ +description: "Removes bookmarks from PDF-document." +type: docs +url: /rust-cpp/organize/remove_bookmarks/ +--- + +_Removes bookmarks from PDF-document._ + +```rust +pub fn remove_bookmarks(&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 PDF-document with filename + let pdf = Document::open("sample.pdf")?; + + // Remove bookmarks from PDF-document + pdf.remove_bookmarks()?; + + // Save the previously opened PDF-document with new filename + pdf.save_as("sample_remove_bookmarks.pdf")?; + + Ok(()) +} + +``` \ No newline at end of file diff --git a/english/rust-cpp/organize/remove_hidden_text/_index.md b/english/rust-cpp/organize/remove_hidden_text/_index.md new file mode 100644 index 0000000000..0dd9886e29 --- /dev/null +++ b/english/rust-cpp/organize/remove_hidden_text/_index.md @@ -0,0 +1,40 @@ +--- +title: "remove_hidden_text" +second_title: Aspose.PDF for Rust via C++ +description: "Removes hidden text from PDF-document." +type: docs +url: /rust-cpp/organize/remove_hidden_text/ +--- + +_Removes hidden text from PDF-document._ + +```rust +pub fn remove_hidden_text(&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 PDF-document with filename + let pdf = Document::open("sample.pdf")?; + + // Remove hidden text from PDF-document + pdf.remove_hidden_text()?; + + // Save the previously opened PDF-document with new filename + pdf.save_as("sample_remove_hidden_text.pdf")?; + + Ok(()) +} + +``` \ No newline at end of file diff --git a/english/rust-cpp/organize/remove_images/_index.md b/english/rust-cpp/organize/remove_images/_index.md new file mode 100644 index 0000000000..4683b49fe0 --- /dev/null +++ b/english/rust-cpp/organize/remove_images/_index.md @@ -0,0 +1,40 @@ +--- +title: "remove_images" +second_title: Aspose.PDF for Rust via C++ +description: "Removes images from PDF-document." +type: docs +url: /rust-cpp/organize/remove_images/ +--- + +_Removes images from PDF-document._ + +```rust +pub fn remove_images(&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 PDF-document with filename + let pdf = Document::open("sample.pdf")?; + + // Remove images from PDF-document + pdf.remove_images()?; + + // Save the previously opened PDF-document with new filename + pdf.save_as("sample_remove_images.pdf")?; + + Ok(()) +} + +``` \ No newline at end of file diff --git a/english/rust-cpp/organize/remove_javascripts/_index.md b/english/rust-cpp/organize/remove_javascripts/_index.md new file mode 100644 index 0000000000..97a47afb55 --- /dev/null +++ b/english/rust-cpp/organize/remove_javascripts/_index.md @@ -0,0 +1,40 @@ +--- +title: "remove_javascripts" +second_title: Aspose.PDF for Rust via C++ +description: "Removes java scripts from PDF-document." +type: docs +url: /rust-cpp/organize/remove_javascripts/ +--- + +_Removes java scripts from PDF-document._ + +```rust +pub fn remove_javascripts(&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 PDF-document with filename + let pdf = Document::open("sample.pdf")?; + + // Remove java scripts from PDF-document + pdf.remove_javascripts()?; + + // Save the previously opened PDF-document with new filename + pdf.save_as("sample_remove_javascripts.pdf")?; + + Ok(()) +} + +``` \ No newline at end of file From 12b87484080044b959121ae7d126ab9214ab874b Mon Sep 17 00:00:00 2001 From: Oleksandr Andriienko Date: Tue, 9 Sep 2025 13:03:13 +0200 Subject: [PATCH 2/9] Aspose.PDF for Go via C++: About --- english/go-cpp/_index.md | 21 +++++++ english/go-cpp/miscellaneous/_index.md | 19 ++++++ english/go-cpp/miscellaneous/about/_index.md | 62 ++++++++++++++++++++ 3 files changed, 102 insertions(+) create mode 100644 english/go-cpp/miscellaneous/_index.md create mode 100644 english/go-cpp/miscellaneous/about/_index.md diff --git a/english/go-cpp/_index.md b/english/go-cpp/_index.md index b873b070c6..942e979445 100644 --- a/english/go-cpp/_index.md +++ b/english/go-cpp/_index.md @@ -115,6 +115,13 @@ type Document struct { | [PageIsBlank](./core/pageisblank/) | Return page is blank in PDF-document. | +## Miscellaneous + +| Function | Description | +| -------- | ----------- | +| [About](./miscellaneous/about/) | Return metadata information about the Aspose.PDF for Go via C++. | + + # Constants ## Enumeration of possible rotation values. @@ -146,3 +153,17 @@ const ( ) ``` +# Structs + +## ProductInfo contains metadata about the Aspose.PDF for Go via C++. +```go +type ProductInfo struct { + Product string `json:"product"` // Name + Family string `json:"family"` // Family (e.g., "Aspose.PDF") + Version string `json:"version"` // Version + ReleaseDate string `json:"releasedate"` // Release date in ISO format (YYYY-MM-DD) + Producer string `json:"producer"` // Producer + IsLicensed bool `json:"islicensed"` // License status (true if licensed) +} +``` + diff --git a/english/go-cpp/miscellaneous/_index.md b/english/go-cpp/miscellaneous/_index.md new file mode 100644 index 0000000000..dafd89634a --- /dev/null +++ b/english/go-cpp/miscellaneous/_index.md @@ -0,0 +1,19 @@ +--- +title: "Miscellaneous functions" +second_title: Aspose.PDF for Go via C++ +description: "Miscellaneous functions for working." +type: docs +url: /go-cpp/miscellaneous/ +--- + +## Miscellaneous + +| Function | Description | +| -------- | ----------- | +| [About](./about/) | Return metadata information about the Aspose.PDF for Go via C++. | + + +## Detailed Description + +Miscellaneous functions for working. + diff --git a/english/go-cpp/miscellaneous/about/_index.md b/english/go-cpp/miscellaneous/about/_index.md new file mode 100644 index 0000000000..49e5a83fed --- /dev/null +++ b/english/go-cpp/miscellaneous/about/_index.md @@ -0,0 +1,62 @@ +--- +title: "About" +second_title: Aspose.PDF for Go via C++ +description: "Return metadata information about the Aspose.PDF for Go via C++." +type: docs +url: /go-cpp/miscellaneous/about/ +--- + +_Return metadata information about the Aspose.PDF for Go via C++._ + +```go +func (document *Document) About() (*ProductInfo, error) +``` + +**Parameters**: + +**Return**: + * **ProductInfo** - struct, includes product name, version, release date, licensing status, and related details +```go +type ProductInfo struct { + Product string `json:"product"` // Name + Family string `json:"family"` // Family (e.g., "Aspose.PDF") + Version string `json:"version"` // Version + ReleaseDate string `json:"releasedate"` // Release date in ISO format (YYYY-MM-DD) + Producer string `json:"producer"` // Producer + IsLicensed bool `json:"islicensed"` // License status (true if licensed) +} +``` + * **error** - contains an error or nil if absent + + +**Example**: +```go +package main + +import "github.com/aspose-pdf/aspose-pdf-go-cpp" +import "log" +import "fmt" + +func main() { + // Open(filename string) opens a PDF-document with filename + pdf, err := asposepdf.Open("sample.pdf") + if err != nil { + log.Fatal(err) + } + // About() returns metadata information about the Aspose.PDF for Go via C++ + info, err := pdf.About() + if err != nil { + log.Fatal(err) + } + // Print + fmt.Println("Aspose.PDF Product Info:") + fmt.Println(" Product: ", info.Product) + fmt.Println(" Family: ", info.Family) + fmt.Println(" Version: ", info.Version) + fmt.Println(" ReleaseDate: ", info.ReleaseDate) + fmt.Println(" Producer: ", info.Producer) + fmt.Println(" IsLicensed: ", info.IsLicensed) + // Close() releases allocated resources for PDF-document + defer pdf.Close() +} +``` From 1e6d7e70d9e91b967b38c89212b251150a1d1ebe Mon Sep 17 00:00:00 2001 From: Oleksandr Andriienko Date: Wed, 10 Sep 2025 14:57:07 +0200 Subject: [PATCH 3/9] Aspose.PDF for Rust via C++: about --- english/rust-cpp/_index.md | 33 +++++++++ english/rust-cpp/miscellaneous/_index.md | 19 +++++ .../rust-cpp/miscellaneous/about/_index.md | 69 +++++++++++++++++++ 3 files changed, 121 insertions(+) create mode 100644 english/rust-cpp/miscellaneous/_index.md create mode 100644 english/rust-cpp/miscellaneous/about/_index.md diff --git a/english/rust-cpp/_index.md b/english/rust-cpp/_index.md index 18e67aa57b..b9f0d803df 100644 --- a/english/rust-cpp/_index.md +++ b/english/rust-cpp/_index.md @@ -99,6 +99,13 @@ pub struct Document { /* private fields */ } | [page_count](./core/page_count/) | Return the number of pages in the PDF-document. | +## Miscellaneous + +| Function | Description | +| -------- | ----------- | +| [about](./miscellaneous/about/) | Return metadata information about the Aspose.PDF for Rust via C++. | + + # Enums ## Enumeration of possible page size values. @@ -147,3 +154,29 @@ pub enum Rotation { } ``` + +# Structs + +## ProductInfo contains metadata about the Aspose.PDF for Rust via C++. +```rust +#[derive(Debug, Deserialize)] +pub struct ProductInfo { + #[serde(rename = "product")] + pub product: String, + + #[serde(rename = "family")] + pub family: String, + + #[serde(rename = "version")] + pub version: String, + + #[serde(rename = "releasedate")] + pub release_date: String, + + #[serde(rename = "producer")] + pub producer: String, + + #[serde(rename = "islicensed")] + pub is_licensed: bool, +} +``` diff --git a/english/rust-cpp/miscellaneous/_index.md b/english/rust-cpp/miscellaneous/_index.md new file mode 100644 index 0000000000..ac7c90e8c4 --- /dev/null +++ b/english/rust-cpp/miscellaneous/_index.md @@ -0,0 +1,19 @@ +--- +title: "Miscellaneous functions" +second_title: Aspose.PDF for Rust via C++ +description: "Miscellaneous functions for working." +type: docs +url: /rust-cpp/miscellaneous/ +--- + +## Miscellaneous + +| Function | Description | +| -------- | ----------- | +| [about](./about/) | Return metadata information about the Aspose.PDF for Rust via C++. | + + +## Detailed Description + +Miscellaneous functions for working. + diff --git a/english/rust-cpp/miscellaneous/about/_index.md b/english/rust-cpp/miscellaneous/about/_index.md new file mode 100644 index 0000000000..4db603732e --- /dev/null +++ b/english/rust-cpp/miscellaneous/about/_index.md @@ -0,0 +1,69 @@ +--- +title: "about" +second_title: Aspose.PDF for Rust via C++ +description: "Returns metadata information about the Aspose.PDF for Rust via C++." +type: docs +url: /rust-cpp/miscellaneous/about/ +--- + +_Returns metadata information about the Aspose.PDF for Rust via C++._ + +```rust +pub fn about(&self) -> Result +``` + +**Arguments** + + +**Returns** + * **Ok(ProductInfo)** - if the operation succeeds +```rust +#[derive(Debug, Deserialize)] +pub struct ProductInfo { + #[serde(rename = "product")] + pub product: String, + + #[serde(rename = "family")] + pub family: String, + + #[serde(rename = "version")] + pub version: String, + + #[serde(rename = "releasedate")] + pub release_date: String, + + #[serde(rename = "producer")] + pub producer: String, + + #[serde(rename = "islicensed")] + pub is_licensed: bool, +} +``` + + * **Err(PdfError)** - if the operation fails + +**Example** + +```rust +use asposepdf::Document; + +fn main() -> Result<(), Box> { + // Create a new PDF-document + let pdf = Document::new()?; + + // Return metadata information about the Aspose.PDF for Go via C++. + let info = pdf.about()?; + + // Print metadata fields + println!("Product Info:"); + println!(" Product: {}", info.product); + println!(" Family: {}", info.family); + println!(" Version: {}", info.version); + println!(" ReleaseDate: {}", info.release_date); + println!(" Producer: {}", info.producer); + println!(" IsLicensed: {}", info.is_licensed); + + Ok(()) +} + +``` \ No newline at end of file From 76b5cb20b2ffd0758f4734cb0b9334fd077c704c Mon Sep 17 00:00:00 2001 From: Oleksandr Andriienko Date: Thu, 11 Sep 2025 09:52:47 +0200 Subject: [PATCH 4/9] Aspose.PDF for Rust via C++: save_svg_zip --- english/rust-cpp/_index.md | 56 ++++++++++--------- english/rust-cpp/convert/_index.md | 1 + .../rust-cpp/convert/save_svg_zip/_index.md | 37 ++++++++++++ 3 files changed, 67 insertions(+), 27 deletions(-) create mode 100644 english/rust-cpp/convert/save_svg_zip/_index.md diff --git a/english/rust-cpp/_index.md b/english/rust-cpp/_index.md index b9f0d803df..6eff61dfb2 100644 --- a/english/rust-cpp/_index.md +++ b/english/rust-cpp/_index.md @@ -39,6 +39,7 @@ pub struct Document { /* private fields */ } | [save_markdown](./convert/save_markdown/) | Convert and save the previously opened PDF-document as Markdown-document. | | [save_tiff](./convert/save_tiff/) | Convert and save the previously opened PDF-document as Tiff-document. | | [save_docx_enhanced](./convert/save_docx_enhanced/) | Convert and save the previously opened PDF-document as DocX-document with Enhanced Recognition Mode (fully editable tables and paragraphs). | +| [save_svg_zip](./convert/save_svg_zip/) | Convert and save the previously opened PDF-document as SVG-archive. | | [export_fdf](./convert/export_fdf/) | Export from the previously opened PDF-document with AcroForm to FDF-document. | | [export_xfdf](./convert/export_xfdf/) | Export from the previously opened PDF-document with AcroForm to XFDF-document. | | [export_xml](./convert/export_xml/) | Export from the previously opened PDF-document with AcroForm to XML-document. | @@ -106,6 +107,34 @@ pub struct Document { /* private fields */ } | [about](./miscellaneous/about/) | Return metadata information about the Aspose.PDF for Rust via C++. | + +# Structs secondary + +## ProductInfo contains metadata about the Aspose.PDF for Rust via C++. +```rust +#[derive(Debug, Deserialize)] +pub struct ProductInfo { + #[serde(rename = "product")] + pub product: String, + + #[serde(rename = "family")] + pub family: String, + + #[serde(rename = "version")] + pub version: String, + + #[serde(rename = "releasedate")] + pub release_date: String, + + #[serde(rename = "producer")] + pub producer: String, + + #[serde(rename = "islicensed")] + pub is_licensed: bool, +} +``` + + # Enums ## Enumeration of possible page size values. @@ -153,30 +182,3 @@ pub enum Rotation { On360 = 4, } ``` - - -# Structs - -## ProductInfo contains metadata about the Aspose.PDF for Rust via C++. -```rust -#[derive(Debug, Deserialize)] -pub struct ProductInfo { - #[serde(rename = "product")] - pub product: String, - - #[serde(rename = "family")] - pub family: String, - - #[serde(rename = "version")] - pub version: String, - - #[serde(rename = "releasedate")] - pub release_date: String, - - #[serde(rename = "producer")] - pub producer: String, - - #[serde(rename = "islicensed")] - pub is_licensed: bool, -} -``` diff --git a/english/rust-cpp/convert/_index.md b/english/rust-cpp/convert/_index.md index 55584ff7f6..5a45d63439 100644 --- a/english/rust-cpp/convert/_index.md +++ b/english/rust-cpp/convert/_index.md @@ -23,6 +23,7 @@ url: /rust-cpp/convert/ | [save_markdown](./save_markdown/) | Convert and save the previously opened PDF-document as Markdown-document. | | [save_tiff](./save_tiff/) | Convert and save the previously opened PDF-document as Tiff-document. | | [save_docx_enhanced](./save_docx_enhanced/) | Convert and save the previously opened PDF-document as DocX-document with Enhanced Recognition Mode (fully editable tables and paragraphs). | +| [save_svg_zip](./save_svg_zip/) | Convert and save the previously opened PDF-document as SVG-archive. | | [export_fdf](./export_fdf/) | Export from the previously opened PDF-document with AcroForm to FDF-document. | | [export_xfdf](./export_xfdf/) | Export from the previously opened PDF-document with AcroForm to XFDF-document. | | [export_xml](./export_xml/) | Export from the previously opened PDF-document with AcroForm to XML-document. | diff --git a/english/rust-cpp/convert/save_svg_zip/_index.md b/english/rust-cpp/convert/save_svg_zip/_index.md new file mode 100644 index 0000000000..aa73637576 --- /dev/null +++ b/english/rust-cpp/convert/save_svg_zip/_index.md @@ -0,0 +1,37 @@ +--- +title: "save_svg_zip" +second_title: Aspose.PDF for Rust via C++ +description: "Converts and saves the previously opened PDF-document as a SVG-archive." +type: docs +url: /rust-cpp/convert/save_svg_zip/ +--- + +_Converts and saves the previously opened PDF-document as a SVG-archive._ + +```rust +pub fn save_svg_zip(&self, filename: &str) -> Result<(), PdfError> +``` + +**Arguments** + * **filename** - the path to the output file + +**Returns** + * **Ok(())** - if the operation succeeds + * **Err(PdfError)** - if the operation fails + +**Example** + +```rust +use asposepdf::Document; + +fn main() -> Result<(), Box> { + // Open a PDF-document with filename + let pdf = Document::open("sample.pdf")?; + + // Convert and save the previously opened PDF-document as SVG-archive + pdf.save_svg_zip("sample_svg.zip")?; + + Ok(()) +} + +``` \ No newline at end of file From ebf21d597ed47c8dc93a987d4ef7c07878befb26 Mon Sep 17 00:00:00 2001 From: Oleksandr Andriienko Date: Fri, 12 Sep 2025 10:14:22 +0200 Subject: [PATCH 5/9] Aspose.PDF for Rust via C++: page_remove_annotations, page_remove_hidden_text, page_remove_images --- english/rust-cpp/_index.md | 3 ++ english/rust-cpp/organize/_index.md | 3 ++ .../page_remove_annotations/_index.md | 40 +++++++++++++++++++ .../page_remove_hidden_text/_index.md | 40 +++++++++++++++++++ .../organize/page_remove_images/_index.md | 40 +++++++++++++++++++ 5 files changed, 126 insertions(+) create mode 100644 english/rust-cpp/organize/page_remove_annotations/_index.md create mode 100644 english/rust-cpp/organize/page_remove_hidden_text/_index.md create mode 100644 english/rust-cpp/organize/page_remove_images/_index.md diff --git a/english/rust-cpp/_index.md b/english/rust-cpp/_index.md index 6eff61dfb2..1b2c29a861 100644 --- a/english/rust-cpp/_index.md +++ b/english/rust-cpp/_index.md @@ -82,6 +82,9 @@ pub struct Document { /* private fields */ } | [page_add_page_num](./organize/page_add_page_num/) | Add page number on page | | [page_add_text_header](./organize/page_add_text_header/) | Add text in page header | | [page_add_text_footer](./organize/page_add_text_footer/) | Add text in page footer | +| [page_remove_annotations](./organize/page_remove_annotations/) | Remove annotations in page. | +| [page_remove_hidden_text](./organize/page_remove_hidden_text/) | Remove hidden text in page. | +| [page_remove_images](./organize/page_remove_images/) | Remove images in page. | ## Core PDF functions diff --git a/english/rust-cpp/organize/_index.md b/english/rust-cpp/organize/_index.md index 434bfe4dc0..dc41cce434 100644 --- a/english/rust-cpp/organize/_index.md +++ b/english/rust-cpp/organize/_index.md @@ -36,6 +36,9 @@ url: /rust-cpp/organize/ | [page_add_page_num](./page_add_page_num/) | Add page number on page | | [page_add_text_header](./page_add_text_header/) | Add text in page header | | [page_add_text_footer](./page_add_text_footer/) | Add text in page footer | +| [page_remove_annotations](./page_remove_annotations/) | Remove annotations in page. | +| [page_remove_hidden_text](./page_remove_hidden_text/) | Remove hidden text in page. | +| [page_remove_images](./page_remove_images/) | Remove images in page. | ## Detailed Description diff --git a/english/rust-cpp/organize/page_remove_annotations/_index.md b/english/rust-cpp/organize/page_remove_annotations/_index.md new file mode 100644 index 0000000000..138e90cb6a --- /dev/null +++ b/english/rust-cpp/organize/page_remove_annotations/_index.md @@ -0,0 +1,40 @@ +--- +title: "page_remove_annotations" +second_title: Aspose.PDF for Rust via C++ +description: "Removes annotations in page." +type: docs +url: /rust-cpp/organize/page_remove_annotations/ +--- + +_Removes annotations in page._ + +```rust +pub fn page_remove_annotations(&self, num: i32) -> Result<(), PdfError> +``` + +**Arguments** + * **num** - the page number (1-based) + +**Returns** + * **Ok(())** - if the operation succeeds + * **Err(PdfError)** - if the operation fails + +**Example** + +```rust +use asposepdf::Document; + +fn main() -> Result<(), Box> { + // Open a PDF-document from file + let pdf = Document::open("sample.pdf")?; + + // Remove annotations in page + pdf.page_remove_annotations(1)?; + + // Save the previously opened PDF-document with new filename + pdf.save_as("sample_page1_remove_annotations.pdf")?; + + Ok(()) +} + +``` \ No newline at end of file diff --git a/english/rust-cpp/organize/page_remove_hidden_text/_index.md b/english/rust-cpp/organize/page_remove_hidden_text/_index.md new file mode 100644 index 0000000000..1882991617 --- /dev/null +++ b/english/rust-cpp/organize/page_remove_hidden_text/_index.md @@ -0,0 +1,40 @@ +--- +title: "page_remove_hidden_text" +second_title: Aspose.PDF for Rust via C++ +description: "Removes hidden text in page." +type: docs +url: /rust-cpp/organize/page_remove_hidden_text/ +--- + +_Removes hidden text in page._ + +```rust +pub fn page_remove_hidden_text(&self, num: i32) -> Result<(), PdfError> +``` + +**Arguments** + * **num** - the page number (1-based) + +**Returns** + * **Ok(())** - if the operation succeeds + * **Err(PdfError)** - if the operation fails + +**Example** + +```rust +use asposepdf::Document; + +fn main() -> Result<(), Box> { + // Open a PDF-document from file + let pdf = Document::open("sample.pdf")?; + + // Remove hidden text in page + pdf.page_remove_hidden_text(1)?; + + // Save the previously opened PDF-document with new filename + pdf.save_as("sample_page1_remove_hidden_text.pdf")?; + + Ok(()) +} + +``` \ No newline at end of file diff --git a/english/rust-cpp/organize/page_remove_images/_index.md b/english/rust-cpp/organize/page_remove_images/_index.md new file mode 100644 index 0000000000..8c62a555dd --- /dev/null +++ b/english/rust-cpp/organize/page_remove_images/_index.md @@ -0,0 +1,40 @@ +--- +title: "page_remove_images" +second_title: Aspose.PDF for Rust via C++ +description: "Removes images in page." +type: docs +url: /rust-cpp/organize/page_remove_images/ +--- + +_Removes images in page._ + +```rust +pub fn page_remove_images(&self, num: i32) -> Result<(), PdfError> +``` + +**Arguments** + * **num** - the page number (1-based) + +**Returns** + * **Ok(())** - if the operation succeeds + * **Err(PdfError)** - if the operation fails + +**Example** + +```rust +use asposepdf::Document; + +fn main() -> Result<(), Box> { + // Open a PDF-document from file + let pdf = Document::open("sample.pdf")?; + + // Remove images in page + pdf.page_remove_images(1)?; + + // Save the previously opened PDF-document with new filename + pdf.save_as("sample_page1_remove_images.pdf")?; + + Ok(()) +} + +``` \ No newline at end of file From 64e2305df2db276531ddaff957329365d888316e Mon Sep 17 00:00:00 2001 From: Oleksandr Andriienko Date: Fri, 12 Sep 2025 13:06:05 +0200 Subject: [PATCH 6/9] Aspose.PDF for Go via C++: SaveSvgZip --- english/go-cpp/_index.md | 31 ++++++++------- english/go-cpp/convert/_index.md | 1 + english/go-cpp/convert/savesvgzip/_index.md | 43 +++++++++++++++++++++ 3 files changed, 60 insertions(+), 15 deletions(-) create mode 100644 english/go-cpp/convert/savesvgzip/_index.md diff --git a/english/go-cpp/_index.md b/english/go-cpp/_index.md index 942e979445..a6a0e2aae6 100644 --- a/english/go-cpp/_index.md +++ b/english/go-cpp/_index.md @@ -40,6 +40,7 @@ type Document struct { | [SaveMarkdown](./convert/savemarkdown/) | Convert and save the previously opened PDF-document as Markdown-document. | | [SaveTiff](./convert/savetiff/) | Convert and save the previously opened PDF-document as Tiff-document. | | [SaveDocXEnhanced](./convert/savedocxenhanced/) | Convert and save the previously opened PDF-document as DocX-document with Enhanced Recognition Mode (fully editable tables and paragraphs). | +| [SaveSvgZip](./convert/savesvgzip/) | Convert and save the previously opened PDF-document as SVG-archive. | | [ExportFdf](./convert/exportfdf/) | Export from the previously opened PDF-document with AcroForm to FDF-document. | | [ExportXfdf](./convert/exportxfdf/) | Export from the previously opened PDF-document with AcroForm to XFDF-document. | | [ExportXml](./convert/exportxml/) | Export from the previously opened PDF-document with AcroForm to XML-document. | @@ -122,6 +123,21 @@ type Document struct { | [About](./miscellaneous/about/) | Return metadata information about the Aspose.PDF for Go via C++. | +# Types secondary + +## ProductInfo contains metadata about the Aspose.PDF for Go via C++. +```go +type ProductInfo struct { + Product string `json:"product"` // Name + Family string `json:"family"` // Family (e.g., "Aspose.PDF") + Version string `json:"version"` // Version + ReleaseDate string `json:"releasedate"` // Release date in ISO format (YYYY-MM-DD) + Producer string `json:"producer"` // Producer + IsLicensed bool `json:"islicensed"` // License status (true if licensed) +} +``` + + # Constants ## Enumeration of possible rotation values. @@ -152,18 +168,3 @@ const ( PageSizeP11x17 int32 = 11 // P11x17 size. ) ``` - -# Structs - -## ProductInfo contains metadata about the Aspose.PDF for Go via C++. -```go -type ProductInfo struct { - Product string `json:"product"` // Name - Family string `json:"family"` // Family (e.g., "Aspose.PDF") - Version string `json:"version"` // Version - ReleaseDate string `json:"releasedate"` // Release date in ISO format (YYYY-MM-DD) - Producer string `json:"producer"` // Producer - IsLicensed bool `json:"islicensed"` // License status (true if licensed) -} -``` - diff --git a/english/go-cpp/convert/_index.md b/english/go-cpp/convert/_index.md index da83f6ea29..9ef8a6eba4 100644 --- a/english/go-cpp/convert/_index.md +++ b/english/go-cpp/convert/_index.md @@ -23,6 +23,7 @@ url: /go-cpp/convert/ | [SaveMarkdown](./savemarkdown/) | Convert and save the previously opened PDF-document as Markdown-document. | | [SaveTiff](./savetiff/) | Convert and save the previously opened PDF-document as Tiff-document. | | [SaveDocXEnhanced](./savedocxenhanced/) | Convert and save the previously opened PDF-document as DocX-document with Enhanced Recognition Mode (fully editable tables and paragraphs). | +| [SaveSvgZip](./savesvgzip/) | Convert and save the previously opened PDF-document as SVG-archive. | | [ExportFdf](./exportfdf/) | Export from the previously opened PDF-document with AcroForm to FDF-document. | | [ExportXfdf](./exportxfdf/) | Export from the previously opened PDF-document with AcroForm to XFDF-document. | | [ExportXml](./exportxml/) | Export from the previously opened PDF-document with AcroForm to XML-document. | diff --git a/english/go-cpp/convert/savesvgzip/_index.md b/english/go-cpp/convert/savesvgzip/_index.md new file mode 100644 index 0000000000..9e4e10a6a0 --- /dev/null +++ b/english/go-cpp/convert/savesvgzip/_index.md @@ -0,0 +1,43 @@ +--- +title: "SaveSvgZip" +second_title: Aspose.PDF for Go via C++ +description: "Convert and save the previously opened PDF-document as SVG-archive." +type: docs +url: /go-cpp/convert/savesvgzip/ +--- + +_Convert and save the previously opened PDF-document as SVG-archive._ + +```go +func (document *Document) SaveSvgZip(filename string) error +``` + +**Parameters**: + * **filename** - new filename + +**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() { + // Open(filename string) opens a PDF-document with filename + pdf, err := asposepdf.Open("sample.pdf") + if err != nil { + log.Fatal(err) + } + // SaveSvgZip(filename string) saves previously opened PDF-document as SVG-archive with filename + err = pdf.SaveSvgZip("sample_svg.zip") + if err != nil { + log.Fatal(err) + } + // Close() releases allocated resources for PDF-document + defer pdf.Close() +} +``` From a09873948e425d41ed776ca2e1c4e309a741ef9c Mon Sep 17 00:00:00 2001 From: Oleksandr Andriienko Date: Mon, 15 Sep 2025 13:19:28 +0200 Subject: [PATCH 7/9] Aspose.PDF for JavaScript via C++: AsposePdfDeleteTables --- english/javascript-cpp/_index.md | 1 + english/javascript-cpp/organize/_index.md | 1 + .../organize/asposepdfdeletetables/_index.md | 77 +++++++++++++++++++ 3 files changed, 79 insertions(+) create mode 100644 english/javascript-cpp/organize/asposepdfdeletetables/_index.md diff --git a/english/javascript-cpp/_index.md b/english/javascript-cpp/_index.md index 80f6730f42..6e983ff7ff 100644 --- a/english/javascript-cpp/_index.md +++ b/english/javascript-cpp/_index.md @@ -96,6 +96,7 @@ Such operations are very time consuming, so we recommend using Web Worker. | [AsposePdfEmbedFonts](./organize/asposepdfembedfonts/) | Embed fonts a PDF-file. | | [AsposePdfUnembedFonts](./organize/asposepdfunembedfonts/) | Unembed fonts a PDF-file. | | [AsposePdfOptimizeFileSize](./organize/asposepdfoptimizefilesize/) | Optimize size of PDF-file with image compression quality. | +| [AsposePdfDeleteTables](./organize/asposepdfdeletetables/) | Delete tables from a PDF-file. | ## Metadata PDF functions diff --git a/english/javascript-cpp/organize/_index.md b/english/javascript-cpp/organize/_index.md index 9dbe4230da..6ac2c825fa 100644 --- a/english/javascript-cpp/organize/_index.md +++ b/english/javascript-cpp/organize/_index.md @@ -48,6 +48,7 @@ url: /javascript-cpp/organize/ | [AsposePdfEmbedFonts](./asposepdfembedfonts/) | Embed fonts a PDF-file. | | [AsposePdfUnembedFonts](./asposepdfunembedfonts/) | Unembed fonts a PDF-file. | | [AsposePdfOptimizeFileSize](./asposepdfoptimizefilesize/) | Optimize size of PDF-file with image compression quality. | +| [AsposePdfDeleteTables](./asposepdfdeletetables/) | Delete tables from a PDF-file. | ## Detailed Description diff --git a/english/javascript-cpp/organize/asposepdfdeletetables/_index.md b/english/javascript-cpp/organize/asposepdfdeletetables/_index.md new file mode 100644 index 0000000000..41599789e7 --- /dev/null +++ b/english/javascript-cpp/organize/asposepdfdeletetables/_index.md @@ -0,0 +1,77 @@ +--- +title: "AsposePdfDeleteTables" +second_title: Aspose.PDF for JavaScript via C++ +description: "Delete tables from a PDF-file." +type: docs +url: /javascript-cpp/organize/asposepdfdeletetables/ +--- + +_Delete tables from a PDF-file._ + +```js +function AsposePdfDeleteTables( + 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 ffilePdfDeleteTables = e => { + const file_reader = new FileReader(); + file_reader.onload = event => { + /*Delete tables from a PDF-file and save the "ResultPdfDeleteTables.pdf" - Ask Web Worker*/ + AsposePDFWebWorker.postMessage({ "operation": 'AsposePdfDeleteTables', "params": [event.target.result, e.target.files[0].name, "ResultPdfDeleteTables.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 ffilePdfDeleteTables = function (e) { + const file_reader = new FileReader(); + file_reader.onload = (event) => { + /*Delete tables from a PDF-file and save the "ResultPdfDeleteTables.pdf"*/ + const json = AsposePdfDeleteTables(event.target.result, e.target.files[0].name, "ResultPdfDeleteTables.pdf"); + if (json.errorCode == 0) document.getElementById('output').textContent = json.fileNameResult + else document.getElementById('output').textContent = json.errorText; + /*Make a link to download the result file*/ + DownloadFile(json.fileNameResult, "application/pdf"); + }; + file_reader.readAsArrayBuffer(e.target.files[0]); + }; +``` From 89c532724bb1b6de53bd4a56757de22f44947cd5 Mon Sep 17 00:00:00 2001 From: Oleksandr Andriienko Date: Mon, 15 Sep 2025 16:08:20 +0200 Subject: [PATCH 8/9] Aspose.PDF for Node.js via C++: AsposePdfDeleteTables --- english/nodejs-cpp/_index.md | 1 + english/nodejs-cpp/organize/_index.md | 1 + .../organize/asposepdfdeletetables/_index.md | 51 +++++++++++++++++++ 3 files changed, 53 insertions(+) create mode 100644 english/nodejs-cpp/organize/asposepdfdeletetables/_index.md diff --git a/english/nodejs-cpp/_index.md b/english/nodejs-cpp/_index.md index da9cc6b581..883d23e418 100644 --- a/english/nodejs-cpp/_index.md +++ b/english/nodejs-cpp/_index.md @@ -95,6 +95,7 @@ is_root: true | [AsposePdfEmbedFonts](./organize/asposepdfembedfonts/) | Embed fonts a PDF-file. | | [AsposePdfUnembedFonts](./organize/asposepdfunembedfonts/) | Unembed fonts a PDF-file. | | [AsposePdfOptimizeFileSize](./organize/asposepdfoptimizefilesize/) | Optimize size of PDF-file with image compression quality. | +| [AsposePdfDeleteTables](./organize/asposepdfdeletetables/) | Delete tables from a PDF-file. | ## Metadata PDF functions diff --git a/english/nodejs-cpp/organize/_index.md b/english/nodejs-cpp/organize/_index.md index 705bfee0f9..7f7c5028d2 100644 --- a/english/nodejs-cpp/organize/_index.md +++ b/english/nodejs-cpp/organize/_index.md @@ -48,6 +48,7 @@ url: /nodejs-cpp/organize/ | [AsposePdfEmbedFonts](./asposepdfembedfonts/) | Embed fonts a PDF-file. | | [AsposePdfUnembedFonts](./asposepdfunembedfonts/) | Unembed fonts a PDF-file. | | [AsposePdfOptimizeFileSize](./asposepdfoptimizefilesize/) | Optimize size of PDF-file with image compression quality. | +| [AsposePdfDeleteTables](./asposepdfdeletetables/) | Delete tables from a PDF-file. | ## Detailed Description diff --git a/english/nodejs-cpp/organize/asposepdfdeletetables/_index.md b/english/nodejs-cpp/organize/asposepdfdeletetables/_index.md new file mode 100644 index 0000000000..62b3b2ed58 --- /dev/null +++ b/english/nodejs-cpp/organize/asposepdfdeletetables/_index.md @@ -0,0 +1,51 @@ +--- +title: "AsposePdfDeleteTables" +second_title: Aspose.PDF for Node.js via C++ +description: "Delete tables from a PDF-file." +type: docs +url: /nodejs-cpp/organize/asposepdfdeletetables/ +--- + +_Delete tables from a PDF-file._ + +```js +function AsposePdfDeleteTables( + 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 tables from a PDF-file and save the "ResultPdfDeleteTables.pdf"*/ + const json = AsposePdfModule.AsposePdfDeleteTables(pdf_file, "ResultPdfDeleteTables.pdf"); + console.log("AsposePdfDeleteTables => %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 tables from a PDF-file and save the "ResultPdfDeleteTables.pdf"*/ +const json = AsposePdfModule.AsposePdfDeleteTables(pdf_file, "ResultPdfDeleteTables.pdf"); +console.log("AsposePdfDeleteTables => %O", json.errorCode == 0 ? json.fileNameResult : json.errorText); +``` \ No newline at end of file From cd260bed88199da9cf11264885bc1bc960e7a0c2 Mon Sep 17 00:00:00 2001 From: Alexander Malokhovetskiy Date: Fri, 19 Sep 2025 10:29:25 +0300 Subject: [PATCH 9/9] Aspose.PDF for C++ 25.9 --- english/cpp/_index.md | 4 +- .../settemplateweakptr/_index.md | 28 ----- .../settemplateweakptr/_index.md | 28 ----- english/cpp/aspose.pdf.flow/_index.md | 18 +++ .../istructurerecognitionvisitor/_index.md | 36 ++++++ .../enddocument/_index.md | 23 ++++ .../startdocument/_index.md | 23 ++++ .../visitparagraph/_index.md | 30 +++++ .../visitsectionend/_index.md | 30 +++++ .../visittable/_index.md | 30 +++++ .../structurerecognitionvisitor/_index.md | 34 ++++++ .../enddocument/_index.md | 23 ++++ .../recognize/_index.md | 41 +++++++ .../startdocument/_index.md | 23 ++++ .../visitparagraph/_index.md | 30 +++++ .../visitsectionend/_index.md | 30 +++++ .../visittable/_index.md | 30 +++++ english/cpp/aspose.pdf.forms/_index.md | 2 +- .../field/settemplateweakptr/_index.md | 28 ----- .../_index.md | 2 +- .../cpp/aspose.pdf.groupprocessor/_index.md | 2 +- .../cpp/aspose.pdf.logicalstructure/_index.md | 2 +- .../mcrelement/get_content/_index.md | 32 ----- .../mcrelement/get_imagesrc/_index.md | 32 ----- .../_index.md | 10 +- .../compressoptions/_index.md | 10 +- .../compressoptions/compressoptions/_index.md | 10 +- .../conversionmode/_index.md | 10 +- .../datatype/_index.md | 8 +- .../decryptionoptions/_index.md | 10 +- .../decryptionoptions/_index.md | 10 +- .../get_ownerpassword/_index.md | 10 +- .../set_ownerpassword/_index.md | 10 +- .../docconverter/_index.md | 10 +- .../docconverter/dispose/_index.md | 10 +- .../docconverter/process/_index.md | 10 +- .../encryptionoptions/_index.md | 10 +- .../encryptionoptions/_index.md | 10 +- .../get_cryptoalgorithm/_index.md | 10 +- .../get_documentprivilege/_index.md | 10 +- .../get_ownerpassword/_index.md | 10 +- .../get_userpassword/_index.md | 10 +- .../set_cryptoalgorithm/_index.md | 10 +- .../set_documentprivilege/_index.md | 10 +- .../set_ownerpassword/_index.md | 10 +- .../set_userpassword/_index.md | 10 +- .../filedatasource/_index.md | 10 +- .../filedatasource/filedatasource/_index.md | 10 +- .../filedatasource/get_datatype/_index.md | 10 +- .../filedatasource/get_path/_index.md | 10 +- .../fileresult/_index.md | 10 +- .../fileresult/get_data/_index.md | 10 +- .../fileresult/get_isfile/_index.md | 10 +- .../fileresult/get_isstream/_index.md | 10 +- .../fileresult/get_isstring/_index.md | 10 +- .../fileresult/tofile/_index.md | 10 +- .../fileresult/tostream/_index.md | 10 +- .../filesavetarget/_index.md | 10 +- .../filesavetarget/filesavetarget/_index.md | 10 +- .../filesavetarget/get_path/_index.md | 10 +- .../filesavetarget/get_savetarget/_index.md | 10 +- .../formcheckboxfieldcreateoptions/_index.md | 10 +- .../formcheckboxfieldcreateoptions/_index.md | 10 +- .../get_checked/_index.md | 10 +- .../get_style/_index.md | 10 +- .../set_checked/_index.md | 10 +- .../set_style/_index.md | 10 +- .../formcheckboxfieldsetoptions/_index.md | 10 +- .../get_checked/_index.md | 10 +- .../get_style/_index.md | 10 +- .../set_checked/_index.md | 10 +- .../set_style/_index.md | 10 +- .../formcomboboxfieldcreateoptions/_index.md | 10 +- .../formcomboboxfieldcreateoptions/_index.md | 10 +- .../get_editable/_index.md | 10 +- .../get_options/_index.md | 10 +- .../get_selected/_index.md | 10 +- .../set_editable/_index.md | 10 +- .../set_options/_index.md | 10 +- .../set_selected/_index.md | 10 +- .../formcomboboxfieldsetoptions/_index.md | 10 +- .../get_editable/_index.md | 10 +- .../get_options/_index.md | 10 +- .../get_selected/_index.md | 10 +- .../set_editable/_index.md | 10 +- .../set_options/_index.md | 10 +- .../set_selected/_index.md | 10 +- .../formeditor/_index.md | 10 +- .../formeditor/process/_index.md | 10 +- .../formeditoraddoptions/_index.md | 10 +- .../formeditoraddoptions/_index.md | 10 +- .../formeditoroptions/_index.md | 10 +- .../formeditorremoveoptions/_index.md | 10 +- .../formeditorsetoptions/_index.md | 10 +- .../formeditorsetoptions/_index.md | 10 +- .../formexporter/_index.md | 10 +- .../formexporter/process/_index.md | 10 +- .../formexporteroptions/_index.md | 10 +- .../formexportervaluestocsvoptions/_index.md | 10 +- .../formexportervaluestocsvoptions/_index.md | 10 +- .../formfieldcreateoptions/_index.md | 10 +- .../formfieldoptions/_index.md | 8 +- .../get_alternatename/_index.md | 10 +- .../formfieldoptions/get_color/_index.md | 10 +- .../formfieldoptions/get_contents/_index.md | 10 +- .../get_defaultappearance/_index.md | 10 +- .../formfieldoptions/get_exportable/_index.md | 10 +- .../get_fitintorectangle/_index.md | 10 +- .../formfieldoptions/get_flags/_index.md | 10 +- .../get_issharedfield/_index.md | 10 +- .../get_mappingname/_index.md | 10 +- .../get_maxfontsize/_index.md | 10 +- .../get_minfontsize/_index.md | 10 +- .../formfieldoptions/get_name/_index.md | 10 +- .../get_partialname/_index.md | 10 +- .../formfieldoptions/get_readonly/_index.md | 10 +- .../formfieldoptions/get_required/_index.md | 10 +- .../get_texthorizontalalignment/_index.md | 10 +- .../get_updateappearanceonconvert/_index.md | 10 +- .../get_usefontsubset/_index.md | 10 +- .../formfieldoptions/get_value/_index.md | 10 +- .../set_alternatename/_index.md | 10 +- .../formfieldoptions/set_color/_index.md | 10 +- .../formfieldoptions/set_contents/_index.md | 10 +- .../set_defaultappearance/_index.md | 10 +- .../formfieldoptions/set_exportable/_index.md | 10 +- .../set_fitintorectangle/_index.md | 10 +- .../formfieldoptions/set_flags/_index.md | 10 +- .../set_issharedfield/_index.md | 10 +- .../set_mappingname/_index.md | 10 +- .../set_maxfontsize/_index.md | 10 +- .../set_minfontsize/_index.md | 10 +- .../formfieldoptions/set_name/_index.md | 10 +- .../set_partialname/_index.md | 10 +- .../formfieldoptions/set_readonly/_index.md | 10 +- .../formfieldoptions/set_required/_index.md | 10 +- .../set_texthorizontalalignment/_index.md | 10 +- .../set_updateappearanceonconvert/_index.md | 10 +- .../set_usefontsubset/_index.md | 10 +- .../formfieldoptions/set_value/_index.md | 10 +- .../formfieldsetoptions/_index.md | 10 +- .../formfieldsetoptions/get_rect/_index.md | 10 +- .../formfieldsetoptions/set_rect/_index.md | 10 +- .../formflattenallfieldsoptions/_index.md | 10 +- .../formflattenallfieldsoptions/_index.md | 10 +- .../formflattener/_index.md | 10 +- .../formflattener/process/_index.md | 10 +- .../formflatteneroptions/_index.md | 10 +- .../_index.md | 10 +- .../_index.md | 10 +- .../formoptions/_index.md | 14 +-- .../formoptions/addinput/_index.md | 10 +- .../formoptions/addoutput/_index.md | 10 +- .../formoptions/get_inputs/_index.md | 10 +- .../formoptions/get_outputs/_index.md | 10 +- .../formremoveallfieldsoptions/_index.md | 10 +- .../formremoveallfieldsoptions/_index.md | 10 +- .../formremoveselectedfieldsoptions/_index.md | 10 +- .../formremoveselectedfieldsoptions/_index.md | 10 +- .../formtextboxfieldcreateoptions/_index.md | 10 +- .../formtextboxfieldcreateoptions/_index.md | 10 +- .../get_forcecombs/_index.md | 10 +- .../get_maxlen/_index.md | 10 +- .../get_multiline/_index.md | 10 +- .../get_spellcheck/_index.md | 10 +- .../set_forcecombs/_index.md | 10 +- .../set_maxlen/_index.md | 10 +- .../set_multiline/_index.md | 10 +- .../set_spellcheck/_index.md | 10 +- .../formtextboxfieldsetoptions/_index.md | 10 +- .../get_forcecombs/_index.md | 10 +- .../get_maxlen/_index.md | 10 +- .../get_multiline/_index.md | 10 +- .../get_spellcheck/_index.md | 10 +- .../set_forcecombs/_index.md | 10 +- .../set_maxlen/_index.md | 10 +- .../set_multiline/_index.md | 10 +- .../set_spellcheck/_index.md | 10 +- .../html/_index.md | 10 +- .../html/dispose/_index.md | 10 +- .../html/process/_index.md | 10 +- .../htmltopdfoptions/_index.md | 10 +- .../htmltopdfoptions/get_basepath/_index.md | 10 +- .../get_htmlmediatype/_index.md | 10 +- .../get_isrendertosinglepage/_index.md | 10 +- .../get_operationname/_index.md | 10 +- .../htmltopdfoptions/get_pageinfo/_index.md | 10 +- .../get_pagelayoutoption/_index.md | 10 +- .../htmltopdfoptions/_index.md | 10 +- .../htmltopdfoptions/set_basepath/_index.md | 10 +- .../set_htmlmediatype/_index.md | 10 +- .../set_isrendertosinglepage/_index.md | 10 +- .../htmltopdfoptions/set_pageinfo/_index.md | 10 +- .../set_pagelayoutoption/_index.md | 10 +- .../idatacontainer/_index.md | 8 +- .../idatacontainer/addinput/_index.md | 10 +- .../idatacontainer/get_inputs/_index.md | 10 +- .../idatasource/_index.md | 8 +- .../idatasource/get_datatype/_index.md | 10 +- .../imageextractor/_index.md | 10 +- .../imageextractoroptions/_index.md | 10 +- .../get_operationname/_index.md | 10 +- .../imageextractoroptions/_index.md | 10 +- .../ioperationresult/_index.md | 8 +- .../ioperationresult/get_data/_index.md | 10 +- .../ioperationresult/get_isfile/_index.md | 10 +- .../ioperationresult/get_isstream/_index.md | 10 +- .../ioperationresult/get_isstring/_index.md | 10 +- .../ioperationresult/tofile/_index.md | 10 +- .../ioperationresult/tostream/_index.md | 10 +- .../iplugin/_index.md | 8 +- .../iplugin/process/_index.md | 10 +- .../ipluginoptions/_index.md | 8 +- .../isaveinstruction/_index.md | 8 +- .../isaveinstruction/addoutput/_index.md | 10 +- .../isaveinstruction/get_outputs/_index.md | 10 +- .../isavetarget/_index.md | 8 +- .../isavetarget/get_savetarget/_index.md | 10 +- .../jpeg/_index.md | 10 +- .../jpeg/jpeg/_index.md | 10 +- .../jpegoptions/_index.md | 10 +- .../jpegoptions/get_operationname/_index.md | 10 +- .../jpegoptions/get_quality/_index.md | 10 +- .../jpegoptions/jpegoptions/_index.md | 10 +- .../jpegoptions/set_quality/_index.md | 10 +- .../mergeoptions/_index.md | 10 +- .../mergeoptions/mergeoptions/_index.md | 10 +- .../merger/_index.md | 10 +- .../merger/process/_index.md | 10 +- .../objectresult/_index.md | 10 +- .../objectresult/get_data/_index.md | 10 +- .../objectresult/get_isfile/_index.md | 10 +- .../objectresult/get_isobject/_index.md | 10 +- .../objectresult/get_isstream/_index.md | 10 +- .../objectresult/get_isstring/_index.md | 10 +- .../objectresult/get_text/_index.md | 10 +- .../objectresult/tofile/_index.md | 10 +- .../objectresult/tostream/_index.md | 10 +- .../objectresult/tostring/_index.md | 10 +- .../ofd/_index.md | 10 +- .../ofd/dispose/_index.md | 10 +- .../ofd/process/_index.md | 10 +- .../ofdtopdfoptions/_index.md | 10 +- .../get_ofdloadoptions/_index.md | 10 +- .../get_operationname/_index.md | 10 +- .../ofdtopdfoptions/ofdtopdfoptions/_index.md | 10 +- .../set_ofdloadoptions/_index.md | 10 +- .../optimizeoptions/_index.md | 10 +- .../optimizeoptions/optimizeoptions/_index.md | 10 +- .../optimizer/_index.md | 10 +- .../optimizer/process/_index.md | 10 +- .../organizerbaseoptions/_index.md | 14 +-- .../organizerbaseoptions/addinput/_index.md | 10 +- .../organizerbaseoptions/addoutput/_index.md | 10 +- .../get_closeinputstreams/_index.md | 10 +- .../get_closeoutputstreams/_index.md | 10 +- .../organizerbaseoptions/get_inputs/_index.md | 10 +- .../get_outputs/_index.md | 10 +- .../set_closeinputstreams/_index.md | 10 +- .../set_closeoutputstreams/_index.md | 10 +- .../pdfaconverter/_index.md | 10 +- .../pdfaconverter/process/_index.md | 10 +- .../pdfaconvertoptions/_index.md | 12 +- .../pdfaconvertoptions/addoutput/_index.md | 10 +- .../pdfaconvertoptions/get_outputs/_index.md | 10 +- .../pdfaconvertoptions/_index.md | 10 +- .../pdfaoptionsbase/_index.md | 12 +- .../pdfaoptionsbase/addinput/_index.md | 10 +- .../pdfaoptionsbase/get_aligntext/_index.md | 10 +- .../pdfaoptionsbase/get_erroraction/_index.md | 10 +- .../get_excludefontsstrategy/_index.md | 10 +- .../get_fontembeddingoptions/_index.md | 10 +- .../get_iccprofilefilename/_index.md | 10 +- .../pdfaoptionsbase/get_inputs/_index.md | 10 +- .../get_islowmemorymode/_index.md | 10 +- .../get_logoutputsource/_index.md | 10 +- .../get_nonspecificationflags/_index.md | 10 +- .../get_optimizefilesize/_index.md | 10 +- .../pdfaoptionsbase/get_pdfaversion/_index.md | 10 +- .../_index.md | 10 +- .../get_softmaskaction/_index.md | 10 +- .../_index.md | 10 +- .../get_unicodeprocessingrules/_index.md | 10 +- .../pdfaoptionsbase/pdfaoptionsbase/_index.md | 10 +- .../pdfaoptionsbase/set_aligntext/_index.md | 10 +- .../pdfaoptionsbase/set_erroraction/_index.md | 10 +- .../set_excludefontsstrategy/_index.md | 10 +- .../set_iccprofilefilename/_index.md | 10 +- .../set_islowmemorymode/_index.md | 10 +- .../set_logoutputsource/_index.md | 10 +- .../set_optimizefilesize/_index.md | 10 +- .../pdfaoptionsbase/set_pdfaversion/_index.md | 10 +- .../_index.md | 10 +- .../set_softmaskaction/_index.md | 10 +- .../_index.md | 10 +- .../set_unicodeprocessingrules/_index.md | 10 +- .../pdfastandardversion/_index.md | 8 +- .../pdfavalidateoptions/_index.md | 10 +- .../pdfavalidationresult/_index.md | 8 +- .../pdfconverteroptions/_index.md | 14 +-- .../pdfconverteroptions/addinput/_index.md | 10 +- .../pdfconverteroptions/addoutput/_index.md | 10 +- .../pdfconverteroptions/get_inputs/_index.md | 10 +- .../get_operationname/_index.md | 10 +- .../pdfconverteroptions/get_outputs/_index.md | 10 +- .../pdfextractor/_index.md | 10 +- .../pdfextractor/dispose/_index.md | 10 +- .../pdfextractor/process/_index.md | 10 +- .../pdfextractoroptions/_index.md | 12 +- .../pdfextractoroptions/addinput/_index.md | 10 +- .../pdfextractoroptions/get_inputs/_index.md | 10 +- .../get_operationname/_index.md | 10 +- .../pdfgeneratoroptions/_index.md | 14 +-- .../pdfgeneratoroptions/addinput/_index.md | 10 +- .../pdfgeneratoroptions/addoutput/_index.md | 10 +- .../pdfgeneratoroptions/get_inputs/_index.md | 10 +- .../pdfgeneratoroptions/get_outputs/_index.md | 10 +- .../pdftodocoptions/_index.md | 16 +-- .../get_conversionmode/_index.md | 10 +- .../get_operationname/_index.md | 10 +- .../pdftodocoptions/get_saveformat/_index.md | 10 +- .../pdftodocoptions/pdftodocoptions/_index.md | 20 ++-- .../set_conversionmode/_index.md | 10 +- .../pdftodocoptions/set_saveformat/_index.md | 10 +- .../pdftohtmloptions/_index.md | 10 +- .../get_operationname/_index.md | 10 +- .../get_outputdatatype/_index.md | 10 +- .../pdftohtmloptions/_index.md | 14 +-- .../pdftohtmloptions/savedatatype/_index.md | 8 +- .../pdftoimage/_index.md | 10 +- .../pdftoimage/dispose/_index.md | 10 +- .../pdftoimage/process/_index.md | 10 +- .../pdftoimageoptions/_index.md | 14 +-- .../pdftoimageoptions/addinput/_index.md | 10 +- .../pdftoimageoptions/addoutput/_index.md | 10 +- .../get_conversionmode/_index.md | 10 +- .../pdftoimageoptions/get_inputs/_index.md | 10 +- .../get_operationname/_index.md | 10 +- .../get_outputresolution/_index.md | 10 +- .../pdftoimageoptions/get_outputs/_index.md | 10 +- .../pdftoimageoptions/get_pagelist/_index.md | 10 +- .../imageconversionmode/_index.md | 8 +- .../set_outputresolution/_index.md | 10 +- .../pdftoimageoptions/set_pagelist/_index.md | 10 +- .../pdftoxlsoptions/_index.md | 10 +- .../pdftoxlsoptions/excelformat/_index.md | 8 +- .../pdftoxlsoptions/get_format/_index.md | 10 +- .../get_insertblankcolumnatfirst/_index.md | 10 +- .../_index.md | 10 +- .../get_operationname/_index.md | 10 +- .../pdftoxlsoptions/pdftoxlsoptions/_index.md | 10 +- .../pdftoxlsoptions/set_format/_index.md | 10 +- .../set_insertblankcolumnatfirst/_index.md | 10 +- .../_index.md | 10 +- .../png/_index.md | 10 +- .../png/png/_index.md | 10 +- .../pngoptions/_index.md | 10 +- .../pngoptions/get_operationname/_index.md | 10 +- .../pngoptions/pngoptions/_index.md | 10 +- .../resizeoptions/_index.md | 10 +- .../resizeoptions/get_pagesize/_index.md | 10 +- .../resizeoptions/resizeoptions/_index.md | 10 +- .../resizeoptions/set_pagesize/_index.md | 10 +- .../resultcontainer/_index.md | 8 +- .../get_resultcollection/_index.md | 10 +- .../rotateoptions/_index.md | 10 +- .../rotateoptions/get_rotation/_index.md | 10 +- .../rotateoptions/rotateoptions/_index.md | 10 +- .../rotateoptions/set_rotation/_index.md | 10 +- .../saveformat/_index.md | 8 +- .../security/_index.md | 10 +- .../security/process/_index.md | 10 +- .../aspose.pdf.lowcode/selectfield/_index.md | 22 ++++ .../signature/_index.md | 10 +- .../signature/process/_index.md | 10 +- .../signoptions/_index.md | 10 +- .../signoptions/get_contact/_index.md | 10 +- .../signoptions/get_location/_index.md | 10 +- .../signoptions/get_name/_index.md | 10 +- .../signoptions/get_pagenumber/_index.md | 10 +- .../signoptions/get_reason/_index.md | 10 +- .../signoptions/get_rectangle/_index.md | 10 +- .../signoptions/get_visible/_index.md | 10 +- .../signoptions/set_contact/_index.md | 10 +- .../signoptions/set_location/_index.md | 10 +- .../signoptions/set_name/_index.md | 10 +- .../signoptions/set_pagenumber/_index.md | 10 +- .../signoptions/set_reason/_index.md | 10 +- .../signoptions/set_rectangle/_index.md | 10 +- .../signoptions/set_visible/_index.md | 10 +- .../signoptions/signoptions/_index.md | 14 +-- .../splitoptions/_index.md | 10 +- .../splitoptions/splitoptions/_index.md | 10 +- .../splitter/_index.md | 10 +- .../splitter/process/_index.md | 10 +- .../streamdatasource/_index.md | 10 +- .../streamdatasource/get_data/_index.md | 10 +- .../streamdatasource/get_datatype/_index.md | 10 +- .../streamdatasource/_index.md | 10 +- .../streamresult/_index.md | 10 +- .../streamresult/get_data/_index.md | 10 +- .../streamresult/get_isfile/_index.md | 10 +- .../streamresult/get_isstream/_index.md | 10 +- .../streamresult/get_isstring/_index.md | 10 +- .../streamresult/tofile/_index.md | 10 +- .../streamresult/tostream/_index.md | 10 +- .../streamsavetarget/_index.md | 10 +- .../streamsavetarget/get_data/_index.md | 10 +- .../streamsavetarget/get_savetarget/_index.md | 10 +- .../streamsavetarget/_index.md | 10 +- .../stringresult/_index.md | 10 +- .../stringresult/get_data/_index.md | 10 +- .../stringresult/get_isfile/_index.md | 10 +- .../stringresult/get_isstream/_index.md | 10 +- .../stringresult/get_isstring/_index.md | 10 +- .../stringresult/get_text/_index.md | 10 +- .../stringresult/tofile/_index.md | 10 +- .../stringresult/tostream/_index.md | 10 +- .../stringresult/tostring/_index.md | 10 +- .../tablebuilder/_index.md | 8 +- .../tablebuilder/addrow/_index.md | 10 +- .../tablebuilder/addtable/_index.md | 10 +- .../tablebuilder/insertpageafter/_index.md | 10 +- .../tablebuilder/insertpagebefore/_index.md | 10 +- .../tablebuilder/to_tableoptions/_index.md | 10 +- .../tablecellbuilder/_index.md | 10 +- .../tablecellbuilder/addcell/_index.md | 10 +- .../tablecellbuilder/addparagraph/_index.md | 10 +- .../tablegenerator/_index.md | 10 +- .../tablegenerator/dispose/_index.md | 10 +- .../tablegenerator/process/_index.md | 10 +- .../tableoptions/_index.md | 10 +- .../tableoptions/addtable/_index.md | 10 +- .../tableoptions/create/_index.md | 10 +- .../tableoptions/insertpageafter/_index.md | 10 +- .../tableoptions/insertpagebefore/_index.md | 10 +- .../tableoptions/tableoptions/_index.md | 10 +- .../tablerowbuilder/_index.md | 10 +- .../tablerowbuilder/addcell/_index.md | 10 +- .../tablerowbuilder/addrow/_index.md | 10 +- .../textextractor/_index.md | 10 +- .../textextractoroptions/_index.md | 10 +- .../get_formattingmode/_index.md | 10 +- .../get_operationname/_index.md | 10 +- .../textextractoroptions/_index.md | 14 +-- .../textformattingmode/_index.md | 8 +- .../tiff/_index.md | 10 +- .../tiff/tiff/_index.md | 10 +- .../tiffoptions/_index.md | 10 +- .../tiffoptions/get_brightness/_index.md | 10 +- .../tiffoptions/get_compression/_index.md | 10 +- .../tiffoptions/get_coordinatetype/_index.md | 10 +- .../tiffoptions/get_depth/_index.md | 10 +- .../tiffoptions/get_operationname/_index.md | 10 +- .../get_saveasmultipagetiff/_index.md | 10 +- .../tiffoptions/get_shape/_index.md | 10 +- .../tiffoptions/get_skipblankpages/_index.md | 10 +- .../tiffoptions/set_brightness/_index.md | 10 +- .../tiffoptions/set_compression/_index.md | 10 +- .../tiffoptions/set_coordinatetype/_index.md | 10 +- .../tiffoptions/set_depth/_index.md | 10 +- .../set_saveasmultipagetiff/_index.md | 10 +- .../tiffoptions/set_shape/_index.md | 10 +- .../tiffoptions/set_skipblankpages/_index.md | 10 +- .../tiffoptions/tiffoptions/_index.md | 10 +- .../tocgenerator/_index.md | 10 +- .../tocgenerator/dispose/_index.md | 10 +- .../tocgenerator/process/_index.md | 10 +- .../tocoptions/_index.md | 10 +- .../tocoptions/tocoptions/_index.md | 10 +- .../xlsconverter/_index.md | 10 +- .../xlsconverter/dispose/_index.md | 10 +- .../xlsconverter/process/_index.md | 10 +- .../cpp/aspose.pdf.multithreading/_index.md | 2 +- english/cpp/aspose.pdf.operators/_index.md | 2 +- english/cpp/aspose.pdf.optimization/_index.md | 2 +- .../get_linkduplcatestreams/_index.md | 27 ----- .../_index.md | 23 ---- .../set_linkduplcatestreams/_index.md | 27 ----- .../_index.md | 23 ---- .../cpp/aspose.pdf.pdftomarkdown/_index.md | 17 --- .../emphasisstyle/_index.md | 29 ----- .../headinglevels/_index.md | 31 ----- .../headinglevels/addlevels/_index.md | 30 ----- .../headinglevels/get_alllevels/_index.md | 25 ---- .../headinglevels/headinglevels/_index.md | 42 ------- .../headingrecognitionstrategy/_index.md | 31 ----- .../headingstyle/_index.md | 29 ----- .../linebreakstyle/_index.md | 30 ----- .../aspose.pdf.plugins/selectfield/_index.md | 22 ---- english/cpp/aspose.pdf.sanitization/_index.md | 2 +- .../cpp/aspose.pdf.security.impl/_index.md | 2 +- english/cpp/aspose.pdf.security/_index.md | 2 +- english/cpp/aspose.pdf.signatures/_index.md | 2 +- english/cpp/aspose.pdf.structure/_index.md | 2 +- english/cpp/aspose.pdf.tagged/_index.md | 2 +- english/cpp/aspose.pdf.text/_index.md | 2 +- .../get_initialsegmenttextlength/_index.md | 23 ---- .../get_segmentafter/_index.md | 24 ---- .../get_segmentchanged/_index.md | 24 ---- .../onsegmentchangedeventargs/_index.md | 24 ---- english/cpp/aspose.pdf.vector/_index.md | 2 +- english/cpp/aspose.pdf.xfaconverter/_index.md | 2 +- .../docsaveoptions/recognitionmode/_index.md | 2 +- .../document/mergeoptions/_index.md | 4 + .../get_concatenationpacketsize/_index.md | 24 ++++ .../get_isneedpagetreebalance/_index.md | 2 +- .../get_maximumnodesinlevel/_index.md | 2 +- .../mergeoptions/get_usediskbuffer/_index.md | 28 +++++ .../set_concatenationpacketsize/_index.md | 24 ++++ .../set_isneedpagetreebalance/_index.md | 2 +- .../set_maximumnodesinlevel/_index.md | 2 +- .../mergeoptions/set_usediskbuffer/_index.md | 28 +++++ .../cpp/aspose.pdf/htmlsaveoptions/_index.md | 4 +- .../_index.md | 2 +- .../_index.md | 2 +- .../pagecollectionextension/_index.md | 28 ----- .../pagecollectionextension/_index.md | 23 ---- .../updatepagination/_index.md | 30 ----- .../paragraphs/_anonymous_method_0/_index.md | 25 ---- english/cpp/aspose.pdf/pdfformat/_index.md | 1 + .../cpp/aspose.pdf/rectangle/empty/_index.md | 23 ---- .../system.collections.concurrent/_index.md | 2 +- .../cpp/system.collections.generic/_index.md | 2 +- .../system.collections.objectmodel/_index.md | 2 +- .../system.collections.specialized/_index.md | 2 +- english/cpp/system.collections/_index.md | 2 +- .../_index.md | 2 +- english/cpp/system.componentmodel/_index.md | 2 +- english/cpp/system.data.common/_index.md | 2 +- english/cpp/system.data.sqlclient/_index.md | 2 +- english/cpp/system.data/_index.md | 2 +- english/cpp/system.diagnostics/_index.md | 2 +- .../cpp/system.drawing.drawing2d/_index.md | 2 +- english/cpp/system.drawing.imaging/_index.md | 2 +- english/cpp/system.drawing.printing/_index.md | 2 +- english/cpp/system.drawing.text/_index.md | 2 +- english/cpp/system.drawing/_index.md | 2 +- .../cpp/system.drawing/brush/clone/_index.md | 33 ----- .../system.drawing/brush/dispose/_index.md | 23 ---- english/cpp/system.globalization/_index.md | 2 +- english/cpp/system.io.compression/_index.md | 2 +- english/cpp/system.io/_index.md | 2 +- english/cpp/system.io/fileoptions/_index.md | 2 +- english/cpp/system.io/filestream/_index.md | 4 + .../filestream/defaultbuffersize/_index.md | 2 +- .../system.io/filestream/filestream/_index.md | 33 +++++ .../system.io/filestream/flushasync/_index.md | 34 ++++++ .../filestream/get_canread/_index.md | 2 +- .../filestream/get_canseek/_index.md | 2 +- .../filestream/get_canwrite/_index.md | 2 +- .../system.io/filestream/get_length/_index.md | 2 +- .../system.io/filestream/get_name/_index.md | 2 +- .../filestream/get_position/_index.md | 2 +- .../system.io/filestream/operator=/_index.md | 2 +- .../cpp/system.io/filestream/read/_index.md | 2 +- .../system.io/filestream/readasync/_index.md | 38 ++++++ .../system.io/filestream/readbyte/_index.md | 2 +- .../cpp/system.io/filestream/seek/_index.md | 2 +- .../filestream/set_position/_index.md | 2 +- .../system.io/filestream/setlength/_index.md | 2 +- .../cpp/system.io/filestream/write/_index.md | 2 +- .../system.io/filestream/writeasync/_index.md | 38 ++++++ .../system.io/filestream/writebyte/_index.md | 2 +- english/cpp/system.io/stream/_index.md | 6 + .../cpp/system.io/stream/flushasync/_index.md | 54 +++++++++ .../system.io/stream/get_canread/_index.md | 2 +- .../system.io/stream/get_canseek/_index.md | 2 +- .../system.io/stream/get_cantimeout/_index.md | 2 +- .../system.io/stream/get_canwrite/_index.md | 2 +- .../cpp/system.io/stream/get_length/_index.md | 2 +- .../system.io/stream/get_position/_index.md | 2 +- .../stream/get_readtimeout/_index.md | 2 +- .../stream/get_writetimeout/_index.md | 2 +- english/cpp/system.io/stream/null/_index.md | 2 +- english/cpp/system.io/stream/ptr/_index.md | 2 +- english/cpp/system.io/stream/read/_index.md | 2 +- .../cpp/system.io/stream/readasync/_index.md | 65 ++++++++++ .../cpp/system.io/stream/readbyte/_index.md | 2 +- english/cpp/system.io/stream/seek/_index.md | 2 +- .../system.io/stream/set_position/_index.md | 2 +- .../stream/set_readtimeout/_index.md | 2 +- .../stream/set_writetimeout/_index.md | 2 +- .../cpp/system.io/stream/setlength/_index.md | 2 +- english/cpp/system.io/stream/write/_index.md | 2 +- .../cpp/system.io/stream/writeasync/_index.md | 65 ++++++++++ .../cpp/system.io/stream/writebyte/_index.md | 2 +- english/cpp/system.linq/_index.md | 2 +- english/cpp/system.net.cache/_index.md | 2 +- english/cpp/system.net.http.headers/_index.md | 2 +- english/cpp/system.net.http/_index.md | 2 +- .../system.net.networkinformation/_index.md | 2 +- english/cpp/system.net.security/_index.md | 2 +- english/cpp/system.net.sockets/_index.md | 2 +- english/cpp/system.net/_index.md | 2 +- english/cpp/system.reflection/_index.md | 2 +- english/cpp/system.resources/_index.md | 2 +- .../system.runtime.compilerservices/_index.md | 6 +- .../configuredresulttaskawaitable/_index.md | 28 +++++ .../configuredresulttaskawaitable/_index.md | 24 ++++ .../getawaiter/_index.md | 24 ++++ .../configuredtaskawaitable/_index.md | 28 +++++ .../configuredtaskawaitable/_index.md | 24 ++++ .../getawaiter/_index.md | 24 ++++ .../ituple/_index.md | 2 +- .../resulttaskawaiter/_index.md | 30 +++++ .../get_iscompleted/_index.md | 23 ++++ .../resulttaskawaiter/getresult/_index.md | 23 ++++ .../resulttaskawaiter/oncompleted/_index.md | 24 ++++ .../resulttaskawaiter/_index.md | 24 ++++ .../runtimehelpers/_index.md | 2 +- .../taskawaiter/_index.md | 30 +++++ .../taskawaiter/get_iscompleted/_index.md | 23 ++++ .../taskawaiter/getresult/_index.md | 23 ++++ .../taskawaiter/oncompleted/_index.md | 24 ++++ .../taskawaiter/taskawaiter/_index.md | 24 ++++ .../system.runtime.interopservices/_index.md | 2 +- .../system.runtime.serialization/_index.md | 2 +- .../system.security.authentication/_index.md | 2 +- .../_index.md | 2 +- .../_index.md | 2 +- .../_index.md | 2 +- .../system.security.cryptography/_index.md | 2 +- .../cpp/system.security.permissions/_index.md | 2 +- english/cpp/system.security.policy/_index.md | 2 +- english/cpp/system.security/_index.md | 2 +- .../_index.md | 2 +- .../system.text.regularexpressions/_index.md | 2 +- english/cpp/system.text/_index.md | 2 +- english/cpp/system.threading.tasks/_index.md | 41 +++++++ .../system.threading.tasks/delay/_index.md | 47 ++++++++ .../dispatchcurrentcontext/_index.md | 22 ++++ .../fromexception/_index.md | 39 ++++++ .../fromresult/_index.md | 23 ++++ .../resulttask/_index.md | 43 +++++++ .../resulttask/configureawait/_index.md | 38 ++++++ .../resulttask/continuewith/_index.md | 40 +++++++ .../resulttask/get_result/_index.md | 33 +++++ .../resulttask/getawaiter/_index.md | 34 ++++++ .../resulttask/resulttask/_index.md | 47 ++++++++ .../resulttask/set_result/_index.md | 23 ++++ .../cpp/system.threading.tasks/run/_index.md | 55 +++++++++ .../cpp/system.threading.tasks/task/_index.md | 67 +++++++++++ .../task/activate/_index.md | 24 ++++ .../task/addcontinuation/_index.md | 24 ++++ .../task/complete/_index.md | 23 ++++ .../task/configureawait/_index.md | 33 +++++ .../task/continuewith/_index.md | 34 ++++++ .../task/dispose/_index.md | 23 ++++ .../task/execute/_index.md | 23 ++++ .../task/functiont/_index.md | 27 +++++ .../task/get_asyncstate/_index.md | 30 +++++ .../task/get_completedtask/_index.md | 29 +++++ .../task/get_currentid/_index.md | 24 ++++ .../task/get_id/_index.md | 28 +++++ .../task/get_iscanceled/_index.md | 28 +++++ .../task/get_iscompleted/_index.md | 28 +++++ .../task/get_isfaulted/_index.md | 28 +++++ .../task/get_scheduler/_index.md | 24 ++++ .../task/get_status/_index.md | 29 +++++ .../task/getawaiter/_index.md | 29 +++++ .../task/runsynchronously/_index.md | 45 +++++++ .../task/set_function/_index.md | 24 ++++ .../task/set_status/_index.md | 24 ++++ .../task/start/_index.md | 45 +++++++ .../task/task/_index.md | 113 ++++++++++++++++++ .../task/wait/_index.md | 44 +++++++ .../task/~task/_index.md | 23 ++++ .../taskscheduler/_index.md | 32 +++++ .../_index.md | 30 +++++ .../taskscheduler/get_current/_index.md | 30 +++++ .../taskscheduler/get_default/_index.md | 30 +++++ .../taskscheduler/get_id/_index.md | 28 +++++ .../get_maximumconcurrencylevel/_index.md | 28 +++++ .../taskstatus/_index.md | 35 ++++++ .../system.threading.tasks/whenall/_index.md | 72 +++++++++++ english/cpp/system.threading/_index.md | 5 +- .../system.threading/apartmentstate/_index.md | 2 +- .../cancellationtoken/_index.md | 38 ++++++ .../cancellationtoken/_index.md | 27 +++++ .../get_canbecanceled/_index.md | 33 +++++ .../get_iscancellationrequested/_index.md | 28 +++++ .../cancellationtoken/get_none/_index.md | 34 ++++++ .../cancellationtoken/register/_index.md | 39 ++++++ .../throwifcancellationrequested/_index.md | 29 +++++ .../cancellationtokenregistration/_index.md | 33 +++++ .../dispose/_index.md | 29 +++++ .../cancellationtokensource/_index.md | 37 ++++++ .../cancellationtokensource/cancel/_index.md | 29 +++++ .../cancellationtokensource/_index.md | 24 ++++ .../createlinkedtokensource/_index.md | 41 +++++++ .../cancellationtokensource/dispose/_index.md | 29 +++++ .../get_iscancellationrequested/_index.md | 28 +++++ .../get_token/_index.md | 29 +++++ .../system.threading/eventresetmode/_index.md | 2 +- .../eventwaithandle/_index.md | 2 +- .../system.threading/interlocked/_index.md | 2 +- .../manualresetevent/_index.md | 2 +- .../cpp/system.threading/monitor/_index.md | 2 +- english/cpp/system.threading/mutex/_index.md | 2 +- .../parameterizedthreadstart/_index.md | 2 +- .../cpp/system.threading/semaphore/_index.md | 2 +- .../sendorpostcallback/_index.md | 2 +- english/cpp/system.threading/thread/_index.md | 2 +- .../cpp/system.threading/threadpool/_index.md | 2 +- .../system.threading/threadpoolimpl/_index.md | 2 +- .../system.threading/threadstart/_index.md | 2 +- .../system.threading/threadstate/_index.md | 2 +- english/cpp/system.threading/timer/_index.md | 2 +- .../system.threading/timercallback/_index.md | 2 +- .../cpp/system.threading/timerqueue/_index.md | 2 +- .../system.threading/wait_handle_t/_index.md | 2 +- .../system.threading/waitcallback/_index.md | 2 +- .../cpp/system.threading/waithandle/_index.md | 2 +- english/cpp/system.timers/_index.md | 2 +- .../system.web.services.description/_index.md | 2 +- .../system.web.services.protocols/_index.md | 2 +- english/cpp/system.web.services/_index.md | 2 +- .../cpp/system.web.ui.webcontrols/_index.md | 2 +- english/cpp/system.web/_index.md | 2 +- english/cpp/system.windows.forms/_index.md | 2 +- english/cpp/system.xml.resolvers/_index.md | 2 +- english/cpp/system.xml.schema/_index.md | 2 +- .../cpp/system.xml.serialization/_index.md | 2 +- english/cpp/system.xml.xpath/_index.md | 2 +- english/cpp/system.xml.xsl.runtime/_index.md | 2 +- english/cpp/system.xml.xsl/_index.md | 2 +- english/cpp/system.xml/_index.md | 2 +- english/cpp/system/_index.md | 9 +- english/cpp/system/ascast/_index.md | 2 +- english/cpp/system/cast/_index.md | 2 +- english/cpp/system/cast_noexcept/_index.md | 2 +- english/cpp/system/castenumerableto/_index.md | 2 +- english/cpp/system/checkedcast/_index.md | 2 +- english/cpp/system/compare/_index.md | 2 +- .../cpp/system/const_pointer_cast/_index.md | 2 +- english/cpp/system/constcast/_index.md | 2 +- english/cpp/system/default/_index.md | 2 +- english/cpp/system/discard/_index.md | 2 +- english/cpp/system/dotryfinally/_index.md | 2 +- .../cpp/system/dynamic_pointer_cast/_index.md | 2 +- english/cpp/system/dynamiccast/_index.md | 2 +- .../cpp/system/dynamiccast_noexcept/_index.md | 2 +- english/cpp/system/dynamiccastarray/_index.md | 2 +- english/cpp/system/enumgetname/_index.md | 2 +- english/cpp/system/equals/_index.md | 2 +- .../system/equals_double,double_/_index.md | 2 +- .../cpp/system/equals_float,float_/_index.md | 2 +- english/cpp/system/explicitcast/_index.md | 2 +- english/cpp/system/forcestaticcast/_index.md | 2 +- .../cpp/system/foreachmembergvname/_index.md | 2 +- english/cpp/system/functionptr/_index.md | 22 ++++ english/cpp/system/get_pointer/_index.md | 2 +- english/cpp/system/gethashcode/_index.md | 2 +- english/cpp/system/iasyncresultptr/_index.md | 2 +- .../cpp/system/iformatproviderptr/_index.md | 2 +- .../cpp/system/is_parametrized_test/_index.md | 2 +- english/cpp/system/is_vp_test/_index.md | 2 +- english/cpp/system/isconstant/_index.md | 2 +- english/cpp/system/isdeclaration/_index.md | 2 +- .../system/isenummetainfodefined/_index.md | 2 +- english/cpp/system/isinfinity/_index.md | 2 +- english/cpp/system/isnan/_index.md | 2 +- .../cpp/system/isnegativeinfinity/_index.md | 2 +- english/cpp/system/ispattern/_index.md | 38 ------ .../cpp/system/ispositiveinfinity/_index.md | 2 +- english/cpp/system/iterateover/_index.md | 2 +- english/cpp/system/makearray/_index.md | 2 +- english/cpp/system/makeasync/_index.md | 37 ++++++ english/cpp/system/makeconstref_t/_index.md | 2 +- english/cpp/system/makeobject/_index.md | 2 +- english/cpp/system/makescopeguard/_index.md | 2 +- english/cpp/system/makesharedptr/_index.md | 2 +- english/cpp/system/maketuple/_index.md | 2 +- .../cpp/system/makeyieldenumerable/_index.md | 37 ++++++ .../cpp/system/makeyieldenumerator/_index.md | 37 ++++++ english/cpp/system/memberwiseclone/_index.md | 2 +- english/cpp/system/memorystreamptr/_index.md | 2 +- .../_index.md | 2 +- .../_index.md | 2 +- english/cpp/system/operator!=/_index.md | 2 +- english/cpp/system/operator+/_index.md | 2 +- english/cpp/system/operator-/_index.md | 2 +- english/cpp/system/operator/_index.md | 2 +- english/cpp/system/operator==/_index.md | 2 +- english/cpp/system/operator_/_index.md | 6 +- english/cpp/system/operator_=/_index.md | 4 +- english/cpp/system/operator__/_index.md | 4 +- english/cpp/system/predicate/_index.md | 2 +- english/cpp/system/printto/_index.md | 2 +- english/cpp/system/ref/_index.md | 2 +- english/cpp/system/rtaskptr/_index.md | 22 ++++ english/cpp/system/safeinvoke/_index.md | 2 +- english/cpp/system/setter_add_wrap/_index.md | 2 +- english/cpp/system/setter_and_wrap/_index.md | 2 +- .../system/setter_decrement_wrap/_index.md | 2 +- english/cpp/system/setter_div_wrap/_index.md | 2 +- english/cpp/system/setter_exor_wrap/_index.md | 2 +- .../system/setter_increment_wrap/_index.md | 2 +- english/cpp/system/setter_mod_wrap/_index.md | 2 +- english/cpp/system/setter_mul_wrap/_index.md | 2 +- english/cpp/system/setter_or_wrap/_index.md | 2 +- .../setter_post_decrement_wrap/_index.md | 2 +- .../setter_post_increment_wrap/_index.md | 2 +- english/cpp/system/setter_shl_wrap/_index.md | 2 +- english/cpp/system/setter_shr_wrap/_index.md | 2 +- english/cpp/system/setter_sub_wrap/_index.md | 2 +- english/cpp/system/setter_wrap/_index.md | 2 +- english/cpp/system/sharedptr/_index.md | 2 +- .../cpp/system/static_pointer_cast/_index.md | 2 +- english/cpp/system/staticcast/_index.md | 2 +- .../cpp/system/staticcast_noexcept/_index.md | 2 +- english/cpp/system/staticcastarray/_index.md | 2 +- english/cpp/system/streamptr/_index.md | 2 +- english/cpp/system/streamreaderptr/_index.md | 2 +- english/cpp/system/streamwriterptr/_index.md | 2 +- .../cpp/system/stringcomparerptr/_index.md | 2 +- english/cpp/system/taskptr/_index.md | 22 ++++ english/cpp/system/tietuple/_index.md | 2 +- english/cpp/system/timezoneinfoptr/_index.md | 2 +- english/cpp/system/timezoneptr/_index.md | 2 +- 821 files changed, 6093 insertions(+), 3333 deletions(-) delete mode 100644 english/cpp/aspose.pdf.dataeditor/cospdfdictionary/settemplateweakptr/_index.md delete mode 100644 english/cpp/aspose.pdf.facades/pdfxmpmetadata/settemplateweakptr/_index.md create mode 100644 english/cpp/aspose.pdf.flow/_index.md create mode 100644 english/cpp/aspose.pdf.flow/istructurerecognitionvisitor/_index.md create mode 100644 english/cpp/aspose.pdf.flow/istructurerecognitionvisitor/enddocument/_index.md create mode 100644 english/cpp/aspose.pdf.flow/istructurerecognitionvisitor/startdocument/_index.md create mode 100644 english/cpp/aspose.pdf.flow/istructurerecognitionvisitor/visitparagraph/_index.md create mode 100644 english/cpp/aspose.pdf.flow/istructurerecognitionvisitor/visitsectionend/_index.md create mode 100644 english/cpp/aspose.pdf.flow/istructurerecognitionvisitor/visittable/_index.md create mode 100644 english/cpp/aspose.pdf.flow/structurerecognitionvisitor/_index.md create mode 100644 english/cpp/aspose.pdf.flow/structurerecognitionvisitor/enddocument/_index.md create mode 100644 english/cpp/aspose.pdf.flow/structurerecognitionvisitor/recognize/_index.md create mode 100644 english/cpp/aspose.pdf.flow/structurerecognitionvisitor/startdocument/_index.md create mode 100644 english/cpp/aspose.pdf.flow/structurerecognitionvisitor/visitparagraph/_index.md create mode 100644 english/cpp/aspose.pdf.flow/structurerecognitionvisitor/visitsectionend/_index.md create mode 100644 english/cpp/aspose.pdf.flow/structurerecognitionvisitor/visittable/_index.md delete mode 100644 english/cpp/aspose.pdf.forms/field/settemplateweakptr/_index.md delete mode 100644 english/cpp/aspose.pdf.logicalstructure/mcrelement/get_content/_index.md delete mode 100644 english/cpp/aspose.pdf.logicalstructure/mcrelement/get_imagesrc/_index.md rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/_index.md (97%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/compressoptions/_index.md (66%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/compressoptions/compressoptions/_index.md (59%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/conversionmode/_index.md (66%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/datatype/_index.md (69%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/decryptionoptions/_index.md (71%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/decryptionoptions/decryptionoptions/_index.md (67%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/decryptionoptions/get_ownerpassword/_index.md (55%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/decryptionoptions/set_ownerpassword/_index.md (55%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/docconverter/_index.md (70%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/docconverter/dispose/_index.md (50%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/docconverter/process/_index.md (74%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/encryptionoptions/_index.md (85%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/encryptionoptions/encryptionoptions/_index.md (79%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/encryptionoptions/get_cryptoalgorithm/_index.md (63%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/encryptionoptions/get_documentprivilege/_index.md (68%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/encryptionoptions/get_ownerpassword/_index.md (55%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/encryptionoptions/get_userpassword/_index.md (54%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/encryptionoptions/set_cryptoalgorithm/_index.md (64%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/encryptionoptions/set_documentprivilege/_index.md (68%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/encryptionoptions/set_ownerpassword/_index.md (55%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/encryptionoptions/set_userpassword/_index.md (54%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/filedatasource/_index.md (71%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/filedatasource/filedatasource/_index.md (64%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/filedatasource/get_datatype/_index.md (55%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/filedatasource/get_path/_index.md (57%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/fileresult/_index.md (76%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/fileresult/get_data/_index.md (59%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/fileresult/get_isfile/_index.md (58%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/fileresult/get_isstream/_index.md (58%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/fileresult/get_isstring/_index.md (57%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/fileresult/tofile/_index.md (61%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/fileresult/tostream/_index.md (65%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/filesavetarget/_index.md (69%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/filesavetarget/filesavetarget/_index.md (64%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/filesavetarget/get_path/_index.md (60%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/filesavetarget/get_savetarget/_index.md (59%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formcheckboxfieldcreateoptions/_index.md (79%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formcheckboxfieldcreateoptions/formcheckboxfieldcreateoptions/_index.md (77%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formcheckboxfieldcreateoptions/get_checked/_index.md (65%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formcheckboxfieldcreateoptions/get_style/_index.md (67%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formcheckboxfieldcreateoptions/set_checked/_index.md (65%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formcheckboxfieldcreateoptions/set_style/_index.md (67%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formcheckboxfieldsetoptions/_index.md (77%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formcheckboxfieldsetoptions/get_checked/_index.md (64%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formcheckboxfieldsetoptions/get_style/_index.md (66%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formcheckboxfieldsetoptions/set_checked/_index.md (64%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formcheckboxfieldsetoptions/set_style/_index.md (66%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formcomboboxfieldcreateoptions/_index.md (83%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formcomboboxfieldcreateoptions/formcomboboxfieldcreateoptions/_index.md (77%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formcomboboxfieldcreateoptions/get_editable/_index.md (66%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formcomboboxfieldcreateoptions/get_options/_index.md (70%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formcomboboxfieldcreateoptions/get_selected/_index.md (65%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formcomboboxfieldcreateoptions/set_editable/_index.md (66%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formcomboboxfieldcreateoptions/set_options/_index.md (70%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formcomboboxfieldcreateoptions/set_selected/_index.md (65%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formcomboboxfieldsetoptions/_index.md (82%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formcomboboxfieldsetoptions/get_editable/_index.md (64%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formcomboboxfieldsetoptions/get_options/_index.md (69%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formcomboboxfieldsetoptions/get_selected/_index.md (64%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formcomboboxfieldsetoptions/set_editable/_index.md (64%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formcomboboxfieldsetoptions/set_options/_index.md (69%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formcomboboxfieldsetoptions/set_selected/_index.md (64%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formeditor/_index.md (64%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formeditor/process/_index.md (74%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formeditoraddoptions/_index.md (70%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formeditoraddoptions/formeditoraddoptions/_index.md (77%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formeditoroptions/_index.md (55%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formeditorremoveoptions/_index.md (61%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formeditorsetoptions/_index.md (70%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formeditorsetoptions/formeditorsetoptions/_index.md (79%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formexporter/_index.md (64%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formexporter/process/_index.md (74%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formexporteroptions/_index.md (55%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formexportervaluestocsvoptions/_index.md (70%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formexportervaluestocsvoptions/formexportervaluestocsvoptions/_index.md (78%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldcreateoptions/_index.md (55%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldoptions/_index.md (96%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldoptions/get_alternatename/_index.md (63%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldoptions/get_color/_index.md (61%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldoptions/get_contents/_index.md (62%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldoptions/get_defaultappearance/_index.md (69%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldoptions/get_exportable/_index.md (63%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldoptions/get_fitintorectangle/_index.md (65%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldoptions/get_flags/_index.md (61%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldoptions/get_issharedfield/_index.md (64%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldoptions/get_mappingname/_index.md (62%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldoptions/get_maxfontsize/_index.md (63%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldoptions/get_minfontsize/_index.md (63%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldoptions/get_name/_index.md (61%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldoptions/get_partialname/_index.md (63%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldoptions/get_readonly/_index.md (63%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldoptions/get_required/_index.md (63%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldoptions/get_texthorizontalalignment/_index.md (69%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldoptions/get_updateappearanceonconvert/_index.md (68%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldoptions/get_usefontsubset/_index.md (64%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldoptions/get_value/_index.md (61%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldoptions/set_alternatename/_index.md (63%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldoptions/set_color/_index.md (66%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldoptions/set_contents/_index.md (62%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldoptions/set_defaultappearance/_index.md (69%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldoptions/set_exportable/_index.md (63%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldoptions/set_fitintorectangle/_index.md (65%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldoptions/set_flags/_index.md (66%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldoptions/set_issharedfield/_index.md (64%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldoptions/set_mappingname/_index.md (63%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldoptions/set_maxfontsize/_index.md (63%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldoptions/set_minfontsize/_index.md (63%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldoptions/set_name/_index.md (61%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldoptions/set_partialname/_index.md (63%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldoptions/set_readonly/_index.md (63%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldoptions/set_required/_index.md (63%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldoptions/set_texthorizontalalignment/_index.md (69%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldoptions/set_updateappearanceonconvert/_index.md (68%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldoptions/set_usefontsubset/_index.md (64%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldoptions/set_value/_index.md (61%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldsetoptions/_index.md (69%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldsetoptions/get_rect/_index.md (62%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formfieldsetoptions/set_rect/_index.md (61%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formflattenallfieldsoptions/_index.md (70%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formflattenallfieldsoptions/formflattenallfieldsoptions/_index.md (64%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formflattener/_index.md (64%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formflattener/process/_index.md (74%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formflatteneroptions/_index.md (62%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formflattenselectedfieldsoptions/_index.md (68%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formflattenselectedfieldsoptions/formflattenselectedfieldsoptions/_index.md (72%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formoptions/_index.md (69%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formoptions/addinput/_index.md (67%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formoptions/addoutput/_index.md (68%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formoptions/get_inputs/_index.md (64%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formoptions/get_outputs/_index.md (66%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formremoveallfieldsoptions/_index.md (68%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formremoveallfieldsoptions/formremoveallfieldsoptions/_index.md (63%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formremoveselectedfieldsoptions/_index.md (67%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formremoveselectedfieldsoptions/formremoveselectedfieldsoptions/_index.md (72%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formtextboxfieldcreateoptions/_index.md (85%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formtextboxfieldcreateoptions/formtextboxfieldcreateoptions/_index.md (77%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formtextboxfieldcreateoptions/get_forcecombs/_index.md (66%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formtextboxfieldcreateoptions/get_maxlen/_index.md (64%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formtextboxfieldcreateoptions/get_multiline/_index.md (66%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formtextboxfieldcreateoptions/get_spellcheck/_index.md (66%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formtextboxfieldcreateoptions/set_forcecombs/_index.md (66%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formtextboxfieldcreateoptions/set_maxlen/_index.md (65%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formtextboxfieldcreateoptions/set_multiline/_index.md (66%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formtextboxfieldcreateoptions/set_spellcheck/_index.md (66%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formtextboxfieldsetoptions/_index.md (84%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formtextboxfieldsetoptions/get_forcecombs/_index.md (64%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formtextboxfieldsetoptions/get_maxlen/_index.md (63%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formtextboxfieldsetoptions/get_multiline/_index.md (64%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formtextboxfieldsetoptions/get_spellcheck/_index.md (64%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formtextboxfieldsetoptions/set_forcecombs/_index.md (65%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formtextboxfieldsetoptions/set_maxlen/_index.md (63%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formtextboxfieldsetoptions/set_multiline/_index.md (64%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/formtextboxfieldsetoptions/set_spellcheck/_index.md (65%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/html/_index.md (70%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/html/dispose/_index.md (50%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/html/process/_index.md (73%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/htmltopdfoptions/_index.md (84%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/htmltopdfoptions/get_basepath/_index.md (55%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/htmltopdfoptions/get_htmlmediatype/_index.md (60%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/htmltopdfoptions/get_isrendertosinglepage/_index.md (57%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/htmltopdfoptions/get_operationname/_index.md (56%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/htmltopdfoptions/get_pageinfo/_index.md (53%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/htmltopdfoptions/get_pagelayoutoption/_index.md (58%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/htmltopdfoptions/htmltopdfoptions/_index.md (57%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/htmltopdfoptions/set_basepath/_index.md (56%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/htmltopdfoptions/set_htmlmediatype/_index.md (60%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/htmltopdfoptions/set_isrendertosinglepage/_index.md (57%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/htmltopdfoptions/set_pageinfo/_index.md (59%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/htmltopdfoptions/set_pagelayoutoption/_index.md (58%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/idatacontainer/_index.md (78%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/idatacontainer/addinput/_index.md (64%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/idatacontainer/get_inputs/_index.md (64%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/idatasource/_index.md (74%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/idatasource/get_datatype/_index.md (56%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/imageextractor/_index.md (58%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/imageextractoroptions/_index.md (72%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/imageextractoroptions/get_operationname/_index.md (58%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/imageextractoroptions/imageextractoroptions/_index.md (60%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/ioperationresult/_index.md (82%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/ioperationresult/get_data/_index.md (59%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/ioperationresult/get_isfile/_index.md (59%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/ioperationresult/get_isstream/_index.md (59%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/ioperationresult/get_isstring/_index.md (58%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/ioperationresult/tofile/_index.md (61%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/ioperationresult/tostream/_index.md (61%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/iplugin/_index.md (75%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/iplugin/process/_index.md (73%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/ipluginoptions/_index.md (70%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/isaveinstruction/_index.md (78%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/isaveinstruction/addoutput/_index.md (66%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/isaveinstruction/get_outputs/_index.md (68%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/isavetarget/_index.md (75%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/isavetarget/get_savetarget/_index.md (59%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/jpeg/_index.md (61%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/jpeg/jpeg/_index.md (54%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/jpegoptions/_index.md (74%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/jpegoptions/get_operationname/_index.md (55%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/jpegoptions/get_quality/_index.md (51%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/jpegoptions/jpegoptions/_index.md (56%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/jpegoptions/set_quality/_index.md (51%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/mergeoptions/_index.md (65%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/mergeoptions/mergeoptions/_index.md (58%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/merger/_index.md (64%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/merger/process/_index.md (73%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/objectresult/_index.md (80%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/objectresult/get_data/_index.md (59%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/objectresult/get_isfile/_index.md (58%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/objectresult/get_isobject/_index.md (57%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/objectresult/get_isstream/_index.md (59%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/objectresult/get_isstring/_index.md (57%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/objectresult/get_text/_index.md (55%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/objectresult/tofile/_index.md (61%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/objectresult/tostream/_index.md (65%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/objectresult/tostring/_index.md (62%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/ofd/_index.md (70%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/ofd/dispose/_index.md (50%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/ofd/process/_index.md (73%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/ofdtopdfoptions/_index.md (75%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/ofdtopdfoptions/get_ofdloadoptions/_index.md (63%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/ofdtopdfoptions/get_operationname/_index.md (56%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/ofdtopdfoptions/ofdtopdfoptions/_index.md (57%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/ofdtopdfoptions/set_ofdloadoptions/_index.md (62%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/optimizeoptions/_index.md (67%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/optimizeoptions/optimizeoptions/_index.md (74%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/optimizer/_index.md (64%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/optimizer/process/_index.md (73%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/organizerbaseoptions/_index.md (76%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/organizerbaseoptions/addinput/_index.md (67%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/organizerbaseoptions/addoutput/_index.md (69%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/organizerbaseoptions/get_closeinputstreams/_index.md (58%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/organizerbaseoptions/get_closeoutputstreams/_index.md (58%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/organizerbaseoptions/get_inputs/_index.md (65%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/organizerbaseoptions/get_outputs/_index.md (67%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/organizerbaseoptions/set_closeinputstreams/_index.md (58%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/organizerbaseoptions/set_closeoutputstreams/_index.md (58%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfaconverter/_index.md (70%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfaconverter/process/_index.md (76%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfaconvertoptions/_index.md (71%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfaconvertoptions/addoutput/_index.md (66%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfaconvertoptions/get_outputs/_index.md (69%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfaconvertoptions/pdfaconvertoptions/_index.md (53%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfaoptionsbase/_index.md (93%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfaoptionsbase/addinput/_index.md (64%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfaoptionsbase/get_aligntext/_index.md (74%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfaoptionsbase/get_erroraction/_index.md (68%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfaoptionsbase/get_excludefontsstrategy/_index.md (78%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfaoptionsbase/get_fontembeddingoptions/_index.md (74%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfaoptionsbase/get_iccprofilefilename/_index.md (69%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfaoptionsbase/get_inputs/_index.md (64%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfaoptionsbase/get_islowmemorymode/_index.md (64%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfaoptionsbase/get_logoutputsource/_index.md (63%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfaoptionsbase/get_nonspecificationflags/_index.md (68%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfaoptionsbase/get_optimizefilesize/_index.md (69%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfaoptionsbase/get_pdfaversion/_index.md (77%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfaoptionsbase/get_puasymbolsprocessingstrategy/_index.md (73%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfaoptionsbase/get_softmaskaction/_index.md (69%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfaoptionsbase/get_symbolicfontencodingstrategy/_index.md (75%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfaoptionsbase/get_unicodeprocessingrules/_index.md (74%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfaoptionsbase/pdfaoptionsbase/_index.md (53%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfaoptionsbase/set_aligntext/_index.md (74%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfaoptionsbase/set_erroraction/_index.md (68%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfaoptionsbase/set_excludefontsstrategy/_index.md (81%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfaoptionsbase/set_iccprofilefilename/_index.md (69%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfaoptionsbase/set_islowmemorymode/_index.md (64%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfaoptionsbase/set_logoutputsource/_index.md (63%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfaoptionsbase/set_optimizefilesize/_index.md (70%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfaoptionsbase/set_pdfaversion/_index.md (77%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfaoptionsbase/set_puasymbolsprocessingstrategy/_index.md (78%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfaoptionsbase/set_softmaskaction/_index.md (69%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfaoptionsbase/set_symbolicfontencodingstrategy/_index.md (75%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfaoptionsbase/set_unicodeprocessingrules/_index.md (74%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfastandardversion/_index.md (82%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfavalidateoptions/_index.md (62%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfavalidationresult/_index.md (64%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfconverteroptions/_index.md (72%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfconverteroptions/addinput/_index.md (67%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfconverteroptions/addoutput/_index.md (69%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfconverteroptions/get_inputs/_index.md (66%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfconverteroptions/get_operationname/_index.md (56%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfconverteroptions/get_outputs/_index.md (66%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfextractor/_index.md (78%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfextractor/dispose/_index.md (58%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfextractor/process/_index.md (74%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfextractoroptions/_index.md (76%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfextractoroptions/addinput/_index.md (68%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfextractoroptions/get_inputs/_index.md (66%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfextractoroptions/get_operationname/_index.md (56%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfgeneratoroptions/_index.md (69%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfgeneratoroptions/addinput/_index.md (67%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfgeneratoroptions/addoutput/_index.md (69%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfgeneratoroptions/get_inputs/_index.md (65%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdfgeneratoroptions/get_outputs/_index.md (66%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdftodocoptions/_index.md (63%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdftodocoptions/get_conversionmode/_index.md (77%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdftodocoptions/get_operationname/_index.md (55%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdftodocoptions/get_saveformat/_index.md (56%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdftodocoptions/pdftodocoptions/_index.md (55%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdftodocoptions/set_conversionmode/_index.md (74%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdftodocoptions/set_saveformat/_index.md (52%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdftohtmloptions/_index.md (77%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdftohtmloptions/get_operationname/_index.md (56%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdftohtmloptions/get_outputdatatype/_index.md (56%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdftohtmloptions/pdftohtmloptions/_index.md (68%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdftohtmloptions/savedatatype/_index.md (71%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdftoimage/_index.md (73%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdftoimage/dispose/_index.md (57%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdftoimage/process/_index.md (73%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdftoimageoptions/_index.md (82%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdftoimageoptions/addinput/_index.md (67%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdftoimageoptions/addoutput/_index.md (71%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdftoimageoptions/get_conversionmode/_index.md (58%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdftoimageoptions/get_inputs/_index.md (65%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdftoimageoptions/get_operationname/_index.md (56%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdftoimageoptions/get_outputresolution/_index.md (57%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdftoimageoptions/get_outputs/_index.md (69%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdftoimageoptions/get_pagelist/_index.md (62%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdftoimageoptions/imageconversionmode/_index.md (72%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdftoimageoptions/set_outputresolution/_index.md (57%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdftoimageoptions/set_pagelist/_index.md (62%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdftoxlsoptions/_index.md (86%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdftoxlsoptions/excelformat/_index.md (74%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdftoxlsoptions/get_format/_index.md (52%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdftoxlsoptions/get_insertblankcolumnatfirst/_index.md (67%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdftoxlsoptions/get_minimizethenumberofworksheets/_index.md (69%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdftoxlsoptions/get_operationname/_index.md (55%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdftoxlsoptions/pdftoxlsoptions/_index.md (59%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdftoxlsoptions/set_format/_index.md (53%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdftoxlsoptions/set_insertblankcolumnatfirst/_index.md (67%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pdftoxlsoptions/set_minimizethenumberofworksheets/_index.md (69%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/png/_index.md (61%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/png/png/_index.md (54%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pngoptions/_index.md (69%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pngoptions/get_operationname/_index.md (55%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/pngoptions/pngoptions/_index.md (56%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/resizeoptions/_index.md (71%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/resizeoptions/get_pagesize/_index.md (52%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/resizeoptions/resizeoptions/_index.md (59%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/resizeoptions/set_pagesize/_index.md (58%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/resultcontainer/_index.md (73%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/resultcontainer/get_resultcollection/_index.md (66%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/rotateoptions/_index.md (71%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/rotateoptions/get_rotation/_index.md (54%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/rotateoptions/rotateoptions/_index.md (59%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/rotateoptions/set_rotation/_index.md (54%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/saveformat/_index.md (69%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/security/_index.md (64%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/security/process/_index.md (73%) create mode 100644 english/cpp/aspose.pdf.lowcode/selectfield/_index.md rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/signature/_index.md (64%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/signature/process/_index.md (73%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/signoptions/_index.md (86%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/signoptions/get_contact/_index.md (53%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/signoptions/get_location/_index.md (53%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/signoptions/get_name/_index.md (58%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/signoptions/get_pagenumber/_index.md (52%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/signoptions/get_reason/_index.md (53%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/signoptions/get_rectangle/_index.md (53%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/signoptions/get_visible/_index.md (50%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/signoptions/set_contact/_index.md (53%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/signoptions/set_location/_index.md (54%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/signoptions/set_name/_index.md (58%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/signoptions/set_pagenumber/_index.md (53%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/signoptions/set_reason/_index.md (53%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/signoptions/set_rectangle/_index.md (58%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/signoptions/set_visible/_index.md (50%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/signoptions/signoptions/_index.md (75%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/splitoptions/_index.md (65%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/splitoptions/splitoptions/_index.md (58%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/splitter/_index.md (64%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/splitter/process/_index.md (73%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/streamdatasource/_index.md (72%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/streamdatasource/get_data/_index.md (60%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/streamdatasource/get_datatype/_index.md (55%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/streamdatasource/streamdatasource/_index.md (68%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/streamresult/_index.md (76%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/streamresult/get_data/_index.md (59%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/streamresult/get_isfile/_index.md (58%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/streamresult/get_isstream/_index.md (59%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/streamresult/get_isstring/_index.md (57%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/streamresult/tofile/_index.md (61%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/streamresult/tostream/_index.md (65%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/streamsavetarget/_index.md (69%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/streamsavetarget/get_data/_index.md (62%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/streamsavetarget/get_savetarget/_index.md (59%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/streamsavetarget/streamsavetarget/_index.md (66%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/stringresult/_index.md (79%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/stringresult/get_data/_index.md (59%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/stringresult/get_isfile/_index.md (58%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/stringresult/get_isstream/_index.md (59%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/stringresult/get_isstring/_index.md (57%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/stringresult/get_text/_index.md (55%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/stringresult/tofile/_index.md (61%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/stringresult/tostream/_index.md (65%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/stringresult/tostring/_index.md (62%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tablebuilder/_index.md (80%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tablebuilder/addrow/_index.md (61%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tablebuilder/addtable/_index.md (59%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tablebuilder/insertpageafter/_index.md (67%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tablebuilder/insertpagebefore/_index.md (68%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tablebuilder/to_tableoptions/_index.md (71%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tablecellbuilder/_index.md (66%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tablecellbuilder/addcell/_index.md (59%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tablecellbuilder/addparagraph/_index.md (71%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tablegenerator/_index.md (72%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tablegenerator/dispose/_index.md (57%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tablegenerator/process/_index.md (73%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tableoptions/_index.md (76%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tableoptions/addtable/_index.md (60%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tableoptions/create/_index.md (60%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tableoptions/insertpageafter/_index.md (66%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tableoptions/insertpagebefore/_index.md (66%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tableoptions/tableoptions/_index.md (58%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tablerowbuilder/_index.md (63%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tablerowbuilder/addcell/_index.md (62%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tablerowbuilder/addrow/_index.md (59%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/textextractor/_index.md (58%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/textextractoroptions/_index.md (83%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/textextractoroptions/get_formattingmode/_index.md (59%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/textextractoroptions/get_operationname/_index.md (58%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/textextractoroptions/textextractoroptions/_index.md (72%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/textextractoroptions/textformattingmode/_index.md (79%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tiff/_index.md (61%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tiff/tiff/_index.md (54%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tiffoptions/_index.md (89%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tiffoptions/get_brightness/_index.md (73%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tiffoptions/get_compression/_index.md (61%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tiffoptions/get_coordinatetype/_index.md (63%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tiffoptions/get_depth/_index.md (57%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tiffoptions/get_operationname/_index.md (55%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tiffoptions/get_saveasmultipagetiff/_index.md (58%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tiffoptions/get_shape/_index.md (58%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tiffoptions/get_skipblankpages/_index.md (60%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tiffoptions/set_brightness/_index.md (73%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tiffoptions/set_compression/_index.md (61%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tiffoptions/set_coordinatetype/_index.md (63%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tiffoptions/set_depth/_index.md (58%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tiffoptions/set_saveasmultipagetiff/_index.md (59%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tiffoptions/set_shape/_index.md (59%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tiffoptions/set_skipblankpages/_index.md (60%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tiffoptions/tiffoptions/_index.md (56%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tocgenerator/_index.md (72%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tocgenerator/dispose/_index.md (57%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tocgenerator/process/_index.md (73%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tocoptions/_index.md (68%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/tocoptions/tocoptions/_index.md (58%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/xlsconverter/_index.md (70%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/xlsconverter/dispose/_index.md (50%) rename english/cpp/{aspose.pdf.plugins => aspose.pdf.lowcode}/xlsconverter/process/_index.md (73%) delete mode 100644 english/cpp/aspose.pdf.optimization/optimizationoptions/get_linkduplcatestreams/_index.md delete mode 100644 english/cpp/aspose.pdf.optimization/optimizationoptions/get_linkduplicatestreamsscanlevel/_index.md delete mode 100644 english/cpp/aspose.pdf.optimization/optimizationoptions/set_linkduplcatestreams/_index.md delete mode 100644 english/cpp/aspose.pdf.optimization/optimizationoptions/set_linkduplicatestreamsscanlevel/_index.md delete mode 100644 english/cpp/aspose.pdf.pdftomarkdown/_index.md delete mode 100644 english/cpp/aspose.pdf.pdftomarkdown/emphasisstyle/_index.md delete mode 100644 english/cpp/aspose.pdf.pdftomarkdown/headinglevels/_index.md delete mode 100644 english/cpp/aspose.pdf.pdftomarkdown/headinglevels/addlevels/_index.md delete mode 100644 english/cpp/aspose.pdf.pdftomarkdown/headinglevels/get_alllevels/_index.md delete mode 100644 english/cpp/aspose.pdf.pdftomarkdown/headinglevels/headinglevels/_index.md delete mode 100644 english/cpp/aspose.pdf.pdftomarkdown/headingrecognitionstrategy/_index.md delete mode 100644 english/cpp/aspose.pdf.pdftomarkdown/headingstyle/_index.md delete mode 100644 english/cpp/aspose.pdf.pdftomarkdown/linebreakstyle/_index.md delete mode 100644 english/cpp/aspose.pdf.plugins/selectfield/_index.md delete mode 100644 english/cpp/aspose.pdf.text/onsegmentchangedeventargs/get_initialsegmenttextlength/_index.md delete mode 100644 english/cpp/aspose.pdf.text/onsegmentchangedeventargs/get_segmentafter/_index.md delete mode 100644 english/cpp/aspose.pdf.text/onsegmentchangedeventargs/get_segmentchanged/_index.md delete mode 100644 english/cpp/aspose.pdf.text/onsegmentchangedeventargs/onsegmentchangedeventargs/_index.md create mode 100644 english/cpp/aspose.pdf/document/mergeoptions/get_concatenationpacketsize/_index.md create mode 100644 english/cpp/aspose.pdf/document/mergeoptions/get_usediskbuffer/_index.md create mode 100644 english/cpp/aspose.pdf/document/mergeoptions/set_concatenationpacketsize/_index.md create mode 100644 english/cpp/aspose.pdf/document/mergeoptions/set_usediskbuffer/_index.md delete mode 100644 english/cpp/aspose.pdf/pagecollectionextension/_index.md delete mode 100644 english/cpp/aspose.pdf/pagecollectionextension/pagecollectionextension/_index.md delete mode 100644 english/cpp/aspose.pdf/pagecollectionextension/updatepagination/_index.md delete mode 100644 english/cpp/aspose.pdf/paragraphs/_anonymous_method_0/_index.md delete mode 100644 english/cpp/aspose.pdf/rectangle/empty/_index.md delete mode 100644 english/cpp/system.drawing/brush/clone/_index.md delete mode 100644 english/cpp/system.drawing/brush/dispose/_index.md create mode 100644 english/cpp/system.io/filestream/flushasync/_index.md create mode 100644 english/cpp/system.io/filestream/readasync/_index.md create mode 100644 english/cpp/system.io/filestream/writeasync/_index.md create mode 100644 english/cpp/system.io/stream/flushasync/_index.md create mode 100644 english/cpp/system.io/stream/readasync/_index.md create mode 100644 english/cpp/system.io/stream/writeasync/_index.md create mode 100644 english/cpp/system.runtime.compilerservices/configuredresulttaskawaitable/_index.md create mode 100644 english/cpp/system.runtime.compilerservices/configuredresulttaskawaitable/configuredresulttaskawaitable/_index.md create mode 100644 english/cpp/system.runtime.compilerservices/configuredresulttaskawaitable/getawaiter/_index.md create mode 100644 english/cpp/system.runtime.compilerservices/configuredtaskawaitable/_index.md create mode 100644 english/cpp/system.runtime.compilerservices/configuredtaskawaitable/configuredtaskawaitable/_index.md create mode 100644 english/cpp/system.runtime.compilerservices/configuredtaskawaitable/getawaiter/_index.md create mode 100644 english/cpp/system.runtime.compilerservices/resulttaskawaiter/_index.md create mode 100644 english/cpp/system.runtime.compilerservices/resulttaskawaiter/get_iscompleted/_index.md create mode 100644 english/cpp/system.runtime.compilerservices/resulttaskawaiter/getresult/_index.md create mode 100644 english/cpp/system.runtime.compilerservices/resulttaskawaiter/oncompleted/_index.md create mode 100644 english/cpp/system.runtime.compilerservices/resulttaskawaiter/resulttaskawaiter/_index.md create mode 100644 english/cpp/system.runtime.compilerservices/taskawaiter/_index.md create mode 100644 english/cpp/system.runtime.compilerservices/taskawaiter/get_iscompleted/_index.md create mode 100644 english/cpp/system.runtime.compilerservices/taskawaiter/getresult/_index.md create mode 100644 english/cpp/system.runtime.compilerservices/taskawaiter/oncompleted/_index.md create mode 100644 english/cpp/system.runtime.compilerservices/taskawaiter/taskawaiter/_index.md create mode 100644 english/cpp/system.threading.tasks/_index.md create mode 100644 english/cpp/system.threading.tasks/delay/_index.md create mode 100644 english/cpp/system.threading.tasks/dispatchcurrentcontext/_index.md create mode 100644 english/cpp/system.threading.tasks/fromexception/_index.md create mode 100644 english/cpp/system.threading.tasks/fromresult/_index.md create mode 100644 english/cpp/system.threading.tasks/resulttask/_index.md create mode 100644 english/cpp/system.threading.tasks/resulttask/configureawait/_index.md create mode 100644 english/cpp/system.threading.tasks/resulttask/continuewith/_index.md create mode 100644 english/cpp/system.threading.tasks/resulttask/get_result/_index.md create mode 100644 english/cpp/system.threading.tasks/resulttask/getawaiter/_index.md create mode 100644 english/cpp/system.threading.tasks/resulttask/resulttask/_index.md create mode 100644 english/cpp/system.threading.tasks/resulttask/set_result/_index.md create mode 100644 english/cpp/system.threading.tasks/run/_index.md create mode 100644 english/cpp/system.threading.tasks/task/_index.md create mode 100644 english/cpp/system.threading.tasks/task/activate/_index.md create mode 100644 english/cpp/system.threading.tasks/task/addcontinuation/_index.md create mode 100644 english/cpp/system.threading.tasks/task/complete/_index.md create mode 100644 english/cpp/system.threading.tasks/task/configureawait/_index.md create mode 100644 english/cpp/system.threading.tasks/task/continuewith/_index.md create mode 100644 english/cpp/system.threading.tasks/task/dispose/_index.md create mode 100644 english/cpp/system.threading.tasks/task/execute/_index.md create mode 100644 english/cpp/system.threading.tasks/task/functiont/_index.md create mode 100644 english/cpp/system.threading.tasks/task/get_asyncstate/_index.md create mode 100644 english/cpp/system.threading.tasks/task/get_completedtask/_index.md create mode 100644 english/cpp/system.threading.tasks/task/get_currentid/_index.md create mode 100644 english/cpp/system.threading.tasks/task/get_id/_index.md create mode 100644 english/cpp/system.threading.tasks/task/get_iscanceled/_index.md create mode 100644 english/cpp/system.threading.tasks/task/get_iscompleted/_index.md create mode 100644 english/cpp/system.threading.tasks/task/get_isfaulted/_index.md create mode 100644 english/cpp/system.threading.tasks/task/get_scheduler/_index.md create mode 100644 english/cpp/system.threading.tasks/task/get_status/_index.md create mode 100644 english/cpp/system.threading.tasks/task/getawaiter/_index.md create mode 100644 english/cpp/system.threading.tasks/task/runsynchronously/_index.md create mode 100644 english/cpp/system.threading.tasks/task/set_function/_index.md create mode 100644 english/cpp/system.threading.tasks/task/set_status/_index.md create mode 100644 english/cpp/system.threading.tasks/task/start/_index.md create mode 100644 english/cpp/system.threading.tasks/task/task/_index.md create mode 100644 english/cpp/system.threading.tasks/task/wait/_index.md create mode 100644 english/cpp/system.threading.tasks/task/~task/_index.md create mode 100644 english/cpp/system.threading.tasks/taskscheduler/_index.md create mode 100644 english/cpp/system.threading.tasks/taskscheduler/fromcurrentsynchronizationcontext/_index.md create mode 100644 english/cpp/system.threading.tasks/taskscheduler/get_current/_index.md create mode 100644 english/cpp/system.threading.tasks/taskscheduler/get_default/_index.md create mode 100644 english/cpp/system.threading.tasks/taskscheduler/get_id/_index.md create mode 100644 english/cpp/system.threading.tasks/taskscheduler/get_maximumconcurrencylevel/_index.md create mode 100644 english/cpp/system.threading.tasks/taskstatus/_index.md create mode 100644 english/cpp/system.threading.tasks/whenall/_index.md create mode 100644 english/cpp/system.threading/cancellationtoken/_index.md create mode 100644 english/cpp/system.threading/cancellationtoken/cancellationtoken/_index.md create mode 100644 english/cpp/system.threading/cancellationtoken/get_canbecanceled/_index.md create mode 100644 english/cpp/system.threading/cancellationtoken/get_iscancellationrequested/_index.md create mode 100644 english/cpp/system.threading/cancellationtoken/get_none/_index.md create mode 100644 english/cpp/system.threading/cancellationtoken/register/_index.md create mode 100644 english/cpp/system.threading/cancellationtoken/throwifcancellationrequested/_index.md create mode 100644 english/cpp/system.threading/cancellationtokenregistration/_index.md create mode 100644 english/cpp/system.threading/cancellationtokenregistration/dispose/_index.md create mode 100644 english/cpp/system.threading/cancellationtokensource/_index.md create mode 100644 english/cpp/system.threading/cancellationtokensource/cancel/_index.md create mode 100644 english/cpp/system.threading/cancellationtokensource/cancellationtokensource/_index.md create mode 100644 english/cpp/system.threading/cancellationtokensource/createlinkedtokensource/_index.md create mode 100644 english/cpp/system.threading/cancellationtokensource/dispose/_index.md create mode 100644 english/cpp/system.threading/cancellationtokensource/get_iscancellationrequested/_index.md create mode 100644 english/cpp/system.threading/cancellationtokensource/get_token/_index.md create mode 100644 english/cpp/system/functionptr/_index.md delete mode 100644 english/cpp/system/ispattern/_index.md create mode 100644 english/cpp/system/makeasync/_index.md create mode 100644 english/cpp/system/makeyieldenumerable/_index.md create mode 100644 english/cpp/system/makeyieldenumerator/_index.md create mode 100644 english/cpp/system/rtaskptr/_index.md create mode 100644 english/cpp/system/taskptr/_index.md diff --git a/english/cpp/_index.md b/english/cpp/_index.md index 1f2aed1088..6f74ba7eb9 100644 --- a/english/cpp/_index.md +++ b/english/cpp/_index.md @@ -22,14 +22,15 @@ is_root: true | [Aspose::Pdf::Devices](./aspose.pdf.devices/) | The **[Aspose.Pdf.Devices](./aspose.pdf.devices/)** namespace provides classes which are used for representing document as image(s) or a plain text. So document can be sent on to textual or various graphic devices which means we want to get it textual or graphic representation. | | [Aspose::Pdf::Drawing](./aspose.pdf.drawing/) | The **[Aspose.Pdf.Drawing](./aspose.pdf.drawing/)** namespace provides classes describing graphic primitives like arc, line, circle etc. Corresponding objects can be used for creating new documents. | | [Aspose::Pdf::Facades](./aspose.pdf.facades/) | The **[Aspose.Pdf.Facades](./aspose.pdf.facades/)** namespace provides classes originaly came from Aspose.Pdf.Kit. These classes are used for manipulating documents perfoming operations like concatenating, stamping, signing, annotating etc. but on the high level without access to a document's inner structure. | +| [Aspose::Pdf::Flow](./aspose.pdf.flow/) | | | [Aspose::Pdf::Forms](./aspose.pdf.forms/) | The **[Aspose.Pdf.Forms](./aspose.pdf.forms/)** namespace has classes which describes forms (standard, static, dynamic) and various types of fields like text box, list box, radio button etc. | | [Aspose::Pdf::GroupProcessor](./aspose.pdf.groupprocessor/) | | | [Aspose::Pdf::GroupProcessor::Creators](./aspose.pdf.groupprocessor.creators/) | | | [Aspose::Pdf::LogicalStructure](./aspose.pdf.logicalstructure/) | The **Aspose.Pdf.Tagged.LogicalStructure ** is a namespace for PDF Logical [Structure](./aspose.pdf.structure/) classes. | +| [Aspose::Pdf::LowCode](./aspose.pdf.lowcode/) | | | [Aspose::Pdf::Multithreading](./aspose.pdf.multithreading/) | The **[Aspose.Pdf.Multithreading](./aspose.pdf.multithreading/)** namespace provides classes that are meant to be used in multi-threaded scenarios. | | [Aspose::Pdf::Operators](./aspose.pdf.operators/) | The **[Aspose.Pdf.Operators](./aspose.pdf.operators/)** is a namespace for [Operator](./aspose.pdf/operator/) implementations. These classes describes operators used in PDF page contents. | | [Aspose::Pdf::Optimization](./aspose.pdf.optimization/) | The **[Aspose.Pdf.Optimization](./aspose.pdf.optimization/)** is a namespace for classes for managing of document optimization process. | -| [Aspose::Pdf::Plugins](./aspose.pdf.plugins/) | | | [Aspose::Pdf::Sanitization](./aspose.pdf.sanitization/) | The **[Aspose.Pdf.Sanitization](./aspose.pdf.sanitization/)** is a namespace for sanitization operations. | | [Aspose::Pdf::Security](./aspose.pdf.security/) | The **[Aspose.Pdf.Security](./aspose.pdf.security/)** namespace contains classes used for encryption and digital signing. | | [Aspose::Pdf::Security::Impl](./aspose.pdf.security.impl/) | | @@ -84,6 +85,7 @@ is_root: true | [System::Text](./system.text/) | | | [System::Text::RegularExpressions](./system.text.regularexpressions/) | | | [System::Threading](./system.threading/) | | +| [System::Threading::Tasks](./system.threading.tasks/) | | | [System::Timers](./system.timers/) | | | [System::Web](./system.web/) | | | [System::Web::Services](./system.web.services/) | | diff --git a/english/cpp/aspose.pdf.dataeditor/cospdfdictionary/settemplateweakptr/_index.md b/english/cpp/aspose.pdf.dataeditor/cospdfdictionary/settemplateweakptr/_index.md deleted file mode 100644 index 0cdb649ae1..0000000000 --- a/english/cpp/aspose.pdf.dataeditor/cospdfdictionary/settemplateweakptr/_index.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: Aspose::Pdf::DataEditor::CosPdfDictionary::SetTemplateWeakPtr method -linktitle: SetTemplateWeakPtr -second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::DataEditor::CosPdfDictionary::SetTemplateWeakPtr method. Set n''th template argument a weak pointer (rather than shared). Allows switching pointers in containers to weak mode in C++.' -type: docs -weight: 1600 -url: /cpp/aspose.pdf.dataeditor/cospdfdictionary/settemplateweakptr/ ---- -## CosPdfDictionary::SetTemplateWeakPtr method - - -Set n'th template argument a weak pointer (rather than shared). Allows switching pointers in containers to weak mode. - -```cpp -void Aspose::Pdf::DataEditor::CosPdfDictionary::SetTemplateWeakPtr(uint32_t argument) override -``` - - -| Parameter | Type | Description | -| --- | --- | --- | -| argument | uint32_t | Index of template argument to treat as weak poiner. | - -## See Also - -* Class [CosPdfDictionary](../) -* Namespace [Aspose::Pdf::DataEditor](../../) -* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/settemplateweakptr/_index.md b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/settemplateweakptr/_index.md deleted file mode 100644 index b162c8e428..0000000000 --- a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/settemplateweakptr/_index.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: Aspose::Pdf::Facades::PdfXmpMetadata::SetTemplateWeakPtr method -linktitle: SetTemplateWeakPtr -second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Facades::PdfXmpMetadata::SetTemplateWeakPtr method. Set n''th template argument a weak pointer (rather than shared). Allows switching pointers in containers to weak mode in C++.' -type: docs -weight: 2000 -url: /cpp/aspose.pdf.facades/pdfxmpmetadata/settemplateweakptr/ ---- -## PdfXmpMetadata::SetTemplateWeakPtr method - - -Set n'th template argument a weak pointer (rather than shared). Allows switching pointers in containers to weak mode. - -```cpp -void Aspose::Pdf::Facades::PdfXmpMetadata::SetTemplateWeakPtr(uint32_t argument) override -``` - - -| Parameter | Type | Description | -| --- | --- | --- | -| argument | uint32_t | Index of template argument to treat as weak poiner. | - -## See Also - -* Class [PdfXmpMetadata](../) -* Namespace [Aspose::Pdf::Facades](../../) -* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.flow/_index.md b/english/cpp/aspose.pdf.flow/_index.md new file mode 100644 index 0000000000..0190b14cdb --- /dev/null +++ b/english/cpp/aspose.pdf.flow/_index.md @@ -0,0 +1,18 @@ +--- +title: Aspose::Pdf::Flow namespace +linktitle: Aspose::Pdf::Flow +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Flow namespace in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf.flow/ +--- + + + +## Classes + +| Class | Description | +| --- | --- | +| [IStructureRecognitionVisitor](./istructurerecognitionvisitor/) | | +| [StructureRecognitionVisitor](./structurerecognitionvisitor/) | | diff --git a/english/cpp/aspose.pdf.flow/istructurerecognitionvisitor/_index.md b/english/cpp/aspose.pdf.flow/istructurerecognitionvisitor/_index.md new file mode 100644 index 0000000000..603db11205 --- /dev/null +++ b/english/cpp/aspose.pdf.flow/istructurerecognitionvisitor/_index.md @@ -0,0 +1,36 @@ +--- +title: Aspose::Pdf::Flow::IStructureRecognitionVisitor class +linktitle: IStructureRecognitionVisitor +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Flow::IStructureRecognitionVisitor class in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.flow/istructurerecognitionvisitor/ +--- +## IStructureRecognitionVisitor class + + + + +```cpp +class IStructureRecognitionVisitor : public virtual System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| virtual [EndDocument](./enddocument/)() | Signals the end of document processing. | +| virtual [StartDocument](./startdocument/)() | Signals the start of document processing. | +| virtual [VisitParagraph](./visitparagraph/)(System::SharedPtr\) | Visits a recognized paragraph in the document structure. | +| virtual [VisitSectionEnd](./visitsectionend/)(System::SharedPtr\) | Visits the end of a recognized section in the document. | +| virtual [VisitTable](./visittable/)(System::SharedPtr\) | Visits a recognized table in the document structure. | +## Remarks + + +Base interface for a custom document structure recognition visitor +## See Also + +* Class [Object](../../system/object/) +* Namespace [Aspose::Pdf::Flow](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.flow/istructurerecognitionvisitor/enddocument/_index.md b/english/cpp/aspose.pdf.flow/istructurerecognitionvisitor/enddocument/_index.md new file mode 100644 index 0000000000..b5f2937539 --- /dev/null +++ b/english/cpp/aspose.pdf.flow/istructurerecognitionvisitor/enddocument/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Flow::IStructureRecognitionVisitor::EndDocument method +linktitle: EndDocument +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Flow::IStructureRecognitionVisitor::EndDocument method. Signals the end of document processing in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.flow/istructurerecognitionvisitor/enddocument/ +--- +## IStructureRecognitionVisitor::EndDocument method + + +Signals the end of document processing. + +```cpp +virtual void Aspose::Pdf::Flow::IStructureRecognitionVisitor::EndDocument()=0 +``` + +## See Also + +* Class [IStructureRecognitionVisitor](../) +* Namespace [Aspose::Pdf::Flow](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.flow/istructurerecognitionvisitor/startdocument/_index.md b/english/cpp/aspose.pdf.flow/istructurerecognitionvisitor/startdocument/_index.md new file mode 100644 index 0000000000..ab459422be --- /dev/null +++ b/english/cpp/aspose.pdf.flow/istructurerecognitionvisitor/startdocument/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Flow::IStructureRecognitionVisitor::StartDocument method +linktitle: StartDocument +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Flow::IStructureRecognitionVisitor::StartDocument method. Signals the start of document processing in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.flow/istructurerecognitionvisitor/startdocument/ +--- +## IStructureRecognitionVisitor::StartDocument method + + +Signals the start of document processing. + +```cpp +virtual void Aspose::Pdf::Flow::IStructureRecognitionVisitor::StartDocument()=0 +``` + +## See Also + +* Class [IStructureRecognitionVisitor](../) +* Namespace [Aspose::Pdf::Flow](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.flow/istructurerecognitionvisitor/visitparagraph/_index.md b/english/cpp/aspose.pdf.flow/istructurerecognitionvisitor/visitparagraph/_index.md new file mode 100644 index 0000000000..66f7dd97f1 --- /dev/null +++ b/english/cpp/aspose.pdf.flow/istructurerecognitionvisitor/visitparagraph/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Flow::IStructureRecognitionVisitor::VisitParagraph method +linktitle: VisitParagraph +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Flow::IStructureRecognitionVisitor::VisitParagraph method. Visits a recognized paragraph in the document structure in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.flow/istructurerecognitionvisitor/visitparagraph/ +--- +## IStructureRecognitionVisitor::VisitParagraph method + + +Visits a recognized paragraph in the document structure. + +```cpp +virtual void Aspose::Pdf::Flow::IStructureRecognitionVisitor::VisitParagraph(System::SharedPtr paragraph)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| paragraph | System::SharedPtr\ | The paragraph element to process. | + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [BaseParagraph](../../../aspose.pdf/baseparagraph/) +* Class [IStructureRecognitionVisitor](../) +* Namespace [Aspose::Pdf::Flow](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.flow/istructurerecognitionvisitor/visitsectionend/_index.md b/english/cpp/aspose.pdf.flow/istructurerecognitionvisitor/visitsectionend/_index.md new file mode 100644 index 0000000000..b60ed669ee --- /dev/null +++ b/english/cpp/aspose.pdf.flow/istructurerecognitionvisitor/visitsectionend/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Flow::IStructureRecognitionVisitor::VisitSectionEnd method +linktitle: VisitSectionEnd +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Flow::IStructureRecognitionVisitor::VisitSectionEnd method. Visits the end of a recognized section in the document in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.flow/istructurerecognitionvisitor/visitsectionend/ +--- +## IStructureRecognitionVisitor::VisitSectionEnd method + + +Visits the end of a recognized section in the document. + +```cpp +virtual void Aspose::Pdf::Flow::IStructureRecognitionVisitor::VisitSectionEnd(System::SharedPtr marginInfo)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| marginInfo | System::SharedPtr\ | The margin information for the section. | + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [MarginInfo](../../../aspose.pdf/margininfo/) +* Class [IStructureRecognitionVisitor](../) +* Namespace [Aspose::Pdf::Flow](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.flow/istructurerecognitionvisitor/visittable/_index.md b/english/cpp/aspose.pdf.flow/istructurerecognitionvisitor/visittable/_index.md new file mode 100644 index 0000000000..35aae59190 --- /dev/null +++ b/english/cpp/aspose.pdf.flow/istructurerecognitionvisitor/visittable/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Flow::IStructureRecognitionVisitor::VisitTable method +linktitle: VisitTable +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Flow::IStructureRecognitionVisitor::VisitTable method. Visits a recognized table in the document structure in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.flow/istructurerecognitionvisitor/visittable/ +--- +## IStructureRecognitionVisitor::VisitTable method + + +Visits a recognized table in the document structure. + +```cpp +virtual void Aspose::Pdf::Flow::IStructureRecognitionVisitor::VisitTable(System::SharedPtr table)=0 +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| table | System::SharedPtr\ | The table element to process. | + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [Table](../../../aspose.pdf/table/) +* Class [IStructureRecognitionVisitor](../) +* Namespace [Aspose::Pdf::Flow](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.flow/structurerecognitionvisitor/_index.md b/english/cpp/aspose.pdf.flow/structurerecognitionvisitor/_index.md new file mode 100644 index 0000000000..5829a2c9db --- /dev/null +++ b/english/cpp/aspose.pdf.flow/structurerecognitionvisitor/_index.md @@ -0,0 +1,34 @@ +--- +title: Aspose::Pdf::Flow::StructureRecognitionVisitor class +linktitle: StructureRecognitionVisitor +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Aspose::Pdf::Flow::StructureRecognitionVisitor class in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.flow/structurerecognitionvisitor/ +--- +## StructureRecognitionVisitor class + + + + +```cpp +class StructureRecognitionVisitor : public Aspose::Pdf::Flow::IStructureRecognitionVisitor +``` + +## Methods + +| Method | Description | +| --- | --- | +| [EndDocument](./enddocument/)() override | Signals the end of document processing. | +| virtual [Recognize](./recognize/)(System::SharedPtr\) | | +| virtual [Recognize](./recognize/)(System::SharedPtr\) | | +| [StartDocument](./startdocument/)() override | Signals the start of document processing. | +| [VisitParagraph](./visitparagraph/)(System::SharedPtr\) override | Visits a recognized paragraph in the document structure. | +| [VisitSectionEnd](./visitsectionend/)(System::SharedPtr\) override | Visits the end of a recognized section in the document. | +| [VisitTable](./visittable/)(System::SharedPtr\) override | Visits a recognized table in the document structure. | +## See Also + +* Class [IStructureRecognitionVisitor](../istructurerecognitionvisitor/) +* Namespace [Aspose::Pdf::Flow](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.flow/structurerecognitionvisitor/enddocument/_index.md b/english/cpp/aspose.pdf.flow/structurerecognitionvisitor/enddocument/_index.md new file mode 100644 index 0000000000..ec983519b5 --- /dev/null +++ b/english/cpp/aspose.pdf.flow/structurerecognitionvisitor/enddocument/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Flow::StructureRecognitionVisitor::EndDocument method +linktitle: EndDocument +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Flow::StructureRecognitionVisitor::EndDocument method. Signals the end of document processing in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf.flow/structurerecognitionvisitor/enddocument/ +--- +## StructureRecognitionVisitor::EndDocument method + + +Signals the end of document processing. + +```cpp +void Aspose::Pdf::Flow::StructureRecognitionVisitor::EndDocument() override +``` + +## See Also + +* Class [StructureRecognitionVisitor](../) +* Namespace [Aspose::Pdf::Flow](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.flow/structurerecognitionvisitor/recognize/_index.md b/english/cpp/aspose.pdf.flow/structurerecognitionvisitor/recognize/_index.md new file mode 100644 index 0000000000..f743e3fdb7 --- /dev/null +++ b/english/cpp/aspose.pdf.flow/structurerecognitionvisitor/recognize/_index.md @@ -0,0 +1,41 @@ +--- +title: Aspose::Pdf::Flow::StructureRecognitionVisitor::Recognize method +linktitle: Recognize +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Recognize method of Aspose::Pdf::Flow::StructureRecognitionVisitor class in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf.flow/structurerecognitionvisitor/recognize/ +--- +## StructureRecognitionVisitor::Recognize(System::SharedPtr\) method + + + + +```cpp +virtual void Aspose::Pdf::Flow::StructureRecognitionVisitor::Recognize(System::SharedPtr document) +``` + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [Document](../../../aspose.pdf/document/) +* Class [StructureRecognitionVisitor](../) +* Namespace [Aspose::Pdf::Flow](../../) +* Library [Aspose.PDF for C++](../../../) +## StructureRecognitionVisitor::Recognize(System::SharedPtr\) method + + + + +```cpp +virtual void Aspose::Pdf::Flow::StructureRecognitionVisitor::Recognize(System::SharedPtr page) +``` + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [Page](../../../aspose.pdf/page/) +* Class [StructureRecognitionVisitor](../) +* Namespace [Aspose::Pdf::Flow](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.flow/structurerecognitionvisitor/startdocument/_index.md b/english/cpp/aspose.pdf.flow/structurerecognitionvisitor/startdocument/_index.md new file mode 100644 index 0000000000..68445c50b5 --- /dev/null +++ b/english/cpp/aspose.pdf.flow/structurerecognitionvisitor/startdocument/_index.md @@ -0,0 +1,23 @@ +--- +title: Aspose::Pdf::Flow::StructureRecognitionVisitor::StartDocument method +linktitle: StartDocument +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Flow::StructureRecognitionVisitor::StartDocument method. Signals the start of document processing in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf.flow/structurerecognitionvisitor/startdocument/ +--- +## StructureRecognitionVisitor::StartDocument method + + +Signals the start of document processing. + +```cpp +void Aspose::Pdf::Flow::StructureRecognitionVisitor::StartDocument() override +``` + +## See Also + +* Class [StructureRecognitionVisitor](../) +* Namespace [Aspose::Pdf::Flow](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.flow/structurerecognitionvisitor/visitparagraph/_index.md b/english/cpp/aspose.pdf.flow/structurerecognitionvisitor/visitparagraph/_index.md new file mode 100644 index 0000000000..c3e5d4890a --- /dev/null +++ b/english/cpp/aspose.pdf.flow/structurerecognitionvisitor/visitparagraph/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Flow::StructureRecognitionVisitor::VisitParagraph method +linktitle: VisitParagraph +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Flow::StructureRecognitionVisitor::VisitParagraph method. Visits a recognized paragraph in the document structure in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf.flow/structurerecognitionvisitor/visitparagraph/ +--- +## StructureRecognitionVisitor::VisitParagraph method + + +Visits a recognized paragraph in the document structure. + +```cpp +void Aspose::Pdf::Flow::StructureRecognitionVisitor::VisitParagraph(System::SharedPtr paragraph) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| paragraph | System::SharedPtr\ | The paragraph element to process. | + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [BaseParagraph](../../../aspose.pdf/baseparagraph/) +* Class [StructureRecognitionVisitor](../) +* Namespace [Aspose::Pdf::Flow](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.flow/structurerecognitionvisitor/visitsectionend/_index.md b/english/cpp/aspose.pdf.flow/structurerecognitionvisitor/visitsectionend/_index.md new file mode 100644 index 0000000000..26cc91acc6 --- /dev/null +++ b/english/cpp/aspose.pdf.flow/structurerecognitionvisitor/visitsectionend/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Flow::StructureRecognitionVisitor::VisitSectionEnd method +linktitle: VisitSectionEnd +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Flow::StructureRecognitionVisitor::VisitSectionEnd method. Visits the end of a recognized section in the document in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf.flow/structurerecognitionvisitor/visitsectionend/ +--- +## StructureRecognitionVisitor::VisitSectionEnd method + + +Visits the end of a recognized section in the document. + +```cpp +void Aspose::Pdf::Flow::StructureRecognitionVisitor::VisitSectionEnd(System::SharedPtr marginInfo) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| marginInfo | System::SharedPtr\ | The margin information for the section. | + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [MarginInfo](../../../aspose.pdf/margininfo/) +* Class [StructureRecognitionVisitor](../) +* Namespace [Aspose::Pdf::Flow](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.flow/structurerecognitionvisitor/visittable/_index.md b/english/cpp/aspose.pdf.flow/structurerecognitionvisitor/visittable/_index.md new file mode 100644 index 0000000000..fbdf992dd7 --- /dev/null +++ b/english/cpp/aspose.pdf.flow/structurerecognitionvisitor/visittable/_index.md @@ -0,0 +1,30 @@ +--- +title: Aspose::Pdf::Flow::StructureRecognitionVisitor::VisitTable method +linktitle: VisitTable +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Flow::StructureRecognitionVisitor::VisitTable method. Visits a recognized table in the document structure in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf.flow/structurerecognitionvisitor/visittable/ +--- +## StructureRecognitionVisitor::VisitTable method + + +Visits a recognized table in the document structure. + +```cpp +void Aspose::Pdf::Flow::StructureRecognitionVisitor::VisitTable(System::SharedPtr
table) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| table | System::SharedPtr\ | The table element to process. | + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [Table](../../../aspose.pdf/table/) +* Class [StructureRecognitionVisitor](../) +* Namespace [Aspose::Pdf::Flow](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.forms/_index.md b/english/cpp/aspose.pdf.forms/_index.md index 016aa2ef1c..8e1ff902e6 100644 --- a/english/cpp/aspose.pdf.forms/_index.md +++ b/english/cpp/aspose.pdf.forms/_index.md @@ -4,7 +4,7 @@ linktitle: Aspose::Pdf::Forms second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Forms namespace. The Aspose.Pdf.Forms namespace has classes which describes forms (standard, static, dynamic) and various types of fields like text box, list box, radio button etc in C++.' type: docs -weight: 900 +weight: 1000 url: /cpp/aspose.pdf.forms/ --- diff --git a/english/cpp/aspose.pdf.forms/field/settemplateweakptr/_index.md b/english/cpp/aspose.pdf.forms/field/settemplateweakptr/_index.md deleted file mode 100644 index 906cb5abde..0000000000 --- a/english/cpp/aspose.pdf.forms/field/settemplateweakptr/_index.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: Aspose::Pdf::Forms::Field::SetTemplateWeakPtr method -linktitle: SetTemplateWeakPtr -second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Forms::Field::SetTemplateWeakPtr method. Set n''th template argument a weak pointer (rather than shared). Allows switching pointers in containers to weak mode in C++.' -type: docs -weight: 3100 -url: /cpp/aspose.pdf.forms/field/settemplateweakptr/ ---- -## Field::SetTemplateWeakPtr method - - -Set n'th template argument a weak pointer (rather than shared). Allows switching pointers in containers to weak mode. - -```cpp -void Aspose::Pdf::Forms::Field::SetTemplateWeakPtr(uint32_t argument) override -``` - - -| Parameter | Type | Description | -| --- | --- | --- | -| argument | uint32_t | Index of template argument to treat as weak poiner. | - -## See Also - -* Class [Field](../) -* Namespace [Aspose::Pdf::Forms](../../) -* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.groupprocessor.creators/_index.md b/english/cpp/aspose.pdf.groupprocessor.creators/_index.md index c2fa4a0c63..34eb07d11d 100644 --- a/english/cpp/aspose.pdf.groupprocessor.creators/_index.md +++ b/english/cpp/aspose.pdf.groupprocessor.creators/_index.md @@ -4,7 +4,7 @@ linktitle: Aspose::Pdf::GroupProcessor::Creators second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::GroupProcessor::Creators namespace in C++.' type: docs -weight: 1100 +weight: 1200 url: /cpp/aspose.pdf.groupprocessor.creators/ --- diff --git a/english/cpp/aspose.pdf.groupprocessor/_index.md b/english/cpp/aspose.pdf.groupprocessor/_index.md index 8f555aa44b..7463454922 100644 --- a/english/cpp/aspose.pdf.groupprocessor/_index.md +++ b/english/cpp/aspose.pdf.groupprocessor/_index.md @@ -4,7 +4,7 @@ linktitle: Aspose::Pdf::GroupProcessor second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::GroupProcessor namespace in C++.' type: docs -weight: 1000 +weight: 1100 url: /cpp/aspose.pdf.groupprocessor/ --- diff --git a/english/cpp/aspose.pdf.logicalstructure/_index.md b/english/cpp/aspose.pdf.logicalstructure/_index.md index 56599b2938..f713e6080a 100644 --- a/english/cpp/aspose.pdf.logicalstructure/_index.md +++ b/english/cpp/aspose.pdf.logicalstructure/_index.md @@ -4,7 +4,7 @@ linktitle: Aspose::Pdf::LogicalStructure second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::LogicalStructure namespace. The Aspose.Pdf.Tagged.LogicalStructure is a namespace for PDF Logical Structure classes in C++.' type: docs -weight: 1200 +weight: 1300 url: /cpp/aspose.pdf.logicalstructure/ --- diff --git a/english/cpp/aspose.pdf.logicalstructure/mcrelement/get_content/_index.md b/english/cpp/aspose.pdf.logicalstructure/mcrelement/get_content/_index.md deleted file mode 100644 index 5a48d89489..0000000000 --- a/english/cpp/aspose.pdf.logicalstructure/mcrelement/get_content/_index.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -title: Aspose::Pdf::LogicalStructure::MCRElement::get_Content method -linktitle: get_Content -second_title: Aspose.PDF for C++ API Reference -description: 'How to use get_Content method of Aspose::Pdf::LogicalStructure::MCRElement class in C++.' -type: docs -weight: 100 -url: /cpp/aspose.pdf.logicalstructure/mcrelement/get_content/ ---- -## MCRElement::get_Content method - - - - -```cpp -System::String Aspose::Pdf::LogicalStructure::MCRElement::get_Content() const -``` - -## Remarks - - -Gets text content for marked-content reference element. - -For just created object wich implement [Aspose::Pdf::LogicalStructure::ITextElement](../../itextelement/). Is null in other cases. - -[Text](../../../aspose.pdf.text/) content for marked-content reference element. -## See Also - -* Class [String](../../../system/string/) -* Class [MCRElement](../) -* Namespace [Aspose::Pdf::LogicalStructure](../../) -* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.logicalstructure/mcrelement/get_imagesrc/_index.md b/english/cpp/aspose.pdf.logicalstructure/mcrelement/get_imagesrc/_index.md deleted file mode 100644 index 3c7f052728..0000000000 --- a/english/cpp/aspose.pdf.logicalstructure/mcrelement/get_imagesrc/_index.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -title: Aspose::Pdf::LogicalStructure::MCRElement::get_ImageSrc method -linktitle: get_ImageSrc -second_title: Aspose.PDF for C++ API Reference -description: 'How to use get_ImageSrc method of Aspose::Pdf::LogicalStructure::MCRElement class in C++.' -type: docs -weight: 200 -url: /cpp/aspose.pdf.logicalstructure/mcrelement/get_imagesrc/ ---- -## MCRElement::get_ImageSrc method - - - - -```cpp -System::String Aspose::Pdf::LogicalStructure::MCRElement::get_ImageSrc() const -``` - -## Remarks - - -Gets image source for marked-content reference element. - -For just created [Aspose::Pdf::LogicalStructure::IllustrationElement](../../illustrationelement/). Is null in other cases. - -[Image](../../../aspose.pdf/image/) source for marked-content reference element. -## See Also - -* Class [String](../../../system/string/) -* Class [MCRElement](../) -* Namespace [Aspose::Pdf::LogicalStructure](../../) -* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/_index.md b/english/cpp/aspose.pdf.lowcode/_index.md similarity index 97% rename from english/cpp/aspose.pdf.plugins/_index.md rename to english/cpp/aspose.pdf.lowcode/_index.md index 4874cca981..cc761be428 100644 --- a/english/cpp/aspose.pdf.plugins/_index.md +++ b/english/cpp/aspose.pdf.lowcode/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins namespace -linktitle: Aspose::Pdf::Plugins +title: Aspose::Pdf::LowCode namespace +linktitle: Aspose::Pdf::LowCode second_title: Aspose.PDF for C++ API Reference -description: 'How to use Aspose::Pdf::Plugins namespace in C++.' +description: 'How to use Aspose::Pdf::LowCode namespace in C++.' type: docs -weight: 1600 -url: /cpp/aspose.pdf.plugins/ +weight: 1400 +url: /cpp/aspose.pdf.lowcode/ --- diff --git a/english/cpp/aspose.pdf.plugins/compressoptions/_index.md b/english/cpp/aspose.pdf.lowcode/compressoptions/_index.md similarity index 66% rename from english/cpp/aspose.pdf.plugins/compressoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/compressoptions/_index.md index 3dee10b73a..01e0d498e3 100644 --- a/english/cpp/aspose.pdf.plugins/compressoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/compressoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::CompressOptions class +title: Aspose::Pdf::LowCode::CompressOptions class linktitle: CompressOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::CompressOptions class. Represents Compress options for Optimizer plugin in C++.' +description: 'Aspose::Pdf::LowCode::CompressOptions class. Represents Compress options for Optimizer plugin in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/compressoptions/ +url: /cpp/aspose.pdf.lowcode/compressoptions/ --- ## CompressOptions class @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/compressoptions/ Represents Compress options for [Optimizer](../optimizer/) plugin. ```cpp -class CompressOptions : public Aspose::Pdf::Plugins::OrganizerBaseOptions +class CompressOptions : public Aspose::Pdf::LowCode::OrganizerBaseOptions ``` ## Methods @@ -24,5 +24,5 @@ class CompressOptions : public Aspose::Pdf::Plugins::OrganizerBaseOptions ## See Also * Class [OrganizerBaseOptions](../organizerbaseoptions/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/compressoptions/compressoptions/_index.md b/english/cpp/aspose.pdf.lowcode/compressoptions/compressoptions/_index.md similarity index 59% rename from english/cpp/aspose.pdf.plugins/compressoptions/compressoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/compressoptions/compressoptions/_index.md index eef7778be2..e42f609a60 100644 --- a/english/cpp/aspose.pdf.plugins/compressoptions/compressoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/compressoptions/compressoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::CompressOptions::CompressOptions constructor +title: Aspose::Pdf::LowCode::CompressOptions::CompressOptions constructor linktitle: CompressOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::CompressOptions::CompressOptions constructor. Initializes new instance of the CompressOptions object with default options in C++.' +description: 'Aspose::Pdf::LowCode::CompressOptions::CompressOptions constructor. Initializes new instance of the CompressOptions object with default options in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/compressoptions/compressoptions/ +url: /cpp/aspose.pdf.lowcode/compressoptions/compressoptions/ --- ## CompressOptions::CompressOptions constructor @@ -13,11 +13,11 @@ url: /cpp/aspose.pdf.plugins/compressoptions/compressoptions/ Initializes new instance of the [CompressOptions](../) object with default options. ```cpp -Aspose::Pdf::Plugins::CompressOptions::CompressOptions() +Aspose::Pdf::LowCode::CompressOptions::CompressOptions() ``` ## See Also * Class [CompressOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/conversionmode/_index.md b/english/cpp/aspose.pdf.lowcode/conversionmode/_index.md similarity index 66% rename from english/cpp/aspose.pdf.plugins/conversionmode/_index.md rename to english/cpp/aspose.pdf.lowcode/conversionmode/_index.md index 25fd813c34..ec53c64392 100644 --- a/english/cpp/aspose.pdf.plugins/conversionmode/_index.md +++ b/english/cpp/aspose.pdf.lowcode/conversionmode/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::ConversionMode enum +title: Aspose::Pdf::LowCode::ConversionMode enum linktitle: ConversionMode second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::ConversionMode enum. Defines conversion mode of the output document in C++.' +description: 'Aspose::Pdf::LowCode::ConversionMode enum. Defines conversion mode of the output document in C++.' type: docs weight: 9300 -url: /cpp/aspose.pdf.plugins/conversionmode/ +url: /cpp/aspose.pdf.lowcode/conversionmode/ --- ## ConversionMode enum @@ -22,9 +22,9 @@ enum class ConversionMode | --- | --- | --- | | TextBox | 0 | | | Flow | 1 | Full recognition mode, the engine performs grouping and multi-level analysis to restore the original document author's intent and produce a maximally editable document. The downside is that the output document might look different from the original PDF file. | -| EnhancedFlow | 2 | An alternative Flow mode that supports the recognition of tables. | +| EnhancedFlow | 2 | An alternative [Flow](../../aspose.pdf.flow/) mode that supports the recognition of tables. | ## See Also -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/datatype/_index.md b/english/cpp/aspose.pdf.lowcode/datatype/_index.md similarity index 69% rename from english/cpp/aspose.pdf.plugins/datatype/_index.md rename to english/cpp/aspose.pdf.lowcode/datatype/_index.md index b34b01bd1c..41bf119de0 100644 --- a/english/cpp/aspose.pdf.plugins/datatype/_index.md +++ b/english/cpp/aspose.pdf.lowcode/datatype/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::DataType enum +title: Aspose::Pdf::LowCode::DataType enum linktitle: DataType second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::DataType enum. Represents possible types of data for plugin processing in C++.' +description: 'Aspose::Pdf::LowCode::DataType enum. Represents possible types of data for plugin processing in C++.' type: docs weight: 9400 -url: /cpp/aspose.pdf.plugins/datatype/ +url: /cpp/aspose.pdf.lowcode/datatype/ --- ## DataType enum @@ -25,5 +25,5 @@ enum class DataType ## See Also -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/decryptionoptions/_index.md b/english/cpp/aspose.pdf.lowcode/decryptionoptions/_index.md similarity index 71% rename from english/cpp/aspose.pdf.plugins/decryptionoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/decryptionoptions/_index.md index 226d03a117..aeb7a1b698 100644 --- a/english/cpp/aspose.pdf.plugins/decryptionoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/decryptionoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::DecryptionOptions class +title: Aspose::Pdf::LowCode::DecryptionOptions class linktitle: DecryptionOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::DecryptionOptions class. Represents Decryption Options for Security plugin in C++.' +description: 'Aspose::Pdf::LowCode::DecryptionOptions class. Represents Decryption Options for Security plugin in C++.' type: docs weight: 200 -url: /cpp/aspose.pdf.plugins/decryptionoptions/ +url: /cpp/aspose.pdf.lowcode/decryptionoptions/ --- ## DecryptionOptions class @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/decryptionoptions/ Represents Decryption Options for [Security](../security/) plugin. ```cpp -class DecryptionOptions : public Aspose::Pdf::Plugins::OrganizerBaseOptions +class DecryptionOptions : public Aspose::Pdf::LowCode::OrganizerBaseOptions ``` ## Methods @@ -26,5 +26,5 @@ class DecryptionOptions : public Aspose::Pdf::Plugins::OrganizerBaseOptions ## See Also * Class [OrganizerBaseOptions](../organizerbaseoptions/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/decryptionoptions/decryptionoptions/_index.md b/english/cpp/aspose.pdf.lowcode/decryptionoptions/decryptionoptions/_index.md similarity index 67% rename from english/cpp/aspose.pdf.plugins/decryptionoptions/decryptionoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/decryptionoptions/decryptionoptions/_index.md index 01c1c54bf0..9e78a81966 100644 --- a/english/cpp/aspose.pdf.plugins/decryptionoptions/decryptionoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/decryptionoptions/decryptionoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::DecryptionOptions::DecryptionOptions constructor +title: Aspose::Pdf::LowCode::DecryptionOptions::DecryptionOptions constructor linktitle: DecryptionOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::DecryptionOptions::DecryptionOptions constructor. Initializes new instance of the DecryptionOptions object with default options in C++.' +description: 'Aspose::Pdf::LowCode::DecryptionOptions::DecryptionOptions constructor. Initializes new instance of the DecryptionOptions object with default options in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/decryptionoptions/decryptionoptions/ +url: /cpp/aspose.pdf.lowcode/decryptionoptions/decryptionoptions/ --- ## DecryptionOptions::DecryptionOptions constructor @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/decryptionoptions/decryptionoptions/ Initializes new instance of the [DecryptionOptions](../) object with default options. ```cpp -Aspose::Pdf::Plugins::DecryptionOptions::DecryptionOptions(System::String ownerPassword) +Aspose::Pdf::LowCode::DecryptionOptions::DecryptionOptions(System::String ownerPassword) ``` @@ -25,5 +25,5 @@ Aspose::Pdf::Plugins::DecryptionOptions::DecryptionOptions(System::String ownerP * Class [String](../../../system/string/) * Class [DecryptionOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/decryptionoptions/get_ownerpassword/_index.md b/english/cpp/aspose.pdf.lowcode/decryptionoptions/get_ownerpassword/_index.md similarity index 55% rename from english/cpp/aspose.pdf.plugins/decryptionoptions/get_ownerpassword/_index.md rename to english/cpp/aspose.pdf.lowcode/decryptionoptions/get_ownerpassword/_index.md index 9279fc2256..325697a1ed 100644 --- a/english/cpp/aspose.pdf.plugins/decryptionoptions/get_ownerpassword/_index.md +++ b/english/cpp/aspose.pdf.lowcode/decryptionoptions/get_ownerpassword/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::DecryptionOptions::get_OwnerPassword method +title: Aspose::Pdf::LowCode::DecryptionOptions::get_OwnerPassword method linktitle: get_OwnerPassword second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::DecryptionOptions::get_OwnerPassword method. Owner password in C++.' +description: 'Aspose::Pdf::LowCode::DecryptionOptions::get_OwnerPassword method. Owner password in C++.' type: docs weight: 200 -url: /cpp/aspose.pdf.plugins/decryptionoptions/get_ownerpassword/ +url: /cpp/aspose.pdf.lowcode/decryptionoptions/get_ownerpassword/ --- ## DecryptionOptions::get_OwnerPassword method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/decryptionoptions/get_ownerpassword/ Owner password. ```cpp -System::String Aspose::Pdf::Plugins::DecryptionOptions::get_OwnerPassword() const +System::String Aspose::Pdf::LowCode::DecryptionOptions::get_OwnerPassword() const ``` ## See Also * Class [String](../../../system/string/) * Class [DecryptionOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/decryptionoptions/set_ownerpassword/_index.md b/english/cpp/aspose.pdf.lowcode/decryptionoptions/set_ownerpassword/_index.md similarity index 55% rename from english/cpp/aspose.pdf.plugins/decryptionoptions/set_ownerpassword/_index.md rename to english/cpp/aspose.pdf.lowcode/decryptionoptions/set_ownerpassword/_index.md index 0439d1b06d..32a39874a1 100644 --- a/english/cpp/aspose.pdf.plugins/decryptionoptions/set_ownerpassword/_index.md +++ b/english/cpp/aspose.pdf.lowcode/decryptionoptions/set_ownerpassword/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::DecryptionOptions::set_OwnerPassword method +title: Aspose::Pdf::LowCode::DecryptionOptions::set_OwnerPassword method linktitle: set_OwnerPassword second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::DecryptionOptions::set_OwnerPassword method. Owner password in C++.' +description: 'Aspose::Pdf::LowCode::DecryptionOptions::set_OwnerPassword method. Owner password in C++.' type: docs weight: 300 -url: /cpp/aspose.pdf.plugins/decryptionoptions/set_ownerpassword/ +url: /cpp/aspose.pdf.lowcode/decryptionoptions/set_ownerpassword/ --- ## DecryptionOptions::set_OwnerPassword method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/decryptionoptions/set_ownerpassword/ Owner password. ```cpp -void Aspose::Pdf::Plugins::DecryptionOptions::set_OwnerPassword(System::String value) +void Aspose::Pdf::LowCode::DecryptionOptions::set_OwnerPassword(System::String value) ``` ## See Also * Class [String](../../../system/string/) * Class [DecryptionOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/docconverter/_index.md b/english/cpp/aspose.pdf.lowcode/docconverter/_index.md similarity index 70% rename from english/cpp/aspose.pdf.plugins/docconverter/_index.md rename to english/cpp/aspose.pdf.lowcode/docconverter/_index.md index 75d617d982..b1728cfcb8 100644 --- a/english/cpp/aspose.pdf.plugins/docconverter/_index.md +++ b/english/cpp/aspose.pdf.lowcode/docconverter/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::DocConverter class +title: Aspose::Pdf::LowCode::DocConverter class linktitle: DocConverter second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::DocConverter class. Represents DocConverter plugin in C++.' +description: 'Aspose::Pdf::LowCode::DocConverter class. Represents DocConverter plugin in C++.' type: docs weight: 300 -url: /cpp/aspose.pdf.plugins/docconverter/ +url: /cpp/aspose.pdf.lowcode/docconverter/ --- ## DocConverter class @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/docconverter/ Represents [DocConverter](./) plugin. ```cpp -class DocConverter : public Aspose::Pdf::Plugins::IPlugin, +class DocConverter : public Aspose::Pdf::LowCode::IPlugin, public System::IDisposable ``` @@ -27,5 +27,5 @@ class DocConverter : public Aspose::Pdf::Plugins::IPlugin, * Class [IPlugin](../iplugin/) * Class [IDisposable](../../system/idisposable/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/docconverter/dispose/_index.md b/english/cpp/aspose.pdf.lowcode/docconverter/dispose/_index.md similarity index 50% rename from english/cpp/aspose.pdf.plugins/docconverter/dispose/_index.md rename to english/cpp/aspose.pdf.lowcode/docconverter/dispose/_index.md index c33b0da8e7..8cb6c1395b 100644 --- a/english/cpp/aspose.pdf.plugins/docconverter/dispose/_index.md +++ b/english/cpp/aspose.pdf.lowcode/docconverter/dispose/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::DocConverter::Dispose method +title: Aspose::Pdf::LowCode::DocConverter::Dispose method linktitle: Dispose second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::DocConverter::Dispose method. Implementation of IDisposable in C++.' +description: 'Aspose::Pdf::LowCode::DocConverter::Dispose method. Implementation of IDisposable in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/docconverter/dispose/ +url: /cpp/aspose.pdf.lowcode/docconverter/dispose/ --- ## DocConverter::Dispose method @@ -13,11 +13,11 @@ url: /cpp/aspose.pdf.plugins/docconverter/dispose/ Implementation of IDisposable. ```cpp -void Aspose::Pdf::Plugins::DocConverter::Dispose() override +void Aspose::Pdf::LowCode::DocConverter::Dispose() override ``` ## See Also * Class [DocConverter](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/docconverter/process/_index.md b/english/cpp/aspose.pdf.lowcode/docconverter/process/_index.md similarity index 74% rename from english/cpp/aspose.pdf.plugins/docconverter/process/_index.md rename to english/cpp/aspose.pdf.lowcode/docconverter/process/_index.md index b3dcae01d7..339eb62673 100644 --- a/english/cpp/aspose.pdf.plugins/docconverter/process/_index.md +++ b/english/cpp/aspose.pdf.lowcode/docconverter/process/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::DocConverter::Process method +title: Aspose::Pdf::LowCode::DocConverter::Process method linktitle: Process second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::DocConverter::Process method. Starts the DocConverter processing with the specified parameters in C++.' +description: 'Aspose::Pdf::LowCode::DocConverter::Process method. Starts the DocConverter processing with the specified parameters in C++.' type: docs weight: 200 -url: /cpp/aspose.pdf.plugins/docconverter/process/ +url: /cpp/aspose.pdf.lowcode/docconverter/process/ --- ## DocConverter::Process method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/docconverter/process/ Starts the [DocConverter](../) processing with the specified parameters. ```cpp -System::SharedPtr Aspose::Pdf::Plugins::DocConverter::Process(System::SharedPtr options) override +System::SharedPtr Aspose::Pdf::LowCode::DocConverter::Process(System::SharedPtr options) override ``` @@ -31,5 +31,5 @@ An [ResultContainer](../../resultcontainer/) object containing the result of the * Class [ResultContainer](../../resultcontainer/) * Class [IPluginOptions](../../ipluginoptions/) * Class [DocConverter](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/encryptionoptions/_index.md b/english/cpp/aspose.pdf.lowcode/encryptionoptions/_index.md similarity index 85% rename from english/cpp/aspose.pdf.plugins/encryptionoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/encryptionoptions/_index.md index aa3480c46b..5c6ee3822b 100644 --- a/english/cpp/aspose.pdf.plugins/encryptionoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/encryptionoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::EncryptionOptions class +title: Aspose::Pdf::LowCode::EncryptionOptions class linktitle: EncryptionOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::EncryptionOptions class. Represents Encryption Options for Security plugin in C++.' +description: 'Aspose::Pdf::LowCode::EncryptionOptions class. Represents Encryption Options for Security plugin in C++.' type: docs weight: 400 -url: /cpp/aspose.pdf.plugins/encryptionoptions/ +url: /cpp/aspose.pdf.lowcode/encryptionoptions/ --- ## EncryptionOptions class @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/encryptionoptions/ Represents Encryption Options for [Security](../security/) plugin. ```cpp -class EncryptionOptions : public Aspose::Pdf::Plugins::OrganizerBaseOptions +class EncryptionOptions : public Aspose::Pdf::LowCode::OrganizerBaseOptions ``` ## Methods @@ -32,5 +32,5 @@ class EncryptionOptions : public Aspose::Pdf::Plugins::OrganizerBaseOptions ## See Also * Class [OrganizerBaseOptions](../organizerbaseoptions/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/encryptionoptions/encryptionoptions/_index.md b/english/cpp/aspose.pdf.lowcode/encryptionoptions/encryptionoptions/_index.md similarity index 79% rename from english/cpp/aspose.pdf.plugins/encryptionoptions/encryptionoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/encryptionoptions/encryptionoptions/_index.md index 74b1e5469d..f3055bbd0f 100644 --- a/english/cpp/aspose.pdf.plugins/encryptionoptions/encryptionoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/encryptionoptions/encryptionoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::EncryptionOptions::EncryptionOptions constructor +title: Aspose::Pdf::LowCode::EncryptionOptions::EncryptionOptions constructor linktitle: EncryptionOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::EncryptionOptions::EncryptionOptions constructor. Initializes new instance of the EncryptionOptions object with default options in C++.' +description: 'Aspose::Pdf::LowCode::EncryptionOptions::EncryptionOptions constructor. Initializes new instance of the EncryptionOptions object with default options in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/encryptionoptions/encryptionoptions/ +url: /cpp/aspose.pdf.lowcode/encryptionoptions/encryptionoptions/ --- ## EncryptionOptions::EncryptionOptions constructor @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/encryptionoptions/encryptionoptions/ Initializes new instance of the [EncryptionOptions](../) object with default options. ```cpp -Aspose::Pdf::Plugins::EncryptionOptions::EncryptionOptions(System::String ownerPassword, System::String userPassword, System::SharedPtr documentPrivilege, Aspose::Pdf::CryptoAlgorithm cryptoAlgorithm=Aspose::Pdf::CryptoAlgorithm::AESx256) +Aspose::Pdf::LowCode::EncryptionOptions::EncryptionOptions(System::String ownerPassword, System::String userPassword, System::SharedPtr documentPrivilege, Aspose::Pdf::CryptoAlgorithm cryptoAlgorithm=Aspose::Pdf::CryptoAlgorithm::AESx256) ``` @@ -31,5 +31,5 @@ Aspose::Pdf::Plugins::EncryptionOptions::EncryptionOptions(System::String ownerP * Class [DocumentPrivilege](../../../aspose.pdf.facades/documentprivilege/) * Enum [CryptoAlgorithm](../../../aspose.pdf/cryptoalgorithm/) * Class [EncryptionOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/encryptionoptions/get_cryptoalgorithm/_index.md b/english/cpp/aspose.pdf.lowcode/encryptionoptions/get_cryptoalgorithm/_index.md similarity index 63% rename from english/cpp/aspose.pdf.plugins/encryptionoptions/get_cryptoalgorithm/_index.md rename to english/cpp/aspose.pdf.lowcode/encryptionoptions/get_cryptoalgorithm/_index.md index 0f77ec4484..1fe9a77099 100644 --- a/english/cpp/aspose.pdf.plugins/encryptionoptions/get_cryptoalgorithm/_index.md +++ b/english/cpp/aspose.pdf.lowcode/encryptionoptions/get_cryptoalgorithm/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::EncryptionOptions::get_CryptoAlgorithm method +title: Aspose::Pdf::LowCode::EncryptionOptions::get_CryptoAlgorithm method linktitle: get_CryptoAlgorithm second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::EncryptionOptions::get_CryptoAlgorithm method. Cryptographic algorithm, see CryptoAlgorithm for details in C++.' +description: 'Aspose::Pdf::LowCode::EncryptionOptions::get_CryptoAlgorithm method. Cryptographic algorithm, see CryptoAlgorithm for details in C++.' type: docs weight: 200 -url: /cpp/aspose.pdf.plugins/encryptionoptions/get_cryptoalgorithm/ +url: /cpp/aspose.pdf.lowcode/encryptionoptions/get_cryptoalgorithm/ --- ## EncryptionOptions::get_CryptoAlgorithm method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/encryptionoptions/get_cryptoalgorithm/ Cryptographic algorithm, see [CryptoAlgorithm](../../../aspose.pdf/cryptoalgorithm/) for details. ```cpp -Aspose::Pdf::CryptoAlgorithm Aspose::Pdf::Plugins::EncryptionOptions::get_CryptoAlgorithm() const +Aspose::Pdf::CryptoAlgorithm Aspose::Pdf::LowCode::EncryptionOptions::get_CryptoAlgorithm() const ``` ## See Also * Enum [CryptoAlgorithm](../../../aspose.pdf/cryptoalgorithm/) * Class [EncryptionOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/encryptionoptions/get_documentprivilege/_index.md b/english/cpp/aspose.pdf.lowcode/encryptionoptions/get_documentprivilege/_index.md similarity index 68% rename from english/cpp/aspose.pdf.plugins/encryptionoptions/get_documentprivilege/_index.md rename to english/cpp/aspose.pdf.lowcode/encryptionoptions/get_documentprivilege/_index.md index 5dc2914dc9..112d3ed102 100644 --- a/english/cpp/aspose.pdf.plugins/encryptionoptions/get_documentprivilege/_index.md +++ b/english/cpp/aspose.pdf.lowcode/encryptionoptions/get_documentprivilege/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::EncryptionOptions::get_DocumentPrivilege method +title: Aspose::Pdf::LowCode::EncryptionOptions::get_DocumentPrivilege method linktitle: get_DocumentPrivilege second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::EncryptionOptions::get_DocumentPrivilege method. Document permissions, see Permissions for details in C++.' +description: 'Aspose::Pdf::LowCode::EncryptionOptions::get_DocumentPrivilege method. Document permissions, see Permissions for details in C++.' type: docs weight: 300 -url: /cpp/aspose.pdf.plugins/encryptionoptions/get_documentprivilege/ +url: /cpp/aspose.pdf.lowcode/encryptionoptions/get_documentprivilege/ --- ## EncryptionOptions::get_DocumentPrivilege method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/encryptionoptions/get_documentprivilege/ [Document](../../../aspose.pdf/document/) permissions, see [Permissions](../../../aspose.pdf/permissions/) for details. ```cpp -const System::SharedPtr & Aspose::Pdf::Plugins::EncryptionOptions::get_DocumentPrivilege() const +const System::SharedPtr & Aspose::Pdf::LowCode::EncryptionOptions::get_DocumentPrivilege() const ``` ## See Also @@ -21,5 +21,5 @@ const System::SharedPtr & Aspose::Pdf:: * Typedef [SharedPtr](../../../system/sharedptr/) * Class [DocumentPrivilege](../../../aspose.pdf.facades/documentprivilege/) * Class [EncryptionOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/encryptionoptions/get_ownerpassword/_index.md b/english/cpp/aspose.pdf.lowcode/encryptionoptions/get_ownerpassword/_index.md similarity index 55% rename from english/cpp/aspose.pdf.plugins/encryptionoptions/get_ownerpassword/_index.md rename to english/cpp/aspose.pdf.lowcode/encryptionoptions/get_ownerpassword/_index.md index 052b9fa9d2..a2658352dd 100644 --- a/english/cpp/aspose.pdf.plugins/encryptionoptions/get_ownerpassword/_index.md +++ b/english/cpp/aspose.pdf.lowcode/encryptionoptions/get_ownerpassword/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::EncryptionOptions::get_OwnerPassword method +title: Aspose::Pdf::LowCode::EncryptionOptions::get_OwnerPassword method linktitle: get_OwnerPassword second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::EncryptionOptions::get_OwnerPassword method. Owner password in C++.' +description: 'Aspose::Pdf::LowCode::EncryptionOptions::get_OwnerPassword method. Owner password in C++.' type: docs weight: 400 -url: /cpp/aspose.pdf.plugins/encryptionoptions/get_ownerpassword/ +url: /cpp/aspose.pdf.lowcode/encryptionoptions/get_ownerpassword/ --- ## EncryptionOptions::get_OwnerPassword method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/encryptionoptions/get_ownerpassword/ Owner password. ```cpp -System::String Aspose::Pdf::Plugins::EncryptionOptions::get_OwnerPassword() const +System::String Aspose::Pdf::LowCode::EncryptionOptions::get_OwnerPassword() const ``` ## See Also * Class [String](../../../system/string/) * Class [EncryptionOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/encryptionoptions/get_userpassword/_index.md b/english/cpp/aspose.pdf.lowcode/encryptionoptions/get_userpassword/_index.md similarity index 54% rename from english/cpp/aspose.pdf.plugins/encryptionoptions/get_userpassword/_index.md rename to english/cpp/aspose.pdf.lowcode/encryptionoptions/get_userpassword/_index.md index abb4899146..3e87b839fc 100644 --- a/english/cpp/aspose.pdf.plugins/encryptionoptions/get_userpassword/_index.md +++ b/english/cpp/aspose.pdf.lowcode/encryptionoptions/get_userpassword/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::EncryptionOptions::get_UserPassword method +title: Aspose::Pdf::LowCode::EncryptionOptions::get_UserPassword method linktitle: get_UserPassword second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::EncryptionOptions::get_UserPassword method. User password in C++.' +description: 'Aspose::Pdf::LowCode::EncryptionOptions::get_UserPassword method. User password in C++.' type: docs weight: 500 -url: /cpp/aspose.pdf.plugins/encryptionoptions/get_userpassword/ +url: /cpp/aspose.pdf.lowcode/encryptionoptions/get_userpassword/ --- ## EncryptionOptions::get_UserPassword method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/encryptionoptions/get_userpassword/ User password. ```cpp -System::String Aspose::Pdf::Plugins::EncryptionOptions::get_UserPassword() const +System::String Aspose::Pdf::LowCode::EncryptionOptions::get_UserPassword() const ``` ## See Also * Class [String](../../../system/string/) * Class [EncryptionOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/encryptionoptions/set_cryptoalgorithm/_index.md b/english/cpp/aspose.pdf.lowcode/encryptionoptions/set_cryptoalgorithm/_index.md similarity index 64% rename from english/cpp/aspose.pdf.plugins/encryptionoptions/set_cryptoalgorithm/_index.md rename to english/cpp/aspose.pdf.lowcode/encryptionoptions/set_cryptoalgorithm/_index.md index 5c466fbf0e..1b90fb6264 100644 --- a/english/cpp/aspose.pdf.plugins/encryptionoptions/set_cryptoalgorithm/_index.md +++ b/english/cpp/aspose.pdf.lowcode/encryptionoptions/set_cryptoalgorithm/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::EncryptionOptions::set_CryptoAlgorithm method +title: Aspose::Pdf::LowCode::EncryptionOptions::set_CryptoAlgorithm method linktitle: set_CryptoAlgorithm second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::EncryptionOptions::set_CryptoAlgorithm method. Cryptographic algorithm, see CryptoAlgorithm for details in C++.' +description: 'Aspose::Pdf::LowCode::EncryptionOptions::set_CryptoAlgorithm method. Cryptographic algorithm, see CryptoAlgorithm for details in C++.' type: docs weight: 600 -url: /cpp/aspose.pdf.plugins/encryptionoptions/set_cryptoalgorithm/ +url: /cpp/aspose.pdf.lowcode/encryptionoptions/set_cryptoalgorithm/ --- ## EncryptionOptions::set_CryptoAlgorithm method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/encryptionoptions/set_cryptoalgorithm/ Cryptographic algorithm, see [CryptoAlgorithm](../../../aspose.pdf/cryptoalgorithm/) for details. ```cpp -void Aspose::Pdf::Plugins::EncryptionOptions::set_CryptoAlgorithm(Aspose::Pdf::CryptoAlgorithm value) +void Aspose::Pdf::LowCode::EncryptionOptions::set_CryptoAlgorithm(Aspose::Pdf::CryptoAlgorithm value) ``` ## See Also * Enum [CryptoAlgorithm](../../../aspose.pdf/cryptoalgorithm/) * Class [EncryptionOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/encryptionoptions/set_documentprivilege/_index.md b/english/cpp/aspose.pdf.lowcode/encryptionoptions/set_documentprivilege/_index.md similarity index 68% rename from english/cpp/aspose.pdf.plugins/encryptionoptions/set_documentprivilege/_index.md rename to english/cpp/aspose.pdf.lowcode/encryptionoptions/set_documentprivilege/_index.md index dd3fd3cac0..8405705c0c 100644 --- a/english/cpp/aspose.pdf.plugins/encryptionoptions/set_documentprivilege/_index.md +++ b/english/cpp/aspose.pdf.lowcode/encryptionoptions/set_documentprivilege/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::EncryptionOptions::set_DocumentPrivilege method +title: Aspose::Pdf::LowCode::EncryptionOptions::set_DocumentPrivilege method linktitle: set_DocumentPrivilege second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::EncryptionOptions::set_DocumentPrivilege method. Document permissions, see Permissions for details in C++.' +description: 'Aspose::Pdf::LowCode::EncryptionOptions::set_DocumentPrivilege method. Document permissions, see Permissions for details in C++.' type: docs weight: 700 -url: /cpp/aspose.pdf.plugins/encryptionoptions/set_documentprivilege/ +url: /cpp/aspose.pdf.lowcode/encryptionoptions/set_documentprivilege/ --- ## EncryptionOptions::set_DocumentPrivilege method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/encryptionoptions/set_documentprivilege/ [Document](../../../aspose.pdf/document/) permissions, see [Permissions](../../../aspose.pdf/permissions/) for details. ```cpp -void Aspose::Pdf::Plugins::EncryptionOptions::set_DocumentPrivilege(System::SharedPtr value) +void Aspose::Pdf::LowCode::EncryptionOptions::set_DocumentPrivilege(System::SharedPtr value) ``` ## See Also @@ -21,5 +21,5 @@ void Aspose::Pdf::Plugins::EncryptionOptions::set_DocumentPrivilege(System::Shar * Typedef [SharedPtr](../../../system/sharedptr/) * Class [DocumentPrivilege](../../../aspose.pdf.facades/documentprivilege/) * Class [EncryptionOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/encryptionoptions/set_ownerpassword/_index.md b/english/cpp/aspose.pdf.lowcode/encryptionoptions/set_ownerpassword/_index.md similarity index 55% rename from english/cpp/aspose.pdf.plugins/encryptionoptions/set_ownerpassword/_index.md rename to english/cpp/aspose.pdf.lowcode/encryptionoptions/set_ownerpassword/_index.md index fbe1d37546..14ff933172 100644 --- a/english/cpp/aspose.pdf.plugins/encryptionoptions/set_ownerpassword/_index.md +++ b/english/cpp/aspose.pdf.lowcode/encryptionoptions/set_ownerpassword/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::EncryptionOptions::set_OwnerPassword method +title: Aspose::Pdf::LowCode::EncryptionOptions::set_OwnerPassword method linktitle: set_OwnerPassword second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::EncryptionOptions::set_OwnerPassword method. Owner password in C++.' +description: 'Aspose::Pdf::LowCode::EncryptionOptions::set_OwnerPassword method. Owner password in C++.' type: docs weight: 800 -url: /cpp/aspose.pdf.plugins/encryptionoptions/set_ownerpassword/ +url: /cpp/aspose.pdf.lowcode/encryptionoptions/set_ownerpassword/ --- ## EncryptionOptions::set_OwnerPassword method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/encryptionoptions/set_ownerpassword/ Owner password. ```cpp -void Aspose::Pdf::Plugins::EncryptionOptions::set_OwnerPassword(System::String value) +void Aspose::Pdf::LowCode::EncryptionOptions::set_OwnerPassword(System::String value) ``` ## See Also * Class [String](../../../system/string/) * Class [EncryptionOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/encryptionoptions/set_userpassword/_index.md b/english/cpp/aspose.pdf.lowcode/encryptionoptions/set_userpassword/_index.md similarity index 54% rename from english/cpp/aspose.pdf.plugins/encryptionoptions/set_userpassword/_index.md rename to english/cpp/aspose.pdf.lowcode/encryptionoptions/set_userpassword/_index.md index 2ac0f03386..e4480e2793 100644 --- a/english/cpp/aspose.pdf.plugins/encryptionoptions/set_userpassword/_index.md +++ b/english/cpp/aspose.pdf.lowcode/encryptionoptions/set_userpassword/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::EncryptionOptions::set_UserPassword method +title: Aspose::Pdf::LowCode::EncryptionOptions::set_UserPassword method linktitle: set_UserPassword second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::EncryptionOptions::set_UserPassword method. User password in C++.' +description: 'Aspose::Pdf::LowCode::EncryptionOptions::set_UserPassword method. User password in C++.' type: docs weight: 900 -url: /cpp/aspose.pdf.plugins/encryptionoptions/set_userpassword/ +url: /cpp/aspose.pdf.lowcode/encryptionoptions/set_userpassword/ --- ## EncryptionOptions::set_UserPassword method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/encryptionoptions/set_userpassword/ User password. ```cpp -void Aspose::Pdf::Plugins::EncryptionOptions::set_UserPassword(System::String value) +void Aspose::Pdf::LowCode::EncryptionOptions::set_UserPassword(System::String value) ``` ## See Also * Class [String](../../../system/string/) * Class [EncryptionOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/filedatasource/_index.md b/english/cpp/aspose.pdf.lowcode/filedatasource/_index.md similarity index 71% rename from english/cpp/aspose.pdf.plugins/filedatasource/_index.md rename to english/cpp/aspose.pdf.lowcode/filedatasource/_index.md index f16db2be43..bac7806a4e 100644 --- a/english/cpp/aspose.pdf.plugins/filedatasource/_index.md +++ b/english/cpp/aspose.pdf.lowcode/filedatasource/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FileDataSource class +title: Aspose::Pdf::LowCode::FileDataSource class linktitle: FileDataSource second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FileDataSource class. Represents file data source for load and save operations of a plugin in C++.' +description: 'Aspose::Pdf::LowCode::FileDataSource class. Represents file data source for load and save operations of a plugin in C++.' type: docs weight: 500 -url: /cpp/aspose.pdf.plugins/filedatasource/ +url: /cpp/aspose.pdf.lowcode/filedatasource/ --- ## FileDataSource class @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/filedatasource/ Represents file data source for load and save operations of a plugin. ```cpp -class FileDataSource : public Aspose::Pdf::Plugins::IDataSource +class FileDataSource : public Aspose::Pdf::LowCode::IDataSource ``` ## Methods @@ -26,5 +26,5 @@ class FileDataSource : public Aspose::Pdf::Plugins::IDataSource ## See Also * Class [IDataSource](../idatasource/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/filedatasource/filedatasource/_index.md b/english/cpp/aspose.pdf.lowcode/filedatasource/filedatasource/_index.md similarity index 64% rename from english/cpp/aspose.pdf.plugins/filedatasource/filedatasource/_index.md rename to english/cpp/aspose.pdf.lowcode/filedatasource/filedatasource/_index.md index 9a9bc89024..bc7081cce3 100644 --- a/english/cpp/aspose.pdf.plugins/filedatasource/filedatasource/_index.md +++ b/english/cpp/aspose.pdf.lowcode/filedatasource/filedatasource/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FileDataSource::FileDataSource constructor +title: Aspose::Pdf::LowCode::FileDataSource::FileDataSource constructor linktitle: FileDataSource second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FileDataSource::FileDataSource constructor. Initializes new file data source with the specified path in C++.' +description: 'Aspose::Pdf::LowCode::FileDataSource::FileDataSource constructor. Initializes new file data source with the specified path in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/filedatasource/filedatasource/ +url: /cpp/aspose.pdf.lowcode/filedatasource/filedatasource/ --- ## FileDataSource::FileDataSource constructor @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/filedatasource/filedatasource/ Initializes new file data source with the specified path. ```cpp -Aspose::Pdf::Plugins::FileDataSource::FileDataSource(System::String path) +Aspose::Pdf::LowCode::FileDataSource::FileDataSource(System::String path) ``` @@ -25,5 +25,5 @@ Aspose::Pdf::Plugins::FileDataSource::FileDataSource(System::String path) * Class [String](../../../system/string/) * Class [FileDataSource](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/filedatasource/get_datatype/_index.md b/english/cpp/aspose.pdf.lowcode/filedatasource/get_datatype/_index.md similarity index 55% rename from english/cpp/aspose.pdf.plugins/filedatasource/get_datatype/_index.md rename to english/cpp/aspose.pdf.lowcode/filedatasource/get_datatype/_index.md index da01206ca2..90db9743a9 100644 --- a/english/cpp/aspose.pdf.plugins/filedatasource/get_datatype/_index.md +++ b/english/cpp/aspose.pdf.lowcode/filedatasource/get_datatype/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FileDataSource::get_DataType method +title: Aspose::Pdf::LowCode::FileDataSource::get_DataType method linktitle: get_DataType second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FileDataSource::get_DataType method. Type of data source (file) in C++.' +description: 'Aspose::Pdf::LowCode::FileDataSource::get_DataType method. Type of data source (file) in C++.' type: docs weight: 200 -url: /cpp/aspose.pdf.plugins/filedatasource/get_datatype/ +url: /cpp/aspose.pdf.lowcode/filedatasource/get_datatype/ --- ## FileDataSource::get_DataType method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/filedatasource/get_datatype/ Type of data source (file). ```cpp -Aspose::Pdf::Plugins::DataType Aspose::Pdf::Plugins::FileDataSource::get_DataType() override +Aspose::Pdf::LowCode::DataType Aspose::Pdf::LowCode::FileDataSource::get_DataType() override ``` ## See Also * Enum [DataType](../../datatype/) * Class [FileDataSource](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/filedatasource/get_path/_index.md b/english/cpp/aspose.pdf.lowcode/filedatasource/get_path/_index.md similarity index 57% rename from english/cpp/aspose.pdf.plugins/filedatasource/get_path/_index.md rename to english/cpp/aspose.pdf.lowcode/filedatasource/get_path/_index.md index ec926b3f68..e7d21421bc 100644 --- a/english/cpp/aspose.pdf.plugins/filedatasource/get_path/_index.md +++ b/english/cpp/aspose.pdf.lowcode/filedatasource/get_path/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FileDataSource::get_Path method +title: Aspose::Pdf::LowCode::FileDataSource::get_Path method linktitle: get_Path second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FileDataSource::get_Path method. Gets the path to the file of the current data source in C++.' +description: 'Aspose::Pdf::LowCode::FileDataSource::get_Path method. Gets the path to the file of the current data source in C++.' type: docs weight: 300 -url: /cpp/aspose.pdf.plugins/filedatasource/get_path/ +url: /cpp/aspose.pdf.lowcode/filedatasource/get_path/ --- ## FileDataSource::get_Path method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/filedatasource/get_path/ Gets the path to the file of the current data source. ```cpp -System::String Aspose::Pdf::Plugins::FileDataSource::get_Path() const +System::String Aspose::Pdf::LowCode::FileDataSource::get_Path() const ``` ## See Also * Class [String](../../../system/string/) * Class [FileDataSource](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/fileresult/_index.md b/english/cpp/aspose.pdf.lowcode/fileresult/_index.md similarity index 76% rename from english/cpp/aspose.pdf.plugins/fileresult/_index.md rename to english/cpp/aspose.pdf.lowcode/fileresult/_index.md index ef115af8c5..2d8f3249f5 100644 --- a/english/cpp/aspose.pdf.plugins/fileresult/_index.md +++ b/english/cpp/aspose.pdf.lowcode/fileresult/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FileResult class +title: Aspose::Pdf::LowCode::FileResult class linktitle: FileResult second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FileResult class. Represents operation result in the form of string path to file in C++.' +description: 'Aspose::Pdf::LowCode::FileResult class. Represents operation result in the form of string path to file in C++.' type: docs weight: 600 -url: /cpp/aspose.pdf.plugins/fileresult/ +url: /cpp/aspose.pdf.lowcode/fileresult/ --- ## FileResult class @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/fileresult/ Represents operation result in the form of string path to file. ```cpp -class FileResult : public Aspose::Pdf::Plugins::IOperationResult +class FileResult : public Aspose::Pdf::LowCode::IOperationResult ``` ## Methods @@ -29,5 +29,5 @@ class FileResult : public Aspose::Pdf::Plugins::IOperationResult ## See Also * Class [IOperationResult](../ioperationresult/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/fileresult/get_data/_index.md b/english/cpp/aspose.pdf.lowcode/fileresult/get_data/_index.md similarity index 59% rename from english/cpp/aspose.pdf.plugins/fileresult/get_data/_index.md rename to english/cpp/aspose.pdf.lowcode/fileresult/get_data/_index.md index 514ef7a981..17c99a02ad 100644 --- a/english/cpp/aspose.pdf.plugins/fileresult/get_data/_index.md +++ b/english/cpp/aspose.pdf.lowcode/fileresult/get_data/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FileResult::get_Data method +title: Aspose::Pdf::LowCode::FileResult::get_Data method linktitle: get_Data second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FileResult::get_Data method. Gets raw data in C++.' +description: 'Aspose::Pdf::LowCode::FileResult::get_Data method. Gets raw data in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/fileresult/get_data/ +url: /cpp/aspose.pdf.lowcode/fileresult/get_data/ --- ## FileResult::get_Data method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/fileresult/get_data/ Gets raw data. ```cpp -System::SharedPtr Aspose::Pdf::Plugins::FileResult::get_Data() override +System::SharedPtr Aspose::Pdf::LowCode::FileResult::get_Data() override ``` @@ -26,5 +26,5 @@ An **object** representing output data. * Typedef [SharedPtr](../../../system/sharedptr/) * Class [Object](../../../system/object/) * Class [FileResult](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/fileresult/get_isfile/_index.md b/english/cpp/aspose.pdf.lowcode/fileresult/get_isfile/_index.md similarity index 58% rename from english/cpp/aspose.pdf.plugins/fileresult/get_isfile/_index.md rename to english/cpp/aspose.pdf.lowcode/fileresult/get_isfile/_index.md index b9f1bbf6d4..93e1074316 100644 --- a/english/cpp/aspose.pdf.plugins/fileresult/get_isfile/_index.md +++ b/english/cpp/aspose.pdf.lowcode/fileresult/get_isfile/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FileResult::get_IsFile method +title: Aspose::Pdf::LowCode::FileResult::get_IsFile method linktitle: get_IsFile second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FileResult::get_IsFile method. Indicates whether the result is a path to an output file in C++.' +description: 'Aspose::Pdf::LowCode::FileResult::get_IsFile method. Indicates whether the result is a path to an output file in C++.' type: docs weight: 200 -url: /cpp/aspose.pdf.plugins/fileresult/get_isfile/ +url: /cpp/aspose.pdf.lowcode/fileresult/get_isfile/ --- ## FileResult::get_IsFile method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/fileresult/get_isfile/ Indicates whether the result is a path to an output file. ```cpp -bool Aspose::Pdf::Plugins::FileResult::get_IsFile() override +bool Aspose::Pdf::LowCode::FileResult::get_IsFile() override ``` @@ -24,5 +24,5 @@ bool Aspose::Pdf::Plugins::FileResult::get_IsFile() override ## See Also * Class [FileResult](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/fileresult/get_isstream/_index.md b/english/cpp/aspose.pdf.lowcode/fileresult/get_isstream/_index.md similarity index 58% rename from english/cpp/aspose.pdf.plugins/fileresult/get_isstream/_index.md rename to english/cpp/aspose.pdf.lowcode/fileresult/get_isstream/_index.md index 45df78b31a..81396751ff 100644 --- a/english/cpp/aspose.pdf.plugins/fileresult/get_isstream/_index.md +++ b/english/cpp/aspose.pdf.lowcode/fileresult/get_isstream/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FileResult::get_IsStream method +title: Aspose::Pdf::LowCode::FileResult::get_IsStream method linktitle: get_IsStream second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FileResult::get_IsStream method. Indicates whether the result is an output stream in C++.' +description: 'Aspose::Pdf::LowCode::FileResult::get_IsStream method. Indicates whether the result is an output stream in C++.' type: docs weight: 300 -url: /cpp/aspose.pdf.plugins/fileresult/get_isstream/ +url: /cpp/aspose.pdf.lowcode/fileresult/get_isstream/ --- ## FileResult::get_IsStream method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/fileresult/get_isstream/ Indicates whether the result is an output stream. ```cpp -bool Aspose::Pdf::Plugins::FileResult::get_IsStream() override +bool Aspose::Pdf::LowCode::FileResult::get_IsStream() override ``` @@ -24,5 +24,5 @@ bool Aspose::Pdf::Plugins::FileResult::get_IsStream() override ## See Also * Class [FileResult](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/fileresult/get_isstring/_index.md b/english/cpp/aspose.pdf.lowcode/fileresult/get_isstring/_index.md similarity index 57% rename from english/cpp/aspose.pdf.plugins/fileresult/get_isstring/_index.md rename to english/cpp/aspose.pdf.lowcode/fileresult/get_isstring/_index.md index 49166ad9ab..54edffa4aa 100644 --- a/english/cpp/aspose.pdf.plugins/fileresult/get_isstring/_index.md +++ b/english/cpp/aspose.pdf.lowcode/fileresult/get_isstring/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FileResult::get_IsString method +title: Aspose::Pdf::LowCode::FileResult::get_IsString method linktitle: get_IsString second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FileResult::get_IsString method. Indicates whether the result is a text string in C++.' +description: 'Aspose::Pdf::LowCode::FileResult::get_IsString method. Indicates whether the result is a text string in C++.' type: docs weight: 400 -url: /cpp/aspose.pdf.plugins/fileresult/get_isstring/ +url: /cpp/aspose.pdf.lowcode/fileresult/get_isstring/ --- ## FileResult::get_IsString method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/fileresult/get_isstring/ Indicates whether the result is a text string. ```cpp -bool Aspose::Pdf::Plugins::FileResult::get_IsString() override +bool Aspose::Pdf::LowCode::FileResult::get_IsString() override ``` @@ -24,5 +24,5 @@ bool Aspose::Pdf::Plugins::FileResult::get_IsString() override ## See Also * Class [FileResult](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/fileresult/tofile/_index.md b/english/cpp/aspose.pdf.lowcode/fileresult/tofile/_index.md similarity index 61% rename from english/cpp/aspose.pdf.plugins/fileresult/tofile/_index.md rename to english/cpp/aspose.pdf.lowcode/fileresult/tofile/_index.md index af48fcd19f..8c51b57914 100644 --- a/english/cpp/aspose.pdf.plugins/fileresult/tofile/_index.md +++ b/english/cpp/aspose.pdf.lowcode/fileresult/tofile/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FileResult::ToFile method +title: Aspose::Pdf::LowCode::FileResult::ToFile method linktitle: ToFile second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FileResult::ToFile method. Tries to convert the result to a file in C++.' +description: 'Aspose::Pdf::LowCode::FileResult::ToFile method. Tries to convert the result to a file in C++.' type: docs weight: 500 -url: /cpp/aspose.pdf.plugins/fileresult/tofile/ +url: /cpp/aspose.pdf.lowcode/fileresult/tofile/ --- ## FileResult::ToFile method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/fileresult/tofile/ Tries to convert the result to a file. ```cpp -System::String Aspose::Pdf::Plugins::FileResult::ToFile() override +System::String Aspose::Pdf::LowCode::FileResult::ToFile() override ``` @@ -25,5 +25,5 @@ A string representing the path to the output file if the result is file; otherwi * Class [String](../../../system/string/) * Class [FileResult](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/fileresult/tostream/_index.md b/english/cpp/aspose.pdf.lowcode/fileresult/tostream/_index.md similarity index 65% rename from english/cpp/aspose.pdf.plugins/fileresult/tostream/_index.md rename to english/cpp/aspose.pdf.lowcode/fileresult/tostream/_index.md index c5e301d3df..36d90b4d6b 100644 --- a/english/cpp/aspose.pdf.plugins/fileresult/tostream/_index.md +++ b/english/cpp/aspose.pdf.lowcode/fileresult/tostream/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FileResult::ToStream method +title: Aspose::Pdf::LowCode::FileResult::ToStream method linktitle: ToStream second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FileResult::ToStream method. Tries to convert the result to a stream object in C++.' +description: 'Aspose::Pdf::LowCode::FileResult::ToStream method. Tries to convert the result to a stream object in C++.' type: docs weight: 600 -url: /cpp/aspose.pdf.plugins/fileresult/tostream/ +url: /cpp/aspose.pdf.lowcode/fileresult/tostream/ --- ## FileResult::ToStream method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/fileresult/tostream/ Tries to convert the result to a stream object. ```cpp -System::SharedPtr Aspose::Pdf::Plugins::FileResult::ToStream() override +System::SharedPtr Aspose::Pdf::LowCode::FileResult::ToStream() override ``` @@ -26,5 +26,5 @@ A stream object representing the output data if the result is stream; otherwise * Typedef [SharedPtr](../../../system/sharedptr/) * Class [Stream](../../../system.io/stream/) * Class [FileResult](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/filesavetarget/_index.md b/english/cpp/aspose.pdf.lowcode/filesavetarget/_index.md similarity index 69% rename from english/cpp/aspose.pdf.plugins/filesavetarget/_index.md rename to english/cpp/aspose.pdf.lowcode/filesavetarget/_index.md index 366356ec5c..7416122b2e 100644 --- a/english/cpp/aspose.pdf.plugins/filesavetarget/_index.md +++ b/english/cpp/aspose.pdf.lowcode/filesavetarget/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FileSaveTarget class +title: Aspose::Pdf::LowCode::FileSaveTarget class linktitle: FileSaveTarget second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FileSaveTarget class. Represents file save target for a plugin in C++.' +description: 'Aspose::Pdf::LowCode::FileSaveTarget class. Represents file save target for a plugin in C++.' type: docs weight: 700 -url: /cpp/aspose.pdf.plugins/filesavetarget/ +url: /cpp/aspose.pdf.lowcode/filesavetarget/ --- ## FileSaveTarget class @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/filesavetarget/ Represents file save target for a plugin. ```cpp -class FileSaveTarget : public Aspose::Pdf::Plugins::ISaveTarget +class FileSaveTarget : public Aspose::Pdf::LowCode::ISaveTarget ``` ## Methods @@ -26,5 +26,5 @@ class FileSaveTarget : public Aspose::Pdf::Plugins::ISaveTarget ## See Also * Class [ISaveTarget](../isavetarget/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/filesavetarget/filesavetarget/_index.md b/english/cpp/aspose.pdf.lowcode/filesavetarget/filesavetarget/_index.md similarity index 64% rename from english/cpp/aspose.pdf.plugins/filesavetarget/filesavetarget/_index.md rename to english/cpp/aspose.pdf.lowcode/filesavetarget/filesavetarget/_index.md index 1ff12477f2..c98a4004ef 100644 --- a/english/cpp/aspose.pdf.plugins/filesavetarget/filesavetarget/_index.md +++ b/english/cpp/aspose.pdf.lowcode/filesavetarget/filesavetarget/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FileSaveTarget::FileSaveTarget constructor +title: Aspose::Pdf::LowCode::FileSaveTarget::FileSaveTarget constructor linktitle: FileSaveTarget second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FileSaveTarget::FileSaveTarget constructor. Initializes new file save target with specified path in C++.' +description: 'Aspose::Pdf::LowCode::FileSaveTarget::FileSaveTarget constructor. Initializes new file save target with specified path in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/filesavetarget/filesavetarget/ +url: /cpp/aspose.pdf.lowcode/filesavetarget/filesavetarget/ --- ## FileSaveTarget::FileSaveTarget constructor @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/filesavetarget/filesavetarget/ Initializes new file save target with specified path. ```cpp -Aspose::Pdf::Plugins::FileSaveTarget::FileSaveTarget(System::String path) +Aspose::Pdf::LowCode::FileSaveTarget::FileSaveTarget(System::String path) ``` @@ -25,5 +25,5 @@ Aspose::Pdf::Plugins::FileSaveTarget::FileSaveTarget(System::String path) * Class [String](../../../system/string/) * Class [FileSaveTarget](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/filesavetarget/get_path/_index.md b/english/cpp/aspose.pdf.lowcode/filesavetarget/get_path/_index.md similarity index 60% rename from english/cpp/aspose.pdf.plugins/filesavetarget/get_path/_index.md rename to english/cpp/aspose.pdf.lowcode/filesavetarget/get_path/_index.md index e459e8c30b..42b4e40e91 100644 --- a/english/cpp/aspose.pdf.plugins/filesavetarget/get_path/_index.md +++ b/english/cpp/aspose.pdf.lowcode/filesavetarget/get_path/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FileSaveTarget::get_Path method +title: Aspose::Pdf::LowCode::FileSaveTarget::get_Path method linktitle: get_Path second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FileSaveTarget::get_Path method. Gets the path to the file of current save target in C++.' +description: 'Aspose::Pdf::LowCode::FileSaveTarget::get_Path method. Gets the path to the file of current save target in C++.' type: docs weight: 200 -url: /cpp/aspose.pdf.plugins/filesavetarget/get_path/ +url: /cpp/aspose.pdf.lowcode/filesavetarget/get_path/ --- ## FileSaveTarget::get_Path method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/filesavetarget/get_path/ Gets the path to the file of current save target. ```cpp -System::String Aspose::Pdf::Plugins::FileSaveTarget::get_Path() const +System::String Aspose::Pdf::LowCode::FileSaveTarget::get_Path() const ``` @@ -25,5 +25,5 @@ A string representing the path to the output file. * Class [String](../../../system/string/) * Class [FileSaveTarget](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/filesavetarget/get_savetarget/_index.md b/english/cpp/aspose.pdf.lowcode/filesavetarget/get_savetarget/_index.md similarity index 59% rename from english/cpp/aspose.pdf.plugins/filesavetarget/get_savetarget/_index.md rename to english/cpp/aspose.pdf.lowcode/filesavetarget/get_savetarget/_index.md index f9a202bd0c..fb0b55313b 100644 --- a/english/cpp/aspose.pdf.plugins/filesavetarget/get_savetarget/_index.md +++ b/english/cpp/aspose.pdf.lowcode/filesavetarget/get_savetarget/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FileSaveTarget::get_SaveTarget method +title: Aspose::Pdf::LowCode::FileSaveTarget::get_SaveTarget method linktitle: get_SaveTarget second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FileSaveTarget::get_SaveTarget method. Type of the save target (file) in C++.' +description: 'Aspose::Pdf::LowCode::FileSaveTarget::get_SaveTarget method. Type of the save target (file) in C++.' type: docs weight: 300 -url: /cpp/aspose.pdf.plugins/filesavetarget/get_savetarget/ +url: /cpp/aspose.pdf.lowcode/filesavetarget/get_savetarget/ --- ## FileSaveTarget::get_SaveTarget method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/filesavetarget/get_savetarget/ Type of the save target (file). ```cpp -DataType Aspose::Pdf::Plugins::FileSaveTarget::get_SaveTarget() override +DataType Aspose::Pdf::LowCode::FileSaveTarget::get_SaveTarget() override ``` @@ -25,5 +25,5 @@ A [DataType](../../datatype/) object representing output data. * Enum [DataType](../../datatype/) * Class [FileSaveTarget](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formcheckboxfieldcreateoptions/_index.md b/english/cpp/aspose.pdf.lowcode/formcheckboxfieldcreateoptions/_index.md similarity index 79% rename from english/cpp/aspose.pdf.plugins/formcheckboxfieldcreateoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/formcheckboxfieldcreateoptions/_index.md index 1c29c74979..e8dae5e2ad 100644 --- a/english/cpp/aspose.pdf.plugins/formcheckboxfieldcreateoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formcheckboxfieldcreateoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormCheckBoxFieldCreateOptions class +title: Aspose::Pdf::LowCode::FormCheckBoxFieldCreateOptions class linktitle: FormCheckBoxFieldCreateOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormCheckBoxFieldCreateOptions class. Represents options for creating CheckBoxField by FormEditor plugin in C++.' +description: 'Aspose::Pdf::LowCode::FormCheckBoxFieldCreateOptions class. Represents options for creating CheckBoxField by FormEditor plugin in C++.' type: docs weight: 800 -url: /cpp/aspose.pdf.plugins/formcheckboxfieldcreateoptions/ +url: /cpp/aspose.pdf.lowcode/formcheckboxfieldcreateoptions/ --- ## FormCheckBoxFieldCreateOptions class @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/formcheckboxfieldcreateoptions/ Represents options for creating CheckBoxField by [FormEditor](../formeditor/) plugin. ```cpp -class FormCheckBoxFieldCreateOptions : public Aspose::Pdf::Plugins::FormFieldCreateOptions +class FormCheckBoxFieldCreateOptions : public Aspose::Pdf::LowCode::FormFieldCreateOptions ``` ## Methods @@ -28,5 +28,5 @@ class FormCheckBoxFieldCreateOptions : public Aspose::Pdf::Plugins::FormFieldCre ## See Also * Class [FormFieldCreateOptions](../formfieldcreateoptions/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/formcheckboxfieldcreateoptions/formcheckboxfieldcreateoptions/_index.md b/english/cpp/aspose.pdf.lowcode/formcheckboxfieldcreateoptions/formcheckboxfieldcreateoptions/_index.md similarity index 77% rename from english/cpp/aspose.pdf.plugins/formcheckboxfieldcreateoptions/formcheckboxfieldcreateoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/formcheckboxfieldcreateoptions/formcheckboxfieldcreateoptions/_index.md index e0d3025974..7d7093ef6b 100644 --- a/english/cpp/aspose.pdf.plugins/formcheckboxfieldcreateoptions/formcheckboxfieldcreateoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formcheckboxfieldcreateoptions/formcheckboxfieldcreateoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormCheckBoxFieldCreateOptions::FormCheckBoxFieldCreateOptions constructor +title: Aspose::Pdf::LowCode::FormCheckBoxFieldCreateOptions::FormCheckBoxFieldCreateOptions constructor linktitle: FormCheckBoxFieldCreateOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormCheckBoxFieldCreateOptions::FormCheckBoxFieldCreateOptions constructor. Initializes a new instance of the FormCheckBoxFieldCreateOptions object, that containing parameters for created and added CheckBoxField in C++.' +description: 'Aspose::Pdf::LowCode::FormCheckBoxFieldCreateOptions::FormCheckBoxFieldCreateOptions constructor. Initializes a new instance of the FormCheckBoxFieldCreateOptions object, that containing parameters for created and added CheckBoxField in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/formcheckboxfieldcreateoptions/formcheckboxfieldcreateoptions/ +url: /cpp/aspose.pdf.lowcode/formcheckboxfieldcreateoptions/formcheckboxfieldcreateoptions/ --- ## FormCheckBoxFieldCreateOptions::FormCheckBoxFieldCreateOptions constructor @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/formcheckboxfieldcreateoptions/formcheckboxfieldcre Initializes a new instance of the [FormCheckBoxFieldCreateOptions](../) object, that containing parameters for created and added CheckBoxField. ```cpp -Aspose::Pdf::Plugins::FormCheckBoxFieldCreateOptions::FormCheckBoxFieldCreateOptions(int32_t pageNum, System::SharedPtr rect) +Aspose::Pdf::LowCode::FormCheckBoxFieldCreateOptions::FormCheckBoxFieldCreateOptions(int32_t pageNum, System::SharedPtr rect) ``` @@ -27,5 +27,5 @@ Aspose::Pdf::Plugins::FormCheckBoxFieldCreateOptions::FormCheckBoxFieldCreateOpt * Typedef [SharedPtr](../../../system/sharedptr/) * Class [Rectangle](../../../aspose.pdf/rectangle/) * Class [FormCheckBoxFieldCreateOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formcheckboxfieldcreateoptions/get_checked/_index.md b/english/cpp/aspose.pdf.lowcode/formcheckboxfieldcreateoptions/get_checked/_index.md similarity index 65% rename from english/cpp/aspose.pdf.plugins/formcheckboxfieldcreateoptions/get_checked/_index.md rename to english/cpp/aspose.pdf.lowcode/formcheckboxfieldcreateoptions/get_checked/_index.md index a2618fc8ae..38a0b40936 100644 --- a/english/cpp/aspose.pdf.plugins/formcheckboxfieldcreateoptions/get_checked/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formcheckboxfieldcreateoptions/get_checked/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormCheckBoxFieldCreateOptions::get_Checked method +title: Aspose::Pdf::LowCode::FormCheckBoxFieldCreateOptions::get_Checked method linktitle: get_Checked second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormCheckBoxFieldCreateOptions::get_Checked method. Gets/sets the value to determine whether created CheckboxField is checked or not (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormCheckBoxFieldCreateOptions::get_Checked method. Gets/sets the value to determine whether created CheckboxField is checked or not (if will be set) in C++.' type: docs weight: 200 -url: /cpp/aspose.pdf.plugins/formcheckboxfieldcreateoptions/get_checked/ +url: /cpp/aspose.pdf.lowcode/formcheckboxfieldcreateoptions/get_checked/ --- ## FormCheckBoxFieldCreateOptions::get_Checked method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formcheckboxfieldcreateoptions/get_checked/ Gets/sets the value to determine whether created CheckboxField is checked or not (if will be set). ```cpp -System::Nullable Aspose::Pdf::Plugins::FormCheckBoxFieldCreateOptions::get_Checked() const +System::Nullable Aspose::Pdf::LowCode::FormCheckBoxFieldCreateOptions::get_Checked() const ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormCheckBoxFieldCreateOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formcheckboxfieldcreateoptions/get_style/_index.md b/english/cpp/aspose.pdf.lowcode/formcheckboxfieldcreateoptions/get_style/_index.md similarity index 67% rename from english/cpp/aspose.pdf.plugins/formcheckboxfieldcreateoptions/get_style/_index.md rename to english/cpp/aspose.pdf.lowcode/formcheckboxfieldcreateoptions/get_style/_index.md index b2d3c2fee8..d75ed52d35 100644 --- a/english/cpp/aspose.pdf.plugins/formcheckboxfieldcreateoptions/get_style/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formcheckboxfieldcreateoptions/get_style/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormCheckBoxFieldCreateOptions::get_Style method +title: Aspose::Pdf::LowCode::FormCheckBoxFieldCreateOptions::get_Style method linktitle: get_Style second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormCheckBoxFieldCreateOptions::get_Style method. Gets/sets the value to determine property Style for created CheckboxField (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormCheckBoxFieldCreateOptions::get_Style method. Gets/sets the value to determine property Style for created CheckboxField (if will be set) in C++.' type: docs weight: 300 -url: /cpp/aspose.pdf.plugins/formcheckboxfieldcreateoptions/get_style/ +url: /cpp/aspose.pdf.lowcode/formcheckboxfieldcreateoptions/get_style/ --- ## FormCheckBoxFieldCreateOptions::get_Style method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/formcheckboxfieldcreateoptions/get_style/ Gets/sets the value to determine property Style for created CheckboxField (if will be set). ```cpp -System::Nullable Aspose::Pdf::Plugins::FormCheckBoxFieldCreateOptions::get_Style() const +System::Nullable Aspose::Pdf::LowCode::FormCheckBoxFieldCreateOptions::get_Style() const ``` ## See Also @@ -21,5 +21,5 @@ System::Nullable Aspose::Pdf::Plugins::FormCheckBoxFieldCreateO * Class [Nullable](../../../system/nullable/) * Enum [BoxStyle](../../../aspose.pdf.forms/boxstyle/) * Class [FormCheckBoxFieldCreateOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formcheckboxfieldcreateoptions/set_checked/_index.md b/english/cpp/aspose.pdf.lowcode/formcheckboxfieldcreateoptions/set_checked/_index.md similarity index 65% rename from english/cpp/aspose.pdf.plugins/formcheckboxfieldcreateoptions/set_checked/_index.md rename to english/cpp/aspose.pdf.lowcode/formcheckboxfieldcreateoptions/set_checked/_index.md index 17493f753d..c7de9ebde5 100644 --- a/english/cpp/aspose.pdf.plugins/formcheckboxfieldcreateoptions/set_checked/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formcheckboxfieldcreateoptions/set_checked/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormCheckBoxFieldCreateOptions::set_Checked method +title: Aspose::Pdf::LowCode::FormCheckBoxFieldCreateOptions::set_Checked method linktitle: set_Checked second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormCheckBoxFieldCreateOptions::set_Checked method. Gets/sets the value to determine whether created CheckboxField is checked or not (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormCheckBoxFieldCreateOptions::set_Checked method. Gets/sets the value to determine whether created CheckboxField is checked or not (if will be set) in C++.' type: docs weight: 400 -url: /cpp/aspose.pdf.plugins/formcheckboxfieldcreateoptions/set_checked/ +url: /cpp/aspose.pdf.lowcode/formcheckboxfieldcreateoptions/set_checked/ --- ## FormCheckBoxFieldCreateOptions::set_Checked method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formcheckboxfieldcreateoptions/set_checked/ Gets/sets the value to determine whether created CheckboxField is checked or not (if will be set). ```cpp -void Aspose::Pdf::Plugins::FormCheckBoxFieldCreateOptions::set_Checked(System::Nullable value) +void Aspose::Pdf::LowCode::FormCheckBoxFieldCreateOptions::set_Checked(System::Nullable value) ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormCheckBoxFieldCreateOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formcheckboxfieldcreateoptions/set_style/_index.md b/english/cpp/aspose.pdf.lowcode/formcheckboxfieldcreateoptions/set_style/_index.md similarity index 67% rename from english/cpp/aspose.pdf.plugins/formcheckboxfieldcreateoptions/set_style/_index.md rename to english/cpp/aspose.pdf.lowcode/formcheckboxfieldcreateoptions/set_style/_index.md index a88c5aa7c6..c2607035e9 100644 --- a/english/cpp/aspose.pdf.plugins/formcheckboxfieldcreateoptions/set_style/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formcheckboxfieldcreateoptions/set_style/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormCheckBoxFieldCreateOptions::set_Style method +title: Aspose::Pdf::LowCode::FormCheckBoxFieldCreateOptions::set_Style method linktitle: set_Style second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormCheckBoxFieldCreateOptions::set_Style method. Gets/sets the value to determine property Style for created CheckboxField (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormCheckBoxFieldCreateOptions::set_Style method. Gets/sets the value to determine property Style for created CheckboxField (if will be set) in C++.' type: docs weight: 500 -url: /cpp/aspose.pdf.plugins/formcheckboxfieldcreateoptions/set_style/ +url: /cpp/aspose.pdf.lowcode/formcheckboxfieldcreateoptions/set_style/ --- ## FormCheckBoxFieldCreateOptions::set_Style method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/formcheckboxfieldcreateoptions/set_style/ Gets/sets the value to determine property Style for created CheckboxField (if will be set). ```cpp -void Aspose::Pdf::Plugins::FormCheckBoxFieldCreateOptions::set_Style(System::Nullable value) +void Aspose::Pdf::LowCode::FormCheckBoxFieldCreateOptions::set_Style(System::Nullable value) ``` ## See Also @@ -21,5 +21,5 @@ void Aspose::Pdf::Plugins::FormCheckBoxFieldCreateOptions::set_Style(System::Nul * Class [Nullable](../../../system/nullable/) * Enum [BoxStyle](../../../aspose.pdf.forms/boxstyle/) * Class [FormCheckBoxFieldCreateOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formcheckboxfieldsetoptions/_index.md b/english/cpp/aspose.pdf.lowcode/formcheckboxfieldsetoptions/_index.md similarity index 77% rename from english/cpp/aspose.pdf.plugins/formcheckboxfieldsetoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/formcheckboxfieldsetoptions/_index.md index e23694728a..e330fd35d7 100644 --- a/english/cpp/aspose.pdf.plugins/formcheckboxfieldsetoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formcheckboxfieldsetoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormCheckBoxFieldSetOptions class +title: Aspose::Pdf::LowCode::FormCheckBoxFieldSetOptions class linktitle: FormCheckBoxFieldSetOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormCheckBoxFieldSetOptions class. Represents options for set properties in CheckboxField by FormEditor plugin in C++.' +description: 'Aspose::Pdf::LowCode::FormCheckBoxFieldSetOptions class. Represents options for set properties in CheckboxField by FormEditor plugin in C++.' type: docs weight: 900 -url: /cpp/aspose.pdf.plugins/formcheckboxfieldsetoptions/ +url: /cpp/aspose.pdf.lowcode/formcheckboxfieldsetoptions/ --- ## FormCheckBoxFieldSetOptions class @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/formcheckboxfieldsetoptions/ Represents options for set properties in CheckboxField by [FormEditor](../formeditor/) plugin. ```cpp -class FormCheckBoxFieldSetOptions : public Aspose::Pdf::Plugins::FormFieldSetOptions +class FormCheckBoxFieldSetOptions : public Aspose::Pdf::LowCode::FormFieldSetOptions ``` ## Methods @@ -27,5 +27,5 @@ class FormCheckBoxFieldSetOptions : public Aspose::Pdf::Plugins::FormFieldSetOpt ## See Also * Class [FormFieldSetOptions](../formfieldsetoptions/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/formcheckboxfieldsetoptions/get_checked/_index.md b/english/cpp/aspose.pdf.lowcode/formcheckboxfieldsetoptions/get_checked/_index.md similarity index 64% rename from english/cpp/aspose.pdf.plugins/formcheckboxfieldsetoptions/get_checked/_index.md rename to english/cpp/aspose.pdf.lowcode/formcheckboxfieldsetoptions/get_checked/_index.md index 649b60fd58..ca236cd7a6 100644 --- a/english/cpp/aspose.pdf.plugins/formcheckboxfieldsetoptions/get_checked/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formcheckboxfieldsetoptions/get_checked/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormCheckBoxFieldSetOptions::get_Checked method +title: Aspose::Pdf::LowCode::FormCheckBoxFieldSetOptions::get_Checked method linktitle: get_Checked second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormCheckBoxFieldSetOptions::get_Checked method. Gets/sets the value to determine property Checked for modified field (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormCheckBoxFieldSetOptions::get_Checked method. Gets/sets the value to determine property Checked for modified field (if will be set) in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/formcheckboxfieldsetoptions/get_checked/ +url: /cpp/aspose.pdf.lowcode/formcheckboxfieldsetoptions/get_checked/ --- ## FormCheckBoxFieldSetOptions::get_Checked method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formcheckboxfieldsetoptions/get_checked/ Gets/sets the value to determine property Checked for modified field (if will be set). ```cpp -System::Nullable Aspose::Pdf::Plugins::FormCheckBoxFieldSetOptions::get_Checked() const +System::Nullable Aspose::Pdf::LowCode::FormCheckBoxFieldSetOptions::get_Checked() const ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormCheckBoxFieldSetOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formcheckboxfieldsetoptions/get_style/_index.md b/english/cpp/aspose.pdf.lowcode/formcheckboxfieldsetoptions/get_style/_index.md similarity index 66% rename from english/cpp/aspose.pdf.plugins/formcheckboxfieldsetoptions/get_style/_index.md rename to english/cpp/aspose.pdf.lowcode/formcheckboxfieldsetoptions/get_style/_index.md index 271568f850..afd5cef936 100644 --- a/english/cpp/aspose.pdf.plugins/formcheckboxfieldsetoptions/get_style/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formcheckboxfieldsetoptions/get_style/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormCheckBoxFieldSetOptions::get_Style method +title: Aspose::Pdf::LowCode::FormCheckBoxFieldSetOptions::get_Style method linktitle: get_Style second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormCheckBoxFieldSetOptions::get_Style method. Gets/sets the value to determine property BoxStyle for modified field (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormCheckBoxFieldSetOptions::get_Style method. Gets/sets the value to determine property BoxStyle for modified field (if will be set) in C++.' type: docs weight: 200 -url: /cpp/aspose.pdf.plugins/formcheckboxfieldsetoptions/get_style/ +url: /cpp/aspose.pdf.lowcode/formcheckboxfieldsetoptions/get_style/ --- ## FormCheckBoxFieldSetOptions::get_Style method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/formcheckboxfieldsetoptions/get_style/ Gets/sets the value to determine property BoxStyle for modified field (if will be set). ```cpp -System::Nullable Aspose::Pdf::Plugins::FormCheckBoxFieldSetOptions::get_Style() const +System::Nullable Aspose::Pdf::LowCode::FormCheckBoxFieldSetOptions::get_Style() const ``` ## See Also @@ -21,5 +21,5 @@ System::Nullable Aspose::Pdf::Plugins::FormCheckBoxFieldSetOpti * Class [Nullable](../../../system/nullable/) * Enum [BoxStyle](../../../aspose.pdf.forms/boxstyle/) * Class [FormCheckBoxFieldSetOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formcheckboxfieldsetoptions/set_checked/_index.md b/english/cpp/aspose.pdf.lowcode/formcheckboxfieldsetoptions/set_checked/_index.md similarity index 64% rename from english/cpp/aspose.pdf.plugins/formcheckboxfieldsetoptions/set_checked/_index.md rename to english/cpp/aspose.pdf.lowcode/formcheckboxfieldsetoptions/set_checked/_index.md index 80a241df78..ffe32eee90 100644 --- a/english/cpp/aspose.pdf.plugins/formcheckboxfieldsetoptions/set_checked/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formcheckboxfieldsetoptions/set_checked/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormCheckBoxFieldSetOptions::set_Checked method +title: Aspose::Pdf::LowCode::FormCheckBoxFieldSetOptions::set_Checked method linktitle: set_Checked second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormCheckBoxFieldSetOptions::set_Checked method. Gets/sets the value to determine property Checked for modified field (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormCheckBoxFieldSetOptions::set_Checked method. Gets/sets the value to determine property Checked for modified field (if will be set) in C++.' type: docs weight: 300 -url: /cpp/aspose.pdf.plugins/formcheckboxfieldsetoptions/set_checked/ +url: /cpp/aspose.pdf.lowcode/formcheckboxfieldsetoptions/set_checked/ --- ## FormCheckBoxFieldSetOptions::set_Checked method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formcheckboxfieldsetoptions/set_checked/ Gets/sets the value to determine property Checked for modified field (if will be set). ```cpp -void Aspose::Pdf::Plugins::FormCheckBoxFieldSetOptions::set_Checked(System::Nullable value) +void Aspose::Pdf::LowCode::FormCheckBoxFieldSetOptions::set_Checked(System::Nullable value) ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormCheckBoxFieldSetOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formcheckboxfieldsetoptions/set_style/_index.md b/english/cpp/aspose.pdf.lowcode/formcheckboxfieldsetoptions/set_style/_index.md similarity index 66% rename from english/cpp/aspose.pdf.plugins/formcheckboxfieldsetoptions/set_style/_index.md rename to english/cpp/aspose.pdf.lowcode/formcheckboxfieldsetoptions/set_style/_index.md index 7f1f281418..b83762bc17 100644 --- a/english/cpp/aspose.pdf.plugins/formcheckboxfieldsetoptions/set_style/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formcheckboxfieldsetoptions/set_style/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormCheckBoxFieldSetOptions::set_Style method +title: Aspose::Pdf::LowCode::FormCheckBoxFieldSetOptions::set_Style method linktitle: set_Style second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormCheckBoxFieldSetOptions::set_Style method. Gets/sets the value to determine property BoxStyle for modified field (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormCheckBoxFieldSetOptions::set_Style method. Gets/sets the value to determine property BoxStyle for modified field (if will be set) in C++.' type: docs weight: 400 -url: /cpp/aspose.pdf.plugins/formcheckboxfieldsetoptions/set_style/ +url: /cpp/aspose.pdf.lowcode/formcheckboxfieldsetoptions/set_style/ --- ## FormCheckBoxFieldSetOptions::set_Style method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/formcheckboxfieldsetoptions/set_style/ Gets/sets the value to determine property BoxStyle for modified field (if will be set). ```cpp -void Aspose::Pdf::Plugins::FormCheckBoxFieldSetOptions::set_Style(System::Nullable value) +void Aspose::Pdf::LowCode::FormCheckBoxFieldSetOptions::set_Style(System::Nullable value) ``` ## See Also @@ -21,5 +21,5 @@ void Aspose::Pdf::Plugins::FormCheckBoxFieldSetOptions::set_Style(System::Nullab * Class [Nullable](../../../system/nullable/) * Enum [BoxStyle](../../../aspose.pdf.forms/boxstyle/) * Class [FormCheckBoxFieldSetOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formcomboboxfieldcreateoptions/_index.md b/english/cpp/aspose.pdf.lowcode/formcomboboxfieldcreateoptions/_index.md similarity index 83% rename from english/cpp/aspose.pdf.plugins/formcomboboxfieldcreateoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/formcomboboxfieldcreateoptions/_index.md index 892e530891..00e505c11c 100644 --- a/english/cpp/aspose.pdf.plugins/formcomboboxfieldcreateoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formcomboboxfieldcreateoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormComboBoxFieldCreateOptions class +title: Aspose::Pdf::LowCode::FormComboBoxFieldCreateOptions class linktitle: FormComboBoxFieldCreateOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormComboBoxFieldCreateOptions class. Represents options for creating ComboBoxField by FormEditor plugin in C++.' +description: 'Aspose::Pdf::LowCode::FormComboBoxFieldCreateOptions class. Represents options for creating ComboBoxField by FormEditor plugin in C++.' type: docs weight: 1000 -url: /cpp/aspose.pdf.plugins/formcomboboxfieldcreateoptions/ +url: /cpp/aspose.pdf.lowcode/formcomboboxfieldcreateoptions/ --- ## FormComboBoxFieldCreateOptions class @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/formcomboboxfieldcreateoptions/ Represents options for creating ComboBoxField by [FormEditor](../formeditor/) plugin. ```cpp -class FormComboBoxFieldCreateOptions : public Aspose::Pdf::Plugins::FormFieldCreateOptions +class FormComboBoxFieldCreateOptions : public Aspose::Pdf::LowCode::FormFieldCreateOptions ``` ## Methods @@ -30,5 +30,5 @@ class FormComboBoxFieldCreateOptions : public Aspose::Pdf::Plugins::FormFieldCre ## See Also * Class [FormFieldCreateOptions](../formfieldcreateoptions/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/formcomboboxfieldcreateoptions/formcomboboxfieldcreateoptions/_index.md b/english/cpp/aspose.pdf.lowcode/formcomboboxfieldcreateoptions/formcomboboxfieldcreateoptions/_index.md similarity index 77% rename from english/cpp/aspose.pdf.plugins/formcomboboxfieldcreateoptions/formcomboboxfieldcreateoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/formcomboboxfieldcreateoptions/formcomboboxfieldcreateoptions/_index.md index c7f3e6ded1..99b44c2c39 100644 --- a/english/cpp/aspose.pdf.plugins/formcomboboxfieldcreateoptions/formcomboboxfieldcreateoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formcomboboxfieldcreateoptions/formcomboboxfieldcreateoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormComboBoxFieldCreateOptions::FormComboBoxFieldCreateOptions constructor +title: Aspose::Pdf::LowCode::FormComboBoxFieldCreateOptions::FormComboBoxFieldCreateOptions constructor linktitle: FormComboBoxFieldCreateOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormComboBoxFieldCreateOptions::FormComboBoxFieldCreateOptions constructor. Initializes a new instance of the FormComboBoxFieldCreateOptions object, that containing parameters for created and added ComboBoxField in C++.' +description: 'Aspose::Pdf::LowCode::FormComboBoxFieldCreateOptions::FormComboBoxFieldCreateOptions constructor. Initializes a new instance of the FormComboBoxFieldCreateOptions object, that containing parameters for created and added ComboBoxField in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/formcomboboxfieldcreateoptions/formcomboboxfieldcreateoptions/ +url: /cpp/aspose.pdf.lowcode/formcomboboxfieldcreateoptions/formcomboboxfieldcreateoptions/ --- ## FormComboBoxFieldCreateOptions::FormComboBoxFieldCreateOptions constructor @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/formcomboboxfieldcreateoptions/formcomboboxfieldcre Initializes a new instance of the [FormComboBoxFieldCreateOptions](../) object, that containing parameters for created and added ComboBoxField. ```cpp -Aspose::Pdf::Plugins::FormComboBoxFieldCreateOptions::FormComboBoxFieldCreateOptions(int32_t pageNum, System::SharedPtr rect) +Aspose::Pdf::LowCode::FormComboBoxFieldCreateOptions::FormComboBoxFieldCreateOptions(int32_t pageNum, System::SharedPtr rect) ``` @@ -27,5 +27,5 @@ Aspose::Pdf::Plugins::FormComboBoxFieldCreateOptions::FormComboBoxFieldCreateOpt * Typedef [SharedPtr](../../../system/sharedptr/) * Class [Rectangle](../../../aspose.pdf/rectangle/) * Class [FormComboBoxFieldCreateOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formcomboboxfieldcreateoptions/get_editable/_index.md b/english/cpp/aspose.pdf.lowcode/formcomboboxfieldcreateoptions/get_editable/_index.md similarity index 66% rename from english/cpp/aspose.pdf.plugins/formcomboboxfieldcreateoptions/get_editable/_index.md rename to english/cpp/aspose.pdf.lowcode/formcomboboxfieldcreateoptions/get_editable/_index.md index 0e5605bd53..76b3dccf0c 100644 --- a/english/cpp/aspose.pdf.plugins/formcomboboxfieldcreateoptions/get_editable/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formcomboboxfieldcreateoptions/get_editable/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormComboBoxFieldCreateOptions::get_Editable method +title: Aspose::Pdf::LowCode::FormComboBoxFieldCreateOptions::get_Editable method linktitle: get_Editable second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormComboBoxFieldCreateOptions::get_Editable method. Gets/sets the value to determine whether created ComboBoxField is editable or not (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormComboBoxFieldCreateOptions::get_Editable method. Gets/sets the value to determine whether created ComboBoxField is editable or not (if will be set) in C++.' type: docs weight: 200 -url: /cpp/aspose.pdf.plugins/formcomboboxfieldcreateoptions/get_editable/ +url: /cpp/aspose.pdf.lowcode/formcomboboxfieldcreateoptions/get_editable/ --- ## FormComboBoxFieldCreateOptions::get_Editable method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formcomboboxfieldcreateoptions/get_editable/ Gets/sets the value to determine whether created ComboBoxField is editable or not (if will be set). ```cpp -System::Nullable Aspose::Pdf::Plugins::FormComboBoxFieldCreateOptions::get_Editable() const +System::Nullable Aspose::Pdf::LowCode::FormComboBoxFieldCreateOptions::get_Editable() const ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormComboBoxFieldCreateOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formcomboboxfieldcreateoptions/get_options/_index.md b/english/cpp/aspose.pdf.lowcode/formcomboboxfieldcreateoptions/get_options/_index.md similarity index 70% rename from english/cpp/aspose.pdf.plugins/formcomboboxfieldcreateoptions/get_options/_index.md rename to english/cpp/aspose.pdf.lowcode/formcomboboxfieldcreateoptions/get_options/_index.md index 1dd46ef335..b00c374f5f 100644 --- a/english/cpp/aspose.pdf.plugins/formcomboboxfieldcreateoptions/get_options/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formcomboboxfieldcreateoptions/get_options/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormComboBoxFieldCreateOptions::get_Options method +title: Aspose::Pdf::LowCode::FormComboBoxFieldCreateOptions::get_Options method linktitle: get_Options second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormComboBoxFieldCreateOptions::get_Options method. Gets/sets the value to determine property Options for created ComboBoxField (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormComboBoxFieldCreateOptions::get_Options method. Gets/sets the value to determine property Options for created ComboBoxField (if will be set) in C++.' type: docs weight: 300 -url: /cpp/aspose.pdf.plugins/formcomboboxfieldcreateoptions/get_options/ +url: /cpp/aspose.pdf.lowcode/formcomboboxfieldcreateoptions/get_options/ --- ## FormComboBoxFieldCreateOptions::get_Options method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/formcomboboxfieldcreateoptions/get_options/ Gets/sets the value to determine property Options for created ComboBoxField (if will be set). ```cpp -const System::SharedPtr> & Aspose::Pdf::Plugins::FormComboBoxFieldCreateOptions::get_Options() const +const System::SharedPtr> & Aspose::Pdf::LowCode::FormComboBoxFieldCreateOptions::get_Options() const ``` ## See Also @@ -22,5 +22,5 @@ const System::SharedPtr> & As * Class [List](../../../system.collections.generic/list/) * Class [String](../../../system/string/) * Class [FormComboBoxFieldCreateOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formcomboboxfieldcreateoptions/get_selected/_index.md b/english/cpp/aspose.pdf.lowcode/formcomboboxfieldcreateoptions/get_selected/_index.md similarity index 65% rename from english/cpp/aspose.pdf.plugins/formcomboboxfieldcreateoptions/get_selected/_index.md rename to english/cpp/aspose.pdf.lowcode/formcomboboxfieldcreateoptions/get_selected/_index.md index 21a9b70449..89d93e7389 100644 --- a/english/cpp/aspose.pdf.plugins/formcomboboxfieldcreateoptions/get_selected/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formcomboboxfieldcreateoptions/get_selected/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormComboBoxFieldCreateOptions::get_Selected method +title: Aspose::Pdf::LowCode::FormComboBoxFieldCreateOptions::get_Selected method linktitle: get_Selected second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormComboBoxFieldCreateOptions::get_Selected method. Gets/sets the value to determine property Selected for created ComboBoxField (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormComboBoxFieldCreateOptions::get_Selected method. Gets/sets the value to determine property Selected for created ComboBoxField (if will be set) in C++.' type: docs weight: 400 -url: /cpp/aspose.pdf.plugins/formcomboboxfieldcreateoptions/get_selected/ +url: /cpp/aspose.pdf.lowcode/formcomboboxfieldcreateoptions/get_selected/ --- ## FormComboBoxFieldCreateOptions::get_Selected method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formcomboboxfieldcreateoptions/get_selected/ Gets/sets the value to determine property Selected for created ComboBoxField (if will be set). ```cpp -System::Nullable Aspose::Pdf::Plugins::FormComboBoxFieldCreateOptions::get_Selected() const +System::Nullable Aspose::Pdf::LowCode::FormComboBoxFieldCreateOptions::get_Selected() const ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormComboBoxFieldCreateOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formcomboboxfieldcreateoptions/set_editable/_index.md b/english/cpp/aspose.pdf.lowcode/formcomboboxfieldcreateoptions/set_editable/_index.md similarity index 66% rename from english/cpp/aspose.pdf.plugins/formcomboboxfieldcreateoptions/set_editable/_index.md rename to english/cpp/aspose.pdf.lowcode/formcomboboxfieldcreateoptions/set_editable/_index.md index cc48f77517..43314f6bf8 100644 --- a/english/cpp/aspose.pdf.plugins/formcomboboxfieldcreateoptions/set_editable/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formcomboboxfieldcreateoptions/set_editable/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormComboBoxFieldCreateOptions::set_Editable method +title: Aspose::Pdf::LowCode::FormComboBoxFieldCreateOptions::set_Editable method linktitle: set_Editable second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormComboBoxFieldCreateOptions::set_Editable method. Gets/sets the value to determine whether created ComboBoxField is editable or not (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormComboBoxFieldCreateOptions::set_Editable method. Gets/sets the value to determine whether created ComboBoxField is editable or not (if will be set) in C++.' type: docs weight: 500 -url: /cpp/aspose.pdf.plugins/formcomboboxfieldcreateoptions/set_editable/ +url: /cpp/aspose.pdf.lowcode/formcomboboxfieldcreateoptions/set_editable/ --- ## FormComboBoxFieldCreateOptions::set_Editable method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formcomboboxfieldcreateoptions/set_editable/ Gets/sets the value to determine whether created ComboBoxField is editable or not (if will be set). ```cpp -void Aspose::Pdf::Plugins::FormComboBoxFieldCreateOptions::set_Editable(System::Nullable value) +void Aspose::Pdf::LowCode::FormComboBoxFieldCreateOptions::set_Editable(System::Nullable value) ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormComboBoxFieldCreateOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formcomboboxfieldcreateoptions/set_options/_index.md b/english/cpp/aspose.pdf.lowcode/formcomboboxfieldcreateoptions/set_options/_index.md similarity index 70% rename from english/cpp/aspose.pdf.plugins/formcomboboxfieldcreateoptions/set_options/_index.md rename to english/cpp/aspose.pdf.lowcode/formcomboboxfieldcreateoptions/set_options/_index.md index 488c0d22f2..d8692bdf5b 100644 --- a/english/cpp/aspose.pdf.plugins/formcomboboxfieldcreateoptions/set_options/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formcomboboxfieldcreateoptions/set_options/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormComboBoxFieldCreateOptions::set_Options method +title: Aspose::Pdf::LowCode::FormComboBoxFieldCreateOptions::set_Options method linktitle: set_Options second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormComboBoxFieldCreateOptions::set_Options method. Gets/sets the value to determine property Options for created ComboBoxField (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormComboBoxFieldCreateOptions::set_Options method. Gets/sets the value to determine property Options for created ComboBoxField (if will be set) in C++.' type: docs weight: 600 -url: /cpp/aspose.pdf.plugins/formcomboboxfieldcreateoptions/set_options/ +url: /cpp/aspose.pdf.lowcode/formcomboboxfieldcreateoptions/set_options/ --- ## FormComboBoxFieldCreateOptions::set_Options method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/formcomboboxfieldcreateoptions/set_options/ Gets/sets the value to determine property Options for created ComboBoxField (if will be set). ```cpp -void Aspose::Pdf::Plugins::FormComboBoxFieldCreateOptions::set_Options(System::SharedPtr> value) +void Aspose::Pdf::LowCode::FormComboBoxFieldCreateOptions::set_Options(System::SharedPtr> value) ``` ## See Also @@ -22,5 +22,5 @@ void Aspose::Pdf::Plugins::FormComboBoxFieldCreateOptions::set_Options(System::S * Class [List](../../../system.collections.generic/list/) * Class [String](../../../system/string/) * Class [FormComboBoxFieldCreateOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formcomboboxfieldcreateoptions/set_selected/_index.md b/english/cpp/aspose.pdf.lowcode/formcomboboxfieldcreateoptions/set_selected/_index.md similarity index 65% rename from english/cpp/aspose.pdf.plugins/formcomboboxfieldcreateoptions/set_selected/_index.md rename to english/cpp/aspose.pdf.lowcode/formcomboboxfieldcreateoptions/set_selected/_index.md index edce19b157..3331506ed1 100644 --- a/english/cpp/aspose.pdf.plugins/formcomboboxfieldcreateoptions/set_selected/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formcomboboxfieldcreateoptions/set_selected/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormComboBoxFieldCreateOptions::set_Selected method +title: Aspose::Pdf::LowCode::FormComboBoxFieldCreateOptions::set_Selected method linktitle: set_Selected second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormComboBoxFieldCreateOptions::set_Selected method. Gets/sets the value to determine property Selected for created ComboBoxField (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormComboBoxFieldCreateOptions::set_Selected method. Gets/sets the value to determine property Selected for created ComboBoxField (if will be set) in C++.' type: docs weight: 700 -url: /cpp/aspose.pdf.plugins/formcomboboxfieldcreateoptions/set_selected/ +url: /cpp/aspose.pdf.lowcode/formcomboboxfieldcreateoptions/set_selected/ --- ## FormComboBoxFieldCreateOptions::set_Selected method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formcomboboxfieldcreateoptions/set_selected/ Gets/sets the value to determine property Selected for created ComboBoxField (if will be set). ```cpp -void Aspose::Pdf::Plugins::FormComboBoxFieldCreateOptions::set_Selected(System::Nullable value) +void Aspose::Pdf::LowCode::FormComboBoxFieldCreateOptions::set_Selected(System::Nullable value) ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormComboBoxFieldCreateOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formcomboboxfieldsetoptions/_index.md b/english/cpp/aspose.pdf.lowcode/formcomboboxfieldsetoptions/_index.md similarity index 82% rename from english/cpp/aspose.pdf.plugins/formcomboboxfieldsetoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/formcomboboxfieldsetoptions/_index.md index febfe70080..dde7eb6c21 100644 --- a/english/cpp/aspose.pdf.plugins/formcomboboxfieldsetoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formcomboboxfieldsetoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormComboBoxFieldSetOptions class +title: Aspose::Pdf::LowCode::FormComboBoxFieldSetOptions class linktitle: FormComboBoxFieldSetOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormComboBoxFieldSetOptions class. Represents options for set properties in ComboBoxField by FormEditor plugin in C++.' +description: 'Aspose::Pdf::LowCode::FormComboBoxFieldSetOptions class. Represents options for set properties in ComboBoxField by FormEditor plugin in C++.' type: docs weight: 1100 -url: /cpp/aspose.pdf.plugins/formcomboboxfieldsetoptions/ +url: /cpp/aspose.pdf.lowcode/formcomboboxfieldsetoptions/ --- ## FormComboBoxFieldSetOptions class @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/formcomboboxfieldsetoptions/ Represents options for set properties in ComboBoxField by [FormEditor](../formeditor/) plugin. ```cpp -class FormComboBoxFieldSetOptions : public Aspose::Pdf::Plugins::FormFieldSetOptions +class FormComboBoxFieldSetOptions : public Aspose::Pdf::LowCode::FormFieldSetOptions ``` ## Methods @@ -29,5 +29,5 @@ class FormComboBoxFieldSetOptions : public Aspose::Pdf::Plugins::FormFieldSetOpt ## See Also * Class [FormFieldSetOptions](../formfieldsetoptions/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/formcomboboxfieldsetoptions/get_editable/_index.md b/english/cpp/aspose.pdf.lowcode/formcomboboxfieldsetoptions/get_editable/_index.md similarity index 64% rename from english/cpp/aspose.pdf.plugins/formcomboboxfieldsetoptions/get_editable/_index.md rename to english/cpp/aspose.pdf.lowcode/formcomboboxfieldsetoptions/get_editable/_index.md index cb7859a7c3..0ee14dedf5 100644 --- a/english/cpp/aspose.pdf.plugins/formcomboboxfieldsetoptions/get_editable/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formcomboboxfieldsetoptions/get_editable/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormComboBoxFieldSetOptions::get_Editable method +title: Aspose::Pdf::LowCode::FormComboBoxFieldSetOptions::get_Editable method linktitle: get_Editable second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormComboBoxFieldSetOptions::get_Editable method. Gets/sets the value to determine property Editable for modified field (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormComboBoxFieldSetOptions::get_Editable method. Gets/sets the value to determine property Editable for modified field (if will be set) in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/formcomboboxfieldsetoptions/get_editable/ +url: /cpp/aspose.pdf.lowcode/formcomboboxfieldsetoptions/get_editable/ --- ## FormComboBoxFieldSetOptions::get_Editable method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formcomboboxfieldsetoptions/get_editable/ Gets/sets the value to determine property Editable for modified field (if will be set). ```cpp -System::Nullable Aspose::Pdf::Plugins::FormComboBoxFieldSetOptions::get_Editable() const +System::Nullable Aspose::Pdf::LowCode::FormComboBoxFieldSetOptions::get_Editable() const ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormComboBoxFieldSetOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formcomboboxfieldsetoptions/get_options/_index.md b/english/cpp/aspose.pdf.lowcode/formcomboboxfieldsetoptions/get_options/_index.md similarity index 69% rename from english/cpp/aspose.pdf.plugins/formcomboboxfieldsetoptions/get_options/_index.md rename to english/cpp/aspose.pdf.lowcode/formcomboboxfieldsetoptions/get_options/_index.md index f3df4d3382..add6bb2715 100644 --- a/english/cpp/aspose.pdf.plugins/formcomboboxfieldsetoptions/get_options/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formcomboboxfieldsetoptions/get_options/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormComboBoxFieldSetOptions::get_Options method +title: Aspose::Pdf::LowCode::FormComboBoxFieldSetOptions::get_Options method linktitle: get_Options second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormComboBoxFieldSetOptions::get_Options method. Gets/sets the value to determine property Options for modified field (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormComboBoxFieldSetOptions::get_Options method. Gets/sets the value to determine property Options for modified field (if will be set) in C++.' type: docs weight: 200 -url: /cpp/aspose.pdf.plugins/formcomboboxfieldsetoptions/get_options/ +url: /cpp/aspose.pdf.lowcode/formcomboboxfieldsetoptions/get_options/ --- ## FormComboBoxFieldSetOptions::get_Options method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/formcomboboxfieldsetoptions/get_options/ Gets/sets the value to determine property Options for modified field (if will be set). ```cpp -const System::SharedPtr> & Aspose::Pdf::Plugins::FormComboBoxFieldSetOptions::get_Options() const +const System::SharedPtr> & Aspose::Pdf::LowCode::FormComboBoxFieldSetOptions::get_Options() const ``` ## See Also @@ -22,5 +22,5 @@ const System::SharedPtr> & As * Class [List](../../../system.collections.generic/list/) * Class [String](../../../system/string/) * Class [FormComboBoxFieldSetOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formcomboboxfieldsetoptions/get_selected/_index.md b/english/cpp/aspose.pdf.lowcode/formcomboboxfieldsetoptions/get_selected/_index.md similarity index 64% rename from english/cpp/aspose.pdf.plugins/formcomboboxfieldsetoptions/get_selected/_index.md rename to english/cpp/aspose.pdf.lowcode/formcomboboxfieldsetoptions/get_selected/_index.md index 6eb0fd9a12..0b8a02ccd7 100644 --- a/english/cpp/aspose.pdf.plugins/formcomboboxfieldsetoptions/get_selected/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formcomboboxfieldsetoptions/get_selected/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormComboBoxFieldSetOptions::get_Selected method +title: Aspose::Pdf::LowCode::FormComboBoxFieldSetOptions::get_Selected method linktitle: get_Selected second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormComboBoxFieldSetOptions::get_Selected method. Gets/sets the value to determine property Selected for modified field (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormComboBoxFieldSetOptions::get_Selected method. Gets/sets the value to determine property Selected for modified field (if will be set) in C++.' type: docs weight: 300 -url: /cpp/aspose.pdf.plugins/formcomboboxfieldsetoptions/get_selected/ +url: /cpp/aspose.pdf.lowcode/formcomboboxfieldsetoptions/get_selected/ --- ## FormComboBoxFieldSetOptions::get_Selected method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formcomboboxfieldsetoptions/get_selected/ Gets/sets the value to determine property Selected for modified field (if will be set). ```cpp -System::Nullable Aspose::Pdf::Plugins::FormComboBoxFieldSetOptions::get_Selected() const +System::Nullable Aspose::Pdf::LowCode::FormComboBoxFieldSetOptions::get_Selected() const ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormComboBoxFieldSetOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formcomboboxfieldsetoptions/set_editable/_index.md b/english/cpp/aspose.pdf.lowcode/formcomboboxfieldsetoptions/set_editable/_index.md similarity index 64% rename from english/cpp/aspose.pdf.plugins/formcomboboxfieldsetoptions/set_editable/_index.md rename to english/cpp/aspose.pdf.lowcode/formcomboboxfieldsetoptions/set_editable/_index.md index 9998b73743..dc28a3beff 100644 --- a/english/cpp/aspose.pdf.plugins/formcomboboxfieldsetoptions/set_editable/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formcomboboxfieldsetoptions/set_editable/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormComboBoxFieldSetOptions::set_Editable method +title: Aspose::Pdf::LowCode::FormComboBoxFieldSetOptions::set_Editable method linktitle: set_Editable second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormComboBoxFieldSetOptions::set_Editable method. Gets/sets the value to determine property Editable for modified field (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormComboBoxFieldSetOptions::set_Editable method. Gets/sets the value to determine property Editable for modified field (if will be set) in C++.' type: docs weight: 400 -url: /cpp/aspose.pdf.plugins/formcomboboxfieldsetoptions/set_editable/ +url: /cpp/aspose.pdf.lowcode/formcomboboxfieldsetoptions/set_editable/ --- ## FormComboBoxFieldSetOptions::set_Editable method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formcomboboxfieldsetoptions/set_editable/ Gets/sets the value to determine property Editable for modified field (if will be set). ```cpp -void Aspose::Pdf::Plugins::FormComboBoxFieldSetOptions::set_Editable(System::Nullable value) +void Aspose::Pdf::LowCode::FormComboBoxFieldSetOptions::set_Editable(System::Nullable value) ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormComboBoxFieldSetOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formcomboboxfieldsetoptions/set_options/_index.md b/english/cpp/aspose.pdf.lowcode/formcomboboxfieldsetoptions/set_options/_index.md similarity index 69% rename from english/cpp/aspose.pdf.plugins/formcomboboxfieldsetoptions/set_options/_index.md rename to english/cpp/aspose.pdf.lowcode/formcomboboxfieldsetoptions/set_options/_index.md index 9c9cee2717..d5d3c034ac 100644 --- a/english/cpp/aspose.pdf.plugins/formcomboboxfieldsetoptions/set_options/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formcomboboxfieldsetoptions/set_options/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormComboBoxFieldSetOptions::set_Options method +title: Aspose::Pdf::LowCode::FormComboBoxFieldSetOptions::set_Options method linktitle: set_Options second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormComboBoxFieldSetOptions::set_Options method. Gets/sets the value to determine property Options for modified field (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormComboBoxFieldSetOptions::set_Options method. Gets/sets the value to determine property Options for modified field (if will be set) in C++.' type: docs weight: 500 -url: /cpp/aspose.pdf.plugins/formcomboboxfieldsetoptions/set_options/ +url: /cpp/aspose.pdf.lowcode/formcomboboxfieldsetoptions/set_options/ --- ## FormComboBoxFieldSetOptions::set_Options method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/formcomboboxfieldsetoptions/set_options/ Gets/sets the value to determine property Options for modified field (if will be set). ```cpp -void Aspose::Pdf::Plugins::FormComboBoxFieldSetOptions::set_Options(System::SharedPtr> value) +void Aspose::Pdf::LowCode::FormComboBoxFieldSetOptions::set_Options(System::SharedPtr> value) ``` ## See Also @@ -22,5 +22,5 @@ void Aspose::Pdf::Plugins::FormComboBoxFieldSetOptions::set_Options(System::Shar * Class [List](../../../system.collections.generic/list/) * Class [String](../../../system/string/) * Class [FormComboBoxFieldSetOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formcomboboxfieldsetoptions/set_selected/_index.md b/english/cpp/aspose.pdf.lowcode/formcomboboxfieldsetoptions/set_selected/_index.md similarity index 64% rename from english/cpp/aspose.pdf.plugins/formcomboboxfieldsetoptions/set_selected/_index.md rename to english/cpp/aspose.pdf.lowcode/formcomboboxfieldsetoptions/set_selected/_index.md index 3b16a180ff..3b4ec85325 100644 --- a/english/cpp/aspose.pdf.plugins/formcomboboxfieldsetoptions/set_selected/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formcomboboxfieldsetoptions/set_selected/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormComboBoxFieldSetOptions::set_Selected method +title: Aspose::Pdf::LowCode::FormComboBoxFieldSetOptions::set_Selected method linktitle: set_Selected second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormComboBoxFieldSetOptions::set_Selected method. Gets/sets the value to determine property Selected for modified field (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormComboBoxFieldSetOptions::set_Selected method. Gets/sets the value to determine property Selected for modified field (if will be set) in C++.' type: docs weight: 600 -url: /cpp/aspose.pdf.plugins/formcomboboxfieldsetoptions/set_selected/ +url: /cpp/aspose.pdf.lowcode/formcomboboxfieldsetoptions/set_selected/ --- ## FormComboBoxFieldSetOptions::set_Selected method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formcomboboxfieldsetoptions/set_selected/ Gets/sets the value to determine property Selected for modified field (if will be set). ```cpp -void Aspose::Pdf::Plugins::FormComboBoxFieldSetOptions::set_Selected(System::Nullable value) +void Aspose::Pdf::LowCode::FormComboBoxFieldSetOptions::set_Selected(System::Nullable value) ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormComboBoxFieldSetOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formeditor/_index.md b/english/cpp/aspose.pdf.lowcode/formeditor/_index.md similarity index 64% rename from english/cpp/aspose.pdf.plugins/formeditor/_index.md rename to english/cpp/aspose.pdf.lowcode/formeditor/_index.md index deaa8f88e9..771fca1194 100644 --- a/english/cpp/aspose.pdf.plugins/formeditor/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formeditor/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormEditor class +title: Aspose::Pdf::LowCode::FormEditor class linktitle: FormEditor second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormEditor class. Represents FormEditor plugin in C++.' +description: 'Aspose::Pdf::LowCode::FormEditor class. Represents FormEditor plugin in C++.' type: docs weight: 1200 -url: /cpp/aspose.pdf.plugins/formeditor/ +url: /cpp/aspose.pdf.lowcode/formeditor/ --- ## FormEditor class @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/formeditor/ Represents [FormEditor](./) plugin. ```cpp -class FormEditor : public Aspose::Pdf::Plugins::IPlugin +class FormEditor : public Aspose::Pdf::LowCode::IPlugin ``` ## Methods @@ -24,5 +24,5 @@ class FormEditor : public Aspose::Pdf::Plugins::IPlugin ## See Also * Class [IPlugin](../iplugin/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/formeditor/process/_index.md b/english/cpp/aspose.pdf.lowcode/formeditor/process/_index.md similarity index 74% rename from english/cpp/aspose.pdf.plugins/formeditor/process/_index.md rename to english/cpp/aspose.pdf.lowcode/formeditor/process/_index.md index eab26a9616..ab5ef03cef 100644 --- a/english/cpp/aspose.pdf.plugins/formeditor/process/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formeditor/process/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormEditor::Process method +title: Aspose::Pdf::LowCode::FormEditor::Process method linktitle: Process second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormEditor::Process method. Starts the FormEditor processing with the specified parameters in C++.' +description: 'Aspose::Pdf::LowCode::FormEditor::Process method. Starts the FormEditor processing with the specified parameters in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/formeditor/process/ +url: /cpp/aspose.pdf.lowcode/formeditor/process/ --- ## FormEditor::Process method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/formeditor/process/ Starts the [FormEditor](../) processing with the specified parameters. ```cpp -System::SharedPtr Aspose::Pdf::Plugins::FormEditor::Process(System::SharedPtr options) override +System::SharedPtr Aspose::Pdf::LowCode::FormEditor::Process(System::SharedPtr options) override ``` @@ -31,5 +31,5 @@ An [ResultContainer](../../resultcontainer/) object containing the result of the * Class [ResultContainer](../../resultcontainer/) * Class [IPluginOptions](../../ipluginoptions/) * Class [FormEditor](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formeditoraddoptions/_index.md b/english/cpp/aspose.pdf.lowcode/formeditoraddoptions/_index.md similarity index 70% rename from english/cpp/aspose.pdf.plugins/formeditoraddoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/formeditoraddoptions/_index.md index 56587e8f92..453d49cd9c 100644 --- a/english/cpp/aspose.pdf.plugins/formeditoraddoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formeditoraddoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormEditorAddOptions class +title: Aspose::Pdf::LowCode::FormEditorAddOptions class linktitle: FormEditorAddOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormEditorAddOptions class. Represents options for add Fields to document by FormEditor plugin in C++.' +description: 'Aspose::Pdf::LowCode::FormEditorAddOptions class. Represents options for add Fields to document by FormEditor plugin in C++.' type: docs weight: 1300 -url: /cpp/aspose.pdf.plugins/formeditoraddoptions/ +url: /cpp/aspose.pdf.lowcode/formeditoraddoptions/ --- ## FormEditorAddOptions class @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/formeditoraddoptions/ Represents options for add Fields to document by [FormEditor](../formeditor/) plugin. ```cpp -class FormEditorAddOptions : public Aspose::Pdf::Plugins::FormEditorOptions +class FormEditorAddOptions : public Aspose::Pdf::LowCode::FormEditorOptions ``` ## Methods @@ -24,5 +24,5 @@ class FormEditorAddOptions : public Aspose::Pdf::Plugins::FormEditorOptions ## See Also * Class [FormEditorOptions](../formeditoroptions/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/formeditoraddoptions/formeditoraddoptions/_index.md b/english/cpp/aspose.pdf.lowcode/formeditoraddoptions/formeditoraddoptions/_index.md similarity index 77% rename from english/cpp/aspose.pdf.plugins/formeditoraddoptions/formeditoraddoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/formeditoraddoptions/formeditoraddoptions/_index.md index f8321a2acb..c849d82f61 100644 --- a/english/cpp/aspose.pdf.plugins/formeditoraddoptions/formeditoraddoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formeditoraddoptions/formeditoraddoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormEditorAddOptions::FormEditorAddOptions constructor +title: Aspose::Pdf::LowCode::FormEditorAddOptions::FormEditorAddOptions constructor linktitle: FormEditorAddOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormEditorAddOptions::FormEditorAddOptions constructor. Initializes a new instance of the PdfFormAddFieldsOptions object in C++.' +description: 'Aspose::Pdf::LowCode::FormEditorAddOptions::FormEditorAddOptions constructor. Initializes a new instance of the PdfFormAddFieldsOptions object in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/formeditoraddoptions/formeditoraddoptions/ +url: /cpp/aspose.pdf.lowcode/formeditoraddoptions/formeditoraddoptions/ --- ## FormEditorAddOptions::FormEditorAddOptions constructor @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/formeditoraddoptions/formeditoraddoptions/ Initializes a new instance of the [PdfFormAddFieldsOptions](../) object. ```cpp -Aspose::Pdf::Plugins::FormEditorAddOptions::FormEditorAddOptions(System::SharedPtr>> fieldsCreateOptions) +Aspose::Pdf::LowCode::FormEditorAddOptions::FormEditorAddOptions(System::SharedPtr>> fieldsCreateOptions) ``` @@ -27,5 +27,5 @@ Aspose::Pdf::Plugins::FormEditorAddOptions::FormEditorAddOptions(System::SharedP * Class [List](../../../system.collections.generic/list/) * Class [FormFieldCreateOptions](../../formfieldcreateoptions/) * Class [FormEditorAddOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formeditoroptions/_index.md b/english/cpp/aspose.pdf.lowcode/formeditoroptions/_index.md similarity index 55% rename from english/cpp/aspose.pdf.plugins/formeditoroptions/_index.md rename to english/cpp/aspose.pdf.lowcode/formeditoroptions/_index.md index bbff60c0ac..4398bc8310 100644 --- a/english/cpp/aspose.pdf.plugins/formeditoroptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formeditoroptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormEditorOptions class +title: Aspose::Pdf::LowCode::FormEditorOptions class linktitle: FormEditorOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormEditorOptions class. Represents options for FormEditor plugin in C++.' +description: 'Aspose::Pdf::LowCode::FormEditorOptions class. Represents options for FormEditor plugin in C++.' type: docs weight: 1400 -url: /cpp/aspose.pdf.plugins/formeditoroptions/ +url: /cpp/aspose.pdf.lowcode/formeditoroptions/ --- ## FormEditorOptions class @@ -13,11 +13,11 @@ url: /cpp/aspose.pdf.plugins/formeditoroptions/ Represents options for [FormEditor](../formeditor/) plugin. ```cpp -class FormEditorOptions : public Aspose::Pdf::Plugins::FormOptions +class FormEditorOptions : public Aspose::Pdf::LowCode::FormOptions ``` ## See Also * Class [FormOptions](../formoptions/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/formeditorremoveoptions/_index.md b/english/cpp/aspose.pdf.lowcode/formeditorremoveoptions/_index.md similarity index 61% rename from english/cpp/aspose.pdf.plugins/formeditorremoveoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/formeditorremoveoptions/_index.md index bd0b22a5f3..1ceec913c2 100644 --- a/english/cpp/aspose.pdf.plugins/formeditorremoveoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formeditorremoveoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormEditorRemoveOptions class +title: Aspose::Pdf::LowCode::FormEditorRemoveOptions class linktitle: FormEditorRemoveOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormEditorRemoveOptions class. Base class for option classes for remove fields in document by FormEditor plugin in C++.' +description: 'Aspose::Pdf::LowCode::FormEditorRemoveOptions class. Base class for option classes for remove fields in document by FormEditor plugin in C++.' type: docs weight: 1500 -url: /cpp/aspose.pdf.plugins/formeditorremoveoptions/ +url: /cpp/aspose.pdf.lowcode/formeditorremoveoptions/ --- ## FormEditorRemoveOptions class @@ -13,11 +13,11 @@ url: /cpp/aspose.pdf.plugins/formeditorremoveoptions/ Base class for option classes for remove fields in document by [FormEditor](../formeditor/) plugin. ```cpp -class FormEditorRemoveOptions : public Aspose::Pdf::Plugins::FormEditorOptions +class FormEditorRemoveOptions : public Aspose::Pdf::LowCode::FormEditorOptions ``` ## See Also * Class [FormEditorOptions](../formeditoroptions/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/formeditorsetoptions/_index.md b/english/cpp/aspose.pdf.lowcode/formeditorsetoptions/_index.md similarity index 70% rename from english/cpp/aspose.pdf.plugins/formeditorsetoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/formeditorsetoptions/_index.md index 5972368343..270472b130 100644 --- a/english/cpp/aspose.pdf.plugins/formeditorsetoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formeditorsetoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormEditorSetOptions class +title: Aspose::Pdf::LowCode::FormEditorSetOptions class linktitle: FormEditorSetOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormEditorSetOptions class. Represents options for set fields (not annotations) properties in C++.' +description: 'Aspose::Pdf::LowCode::FormEditorSetOptions class. Represents options for set fields (not annotations) properties in C++.' type: docs weight: 1600 -url: /cpp/aspose.pdf.plugins/formeditorsetoptions/ +url: /cpp/aspose.pdf.lowcode/formeditorsetoptions/ --- ## FormEditorSetOptions class @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/formeditorsetoptions/ Represents options for set fields (not annotations) properties. ```cpp -class FormEditorSetOptions : public Aspose::Pdf::Plugins::FormEditorOptions +class FormEditorSetOptions : public Aspose::Pdf::LowCode::FormEditorOptions ``` ## Methods @@ -24,5 +24,5 @@ class FormEditorSetOptions : public Aspose::Pdf::Plugins::FormEditorOptions ## See Also * Class [FormEditorOptions](../formeditoroptions/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/formeditorsetoptions/formeditorsetoptions/_index.md b/english/cpp/aspose.pdf.lowcode/formeditorsetoptions/formeditorsetoptions/_index.md similarity index 79% rename from english/cpp/aspose.pdf.plugins/formeditorsetoptions/formeditorsetoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/formeditorsetoptions/formeditorsetoptions/_index.md index c13217ceca..d7b9861646 100644 --- a/english/cpp/aspose.pdf.plugins/formeditorsetoptions/formeditorsetoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formeditorsetoptions/formeditorsetoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormEditorSetOptions::FormEditorSetOptions constructor +title: Aspose::Pdf::LowCode::FormEditorSetOptions::FormEditorSetOptions constructor linktitle: FormEditorSetOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormEditorSetOptions::FormEditorSetOptions constructor. Initializes a new instance of the FormEditorSetOptions object, in which the values assigned to the properties of the field are specified in C++.' +description: 'Aspose::Pdf::LowCode::FormEditorSetOptions::FormEditorSetOptions constructor. Initializes a new instance of the FormEditorSetOptions object, in which the values assigned to the properties of the field are specified in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/formeditorsetoptions/formeditorsetoptions/ +url: /cpp/aspose.pdf.lowcode/formeditorsetoptions/formeditorsetoptions/ --- ## FormEditorSetOptions::FormEditorSetOptions constructor @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/formeditorsetoptions/formeditorsetoptions/ Initializes a new instance of the [FormEditorSetOptions](../) object, in which the values assigned to the properties of the field are specified. ```cpp -Aspose::Pdf::Plugins::FormEditorSetOptions::FormEditorSetOptions(SelectField selectField, System::SharedPtr settedOptions) +Aspose::Pdf::LowCode::FormEditorSetOptions::FormEditorSetOptions(SelectField selectField, System::SharedPtr settedOptions) ``` @@ -28,5 +28,5 @@ Aspose::Pdf::Plugins::FormEditorSetOptions::FormEditorSetOptions(SelectField sel * Typedef [SharedPtr](../../../system/sharedptr/) * Class [FormFieldSetOptions](../../formfieldsetoptions/) * Class [FormEditorSetOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formexporter/_index.md b/english/cpp/aspose.pdf.lowcode/formexporter/_index.md similarity index 64% rename from english/cpp/aspose.pdf.plugins/formexporter/_index.md rename to english/cpp/aspose.pdf.lowcode/formexporter/_index.md index 58c8960e16..602c050121 100644 --- a/english/cpp/aspose.pdf.plugins/formexporter/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formexporter/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormExporter class +title: Aspose::Pdf::LowCode::FormExporter class linktitle: FormExporter second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormExporter class. Represents FormExporter plugin in C++.' +description: 'Aspose::Pdf::LowCode::FormExporter class. Represents FormExporter plugin in C++.' type: docs weight: 1700 -url: /cpp/aspose.pdf.plugins/formexporter/ +url: /cpp/aspose.pdf.lowcode/formexporter/ --- ## FormExporter class @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/formexporter/ Represents [FormExporter](./) plugin. ```cpp -class FormExporter : public Aspose::Pdf::Plugins::IPlugin +class FormExporter : public Aspose::Pdf::LowCode::IPlugin ``` ## Methods @@ -24,5 +24,5 @@ class FormExporter : public Aspose::Pdf::Plugins::IPlugin ## See Also * Class [IPlugin](../iplugin/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/formexporter/process/_index.md b/english/cpp/aspose.pdf.lowcode/formexporter/process/_index.md similarity index 74% rename from english/cpp/aspose.pdf.plugins/formexporter/process/_index.md rename to english/cpp/aspose.pdf.lowcode/formexporter/process/_index.md index af868ce47c..adfe6c1397 100644 --- a/english/cpp/aspose.pdf.plugins/formexporter/process/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formexporter/process/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormExporter::Process method +title: Aspose::Pdf::LowCode::FormExporter::Process method linktitle: Process second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormExporter::Process method. Starts the FormExporter processing with the specified parameters in C++.' +description: 'Aspose::Pdf::LowCode::FormExporter::Process method. Starts the FormExporter processing with the specified parameters in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/formexporter/process/ +url: /cpp/aspose.pdf.lowcode/formexporter/process/ --- ## FormExporter::Process method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/formexporter/process/ Starts the [FormExporter](../) processing with the specified parameters. ```cpp -System::SharedPtr Aspose::Pdf::Plugins::FormExporter::Process(System::SharedPtr options) override +System::SharedPtr Aspose::Pdf::LowCode::FormExporter::Process(System::SharedPtr options) override ``` @@ -31,5 +31,5 @@ An [ResultContainer](../../resultcontainer/) object containing the result of the * Class [ResultContainer](../../resultcontainer/) * Class [IPluginOptions](../../ipluginoptions/) * Class [FormExporter](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formexporteroptions/_index.md b/english/cpp/aspose.pdf.lowcode/formexporteroptions/_index.md similarity index 55% rename from english/cpp/aspose.pdf.plugins/formexporteroptions/_index.md rename to english/cpp/aspose.pdf.lowcode/formexporteroptions/_index.md index c57cbc4f77..6a6e64ddf6 100644 --- a/english/cpp/aspose.pdf.plugins/formexporteroptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formexporteroptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormExporterOptions class +title: Aspose::Pdf::LowCode::FormExporterOptions class linktitle: FormExporterOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormExporterOptions class. Represents options for FormExporter plugin in C++.' +description: 'Aspose::Pdf::LowCode::FormExporterOptions class. Represents options for FormExporter plugin in C++.' type: docs weight: 1800 -url: /cpp/aspose.pdf.plugins/formexporteroptions/ +url: /cpp/aspose.pdf.lowcode/formexporteroptions/ --- ## FormExporterOptions class @@ -13,11 +13,11 @@ url: /cpp/aspose.pdf.plugins/formexporteroptions/ Represents options for [FormExporter](../formexporter/) plugin. ```cpp -class FormExporterOptions : public Aspose::Pdf::Plugins::FormOptions +class FormExporterOptions : public Aspose::Pdf::LowCode::FormOptions ``` ## See Also * Class [FormOptions](../formoptions/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/formexportervaluestocsvoptions/_index.md b/english/cpp/aspose.pdf.lowcode/formexportervaluestocsvoptions/_index.md similarity index 70% rename from english/cpp/aspose.pdf.plugins/formexportervaluestocsvoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/formexportervaluestocsvoptions/_index.md index 9495ed6127..4bb130430a 100644 --- a/english/cpp/aspose.pdf.plugins/formexportervaluestocsvoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formexportervaluestocsvoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormExporterValuesToCsvOptions class +title: Aspose::Pdf::LowCode::FormExporterValuesToCsvOptions class linktitle: FormExporterValuesToCsvOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormExporterValuesToCsvOptions class. Represents options for export Value property(s) of specified field(s) (not annotations) in C++.' +description: 'Aspose::Pdf::LowCode::FormExporterValuesToCsvOptions class. Represents options for export Value property(s) of specified field(s) (not annotations) in C++.' type: docs weight: 1900 -url: /cpp/aspose.pdf.plugins/formexportervaluestocsvoptions/ +url: /cpp/aspose.pdf.lowcode/formexportervaluestocsvoptions/ --- ## FormExporterValuesToCsvOptions class @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/formexportervaluestocsvoptions/ Represents options for export Value property(s) of specified field(s) (not annotations). ```cpp -class FormExporterValuesToCsvOptions : public Aspose::Pdf::Plugins::FormExporterOptions +class FormExporterValuesToCsvOptions : public Aspose::Pdf::LowCode::FormExporterOptions ``` ## Methods @@ -24,5 +24,5 @@ class FormExporterValuesToCsvOptions : public Aspose::Pdf::Plugins::FormExporter ## See Also * Class [FormExporterOptions](../formexporteroptions/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/formexportervaluestocsvoptions/formexportervaluestocsvoptions/_index.md b/english/cpp/aspose.pdf.lowcode/formexportervaluestocsvoptions/formexportervaluestocsvoptions/_index.md similarity index 78% rename from english/cpp/aspose.pdf.plugins/formexportervaluestocsvoptions/formexportervaluestocsvoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/formexportervaluestocsvoptions/formexportervaluestocsvoptions/_index.md index 34e95ae0ff..c27131d05b 100644 --- a/english/cpp/aspose.pdf.plugins/formexportervaluestocsvoptions/formexportervaluestocsvoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formexportervaluestocsvoptions/formexportervaluestocsvoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormExporterValuesToCsvOptions::FormExporterValuesToCsvOptions constructor +title: Aspose::Pdf::LowCode::FormExporterValuesToCsvOptions::FormExporterValuesToCsvOptions constructor linktitle: FormExporterValuesToCsvOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormExporterValuesToCsvOptions::FormExporterValuesToCsvOptions constructor. Initializes a new instance of the FormExporterValuesToCsvOptions object, in which the fields whose data will be exported and the separator for the exported data are specified in C++.' +description: 'Aspose::Pdf::LowCode::FormExporterValuesToCsvOptions::FormExporterValuesToCsvOptions constructor. Initializes a new instance of the FormExporterValuesToCsvOptions object, in which the fields whose data will be exported and the separator for the exported data are specified in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/formexportervaluestocsvoptions/formexportervaluestocsvoptions/ +url: /cpp/aspose.pdf.lowcode/formexportervaluestocsvoptions/formexportervaluestocsvoptions/ --- ## FormExporterValuesToCsvOptions::FormExporterValuesToCsvOptions constructor @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/formexportervaluestocsvoptions/formexportervaluesto Initializes a new instance of the [FormExporterValuesToCsvOptions](../) object, in which the fields whose data will be exported and the separator for the exported data are specified. ```cpp -Aspose::Pdf::Plugins::FormExporterValuesToCsvOptions::FormExporterValuesToCsvOptions(SelectField selectField, char16_t delimeter=u',') +Aspose::Pdf::LowCode::FormExporterValuesToCsvOptions::FormExporterValuesToCsvOptions(SelectField selectField, char16_t delimeter=u',') ``` @@ -26,5 +26,5 @@ Aspose::Pdf::Plugins::FormExporterValuesToCsvOptions::FormExporterValuesToCsvOpt * Typedef [SelectField](../../selectfield/) * Class [FormExporterValuesToCsvOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formfieldcreateoptions/_index.md b/english/cpp/aspose.pdf.lowcode/formfieldcreateoptions/_index.md similarity index 55% rename from english/cpp/aspose.pdf.plugins/formfieldcreateoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/formfieldcreateoptions/_index.md index 9d5f8f4b3b..6cb63c30a6 100644 --- a/english/cpp/aspose.pdf.plugins/formfieldcreateoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formfieldcreateoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFieldCreateOptions class +title: Aspose::Pdf::LowCode::FormFieldCreateOptions class linktitle: FormFieldCreateOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFieldCreateOptions class. Represents options for creating Field in C++.' +description: 'Aspose::Pdf::LowCode::FormFieldCreateOptions class. Represents options for creating Field in C++.' type: docs weight: 2000 -url: /cpp/aspose.pdf.plugins/formfieldcreateoptions/ +url: /cpp/aspose.pdf.lowcode/formfieldcreateoptions/ --- ## FormFieldCreateOptions class @@ -13,11 +13,11 @@ url: /cpp/aspose.pdf.plugins/formfieldcreateoptions/ Represents options for creating Field. ```cpp -class FormFieldCreateOptions : public Aspose::Pdf::Plugins::FormFieldOptions +class FormFieldCreateOptions : public Aspose::Pdf::LowCode::FormFieldOptions ``` ## See Also * Class [FormFieldOptions](../formfieldoptions/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/formfieldoptions/_index.md b/english/cpp/aspose.pdf.lowcode/formfieldoptions/_index.md similarity index 96% rename from english/cpp/aspose.pdf.plugins/formfieldoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/formfieldoptions/_index.md index f40c8eebd3..dbeef9a0c8 100644 --- a/english/cpp/aspose.pdf.plugins/formfieldoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formfieldoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFieldOptions class +title: Aspose::Pdf::LowCode::FormFieldOptions class linktitle: FormFieldOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFieldOptions class. Represents Field options. Base class for PdfFormFieldCreateOptions and PdfFormFillFieldOptions in C++.' +description: 'Aspose::Pdf::LowCode::FormFieldOptions class. Represents Field options. Base class for PdfFormFieldCreateOptions and PdfFormFillFieldOptions in C++.' type: docs weight: 2100 -url: /cpp/aspose.pdf.plugins/formfieldoptions/ +url: /cpp/aspose.pdf.lowcode/formfieldoptions/ --- ## FormFieldOptions class @@ -61,5 +61,5 @@ class FormFieldOptions : public System::Object ## See Also * Class [Object](../../system/object/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/formfieldoptions/get_alternatename/_index.md b/english/cpp/aspose.pdf.lowcode/formfieldoptions/get_alternatename/_index.md similarity index 63% rename from english/cpp/aspose.pdf.plugins/formfieldoptions/get_alternatename/_index.md rename to english/cpp/aspose.pdf.lowcode/formfieldoptions/get_alternatename/_index.md index 9b550269c2..3276fca067 100644 --- a/english/cpp/aspose.pdf.plugins/formfieldoptions/get_alternatename/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formfieldoptions/get_alternatename/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFieldOptions::get_AlternateName method +title: Aspose::Pdf::LowCode::FormFieldOptions::get_AlternateName method linktitle: get_AlternateName second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFieldOptions::get_AlternateName method. Gets/sets the value to determine property AlternateName for created/modified field (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormFieldOptions::get_AlternateName method. Gets/sets the value to determine property AlternateName for created/modified field (if will be set) in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/formfieldoptions/get_alternatename/ +url: /cpp/aspose.pdf.lowcode/formfieldoptions/get_alternatename/ --- ## FormFieldOptions::get_AlternateName method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formfieldoptions/get_alternatename/ Gets/sets the value to determine property AlternateName for created/modified field (if will be set). ```cpp -System::String Aspose::Pdf::Plugins::FormFieldOptions::get_AlternateName() const +System::String Aspose::Pdf::LowCode::FormFieldOptions::get_AlternateName() const ``` ## See Also * Class [String](../../../system/string/) * Class [FormFieldOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formfieldoptions/get_color/_index.md b/english/cpp/aspose.pdf.lowcode/formfieldoptions/get_color/_index.md similarity index 61% rename from english/cpp/aspose.pdf.plugins/formfieldoptions/get_color/_index.md rename to english/cpp/aspose.pdf.lowcode/formfieldoptions/get_color/_index.md index 10e84c1b41..25a93f72ae 100644 --- a/english/cpp/aspose.pdf.plugins/formfieldoptions/get_color/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formfieldoptions/get_color/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFieldOptions::get_Color method +title: Aspose::Pdf::LowCode::FormFieldOptions::get_Color method linktitle: get_Color second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFieldOptions::get_Color method. Gets/sets the value to determine property Color for created/modified field (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormFieldOptions::get_Color method. Gets/sets the value to determine property Color for created/modified field (if will be set) in C++.' type: docs weight: 200 -url: /cpp/aspose.pdf.plugins/formfieldoptions/get_color/ +url: /cpp/aspose.pdf.lowcode/formfieldoptions/get_color/ --- ## FormFieldOptions::get_Color method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/formfieldoptions/get_color/ Gets/sets the value to determine property [Color](../../../aspose.pdf/color/) for created/modified field (if will be set). ```cpp -const System::SharedPtr & Aspose::Pdf::Plugins::FormFieldOptions::get_Color() const +const System::SharedPtr & Aspose::Pdf::LowCode::FormFieldOptions::get_Color() const ``` ## See Also @@ -21,5 +21,5 @@ const System::SharedPtr & Aspose::Pdf::Plugins::FormFieldOpt * Typedef [SharedPtr](../../../system/sharedptr/) * Class [Color](../../../aspose.pdf/color/) * Class [FormFieldOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formfieldoptions/get_contents/_index.md b/english/cpp/aspose.pdf.lowcode/formfieldoptions/get_contents/_index.md similarity index 62% rename from english/cpp/aspose.pdf.plugins/formfieldoptions/get_contents/_index.md rename to english/cpp/aspose.pdf.lowcode/formfieldoptions/get_contents/_index.md index 32998d4a65..7fb8cef8c3 100644 --- a/english/cpp/aspose.pdf.plugins/formfieldoptions/get_contents/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formfieldoptions/get_contents/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFieldOptions::get_Contents method +title: Aspose::Pdf::LowCode::FormFieldOptions::get_Contents method linktitle: get_Contents second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFieldOptions::get_Contents method. Gets/sets the value to determine property Contents for created/modified field (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormFieldOptions::get_Contents method. Gets/sets the value to determine property Contents for created/modified field (if will be set) in C++.' type: docs weight: 300 -url: /cpp/aspose.pdf.plugins/formfieldoptions/get_contents/ +url: /cpp/aspose.pdf.lowcode/formfieldoptions/get_contents/ --- ## FormFieldOptions::get_Contents method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formfieldoptions/get_contents/ Gets/sets the value to determine property Contents for created/modified field (if will be set). ```cpp -System::String Aspose::Pdf::Plugins::FormFieldOptions::get_Contents() const +System::String Aspose::Pdf::LowCode::FormFieldOptions::get_Contents() const ``` ## See Also * Class [String](../../../system/string/) * Class [FormFieldOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formfieldoptions/get_defaultappearance/_index.md b/english/cpp/aspose.pdf.lowcode/formfieldoptions/get_defaultappearance/_index.md similarity index 69% rename from english/cpp/aspose.pdf.plugins/formfieldoptions/get_defaultappearance/_index.md rename to english/cpp/aspose.pdf.lowcode/formfieldoptions/get_defaultappearance/_index.md index 732bbb0e60..dcc4594ba8 100644 --- a/english/cpp/aspose.pdf.plugins/formfieldoptions/get_defaultappearance/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formfieldoptions/get_defaultappearance/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFieldOptions::get_DefaultAppearance method +title: Aspose::Pdf::LowCode::FormFieldOptions::get_DefaultAppearance method linktitle: get_DefaultAppearance second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFieldOptions::get_DefaultAppearance method. Gets/sets the value to determine property DefaultAppearance for created/modified field (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormFieldOptions::get_DefaultAppearance method. Gets/sets the value to determine property DefaultAppearance for created/modified field (if will be set) in C++.' type: docs weight: 400 -url: /cpp/aspose.pdf.plugins/formfieldoptions/get_defaultappearance/ +url: /cpp/aspose.pdf.lowcode/formfieldoptions/get_defaultappearance/ --- ## FormFieldOptions::get_DefaultAppearance method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/formfieldoptions/get_defaultappearance/ Gets/sets the value to determine property DefaultAppearance for created/modified field (if will be set). ```cpp -const System::SharedPtr & Aspose::Pdf::Plugins::FormFieldOptions::get_DefaultAppearance() const +const System::SharedPtr & Aspose::Pdf::LowCode::FormFieldOptions::get_DefaultAppearance() const ``` ## See Also @@ -21,5 +21,5 @@ const System::SharedPtr & Aspose::P * Typedef [SharedPtr](../../../system/sharedptr/) * Class [DefaultAppearance](../../../aspose.pdf.annotations/defaultappearance/) * Class [FormFieldOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formfieldoptions/get_exportable/_index.md b/english/cpp/aspose.pdf.lowcode/formfieldoptions/get_exportable/_index.md similarity index 63% rename from english/cpp/aspose.pdf.plugins/formfieldoptions/get_exportable/_index.md rename to english/cpp/aspose.pdf.lowcode/formfieldoptions/get_exportable/_index.md index 8116e718b8..f71c6f5c75 100644 --- a/english/cpp/aspose.pdf.plugins/formfieldoptions/get_exportable/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formfieldoptions/get_exportable/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFieldOptions::get_Exportable method +title: Aspose::Pdf::LowCode::FormFieldOptions::get_Exportable method linktitle: get_Exportable second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFieldOptions::get_Exportable method. Gets/sets the value to determine whether created/modified field is exportable or not (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormFieldOptions::get_Exportable method. Gets/sets the value to determine whether created/modified field is exportable or not (if will be set) in C++.' type: docs weight: 500 -url: /cpp/aspose.pdf.plugins/formfieldoptions/get_exportable/ +url: /cpp/aspose.pdf.lowcode/formfieldoptions/get_exportable/ --- ## FormFieldOptions::get_Exportable method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formfieldoptions/get_exportable/ Gets/sets the value to determine whether created/modified field is exportable or not (if will be set). ```cpp -System::Nullable Aspose::Pdf::Plugins::FormFieldOptions::get_Exportable() const +System::Nullable Aspose::Pdf::LowCode::FormFieldOptions::get_Exportable() const ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormFieldOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formfieldoptions/get_fitintorectangle/_index.md b/english/cpp/aspose.pdf.lowcode/formfieldoptions/get_fitintorectangle/_index.md similarity index 65% rename from english/cpp/aspose.pdf.plugins/formfieldoptions/get_fitintorectangle/_index.md rename to english/cpp/aspose.pdf.lowcode/formfieldoptions/get_fitintorectangle/_index.md index cd7331ae3f..02a1831fb6 100644 --- a/english/cpp/aspose.pdf.plugins/formfieldoptions/get_fitintorectangle/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formfieldoptions/get_fitintorectangle/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFieldOptions::get_FitIntoRectangle method +title: Aspose::Pdf::LowCode::FormFieldOptions::get_FitIntoRectangle method linktitle: get_FitIntoRectangle second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFieldOptions::get_FitIntoRectangle method. Gets/sets the value to determine whether created/modified field is fit into rectangle or not (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormFieldOptions::get_FitIntoRectangle method. Gets/sets the value to determine whether created/modified field is fit into rectangle or not (if will be set) in C++.' type: docs weight: 600 -url: /cpp/aspose.pdf.plugins/formfieldoptions/get_fitintorectangle/ +url: /cpp/aspose.pdf.lowcode/formfieldoptions/get_fitintorectangle/ --- ## FormFieldOptions::get_FitIntoRectangle method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formfieldoptions/get_fitintorectangle/ Gets/sets the value to determine whether created/modified field is fit into rectangle or not (if will be set). ```cpp -System::Nullable Aspose::Pdf::Plugins::FormFieldOptions::get_FitIntoRectangle() const +System::Nullable Aspose::Pdf::LowCode::FormFieldOptions::get_FitIntoRectangle() const ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormFieldOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formfieldoptions/get_flags/_index.md b/english/cpp/aspose.pdf.lowcode/formfieldoptions/get_flags/_index.md similarity index 61% rename from english/cpp/aspose.pdf.plugins/formfieldoptions/get_flags/_index.md rename to english/cpp/aspose.pdf.lowcode/formfieldoptions/get_flags/_index.md index be1e3d977a..9350c00ecf 100644 --- a/english/cpp/aspose.pdf.plugins/formfieldoptions/get_flags/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formfieldoptions/get_flags/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFieldOptions::get_Flags method +title: Aspose::Pdf::LowCode::FormFieldOptions::get_Flags method linktitle: get_Flags second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFieldOptions::get_Flags method. Gets/sets the value to determine property Flags for created/modified field (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormFieldOptions::get_Flags method. Gets/sets the value to determine property Flags for created/modified field (if will be set) in C++.' type: docs weight: 700 -url: /cpp/aspose.pdf.plugins/formfieldoptions/get_flags/ +url: /cpp/aspose.pdf.lowcode/formfieldoptions/get_flags/ --- ## FormFieldOptions::get_Flags method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/formfieldoptions/get_flags/ Gets/sets the value to determine property Flags for created/modified field (if will be set). ```cpp -System::Nullable Aspose::Pdf::Plugins::FormFieldOptions::get_Flags() const +System::Nullable Aspose::Pdf::LowCode::FormFieldOptions::get_Flags() const ``` ## See Also @@ -21,5 +21,5 @@ System::Nullable Aspose::Pdf::Plugins::FormFieldOp * Class [Nullable](../../../system/nullable/) * Enum [AnnotationFlags](../../../aspose.pdf.annotations/annotationflags/) * Class [FormFieldOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formfieldoptions/get_issharedfield/_index.md b/english/cpp/aspose.pdf.lowcode/formfieldoptions/get_issharedfield/_index.md similarity index 64% rename from english/cpp/aspose.pdf.plugins/formfieldoptions/get_issharedfield/_index.md rename to english/cpp/aspose.pdf.lowcode/formfieldoptions/get_issharedfield/_index.md index cb374e6652..537af274e2 100644 --- a/english/cpp/aspose.pdf.plugins/formfieldoptions/get_issharedfield/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formfieldoptions/get_issharedfield/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFieldOptions::get_IsSharedField method +title: Aspose::Pdf::LowCode::FormFieldOptions::get_IsSharedField method linktitle: get_IsSharedField second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFieldOptions::get_IsSharedField method. Gets/sets the value to determine whether created/modified field is shared field or not (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormFieldOptions::get_IsSharedField method. Gets/sets the value to determine whether created/modified field is shared field or not (if will be set) in C++.' type: docs weight: 800 -url: /cpp/aspose.pdf.plugins/formfieldoptions/get_issharedfield/ +url: /cpp/aspose.pdf.lowcode/formfieldoptions/get_issharedfield/ --- ## FormFieldOptions::get_IsSharedField method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formfieldoptions/get_issharedfield/ Gets/sets the value to determine whether created/modified field is shared field or not (if will be set). ```cpp -System::Nullable Aspose::Pdf::Plugins::FormFieldOptions::get_IsSharedField() const +System::Nullable Aspose::Pdf::LowCode::FormFieldOptions::get_IsSharedField() const ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormFieldOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formfieldoptions/get_mappingname/_index.md b/english/cpp/aspose.pdf.lowcode/formfieldoptions/get_mappingname/_index.md similarity index 62% rename from english/cpp/aspose.pdf.plugins/formfieldoptions/get_mappingname/_index.md rename to english/cpp/aspose.pdf.lowcode/formfieldoptions/get_mappingname/_index.md index b9cd7e2afa..5c164d29dd 100644 --- a/english/cpp/aspose.pdf.plugins/formfieldoptions/get_mappingname/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formfieldoptions/get_mappingname/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFieldOptions::get_MappingName method +title: Aspose::Pdf::LowCode::FormFieldOptions::get_MappingName method linktitle: get_MappingName second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFieldOptions::get_MappingName method. Gets/sets the value to determine property MappingName for created/modified field (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormFieldOptions::get_MappingName method. Gets/sets the value to determine property MappingName for created/modified field (if will be set) in C++.' type: docs weight: 900 -url: /cpp/aspose.pdf.plugins/formfieldoptions/get_mappingname/ +url: /cpp/aspose.pdf.lowcode/formfieldoptions/get_mappingname/ --- ## FormFieldOptions::get_MappingName method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formfieldoptions/get_mappingname/ Gets/sets the value to determine property MappingName for created/modified field (if will be set). ```cpp -System::String Aspose::Pdf::Plugins::FormFieldOptions::get_MappingName() const +System::String Aspose::Pdf::LowCode::FormFieldOptions::get_MappingName() const ``` ## See Also * Class [String](../../../system/string/) * Class [FormFieldOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formfieldoptions/get_maxfontsize/_index.md b/english/cpp/aspose.pdf.lowcode/formfieldoptions/get_maxfontsize/_index.md similarity index 63% rename from english/cpp/aspose.pdf.plugins/formfieldoptions/get_maxfontsize/_index.md rename to english/cpp/aspose.pdf.lowcode/formfieldoptions/get_maxfontsize/_index.md index a1329c853d..c06ec6e52e 100644 --- a/english/cpp/aspose.pdf.plugins/formfieldoptions/get_maxfontsize/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formfieldoptions/get_maxfontsize/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFieldOptions::get_MaxFontSize method +title: Aspose::Pdf::LowCode::FormFieldOptions::get_MaxFontSize method linktitle: get_MaxFontSize second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFieldOptions::get_MaxFontSize method. Gets/sets the value to determine property MaxFontSize for created/modified field (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormFieldOptions::get_MaxFontSize method. Gets/sets the value to determine property MaxFontSize for created/modified field (if will be set) in C++.' type: docs weight: 1000 -url: /cpp/aspose.pdf.plugins/formfieldoptions/get_maxfontsize/ +url: /cpp/aspose.pdf.lowcode/formfieldoptions/get_maxfontsize/ --- ## FormFieldOptions::get_MaxFontSize method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formfieldoptions/get_maxfontsize/ Gets/sets the value to determine property MaxFontSize for created/modified field (if will be set). ```cpp -System::Nullable Aspose::Pdf::Plugins::FormFieldOptions::get_MaxFontSize() const +System::Nullable Aspose::Pdf::LowCode::FormFieldOptions::get_MaxFontSize() const ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormFieldOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formfieldoptions/get_minfontsize/_index.md b/english/cpp/aspose.pdf.lowcode/formfieldoptions/get_minfontsize/_index.md similarity index 63% rename from english/cpp/aspose.pdf.plugins/formfieldoptions/get_minfontsize/_index.md rename to english/cpp/aspose.pdf.lowcode/formfieldoptions/get_minfontsize/_index.md index 37a29e41d2..682fbab7af 100644 --- a/english/cpp/aspose.pdf.plugins/formfieldoptions/get_minfontsize/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formfieldoptions/get_minfontsize/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFieldOptions::get_MinFontSize method +title: Aspose::Pdf::LowCode::FormFieldOptions::get_MinFontSize method linktitle: get_MinFontSize second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFieldOptions::get_MinFontSize method. Gets/sets the value to determine property MinFontSize for created/modified field (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormFieldOptions::get_MinFontSize method. Gets/sets the value to determine property MinFontSize for created/modified field (if will be set) in C++.' type: docs weight: 1100 -url: /cpp/aspose.pdf.plugins/formfieldoptions/get_minfontsize/ +url: /cpp/aspose.pdf.lowcode/formfieldoptions/get_minfontsize/ --- ## FormFieldOptions::get_MinFontSize method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formfieldoptions/get_minfontsize/ Gets/sets the value to determine property MinFontSize for created/modified field (if will be set). ```cpp -System::Nullable Aspose::Pdf::Plugins::FormFieldOptions::get_MinFontSize() const +System::Nullable Aspose::Pdf::LowCode::FormFieldOptions::get_MinFontSize() const ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormFieldOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formfieldoptions/get_name/_index.md b/english/cpp/aspose.pdf.lowcode/formfieldoptions/get_name/_index.md similarity index 61% rename from english/cpp/aspose.pdf.plugins/formfieldoptions/get_name/_index.md rename to english/cpp/aspose.pdf.lowcode/formfieldoptions/get_name/_index.md index f4cc1425e6..30a6d162f5 100644 --- a/english/cpp/aspose.pdf.plugins/formfieldoptions/get_name/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formfieldoptions/get_name/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFieldOptions::get_Name method +title: Aspose::Pdf::LowCode::FormFieldOptions::get_Name method linktitle: get_Name second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFieldOptions::get_Name method. Gets/sets the value to determine property Name for created/modified field (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormFieldOptions::get_Name method. Gets/sets the value to determine property Name for created/modified field (if will be set) in C++.' type: docs weight: 1200 -url: /cpp/aspose.pdf.plugins/formfieldoptions/get_name/ +url: /cpp/aspose.pdf.lowcode/formfieldoptions/get_name/ --- ## FormFieldOptions::get_Name method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formfieldoptions/get_name/ Gets/sets the value to determine property Name for created/modified field (if will be set). ```cpp -System::String Aspose::Pdf::Plugins::FormFieldOptions::get_Name() const +System::String Aspose::Pdf::LowCode::FormFieldOptions::get_Name() const ``` ## See Also * Class [String](../../../system/string/) * Class [FormFieldOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formfieldoptions/get_partialname/_index.md b/english/cpp/aspose.pdf.lowcode/formfieldoptions/get_partialname/_index.md similarity index 63% rename from english/cpp/aspose.pdf.plugins/formfieldoptions/get_partialname/_index.md rename to english/cpp/aspose.pdf.lowcode/formfieldoptions/get_partialname/_index.md index 1e29c15102..6acf84e5c8 100644 --- a/english/cpp/aspose.pdf.plugins/formfieldoptions/get_partialname/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formfieldoptions/get_partialname/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFieldOptions::get_PartialName method +title: Aspose::Pdf::LowCode::FormFieldOptions::get_PartialName method linktitle: get_PartialName second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFieldOptions::get_PartialName method. Gets/sets the value to determine property PartialName for created/modified field (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormFieldOptions::get_PartialName method. Gets/sets the value to determine property PartialName for created/modified field (if will be set) in C++.' type: docs weight: 1300 -url: /cpp/aspose.pdf.plugins/formfieldoptions/get_partialname/ +url: /cpp/aspose.pdf.lowcode/formfieldoptions/get_partialname/ --- ## FormFieldOptions::get_PartialName method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formfieldoptions/get_partialname/ Gets/sets the value to determine property PartialName for created/modified field (if will be set). ```cpp -System::String Aspose::Pdf::Plugins::FormFieldOptions::get_PartialName() const +System::String Aspose::Pdf::LowCode::FormFieldOptions::get_PartialName() const ``` ## See Also * Class [String](../../../system/string/) * Class [FormFieldOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formfieldoptions/get_readonly/_index.md b/english/cpp/aspose.pdf.lowcode/formfieldoptions/get_readonly/_index.md similarity index 63% rename from english/cpp/aspose.pdf.plugins/formfieldoptions/get_readonly/_index.md rename to english/cpp/aspose.pdf.lowcode/formfieldoptions/get_readonly/_index.md index 0f8560b7f6..40f30a7b01 100644 --- a/english/cpp/aspose.pdf.plugins/formfieldoptions/get_readonly/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formfieldoptions/get_readonly/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFieldOptions::get_ReadOnly method +title: Aspose::Pdf::LowCode::FormFieldOptions::get_ReadOnly method linktitle: get_ReadOnly second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFieldOptions::get_ReadOnly method. Gets/sets the value to determine whether created/modified field is read only or not (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormFieldOptions::get_ReadOnly method. Gets/sets the value to determine whether created/modified field is read only or not (if will be set) in C++.' type: docs weight: 1400 -url: /cpp/aspose.pdf.plugins/formfieldoptions/get_readonly/ +url: /cpp/aspose.pdf.lowcode/formfieldoptions/get_readonly/ --- ## FormFieldOptions::get_ReadOnly method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formfieldoptions/get_readonly/ Gets/sets the value to determine whether created/modified field is read only or not (if will be set). ```cpp -System::Nullable Aspose::Pdf::Plugins::FormFieldOptions::get_ReadOnly() const +System::Nullable Aspose::Pdf::LowCode::FormFieldOptions::get_ReadOnly() const ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormFieldOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formfieldoptions/get_required/_index.md b/english/cpp/aspose.pdf.lowcode/formfieldoptions/get_required/_index.md similarity index 63% rename from english/cpp/aspose.pdf.plugins/formfieldoptions/get_required/_index.md rename to english/cpp/aspose.pdf.lowcode/formfieldoptions/get_required/_index.md index bc8492a354..161991acec 100644 --- a/english/cpp/aspose.pdf.plugins/formfieldoptions/get_required/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formfieldoptions/get_required/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFieldOptions::get_Required method +title: Aspose::Pdf::LowCode::FormFieldOptions::get_Required method linktitle: get_Required second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFieldOptions::get_Required method. Gets/sets the value to determine whether created/modified field is required or not (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormFieldOptions::get_Required method. Gets/sets the value to determine whether created/modified field is required or not (if will be set) in C++.' type: docs weight: 1500 -url: /cpp/aspose.pdf.plugins/formfieldoptions/get_required/ +url: /cpp/aspose.pdf.lowcode/formfieldoptions/get_required/ --- ## FormFieldOptions::get_Required method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formfieldoptions/get_required/ Gets/sets the value to determine whether created/modified field is required or not (if will be set). ```cpp -System::Nullable Aspose::Pdf::Plugins::FormFieldOptions::get_Required() const +System::Nullable Aspose::Pdf::LowCode::FormFieldOptions::get_Required() const ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormFieldOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formfieldoptions/get_texthorizontalalignment/_index.md b/english/cpp/aspose.pdf.lowcode/formfieldoptions/get_texthorizontalalignment/_index.md similarity index 69% rename from english/cpp/aspose.pdf.plugins/formfieldoptions/get_texthorizontalalignment/_index.md rename to english/cpp/aspose.pdf.lowcode/formfieldoptions/get_texthorizontalalignment/_index.md index 5f2cd6cb63..6165b2964a 100644 --- a/english/cpp/aspose.pdf.plugins/formfieldoptions/get_texthorizontalalignment/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formfieldoptions/get_texthorizontalalignment/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFieldOptions::get_TextHorizontalAlignment method +title: Aspose::Pdf::LowCode::FormFieldOptions::get_TextHorizontalAlignment method linktitle: get_TextHorizontalAlignment second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFieldOptions::get_TextHorizontalAlignment method. Gets/sets the value to determine property TextHorizontalAlignment for created/modified field (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormFieldOptions::get_TextHorizontalAlignment method. Gets/sets the value to determine property TextHorizontalAlignment for created/modified field (if will be set) in C++.' type: docs weight: 1600 -url: /cpp/aspose.pdf.plugins/formfieldoptions/get_texthorizontalalignment/ +url: /cpp/aspose.pdf.lowcode/formfieldoptions/get_texthorizontalalignment/ --- ## FormFieldOptions::get_TextHorizontalAlignment method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/formfieldoptions/get_texthorizontalalignment/ Gets/sets the value to determine property TextHorizontalAlignment for created/modified field (if will be set). ```cpp -System::Nullable Aspose::Pdf::Plugins::FormFieldOptions::get_TextHorizontalAlignment() const +System::Nullable Aspose::Pdf::LowCode::FormFieldOptions::get_TextHorizontalAlignment() const ``` ## See Also @@ -21,5 +21,5 @@ System::Nullable Aspose::Pdf::Plugins::FormFieldOptions::ge * Class [Nullable](../../../system/nullable/) * Enum [HorizontalAlignment](../../../aspose.pdf/horizontalalignment/) * Class [FormFieldOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formfieldoptions/get_updateappearanceonconvert/_index.md b/english/cpp/aspose.pdf.lowcode/formfieldoptions/get_updateappearanceonconvert/_index.md similarity index 68% rename from english/cpp/aspose.pdf.plugins/formfieldoptions/get_updateappearanceonconvert/_index.md rename to english/cpp/aspose.pdf.lowcode/formfieldoptions/get_updateappearanceonconvert/_index.md index f801e0d586..d9eace5c33 100644 --- a/english/cpp/aspose.pdf.plugins/formfieldoptions/get_updateappearanceonconvert/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formfieldoptions/get_updateappearanceonconvert/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFieldOptions::get_UpdateAppearanceOnConvert method +title: Aspose::Pdf::LowCode::FormFieldOptions::get_UpdateAppearanceOnConvert method linktitle: get_UpdateAppearanceOnConvert second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFieldOptions::get_UpdateAppearanceOnConvert method. Gets/sets the value to determine whether created/modified field is update appearance on convert or not (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormFieldOptions::get_UpdateAppearanceOnConvert method. Gets/sets the value to determine whether created/modified field is update appearance on convert or not (if will be set) in C++.' type: docs weight: 1700 -url: /cpp/aspose.pdf.plugins/formfieldoptions/get_updateappearanceonconvert/ +url: /cpp/aspose.pdf.lowcode/formfieldoptions/get_updateappearanceonconvert/ --- ## FormFieldOptions::get_UpdateAppearanceOnConvert method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formfieldoptions/get_updateappearanceonconvert/ Gets/sets the value to determine whether created/modified field is update appearance on convert or not (if will be set). ```cpp -System::Nullable Aspose::Pdf::Plugins::FormFieldOptions::get_UpdateAppearanceOnConvert() const +System::Nullable Aspose::Pdf::LowCode::FormFieldOptions::get_UpdateAppearanceOnConvert() const ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormFieldOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formfieldoptions/get_usefontsubset/_index.md b/english/cpp/aspose.pdf.lowcode/formfieldoptions/get_usefontsubset/_index.md similarity index 64% rename from english/cpp/aspose.pdf.plugins/formfieldoptions/get_usefontsubset/_index.md rename to english/cpp/aspose.pdf.lowcode/formfieldoptions/get_usefontsubset/_index.md index 1061681f00..ab4f34d87e 100644 --- a/english/cpp/aspose.pdf.plugins/formfieldoptions/get_usefontsubset/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formfieldoptions/get_usefontsubset/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFieldOptions::get_UseFontSubset method +title: Aspose::Pdf::LowCode::FormFieldOptions::get_UseFontSubset method linktitle: get_UseFontSubset second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFieldOptions::get_UseFontSubset method. Gets/sets the value to determine whether created/modified field is use font subset or not (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormFieldOptions::get_UseFontSubset method. Gets/sets the value to determine whether created/modified field is use font subset or not (if will be set) in C++.' type: docs weight: 1800 -url: /cpp/aspose.pdf.plugins/formfieldoptions/get_usefontsubset/ +url: /cpp/aspose.pdf.lowcode/formfieldoptions/get_usefontsubset/ --- ## FormFieldOptions::get_UseFontSubset method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formfieldoptions/get_usefontsubset/ Gets/sets the value to determine whether created/modified field is use font subset or not (if will be set). ```cpp -System::Nullable Aspose::Pdf::Plugins::FormFieldOptions::get_UseFontSubset() const +System::Nullable Aspose::Pdf::LowCode::FormFieldOptions::get_UseFontSubset() const ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormFieldOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formfieldoptions/get_value/_index.md b/english/cpp/aspose.pdf.lowcode/formfieldoptions/get_value/_index.md similarity index 61% rename from english/cpp/aspose.pdf.plugins/formfieldoptions/get_value/_index.md rename to english/cpp/aspose.pdf.lowcode/formfieldoptions/get_value/_index.md index 7965e5b271..e731bbe77d 100644 --- a/english/cpp/aspose.pdf.plugins/formfieldoptions/get_value/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formfieldoptions/get_value/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFieldOptions::get_Value method +title: Aspose::Pdf::LowCode::FormFieldOptions::get_Value method linktitle: get_Value second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFieldOptions::get_Value method. Gets/sets the value to determine property Value for created/modified field (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormFieldOptions::get_Value method. Gets/sets the value to determine property Value for created/modified field (if will be set) in C++.' type: docs weight: 1900 -url: /cpp/aspose.pdf.plugins/formfieldoptions/get_value/ +url: /cpp/aspose.pdf.lowcode/formfieldoptions/get_value/ --- ## FormFieldOptions::get_Value method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formfieldoptions/get_value/ Gets/sets the value to determine property Value for created/modified field (if will be set). ```cpp -System::String Aspose::Pdf::Plugins::FormFieldOptions::get_Value() const +System::String Aspose::Pdf::LowCode::FormFieldOptions::get_Value() const ``` ## See Also * Class [String](../../../system/string/) * Class [FormFieldOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formfieldoptions/set_alternatename/_index.md b/english/cpp/aspose.pdf.lowcode/formfieldoptions/set_alternatename/_index.md similarity index 63% rename from english/cpp/aspose.pdf.plugins/formfieldoptions/set_alternatename/_index.md rename to english/cpp/aspose.pdf.lowcode/formfieldoptions/set_alternatename/_index.md index 274d7603b3..dde4fcd24f 100644 --- a/english/cpp/aspose.pdf.plugins/formfieldoptions/set_alternatename/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formfieldoptions/set_alternatename/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFieldOptions::set_AlternateName method +title: Aspose::Pdf::LowCode::FormFieldOptions::set_AlternateName method linktitle: set_AlternateName second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFieldOptions::set_AlternateName method. Gets/sets the value to determine property AlternateName for created/modified field (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormFieldOptions::set_AlternateName method. Gets/sets the value to determine property AlternateName for created/modified field (if will be set) in C++.' type: docs weight: 2000 -url: /cpp/aspose.pdf.plugins/formfieldoptions/set_alternatename/ +url: /cpp/aspose.pdf.lowcode/formfieldoptions/set_alternatename/ --- ## FormFieldOptions::set_AlternateName method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formfieldoptions/set_alternatename/ Gets/sets the value to determine property AlternateName for created/modified field (if will be set). ```cpp -void Aspose::Pdf::Plugins::FormFieldOptions::set_AlternateName(System::String value) +void Aspose::Pdf::LowCode::FormFieldOptions::set_AlternateName(System::String value) ``` ## See Also * Class [String](../../../system/string/) * Class [FormFieldOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formfieldoptions/set_color/_index.md b/english/cpp/aspose.pdf.lowcode/formfieldoptions/set_color/_index.md similarity index 66% rename from english/cpp/aspose.pdf.plugins/formfieldoptions/set_color/_index.md rename to english/cpp/aspose.pdf.lowcode/formfieldoptions/set_color/_index.md index b9804ea49c..460c4431e9 100644 --- a/english/cpp/aspose.pdf.plugins/formfieldoptions/set_color/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formfieldoptions/set_color/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFieldOptions::set_Color method +title: Aspose::Pdf::LowCode::FormFieldOptions::set_Color method linktitle: set_Color second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFieldOptions::set_Color method. Gets/sets the value to determine property Color for created/modified field (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormFieldOptions::set_Color method. Gets/sets the value to determine property Color for created/modified field (if will be set) in C++.' type: docs weight: 2100 -url: /cpp/aspose.pdf.plugins/formfieldoptions/set_color/ +url: /cpp/aspose.pdf.lowcode/formfieldoptions/set_color/ --- ## FormFieldOptions::set_Color method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/formfieldoptions/set_color/ Gets/sets the value to determine property [Color](../../../aspose.pdf/color/) for created/modified field (if will be set). ```cpp -void Aspose::Pdf::Plugins::FormFieldOptions::set_Color(System::SharedPtr value) +void Aspose::Pdf::LowCode::FormFieldOptions::set_Color(System::SharedPtr value) ``` ## See Also @@ -21,5 +21,5 @@ void Aspose::Pdf::Plugins::FormFieldOptions::set_Color(System::SharedPtr value) +void Aspose::Pdf::LowCode::FormFieldOptions::set_DefaultAppearance(System::SharedPtr value) ``` ## See Also @@ -21,5 +21,5 @@ void Aspose::Pdf::Plugins::FormFieldOptions::set_DefaultAppearance(System::Share * Typedef [SharedPtr](../../../system/sharedptr/) * Class [DefaultAppearance](../../../aspose.pdf.annotations/defaultappearance/) * Class [FormFieldOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formfieldoptions/set_exportable/_index.md b/english/cpp/aspose.pdf.lowcode/formfieldoptions/set_exportable/_index.md similarity index 63% rename from english/cpp/aspose.pdf.plugins/formfieldoptions/set_exportable/_index.md rename to english/cpp/aspose.pdf.lowcode/formfieldoptions/set_exportable/_index.md index 433a8b770e..df5cb6a743 100644 --- a/english/cpp/aspose.pdf.plugins/formfieldoptions/set_exportable/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formfieldoptions/set_exportable/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFieldOptions::set_Exportable method +title: Aspose::Pdf::LowCode::FormFieldOptions::set_Exportable method linktitle: set_Exportable second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFieldOptions::set_Exportable method. Gets/sets the value to determine whether created/modified field is exportable or not (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormFieldOptions::set_Exportable method. Gets/sets the value to determine whether created/modified field is exportable or not (if will be set) in C++.' type: docs weight: 2400 -url: /cpp/aspose.pdf.plugins/formfieldoptions/set_exportable/ +url: /cpp/aspose.pdf.lowcode/formfieldoptions/set_exportable/ --- ## FormFieldOptions::set_Exportable method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formfieldoptions/set_exportable/ Gets/sets the value to determine whether created/modified field is exportable or not (if will be set). ```cpp -void Aspose::Pdf::Plugins::FormFieldOptions::set_Exportable(System::Nullable value) +void Aspose::Pdf::LowCode::FormFieldOptions::set_Exportable(System::Nullable value) ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormFieldOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formfieldoptions/set_fitintorectangle/_index.md b/english/cpp/aspose.pdf.lowcode/formfieldoptions/set_fitintorectangle/_index.md similarity index 65% rename from english/cpp/aspose.pdf.plugins/formfieldoptions/set_fitintorectangle/_index.md rename to english/cpp/aspose.pdf.lowcode/formfieldoptions/set_fitintorectangle/_index.md index 50eb64b9d1..2299dc9e73 100644 --- a/english/cpp/aspose.pdf.plugins/formfieldoptions/set_fitintorectangle/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formfieldoptions/set_fitintorectangle/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFieldOptions::set_FitIntoRectangle method +title: Aspose::Pdf::LowCode::FormFieldOptions::set_FitIntoRectangle method linktitle: set_FitIntoRectangle second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFieldOptions::set_FitIntoRectangle method. Gets/sets the value to determine whether created/modified field is fit into rectangle or not (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormFieldOptions::set_FitIntoRectangle method. Gets/sets the value to determine whether created/modified field is fit into rectangle or not (if will be set) in C++.' type: docs weight: 2500 -url: /cpp/aspose.pdf.plugins/formfieldoptions/set_fitintorectangle/ +url: /cpp/aspose.pdf.lowcode/formfieldoptions/set_fitintorectangle/ --- ## FormFieldOptions::set_FitIntoRectangle method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formfieldoptions/set_fitintorectangle/ Gets/sets the value to determine whether created/modified field is fit into rectangle or not (if will be set). ```cpp -void Aspose::Pdf::Plugins::FormFieldOptions::set_FitIntoRectangle(System::Nullable value) +void Aspose::Pdf::LowCode::FormFieldOptions::set_FitIntoRectangle(System::Nullable value) ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormFieldOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formfieldoptions/set_flags/_index.md b/english/cpp/aspose.pdf.lowcode/formfieldoptions/set_flags/_index.md similarity index 66% rename from english/cpp/aspose.pdf.plugins/formfieldoptions/set_flags/_index.md rename to english/cpp/aspose.pdf.lowcode/formfieldoptions/set_flags/_index.md index dc3be9a70b..da0bc9f58f 100644 --- a/english/cpp/aspose.pdf.plugins/formfieldoptions/set_flags/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formfieldoptions/set_flags/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFieldOptions::set_Flags method +title: Aspose::Pdf::LowCode::FormFieldOptions::set_Flags method linktitle: set_Flags second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFieldOptions::set_Flags method. Gets/sets the value to determine property Flags for created/modified field (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormFieldOptions::set_Flags method. Gets/sets the value to determine property Flags for created/modified field (if will be set) in C++.' type: docs weight: 2600 -url: /cpp/aspose.pdf.plugins/formfieldoptions/set_flags/ +url: /cpp/aspose.pdf.lowcode/formfieldoptions/set_flags/ --- ## FormFieldOptions::set_Flags method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/formfieldoptions/set_flags/ Gets/sets the value to determine property Flags for created/modified field (if will be set). ```cpp -void Aspose::Pdf::Plugins::FormFieldOptions::set_Flags(System::Nullable value) +void Aspose::Pdf::LowCode::FormFieldOptions::set_Flags(System::Nullable value) ``` ## See Also @@ -21,5 +21,5 @@ void Aspose::Pdf::Plugins::FormFieldOptions::set_Flags(System::Nullable value) +void Aspose::Pdf::LowCode::FormFieldOptions::set_IsSharedField(System::Nullable value) ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormFieldOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formfieldoptions/set_mappingname/_index.md b/english/cpp/aspose.pdf.lowcode/formfieldoptions/set_mappingname/_index.md similarity index 63% rename from english/cpp/aspose.pdf.plugins/formfieldoptions/set_mappingname/_index.md rename to english/cpp/aspose.pdf.lowcode/formfieldoptions/set_mappingname/_index.md index 75f2366c71..456f3a125f 100644 --- a/english/cpp/aspose.pdf.plugins/formfieldoptions/set_mappingname/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formfieldoptions/set_mappingname/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFieldOptions::set_MappingName method +title: Aspose::Pdf::LowCode::FormFieldOptions::set_MappingName method linktitle: set_MappingName second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFieldOptions::set_MappingName method. Gets/sets the value to determine property MappingName for created/modified field (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormFieldOptions::set_MappingName method. Gets/sets the value to determine property MappingName for created/modified field (if will be set) in C++.' type: docs weight: 2800 -url: /cpp/aspose.pdf.plugins/formfieldoptions/set_mappingname/ +url: /cpp/aspose.pdf.lowcode/formfieldoptions/set_mappingname/ --- ## FormFieldOptions::set_MappingName method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formfieldoptions/set_mappingname/ Gets/sets the value to determine property MappingName for created/modified field (if will be set). ```cpp -void Aspose::Pdf::Plugins::FormFieldOptions::set_MappingName(System::String value) +void Aspose::Pdf::LowCode::FormFieldOptions::set_MappingName(System::String value) ``` ## See Also * Class [String](../../../system/string/) * Class [FormFieldOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formfieldoptions/set_maxfontsize/_index.md b/english/cpp/aspose.pdf.lowcode/formfieldoptions/set_maxfontsize/_index.md similarity index 63% rename from english/cpp/aspose.pdf.plugins/formfieldoptions/set_maxfontsize/_index.md rename to english/cpp/aspose.pdf.lowcode/formfieldoptions/set_maxfontsize/_index.md index e35529c05b..4963956feb 100644 --- a/english/cpp/aspose.pdf.plugins/formfieldoptions/set_maxfontsize/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formfieldoptions/set_maxfontsize/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFieldOptions::set_MaxFontSize method +title: Aspose::Pdf::LowCode::FormFieldOptions::set_MaxFontSize method linktitle: set_MaxFontSize second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFieldOptions::set_MaxFontSize method. Gets/sets the value to determine property MaxFontSize for created/modified field (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormFieldOptions::set_MaxFontSize method. Gets/sets the value to determine property MaxFontSize for created/modified field (if will be set) in C++.' type: docs weight: 2900 -url: /cpp/aspose.pdf.plugins/formfieldoptions/set_maxfontsize/ +url: /cpp/aspose.pdf.lowcode/formfieldoptions/set_maxfontsize/ --- ## FormFieldOptions::set_MaxFontSize method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formfieldoptions/set_maxfontsize/ Gets/sets the value to determine property MaxFontSize for created/modified field (if will be set). ```cpp -void Aspose::Pdf::Plugins::FormFieldOptions::set_MaxFontSize(System::Nullable value) +void Aspose::Pdf::LowCode::FormFieldOptions::set_MaxFontSize(System::Nullable value) ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormFieldOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formfieldoptions/set_minfontsize/_index.md b/english/cpp/aspose.pdf.lowcode/formfieldoptions/set_minfontsize/_index.md similarity index 63% rename from english/cpp/aspose.pdf.plugins/formfieldoptions/set_minfontsize/_index.md rename to english/cpp/aspose.pdf.lowcode/formfieldoptions/set_minfontsize/_index.md index 4348a30a76..6b9079b8e5 100644 --- a/english/cpp/aspose.pdf.plugins/formfieldoptions/set_minfontsize/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formfieldoptions/set_minfontsize/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFieldOptions::set_MinFontSize method +title: Aspose::Pdf::LowCode::FormFieldOptions::set_MinFontSize method linktitle: set_MinFontSize second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFieldOptions::set_MinFontSize method. Gets/sets the value to determine property MinFontSize for created/modified field (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormFieldOptions::set_MinFontSize method. Gets/sets the value to determine property MinFontSize for created/modified field (if will be set) in C++.' type: docs weight: 3000 -url: /cpp/aspose.pdf.plugins/formfieldoptions/set_minfontsize/ +url: /cpp/aspose.pdf.lowcode/formfieldoptions/set_minfontsize/ --- ## FormFieldOptions::set_MinFontSize method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formfieldoptions/set_minfontsize/ Gets/sets the value to determine property MinFontSize for created/modified field (if will be set). ```cpp -void Aspose::Pdf::Plugins::FormFieldOptions::set_MinFontSize(System::Nullable value) +void Aspose::Pdf::LowCode::FormFieldOptions::set_MinFontSize(System::Nullable value) ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormFieldOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formfieldoptions/set_name/_index.md b/english/cpp/aspose.pdf.lowcode/formfieldoptions/set_name/_index.md similarity index 61% rename from english/cpp/aspose.pdf.plugins/formfieldoptions/set_name/_index.md rename to english/cpp/aspose.pdf.lowcode/formfieldoptions/set_name/_index.md index deb89e96de..99fbc9dacf 100644 --- a/english/cpp/aspose.pdf.plugins/formfieldoptions/set_name/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formfieldoptions/set_name/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFieldOptions::set_Name method +title: Aspose::Pdf::LowCode::FormFieldOptions::set_Name method linktitle: set_Name second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFieldOptions::set_Name method. Gets/sets the value to determine property Name for created/modified field (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormFieldOptions::set_Name method. Gets/sets the value to determine property Name for created/modified field (if will be set) in C++.' type: docs weight: 3100 -url: /cpp/aspose.pdf.plugins/formfieldoptions/set_name/ +url: /cpp/aspose.pdf.lowcode/formfieldoptions/set_name/ --- ## FormFieldOptions::set_Name method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formfieldoptions/set_name/ Gets/sets the value to determine property Name for created/modified field (if will be set). ```cpp -void Aspose::Pdf::Plugins::FormFieldOptions::set_Name(System::String value) +void Aspose::Pdf::LowCode::FormFieldOptions::set_Name(System::String value) ``` ## See Also * Class [String](../../../system/string/) * Class [FormFieldOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formfieldoptions/set_partialname/_index.md b/english/cpp/aspose.pdf.lowcode/formfieldoptions/set_partialname/_index.md similarity index 63% rename from english/cpp/aspose.pdf.plugins/formfieldoptions/set_partialname/_index.md rename to english/cpp/aspose.pdf.lowcode/formfieldoptions/set_partialname/_index.md index b15418ba3d..03963496b0 100644 --- a/english/cpp/aspose.pdf.plugins/formfieldoptions/set_partialname/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formfieldoptions/set_partialname/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFieldOptions::set_PartialName method +title: Aspose::Pdf::LowCode::FormFieldOptions::set_PartialName method linktitle: set_PartialName second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFieldOptions::set_PartialName method. Gets/sets the value to determine property PartialName for created/modified field (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormFieldOptions::set_PartialName method. Gets/sets the value to determine property PartialName for created/modified field (if will be set) in C++.' type: docs weight: 3200 -url: /cpp/aspose.pdf.plugins/formfieldoptions/set_partialname/ +url: /cpp/aspose.pdf.lowcode/formfieldoptions/set_partialname/ --- ## FormFieldOptions::set_PartialName method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formfieldoptions/set_partialname/ Gets/sets the value to determine property PartialName for created/modified field (if will be set). ```cpp -void Aspose::Pdf::Plugins::FormFieldOptions::set_PartialName(System::String value) +void Aspose::Pdf::LowCode::FormFieldOptions::set_PartialName(System::String value) ``` ## See Also * Class [String](../../../system/string/) * Class [FormFieldOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formfieldoptions/set_readonly/_index.md b/english/cpp/aspose.pdf.lowcode/formfieldoptions/set_readonly/_index.md similarity index 63% rename from english/cpp/aspose.pdf.plugins/formfieldoptions/set_readonly/_index.md rename to english/cpp/aspose.pdf.lowcode/formfieldoptions/set_readonly/_index.md index 2c8ebdb219..d6c7f3b020 100644 --- a/english/cpp/aspose.pdf.plugins/formfieldoptions/set_readonly/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formfieldoptions/set_readonly/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFieldOptions::set_ReadOnly method +title: Aspose::Pdf::LowCode::FormFieldOptions::set_ReadOnly method linktitle: set_ReadOnly second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFieldOptions::set_ReadOnly method. Gets/sets the value to determine whether created/modified field is read only or not (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormFieldOptions::set_ReadOnly method. Gets/sets the value to determine whether created/modified field is read only or not (if will be set) in C++.' type: docs weight: 3300 -url: /cpp/aspose.pdf.plugins/formfieldoptions/set_readonly/ +url: /cpp/aspose.pdf.lowcode/formfieldoptions/set_readonly/ --- ## FormFieldOptions::set_ReadOnly method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formfieldoptions/set_readonly/ Gets/sets the value to determine whether created/modified field is read only or not (if will be set). ```cpp -void Aspose::Pdf::Plugins::FormFieldOptions::set_ReadOnly(System::Nullable value) +void Aspose::Pdf::LowCode::FormFieldOptions::set_ReadOnly(System::Nullable value) ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormFieldOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formfieldoptions/set_required/_index.md b/english/cpp/aspose.pdf.lowcode/formfieldoptions/set_required/_index.md similarity index 63% rename from english/cpp/aspose.pdf.plugins/formfieldoptions/set_required/_index.md rename to english/cpp/aspose.pdf.lowcode/formfieldoptions/set_required/_index.md index d8566564ee..b75f862937 100644 --- a/english/cpp/aspose.pdf.plugins/formfieldoptions/set_required/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formfieldoptions/set_required/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFieldOptions::set_Required method +title: Aspose::Pdf::LowCode::FormFieldOptions::set_Required method linktitle: set_Required second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFieldOptions::set_Required method. Gets/sets the value to determine whether created/modified field is required or not (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormFieldOptions::set_Required method. Gets/sets the value to determine whether created/modified field is required or not (if will be set) in C++.' type: docs weight: 3400 -url: /cpp/aspose.pdf.plugins/formfieldoptions/set_required/ +url: /cpp/aspose.pdf.lowcode/formfieldoptions/set_required/ --- ## FormFieldOptions::set_Required method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formfieldoptions/set_required/ Gets/sets the value to determine whether created/modified field is required or not (if will be set). ```cpp -void Aspose::Pdf::Plugins::FormFieldOptions::set_Required(System::Nullable value) +void Aspose::Pdf::LowCode::FormFieldOptions::set_Required(System::Nullable value) ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormFieldOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formfieldoptions/set_texthorizontalalignment/_index.md b/english/cpp/aspose.pdf.lowcode/formfieldoptions/set_texthorizontalalignment/_index.md similarity index 69% rename from english/cpp/aspose.pdf.plugins/formfieldoptions/set_texthorizontalalignment/_index.md rename to english/cpp/aspose.pdf.lowcode/formfieldoptions/set_texthorizontalalignment/_index.md index 0b51706cc9..2f8f7d8e08 100644 --- a/english/cpp/aspose.pdf.plugins/formfieldoptions/set_texthorizontalalignment/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formfieldoptions/set_texthorizontalalignment/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFieldOptions::set_TextHorizontalAlignment method +title: Aspose::Pdf::LowCode::FormFieldOptions::set_TextHorizontalAlignment method linktitle: set_TextHorizontalAlignment second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFieldOptions::set_TextHorizontalAlignment method. Gets/sets the value to determine property TextHorizontalAlignment for created/modified field (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormFieldOptions::set_TextHorizontalAlignment method. Gets/sets the value to determine property TextHorizontalAlignment for created/modified field (if will be set) in C++.' type: docs weight: 3500 -url: /cpp/aspose.pdf.plugins/formfieldoptions/set_texthorizontalalignment/ +url: /cpp/aspose.pdf.lowcode/formfieldoptions/set_texthorizontalalignment/ --- ## FormFieldOptions::set_TextHorizontalAlignment method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/formfieldoptions/set_texthorizontalalignment/ Gets/sets the value to determine property TextHorizontalAlignment for created/modified field (if will be set). ```cpp -void Aspose::Pdf::Plugins::FormFieldOptions::set_TextHorizontalAlignment(System::Nullable value) +void Aspose::Pdf::LowCode::FormFieldOptions::set_TextHorizontalAlignment(System::Nullable value) ``` ## See Also @@ -21,5 +21,5 @@ void Aspose::Pdf::Plugins::FormFieldOptions::set_TextHorizontalAlignment(System: * Class [Nullable](../../../system/nullable/) * Enum [HorizontalAlignment](../../../aspose.pdf/horizontalalignment/) * Class [FormFieldOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formfieldoptions/set_updateappearanceonconvert/_index.md b/english/cpp/aspose.pdf.lowcode/formfieldoptions/set_updateappearanceonconvert/_index.md similarity index 68% rename from english/cpp/aspose.pdf.plugins/formfieldoptions/set_updateappearanceonconvert/_index.md rename to english/cpp/aspose.pdf.lowcode/formfieldoptions/set_updateappearanceonconvert/_index.md index 2c77d9e027..28b87c38bb 100644 --- a/english/cpp/aspose.pdf.plugins/formfieldoptions/set_updateappearanceonconvert/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formfieldoptions/set_updateappearanceonconvert/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFieldOptions::set_UpdateAppearanceOnConvert method +title: Aspose::Pdf::LowCode::FormFieldOptions::set_UpdateAppearanceOnConvert method linktitle: set_UpdateAppearanceOnConvert second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFieldOptions::set_UpdateAppearanceOnConvert method. Gets/sets the value to determine whether created/modified field is update appearance on convert or not (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormFieldOptions::set_UpdateAppearanceOnConvert method. Gets/sets the value to determine whether created/modified field is update appearance on convert or not (if will be set) in C++.' type: docs weight: 3600 -url: /cpp/aspose.pdf.plugins/formfieldoptions/set_updateappearanceonconvert/ +url: /cpp/aspose.pdf.lowcode/formfieldoptions/set_updateappearanceonconvert/ --- ## FormFieldOptions::set_UpdateAppearanceOnConvert method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formfieldoptions/set_updateappearanceonconvert/ Gets/sets the value to determine whether created/modified field is update appearance on convert or not (if will be set). ```cpp -void Aspose::Pdf::Plugins::FormFieldOptions::set_UpdateAppearanceOnConvert(System::Nullable value) +void Aspose::Pdf::LowCode::FormFieldOptions::set_UpdateAppearanceOnConvert(System::Nullable value) ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormFieldOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formfieldoptions/set_usefontsubset/_index.md b/english/cpp/aspose.pdf.lowcode/formfieldoptions/set_usefontsubset/_index.md similarity index 64% rename from english/cpp/aspose.pdf.plugins/formfieldoptions/set_usefontsubset/_index.md rename to english/cpp/aspose.pdf.lowcode/formfieldoptions/set_usefontsubset/_index.md index 00039259b5..cc86b40478 100644 --- a/english/cpp/aspose.pdf.plugins/formfieldoptions/set_usefontsubset/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formfieldoptions/set_usefontsubset/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFieldOptions::set_UseFontSubset method +title: Aspose::Pdf::LowCode::FormFieldOptions::set_UseFontSubset method linktitle: set_UseFontSubset second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFieldOptions::set_UseFontSubset method. Gets/sets the value to determine whether created/modified field is use font subset or not (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormFieldOptions::set_UseFontSubset method. Gets/sets the value to determine whether created/modified field is use font subset or not (if will be set) in C++.' type: docs weight: 3700 -url: /cpp/aspose.pdf.plugins/formfieldoptions/set_usefontsubset/ +url: /cpp/aspose.pdf.lowcode/formfieldoptions/set_usefontsubset/ --- ## FormFieldOptions::set_UseFontSubset method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formfieldoptions/set_usefontsubset/ Gets/sets the value to determine whether created/modified field is use font subset or not (if will be set). ```cpp -void Aspose::Pdf::Plugins::FormFieldOptions::set_UseFontSubset(System::Nullable value) +void Aspose::Pdf::LowCode::FormFieldOptions::set_UseFontSubset(System::Nullable value) ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormFieldOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formfieldoptions/set_value/_index.md b/english/cpp/aspose.pdf.lowcode/formfieldoptions/set_value/_index.md similarity index 61% rename from english/cpp/aspose.pdf.plugins/formfieldoptions/set_value/_index.md rename to english/cpp/aspose.pdf.lowcode/formfieldoptions/set_value/_index.md index c303640d46..03cca26ead 100644 --- a/english/cpp/aspose.pdf.plugins/formfieldoptions/set_value/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formfieldoptions/set_value/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFieldOptions::set_Value method +title: Aspose::Pdf::LowCode::FormFieldOptions::set_Value method linktitle: set_Value second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFieldOptions::set_Value method. Gets/sets the value to determine property Value for created/modified field (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormFieldOptions::set_Value method. Gets/sets the value to determine property Value for created/modified field (if will be set) in C++.' type: docs weight: 3800 -url: /cpp/aspose.pdf.plugins/formfieldoptions/set_value/ +url: /cpp/aspose.pdf.lowcode/formfieldoptions/set_value/ --- ## FormFieldOptions::set_Value method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formfieldoptions/set_value/ Gets/sets the value to determine property Value for created/modified field (if will be set). ```cpp -void Aspose::Pdf::Plugins::FormFieldOptions::set_Value(System::String value) +void Aspose::Pdf::LowCode::FormFieldOptions::set_Value(System::String value) ``` ## See Also * Class [String](../../../system/string/) * Class [FormFieldOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formfieldsetoptions/_index.md b/english/cpp/aspose.pdf.lowcode/formfieldsetoptions/_index.md similarity index 69% rename from english/cpp/aspose.pdf.plugins/formfieldsetoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/formfieldsetoptions/_index.md index 900b77fdcb..62bc91da97 100644 --- a/english/cpp/aspose.pdf.plugins/formfieldsetoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formfieldsetoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFieldSetOptions class +title: Aspose::Pdf::LowCode::FormFieldSetOptions class linktitle: FormFieldSetOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFieldSetOptions class. Represents options for set properties in Field in C++.' +description: 'Aspose::Pdf::LowCode::FormFieldSetOptions class. Represents options for set properties in Field in C++.' type: docs weight: 2200 -url: /cpp/aspose.pdf.plugins/formfieldsetoptions/ +url: /cpp/aspose.pdf.lowcode/formfieldsetoptions/ --- ## FormFieldSetOptions class @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/formfieldsetoptions/ Represents options for set properties in Field. ```cpp -class FormFieldSetOptions : public Aspose::Pdf::Plugins::FormFieldOptions +class FormFieldSetOptions : public Aspose::Pdf::LowCode::FormFieldOptions ``` ## Methods @@ -25,5 +25,5 @@ class FormFieldSetOptions : public Aspose::Pdf::Plugins::FormFieldOptions ## See Also * Class [FormFieldOptions](../formfieldoptions/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/formfieldsetoptions/get_rect/_index.md b/english/cpp/aspose.pdf.lowcode/formfieldsetoptions/get_rect/_index.md similarity index 62% rename from english/cpp/aspose.pdf.plugins/formfieldsetoptions/get_rect/_index.md rename to english/cpp/aspose.pdf.lowcode/formfieldsetoptions/get_rect/_index.md index 4e9e8d993a..6310673cdf 100644 --- a/english/cpp/aspose.pdf.plugins/formfieldsetoptions/get_rect/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formfieldsetoptions/get_rect/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFieldSetOptions::get_Rect method +title: Aspose::Pdf::LowCode::FormFieldSetOptions::get_Rect method linktitle: get_Rect second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFieldSetOptions::get_Rect method. Rectangle that be setted to field(s) in C++.' +description: 'Aspose::Pdf::LowCode::FormFieldSetOptions::get_Rect method. Rectangle that be setted to field(s) in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/formfieldsetoptions/get_rect/ +url: /cpp/aspose.pdf.lowcode/formfieldsetoptions/get_rect/ --- ## FormFieldSetOptions::get_Rect method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/formfieldsetoptions/get_rect/ [Rectangle](../../../aspose.pdf/rectangle/) that be setted to field(s). ```cpp -const System::SharedPtr & Aspose::Pdf::Plugins::FormFieldSetOptions::get_Rect() const +const System::SharedPtr & Aspose::Pdf::LowCode::FormFieldSetOptions::get_Rect() const ``` ## See Also @@ -21,5 +21,5 @@ const System::SharedPtr & Aspose::Pdf::Plugins::FormFieldSetOptions:: * Typedef [SharedPtr](../../../system/sharedptr/) * Class [Rectangle](../../../aspose.pdf/rectangle/) * Class [FormFieldSetOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formfieldsetoptions/set_rect/_index.md b/english/cpp/aspose.pdf.lowcode/formfieldsetoptions/set_rect/_index.md similarity index 61% rename from english/cpp/aspose.pdf.plugins/formfieldsetoptions/set_rect/_index.md rename to english/cpp/aspose.pdf.lowcode/formfieldsetoptions/set_rect/_index.md index 11141045cf..c790bae87c 100644 --- a/english/cpp/aspose.pdf.plugins/formfieldsetoptions/set_rect/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formfieldsetoptions/set_rect/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFieldSetOptions::set_Rect method +title: Aspose::Pdf::LowCode::FormFieldSetOptions::set_Rect method linktitle: set_Rect second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFieldSetOptions::set_Rect method. Rectangle that be setted to field(s) in C++.' +description: 'Aspose::Pdf::LowCode::FormFieldSetOptions::set_Rect method. Rectangle that be setted to field(s) in C++.' type: docs weight: 200 -url: /cpp/aspose.pdf.plugins/formfieldsetoptions/set_rect/ +url: /cpp/aspose.pdf.lowcode/formfieldsetoptions/set_rect/ --- ## FormFieldSetOptions::set_Rect method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/formfieldsetoptions/set_rect/ [Rectangle](../../../aspose.pdf/rectangle/) that be setted to field(s). ```cpp -void Aspose::Pdf::Plugins::FormFieldSetOptions::set_Rect(System::SharedPtr value) +void Aspose::Pdf::LowCode::FormFieldSetOptions::set_Rect(System::SharedPtr value) ``` ## See Also @@ -21,5 +21,5 @@ void Aspose::Pdf::Plugins::FormFieldSetOptions::set_Rect(System::SharedPtr Aspose::Pdf::Plugins::FormFlattener::Process(System::SharedPtr options) override +System::SharedPtr Aspose::Pdf::LowCode::FormFlattener::Process(System::SharedPtr options) override ``` @@ -31,5 +31,5 @@ An [ResultContainer](../../resultcontainer/) object containing the result of the * Class [ResultContainer](../../resultcontainer/) * Class [IPluginOptions](../../ipluginoptions/) * Class [FormFlattener](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formflatteneroptions/_index.md b/english/cpp/aspose.pdf.lowcode/formflatteneroptions/_index.md similarity index 62% rename from english/cpp/aspose.pdf.plugins/formflatteneroptions/_index.md rename to english/cpp/aspose.pdf.lowcode/formflatteneroptions/_index.md index 90920a9810..cfa59f2ca1 100644 --- a/english/cpp/aspose.pdf.plugins/formflatteneroptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formflatteneroptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFlattenerOptions class +title: Aspose::Pdf::LowCode::FormFlattenerOptions class linktitle: FormFlattenerOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFlattenerOptions class. Base class for option classes for flatten fields (not annotations) in document by FormFlattener plugin in C++.' +description: 'Aspose::Pdf::LowCode::FormFlattenerOptions class. Base class for option classes for flatten fields (not annotations) in document by FormFlattener plugin in C++.' type: docs weight: 2500 -url: /cpp/aspose.pdf.plugins/formflatteneroptions/ +url: /cpp/aspose.pdf.lowcode/formflatteneroptions/ --- ## FormFlattenerOptions class @@ -13,11 +13,11 @@ url: /cpp/aspose.pdf.plugins/formflatteneroptions/ Base class for option classes for flatten fields (not annotations) in document by [FormFlattener](../formflattener/) plugin. ```cpp -class FormFlattenerOptions : public Aspose::Pdf::Plugins::FormOptions +class FormFlattenerOptions : public Aspose::Pdf::LowCode::FormOptions ``` ## See Also * Class [FormOptions](../formoptions/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/formflattenselectedfieldsoptions/_index.md b/english/cpp/aspose.pdf.lowcode/formflattenselectedfieldsoptions/_index.md similarity index 68% rename from english/cpp/aspose.pdf.plugins/formflattenselectedfieldsoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/formflattenselectedfieldsoptions/_index.md index 770d2912dc..512acf41b9 100644 --- a/english/cpp/aspose.pdf.plugins/formflattenselectedfieldsoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formflattenselectedfieldsoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFlattenSelectedFieldsOptions class +title: Aspose::Pdf::LowCode::FormFlattenSelectedFieldsOptions class linktitle: FormFlattenSelectedFieldsOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFlattenSelectedFieldsOptions class. Represents options for flatten selected fields (not annotations) in document by FormFlattener plugin in C++.' +description: 'Aspose::Pdf::LowCode::FormFlattenSelectedFieldsOptions class. Represents options for flatten selected fields (not annotations) in document by FormFlattener plugin in C++.' type: docs weight: 2600 -url: /cpp/aspose.pdf.plugins/formflattenselectedfieldsoptions/ +url: /cpp/aspose.pdf.lowcode/formflattenselectedfieldsoptions/ --- ## FormFlattenSelectedFieldsOptions class @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/formflattenselectedfieldsoptions/ Represents options for flatten selected fields (not annotations) in document by [FormFlattener](../formflattener/) plugin. ```cpp -class FormFlattenSelectedFieldsOptions : public Aspose::Pdf::Plugins::FormFlattenerOptions +class FormFlattenSelectedFieldsOptions : public Aspose::Pdf::LowCode::FormFlattenerOptions ``` ## Methods @@ -24,5 +24,5 @@ class FormFlattenSelectedFieldsOptions : public Aspose::Pdf::Plugins::FormFlatte ## See Also * Class [FormFlattenerOptions](../formflatteneroptions/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/formflattenselectedfieldsoptions/formflattenselectedfieldsoptions/_index.md b/english/cpp/aspose.pdf.lowcode/formflattenselectedfieldsoptions/formflattenselectedfieldsoptions/_index.md similarity index 72% rename from english/cpp/aspose.pdf.plugins/formflattenselectedfieldsoptions/formflattenselectedfieldsoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/formflattenselectedfieldsoptions/formflattenselectedfieldsoptions/_index.md index ed096a24b0..f8ad07db05 100644 --- a/english/cpp/aspose.pdf.plugins/formflattenselectedfieldsoptions/formflattenselectedfieldsoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formflattenselectedfieldsoptions/formflattenselectedfieldsoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormFlattenSelectedFieldsOptions::FormFlattenSelectedFieldsOptions constructor +title: Aspose::Pdf::LowCode::FormFlattenSelectedFieldsOptions::FormFlattenSelectedFieldsOptions constructor linktitle: FormFlattenSelectedFieldsOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormFlattenSelectedFieldsOptions::FormFlattenSelectedFieldsOptions constructor. Initializes new instance of the FormFlattenSelectedFieldsOptions object in C++.' +description: 'Aspose::Pdf::LowCode::FormFlattenSelectedFieldsOptions::FormFlattenSelectedFieldsOptions constructor. Initializes new instance of the FormFlattenSelectedFieldsOptions object in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/formflattenselectedfieldsoptions/formflattenselectedfieldsoptions/ +url: /cpp/aspose.pdf.lowcode/formflattenselectedfieldsoptions/formflattenselectedfieldsoptions/ --- ## FormFlattenSelectedFieldsOptions::FormFlattenSelectedFieldsOptions constructor @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/formflattenselectedfieldsoptions/formflattenselecte Initializes new instance of the [FormFlattenSelectedFieldsOptions](../) object. ```cpp -Aspose::Pdf::Plugins::FormFlattenSelectedFieldsOptions::FormFlattenSelectedFieldsOptions(SelectField selectField) +Aspose::Pdf::LowCode::FormFlattenSelectedFieldsOptions::FormFlattenSelectedFieldsOptions(SelectField selectField) ``` @@ -25,5 +25,5 @@ Aspose::Pdf::Plugins::FormFlattenSelectedFieldsOptions::FormFlattenSelectedField * Typedef [SelectField](../../selectfield/) * Class [FormFlattenSelectedFieldsOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formoptions/_index.md b/english/cpp/aspose.pdf.lowcode/formoptions/_index.md similarity index 69% rename from english/cpp/aspose.pdf.plugins/formoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/formoptions/_index.md index 046b5df382..3fac91f364 100644 --- a/english/cpp/aspose.pdf.plugins/formoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormOptions class +title: Aspose::Pdf::LowCode::FormOptions class linktitle: FormOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormOptions class. Represents options for a family Form.... plugins in C++.' +description: 'Aspose::Pdf::LowCode::FormOptions class. Represents options for a family Form.... plugins in C++.' type: docs weight: 2700 -url: /cpp/aspose.pdf.plugins/formoptions/ +url: /cpp/aspose.pdf.lowcode/formoptions/ --- ## FormOptions class @@ -13,9 +13,9 @@ url: /cpp/aspose.pdf.plugins/formoptions/ Represents options for a family Form.... plugins. ```cpp -class FormOptions : public Aspose::Pdf::Plugins::IPluginOptions, - public Aspose::Pdf::Plugins::IDataContainer, - public Aspose::Pdf::Plugins::ISaveInstruction +class FormOptions : public Aspose::Pdf::LowCode::IPluginOptions, + public Aspose::Pdf::LowCode::IDataContainer, + public Aspose::Pdf::LowCode::ISaveInstruction ``` ## Methods @@ -31,5 +31,5 @@ class FormOptions : public Aspose::Pdf::Plugins::IPluginOptions, * Class [IPluginOptions](../ipluginoptions/) * Class [IDataContainer](../idatacontainer/) * Class [ISaveInstruction](../isaveinstruction/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/formoptions/addinput/_index.md b/english/cpp/aspose.pdf.lowcode/formoptions/addinput/_index.md similarity index 67% rename from english/cpp/aspose.pdf.plugins/formoptions/addinput/_index.md rename to english/cpp/aspose.pdf.lowcode/formoptions/addinput/_index.md index 81edd41fa9..694515e300 100644 --- a/english/cpp/aspose.pdf.plugins/formoptions/addinput/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formoptions/addinput/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormOptions::AddInput method +title: Aspose::Pdf::LowCode::FormOptions::AddInput method linktitle: AddInput second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormOptions::AddInput method. Adds new data source to the Form... plugins data collection in C++.' +description: 'Aspose::Pdf::LowCode::FormOptions::AddInput method. Adds new data source to the Form... plugins data collection in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/formoptions/addinput/ +url: /cpp/aspose.pdf.lowcode/formoptions/addinput/ --- ## FormOptions::AddInput method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/formoptions/addinput/ Adds new data source to the Form... plugins data collection. ```cpp -void Aspose::Pdf::Plugins::FormOptions::AddInput(System::SharedPtr dataSource) override +void Aspose::Pdf::LowCode::FormOptions::AddInput(System::SharedPtr dataSource) override ``` @@ -26,5 +26,5 @@ void Aspose::Pdf::Plugins::FormOptions::AddInput(System::SharedPtr * Typedef [SharedPtr](../../../system/sharedptr/) * Class [IDataSource](../../idatasource/) * Class [FormOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formoptions/addoutput/_index.md b/english/cpp/aspose.pdf.lowcode/formoptions/addoutput/_index.md similarity index 68% rename from english/cpp/aspose.pdf.plugins/formoptions/addoutput/_index.md rename to english/cpp/aspose.pdf.lowcode/formoptions/addoutput/_index.md index 4960a3de72..7fd7c24cdb 100644 --- a/english/cpp/aspose.pdf.plugins/formoptions/addoutput/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formoptions/addoutput/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormOptions::AddOutput method +title: Aspose::Pdf::LowCode::FormOptions::AddOutput method linktitle: AddOutput second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormOptions::AddOutput method. Adds new data source to the Form... plugins data collection in C++.' +description: 'Aspose::Pdf::LowCode::FormOptions::AddOutput method. Adds new data source to the Form... plugins data collection in C++.' type: docs weight: 200 -url: /cpp/aspose.pdf.plugins/formoptions/addoutput/ +url: /cpp/aspose.pdf.lowcode/formoptions/addoutput/ --- ## FormOptions::AddOutput method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/formoptions/addoutput/ Adds new data source to the Form... plugins data collection. ```cpp -void Aspose::Pdf::Plugins::FormOptions::AddOutput(System::SharedPtr saveDataSource) override +void Aspose::Pdf::LowCode::FormOptions::AddOutput(System::SharedPtr saveDataSource) override ``` @@ -26,5 +26,5 @@ void Aspose::Pdf::Plugins::FormOptions::AddOutput(System::SharedPtr * Typedef [SharedPtr](../../../system/sharedptr/) * Class [IDataSource](../../idatasource/) * Class [FormOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formoptions/get_inputs/_index.md b/english/cpp/aspose.pdf.lowcode/formoptions/get_inputs/_index.md similarity index 64% rename from english/cpp/aspose.pdf.plugins/formoptions/get_inputs/_index.md rename to english/cpp/aspose.pdf.lowcode/formoptions/get_inputs/_index.md index c40347ea2c..a106e4d567 100644 --- a/english/cpp/aspose.pdf.plugins/formoptions/get_inputs/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formoptions/get_inputs/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormOptions::get_Inputs method +title: Aspose::Pdf::LowCode::FormOptions::get_Inputs method linktitle: get_Inputs second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormOptions::get_Inputs method. Returns Form.... plugins data collection in C++.' +description: 'Aspose::Pdf::LowCode::FormOptions::get_Inputs method. Returns Form.... plugins data collection in C++.' type: docs weight: 300 -url: /cpp/aspose.pdf.plugins/formoptions/get_inputs/ +url: /cpp/aspose.pdf.lowcode/formoptions/get_inputs/ --- ## FormOptions::get_Inputs method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/formoptions/get_inputs/ Returns Form.... plugins data collection. ```cpp -System::SharedPtr>> Aspose::Pdf::Plugins::FormOptions::get_Inputs() override +System::SharedPtr>> Aspose::Pdf::LowCode::FormOptions::get_Inputs() override ``` ## See Also @@ -22,5 +22,5 @@ System::SharedPtr>> Aspose::Pdf::Plugins::FormOptions::get_Outputs() override +System::SharedPtr>> Aspose::Pdf::LowCode::FormOptions::get_Outputs() override ``` ## See Also @@ -22,5 +22,5 @@ System::SharedPtr rect) +Aspose::Pdf::LowCode::FormTextBoxFieldCreateOptions::FormTextBoxFieldCreateOptions(int32_t pageNum, System::SharedPtr rect) ``` @@ -27,5 +27,5 @@ Aspose::Pdf::Plugins::FormTextBoxFieldCreateOptions::FormTextBoxFieldCreateOptio * Typedef [SharedPtr](../../../system/sharedptr/) * Class [Rectangle](../../../aspose.pdf/rectangle/) * Class [FormTextBoxFieldCreateOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formtextboxfieldcreateoptions/get_forcecombs/_index.md b/english/cpp/aspose.pdf.lowcode/formtextboxfieldcreateoptions/get_forcecombs/_index.md similarity index 66% rename from english/cpp/aspose.pdf.plugins/formtextboxfieldcreateoptions/get_forcecombs/_index.md rename to english/cpp/aspose.pdf.lowcode/formtextboxfieldcreateoptions/get_forcecombs/_index.md index c0d88cd6d5..b75ceba27a 100644 --- a/english/cpp/aspose.pdf.plugins/formtextboxfieldcreateoptions/get_forcecombs/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formtextboxfieldcreateoptions/get_forcecombs/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormTextBoxFieldCreateOptions::get_ForceCombs method +title: Aspose::Pdf::LowCode::FormTextBoxFieldCreateOptions::get_ForceCombs method linktitle: get_ForceCombs second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormTextBoxFieldCreateOptions::get_ForceCombs method. Gets/sets the value to determine whether created TextBoxField is forcecombs or not (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormTextBoxFieldCreateOptions::get_ForceCombs method. Gets/sets the value to determine whether created TextBoxField is forcecombs or not (if will be set) in C++.' type: docs weight: 200 -url: /cpp/aspose.pdf.plugins/formtextboxfieldcreateoptions/get_forcecombs/ +url: /cpp/aspose.pdf.lowcode/formtextboxfieldcreateoptions/get_forcecombs/ --- ## FormTextBoxFieldCreateOptions::get_ForceCombs method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formtextboxfieldcreateoptions/get_forcecombs/ Gets/sets the value to determine whether created TextBoxField is forcecombs or not (if will be set). ```cpp -System::Nullable Aspose::Pdf::Plugins::FormTextBoxFieldCreateOptions::get_ForceCombs() const +System::Nullable Aspose::Pdf::LowCode::FormTextBoxFieldCreateOptions::get_ForceCombs() const ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormTextBoxFieldCreateOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formtextboxfieldcreateoptions/get_maxlen/_index.md b/english/cpp/aspose.pdf.lowcode/formtextboxfieldcreateoptions/get_maxlen/_index.md similarity index 64% rename from english/cpp/aspose.pdf.plugins/formtextboxfieldcreateoptions/get_maxlen/_index.md rename to english/cpp/aspose.pdf.lowcode/formtextboxfieldcreateoptions/get_maxlen/_index.md index 893c45de45..356bbc2d69 100644 --- a/english/cpp/aspose.pdf.plugins/formtextboxfieldcreateoptions/get_maxlen/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formtextboxfieldcreateoptions/get_maxlen/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormTextBoxFieldCreateOptions::get_MaxLen method +title: Aspose::Pdf::LowCode::FormTextBoxFieldCreateOptions::get_MaxLen method linktitle: get_MaxLen second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormTextBoxFieldCreateOptions::get_MaxLen method. Gets/sets the value to determine property MaxLen for created TextBoxField (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormTextBoxFieldCreateOptions::get_MaxLen method. Gets/sets the value to determine property MaxLen for created TextBoxField (if will be set) in C++.' type: docs weight: 300 -url: /cpp/aspose.pdf.plugins/formtextboxfieldcreateoptions/get_maxlen/ +url: /cpp/aspose.pdf.lowcode/formtextboxfieldcreateoptions/get_maxlen/ --- ## FormTextBoxFieldCreateOptions::get_MaxLen method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formtextboxfieldcreateoptions/get_maxlen/ Gets/sets the value to determine property MaxLen for created TextBoxField (if will be set). ```cpp -System::Nullable Aspose::Pdf::Plugins::FormTextBoxFieldCreateOptions::get_MaxLen() const +System::Nullable Aspose::Pdf::LowCode::FormTextBoxFieldCreateOptions::get_MaxLen() const ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormTextBoxFieldCreateOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formtextboxfieldcreateoptions/get_multiline/_index.md b/english/cpp/aspose.pdf.lowcode/formtextboxfieldcreateoptions/get_multiline/_index.md similarity index 66% rename from english/cpp/aspose.pdf.plugins/formtextboxfieldcreateoptions/get_multiline/_index.md rename to english/cpp/aspose.pdf.lowcode/formtextboxfieldcreateoptions/get_multiline/_index.md index b243ce57d1..33b53fd195 100644 --- a/english/cpp/aspose.pdf.plugins/formtextboxfieldcreateoptions/get_multiline/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formtextboxfieldcreateoptions/get_multiline/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormTextBoxFieldCreateOptions::get_Multiline method +title: Aspose::Pdf::LowCode::FormTextBoxFieldCreateOptions::get_Multiline method linktitle: get_Multiline second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormTextBoxFieldCreateOptions::get_Multiline method. Gets/sets the value to determine whether created TextBoxField is multiline or not (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormTextBoxFieldCreateOptions::get_Multiline method. Gets/sets the value to determine whether created TextBoxField is multiline or not (if will be set) in C++.' type: docs weight: 400 -url: /cpp/aspose.pdf.plugins/formtextboxfieldcreateoptions/get_multiline/ +url: /cpp/aspose.pdf.lowcode/formtextboxfieldcreateoptions/get_multiline/ --- ## FormTextBoxFieldCreateOptions::get_Multiline method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formtextboxfieldcreateoptions/get_multiline/ Gets/sets the value to determine whether created TextBoxField is multiline or not (if will be set). ```cpp -System::Nullable Aspose::Pdf::Plugins::FormTextBoxFieldCreateOptions::get_Multiline() const +System::Nullable Aspose::Pdf::LowCode::FormTextBoxFieldCreateOptions::get_Multiline() const ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormTextBoxFieldCreateOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formtextboxfieldcreateoptions/get_spellcheck/_index.md b/english/cpp/aspose.pdf.lowcode/formtextboxfieldcreateoptions/get_spellcheck/_index.md similarity index 66% rename from english/cpp/aspose.pdf.plugins/formtextboxfieldcreateoptions/get_spellcheck/_index.md rename to english/cpp/aspose.pdf.lowcode/formtextboxfieldcreateoptions/get_spellcheck/_index.md index e6032207fb..4617eb1eb8 100644 --- a/english/cpp/aspose.pdf.plugins/formtextboxfieldcreateoptions/get_spellcheck/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formtextboxfieldcreateoptions/get_spellcheck/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormTextBoxFieldCreateOptions::get_SpellCheck method +title: Aspose::Pdf::LowCode::FormTextBoxFieldCreateOptions::get_SpellCheck method linktitle: get_SpellCheck second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormTextBoxFieldCreateOptions::get_SpellCheck method. Gets/sets the value to determine whether created TextBoxField is spellcheck or not (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormTextBoxFieldCreateOptions::get_SpellCheck method. Gets/sets the value to determine whether created TextBoxField is spellcheck or not (if will be set) in C++.' type: docs weight: 500 -url: /cpp/aspose.pdf.plugins/formtextboxfieldcreateoptions/get_spellcheck/ +url: /cpp/aspose.pdf.lowcode/formtextboxfieldcreateoptions/get_spellcheck/ --- ## FormTextBoxFieldCreateOptions::get_SpellCheck method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formtextboxfieldcreateoptions/get_spellcheck/ Gets/sets the value to determine whether created TextBoxField is spellcheck or not (if will be set). ```cpp -System::Nullable Aspose::Pdf::Plugins::FormTextBoxFieldCreateOptions::get_SpellCheck() const +System::Nullable Aspose::Pdf::LowCode::FormTextBoxFieldCreateOptions::get_SpellCheck() const ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormTextBoxFieldCreateOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formtextboxfieldcreateoptions/set_forcecombs/_index.md b/english/cpp/aspose.pdf.lowcode/formtextboxfieldcreateoptions/set_forcecombs/_index.md similarity index 66% rename from english/cpp/aspose.pdf.plugins/formtextboxfieldcreateoptions/set_forcecombs/_index.md rename to english/cpp/aspose.pdf.lowcode/formtextboxfieldcreateoptions/set_forcecombs/_index.md index 53cac4be70..2de2cc66ba 100644 --- a/english/cpp/aspose.pdf.plugins/formtextboxfieldcreateoptions/set_forcecombs/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formtextboxfieldcreateoptions/set_forcecombs/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormTextBoxFieldCreateOptions::set_ForceCombs method +title: Aspose::Pdf::LowCode::FormTextBoxFieldCreateOptions::set_ForceCombs method linktitle: set_ForceCombs second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormTextBoxFieldCreateOptions::set_ForceCombs method. Gets/sets the value to determine whether created TextBoxField is forcecombs or not (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormTextBoxFieldCreateOptions::set_ForceCombs method. Gets/sets the value to determine whether created TextBoxField is forcecombs or not (if will be set) in C++.' type: docs weight: 600 -url: /cpp/aspose.pdf.plugins/formtextboxfieldcreateoptions/set_forcecombs/ +url: /cpp/aspose.pdf.lowcode/formtextboxfieldcreateoptions/set_forcecombs/ --- ## FormTextBoxFieldCreateOptions::set_ForceCombs method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formtextboxfieldcreateoptions/set_forcecombs/ Gets/sets the value to determine whether created TextBoxField is forcecombs or not (if will be set). ```cpp -void Aspose::Pdf::Plugins::FormTextBoxFieldCreateOptions::set_ForceCombs(System::Nullable value) +void Aspose::Pdf::LowCode::FormTextBoxFieldCreateOptions::set_ForceCombs(System::Nullable value) ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormTextBoxFieldCreateOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formtextboxfieldcreateoptions/set_maxlen/_index.md b/english/cpp/aspose.pdf.lowcode/formtextboxfieldcreateoptions/set_maxlen/_index.md similarity index 65% rename from english/cpp/aspose.pdf.plugins/formtextboxfieldcreateoptions/set_maxlen/_index.md rename to english/cpp/aspose.pdf.lowcode/formtextboxfieldcreateoptions/set_maxlen/_index.md index a9f7f7cec5..2e7369be4d 100644 --- a/english/cpp/aspose.pdf.plugins/formtextboxfieldcreateoptions/set_maxlen/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formtextboxfieldcreateoptions/set_maxlen/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormTextBoxFieldCreateOptions::set_MaxLen method +title: Aspose::Pdf::LowCode::FormTextBoxFieldCreateOptions::set_MaxLen method linktitle: set_MaxLen second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormTextBoxFieldCreateOptions::set_MaxLen method. Gets/sets the value to determine property MaxLen for created TextBoxField (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormTextBoxFieldCreateOptions::set_MaxLen method. Gets/sets the value to determine property MaxLen for created TextBoxField (if will be set) in C++.' type: docs weight: 700 -url: /cpp/aspose.pdf.plugins/formtextboxfieldcreateoptions/set_maxlen/ +url: /cpp/aspose.pdf.lowcode/formtextboxfieldcreateoptions/set_maxlen/ --- ## FormTextBoxFieldCreateOptions::set_MaxLen method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formtextboxfieldcreateoptions/set_maxlen/ Gets/sets the value to determine property MaxLen for created TextBoxField (if will be set). ```cpp -void Aspose::Pdf::Plugins::FormTextBoxFieldCreateOptions::set_MaxLen(System::Nullable value) +void Aspose::Pdf::LowCode::FormTextBoxFieldCreateOptions::set_MaxLen(System::Nullable value) ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormTextBoxFieldCreateOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formtextboxfieldcreateoptions/set_multiline/_index.md b/english/cpp/aspose.pdf.lowcode/formtextboxfieldcreateoptions/set_multiline/_index.md similarity index 66% rename from english/cpp/aspose.pdf.plugins/formtextboxfieldcreateoptions/set_multiline/_index.md rename to english/cpp/aspose.pdf.lowcode/formtextboxfieldcreateoptions/set_multiline/_index.md index 4a9959c70d..fa7d378bbb 100644 --- a/english/cpp/aspose.pdf.plugins/formtextboxfieldcreateoptions/set_multiline/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formtextboxfieldcreateoptions/set_multiline/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormTextBoxFieldCreateOptions::set_Multiline method +title: Aspose::Pdf::LowCode::FormTextBoxFieldCreateOptions::set_Multiline method linktitle: set_Multiline second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormTextBoxFieldCreateOptions::set_Multiline method. Gets/sets the value to determine whether created TextBoxField is multiline or not (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormTextBoxFieldCreateOptions::set_Multiline method. Gets/sets the value to determine whether created TextBoxField is multiline or not (if will be set) in C++.' type: docs weight: 800 -url: /cpp/aspose.pdf.plugins/formtextboxfieldcreateoptions/set_multiline/ +url: /cpp/aspose.pdf.lowcode/formtextboxfieldcreateoptions/set_multiline/ --- ## FormTextBoxFieldCreateOptions::set_Multiline method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formtextboxfieldcreateoptions/set_multiline/ Gets/sets the value to determine whether created TextBoxField is multiline or not (if will be set). ```cpp -void Aspose::Pdf::Plugins::FormTextBoxFieldCreateOptions::set_Multiline(System::Nullable value) +void Aspose::Pdf::LowCode::FormTextBoxFieldCreateOptions::set_Multiline(System::Nullable value) ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormTextBoxFieldCreateOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formtextboxfieldcreateoptions/set_spellcheck/_index.md b/english/cpp/aspose.pdf.lowcode/formtextboxfieldcreateoptions/set_spellcheck/_index.md similarity index 66% rename from english/cpp/aspose.pdf.plugins/formtextboxfieldcreateoptions/set_spellcheck/_index.md rename to english/cpp/aspose.pdf.lowcode/formtextboxfieldcreateoptions/set_spellcheck/_index.md index 8911db01fd..ee2ad4b7f3 100644 --- a/english/cpp/aspose.pdf.plugins/formtextboxfieldcreateoptions/set_spellcheck/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formtextboxfieldcreateoptions/set_spellcheck/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormTextBoxFieldCreateOptions::set_SpellCheck method +title: Aspose::Pdf::LowCode::FormTextBoxFieldCreateOptions::set_SpellCheck method linktitle: set_SpellCheck second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormTextBoxFieldCreateOptions::set_SpellCheck method. Gets/sets the value to determine whether created TextBoxField is spellcheck or not (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormTextBoxFieldCreateOptions::set_SpellCheck method. Gets/sets the value to determine whether created TextBoxField is spellcheck or not (if will be set) in C++.' type: docs weight: 900 -url: /cpp/aspose.pdf.plugins/formtextboxfieldcreateoptions/set_spellcheck/ +url: /cpp/aspose.pdf.lowcode/formtextboxfieldcreateoptions/set_spellcheck/ --- ## FormTextBoxFieldCreateOptions::set_SpellCheck method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formtextboxfieldcreateoptions/set_spellcheck/ Gets/sets the value to determine whether created TextBoxField is spellcheck or not (if will be set). ```cpp -void Aspose::Pdf::Plugins::FormTextBoxFieldCreateOptions::set_SpellCheck(System::Nullable value) +void Aspose::Pdf::LowCode::FormTextBoxFieldCreateOptions::set_SpellCheck(System::Nullable value) ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormTextBoxFieldCreateOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/_index.md b/english/cpp/aspose.pdf.lowcode/formtextboxfieldsetoptions/_index.md similarity index 84% rename from english/cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/formtextboxfieldsetoptions/_index.md index ab8205daba..cd3b321001 100644 --- a/english/cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formtextboxfieldsetoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormTextBoxFieldSetOptions class +title: Aspose::Pdf::LowCode::FormTextBoxFieldSetOptions class linktitle: FormTextBoxFieldSetOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormTextBoxFieldSetOptions class. Represents options for set properties in TextBoxField by FormEditor plugin in C++.' +description: 'Aspose::Pdf::LowCode::FormTextBoxFieldSetOptions class. Represents options for set properties in TextBoxField by FormEditor plugin in C++.' type: docs weight: 3100 -url: /cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/ +url: /cpp/aspose.pdf.lowcode/formtextboxfieldsetoptions/ --- ## FormTextBoxFieldSetOptions class @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/ Represents options for set properties in TextBoxField by [FormEditor](../formeditor/) plugin. ```cpp -class FormTextBoxFieldSetOptions : public Aspose::Pdf::Plugins::FormFieldSetOptions +class FormTextBoxFieldSetOptions : public Aspose::Pdf::LowCode::FormFieldSetOptions ``` ## Methods @@ -31,5 +31,5 @@ class FormTextBoxFieldSetOptions : public Aspose::Pdf::Plugins::FormFieldSetOpti ## See Also * Class [FormFieldSetOptions](../formfieldsetoptions/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/get_forcecombs/_index.md b/english/cpp/aspose.pdf.lowcode/formtextboxfieldsetoptions/get_forcecombs/_index.md similarity index 64% rename from english/cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/get_forcecombs/_index.md rename to english/cpp/aspose.pdf.lowcode/formtextboxfieldsetoptions/get_forcecombs/_index.md index f8297299fe..3f149112ac 100644 --- a/english/cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/get_forcecombs/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formtextboxfieldsetoptions/get_forcecombs/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormTextBoxFieldSetOptions::get_ForceCombs method +title: Aspose::Pdf::LowCode::FormTextBoxFieldSetOptions::get_ForceCombs method linktitle: get_ForceCombs second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormTextBoxFieldSetOptions::get_ForceCombs method. Gets/sets the value to determine property ForceCombs for modified field (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormTextBoxFieldSetOptions::get_ForceCombs method. Gets/sets the value to determine property ForceCombs for modified field (if will be set) in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/get_forcecombs/ +url: /cpp/aspose.pdf.lowcode/formtextboxfieldsetoptions/get_forcecombs/ --- ## FormTextBoxFieldSetOptions::get_ForceCombs method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/get_forcecombs/ Gets/sets the value to determine property ForceCombs for modified field (if will be set). ```cpp -System::Nullable Aspose::Pdf::Plugins::FormTextBoxFieldSetOptions::get_ForceCombs() const +System::Nullable Aspose::Pdf::LowCode::FormTextBoxFieldSetOptions::get_ForceCombs() const ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormTextBoxFieldSetOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/get_maxlen/_index.md b/english/cpp/aspose.pdf.lowcode/formtextboxfieldsetoptions/get_maxlen/_index.md similarity index 63% rename from english/cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/get_maxlen/_index.md rename to english/cpp/aspose.pdf.lowcode/formtextboxfieldsetoptions/get_maxlen/_index.md index ce94392b6b..e4b5cd79cc 100644 --- a/english/cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/get_maxlen/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formtextboxfieldsetoptions/get_maxlen/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormTextBoxFieldSetOptions::get_MaxLen method +title: Aspose::Pdf::LowCode::FormTextBoxFieldSetOptions::get_MaxLen method linktitle: get_MaxLen second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormTextBoxFieldSetOptions::get_MaxLen method. Gets/sets the value to determine property MaxLen for modified field (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormTextBoxFieldSetOptions::get_MaxLen method. Gets/sets the value to determine property MaxLen for modified field (if will be set) in C++.' type: docs weight: 200 -url: /cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/get_maxlen/ +url: /cpp/aspose.pdf.lowcode/formtextboxfieldsetoptions/get_maxlen/ --- ## FormTextBoxFieldSetOptions::get_MaxLen method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/get_maxlen/ Gets/sets the value to determine property MaxLen for modified field (if will be set). ```cpp -System::Nullable Aspose::Pdf::Plugins::FormTextBoxFieldSetOptions::get_MaxLen() const +System::Nullable Aspose::Pdf::LowCode::FormTextBoxFieldSetOptions::get_MaxLen() const ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormTextBoxFieldSetOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/get_multiline/_index.md b/english/cpp/aspose.pdf.lowcode/formtextboxfieldsetoptions/get_multiline/_index.md similarity index 64% rename from english/cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/get_multiline/_index.md rename to english/cpp/aspose.pdf.lowcode/formtextboxfieldsetoptions/get_multiline/_index.md index 2cd2253898..b9e4cc7786 100644 --- a/english/cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/get_multiline/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formtextboxfieldsetoptions/get_multiline/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormTextBoxFieldSetOptions::get_Multiline method +title: Aspose::Pdf::LowCode::FormTextBoxFieldSetOptions::get_Multiline method linktitle: get_Multiline second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormTextBoxFieldSetOptions::get_Multiline method. Gets/sets the value to determine property Multiline for modified field (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormTextBoxFieldSetOptions::get_Multiline method. Gets/sets the value to determine property Multiline for modified field (if will be set) in C++.' type: docs weight: 300 -url: /cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/get_multiline/ +url: /cpp/aspose.pdf.lowcode/formtextboxfieldsetoptions/get_multiline/ --- ## FormTextBoxFieldSetOptions::get_Multiline method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/get_multiline/ Gets/sets the value to determine property Multiline for modified field (if will be set). ```cpp -System::Nullable Aspose::Pdf::Plugins::FormTextBoxFieldSetOptions::get_Multiline() const +System::Nullable Aspose::Pdf::LowCode::FormTextBoxFieldSetOptions::get_Multiline() const ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormTextBoxFieldSetOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/get_spellcheck/_index.md b/english/cpp/aspose.pdf.lowcode/formtextboxfieldsetoptions/get_spellcheck/_index.md similarity index 64% rename from english/cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/get_spellcheck/_index.md rename to english/cpp/aspose.pdf.lowcode/formtextboxfieldsetoptions/get_spellcheck/_index.md index 23ae42987b..f70879fdd7 100644 --- a/english/cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/get_spellcheck/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formtextboxfieldsetoptions/get_spellcheck/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormTextBoxFieldSetOptions::get_SpellCheck method +title: Aspose::Pdf::LowCode::FormTextBoxFieldSetOptions::get_SpellCheck method linktitle: get_SpellCheck second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormTextBoxFieldSetOptions::get_SpellCheck method. Gets/sets the value to determine property SpellCheck for modified field (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormTextBoxFieldSetOptions::get_SpellCheck method. Gets/sets the value to determine property SpellCheck for modified field (if will be set) in C++.' type: docs weight: 400 -url: /cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/get_spellcheck/ +url: /cpp/aspose.pdf.lowcode/formtextboxfieldsetoptions/get_spellcheck/ --- ## FormTextBoxFieldSetOptions::get_SpellCheck method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/get_spellcheck/ Gets/sets the value to determine property SpellCheck for modified field (if will be set). ```cpp -System::Nullable Aspose::Pdf::Plugins::FormTextBoxFieldSetOptions::get_SpellCheck() const +System::Nullable Aspose::Pdf::LowCode::FormTextBoxFieldSetOptions::get_SpellCheck() const ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormTextBoxFieldSetOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/set_forcecombs/_index.md b/english/cpp/aspose.pdf.lowcode/formtextboxfieldsetoptions/set_forcecombs/_index.md similarity index 65% rename from english/cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/set_forcecombs/_index.md rename to english/cpp/aspose.pdf.lowcode/formtextboxfieldsetoptions/set_forcecombs/_index.md index e5a0177541..0adebaf6c2 100644 --- a/english/cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/set_forcecombs/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formtextboxfieldsetoptions/set_forcecombs/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormTextBoxFieldSetOptions::set_ForceCombs method +title: Aspose::Pdf::LowCode::FormTextBoxFieldSetOptions::set_ForceCombs method linktitle: set_ForceCombs second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormTextBoxFieldSetOptions::set_ForceCombs method. Gets/sets the value to determine property ForceCombs for modified field (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormTextBoxFieldSetOptions::set_ForceCombs method. Gets/sets the value to determine property ForceCombs for modified field (if will be set) in C++.' type: docs weight: 500 -url: /cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/set_forcecombs/ +url: /cpp/aspose.pdf.lowcode/formtextboxfieldsetoptions/set_forcecombs/ --- ## FormTextBoxFieldSetOptions::set_ForceCombs method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/set_forcecombs/ Gets/sets the value to determine property ForceCombs for modified field (if will be set). ```cpp -void Aspose::Pdf::Plugins::FormTextBoxFieldSetOptions::set_ForceCombs(System::Nullable value) +void Aspose::Pdf::LowCode::FormTextBoxFieldSetOptions::set_ForceCombs(System::Nullable value) ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormTextBoxFieldSetOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/set_maxlen/_index.md b/english/cpp/aspose.pdf.lowcode/formtextboxfieldsetoptions/set_maxlen/_index.md similarity index 63% rename from english/cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/set_maxlen/_index.md rename to english/cpp/aspose.pdf.lowcode/formtextboxfieldsetoptions/set_maxlen/_index.md index 99a2b0878e..753fb92462 100644 --- a/english/cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/set_maxlen/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formtextboxfieldsetoptions/set_maxlen/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormTextBoxFieldSetOptions::set_MaxLen method +title: Aspose::Pdf::LowCode::FormTextBoxFieldSetOptions::set_MaxLen method linktitle: set_MaxLen second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormTextBoxFieldSetOptions::set_MaxLen method. Gets/sets the value to determine property MaxLen for modified field (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormTextBoxFieldSetOptions::set_MaxLen method. Gets/sets the value to determine property MaxLen for modified field (if will be set) in C++.' type: docs weight: 600 -url: /cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/set_maxlen/ +url: /cpp/aspose.pdf.lowcode/formtextboxfieldsetoptions/set_maxlen/ --- ## FormTextBoxFieldSetOptions::set_MaxLen method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/set_maxlen/ Gets/sets the value to determine property MaxLen for modified field (if will be set). ```cpp -void Aspose::Pdf::Plugins::FormTextBoxFieldSetOptions::set_MaxLen(System::Nullable value) +void Aspose::Pdf::LowCode::FormTextBoxFieldSetOptions::set_MaxLen(System::Nullable value) ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormTextBoxFieldSetOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/set_multiline/_index.md b/english/cpp/aspose.pdf.lowcode/formtextboxfieldsetoptions/set_multiline/_index.md similarity index 64% rename from english/cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/set_multiline/_index.md rename to english/cpp/aspose.pdf.lowcode/formtextboxfieldsetoptions/set_multiline/_index.md index 62361c3eb1..2ab7154ee3 100644 --- a/english/cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/set_multiline/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formtextboxfieldsetoptions/set_multiline/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormTextBoxFieldSetOptions::set_Multiline method +title: Aspose::Pdf::LowCode::FormTextBoxFieldSetOptions::set_Multiline method linktitle: set_Multiline second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormTextBoxFieldSetOptions::set_Multiline method. Gets/sets the value to determine property Multiline for modified field (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormTextBoxFieldSetOptions::set_Multiline method. Gets/sets the value to determine property Multiline for modified field (if will be set) in C++.' type: docs weight: 700 -url: /cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/set_multiline/ +url: /cpp/aspose.pdf.lowcode/formtextboxfieldsetoptions/set_multiline/ --- ## FormTextBoxFieldSetOptions::set_Multiline method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/set_multiline/ Gets/sets the value to determine property Multiline for modified field (if will be set). ```cpp -void Aspose::Pdf::Plugins::FormTextBoxFieldSetOptions::set_Multiline(System::Nullable value) +void Aspose::Pdf::LowCode::FormTextBoxFieldSetOptions::set_Multiline(System::Nullable value) ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormTextBoxFieldSetOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/set_spellcheck/_index.md b/english/cpp/aspose.pdf.lowcode/formtextboxfieldsetoptions/set_spellcheck/_index.md similarity index 65% rename from english/cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/set_spellcheck/_index.md rename to english/cpp/aspose.pdf.lowcode/formtextboxfieldsetoptions/set_spellcheck/_index.md index 19e8daaa9c..68846b4515 100644 --- a/english/cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/set_spellcheck/_index.md +++ b/english/cpp/aspose.pdf.lowcode/formtextboxfieldsetoptions/set_spellcheck/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::FormTextBoxFieldSetOptions::set_SpellCheck method +title: Aspose::Pdf::LowCode::FormTextBoxFieldSetOptions::set_SpellCheck method linktitle: set_SpellCheck second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::FormTextBoxFieldSetOptions::set_SpellCheck method. Gets/sets the value to determine property SpellCheck for modified field (if will be set) in C++.' +description: 'Aspose::Pdf::LowCode::FormTextBoxFieldSetOptions::set_SpellCheck method. Gets/sets the value to determine property SpellCheck for modified field (if will be set) in C++.' type: docs weight: 800 -url: /cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/set_spellcheck/ +url: /cpp/aspose.pdf.lowcode/formtextboxfieldsetoptions/set_spellcheck/ --- ## FormTextBoxFieldSetOptions::set_SpellCheck method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/formtextboxfieldsetoptions/set_spellcheck/ Gets/sets the value to determine property SpellCheck for modified field (if will be set). ```cpp -void Aspose::Pdf::Plugins::FormTextBoxFieldSetOptions::set_SpellCheck(System::Nullable value) +void Aspose::Pdf::LowCode::FormTextBoxFieldSetOptions::set_SpellCheck(System::Nullable value) ``` ## See Also * Class [Nullable](../../../system/nullable/) * Class [FormTextBoxFieldSetOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/html/_index.md b/english/cpp/aspose.pdf.lowcode/html/_index.md similarity index 70% rename from english/cpp/aspose.pdf.plugins/html/_index.md rename to english/cpp/aspose.pdf.lowcode/html/_index.md index 44f0028729..3aa12e1b03 100644 --- a/english/cpp/aspose.pdf.plugins/html/_index.md +++ b/english/cpp/aspose.pdf.lowcode/html/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::Html class +title: Aspose::Pdf::LowCode::Html class linktitle: Html second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::Html class. Represents Html plugin in C++.' +description: 'Aspose::Pdf::LowCode::Html class. Represents Html plugin in C++.' type: docs weight: 3200 -url: /cpp/aspose.pdf.plugins/html/ +url: /cpp/aspose.pdf.lowcode/html/ --- ## Html class @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/html/ Represents [Html](./) plugin. ```cpp -class Html : public Aspose::Pdf::Plugins::IPlugin, +class Html : public Aspose::Pdf::LowCode::IPlugin, public System::IDisposable ``` @@ -27,5 +27,5 @@ class Html : public Aspose::Pdf::Plugins::IPlugin, * Class [IPlugin](../iplugin/) * Class [IDisposable](../../system/idisposable/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/html/dispose/_index.md b/english/cpp/aspose.pdf.lowcode/html/dispose/_index.md similarity index 50% rename from english/cpp/aspose.pdf.plugins/html/dispose/_index.md rename to english/cpp/aspose.pdf.lowcode/html/dispose/_index.md index 8546560b2c..f467ada79b 100644 --- a/english/cpp/aspose.pdf.plugins/html/dispose/_index.md +++ b/english/cpp/aspose.pdf.lowcode/html/dispose/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::Html::Dispose method +title: Aspose::Pdf::LowCode::Html::Dispose method linktitle: Dispose second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::Html::Dispose method. Implementation of IDisposable in C++.' +description: 'Aspose::Pdf::LowCode::Html::Dispose method. Implementation of IDisposable in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/html/dispose/ +url: /cpp/aspose.pdf.lowcode/html/dispose/ --- ## Html::Dispose method @@ -13,11 +13,11 @@ url: /cpp/aspose.pdf.plugins/html/dispose/ Implementation of IDisposable. ```cpp -void Aspose::Pdf::Plugins::Html::Dispose() override +void Aspose::Pdf::LowCode::Html::Dispose() override ``` ## See Also * Class [Html](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/html/process/_index.md b/english/cpp/aspose.pdf.lowcode/html/process/_index.md similarity index 73% rename from english/cpp/aspose.pdf.plugins/html/process/_index.md rename to english/cpp/aspose.pdf.lowcode/html/process/_index.md index bdca0c107c..3a67959448 100644 --- a/english/cpp/aspose.pdf.plugins/html/process/_index.md +++ b/english/cpp/aspose.pdf.lowcode/html/process/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::Html::Process method +title: Aspose::Pdf::LowCode::Html::Process method linktitle: Process second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::Html::Process method. Starts the Html processing with the specified parameters in C++.' +description: 'Aspose::Pdf::LowCode::Html::Process method. Starts the Html processing with the specified parameters in C++.' type: docs weight: 200 -url: /cpp/aspose.pdf.plugins/html/process/ +url: /cpp/aspose.pdf.lowcode/html/process/ --- ## Html::Process method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/html/process/ Starts the [Html](../) processing with the specified parameters. ```cpp -System::SharedPtr Aspose::Pdf::Plugins::Html::Process(System::SharedPtr options) override +System::SharedPtr Aspose::Pdf::LowCode::Html::Process(System::SharedPtr options) override ``` @@ -31,5 +31,5 @@ An [ResultContainer](../../resultcontainer/) object containing the result of the * Class [ResultContainer](../../resultcontainer/) * Class [IPluginOptions](../../ipluginoptions/) * Class [Html](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/htmltopdfoptions/_index.md b/english/cpp/aspose.pdf.lowcode/htmltopdfoptions/_index.md similarity index 84% rename from english/cpp/aspose.pdf.plugins/htmltopdfoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/htmltopdfoptions/_index.md index 83aa65fea1..4ab4e9f067 100644 --- a/english/cpp/aspose.pdf.plugins/htmltopdfoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/htmltopdfoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::HtmlToPdfOptions class +title: Aspose::Pdf::LowCode::HtmlToPdfOptions class linktitle: HtmlToPdfOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::HtmlToPdfOptions class. Represents HTML to PDF converter options for Html plugin in C++.' +description: 'Aspose::Pdf::LowCode::HtmlToPdfOptions class. Represents HTML to PDF converter options for Html plugin in C++.' type: docs weight: 3300 -url: /cpp/aspose.pdf.plugins/htmltopdfoptions/ +url: /cpp/aspose.pdf.lowcode/htmltopdfoptions/ --- ## HtmlToPdfOptions class @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/htmltopdfoptions/ Represents HTML to PDF converter options for [Html](../html/) plugin. ```cpp -class HtmlToPdfOptions : public Aspose::Pdf::Plugins::PdfConverterOptions +class HtmlToPdfOptions : public Aspose::Pdf::LowCode::PdfConverterOptions ``` ## Methods @@ -35,5 +35,5 @@ class HtmlToPdfOptions : public Aspose::Pdf::Plugins::PdfConverterOptions ## See Also * Class [PdfConverterOptions](../pdfconverteroptions/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/htmltopdfoptions/get_basepath/_index.md b/english/cpp/aspose.pdf.lowcode/htmltopdfoptions/get_basepath/_index.md similarity index 55% rename from english/cpp/aspose.pdf.plugins/htmltopdfoptions/get_basepath/_index.md rename to english/cpp/aspose.pdf.lowcode/htmltopdfoptions/get_basepath/_index.md index f81f20afa4..3d5fea4f55 100644 --- a/english/cpp/aspose.pdf.plugins/htmltopdfoptions/get_basepath/_index.md +++ b/english/cpp/aspose.pdf.lowcode/htmltopdfoptions/get_basepath/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::HtmlToPdfOptions::get_BasePath method +title: Aspose::Pdf::LowCode::HtmlToPdfOptions::get_BasePath method linktitle: get_BasePath second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::HtmlToPdfOptions::get_BasePath method. The base path/url for the html file in C++.' +description: 'Aspose::Pdf::LowCode::HtmlToPdfOptions::get_BasePath method. The base path/url for the html file in C++.' type: docs weight: 200 -url: /cpp/aspose.pdf.plugins/htmltopdfoptions/get_basepath/ +url: /cpp/aspose.pdf.lowcode/htmltopdfoptions/get_basepath/ --- ## HtmlToPdfOptions::get_BasePath method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/htmltopdfoptions/get_basepath/ The base path/url for the html file. ```cpp -System::String Aspose::Pdf::Plugins::HtmlToPdfOptions::get_BasePath() const +System::String Aspose::Pdf::LowCode::HtmlToPdfOptions::get_BasePath() const ``` ## See Also * Class [String](../../../system/string/) * Class [HtmlToPdfOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/htmltopdfoptions/get_htmlmediatype/_index.md b/english/cpp/aspose.pdf.lowcode/htmltopdfoptions/get_htmlmediatype/_index.md similarity index 60% rename from english/cpp/aspose.pdf.plugins/htmltopdfoptions/get_htmlmediatype/_index.md rename to english/cpp/aspose.pdf.lowcode/htmltopdfoptions/get_htmlmediatype/_index.md index 711f8a8fa8..697f2e5429 100644 --- a/english/cpp/aspose.pdf.plugins/htmltopdfoptions/get_htmlmediatype/_index.md +++ b/english/cpp/aspose.pdf.lowcode/htmltopdfoptions/get_htmlmediatype/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::HtmlToPdfOptions::get_HtmlMediaType method +title: Aspose::Pdf::LowCode::HtmlToPdfOptions::get_HtmlMediaType method linktitle: get_HtmlMediaType second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::HtmlToPdfOptions::get_HtmlMediaType method. Gets possible media types used during rendering in C++.' +description: 'Aspose::Pdf::LowCode::HtmlToPdfOptions::get_HtmlMediaType method. Gets possible media types used during rendering in C++.' type: docs weight: 300 -url: /cpp/aspose.pdf.plugins/htmltopdfoptions/get_htmlmediatype/ +url: /cpp/aspose.pdf.lowcode/htmltopdfoptions/get_htmlmediatype/ --- ## HtmlToPdfOptions::get_HtmlMediaType method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/htmltopdfoptions/get_htmlmediatype/ Gets possible media types used during rendering. ```cpp -Aspose::Pdf::HtmlMediaType Aspose::Pdf::Plugins::HtmlToPdfOptions::get_HtmlMediaType() const +Aspose::Pdf::HtmlMediaType Aspose::Pdf::LowCode::HtmlToPdfOptions::get_HtmlMediaType() const ``` ## See Also * Enum [HtmlMediaType](../../../aspose.pdf/htmlmediatype/) * Class [HtmlToPdfOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/htmltopdfoptions/get_isrendertosinglepage/_index.md b/english/cpp/aspose.pdf.lowcode/htmltopdfoptions/get_isrendertosinglepage/_index.md similarity index 57% rename from english/cpp/aspose.pdf.plugins/htmltopdfoptions/get_isrendertosinglepage/_index.md rename to english/cpp/aspose.pdf.lowcode/htmltopdfoptions/get_isrendertosinglepage/_index.md index a4586ca87b..005828589c 100644 --- a/english/cpp/aspose.pdf.plugins/htmltopdfoptions/get_isrendertosinglepage/_index.md +++ b/english/cpp/aspose.pdf.lowcode/htmltopdfoptions/get_isrendertosinglepage/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::HtmlToPdfOptions::get_IsRenderToSinglePage method +title: Aspose::Pdf::LowCode::HtmlToPdfOptions::get_IsRenderToSinglePage method linktitle: get_IsRenderToSinglePage second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::HtmlToPdfOptions::get_IsRenderToSinglePage method. Gets rendering all document to single page in C++.' +description: 'Aspose::Pdf::LowCode::HtmlToPdfOptions::get_IsRenderToSinglePage method. Gets rendering all document to single page in C++.' type: docs weight: 400 -url: /cpp/aspose.pdf.plugins/htmltopdfoptions/get_isrendertosinglepage/ +url: /cpp/aspose.pdf.lowcode/htmltopdfoptions/get_isrendertosinglepage/ --- ## HtmlToPdfOptions::get_IsRenderToSinglePage method @@ -13,11 +13,11 @@ url: /cpp/aspose.pdf.plugins/htmltopdfoptions/get_isrendertosinglepage/ Gets rendering all document to single page. ```cpp -bool Aspose::Pdf::Plugins::HtmlToPdfOptions::get_IsRenderToSinglePage() const +bool Aspose::Pdf::LowCode::HtmlToPdfOptions::get_IsRenderToSinglePage() const ``` ## See Also * Class [HtmlToPdfOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/htmltopdfoptions/get_operationname/_index.md b/english/cpp/aspose.pdf.lowcode/htmltopdfoptions/get_operationname/_index.md similarity index 56% rename from english/cpp/aspose.pdf.plugins/htmltopdfoptions/get_operationname/_index.md rename to english/cpp/aspose.pdf.lowcode/htmltopdfoptions/get_operationname/_index.md index 6dff538dad..aebbf84c04 100644 --- a/english/cpp/aspose.pdf.plugins/htmltopdfoptions/get_operationname/_index.md +++ b/english/cpp/aspose.pdf.lowcode/htmltopdfoptions/get_operationname/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::HtmlToPdfOptions::get_OperationName method +title: Aspose::Pdf::LowCode::HtmlToPdfOptions::get_OperationName method linktitle: get_OperationName second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::HtmlToPdfOptions::get_OperationName method. Gets name of the operation in C++.' +description: 'Aspose::Pdf::LowCode::HtmlToPdfOptions::get_OperationName method. Gets name of the operation in C++.' type: docs weight: 500 -url: /cpp/aspose.pdf.plugins/htmltopdfoptions/get_operationname/ +url: /cpp/aspose.pdf.lowcode/htmltopdfoptions/get_operationname/ --- ## HtmlToPdfOptions::get_OperationName method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/htmltopdfoptions/get_operationname/ Gets name of the operation. ```cpp -System::String Aspose::Pdf::Plugins::HtmlToPdfOptions::get_OperationName() override +System::String Aspose::Pdf::LowCode::HtmlToPdfOptions::get_OperationName() override ``` ## See Also * Class [String](../../../system/string/) * Class [HtmlToPdfOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/htmltopdfoptions/get_pageinfo/_index.md b/english/cpp/aspose.pdf.lowcode/htmltopdfoptions/get_pageinfo/_index.md similarity index 53% rename from english/cpp/aspose.pdf.plugins/htmltopdfoptions/get_pageinfo/_index.md rename to english/cpp/aspose.pdf.lowcode/htmltopdfoptions/get_pageinfo/_index.md index 149a3da5ab..f33472774f 100644 --- a/english/cpp/aspose.pdf.plugins/htmltopdfoptions/get_pageinfo/_index.md +++ b/english/cpp/aspose.pdf.lowcode/htmltopdfoptions/get_pageinfo/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::HtmlToPdfOptions::get_PageInfo method +title: Aspose::Pdf::LowCode::HtmlToPdfOptions::get_PageInfo method linktitle: get_PageInfo second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::HtmlToPdfOptions::get_PageInfo method. Gets document page info in C++.' +description: 'Aspose::Pdf::LowCode::HtmlToPdfOptions::get_PageInfo method. Gets document page info in C++.' type: docs weight: 600 -url: /cpp/aspose.pdf.plugins/htmltopdfoptions/get_pageinfo/ +url: /cpp/aspose.pdf.lowcode/htmltopdfoptions/get_pageinfo/ --- ## HtmlToPdfOptions::get_PageInfo method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/htmltopdfoptions/get_pageinfo/ Gets document page info. ```cpp -const System::SharedPtr & Aspose::Pdf::Plugins::HtmlToPdfOptions::get_PageInfo() const +const System::SharedPtr & Aspose::Pdf::LowCode::HtmlToPdfOptions::get_PageInfo() const ``` ## See Also @@ -21,5 +21,5 @@ const System::SharedPtr & Aspose::Pdf::Plugins::HtmlToPdf * Typedef [SharedPtr](../../../system/sharedptr/) * Class [PageInfo](../../../aspose.pdf/pageinfo/) * Class [HtmlToPdfOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/htmltopdfoptions/get_pagelayoutoption/_index.md b/english/cpp/aspose.pdf.lowcode/htmltopdfoptions/get_pagelayoutoption/_index.md similarity index 58% rename from english/cpp/aspose.pdf.plugins/htmltopdfoptions/get_pagelayoutoption/_index.md rename to english/cpp/aspose.pdf.lowcode/htmltopdfoptions/get_pagelayoutoption/_index.md index a29e66ec08..a8143da1f5 100644 --- a/english/cpp/aspose.pdf.plugins/htmltopdfoptions/get_pagelayoutoption/_index.md +++ b/english/cpp/aspose.pdf.lowcode/htmltopdfoptions/get_pagelayoutoption/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::HtmlToPdfOptions::get_PageLayoutOption method +title: Aspose::Pdf::LowCode::HtmlToPdfOptions::get_PageLayoutOption method linktitle: get_PageLayoutOption second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::HtmlToPdfOptions::get_PageLayoutOption method. Gets layout option in C++.' +description: 'Aspose::Pdf::LowCode::HtmlToPdfOptions::get_PageLayoutOption method. Gets layout option in C++.' type: docs weight: 700 -url: /cpp/aspose.pdf.plugins/htmltopdfoptions/get_pagelayoutoption/ +url: /cpp/aspose.pdf.lowcode/htmltopdfoptions/get_pagelayoutoption/ --- ## HtmlToPdfOptions::get_PageLayoutOption method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/htmltopdfoptions/get_pagelayoutoption/ Gets layout option. ```cpp -HtmlPageLayoutOption Aspose::Pdf::Plugins::HtmlToPdfOptions::get_PageLayoutOption() const +HtmlPageLayoutOption Aspose::Pdf::LowCode::HtmlToPdfOptions::get_PageLayoutOption() const ``` ## See Also * Enum [HtmlPageLayoutOption](../../../aspose.pdf/htmlpagelayoutoption/) * Class [HtmlToPdfOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/htmltopdfoptions/htmltopdfoptions/_index.md b/english/cpp/aspose.pdf.lowcode/htmltopdfoptions/htmltopdfoptions/_index.md similarity index 57% rename from english/cpp/aspose.pdf.plugins/htmltopdfoptions/htmltopdfoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/htmltopdfoptions/htmltopdfoptions/_index.md index c09d73f373..d724875bae 100644 --- a/english/cpp/aspose.pdf.plugins/htmltopdfoptions/htmltopdfoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/htmltopdfoptions/htmltopdfoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::HtmlToPdfOptions::HtmlToPdfOptions constructor +title: Aspose::Pdf::LowCode::HtmlToPdfOptions::HtmlToPdfOptions constructor linktitle: HtmlToPdfOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::HtmlToPdfOptions::HtmlToPdfOptions constructor. Initializes new instance of the HtmlToPdfOptions object in C++.' +description: 'Aspose::Pdf::LowCode::HtmlToPdfOptions::HtmlToPdfOptions constructor. Initializes new instance of the HtmlToPdfOptions object in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/htmltopdfoptions/htmltopdfoptions/ +url: /cpp/aspose.pdf.lowcode/htmltopdfoptions/htmltopdfoptions/ --- ## HtmlToPdfOptions::HtmlToPdfOptions constructor @@ -13,11 +13,11 @@ url: /cpp/aspose.pdf.plugins/htmltopdfoptions/htmltopdfoptions/ Initializes new instance of the [HtmlToPdfOptions](../) object. ```cpp -Aspose::Pdf::Plugins::HtmlToPdfOptions::HtmlToPdfOptions() +Aspose::Pdf::LowCode::HtmlToPdfOptions::HtmlToPdfOptions() ``` ## See Also * Class [HtmlToPdfOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/htmltopdfoptions/set_basepath/_index.md b/english/cpp/aspose.pdf.lowcode/htmltopdfoptions/set_basepath/_index.md similarity index 56% rename from english/cpp/aspose.pdf.plugins/htmltopdfoptions/set_basepath/_index.md rename to english/cpp/aspose.pdf.lowcode/htmltopdfoptions/set_basepath/_index.md index d8e34a07bc..92c2a02413 100644 --- a/english/cpp/aspose.pdf.plugins/htmltopdfoptions/set_basepath/_index.md +++ b/english/cpp/aspose.pdf.lowcode/htmltopdfoptions/set_basepath/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::HtmlToPdfOptions::set_BasePath method +title: Aspose::Pdf::LowCode::HtmlToPdfOptions::set_BasePath method linktitle: set_BasePath second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::HtmlToPdfOptions::set_BasePath method. The base path/url for the html file in C++.' +description: 'Aspose::Pdf::LowCode::HtmlToPdfOptions::set_BasePath method. The base path/url for the html file in C++.' type: docs weight: 800 -url: /cpp/aspose.pdf.plugins/htmltopdfoptions/set_basepath/ +url: /cpp/aspose.pdf.lowcode/htmltopdfoptions/set_basepath/ --- ## HtmlToPdfOptions::set_BasePath method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/htmltopdfoptions/set_basepath/ The base path/url for the html file. ```cpp -void Aspose::Pdf::Plugins::HtmlToPdfOptions::set_BasePath(System::String value) +void Aspose::Pdf::LowCode::HtmlToPdfOptions::set_BasePath(System::String value) ``` ## See Also * Class [String](../../../system/string/) * Class [HtmlToPdfOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/htmltopdfoptions/set_htmlmediatype/_index.md b/english/cpp/aspose.pdf.lowcode/htmltopdfoptions/set_htmlmediatype/_index.md similarity index 60% rename from english/cpp/aspose.pdf.plugins/htmltopdfoptions/set_htmlmediatype/_index.md rename to english/cpp/aspose.pdf.lowcode/htmltopdfoptions/set_htmlmediatype/_index.md index 8f75b1e051..a2f32c9e0f 100644 --- a/english/cpp/aspose.pdf.plugins/htmltopdfoptions/set_htmlmediatype/_index.md +++ b/english/cpp/aspose.pdf.lowcode/htmltopdfoptions/set_htmlmediatype/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::HtmlToPdfOptions::set_HtmlMediaType method +title: Aspose::Pdf::LowCode::HtmlToPdfOptions::set_HtmlMediaType method linktitle: set_HtmlMediaType second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::HtmlToPdfOptions::set_HtmlMediaType method. Sets possible media types used during rendering in C++.' +description: 'Aspose::Pdf::LowCode::HtmlToPdfOptions::set_HtmlMediaType method. Sets possible media types used during rendering in C++.' type: docs weight: 900 -url: /cpp/aspose.pdf.plugins/htmltopdfoptions/set_htmlmediatype/ +url: /cpp/aspose.pdf.lowcode/htmltopdfoptions/set_htmlmediatype/ --- ## HtmlToPdfOptions::set_HtmlMediaType method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/htmltopdfoptions/set_htmlmediatype/ Sets possible media types used during rendering. ```cpp -void Aspose::Pdf::Plugins::HtmlToPdfOptions::set_HtmlMediaType(Aspose::Pdf::HtmlMediaType value) +void Aspose::Pdf::LowCode::HtmlToPdfOptions::set_HtmlMediaType(Aspose::Pdf::HtmlMediaType value) ``` ## See Also * Enum [HtmlMediaType](../../../aspose.pdf/htmlmediatype/) * Class [HtmlToPdfOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/htmltopdfoptions/set_isrendertosinglepage/_index.md b/english/cpp/aspose.pdf.lowcode/htmltopdfoptions/set_isrendertosinglepage/_index.md similarity index 57% rename from english/cpp/aspose.pdf.plugins/htmltopdfoptions/set_isrendertosinglepage/_index.md rename to english/cpp/aspose.pdf.lowcode/htmltopdfoptions/set_isrendertosinglepage/_index.md index fba751fe44..63e1fb4b62 100644 --- a/english/cpp/aspose.pdf.plugins/htmltopdfoptions/set_isrendertosinglepage/_index.md +++ b/english/cpp/aspose.pdf.lowcode/htmltopdfoptions/set_isrendertosinglepage/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::HtmlToPdfOptions::set_IsRenderToSinglePage method +title: Aspose::Pdf::LowCode::HtmlToPdfOptions::set_IsRenderToSinglePage method linktitle: set_IsRenderToSinglePage second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::HtmlToPdfOptions::set_IsRenderToSinglePage method. Sets rendering all document to single page in C++.' +description: 'Aspose::Pdf::LowCode::HtmlToPdfOptions::set_IsRenderToSinglePage method. Sets rendering all document to single page in C++.' type: docs weight: 1000 -url: /cpp/aspose.pdf.plugins/htmltopdfoptions/set_isrendertosinglepage/ +url: /cpp/aspose.pdf.lowcode/htmltopdfoptions/set_isrendertosinglepage/ --- ## HtmlToPdfOptions::set_IsRenderToSinglePage method @@ -13,11 +13,11 @@ url: /cpp/aspose.pdf.plugins/htmltopdfoptions/set_isrendertosinglepage/ Sets rendering all document to single page. ```cpp -void Aspose::Pdf::Plugins::HtmlToPdfOptions::set_IsRenderToSinglePage(bool value) +void Aspose::Pdf::LowCode::HtmlToPdfOptions::set_IsRenderToSinglePage(bool value) ``` ## See Also * Class [HtmlToPdfOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/htmltopdfoptions/set_pageinfo/_index.md b/english/cpp/aspose.pdf.lowcode/htmltopdfoptions/set_pageinfo/_index.md similarity index 59% rename from english/cpp/aspose.pdf.plugins/htmltopdfoptions/set_pageinfo/_index.md rename to english/cpp/aspose.pdf.lowcode/htmltopdfoptions/set_pageinfo/_index.md index a878e66060..6a0713e402 100644 --- a/english/cpp/aspose.pdf.plugins/htmltopdfoptions/set_pageinfo/_index.md +++ b/english/cpp/aspose.pdf.lowcode/htmltopdfoptions/set_pageinfo/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::HtmlToPdfOptions::set_PageInfo method +title: Aspose::Pdf::LowCode::HtmlToPdfOptions::set_PageInfo method linktitle: set_PageInfo second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::HtmlToPdfOptions::set_PageInfo method. Sets document page info in C++.' +description: 'Aspose::Pdf::LowCode::HtmlToPdfOptions::set_PageInfo method. Sets document page info in C++.' type: docs weight: 1100 -url: /cpp/aspose.pdf.plugins/htmltopdfoptions/set_pageinfo/ +url: /cpp/aspose.pdf.lowcode/htmltopdfoptions/set_pageinfo/ --- ## HtmlToPdfOptions::set_PageInfo method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/htmltopdfoptions/set_pageinfo/ Sets document page info. ```cpp -void Aspose::Pdf::Plugins::HtmlToPdfOptions::set_PageInfo(System::SharedPtr value) +void Aspose::Pdf::LowCode::HtmlToPdfOptions::set_PageInfo(System::SharedPtr value) ``` ## See Also @@ -21,5 +21,5 @@ void Aspose::Pdf::Plugins::HtmlToPdfOptions::set_PageInfo(System::SharedPtr dataSource)=0 +virtual void Aspose::Pdf::LowCode::IDataContainer::AddInput(System::SharedPtr dataSource)=0 ``` @@ -26,5 +26,5 @@ virtual void Aspose::Pdf::Plugins::IDataContainer::AddInput(System::SharedPtr>> Aspose::Pdf::Plugins::IDataContainer::get_Inputs()=0 +virtual System::SharedPtr>> Aspose::Pdf::LowCode::IDataContainer::get_Inputs()=0 ``` ## See Also @@ -22,5 +22,5 @@ virtual System::SharedPtr Aspose::Pdf::Plugins::IOperationResult::get_Data()=0 +virtual System::SharedPtr Aspose::Pdf::LowCode::IOperationResult::get_Data()=0 ``` @@ -26,5 +26,5 @@ An **object** representing output data. * Typedef [SharedPtr](../../../system/sharedptr/) * Class [Object](../../../system/object/) * Class [IOperationResult](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/ioperationresult/get_isfile/_index.md b/english/cpp/aspose.pdf.lowcode/ioperationresult/get_isfile/_index.md similarity index 59% rename from english/cpp/aspose.pdf.plugins/ioperationresult/get_isfile/_index.md rename to english/cpp/aspose.pdf.lowcode/ioperationresult/get_isfile/_index.md index 39c1f305c8..87d0adc5d8 100644 --- a/english/cpp/aspose.pdf.plugins/ioperationresult/get_isfile/_index.md +++ b/english/cpp/aspose.pdf.lowcode/ioperationresult/get_isfile/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::IOperationResult::get_IsFile method +title: Aspose::Pdf::LowCode::IOperationResult::get_IsFile method linktitle: get_IsFile second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::IOperationResult::get_IsFile method. Indicates whether the result is a path to an output file in C++.' +description: 'Aspose::Pdf::LowCode::IOperationResult::get_IsFile method. Indicates whether the result is a path to an output file in C++.' type: docs weight: 200 -url: /cpp/aspose.pdf.plugins/ioperationresult/get_isfile/ +url: /cpp/aspose.pdf.lowcode/ioperationresult/get_isfile/ --- ## IOperationResult::get_IsFile method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/ioperationresult/get_isfile/ Indicates whether the result is a path to an output file. ```cpp -virtual bool Aspose::Pdf::Plugins::IOperationResult::get_IsFile()=0 +virtual bool Aspose::Pdf::LowCode::IOperationResult::get_IsFile()=0 ``` @@ -24,5 +24,5 @@ virtual bool Aspose::Pdf::Plugins::IOperationResult::get_IsFile()=0 ## See Also * Class [IOperationResult](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/ioperationresult/get_isstream/_index.md b/english/cpp/aspose.pdf.lowcode/ioperationresult/get_isstream/_index.md similarity index 59% rename from english/cpp/aspose.pdf.plugins/ioperationresult/get_isstream/_index.md rename to english/cpp/aspose.pdf.lowcode/ioperationresult/get_isstream/_index.md index 9cfa765656..1f2e22b985 100644 --- a/english/cpp/aspose.pdf.plugins/ioperationresult/get_isstream/_index.md +++ b/english/cpp/aspose.pdf.lowcode/ioperationresult/get_isstream/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::IOperationResult::get_IsStream method +title: Aspose::Pdf::LowCode::IOperationResult::get_IsStream method linktitle: get_IsStream second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::IOperationResult::get_IsStream method. Indicates whether the result is an output stream in C++.' +description: 'Aspose::Pdf::LowCode::IOperationResult::get_IsStream method. Indicates whether the result is an output stream in C++.' type: docs weight: 300 -url: /cpp/aspose.pdf.plugins/ioperationresult/get_isstream/ +url: /cpp/aspose.pdf.lowcode/ioperationresult/get_isstream/ --- ## IOperationResult::get_IsStream method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/ioperationresult/get_isstream/ Indicates whether the result is an output stream. ```cpp -virtual bool Aspose::Pdf::Plugins::IOperationResult::get_IsStream()=0 +virtual bool Aspose::Pdf::LowCode::IOperationResult::get_IsStream()=0 ``` @@ -24,5 +24,5 @@ virtual bool Aspose::Pdf::Plugins::IOperationResult::get_IsStream()=0 ## See Also * Class [IOperationResult](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/ioperationresult/get_isstring/_index.md b/english/cpp/aspose.pdf.lowcode/ioperationresult/get_isstring/_index.md similarity index 58% rename from english/cpp/aspose.pdf.plugins/ioperationresult/get_isstring/_index.md rename to english/cpp/aspose.pdf.lowcode/ioperationresult/get_isstring/_index.md index 08353e831f..06f26e699a 100644 --- a/english/cpp/aspose.pdf.plugins/ioperationresult/get_isstring/_index.md +++ b/english/cpp/aspose.pdf.lowcode/ioperationresult/get_isstring/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::IOperationResult::get_IsString method +title: Aspose::Pdf::LowCode::IOperationResult::get_IsString method linktitle: get_IsString second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::IOperationResult::get_IsString method. Indicates whether the result is a text string in C++.' +description: 'Aspose::Pdf::LowCode::IOperationResult::get_IsString method. Indicates whether the result is a text string in C++.' type: docs weight: 400 -url: /cpp/aspose.pdf.plugins/ioperationresult/get_isstring/ +url: /cpp/aspose.pdf.lowcode/ioperationresult/get_isstring/ --- ## IOperationResult::get_IsString method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/ioperationresult/get_isstring/ Indicates whether the result is a text string. ```cpp -virtual bool Aspose::Pdf::Plugins::IOperationResult::get_IsString()=0 +virtual bool Aspose::Pdf::LowCode::IOperationResult::get_IsString()=0 ``` @@ -24,5 +24,5 @@ virtual bool Aspose::Pdf::Plugins::IOperationResult::get_IsString()=0 ## See Also * Class [IOperationResult](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/ioperationresult/tofile/_index.md b/english/cpp/aspose.pdf.lowcode/ioperationresult/tofile/_index.md similarity index 61% rename from english/cpp/aspose.pdf.plugins/ioperationresult/tofile/_index.md rename to english/cpp/aspose.pdf.lowcode/ioperationresult/tofile/_index.md index 6ce353a059..d3262873c8 100644 --- a/english/cpp/aspose.pdf.plugins/ioperationresult/tofile/_index.md +++ b/english/cpp/aspose.pdf.lowcode/ioperationresult/tofile/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::IOperationResult::ToFile method +title: Aspose::Pdf::LowCode::IOperationResult::ToFile method linktitle: ToFile second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::IOperationResult::ToFile method. Tries to convert the result to the file in C++.' +description: 'Aspose::Pdf::LowCode::IOperationResult::ToFile method. Tries to convert the result to the file in C++.' type: docs weight: 500 -url: /cpp/aspose.pdf.plugins/ioperationresult/tofile/ +url: /cpp/aspose.pdf.lowcode/ioperationresult/tofile/ --- ## IOperationResult::ToFile method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/ioperationresult/tofile/ Tries to convert the result to the file. ```cpp -virtual System::String Aspose::Pdf::Plugins::IOperationResult::ToFile()=0 +virtual System::String Aspose::Pdf::LowCode::IOperationResult::ToFile()=0 ``` @@ -25,5 +25,5 @@ A string representing the path to the output file if the result is file; otherwi * Class [String](../../../system/string/) * Class [IOperationResult](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/ioperationresult/tostream/_index.md b/english/cpp/aspose.pdf.lowcode/ioperationresult/tostream/_index.md similarity index 61% rename from english/cpp/aspose.pdf.plugins/ioperationresult/tostream/_index.md rename to english/cpp/aspose.pdf.lowcode/ioperationresult/tostream/_index.md index fabf55ec87..89a59660d9 100644 --- a/english/cpp/aspose.pdf.plugins/ioperationresult/tostream/_index.md +++ b/english/cpp/aspose.pdf.lowcode/ioperationresult/tostream/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::IOperationResult::ToStream method +title: Aspose::Pdf::LowCode::IOperationResult::ToStream method linktitle: ToStream second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::IOperationResult::ToStream method. Tries to convert the result to the stream object in C++.' +description: 'Aspose::Pdf::LowCode::IOperationResult::ToStream method. Tries to convert the result to the stream object in C++.' type: docs weight: 600 -url: /cpp/aspose.pdf.plugins/ioperationresult/tostream/ +url: /cpp/aspose.pdf.lowcode/ioperationresult/tostream/ --- ## IOperationResult::ToStream method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/ioperationresult/tostream/ Tries to convert the result to the stream object. ```cpp -virtual System::SharedPtr Aspose::Pdf::Plugins::IOperationResult::ToStream()=0 +virtual System::SharedPtr Aspose::Pdf::LowCode::IOperationResult::ToStream()=0 ``` @@ -26,5 +26,5 @@ A stream object representing the output data if the result is stream; otherwise * Typedef [SharedPtr](../../../system/sharedptr/) * Class [Stream](../../../system.io/stream/) * Class [IOperationResult](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/iplugin/_index.md b/english/cpp/aspose.pdf.lowcode/iplugin/_index.md similarity index 75% rename from english/cpp/aspose.pdf.plugins/iplugin/_index.md rename to english/cpp/aspose.pdf.lowcode/iplugin/_index.md index 4ae6ef500e..5966405c5c 100644 --- a/english/cpp/aspose.pdf.plugins/iplugin/_index.md +++ b/english/cpp/aspose.pdf.lowcode/iplugin/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::IPlugin class +title: Aspose::Pdf::LowCode::IPlugin class linktitle: IPlugin second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::IPlugin class. General plugin interface that defines common methods that concrete plugin should implement in C++.' +description: 'Aspose::Pdf::LowCode::IPlugin class. General plugin interface that defines common methods that concrete plugin should implement in C++.' type: docs weight: 3900 -url: /cpp/aspose.pdf.plugins/iplugin/ +url: /cpp/aspose.pdf.lowcode/iplugin/ --- ## IPlugin class @@ -24,5 +24,5 @@ class IPlugin : public virtual System::Object ## See Also * Class [Object](../../system/object/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/iplugin/process/_index.md b/english/cpp/aspose.pdf.lowcode/iplugin/process/_index.md similarity index 73% rename from english/cpp/aspose.pdf.plugins/iplugin/process/_index.md rename to english/cpp/aspose.pdf.lowcode/iplugin/process/_index.md index 71389d6aa7..eab3090e5a 100644 --- a/english/cpp/aspose.pdf.plugins/iplugin/process/_index.md +++ b/english/cpp/aspose.pdf.lowcode/iplugin/process/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::IPlugin::Process method +title: Aspose::Pdf::LowCode::IPlugin::Process method linktitle: Process second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::IPlugin::Process method. Charges a plugin to process with defined options in C++.' +description: 'Aspose::Pdf::LowCode::IPlugin::Process method. Charges a plugin to process with defined options in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/iplugin/process/ +url: /cpp/aspose.pdf.lowcode/iplugin/process/ --- ## IPlugin::Process method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/iplugin/process/ Charges a plugin to process with defined options. ```cpp -virtual System::SharedPtr Aspose::Pdf::Plugins::IPlugin::Process(System::SharedPtr options)=0 +virtual System::SharedPtr Aspose::Pdf::LowCode::IPlugin::Process(System::SharedPtr options)=0 ``` @@ -31,5 +31,5 @@ An [ResultContainer](../../resultcontainer/) object containing the result of the * Class [ResultContainer](../../resultcontainer/) * Class [IPluginOptions](../../ipluginoptions/) * Class [IPlugin](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/ipluginoptions/_index.md b/english/cpp/aspose.pdf.lowcode/ipluginoptions/_index.md similarity index 70% rename from english/cpp/aspose.pdf.plugins/ipluginoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/ipluginoptions/_index.md index dad5c3c103..772233224e 100644 --- a/english/cpp/aspose.pdf.plugins/ipluginoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/ipluginoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::IPluginOptions class +title: Aspose::Pdf::LowCode::IPluginOptions class linktitle: IPluginOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::IPluginOptions class. General plugin option interface that defines common methods that concrete plugin option should implement in C++.' +description: 'Aspose::Pdf::LowCode::IPluginOptions class. General plugin option interface that defines common methods that concrete plugin option should implement in C++.' type: docs weight: 4000 -url: /cpp/aspose.pdf.plugins/ipluginoptions/ +url: /cpp/aspose.pdf.lowcode/ipluginoptions/ --- ## IPluginOptions class @@ -19,5 +19,5 @@ class IPluginOptions : public virtual System::Object ## See Also * Class [Object](../../system/object/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/isaveinstruction/_index.md b/english/cpp/aspose.pdf.lowcode/isaveinstruction/_index.md similarity index 78% rename from english/cpp/aspose.pdf.plugins/isaveinstruction/_index.md rename to english/cpp/aspose.pdf.lowcode/isaveinstruction/_index.md index 9a8a043e7b..952b111dca 100644 --- a/english/cpp/aspose.pdf.plugins/isaveinstruction/_index.md +++ b/english/cpp/aspose.pdf.lowcode/isaveinstruction/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::ISaveInstruction class +title: Aspose::Pdf::LowCode::ISaveInstruction class linktitle: ISaveInstruction second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::ISaveInstruction class. General save instruction interface that defines common members that concrete plugin option should implement in C++.' +description: 'Aspose::Pdf::LowCode::ISaveInstruction class. General save instruction interface that defines common members that concrete plugin option should implement in C++.' type: docs weight: 4100 -url: /cpp/aspose.pdf.plugins/isaveinstruction/ +url: /cpp/aspose.pdf.lowcode/isaveinstruction/ --- ## ISaveInstruction class @@ -25,5 +25,5 @@ class ISaveInstruction : public virtual System::Object ## See Also * Class [Object](../../system/object/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/isaveinstruction/addoutput/_index.md b/english/cpp/aspose.pdf.lowcode/isaveinstruction/addoutput/_index.md similarity index 66% rename from english/cpp/aspose.pdf.plugins/isaveinstruction/addoutput/_index.md rename to english/cpp/aspose.pdf.lowcode/isaveinstruction/addoutput/_index.md index 77909192f5..810d4588fa 100644 --- a/english/cpp/aspose.pdf.plugins/isaveinstruction/addoutput/_index.md +++ b/english/cpp/aspose.pdf.lowcode/isaveinstruction/addoutput/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::ISaveInstruction::AddOutput method +title: Aspose::Pdf::LowCode::ISaveInstruction::AddOutput method linktitle: AddOutput second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::ISaveInstruction::AddOutput method. Adds new result save target in C++.' +description: 'Aspose::Pdf::LowCode::ISaveInstruction::AddOutput method. Adds new result save target in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/isaveinstruction/addoutput/ +url: /cpp/aspose.pdf.lowcode/isaveinstruction/addoutput/ --- ## ISaveInstruction::AddOutput method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/isaveinstruction/addoutput/ Adds new result save target. ```cpp -virtual void Aspose::Pdf::Plugins::ISaveInstruction::AddOutput(System::SharedPtr dataSource)=0 +virtual void Aspose::Pdf::LowCode::ISaveInstruction::AddOutput(System::SharedPtr dataSource)=0 ``` @@ -26,5 +26,5 @@ virtual void Aspose::Pdf::Plugins::ISaveInstruction::AddOutput(System::SharedPtr * Typedef [SharedPtr](../../../system/sharedptr/) * Class [IDataSource](../../idatasource/) * Class [ISaveInstruction](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/isaveinstruction/get_outputs/_index.md b/english/cpp/aspose.pdf.lowcode/isaveinstruction/get_outputs/_index.md similarity index 68% rename from english/cpp/aspose.pdf.plugins/isaveinstruction/get_outputs/_index.md rename to english/cpp/aspose.pdf.lowcode/isaveinstruction/get_outputs/_index.md index 4d45a61ad8..238b14ce42 100644 --- a/english/cpp/aspose.pdf.plugins/isaveinstruction/get_outputs/_index.md +++ b/english/cpp/aspose.pdf.lowcode/isaveinstruction/get_outputs/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::ISaveInstruction::get_Outputs method +title: Aspose::Pdf::LowCode::ISaveInstruction::get_Outputs method linktitle: get_Outputs second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::ISaveInstruction::get_Outputs method. Gets the collection of added targets (file or stream data sources) for saving operation results in C++.' +description: 'Aspose::Pdf::LowCode::ISaveInstruction::get_Outputs method. Gets the collection of added targets (file or stream data sources) for saving operation results in C++.' type: docs weight: 200 -url: /cpp/aspose.pdf.plugins/isaveinstruction/get_outputs/ +url: /cpp/aspose.pdf.lowcode/isaveinstruction/get_outputs/ --- ## ISaveInstruction::get_Outputs method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/isaveinstruction/get_outputs/ Gets the collection of added targets (file or stream data sources) for saving operation results. ```cpp -virtual System::SharedPtr>> Aspose::Pdf::Plugins::ISaveInstruction::get_Outputs()=0 +virtual System::SharedPtr>> Aspose::Pdf::LowCode::ISaveInstruction::get_Outputs()=0 ``` ## See Also @@ -22,5 +22,5 @@ virtual System::SharedPtr Aspose::Pdf::Plugins::Merger::Process(System::SharedPtr options) override +System::SharedPtr Aspose::Pdf::LowCode::Merger::Process(System::SharedPtr options) override ``` @@ -31,5 +31,5 @@ An [ResultContainer](../../resultcontainer/) object containg the result of the o * Class [ResultContainer](../../resultcontainer/) * Class [IPluginOptions](../../ipluginoptions/) * Class [Merger](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/objectresult/_index.md b/english/cpp/aspose.pdf.lowcode/objectresult/_index.md similarity index 80% rename from english/cpp/aspose.pdf.plugins/objectresult/_index.md rename to english/cpp/aspose.pdf.lowcode/objectresult/_index.md index ff6da3fdcb..8a34daa1fa 100644 --- a/english/cpp/aspose.pdf.plugins/objectresult/_index.md +++ b/english/cpp/aspose.pdf.lowcode/objectresult/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::ObjectResult class +title: Aspose::Pdf::LowCode::ObjectResult class linktitle: ObjectResult second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::ObjectResult class. Represents operation result in the form of string in C++.' +description: 'Aspose::Pdf::LowCode::ObjectResult class. Represents operation result in the form of string in C++.' type: docs weight: 4700 -url: /cpp/aspose.pdf.plugins/objectresult/ +url: /cpp/aspose.pdf.lowcode/objectresult/ --- ## ObjectResult class @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/objectresult/ Represents operation result in the form of string. ```cpp -class ObjectResult : public Aspose::Pdf::Plugins::IOperationResult +class ObjectResult : public Aspose::Pdf::LowCode::IOperationResult ``` ## Methods @@ -32,5 +32,5 @@ class ObjectResult : public Aspose::Pdf::Plugins::IOperationResult ## See Also * Class [IOperationResult](../ioperationresult/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/objectresult/get_data/_index.md b/english/cpp/aspose.pdf.lowcode/objectresult/get_data/_index.md similarity index 59% rename from english/cpp/aspose.pdf.plugins/objectresult/get_data/_index.md rename to english/cpp/aspose.pdf.lowcode/objectresult/get_data/_index.md index 5047c77c69..1195fc3b11 100644 --- a/english/cpp/aspose.pdf.plugins/objectresult/get_data/_index.md +++ b/english/cpp/aspose.pdf.lowcode/objectresult/get_data/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::ObjectResult::get_Data method +title: Aspose::Pdf::LowCode::ObjectResult::get_Data method linktitle: get_Data second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::ObjectResult::get_Data method. Gets raw data in C++.' +description: 'Aspose::Pdf::LowCode::ObjectResult::get_Data method. Gets raw data in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/objectresult/get_data/ +url: /cpp/aspose.pdf.lowcode/objectresult/get_data/ --- ## ObjectResult::get_Data method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/objectresult/get_data/ Gets raw data. ```cpp -System::SharedPtr Aspose::Pdf::Plugins::ObjectResult::get_Data() override +System::SharedPtr Aspose::Pdf::LowCode::ObjectResult::get_Data() override ``` @@ -26,5 +26,5 @@ An **object** representing output data. * Typedef [SharedPtr](../../../system/sharedptr/) * Class [Object](../../../system/object/) * Class [ObjectResult](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/objectresult/get_isfile/_index.md b/english/cpp/aspose.pdf.lowcode/objectresult/get_isfile/_index.md similarity index 58% rename from english/cpp/aspose.pdf.plugins/objectresult/get_isfile/_index.md rename to english/cpp/aspose.pdf.lowcode/objectresult/get_isfile/_index.md index ac66726ffb..8ca6d7e8fc 100644 --- a/english/cpp/aspose.pdf.plugins/objectresult/get_isfile/_index.md +++ b/english/cpp/aspose.pdf.lowcode/objectresult/get_isfile/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::ObjectResult::get_IsFile method +title: Aspose::Pdf::LowCode::ObjectResult::get_IsFile method linktitle: get_IsFile second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::ObjectResult::get_IsFile method. Indicates whether the result is a path to an output file in C++.' +description: 'Aspose::Pdf::LowCode::ObjectResult::get_IsFile method. Indicates whether the result is a path to an output file in C++.' type: docs weight: 200 -url: /cpp/aspose.pdf.plugins/objectresult/get_isfile/ +url: /cpp/aspose.pdf.lowcode/objectresult/get_isfile/ --- ## ObjectResult::get_IsFile method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/objectresult/get_isfile/ Indicates whether the result is a path to an output file. ```cpp -bool Aspose::Pdf::Plugins::ObjectResult::get_IsFile() override +bool Aspose::Pdf::LowCode::ObjectResult::get_IsFile() override ``` @@ -24,5 +24,5 @@ bool Aspose::Pdf::Plugins::ObjectResult::get_IsFile() override ## See Also * Class [ObjectResult](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/objectresult/get_isobject/_index.md b/english/cpp/aspose.pdf.lowcode/objectresult/get_isobject/_index.md similarity index 57% rename from english/cpp/aspose.pdf.plugins/objectresult/get_isobject/_index.md rename to english/cpp/aspose.pdf.lowcode/objectresult/get_isobject/_index.md index 4d25d8598e..d563279954 100644 --- a/english/cpp/aspose.pdf.plugins/objectresult/get_isobject/_index.md +++ b/english/cpp/aspose.pdf.lowcode/objectresult/get_isobject/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::ObjectResult::get_IsObject method +title: Aspose::Pdf::LowCode::ObjectResult::get_IsObject method linktitle: get_IsObject second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::ObjectResult::get_IsObject method. Indicates whether the result is an object in C++.' +description: 'Aspose::Pdf::LowCode::ObjectResult::get_IsObject method. Indicates whether the result is an object in C++.' type: docs weight: 300 -url: /cpp/aspose.pdf.plugins/objectresult/get_isobject/ +url: /cpp/aspose.pdf.lowcode/objectresult/get_isobject/ --- ## ObjectResult::get_IsObject method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/objectresult/get_isobject/ Indicates whether the result is an object. ```cpp -bool Aspose::Pdf::Plugins::ObjectResult::get_IsObject() const +bool Aspose::Pdf::LowCode::ObjectResult::get_IsObject() const ``` @@ -24,5 +24,5 @@ bool Aspose::Pdf::Plugins::ObjectResult::get_IsObject() const ## See Also * Class [ObjectResult](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/objectresult/get_isstream/_index.md b/english/cpp/aspose.pdf.lowcode/objectresult/get_isstream/_index.md similarity index 59% rename from english/cpp/aspose.pdf.plugins/objectresult/get_isstream/_index.md rename to english/cpp/aspose.pdf.lowcode/objectresult/get_isstream/_index.md index c43833609a..fb2a4c4c71 100644 --- a/english/cpp/aspose.pdf.plugins/objectresult/get_isstream/_index.md +++ b/english/cpp/aspose.pdf.lowcode/objectresult/get_isstream/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::ObjectResult::get_IsStream method +title: Aspose::Pdf::LowCode::ObjectResult::get_IsStream method linktitle: get_IsStream second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::ObjectResult::get_IsStream method. Indicates whether the result is a path to an output file in C++.' +description: 'Aspose::Pdf::LowCode::ObjectResult::get_IsStream method. Indicates whether the result is a path to an output file in C++.' type: docs weight: 400 -url: /cpp/aspose.pdf.plugins/objectresult/get_isstream/ +url: /cpp/aspose.pdf.lowcode/objectresult/get_isstream/ --- ## ObjectResult::get_IsStream method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/objectresult/get_isstream/ Indicates whether the result is a path to an output file. ```cpp -bool Aspose::Pdf::Plugins::ObjectResult::get_IsStream() override +bool Aspose::Pdf::LowCode::ObjectResult::get_IsStream() override ``` @@ -24,5 +24,5 @@ bool Aspose::Pdf::Plugins::ObjectResult::get_IsStream() override ## See Also * Class [ObjectResult](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/objectresult/get_isstring/_index.md b/english/cpp/aspose.pdf.lowcode/objectresult/get_isstring/_index.md similarity index 57% rename from english/cpp/aspose.pdf.plugins/objectresult/get_isstring/_index.md rename to english/cpp/aspose.pdf.lowcode/objectresult/get_isstring/_index.md index a81a3e910c..f476372c6d 100644 --- a/english/cpp/aspose.pdf.plugins/objectresult/get_isstring/_index.md +++ b/english/cpp/aspose.pdf.lowcode/objectresult/get_isstring/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::ObjectResult::get_IsString method +title: Aspose::Pdf::LowCode::ObjectResult::get_IsString method linktitle: get_IsString second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::ObjectResult::get_IsString method. Indicates whether the result is a string in C++.' +description: 'Aspose::Pdf::LowCode::ObjectResult::get_IsString method. Indicates whether the result is a string in C++.' type: docs weight: 500 -url: /cpp/aspose.pdf.plugins/objectresult/get_isstring/ +url: /cpp/aspose.pdf.lowcode/objectresult/get_isstring/ --- ## ObjectResult::get_IsString method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/objectresult/get_isstring/ Indicates whether the result is a string. ```cpp -bool Aspose::Pdf::Plugins::ObjectResult::get_IsString() override +bool Aspose::Pdf::LowCode::ObjectResult::get_IsString() override ``` @@ -24,5 +24,5 @@ bool Aspose::Pdf::Plugins::ObjectResult::get_IsString() override ## See Also * Class [ObjectResult](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/objectresult/get_text/_index.md b/english/cpp/aspose.pdf.lowcode/objectresult/get_text/_index.md similarity index 55% rename from english/cpp/aspose.pdf.plugins/objectresult/get_text/_index.md rename to english/cpp/aspose.pdf.lowcode/objectresult/get_text/_index.md index bcb9306266..7c11bc924c 100644 --- a/english/cpp/aspose.pdf.plugins/objectresult/get_text/_index.md +++ b/english/cpp/aspose.pdf.lowcode/objectresult/get_text/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::ObjectResult::get_Text method +title: Aspose::Pdf::LowCode::ObjectResult::get_Text method linktitle: get_Text second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::ObjectResult::get_Text method. Returns string representation of the result in C++.' +description: 'Aspose::Pdf::LowCode::ObjectResult::get_Text method. Returns string representation of the result in C++.' type: docs weight: 600 -url: /cpp/aspose.pdf.plugins/objectresult/get_text/ +url: /cpp/aspose.pdf.lowcode/objectresult/get_text/ --- ## ObjectResult::get_Text method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/objectresult/get_text/ Returns string representation of the result. ```cpp -System::String Aspose::Pdf::Plugins::ObjectResult::get_Text() +System::String Aspose::Pdf::LowCode::ObjectResult::get_Text() ``` ## See Also * Class [String](../../../system/string/) * Class [ObjectResult](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/objectresult/tofile/_index.md b/english/cpp/aspose.pdf.lowcode/objectresult/tofile/_index.md similarity index 61% rename from english/cpp/aspose.pdf.plugins/objectresult/tofile/_index.md rename to english/cpp/aspose.pdf.lowcode/objectresult/tofile/_index.md index 14690c5fce..df19c9e861 100644 --- a/english/cpp/aspose.pdf.plugins/objectresult/tofile/_index.md +++ b/english/cpp/aspose.pdf.lowcode/objectresult/tofile/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::ObjectResult::ToFile method +title: Aspose::Pdf::LowCode::ObjectResult::ToFile method linktitle: ToFile second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::ObjectResult::ToFile method. Tries to convert the result to a file in C++.' +description: 'Aspose::Pdf::LowCode::ObjectResult::ToFile method. Tries to convert the result to a file in C++.' type: docs weight: 700 -url: /cpp/aspose.pdf.plugins/objectresult/tofile/ +url: /cpp/aspose.pdf.lowcode/objectresult/tofile/ --- ## ObjectResult::ToFile method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/objectresult/tofile/ Tries to convert the result to a file. ```cpp -System::String Aspose::Pdf::Plugins::ObjectResult::ToFile() override +System::String Aspose::Pdf::LowCode::ObjectResult::ToFile() override ``` @@ -25,5 +25,5 @@ A string representing the path to the output file if the result is file; otherwi * Class [String](../../../system/string/) * Class [ObjectResult](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/objectresult/tostream/_index.md b/english/cpp/aspose.pdf.lowcode/objectresult/tostream/_index.md similarity index 65% rename from english/cpp/aspose.pdf.plugins/objectresult/tostream/_index.md rename to english/cpp/aspose.pdf.lowcode/objectresult/tostream/_index.md index bee4d816aa..f7008d666d 100644 --- a/english/cpp/aspose.pdf.plugins/objectresult/tostream/_index.md +++ b/english/cpp/aspose.pdf.lowcode/objectresult/tostream/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::ObjectResult::ToStream method +title: Aspose::Pdf::LowCode::ObjectResult::ToStream method linktitle: ToStream second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::ObjectResult::ToStream method. Tries to convert the result to a stream object in C++.' +description: 'Aspose::Pdf::LowCode::ObjectResult::ToStream method. Tries to convert the result to a stream object in C++.' type: docs weight: 800 -url: /cpp/aspose.pdf.plugins/objectresult/tostream/ +url: /cpp/aspose.pdf.lowcode/objectresult/tostream/ --- ## ObjectResult::ToStream method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/objectresult/tostream/ Tries to convert the result to a stream object. ```cpp -System::SharedPtr Aspose::Pdf::Plugins::ObjectResult::ToStream() override +System::SharedPtr Aspose::Pdf::LowCode::ObjectResult::ToStream() override ``` @@ -26,5 +26,5 @@ A stream object representing the output data if the result is stream; otherwise * Typedef [SharedPtr](../../../system/sharedptr/) * Class [Stream](../../../system.io/stream/) * Class [ObjectResult](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/objectresult/tostring/_index.md b/english/cpp/aspose.pdf.lowcode/objectresult/tostring/_index.md similarity index 62% rename from english/cpp/aspose.pdf.plugins/objectresult/tostring/_index.md rename to english/cpp/aspose.pdf.lowcode/objectresult/tostring/_index.md index c9af6fca16..d026dfb2b2 100644 --- a/english/cpp/aspose.pdf.plugins/objectresult/tostring/_index.md +++ b/english/cpp/aspose.pdf.lowcode/objectresult/tostring/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::ObjectResult::ToString method +title: Aspose::Pdf::LowCode::ObjectResult::ToString method linktitle: ToString second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::ObjectResult::ToString method. Tries to convert the result to a string in C++.' +description: 'Aspose::Pdf::LowCode::ObjectResult::ToString method. Tries to convert the result to a string in C++.' type: docs weight: 900 -url: /cpp/aspose.pdf.plugins/objectresult/tostring/ +url: /cpp/aspose.pdf.lowcode/objectresult/tostring/ --- ## ObjectResult::ToString method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/objectresult/tostring/ Tries to convert the result to a string. ```cpp -System::String Aspose::Pdf::Plugins::ObjectResult::ToString() const override +System::String Aspose::Pdf::LowCode::ObjectResult::ToString() const override ``` @@ -25,5 +25,5 @@ A string representing the text content if the result is string; otherwise return * Class [String](../../../system/string/) * Class [ObjectResult](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/ofd/_index.md b/english/cpp/aspose.pdf.lowcode/ofd/_index.md similarity index 70% rename from english/cpp/aspose.pdf.plugins/ofd/_index.md rename to english/cpp/aspose.pdf.lowcode/ofd/_index.md index 98e00c7f6e..6756f81d45 100644 --- a/english/cpp/aspose.pdf.plugins/ofd/_index.md +++ b/english/cpp/aspose.pdf.lowcode/ofd/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::Ofd class +title: Aspose::Pdf::LowCode::Ofd class linktitle: Ofd second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::Ofd class. Represents the Ofd plugin in C++.' +description: 'Aspose::Pdf::LowCode::Ofd class. Represents the Ofd plugin in C++.' type: docs weight: 4800 -url: /cpp/aspose.pdf.plugins/ofd/ +url: /cpp/aspose.pdf.lowcode/ofd/ --- ## Ofd class @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/ofd/ Represents the [Ofd](./) plugin. ```cpp -class Ofd : public Aspose::Pdf::Plugins::IPlugin, +class Ofd : public Aspose::Pdf::LowCode::IPlugin, public System::IDisposable ``` @@ -27,5 +27,5 @@ class Ofd : public Aspose::Pdf::Plugins::IPlugin, * Class [IPlugin](../iplugin/) * Class [IDisposable](../../system/idisposable/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/ofd/dispose/_index.md b/english/cpp/aspose.pdf.lowcode/ofd/dispose/_index.md similarity index 50% rename from english/cpp/aspose.pdf.plugins/ofd/dispose/_index.md rename to english/cpp/aspose.pdf.lowcode/ofd/dispose/_index.md index a3bfdb6301..5025c4cf5b 100644 --- a/english/cpp/aspose.pdf.plugins/ofd/dispose/_index.md +++ b/english/cpp/aspose.pdf.lowcode/ofd/dispose/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::Ofd::Dispose method +title: Aspose::Pdf::LowCode::Ofd::Dispose method linktitle: Dispose second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::Ofd::Dispose method. Implementation of IDisposable in C++.' +description: 'Aspose::Pdf::LowCode::Ofd::Dispose method. Implementation of IDisposable in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/ofd/dispose/ +url: /cpp/aspose.pdf.lowcode/ofd/dispose/ --- ## Ofd::Dispose method @@ -13,11 +13,11 @@ url: /cpp/aspose.pdf.plugins/ofd/dispose/ Implementation of IDisposable. ```cpp -void Aspose::Pdf::Plugins::Ofd::Dispose() override +void Aspose::Pdf::LowCode::Ofd::Dispose() override ``` ## See Also * Class [Ofd](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/ofd/process/_index.md b/english/cpp/aspose.pdf.lowcode/ofd/process/_index.md similarity index 73% rename from english/cpp/aspose.pdf.plugins/ofd/process/_index.md rename to english/cpp/aspose.pdf.lowcode/ofd/process/_index.md index 4d638c03b3..b2c5b98733 100644 --- a/english/cpp/aspose.pdf.plugins/ofd/process/_index.md +++ b/english/cpp/aspose.pdf.lowcode/ofd/process/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::Ofd::Process method +title: Aspose::Pdf::LowCode::Ofd::Process method linktitle: Process second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::Ofd::Process method. Starts the Ofd processing with the specified parameters in C++.' +description: 'Aspose::Pdf::LowCode::Ofd::Process method. Starts the Ofd processing with the specified parameters in C++.' type: docs weight: 200 -url: /cpp/aspose.pdf.plugins/ofd/process/ +url: /cpp/aspose.pdf.lowcode/ofd/process/ --- ## Ofd::Process method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/ofd/process/ Starts the [Ofd](../) processing with the specified parameters. ```cpp -System::SharedPtr Aspose::Pdf::Plugins::Ofd::Process(System::SharedPtr options) override +System::SharedPtr Aspose::Pdf::LowCode::Ofd::Process(System::SharedPtr options) override ``` @@ -31,5 +31,5 @@ An [ResultContainer](../../resultcontainer/) object containing the result of the * Class [ResultContainer](../../resultcontainer/) * Class [IPluginOptions](../../ipluginoptions/) * Class [Ofd](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/ofdtopdfoptions/_index.md b/english/cpp/aspose.pdf.lowcode/ofdtopdfoptions/_index.md similarity index 75% rename from english/cpp/aspose.pdf.plugins/ofdtopdfoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/ofdtopdfoptions/_index.md index 526c69a54a..daaa055c33 100644 --- a/english/cpp/aspose.pdf.plugins/ofdtopdfoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/ofdtopdfoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::OfdToPdfOptions class +title: Aspose::Pdf::LowCode::OfdToPdfOptions class linktitle: OfdToPdfOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::OfdToPdfOptions class. Represents options for converting OFD to PDF in C++.' +description: 'Aspose::Pdf::LowCode::OfdToPdfOptions class. Represents options for converting OFD to PDF in C++.' type: docs weight: 4900 -url: /cpp/aspose.pdf.plugins/ofdtopdfoptions/ +url: /cpp/aspose.pdf.lowcode/ofdtopdfoptions/ --- ## OfdToPdfOptions class @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/ofdtopdfoptions/ Represents options for converting [OFD](../../aspose.pdf.ofd/) to PDF. ```cpp -class OfdToPdfOptions : public Aspose::Pdf::Plugins::PdfConverterOptions +class OfdToPdfOptions : public Aspose::Pdf::LowCode::PdfConverterOptions ``` ## Methods @@ -27,5 +27,5 @@ class OfdToPdfOptions : public Aspose::Pdf::Plugins::PdfConverterOptions ## See Also * Class [PdfConverterOptions](../pdfconverteroptions/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/ofdtopdfoptions/get_ofdloadoptions/_index.md b/english/cpp/aspose.pdf.lowcode/ofdtopdfoptions/get_ofdloadoptions/_index.md similarity index 63% rename from english/cpp/aspose.pdf.plugins/ofdtopdfoptions/get_ofdloadoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/ofdtopdfoptions/get_ofdloadoptions/_index.md index 453fa1b25c..187dfb62dd 100644 --- a/english/cpp/aspose.pdf.plugins/ofdtopdfoptions/get_ofdloadoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/ofdtopdfoptions/get_ofdloadoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::OfdToPdfOptions::get_OfdLoadOptions method +title: Aspose::Pdf::LowCode::OfdToPdfOptions::get_OfdLoadOptions method linktitle: get_OfdLoadOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::OfdToPdfOptions::get_OfdLoadOptions method. Gets the OFD load options in C++.' +description: 'Aspose::Pdf::LowCode::OfdToPdfOptions::get_OfdLoadOptions method. Gets the OFD load options in C++.' type: docs weight: 200 -url: /cpp/aspose.pdf.plugins/ofdtopdfoptions/get_ofdloadoptions/ +url: /cpp/aspose.pdf.lowcode/ofdtopdfoptions/get_ofdloadoptions/ --- ## OfdToPdfOptions::get_OfdLoadOptions method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/ofdtopdfoptions/get_ofdloadoptions/ Gets the [OFD](../../../aspose.pdf.ofd/) load options. ```cpp -const System::SharedPtr & Aspose::Pdf::Plugins::OfdToPdfOptions::get_OfdLoadOptions() const +const System::SharedPtr & Aspose::Pdf::LowCode::OfdToPdfOptions::get_OfdLoadOptions() const ``` ## See Also @@ -21,5 +21,5 @@ const System::SharedPtr & Aspose::Pdf::Plugins::Ofd * Typedef [SharedPtr](../../../system/sharedptr/) * Class [OfdLoadOptions](../../../aspose.pdf/ofdloadoptions/) * Class [OfdToPdfOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/ofdtopdfoptions/get_operationname/_index.md b/english/cpp/aspose.pdf.lowcode/ofdtopdfoptions/get_operationname/_index.md similarity index 56% rename from english/cpp/aspose.pdf.plugins/ofdtopdfoptions/get_operationname/_index.md rename to english/cpp/aspose.pdf.lowcode/ofdtopdfoptions/get_operationname/_index.md index 215b071a3f..6103e970c2 100644 --- a/english/cpp/aspose.pdf.plugins/ofdtopdfoptions/get_operationname/_index.md +++ b/english/cpp/aspose.pdf.lowcode/ofdtopdfoptions/get_operationname/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::OfdToPdfOptions::get_OperationName method +title: Aspose::Pdf::LowCode::OfdToPdfOptions::get_OperationName method linktitle: get_OperationName second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::OfdToPdfOptions::get_OperationName method. Gets the name of the operation in C++.' +description: 'Aspose::Pdf::LowCode::OfdToPdfOptions::get_OperationName method. Gets the name of the operation in C++.' type: docs weight: 300 -url: /cpp/aspose.pdf.plugins/ofdtopdfoptions/get_operationname/ +url: /cpp/aspose.pdf.lowcode/ofdtopdfoptions/get_operationname/ --- ## OfdToPdfOptions::get_OperationName method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/ofdtopdfoptions/get_operationname/ Gets the name of the operation. ```cpp -System::String Aspose::Pdf::Plugins::OfdToPdfOptions::get_OperationName() override +System::String Aspose::Pdf::LowCode::OfdToPdfOptions::get_OperationName() override ``` ## See Also * Class [String](../../../system/string/) * Class [OfdToPdfOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/ofdtopdfoptions/ofdtopdfoptions/_index.md b/english/cpp/aspose.pdf.lowcode/ofdtopdfoptions/ofdtopdfoptions/_index.md similarity index 57% rename from english/cpp/aspose.pdf.plugins/ofdtopdfoptions/ofdtopdfoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/ofdtopdfoptions/ofdtopdfoptions/_index.md index f43b6489c4..51fec3da2b 100644 --- a/english/cpp/aspose.pdf.plugins/ofdtopdfoptions/ofdtopdfoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/ofdtopdfoptions/ofdtopdfoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::OfdToPdfOptions::OfdToPdfOptions constructor +title: Aspose::Pdf::LowCode::OfdToPdfOptions::OfdToPdfOptions constructor linktitle: OfdToPdfOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::OfdToPdfOptions::OfdToPdfOptions constructor. Initializes a new instance of the OfdToPdfOptions class in C++.' +description: 'Aspose::Pdf::LowCode::OfdToPdfOptions::OfdToPdfOptions constructor. Initializes a new instance of the OfdToPdfOptions class in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/ofdtopdfoptions/ofdtopdfoptions/ +url: /cpp/aspose.pdf.lowcode/ofdtopdfoptions/ofdtopdfoptions/ --- ## OfdToPdfOptions::OfdToPdfOptions constructor @@ -13,11 +13,11 @@ url: /cpp/aspose.pdf.plugins/ofdtopdfoptions/ofdtopdfoptions/ Initializes a new instance of the [OfdToPdfOptions](../) class. ```cpp -Aspose::Pdf::Plugins::OfdToPdfOptions::OfdToPdfOptions() +Aspose::Pdf::LowCode::OfdToPdfOptions::OfdToPdfOptions() ``` ## See Also * Class [OfdToPdfOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/ofdtopdfoptions/set_ofdloadoptions/_index.md b/english/cpp/aspose.pdf.lowcode/ofdtopdfoptions/set_ofdloadoptions/_index.md similarity index 62% rename from english/cpp/aspose.pdf.plugins/ofdtopdfoptions/set_ofdloadoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/ofdtopdfoptions/set_ofdloadoptions/_index.md index 4ca3ccce69..91dc2be1d7 100644 --- a/english/cpp/aspose.pdf.plugins/ofdtopdfoptions/set_ofdloadoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/ofdtopdfoptions/set_ofdloadoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::OfdToPdfOptions::set_OfdLoadOptions method +title: Aspose::Pdf::LowCode::OfdToPdfOptions::set_OfdLoadOptions method linktitle: set_OfdLoadOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::OfdToPdfOptions::set_OfdLoadOptions method. Sets the OFD load options in C++.' +description: 'Aspose::Pdf::LowCode::OfdToPdfOptions::set_OfdLoadOptions method. Sets the OFD load options in C++.' type: docs weight: 400 -url: /cpp/aspose.pdf.plugins/ofdtopdfoptions/set_ofdloadoptions/ +url: /cpp/aspose.pdf.lowcode/ofdtopdfoptions/set_ofdloadoptions/ --- ## OfdToPdfOptions::set_OfdLoadOptions method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/ofdtopdfoptions/set_ofdloadoptions/ Sets the [OFD](../../../aspose.pdf.ofd/) load options. ```cpp -void Aspose::Pdf::Plugins::OfdToPdfOptions::set_OfdLoadOptions(System::SharedPtr value) +void Aspose::Pdf::LowCode::OfdToPdfOptions::set_OfdLoadOptions(System::SharedPtr value) ``` ## See Also @@ -21,5 +21,5 @@ void Aspose::Pdf::Plugins::OfdToPdfOptions::set_OfdLoadOptions(System::SharedPtr * Typedef [SharedPtr](../../../system/sharedptr/) * Class [OfdLoadOptions](../../../aspose.pdf/ofdloadoptions/) * Class [OfdToPdfOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/optimizeoptions/_index.md b/english/cpp/aspose.pdf.lowcode/optimizeoptions/_index.md similarity index 67% rename from english/cpp/aspose.pdf.plugins/optimizeoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/optimizeoptions/_index.md index a709b54ae1..29a3de504f 100644 --- a/english/cpp/aspose.pdf.plugins/optimizeoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/optimizeoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::OptimizeOptions class +title: Aspose::Pdf::LowCode::OptimizeOptions class linktitle: OptimizeOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::OptimizeOptions class. Represents Optimize options for Optimizer plugin in C++.' +description: 'Aspose::Pdf::LowCode::OptimizeOptions class. Represents Optimize options for Optimizer plugin in C++.' type: docs weight: 5000 -url: /cpp/aspose.pdf.plugins/optimizeoptions/ +url: /cpp/aspose.pdf.lowcode/optimizeoptions/ --- ## OptimizeOptions class @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/optimizeoptions/ Represents Optimize options for [Optimizer](../optimizer/) plugin. ```cpp -class OptimizeOptions : public Aspose::Pdf::Plugins::OrganizerBaseOptions +class OptimizeOptions : public Aspose::Pdf::LowCode::OrganizerBaseOptions ``` ## Methods @@ -24,5 +24,5 @@ class OptimizeOptions : public Aspose::Pdf::Plugins::OrganizerBaseOptions ## See Also * Class [OrganizerBaseOptions](../organizerbaseoptions/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/optimizeoptions/optimizeoptions/_index.md b/english/cpp/aspose.pdf.lowcode/optimizeoptions/optimizeoptions/_index.md similarity index 74% rename from english/cpp/aspose.pdf.plugins/optimizeoptions/optimizeoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/optimizeoptions/optimizeoptions/_index.md index 74e6a0d0cf..f76875fd96 100644 --- a/english/cpp/aspose.pdf.plugins/optimizeoptions/optimizeoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/optimizeoptions/optimizeoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::OptimizeOptions::OptimizeOptions constructor +title: Aspose::Pdf::LowCode::OptimizeOptions::OptimizeOptions constructor linktitle: OptimizeOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::OptimizeOptions::OptimizeOptions constructor. Initializes new instance of the OptimizeOptions object with default options. Linearize the document in order to in C++.' +description: 'Aspose::Pdf::LowCode::OptimizeOptions::OptimizeOptions constructor. Initializes new instance of the OptimizeOptions object with default options. Linearize the document in order to in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/optimizeoptions/optimizeoptions/ +url: /cpp/aspose.pdf.lowcode/optimizeoptions/optimizeoptions/ --- ## OptimizeOptions::OptimizeOptions constructor @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/optimizeoptions/optimizeoptions/ Initializes new instance of the [OptimizeOptions](../) object with default options. Linearize the document in order to. ```cpp -Aspose::Pdf::Plugins::OptimizeOptions::OptimizeOptions() +Aspose::Pdf::LowCode::OptimizeOptions::OptimizeOptions() ``` ## Remarks @@ -28,5 +28,5 @@ Aspose::Pdf::Plugins::OptimizeOptions::OptimizeOptions() ## See Also * Class [OptimizeOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/optimizer/_index.md b/english/cpp/aspose.pdf.lowcode/optimizer/_index.md similarity index 64% rename from english/cpp/aspose.pdf.plugins/optimizer/_index.md rename to english/cpp/aspose.pdf.lowcode/optimizer/_index.md index 36f33aa164..2aeaddbdc6 100644 --- a/english/cpp/aspose.pdf.plugins/optimizer/_index.md +++ b/english/cpp/aspose.pdf.lowcode/optimizer/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::Optimizer class +title: Aspose::Pdf::LowCode::Optimizer class linktitle: Optimizer second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::Optimizer class. Represents Optimizer plugin in C++.' +description: 'Aspose::Pdf::LowCode::Optimizer class. Represents Optimizer plugin in C++.' type: docs weight: 5100 -url: /cpp/aspose.pdf.plugins/optimizer/ +url: /cpp/aspose.pdf.lowcode/optimizer/ --- ## Optimizer class @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/optimizer/ Represents [Optimizer](./) plugin. ```cpp -class Optimizer : public Aspose::Pdf::Plugins::IPlugin +class Optimizer : public Aspose::Pdf::LowCode::IPlugin ``` ## Methods @@ -24,5 +24,5 @@ class Optimizer : public Aspose::Pdf::Plugins::IPlugin ## See Also * Class [IPlugin](../iplugin/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/optimizer/process/_index.md b/english/cpp/aspose.pdf.lowcode/optimizer/process/_index.md similarity index 73% rename from english/cpp/aspose.pdf.plugins/optimizer/process/_index.md rename to english/cpp/aspose.pdf.lowcode/optimizer/process/_index.md index f3da5ed266..f57912531d 100644 --- a/english/cpp/aspose.pdf.plugins/optimizer/process/_index.md +++ b/english/cpp/aspose.pdf.lowcode/optimizer/process/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::Optimizer::Process method +title: Aspose::Pdf::LowCode::Optimizer::Process method linktitle: Process second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::Optimizer::Process method. Starts the Optimizer processing with the specified parameters in C++.' +description: 'Aspose::Pdf::LowCode::Optimizer::Process method. Starts the Optimizer processing with the specified parameters in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/optimizer/process/ +url: /cpp/aspose.pdf.lowcode/optimizer/process/ --- ## Optimizer::Process method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/optimizer/process/ Starts the [Optimizer](../) processing with the specified parameters. ```cpp -System::SharedPtr Aspose::Pdf::Plugins::Optimizer::Process(System::SharedPtr options) override +System::SharedPtr Aspose::Pdf::LowCode::Optimizer::Process(System::SharedPtr options) override ``` @@ -31,5 +31,5 @@ An [ResultContainer](../../resultcontainer/) object containg the result of the o * Class [ResultContainer](../../resultcontainer/) * Class [IPluginOptions](../../ipluginoptions/) * Class [Optimizer](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/organizerbaseoptions/_index.md b/english/cpp/aspose.pdf.lowcode/organizerbaseoptions/_index.md similarity index 76% rename from english/cpp/aspose.pdf.plugins/organizerbaseoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/organizerbaseoptions/_index.md index d4d1de672e..929f6f6cb6 100644 --- a/english/cpp/aspose.pdf.plugins/organizerbaseoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/organizerbaseoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::OrganizerBaseOptions class +title: Aspose::Pdf::LowCode::OrganizerBaseOptions class linktitle: OrganizerBaseOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::OrganizerBaseOptions class. Represents base options for plugins in C++.' +description: 'Aspose::Pdf::LowCode::OrganizerBaseOptions class. Represents base options for plugins in C++.' type: docs weight: 5200 -url: /cpp/aspose.pdf.plugins/organizerbaseoptions/ +url: /cpp/aspose.pdf.lowcode/organizerbaseoptions/ --- ## OrganizerBaseOptions class @@ -13,9 +13,9 @@ url: /cpp/aspose.pdf.plugins/organizerbaseoptions/ Represents base options for plugins. ```cpp -class OrganizerBaseOptions : public Aspose::Pdf::Plugins::IPluginOptions, - public Aspose::Pdf::Plugins::IDataContainer, - public Aspose::Pdf::Plugins::ISaveInstruction +class OrganizerBaseOptions : public Aspose::Pdf::LowCode::IPluginOptions, + public Aspose::Pdf::LowCode::IDataContainer, + public Aspose::Pdf::LowCode::ISaveInstruction ``` ## Methods @@ -35,5 +35,5 @@ class OrganizerBaseOptions : public Aspose::Pdf::Plugins::IPluginOptions, * Class [IPluginOptions](../ipluginoptions/) * Class [IDataContainer](../idatacontainer/) * Class [ISaveInstruction](../isaveinstruction/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/organizerbaseoptions/addinput/_index.md b/english/cpp/aspose.pdf.lowcode/organizerbaseoptions/addinput/_index.md similarity index 67% rename from english/cpp/aspose.pdf.plugins/organizerbaseoptions/addinput/_index.md rename to english/cpp/aspose.pdf.lowcode/organizerbaseoptions/addinput/_index.md index 279fd8cd3f..d363c0ba54 100644 --- a/english/cpp/aspose.pdf.plugins/organizerbaseoptions/addinput/_index.md +++ b/english/cpp/aspose.pdf.lowcode/organizerbaseoptions/addinput/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::OrganizerBaseOptions::AddInput method +title: Aspose::Pdf::LowCode::OrganizerBaseOptions::AddInput method linktitle: AddInput second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::OrganizerBaseOptions::AddInput method. Adds new data source to the PdfOrganizer plugin data collection in C++.' +description: 'Aspose::Pdf::LowCode::OrganizerBaseOptions::AddInput method. Adds new data source to the PdfOrganizer plugin data collection in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/organizerbaseoptions/addinput/ +url: /cpp/aspose.pdf.lowcode/organizerbaseoptions/addinput/ --- ## OrganizerBaseOptions::AddInput method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/organizerbaseoptions/addinput/ Adds new data source to the PdfOrganizer plugin data collection. ```cpp -void Aspose::Pdf::Plugins::OrganizerBaseOptions::AddInput(System::SharedPtr dataSource) override +void Aspose::Pdf::LowCode::OrganizerBaseOptions::AddInput(System::SharedPtr dataSource) override ``` @@ -26,5 +26,5 @@ void Aspose::Pdf::Plugins::OrganizerBaseOptions::AddInput(System::SharedPtr saveDataSource) override +void Aspose::Pdf::LowCode::OrganizerBaseOptions::AddOutput(System::SharedPtr saveDataSource) override ``` @@ -26,5 +26,5 @@ void Aspose::Pdf::Plugins::OrganizerBaseOptions::AddOutput(System::SharedPtr>> Aspose::Pdf::Plugins::OrganizerBaseOptions::get_Inputs() override +System::SharedPtr>> Aspose::Pdf::LowCode::OrganizerBaseOptions::get_Inputs() override ``` ## See Also @@ -22,5 +22,5 @@ System::SharedPtr>> Aspose::Pdf::Plugins::OrganizerBaseOptions::get_Outputs() override +System::SharedPtr>> Aspose::Pdf::LowCode::OrganizerBaseOptions::get_Outputs() override ``` ## See Also @@ -22,5 +22,5 @@ System::SharedPtr Aspose::Pdf::Plugins::PdfAConverter::Process(System::SharedPtr options) override +System::SharedPtr Aspose::Pdf::LowCode::PdfAConverter::Process(System::SharedPtr options) override ``` @@ -31,5 +31,5 @@ A [ResultContainer](../../resultcontainer/) object containing the result of the * Class [ResultContainer](../../resultcontainer/) * Class [IPluginOptions](../../ipluginoptions/) * Class [PdfAConverter](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/pdfaconvertoptions/_index.md b/english/cpp/aspose.pdf.lowcode/pdfaconvertoptions/_index.md similarity index 71% rename from english/cpp/aspose.pdf.plugins/pdfaconvertoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/pdfaconvertoptions/_index.md index 60713fba0f..03720bb4e4 100644 --- a/english/cpp/aspose.pdf.plugins/pdfaconvertoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/pdfaconvertoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::PdfAConvertOptions class +title: Aspose::Pdf::LowCode::PdfAConvertOptions class linktitle: PdfAConvertOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::PdfAConvertOptions class. Represents options for converting PDF documents to PDF/A format with the PdfAConverter plugin in C++.' +description: 'Aspose::Pdf::LowCode::PdfAConvertOptions class. Represents options for converting PDF documents to PDF/A format with the PdfAConverter plugin in C++.' type: docs weight: 5400 -url: /cpp/aspose.pdf.plugins/pdfaconvertoptions/ +url: /cpp/aspose.pdf.lowcode/pdfaconvertoptions/ --- ## PdfAConvertOptions class @@ -13,8 +13,8 @@ url: /cpp/aspose.pdf.plugins/pdfaconvertoptions/ Represents options for converting PDF documents to PDF/A format with the [PdfAConverter](../pdfaconverter/) plugin. ```cpp -class PdfAConvertOptions : public Aspose::Pdf::Plugins::PdfAOptionsBase, - public Aspose::Pdf::Plugins::ISaveInstruction +class PdfAConvertOptions : public Aspose::Pdf::LowCode::PdfAOptionsBase, + public Aspose::Pdf::LowCode::ISaveInstruction ``` ## Methods @@ -28,5 +28,5 @@ class PdfAConvertOptions : public Aspose::Pdf::Plugins::PdfAOptionsBase, * Class [PdfAOptionsBase](../pdfaoptionsbase/) * Class [ISaveInstruction](../isaveinstruction/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/pdfaconvertoptions/addoutput/_index.md b/english/cpp/aspose.pdf.lowcode/pdfaconvertoptions/addoutput/_index.md similarity index 66% rename from english/cpp/aspose.pdf.plugins/pdfaconvertoptions/addoutput/_index.md rename to english/cpp/aspose.pdf.lowcode/pdfaconvertoptions/addoutput/_index.md index db5e692e87..d065daeb3f 100644 --- a/english/cpp/aspose.pdf.plugins/pdfaconvertoptions/addoutput/_index.md +++ b/english/cpp/aspose.pdf.lowcode/pdfaconvertoptions/addoutput/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::PdfAConvertOptions::AddOutput method +title: Aspose::Pdf::LowCode::PdfAConvertOptions::AddOutput method linktitle: AddOutput second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::PdfAConvertOptions::AddOutput method. Adds new result save target in C++.' +description: 'Aspose::Pdf::LowCode::PdfAConvertOptions::AddOutput method. Adds new result save target in C++.' type: docs weight: 200 -url: /cpp/aspose.pdf.plugins/pdfaconvertoptions/addoutput/ +url: /cpp/aspose.pdf.lowcode/pdfaconvertoptions/addoutput/ --- ## PdfAConvertOptions::AddOutput method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/pdfaconvertoptions/addoutput/ Adds new result save target. ```cpp -void Aspose::Pdf::Plugins::PdfAConvertOptions::AddOutput(System::SharedPtr dataSource) override +void Aspose::Pdf::LowCode::PdfAConvertOptions::AddOutput(System::SharedPtr dataSource) override ``` @@ -26,5 +26,5 @@ void Aspose::Pdf::Plugins::PdfAConvertOptions::AddOutput(System::SharedPtr>> Aspose::Pdf::Plugins::PdfAConvertOptions::get_Outputs() override +System::SharedPtr>> Aspose::Pdf::LowCode::PdfAConvertOptions::get_Outputs() override ``` ## See Also @@ -22,5 +22,5 @@ System::SharedPtr dataSource) override +void Aspose::Pdf::LowCode::PdfAOptionsBase::AddInput(System::SharedPtr dataSource) override ``` @@ -26,5 +26,5 @@ void Aspose::Pdf::Plugins::PdfAOptionsBase::AddInput(System::SharedPtr Aspose::Pdf::Plugins::PdfAOptionsBase::get_FontEmbeddingOptions() +System::SharedPtr Aspose::Pdf::LowCode::PdfAOptionsBase::get_FontEmbeddingOptions() ``` ## Remarks @@ -27,5 +27,5 @@ The font embedding options. * Typedef [SharedPtr](../../../system/sharedptr/) * Class [FontEmbeddingOptions](../../../aspose.pdf/fontembeddingoptions/) * Class [PdfAOptionsBase](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/get_iccprofilefilename/_index.md b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/get_iccprofilefilename/_index.md similarity index 69% rename from english/cpp/aspose.pdf.plugins/pdfaoptionsbase/get_iccprofilefilename/_index.md rename to english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/get_iccprofilefilename/_index.md index fc076b4b74..a8640c18b6 100644 --- a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/get_iccprofilefilename/_index.md +++ b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/get_iccprofilefilename/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::PdfAOptionsBase::get_IccProfileFileName method +title: Aspose::Pdf::LowCode::PdfAOptionsBase::get_IccProfileFileName method linktitle: get_IccProfileFileName second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::PdfAOptionsBase::get_IccProfileFileName method. Gets the filename of the ICC (International Color Consortium) profile to be used for the PDF/A conversion in place of the default one in C++.' +description: 'Aspose::Pdf::LowCode::PdfAOptionsBase::get_IccProfileFileName method. Gets the filename of the ICC (International Color Consortium) profile to be used for the PDF/A conversion in place of the default one in C++.' type: docs weight: 700 -url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/get_iccprofilefilename/ +url: /cpp/aspose.pdf.lowcode/pdfaoptionsbase/get_iccprofilefilename/ --- ## PdfAOptionsBase::get_IccProfileFileName method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/get_iccprofilefilename/ Gets the filename of the ICC (International [Color](../../../aspose.pdf/color/) Consortium) profile to be used for the PDF/A conversion in place of the default one. ```cpp -System::String Aspose::Pdf::Plugins::PdfAOptionsBase::get_IccProfileFileName() +System::String Aspose::Pdf::LowCode::PdfAOptionsBase::get_IccProfileFileName() ``` ## Remarks @@ -24,5 +24,5 @@ The filename of the ICC profile. * Class [String](../../../system/string/) * Class [PdfAOptionsBase](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/get_inputs/_index.md b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/get_inputs/_index.md similarity index 64% rename from english/cpp/aspose.pdf.plugins/pdfaoptionsbase/get_inputs/_index.md rename to english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/get_inputs/_index.md index 4850462e80..d299ac42a2 100644 --- a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/get_inputs/_index.md +++ b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/get_inputs/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::PdfAOptionsBase::get_Inputs method +title: Aspose::Pdf::LowCode::PdfAOptionsBase::get_Inputs method linktitle: get_Inputs second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::PdfAOptionsBase::get_Inputs method. Gets collection of data sources in C++.' +description: 'Aspose::Pdf::LowCode::PdfAOptionsBase::get_Inputs method. Gets collection of data sources in C++.' type: docs weight: 800 -url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/get_inputs/ +url: /cpp/aspose.pdf.lowcode/pdfaoptionsbase/get_inputs/ --- ## PdfAOptionsBase::get_Inputs method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/get_inputs/ Gets collection of data sources. ```cpp -System::SharedPtr>> Aspose::Pdf::Plugins::PdfAOptionsBase::get_Inputs() override +System::SharedPtr>> Aspose::Pdf::LowCode::PdfAOptionsBase::get_Inputs() override ``` ## See Also @@ -22,5 +22,5 @@ System::SharedPtr & Aspose::Pdf::Plugins::PdfAOptionsBase::get_LogOutputSource() const +const System::SharedPtr & Aspose::Pdf::LowCode::PdfAOptionsBase::get_LogOutputSource() const ``` ## Remarks @@ -25,5 +25,5 @@ The data source for the log output. * Typedef [SharedPtr](../../../system/sharedptr/) * Class [IDataSource](../../idatasource/) * Class [PdfAOptionsBase](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/get_nonspecificationflags/_index.md b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/get_nonspecificationflags/_index.md similarity index 68% rename from english/cpp/aspose.pdf.plugins/pdfaoptionsbase/get_nonspecificationflags/_index.md rename to english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/get_nonspecificationflags/_index.md index c9c51a0c2d..6e23e96a00 100644 --- a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/get_nonspecificationflags/_index.md +++ b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/get_nonspecificationflags/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::PdfAOptionsBase::get_NonSpecificationFlags method +title: Aspose::Pdf::LowCode::PdfAOptionsBase::get_NonSpecificationFlags method linktitle: get_NonSpecificationFlags second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::PdfAOptionsBase::get_NonSpecificationFlags method. Gets the flags that control the PDF/A conversion for cases when the source PDF document doesn''t correspond to the PDF specification in C++.' +description: 'Aspose::Pdf::LowCode::PdfAOptionsBase::get_NonSpecificationFlags method. Gets the flags that control the PDF/A conversion for cases when the source PDF document doesn''t correspond to the PDF specification in C++.' type: docs weight: 1100 -url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/get_nonspecificationflags/ +url: /cpp/aspose.pdf.lowcode/pdfaoptionsbase/get_nonspecificationflags/ --- ## PdfAOptionsBase::get_NonSpecificationFlags method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/get_nonspecificationflags/ Gets the flags that control the PDF/A conversion for cases when the source PDF document doesn't correspond to the PDF specification. ```cpp -System::SharedPtr Aspose::Pdf::Plugins::PdfAOptionsBase::get_NonSpecificationFlags() +System::SharedPtr Aspose::Pdf::LowCode::PdfAOptionsBase::get_NonSpecificationFlags() ``` ## Remarks @@ -25,5 +25,5 @@ The flags for non-specification cases during PDF/A conversion. * Typedef [SharedPtr](../../../system/sharedptr/) * Class [PdfANonSpecificationFlags](../../../aspose.pdf/pdfanonspecificationflags/) * Class [PdfAOptionsBase](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/get_optimizefilesize/_index.md b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/get_optimizefilesize/_index.md similarity index 69% rename from english/cpp/aspose.pdf.plugins/pdfaoptionsbase/get_optimizefilesize/_index.md rename to english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/get_optimizefilesize/_index.md index 64ca46b290..e1935c5c04 100644 --- a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/get_optimizefilesize/_index.md +++ b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/get_optimizefilesize/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::PdfAOptionsBase::get_OptimizeFileSize method +title: Aspose::Pdf::LowCode::PdfAOptionsBase::get_OptimizeFileSize method linktitle: get_OptimizeFileSize second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::PdfAOptionsBase::get_OptimizeFileSize method. Gets a value indicating whether to try to reduce the file size during the PDF/A conversion process in C++.' +description: 'Aspose::Pdf::LowCode::PdfAOptionsBase::get_OptimizeFileSize method. Gets a value indicating whether to try to reduce the file size during the PDF/A conversion process in C++.' type: docs weight: 1200 -url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/get_optimizefilesize/ +url: /cpp/aspose.pdf.lowcode/pdfaoptionsbase/get_optimizefilesize/ --- ## PdfAOptionsBase::get_OptimizeFileSize method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/get_optimizefilesize/ Gets a value indicating whether to try to reduce the file size during the PDF/A conversion process. ```cpp -bool Aspose::Pdf::Plugins::PdfAOptionsBase::get_OptimizeFileSize() +bool Aspose::Pdf::LowCode::PdfAOptionsBase::get_OptimizeFileSize() ``` ## Remarks @@ -31,5 +31,5 @@ When set to **true** ## See Also * Class [PdfAOptionsBase](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/get_pdfaversion/_index.md b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/get_pdfaversion/_index.md similarity index 77% rename from english/cpp/aspose.pdf.plugins/pdfaoptionsbase/get_pdfaversion/_index.md rename to english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/get_pdfaversion/_index.md index 47c6124d46..7c1553695b 100644 --- a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/get_pdfaversion/_index.md +++ b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/get_pdfaversion/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::PdfAOptionsBase::get_PdfAVersion method +title: Aspose::Pdf::LowCode::PdfAOptionsBase::get_PdfAVersion method linktitle: get_PdfAVersion second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::PdfAOptionsBase::get_PdfAVersion method. Gets the version of the PDF/A standard to be used for validation or conversion in C++.' +description: 'Aspose::Pdf::LowCode::PdfAOptionsBase::get_PdfAVersion method. Gets the version of the PDF/A standard to be used for validation or conversion in C++.' type: docs weight: 1300 -url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/get_pdfaversion/ +url: /cpp/aspose.pdf.lowcode/pdfaoptionsbase/get_pdfaversion/ --- ## PdfAOptionsBase::get_PdfAVersion method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/get_pdfaversion/ Gets the version of the PDF/A standard to be used for validation or conversion. ```cpp -PdfAStandardVersion Aspose::Pdf::Plugins::PdfAOptionsBase::get_PdfAVersion() const +PdfAStandardVersion Aspose::Pdf::LowCode::PdfAOptionsBase::get_PdfAVersion() const ``` ## Remarks @@ -26,5 +26,5 @@ The PDF/A standard version is used to determine the compliance level for PDF/A v * Enum [PdfAStandardVersion](../../pdfastandardversion/) * Class [PdfAOptionsBase](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/get_puasymbolsprocessingstrategy/_index.md b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/get_puasymbolsprocessingstrategy/_index.md similarity index 73% rename from english/cpp/aspose.pdf.plugins/pdfaoptionsbase/get_puasymbolsprocessingstrategy/_index.md rename to english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/get_puasymbolsprocessingstrategy/_index.md index f32fb817b1..162acbdc1d 100644 --- a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/get_puasymbolsprocessingstrategy/_index.md +++ b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/get_puasymbolsprocessingstrategy/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::PdfAOptionsBase::get_PuaSymbolsProcessingStrategy method +title: Aspose::Pdf::LowCode::PdfAOptionsBase::get_PuaSymbolsProcessingStrategy method linktitle: get_PuaSymbolsProcessingStrategy second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::PdfAOptionsBase::get_PuaSymbolsProcessingStrategy method. Gets the strategy for processing Private Use Area (PUA) symbols in the PDF document in C++.' +description: 'Aspose::Pdf::LowCode::PdfAOptionsBase::get_PuaSymbolsProcessingStrategy method. Gets the strategy for processing Private Use Area (PUA) symbols in the PDF document in C++.' type: docs weight: 1400 -url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/get_puasymbolsprocessingstrategy/ +url: /cpp/aspose.pdf.lowcode/pdfaoptionsbase/get_puasymbolsprocessingstrategy/ --- ## PdfAOptionsBase::get_PuaSymbolsProcessingStrategy method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/get_puasymbolsprocessingstrategy/ Gets the strategy for processing Private Use Area (PUA) symbols in the PDF document. ```cpp -PdfFormatConversionOptions::PuaProcessingStrategy Aspose::Pdf::Plugins::PdfAOptionsBase::get_PuaSymbolsProcessingStrategy() +PdfFormatConversionOptions::PuaProcessingStrategy Aspose::Pdf::LowCode::PdfAOptionsBase::get_PuaSymbolsProcessingStrategy() ``` ## Remarks @@ -24,5 +24,5 @@ The strategy for processing PUA symbols. The default is [PdfFormatConversionOpti * Enum [PuaProcessingStrategy](../../../aspose.pdf/pdfformatconversionoptions/puaprocessingstrategy/) * Class [PdfAOptionsBase](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/get_softmaskaction/_index.md b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/get_softmaskaction/_index.md similarity index 69% rename from english/cpp/aspose.pdf.plugins/pdfaoptionsbase/get_softmaskaction/_index.md rename to english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/get_softmaskaction/_index.md index 8d73f0cf5b..b9969051d8 100644 --- a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/get_softmaskaction/_index.md +++ b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/get_softmaskaction/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::PdfAOptionsBase::get_SoftMaskAction method +title: Aspose::Pdf::LowCode::PdfAOptionsBase::get_SoftMaskAction method linktitle: get_SoftMaskAction second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::PdfAOptionsBase::get_SoftMaskAction method. Gets the action to be taken during the conversion of images with soft masks in C++.' +description: 'Aspose::Pdf::LowCode::PdfAOptionsBase::get_SoftMaskAction method. Gets the action to be taken during the conversion of images with soft masks in C++.' type: docs weight: 1500 -url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/get_softmaskaction/ +url: /cpp/aspose.pdf.lowcode/pdfaoptionsbase/get_softmaskaction/ --- ## PdfAOptionsBase::get_SoftMaskAction method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/get_softmaskaction/ Gets the action to be taken during the conversion of images with soft masks. ```cpp -ConvertSoftMaskAction Aspose::Pdf::Plugins::PdfAOptionsBase::get_SoftMaskAction() +ConvertSoftMaskAction Aspose::Pdf::LowCode::PdfAOptionsBase::get_SoftMaskAction() ``` ## Remarks @@ -24,5 +24,5 @@ The action for converting images with soft masks. The value of this property is * Enum [ConvertSoftMaskAction](../../../aspose.pdf/convertsoftmaskaction/) * Class [PdfAOptionsBase](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/get_symbolicfontencodingstrategy/_index.md b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/get_symbolicfontencodingstrategy/_index.md similarity index 75% rename from english/cpp/aspose.pdf.plugins/pdfaoptionsbase/get_symbolicfontencodingstrategy/_index.md rename to english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/get_symbolicfontencodingstrategy/_index.md index e9e71fa6aa..de3613b1f6 100644 --- a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/get_symbolicfontencodingstrategy/_index.md +++ b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/get_symbolicfontencodingstrategy/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::PdfAOptionsBase::get_SymbolicFontEncodingStrategy method +title: Aspose::Pdf::LowCode::PdfAOptionsBase::get_SymbolicFontEncodingStrategy method linktitle: get_SymbolicFontEncodingStrategy second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::PdfAOptionsBase::get_SymbolicFontEncodingStrategy method. Gets the strategy for encoding symbolic fonts when converting to PDF/A format in C++.' +description: 'Aspose::Pdf::LowCode::PdfAOptionsBase::get_SymbolicFontEncodingStrategy method. Gets the strategy for encoding symbolic fonts when converting to PDF/A format in C++.' type: docs weight: 1600 -url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/get_symbolicfontencodingstrategy/ +url: /cpp/aspose.pdf.lowcode/pdfaoptionsbase/get_symbolicfontencodingstrategy/ --- ## PdfAOptionsBase::get_SymbolicFontEncodingStrategy method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/get_symbolicfontencodingstrategy/ Gets the strategy for encoding symbolic fonts when converting to PDF/A format. ```cpp -System::SharedPtr Aspose::Pdf::Plugins::PdfAOptionsBase::get_SymbolicFontEncodingStrategy() +System::SharedPtr Aspose::Pdf::LowCode::PdfAOptionsBase::get_SymbolicFontEncodingStrategy() ``` ## Remarks @@ -27,5 +27,5 @@ This property allows you to control what CMap subtable would be copied into the * Typedef [SharedPtr](../../../system/sharedptr/) * Class [PdfASymbolicFontEncodingStrategy](../../../aspose.pdf/pdfasymbolicfontencodingstrategy/) * Class [PdfAOptionsBase](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/get_unicodeprocessingrules/_index.md b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/get_unicodeprocessingrules/_index.md similarity index 74% rename from english/cpp/aspose.pdf.plugins/pdfaoptionsbase/get_unicodeprocessingrules/_index.md rename to english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/get_unicodeprocessingrules/_index.md index 97cc94d8dd..a5a115912c 100644 --- a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/get_unicodeprocessingrules/_index.md +++ b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/get_unicodeprocessingrules/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::PdfAOptionsBase::get_UnicodeProcessingRules method +title: Aspose::Pdf::LowCode::PdfAOptionsBase::get_UnicodeProcessingRules method linktitle: get_UnicodeProcessingRules second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::PdfAOptionsBase::get_UnicodeProcessingRules method. Gets the rules for processing ToUnicode CMap tables and not linked to Unicode symbols during the PDF/A conversion process in C++.' +description: 'Aspose::Pdf::LowCode::PdfAOptionsBase::get_UnicodeProcessingRules method. Gets the rules for processing ToUnicode CMap tables and not linked to Unicode symbols during the PDF/A conversion process in C++.' type: docs weight: 1700 -url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/get_unicodeprocessingrules/ +url: /cpp/aspose.pdf.lowcode/pdfaoptionsbase/get_unicodeprocessingrules/ --- ## PdfAOptionsBase::get_UnicodeProcessingRules method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/get_unicodeprocessingrules/ Gets the rules for processing ToUnicode CMap tables and not linked to Unicode symbols during the PDF/A conversion process. ```cpp -System::SharedPtr Aspose::Pdf::Plugins::PdfAOptionsBase::get_UnicodeProcessingRules() +System::SharedPtr Aspose::Pdf::LowCode::PdfAOptionsBase::get_UnicodeProcessingRules() ``` ## Remarks @@ -25,5 +25,5 @@ An instance of [ToUnicodeProcessingRules](../../../aspose.pdf/tounicodeprocessin * Typedef [SharedPtr](../../../system/sharedptr/) * Class [ToUnicodeProcessingRules](../../../aspose.pdf/tounicodeprocessingrules/) * Class [PdfAOptionsBase](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/pdfaoptionsbase/_index.md b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/pdfaoptionsbase/_index.md similarity index 53% rename from english/cpp/aspose.pdf.plugins/pdfaoptionsbase/pdfaoptionsbase/_index.md rename to english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/pdfaoptionsbase/_index.md index 9f5a1b1fcc..10c9033058 100644 --- a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/pdfaoptionsbase/_index.md +++ b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/pdfaoptionsbase/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::PdfAOptionsBase::PdfAOptionsBase constructor +title: Aspose::Pdf::LowCode::PdfAOptionsBase::PdfAOptionsBase constructor linktitle: PdfAOptionsBase second_title: Aspose.PDF for C++ API Reference -description: 'How to use PdfAOptionsBase constructor of Aspose::Pdf::Plugins::PdfAOptionsBase class in C++.' +description: 'How to use PdfAOptionsBase constructor of Aspose::Pdf::LowCode::PdfAOptionsBase class in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/pdfaoptionsbase/ +url: /cpp/aspose.pdf.lowcode/pdfaoptionsbase/pdfaoptionsbase/ --- ## PdfAOptionsBase::PdfAOptionsBase constructor @@ -13,11 +13,11 @@ url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/pdfaoptionsbase/ ```cpp -Aspose::Pdf::Plugins::PdfAOptionsBase::PdfAOptionsBase() +Aspose::Pdf::LowCode::PdfAOptionsBase::PdfAOptionsBase() ``` ## See Also * Class [PdfAOptionsBase](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/set_aligntext/_index.md b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_aligntext/_index.md similarity index 74% rename from english/cpp/aspose.pdf.plugins/pdfaoptionsbase/set_aligntext/_index.md rename to english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_aligntext/_index.md index 96c1a14587..df771b3c29 100644 --- a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/set_aligntext/_index.md +++ b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_aligntext/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::PdfAOptionsBase::set_AlignText method +title: Aspose::Pdf::LowCode::PdfAOptionsBase::set_AlignText method linktitle: set_AlignText second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::PdfAOptionsBase::set_AlignText method. Sets a value indicating whether additional means are necessary to preserve text alignment during the PDF/A conversion process in C++.' +description: 'Aspose::Pdf::LowCode::PdfAOptionsBase::set_AlignText method. Sets a value indicating whether additional means are necessary to preserve text alignment during the PDF/A conversion process in C++.' type: docs weight: 1800 -url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/set_aligntext/ +url: /cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_aligntext/ --- ## PdfAOptionsBase::set_AlignText method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/set_aligntext/ Sets a value indicating whether additional means are necessary to preserve text alignment during the PDF/A conversion process. ```cpp -void Aspose::Pdf::Plugins::PdfAOptionsBase::set_AlignText(bool value) +void Aspose::Pdf::LowCode::PdfAOptionsBase::set_AlignText(bool value) ``` ## Remarks @@ -33,5 +33,5 @@ value, as the text alignment doesn't change during the default conversion proces ## See Also * Class [PdfAOptionsBase](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/set_erroraction/_index.md b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_erroraction/_index.md similarity index 68% rename from english/cpp/aspose.pdf.plugins/pdfaoptionsbase/set_erroraction/_index.md rename to english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_erroraction/_index.md index 1e016f6902..1bdc9b26be 100644 --- a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/set_erroraction/_index.md +++ b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_erroraction/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::PdfAOptionsBase::set_ErrorAction method +title: Aspose::Pdf::LowCode::PdfAOptionsBase::set_ErrorAction method linktitle: set_ErrorAction second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::PdfAOptionsBase::set_ErrorAction method. Sets the action to be taken for objects that cannot be converted in C++.' +description: 'Aspose::Pdf::LowCode::PdfAOptionsBase::set_ErrorAction method. Sets the action to be taken for objects that cannot be converted in C++.' type: docs weight: 1900 -url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/set_erroraction/ +url: /cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_erroraction/ --- ## PdfAOptionsBase::set_ErrorAction method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/set_erroraction/ Sets the action to be taken for objects that cannot be converted. ```cpp -void Aspose::Pdf::Plugins::PdfAOptionsBase::set_ErrorAction(ConvertErrorAction value) +void Aspose::Pdf::LowCode::PdfAOptionsBase::set_ErrorAction(ConvertErrorAction value) ``` ## Remarks @@ -24,5 +24,5 @@ The action to be taken when an object in a document structure cannot be converte * Enum [ConvertErrorAction](../../../aspose.pdf/converterroraction/) * Class [PdfAOptionsBase](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/set_excludefontsstrategy/_index.md b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_excludefontsstrategy/_index.md similarity index 81% rename from english/cpp/aspose.pdf.plugins/pdfaoptionsbase/set_excludefontsstrategy/_index.md rename to english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_excludefontsstrategy/_index.md index 419a7f9209..c73262ec71 100644 --- a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/set_excludefontsstrategy/_index.md +++ b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_excludefontsstrategy/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::PdfAOptionsBase::set_ExcludeFontsStrategy method +title: Aspose::Pdf::LowCode::PdfAOptionsBase::set_ExcludeFontsStrategy method linktitle: set_ExcludeFontsStrategy second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::PdfAOptionsBase::set_ExcludeFontsStrategy method. Sets the strategy for removing fonts to minimize the output file size during the PDF/A conversion process in C++.' +description: 'Aspose::Pdf::LowCode::PdfAOptionsBase::set_ExcludeFontsStrategy method. Sets the strategy for removing fonts to minimize the output file size during the PDF/A conversion process in C++.' type: docs weight: 2000 -url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/set_excludefontsstrategy/ +url: /cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_excludefontsstrategy/ --- ## PdfAOptionsBase::set_ExcludeFontsStrategy method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/set_excludefontsstrategy/ Sets the strategy for removing fonts to minimize the output file size during the PDF/A conversion process. ```cpp -void Aspose::Pdf::Plugins::PdfAOptionsBase::set_ExcludeFontsStrategy(PdfFormatConversionOptions::RemoveFontsStrategy value) +void Aspose::Pdf::LowCode::PdfAOptionsBase::set_ExcludeFontsStrategy(PdfFormatConversionOptions::RemoveFontsStrategy value) ``` ## Remarks @@ -26,5 +26,5 @@ This property allows you to control how fonts are handled during the conversion * Enum [RemoveFontsStrategy](../../../aspose.pdf/pdfformatconversionoptions/removefontsstrategy/) * Class [PdfAOptionsBase](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/set_iccprofilefilename/_index.md b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_iccprofilefilename/_index.md similarity index 69% rename from english/cpp/aspose.pdf.plugins/pdfaoptionsbase/set_iccprofilefilename/_index.md rename to english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_iccprofilefilename/_index.md index f59be358f4..3f17e399a1 100644 --- a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/set_iccprofilefilename/_index.md +++ b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_iccprofilefilename/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::PdfAOptionsBase::set_IccProfileFileName method +title: Aspose::Pdf::LowCode::PdfAOptionsBase::set_IccProfileFileName method linktitle: set_IccProfileFileName second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::PdfAOptionsBase::set_IccProfileFileName method. Sets the filename of the ICC (International Color Consortium) profile to be used for the PDF/A conversion in place of the default one in C++.' +description: 'Aspose::Pdf::LowCode::PdfAOptionsBase::set_IccProfileFileName method. Sets the filename of the ICC (International Color Consortium) profile to be used for the PDF/A conversion in place of the default one in C++.' type: docs weight: 2100 -url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/set_iccprofilefilename/ +url: /cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_iccprofilefilename/ --- ## PdfAOptionsBase::set_IccProfileFileName method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/set_iccprofilefilename/ Sets the filename of the ICC (International [Color](../../../aspose.pdf/color/) Consortium) profile to be used for the PDF/A conversion in place of the default one. ```cpp -void Aspose::Pdf::Plugins::PdfAOptionsBase::set_IccProfileFileName(System::String value) +void Aspose::Pdf::LowCode::PdfAOptionsBase::set_IccProfileFileName(System::String value) ``` ## Remarks @@ -24,5 +24,5 @@ The filename of the ICC profile. * Class [String](../../../system/string/) * Class [PdfAOptionsBase](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/set_islowmemorymode/_index.md b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_islowmemorymode/_index.md similarity index 64% rename from english/cpp/aspose.pdf.plugins/pdfaoptionsbase/set_islowmemorymode/_index.md rename to english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_islowmemorymode/_index.md index ce5ea865b4..c4d8d4817b 100644 --- a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/set_islowmemorymode/_index.md +++ b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_islowmemorymode/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::PdfAOptionsBase::set_IsLowMemoryMode method +title: Aspose::Pdf::LowCode::PdfAOptionsBase::set_IsLowMemoryMode method linktitle: set_IsLowMemoryMode second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::PdfAOptionsBase::set_IsLowMemoryMode method. Sets a value indicating whether the low memory mode is enabled during the PDF/A conversion process in C++.' +description: 'Aspose::Pdf::LowCode::PdfAOptionsBase::set_IsLowMemoryMode method. Sets a value indicating whether the low memory mode is enabled during the PDF/A conversion process in C++.' type: docs weight: 2200 -url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/set_islowmemorymode/ +url: /cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_islowmemorymode/ --- ## PdfAOptionsBase::set_IsLowMemoryMode method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/set_islowmemorymode/ Sets a value indicating whether the low memory mode is enabled during the PDF/A conversion process. ```cpp -void Aspose::Pdf::Plugins::PdfAOptionsBase::set_IsLowMemoryMode(bool value) +void Aspose::Pdf::LowCode::PdfAOptionsBase::set_IsLowMemoryMode(bool value) ``` ## Remarks @@ -27,5 +27,5 @@ if low memory mode is enabled; otherwise, **false** ## See Also * Class [PdfAOptionsBase](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/set_logoutputsource/_index.md b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_logoutputsource/_index.md similarity index 63% rename from english/cpp/aspose.pdf.plugins/pdfaoptionsbase/set_logoutputsource/_index.md rename to english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_logoutputsource/_index.md index e908418002..93c9557753 100644 --- a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/set_logoutputsource/_index.md +++ b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_logoutputsource/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::PdfAOptionsBase::set_LogOutputSource method +title: Aspose::Pdf::LowCode::PdfAOptionsBase::set_LogOutputSource method linktitle: set_LogOutputSource second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::PdfAOptionsBase::set_LogOutputSource method. Sets the data source for the log output in C++.' +description: 'Aspose::Pdf::LowCode::PdfAOptionsBase::set_LogOutputSource method. Sets the data source for the log output in C++.' type: docs weight: 2300 -url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/set_logoutputsource/ +url: /cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_logoutputsource/ --- ## PdfAOptionsBase::set_LogOutputSource method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/set_logoutputsource/ Sets the data source for the log output. ```cpp -void Aspose::Pdf::Plugins::PdfAOptionsBase::set_LogOutputSource(System::SharedPtr value) +void Aspose::Pdf::LowCode::PdfAOptionsBase::set_LogOutputSource(System::SharedPtr value) ``` ## Remarks @@ -25,5 +25,5 @@ The data source for the log output. * Typedef [SharedPtr](../../../system/sharedptr/) * Class [IDataSource](../../idatasource/) * Class [PdfAOptionsBase](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/set_optimizefilesize/_index.md b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_optimizefilesize/_index.md similarity index 70% rename from english/cpp/aspose.pdf.plugins/pdfaoptionsbase/set_optimizefilesize/_index.md rename to english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_optimizefilesize/_index.md index aa5004c5c9..0e8e26e48d 100644 --- a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/set_optimizefilesize/_index.md +++ b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_optimizefilesize/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::PdfAOptionsBase::set_OptimizeFileSize method +title: Aspose::Pdf::LowCode::PdfAOptionsBase::set_OptimizeFileSize method linktitle: set_OptimizeFileSize second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::PdfAOptionsBase::set_OptimizeFileSize method. Sets a value indicating whether to try to reduce the file size during the PDF/A conversion process in C++.' +description: 'Aspose::Pdf::LowCode::PdfAOptionsBase::set_OptimizeFileSize method. Sets a value indicating whether to try to reduce the file size during the PDF/A conversion process in C++.' type: docs weight: 2400 -url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/set_optimizefilesize/ +url: /cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_optimizefilesize/ --- ## PdfAOptionsBase::set_OptimizeFileSize method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/set_optimizefilesize/ Sets a value indicating whether to try to reduce the file size during the PDF/A conversion process. ```cpp -void Aspose::Pdf::Plugins::PdfAOptionsBase::set_OptimizeFileSize(bool value) +void Aspose::Pdf::LowCode::PdfAOptionsBase::set_OptimizeFileSize(bool value) ``` ## Remarks @@ -31,5 +31,5 @@ When set to **true** ## See Also * Class [PdfAOptionsBase](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/set_pdfaversion/_index.md b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_pdfaversion/_index.md similarity index 77% rename from english/cpp/aspose.pdf.plugins/pdfaoptionsbase/set_pdfaversion/_index.md rename to english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_pdfaversion/_index.md index eb22c0cf4a..211057d96f 100644 --- a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/set_pdfaversion/_index.md +++ b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_pdfaversion/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::PdfAOptionsBase::set_PdfAVersion method +title: Aspose::Pdf::LowCode::PdfAOptionsBase::set_PdfAVersion method linktitle: set_PdfAVersion second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::PdfAOptionsBase::set_PdfAVersion method. Sets the version of the PDF/A standard to be used for validation or conversion in C++.' +description: 'Aspose::Pdf::LowCode::PdfAOptionsBase::set_PdfAVersion method. Sets the version of the PDF/A standard to be used for validation or conversion in C++.' type: docs weight: 2500 -url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/set_pdfaversion/ +url: /cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_pdfaversion/ --- ## PdfAOptionsBase::set_PdfAVersion method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/set_pdfaversion/ Sets the version of the PDF/A standard to be used for validation or conversion. ```cpp -void Aspose::Pdf::Plugins::PdfAOptionsBase::set_PdfAVersion(PdfAStandardVersion value) +void Aspose::Pdf::LowCode::PdfAOptionsBase::set_PdfAVersion(PdfAStandardVersion value) ``` ## Remarks @@ -26,5 +26,5 @@ The PDF/A standard version is used to determine the compliance level for PDF/A v * Enum [PdfAStandardVersion](../../pdfastandardversion/) * Class [PdfAOptionsBase](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/set_puasymbolsprocessingstrategy/_index.md b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_puasymbolsprocessingstrategy/_index.md similarity index 78% rename from english/cpp/aspose.pdf.plugins/pdfaoptionsbase/set_puasymbolsprocessingstrategy/_index.md rename to english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_puasymbolsprocessingstrategy/_index.md index 75f49ca150..3122e2bd93 100644 --- a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/set_puasymbolsprocessingstrategy/_index.md +++ b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_puasymbolsprocessingstrategy/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::PdfAOptionsBase::set_PuaSymbolsProcessingStrategy method +title: Aspose::Pdf::LowCode::PdfAOptionsBase::set_PuaSymbolsProcessingStrategy method linktitle: set_PuaSymbolsProcessingStrategy second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::PdfAOptionsBase::set_PuaSymbolsProcessingStrategy method. Sets the strategy for processing Private Use Area (PUA) symbols in the PDF document in C++.' +description: 'Aspose::Pdf::LowCode::PdfAOptionsBase::set_PuaSymbolsProcessingStrategy method. Sets the strategy for processing Private Use Area (PUA) symbols in the PDF document in C++.' type: docs weight: 2600 -url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/set_puasymbolsprocessingstrategy/ +url: /cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_puasymbolsprocessingstrategy/ --- ## PdfAOptionsBase::set_PuaSymbolsProcessingStrategy method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/set_puasymbolsprocessingstrategy/ Sets the strategy for processing Private Use Area (PUA) symbols in the PDF document. ```cpp -void Aspose::Pdf::Plugins::PdfAOptionsBase::set_PuaSymbolsProcessingStrategy(PdfFormatConversionOptions::PuaProcessingStrategy value) +void Aspose::Pdf::LowCode::PdfAOptionsBase::set_PuaSymbolsProcessingStrategy(PdfFormatConversionOptions::PuaProcessingStrategy value) ``` ## Remarks @@ -24,5 +24,5 @@ The strategy for processing PUA symbols. The default is [PdfFormatConversionOpti * Enum [PuaProcessingStrategy](../../../aspose.pdf/pdfformatconversionoptions/puaprocessingstrategy/) * Class [PdfAOptionsBase](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/set_softmaskaction/_index.md b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_softmaskaction/_index.md similarity index 69% rename from english/cpp/aspose.pdf.plugins/pdfaoptionsbase/set_softmaskaction/_index.md rename to english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_softmaskaction/_index.md index dd360092db..a732055529 100644 --- a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/set_softmaskaction/_index.md +++ b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_softmaskaction/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::PdfAOptionsBase::set_SoftMaskAction method +title: Aspose::Pdf::LowCode::PdfAOptionsBase::set_SoftMaskAction method linktitle: set_SoftMaskAction second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::PdfAOptionsBase::set_SoftMaskAction method. Sets the action to be taken during the conversion of images with soft masks in C++.' +description: 'Aspose::Pdf::LowCode::PdfAOptionsBase::set_SoftMaskAction method. Sets the action to be taken during the conversion of images with soft masks in C++.' type: docs weight: 2700 -url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/set_softmaskaction/ +url: /cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_softmaskaction/ --- ## PdfAOptionsBase::set_SoftMaskAction method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/set_softmaskaction/ Sets the action to be taken during the conversion of images with soft masks. ```cpp -void Aspose::Pdf::Plugins::PdfAOptionsBase::set_SoftMaskAction(ConvertSoftMaskAction value) +void Aspose::Pdf::LowCode::PdfAOptionsBase::set_SoftMaskAction(ConvertSoftMaskAction value) ``` ## Remarks @@ -24,5 +24,5 @@ The action for converting images with soft masks. The value of this property is * Enum [ConvertSoftMaskAction](../../../aspose.pdf/convertsoftmaskaction/) * Class [PdfAOptionsBase](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/set_symbolicfontencodingstrategy/_index.md b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_symbolicfontencodingstrategy/_index.md similarity index 75% rename from english/cpp/aspose.pdf.plugins/pdfaoptionsbase/set_symbolicfontencodingstrategy/_index.md rename to english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_symbolicfontencodingstrategy/_index.md index 551eb628e4..55d51f3a89 100644 --- a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/set_symbolicfontencodingstrategy/_index.md +++ b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_symbolicfontencodingstrategy/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::PdfAOptionsBase::set_SymbolicFontEncodingStrategy method +title: Aspose::Pdf::LowCode::PdfAOptionsBase::set_SymbolicFontEncodingStrategy method linktitle: set_SymbolicFontEncodingStrategy second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::PdfAOptionsBase::set_SymbolicFontEncodingStrategy method. Sets the strategy for encoding symbolic fonts when converting to PDF/A format in C++.' +description: 'Aspose::Pdf::LowCode::PdfAOptionsBase::set_SymbolicFontEncodingStrategy method. Sets the strategy for encoding symbolic fonts when converting to PDF/A format in C++.' type: docs weight: 2800 -url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/set_symbolicfontencodingstrategy/ +url: /cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_symbolicfontencodingstrategy/ --- ## PdfAOptionsBase::set_SymbolicFontEncodingStrategy method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/set_symbolicfontencodingstrategy/ Sets the strategy for encoding symbolic fonts when converting to PDF/A format. ```cpp -void Aspose::Pdf::Plugins::PdfAOptionsBase::set_SymbolicFontEncodingStrategy(System::SharedPtr value) +void Aspose::Pdf::LowCode::PdfAOptionsBase::set_SymbolicFontEncodingStrategy(System::SharedPtr value) ``` ## Remarks @@ -27,5 +27,5 @@ This property allows you to control what CMap subtable would be copied into the * Typedef [SharedPtr](../../../system/sharedptr/) * Class [PdfASymbolicFontEncodingStrategy](../../../aspose.pdf/pdfasymbolicfontencodingstrategy/) * Class [PdfAOptionsBase](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/set_unicodeprocessingrules/_index.md b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_unicodeprocessingrules/_index.md similarity index 74% rename from english/cpp/aspose.pdf.plugins/pdfaoptionsbase/set_unicodeprocessingrules/_index.md rename to english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_unicodeprocessingrules/_index.md index bc01bffb11..fb6ed16d38 100644 --- a/english/cpp/aspose.pdf.plugins/pdfaoptionsbase/set_unicodeprocessingrules/_index.md +++ b/english/cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_unicodeprocessingrules/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::PdfAOptionsBase::set_UnicodeProcessingRules method +title: Aspose::Pdf::LowCode::PdfAOptionsBase::set_UnicodeProcessingRules method linktitle: set_UnicodeProcessingRules second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::PdfAOptionsBase::set_UnicodeProcessingRules method. Sets the rules for processing ToUnicode CMap tables and not linked to Unicode symbols during the PDF/A conversion process in C++.' +description: 'Aspose::Pdf::LowCode::PdfAOptionsBase::set_UnicodeProcessingRules method. Sets the rules for processing ToUnicode CMap tables and not linked to Unicode symbols during the PDF/A conversion process in C++.' type: docs weight: 2900 -url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/set_unicodeprocessingrules/ +url: /cpp/aspose.pdf.lowcode/pdfaoptionsbase/set_unicodeprocessingrules/ --- ## PdfAOptionsBase::set_UnicodeProcessingRules method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/pdfaoptionsbase/set_unicodeprocessingrules/ Sets the rules for processing ToUnicode CMap tables and not linked to Unicode symbols during the PDF/A conversion process. ```cpp -void Aspose::Pdf::Plugins::PdfAOptionsBase::set_UnicodeProcessingRules(System::SharedPtr value) +void Aspose::Pdf::LowCode::PdfAOptionsBase::set_UnicodeProcessingRules(System::SharedPtr value) ``` ## Remarks @@ -25,5 +25,5 @@ An instance of [ToUnicodeProcessingRules](../../../aspose.pdf/tounicodeprocessin * Typedef [SharedPtr](../../../system/sharedptr/) * Class [ToUnicodeProcessingRules](../../../aspose.pdf/tounicodeprocessingrules/) * Class [PdfAOptionsBase](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/pdfastandardversion/_index.md b/english/cpp/aspose.pdf.lowcode/pdfastandardversion/_index.md similarity index 82% rename from english/cpp/aspose.pdf.plugins/pdfastandardversion/_index.md rename to english/cpp/aspose.pdf.lowcode/pdfastandardversion/_index.md index 779173bbf2..36138ff0ca 100644 --- a/english/cpp/aspose.pdf.plugins/pdfastandardversion/_index.md +++ b/english/cpp/aspose.pdf.lowcode/pdfastandardversion/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::PdfAStandardVersion enum +title: Aspose::Pdf::LowCode::PdfAStandardVersion enum linktitle: PdfAStandardVersion second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::PdfAStandardVersion enum. Specifies the PDF/A standard version for a PDF document in C++.' +description: 'Aspose::Pdf::LowCode::PdfAStandardVersion enum. Specifies the PDF/A standard version for a PDF document in C++.' type: docs weight: 9500 -url: /cpp/aspose.pdf.plugins/pdfastandardversion/ +url: /cpp/aspose.pdf.lowcode/pdfastandardversion/ --- ## PdfAStandardVersion enum @@ -35,5 +35,5 @@ enum class PdfAStandardVersion ## See Also -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/pdfavalidateoptions/_index.md b/english/cpp/aspose.pdf.lowcode/pdfavalidateoptions/_index.md similarity index 62% rename from english/cpp/aspose.pdf.plugins/pdfavalidateoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/pdfavalidateoptions/_index.md index 4760cd7c0b..596f51b07b 100644 --- a/english/cpp/aspose.pdf.plugins/pdfavalidateoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/pdfavalidateoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::PdfAValidateOptions class +title: Aspose::Pdf::LowCode::PdfAValidateOptions class linktitle: PdfAValidateOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::PdfAValidateOptions class. Represents options for validating PDF/A compliance of PDF documents with the PdfAConverter plugin in C++.' +description: 'Aspose::Pdf::LowCode::PdfAValidateOptions class. Represents options for validating PDF/A compliance of PDF documents with the PdfAConverter plugin in C++.' type: docs weight: 5600 -url: /cpp/aspose.pdf.plugins/pdfavalidateoptions/ +url: /cpp/aspose.pdf.lowcode/pdfavalidateoptions/ --- ## PdfAValidateOptions class @@ -13,11 +13,11 @@ url: /cpp/aspose.pdf.plugins/pdfavalidateoptions/ Represents options for validating PDF/A compliance of PDF documents with the [PdfAConverter](../pdfaconverter/) plugin. ```cpp -class PdfAValidateOptions : public Aspose::Pdf::Plugins::PdfAOptionsBase +class PdfAValidateOptions : public Aspose::Pdf::LowCode::PdfAOptionsBase ``` ## See Also * Class [PdfAOptionsBase](../pdfaoptionsbase/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/pdfavalidationresult/_index.md b/english/cpp/aspose.pdf.lowcode/pdfavalidationresult/_index.md similarity index 64% rename from english/cpp/aspose.pdf.plugins/pdfavalidationresult/_index.md rename to english/cpp/aspose.pdf.lowcode/pdfavalidationresult/_index.md index 876c553870..e2416c7c0c 100644 --- a/english/cpp/aspose.pdf.plugins/pdfavalidationresult/_index.md +++ b/english/cpp/aspose.pdf.lowcode/pdfavalidationresult/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::PdfAValidationResult class +title: Aspose::Pdf::LowCode::PdfAValidationResult class linktitle: PdfAValidationResult second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::PdfAValidationResult class. Represents the result of a PDF/A validation process in C++.' +description: 'Aspose::Pdf::LowCode::PdfAValidationResult class. Represents the result of a PDF/A validation process in C++.' type: docs weight: 5700 -url: /cpp/aspose.pdf.plugins/pdfavalidationresult/ +url: /cpp/aspose.pdf.lowcode/pdfavalidationresult/ --- ## PdfAValidationResult class @@ -19,5 +19,5 @@ class PdfAValidationResult : public System::Object ## See Also * Class [Object](../../system/object/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/pdfconverteroptions/_index.md b/english/cpp/aspose.pdf.lowcode/pdfconverteroptions/_index.md similarity index 72% rename from english/cpp/aspose.pdf.plugins/pdfconverteroptions/_index.md rename to english/cpp/aspose.pdf.lowcode/pdfconverteroptions/_index.md index 9cc81324c8..f92d58679f 100644 --- a/english/cpp/aspose.pdf.plugins/pdfconverteroptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/pdfconverteroptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::PdfConverterOptions class +title: Aspose::Pdf::LowCode::PdfConverterOptions class linktitle: PdfConverterOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::PdfConverterOptions class. Represents options for Pdf converter plugins in C++.' +description: 'Aspose::Pdf::LowCode::PdfConverterOptions class. Represents options for Pdf converter plugins in C++.' type: docs weight: 5800 -url: /cpp/aspose.pdf.plugins/pdfconverteroptions/ +url: /cpp/aspose.pdf.lowcode/pdfconverteroptions/ --- ## PdfConverterOptions class @@ -13,9 +13,9 @@ url: /cpp/aspose.pdf.plugins/pdfconverteroptions/ Represents options for [Pdf](../../aspose.pdf/) converter plugins. ```cpp -class PdfConverterOptions : public Aspose::Pdf::Plugins::IPluginOptions, - public Aspose::Pdf::Plugins::IDataContainer, - public Aspose::Pdf::Plugins::ISaveInstruction +class PdfConverterOptions : public Aspose::Pdf::LowCode::IPluginOptions, + public Aspose::Pdf::LowCode::IDataContainer, + public Aspose::Pdf::LowCode::ISaveInstruction ``` ## Methods @@ -32,5 +32,5 @@ class PdfConverterOptions : public Aspose::Pdf::Plugins::IPluginOptions, * Class [IPluginOptions](../ipluginoptions/) * Class [IDataContainer](../idatacontainer/) * Class [ISaveInstruction](../isaveinstruction/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/pdfconverteroptions/addinput/_index.md b/english/cpp/aspose.pdf.lowcode/pdfconverteroptions/addinput/_index.md similarity index 67% rename from english/cpp/aspose.pdf.plugins/pdfconverteroptions/addinput/_index.md rename to english/cpp/aspose.pdf.lowcode/pdfconverteroptions/addinput/_index.md index 4666be6d47..6ffa450634 100644 --- a/english/cpp/aspose.pdf.plugins/pdfconverteroptions/addinput/_index.md +++ b/english/cpp/aspose.pdf.lowcode/pdfconverteroptions/addinput/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::PdfConverterOptions::AddInput method +title: Aspose::Pdf::LowCode::PdfConverterOptions::AddInput method linktitle: AddInput second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::PdfConverterOptions::AddInput method. Adds new data source to the PdfConverter plugin data collection in C++.' +description: 'Aspose::Pdf::LowCode::PdfConverterOptions::AddInput method. Adds new data source to the PdfConverter plugin data collection in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/pdfconverteroptions/addinput/ +url: /cpp/aspose.pdf.lowcode/pdfconverteroptions/addinput/ --- ## PdfConverterOptions::AddInput method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/pdfconverteroptions/addinput/ Adds new data source to the PdfConverter plugin data collection. ```cpp -void Aspose::Pdf::Plugins::PdfConverterOptions::AddInput(System::SharedPtr dataSource) override +void Aspose::Pdf::LowCode::PdfConverterOptions::AddInput(System::SharedPtr dataSource) override ``` @@ -26,5 +26,5 @@ void Aspose::Pdf::Plugins::PdfConverterOptions::AddInput(System::SharedPtr saveDataSource) override +void Aspose::Pdf::LowCode::PdfConverterOptions::AddOutput(System::SharedPtr saveDataSource) override ``` @@ -26,5 +26,5 @@ void Aspose::Pdf::Plugins::PdfConverterOptions::AddOutput(System::SharedPtr>> Aspose::Pdf::Plugins::PdfConverterOptions::get_Inputs() override +System::SharedPtr>> Aspose::Pdf::LowCode::PdfConverterOptions::get_Inputs() override ``` ## See Also @@ -22,5 +22,5 @@ System::SharedPtr>> Aspose::Pdf::Plugins::PdfConverterOptions::get_Outputs() override +System::SharedPtr>> Aspose::Pdf::LowCode::PdfConverterOptions::get_Outputs() override ``` ## See Also @@ -22,5 +22,5 @@ System::SharedPtr Aspose::Pdf::Plugins::PdfExtractor::Process(System::SharedPtr pdfExtractorOptions) override +System::SharedPtr Aspose::Pdf::LowCode::PdfExtractor::Process(System::SharedPtr pdfExtractorOptions) override ``` @@ -31,5 +31,5 @@ A [ResultContainer](../../resultcontainer/) object containing the result of the * Class [ResultContainer](../../resultcontainer/) * Class [IPluginOptions](../../ipluginoptions/) * Class [PdfExtractor](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/pdfextractoroptions/_index.md b/english/cpp/aspose.pdf.lowcode/pdfextractoroptions/_index.md similarity index 76% rename from english/cpp/aspose.pdf.plugins/pdfextractoroptions/_index.md rename to english/cpp/aspose.pdf.lowcode/pdfextractoroptions/_index.md index 7ba281ccaa..b17a80446d 100644 --- a/english/cpp/aspose.pdf.plugins/pdfextractoroptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/pdfextractoroptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::PdfExtractorOptions class +title: Aspose::Pdf::LowCode::PdfExtractorOptions class linktitle: PdfExtractorOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::PdfExtractorOptions class. Represents options for the TextExtractor and ImageExtractor plugins in C++.' +description: 'Aspose::Pdf::LowCode::PdfExtractorOptions class. Represents options for the TextExtractor and ImageExtractor plugins in C++.' type: docs weight: 6000 -url: /cpp/aspose.pdf.plugins/pdfextractoroptions/ +url: /cpp/aspose.pdf.lowcode/pdfextractoroptions/ --- ## PdfExtractorOptions class @@ -13,8 +13,8 @@ url: /cpp/aspose.pdf.plugins/pdfextractoroptions/ Represents options for the [TextExtractor](../textextractor/) and [ImageExtractor](../imageextractor/) plugins. ```cpp -class PdfExtractorOptions : public Aspose::Pdf::Plugins::IPluginOptions, - public Aspose::Pdf::Plugins::IDataContainer +class PdfExtractorOptions : public Aspose::Pdf::LowCode::IPluginOptions, + public Aspose::Pdf::LowCode::IDataContainer ``` ## Methods @@ -32,5 +32,5 @@ The [PdfExtractorOptions](./) contains base functions to add data (files, stream * Class [IPluginOptions](../ipluginoptions/) * Class [IDataContainer](../idatacontainer/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/pdfextractoroptions/addinput/_index.md b/english/cpp/aspose.pdf.lowcode/pdfextractoroptions/addinput/_index.md similarity index 68% rename from english/cpp/aspose.pdf.plugins/pdfextractoroptions/addinput/_index.md rename to english/cpp/aspose.pdf.lowcode/pdfextractoroptions/addinput/_index.md index c148eef85f..7306affdf8 100644 --- a/english/cpp/aspose.pdf.plugins/pdfextractoroptions/addinput/_index.md +++ b/english/cpp/aspose.pdf.lowcode/pdfextractoroptions/addinput/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::PdfExtractorOptions::AddInput method +title: Aspose::Pdf::LowCode::PdfExtractorOptions::AddInput method linktitle: AddInput second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::PdfExtractorOptions::AddInput method. Adds new data source to the PdfExtractor plugin data collection in C++.' +description: 'Aspose::Pdf::LowCode::PdfExtractorOptions::AddInput method. Adds new data source to the PdfExtractor plugin data collection in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/pdfextractoroptions/addinput/ +url: /cpp/aspose.pdf.lowcode/pdfextractoroptions/addinput/ --- ## PdfExtractorOptions::AddInput method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/pdfextractoroptions/addinput/ Adds new data source to the [PdfExtractor](../../pdfextractor/) plugin data collection. ```cpp -void Aspose::Pdf::Plugins::PdfExtractorOptions::AddInput(System::SharedPtr dataSource) override +void Aspose::Pdf::LowCode::PdfExtractorOptions::AddInput(System::SharedPtr dataSource) override ``` @@ -26,5 +26,5 @@ void Aspose::Pdf::Plugins::PdfExtractorOptions::AddInput(System::SharedPtr>> Aspose::Pdf::Plugins::PdfExtractorOptions::get_Inputs() override +System::SharedPtr>> Aspose::Pdf::LowCode::PdfExtractorOptions::get_Inputs() override ``` ## See Also @@ -22,5 +22,5 @@ System::SharedPtr dataSource) override +void Aspose::Pdf::LowCode::PdfGeneratorOptions::AddInput(System::SharedPtr dataSource) override ``` @@ -26,5 +26,5 @@ void Aspose::Pdf::Plugins::PdfGeneratorOptions::AddInput(System::SharedPtr saveDataSource) override +void Aspose::Pdf::LowCode::PdfGeneratorOptions::AddOutput(System::SharedPtr saveDataSource) override ``` @@ -26,5 +26,5 @@ void Aspose::Pdf::Plugins::PdfGeneratorOptions::AddOutput(System::SharedPtr>> Aspose::Pdf::Plugins::PdfGeneratorOptions::get_Inputs() override +System::SharedPtr>> Aspose::Pdf::LowCode::PdfGeneratorOptions::get_Inputs() override ``` ## See Also @@ -22,5 +22,5 @@ System::SharedPtr>> Aspose::Pdf::Plugins::PdfGeneratorOptions::get_Outputs() override +System::SharedPtr>> Aspose::Pdf::LowCode::PdfGeneratorOptions::get_Outputs() override ``` ## See Also @@ -22,5 +22,5 @@ System::SharedPtr Aspose::Pdf::Plugins::PdfToImage::Process(System::SharedPtr pdfImageOptions) override +System::SharedPtr Aspose::Pdf::LowCode::PdfToImage::Process(System::SharedPtr pdfImageOptions) override ``` @@ -35,5 +35,5 @@ A [ResultContainer](../../resultcontainer/) object containing the result of the * Class [ResultContainer](../../resultcontainer/) * Class [IPluginOptions](../../ipluginoptions/) * Class [PdfToImage](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/pdftoimageoptions/_index.md b/english/cpp/aspose.pdf.lowcode/pdftoimageoptions/_index.md similarity index 82% rename from english/cpp/aspose.pdf.plugins/pdftoimageoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/pdftoimageoptions/_index.md index f54e86f856..be958aa478 100644 --- a/english/cpp/aspose.pdf.plugins/pdftoimageoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/pdftoimageoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::PdfToImageOptions class +title: Aspose::Pdf::LowCode::PdfToImageOptions class linktitle: PdfToImageOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::PdfToImageOptions class. Represents options for the PdfToImage plugin in C++.' +description: 'Aspose::Pdf::LowCode::PdfToImageOptions class. Represents options for the PdfToImage plugin in C++.' type: docs weight: 6500 -url: /cpp/aspose.pdf.plugins/pdftoimageoptions/ +url: /cpp/aspose.pdf.lowcode/pdftoimageoptions/ --- ## PdfToImageOptions class @@ -13,9 +13,9 @@ url: /cpp/aspose.pdf.plugins/pdftoimageoptions/ Represents options for the [PdfToImage](../pdftoimage/) plugin. ```cpp -class PdfToImageOptions : public Aspose::Pdf::Plugins::IPluginOptions, - public Aspose::Pdf::Plugins::IDataContainer, - public Aspose::Pdf::Plugins::ISaveInstruction +class PdfToImageOptions : public Aspose::Pdf::LowCode::IPluginOptions, + public Aspose::Pdf::LowCode::IDataContainer, + public Aspose::Pdf::LowCode::ISaveInstruction ``` ## Enums @@ -50,5 +50,5 @@ The PdfImageOptions class contains base functions to add data (files, streams) r * Class [IPluginOptions](../ipluginoptions/) * Class [IDataContainer](../idatacontainer/) * Class [ISaveInstruction](../isaveinstruction/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/pdftoimageoptions/addinput/_index.md b/english/cpp/aspose.pdf.lowcode/pdftoimageoptions/addinput/_index.md similarity index 67% rename from english/cpp/aspose.pdf.plugins/pdftoimageoptions/addinput/_index.md rename to english/cpp/aspose.pdf.lowcode/pdftoimageoptions/addinput/_index.md index 248bca7258..08582ed584 100644 --- a/english/cpp/aspose.pdf.plugins/pdftoimageoptions/addinput/_index.md +++ b/english/cpp/aspose.pdf.lowcode/pdftoimageoptions/addinput/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::PdfToImageOptions::AddInput method +title: Aspose::Pdf::LowCode::PdfToImageOptions::AddInput method linktitle: AddInput second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::PdfToImageOptions::AddInput method. Adds new data source to the PdfToImage plugin data collection in C++.' +description: 'Aspose::Pdf::LowCode::PdfToImageOptions::AddInput method. Adds new data source to the PdfToImage plugin data collection in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/pdftoimageoptions/addinput/ +url: /cpp/aspose.pdf.lowcode/pdftoimageoptions/addinput/ --- ## PdfToImageOptions::AddInput method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/pdftoimageoptions/addinput/ Adds new data source to the [PdfToImage](../../pdftoimage/) plugin data collection. ```cpp -void Aspose::Pdf::Plugins::PdfToImageOptions::AddInput(System::SharedPtr dataSource) override +void Aspose::Pdf::LowCode::PdfToImageOptions::AddInput(System::SharedPtr dataSource) override ``` @@ -26,5 +26,5 @@ void Aspose::Pdf::Plugins::PdfToImageOptions::AddInput(System::SharedPtr saveDataSource) override +void Aspose::Pdf::LowCode::PdfToImageOptions::AddOutput(System::SharedPtr saveDataSource) override ``` @@ -30,5 +30,5 @@ void Aspose::Pdf::Plugins::PdfToImageOptions::AddOutput(System::SharedPtr>> Aspose::Pdf::Plugins::PdfToImageOptions::get_Inputs() override +System::SharedPtr>> Aspose::Pdf::LowCode::PdfToImageOptions::get_Inputs() override ``` ## See Also @@ -22,5 +22,5 @@ System::SharedPtr>> Aspose::Pdf::Plugins::PdfToImageOptions::get_Outputs() override +System::SharedPtr>> Aspose::Pdf::LowCode::PdfToImageOptions::get_Outputs() override ``` ## See Also @@ -22,5 +22,5 @@ System::SharedPtr> & Aspose::Pdf::Plugins::PdfToImageOptions::get_PageList() const +const System::SharedPtr> & Aspose::Pdf::LowCode::PdfToImageOptions::get_PageList() const ``` ## See Also @@ -21,5 +21,5 @@ const System::SharedPtr> & Aspose::P * Typedef [SharedPtr](../../../system/sharedptr/) * Class [List](../../../system.collections.generic/list/) * Class [PdfToImageOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/pdftoimageoptions/imageconversionmode/_index.md b/english/cpp/aspose.pdf.lowcode/pdftoimageoptions/imageconversionmode/_index.md similarity index 72% rename from english/cpp/aspose.pdf.plugins/pdftoimageoptions/imageconversionmode/_index.md rename to english/cpp/aspose.pdf.lowcode/pdftoimageoptions/imageconversionmode/_index.md index 8b84e9c405..3a636e3a6e 100644 --- a/english/cpp/aspose.pdf.plugins/pdftoimageoptions/imageconversionmode/_index.md +++ b/english/cpp/aspose.pdf.lowcode/pdftoimageoptions/imageconversionmode/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::PdfToImageOptions::ImageConversionMode enum +title: Aspose::Pdf::LowCode::PdfToImageOptions::ImageConversionMode enum linktitle: ImageConversionMode second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::PdfToImageOptions::ImageConversionMode enum. Defines different modes which can be used while converting from PDF document to Jpeg image. See JpegOptions class in C++.' +description: 'Aspose::Pdf::LowCode::PdfToImageOptions::ImageConversionMode enum. Defines different modes which can be used while converting from PDF document to Jpeg image. See JpegOptions class in C++.' type: docs weight: 1100 -url: /cpp/aspose.pdf.plugins/pdftoimageoptions/imageconversionmode/ +url: /cpp/aspose.pdf.lowcode/pdftoimageoptions/imageconversionmode/ --- ## ImageConversionMode enum @@ -25,5 +25,5 @@ enum class ImageConversionMode ## See Also * Class [PdfToImageOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/pdftoimageoptions/set_outputresolution/_index.md b/english/cpp/aspose.pdf.lowcode/pdftoimageoptions/set_outputresolution/_index.md similarity index 57% rename from english/cpp/aspose.pdf.plugins/pdftoimageoptions/set_outputresolution/_index.md rename to english/cpp/aspose.pdf.lowcode/pdftoimageoptions/set_outputresolution/_index.md index c29a9d2654..7ae2ad2984 100644 --- a/english/cpp/aspose.pdf.plugins/pdftoimageoptions/set_outputresolution/_index.md +++ b/english/cpp/aspose.pdf.lowcode/pdftoimageoptions/set_outputresolution/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::PdfToImageOptions::set_OutputResolution method +title: Aspose::Pdf::LowCode::PdfToImageOptions::set_OutputResolution method linktitle: set_OutputResolution second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::PdfToImageOptions::set_OutputResolution method. Sets the resolution value of the resulting images in C++.' +description: 'Aspose::Pdf::LowCode::PdfToImageOptions::set_OutputResolution method. Sets the resolution value of the resulting images in C++.' type: docs weight: 900 -url: /cpp/aspose.pdf.plugins/pdftoimageoptions/set_outputresolution/ +url: /cpp/aspose.pdf.lowcode/pdftoimageoptions/set_outputresolution/ --- ## PdfToImageOptions::set_OutputResolution method @@ -13,11 +13,11 @@ url: /cpp/aspose.pdf.plugins/pdftoimageoptions/set_outputresolution/ Sets the resolution value of the resulting images. ```cpp -void Aspose::Pdf::Plugins::PdfToImageOptions::set_OutputResolution(int32_t value) +void Aspose::Pdf::LowCode::PdfToImageOptions::set_OutputResolution(int32_t value) ``` ## See Also * Class [PdfToImageOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/pdftoimageoptions/set_pagelist/_index.md b/english/cpp/aspose.pdf.lowcode/pdftoimageoptions/set_pagelist/_index.md similarity index 62% rename from english/cpp/aspose.pdf.plugins/pdftoimageoptions/set_pagelist/_index.md rename to english/cpp/aspose.pdf.lowcode/pdftoimageoptions/set_pagelist/_index.md index 6fd9729cc9..91956fba3f 100644 --- a/english/cpp/aspose.pdf.plugins/pdftoimageoptions/set_pagelist/_index.md +++ b/english/cpp/aspose.pdf.lowcode/pdftoimageoptions/set_pagelist/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::PdfToImageOptions::set_PageList method +title: Aspose::Pdf::LowCode::PdfToImageOptions::set_PageList method linktitle: set_PageList second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::PdfToImageOptions::set_PageList method. Sets a list of pages for the process in C++.' +description: 'Aspose::Pdf::LowCode::PdfToImageOptions::set_PageList method. Sets a list of pages for the process in C++.' type: docs weight: 1000 -url: /cpp/aspose.pdf.plugins/pdftoimageoptions/set_pagelist/ +url: /cpp/aspose.pdf.lowcode/pdftoimageoptions/set_pagelist/ --- ## PdfToImageOptions::set_PageList method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/pdftoimageoptions/set_pagelist/ Sets a list of pages for the process. ```cpp -void Aspose::Pdf::Plugins::PdfToImageOptions::set_PageList(System::SharedPtr> value) +void Aspose::Pdf::LowCode::PdfToImageOptions::set_PageList(System::SharedPtr> value) ``` ## See Also @@ -21,5 +21,5 @@ void Aspose::Pdf::Plugins::PdfToImageOptions::set_PageList(System::SharedPtr & Aspose::Pdf::Plugins::ResizeOptions::get_PageSize() const +const System::SharedPtr & Aspose::Pdf::LowCode::ResizeOptions::get_PageSize() const ``` ## See Also @@ -21,5 +21,5 @@ const System::SharedPtr & Aspose::Pdf::Plugins::ResizeOpt * Typedef [SharedPtr](../../../system/sharedptr/) * Class [PageSize](../../../aspose.pdf/pagesize/) * Class [ResizeOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/resizeoptions/resizeoptions/_index.md b/english/cpp/aspose.pdf.lowcode/resizeoptions/resizeoptions/_index.md similarity index 59% rename from english/cpp/aspose.pdf.plugins/resizeoptions/resizeoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/resizeoptions/resizeoptions/_index.md index aad2f99d72..955c0d6ebe 100644 --- a/english/cpp/aspose.pdf.plugins/resizeoptions/resizeoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/resizeoptions/resizeoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::ResizeOptions::ResizeOptions constructor +title: Aspose::Pdf::LowCode::ResizeOptions::ResizeOptions constructor linktitle: ResizeOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::ResizeOptions::ResizeOptions constructor. Initializes new instance of the ResizeOptions object with default options in C++.' +description: 'Aspose::Pdf::LowCode::ResizeOptions::ResizeOptions constructor. Initializes new instance of the ResizeOptions object with default options in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/resizeoptions/resizeoptions/ +url: /cpp/aspose.pdf.lowcode/resizeoptions/resizeoptions/ --- ## ResizeOptions::ResizeOptions constructor @@ -13,11 +13,11 @@ url: /cpp/aspose.pdf.plugins/resizeoptions/resizeoptions/ Initializes new instance of the [ResizeOptions](../) object with default options. ```cpp -Aspose::Pdf::Plugins::ResizeOptions::ResizeOptions() +Aspose::Pdf::LowCode::ResizeOptions::ResizeOptions() ``` ## See Also * Class [ResizeOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/resizeoptions/set_pagesize/_index.md b/english/cpp/aspose.pdf.lowcode/resizeoptions/set_pagesize/_index.md similarity index 58% rename from english/cpp/aspose.pdf.plugins/resizeoptions/set_pagesize/_index.md rename to english/cpp/aspose.pdf.lowcode/resizeoptions/set_pagesize/_index.md index c5e838aa9f..7999b145be 100644 --- a/english/cpp/aspose.pdf.plugins/resizeoptions/set_pagesize/_index.md +++ b/english/cpp/aspose.pdf.lowcode/resizeoptions/set_pagesize/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::ResizeOptions::set_PageSize method +title: Aspose::Pdf::LowCode::ResizeOptions::set_PageSize method linktitle: set_PageSize second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::ResizeOptions::set_PageSize method. Sets new page size in C++.' +description: 'Aspose::Pdf::LowCode::ResizeOptions::set_PageSize method. Sets new page size in C++.' type: docs weight: 300 -url: /cpp/aspose.pdf.plugins/resizeoptions/set_pagesize/ +url: /cpp/aspose.pdf.lowcode/resizeoptions/set_pagesize/ --- ## ResizeOptions::set_PageSize method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/resizeoptions/set_pagesize/ Sets new page size. ```cpp -void Aspose::Pdf::Plugins::ResizeOptions::set_PageSize(System::SharedPtr value) +void Aspose::Pdf::LowCode::ResizeOptions::set_PageSize(System::SharedPtr value) ``` ## See Also @@ -21,5 +21,5 @@ void Aspose::Pdf::Plugins::ResizeOptions::set_PageSize(System::SharedPtr>> Aspose::Pdf::Plugins::ResultContainer::get_ResultCollection() const +System::SharedPtr>> Aspose::Pdf::LowCode::ResultContainer::get_ResultCollection() const ``` ## See Also @@ -22,5 +22,5 @@ System::SharedPtr Aspose::Pdf::Plugins::Security::Process(System::SharedPtr options) override +System::SharedPtr Aspose::Pdf::LowCode::Security::Process(System::SharedPtr options) override ``` @@ -31,5 +31,5 @@ A [ResultContainer](../../resultcontainer/) object containg the result of the op * Class [ResultContainer](../../resultcontainer/) * Class [IPluginOptions](../../ipluginoptions/) * Class [Security](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.lowcode/selectfield/_index.md b/english/cpp/aspose.pdf.lowcode/selectfield/_index.md new file mode 100644 index 0000000000..5c55cb8b38 --- /dev/null +++ b/english/cpp/aspose.pdf.lowcode/selectfield/_index.md @@ -0,0 +1,22 @@ +--- +title: Aspose::Pdf::LowCode::SelectField typedef +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 +url: /cpp/aspose.pdf.lowcode/selectfield/ +--- +## SelectField typedef + + + + +```cpp +using Aspose::Pdf::LowCode::SelectField = System::MulticastDelegate)> +``` + +## See Also + +* Namespace [Aspose::Pdf::LowCode](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/signature/_index.md b/english/cpp/aspose.pdf.lowcode/signature/_index.md similarity index 64% rename from english/cpp/aspose.pdf.plugins/signature/_index.md rename to english/cpp/aspose.pdf.lowcode/signature/_index.md index 51d4c776cf..1874074758 100644 --- a/english/cpp/aspose.pdf.plugins/signature/_index.md +++ b/english/cpp/aspose.pdf.lowcode/signature/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::Signature class +title: Aspose::Pdf::LowCode::Signature class linktitle: Signature second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::Signature class. Represents Signature plugin in C++.' +description: 'Aspose::Pdf::LowCode::Signature class. Represents Signature plugin in C++.' type: docs weight: 7300 -url: /cpp/aspose.pdf.plugins/signature/ +url: /cpp/aspose.pdf.lowcode/signature/ --- ## Signature class @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/signature/ Represents [Signature](./) plugin. ```cpp -class Signature : public Aspose::Pdf::Plugins::IPlugin +class Signature : public Aspose::Pdf::LowCode::IPlugin ``` ## Methods @@ -24,5 +24,5 @@ class Signature : public Aspose::Pdf::Plugins::IPlugin ## See Also * Class [IPlugin](../iplugin/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/signature/process/_index.md b/english/cpp/aspose.pdf.lowcode/signature/process/_index.md similarity index 73% rename from english/cpp/aspose.pdf.plugins/signature/process/_index.md rename to english/cpp/aspose.pdf.lowcode/signature/process/_index.md index 842911d176..068131f245 100644 --- a/english/cpp/aspose.pdf.plugins/signature/process/_index.md +++ b/english/cpp/aspose.pdf.lowcode/signature/process/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::Signature::Process method +title: Aspose::Pdf::LowCode::Signature::Process method linktitle: Process second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::Signature::Process method. Starts the Signature processing with the specified parameters in C++.' +description: 'Aspose::Pdf::LowCode::Signature::Process method. Starts the Signature processing with the specified parameters in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/signature/process/ +url: /cpp/aspose.pdf.lowcode/signature/process/ --- ## Signature::Process method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/signature/process/ Starts the [Signature](../) processing with the specified parameters. ```cpp -System::SharedPtr Aspose::Pdf::Plugins::Signature::Process(System::SharedPtr options) override +System::SharedPtr Aspose::Pdf::LowCode::Signature::Process(System::SharedPtr options) override ``` @@ -31,5 +31,5 @@ An [ResultContainer](../../resultcontainer/) object containg the result of the o * Class [ResultContainer](../../resultcontainer/) * Class [IPluginOptions](../../ipluginoptions/) * Class [Signature](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/signoptions/_index.md b/english/cpp/aspose.pdf.lowcode/signoptions/_index.md similarity index 86% rename from english/cpp/aspose.pdf.plugins/signoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/signoptions/_index.md index afade6f188..9b01b7a79f 100644 --- a/english/cpp/aspose.pdf.plugins/signoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/signoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::SignOptions class +title: Aspose::Pdf::LowCode::SignOptions class linktitle: SignOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::SignOptions class. Represents Sign Options for Signature plugin in C++.' +description: 'Aspose::Pdf::LowCode::SignOptions class. Represents Sign Options for Signature plugin in C++.' type: docs weight: 7400 -url: /cpp/aspose.pdf.plugins/signoptions/ +url: /cpp/aspose.pdf.lowcode/signoptions/ --- ## SignOptions class @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/signoptions/ Represents Sign Options for [Signature](../signature/) plugin. ```cpp -class SignOptions : public Aspose::Pdf::Plugins::OrganizerBaseOptions +class SignOptions : public Aspose::Pdf::LowCode::OrganizerBaseOptions ``` ## Methods @@ -39,5 +39,5 @@ class SignOptions : public Aspose::Pdf::Plugins::OrganizerBaseOptions ## See Also * Class [OrganizerBaseOptions](../organizerbaseoptions/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/signoptions/get_contact/_index.md b/english/cpp/aspose.pdf.lowcode/signoptions/get_contact/_index.md similarity index 53% rename from english/cpp/aspose.pdf.plugins/signoptions/get_contact/_index.md rename to english/cpp/aspose.pdf.lowcode/signoptions/get_contact/_index.md index 58ee699c50..3c0acfc349 100644 --- a/english/cpp/aspose.pdf.plugins/signoptions/get_contact/_index.md +++ b/english/cpp/aspose.pdf.lowcode/signoptions/get_contact/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::SignOptions::get_Contact method +title: Aspose::Pdf::LowCode::SignOptions::get_Contact method linktitle: get_Contact second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::SignOptions::get_Contact method. The contact of signature in C++.' +description: 'Aspose::Pdf::LowCode::SignOptions::get_Contact method. The contact of signature in C++.' type: docs weight: 200 -url: /cpp/aspose.pdf.plugins/signoptions/get_contact/ +url: /cpp/aspose.pdf.lowcode/signoptions/get_contact/ --- ## SignOptions::get_Contact method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/signoptions/get_contact/ The contact of signature. ```cpp -System::String Aspose::Pdf::Plugins::SignOptions::get_Contact() const +System::String Aspose::Pdf::LowCode::SignOptions::get_Contact() const ``` ## See Also * Class [String](../../../system/string/) * Class [SignOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/signoptions/get_location/_index.md b/english/cpp/aspose.pdf.lowcode/signoptions/get_location/_index.md similarity index 53% rename from english/cpp/aspose.pdf.plugins/signoptions/get_location/_index.md rename to english/cpp/aspose.pdf.lowcode/signoptions/get_location/_index.md index 691f56dc98..81dfa8caab 100644 --- a/english/cpp/aspose.pdf.plugins/signoptions/get_location/_index.md +++ b/english/cpp/aspose.pdf.lowcode/signoptions/get_location/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::SignOptions::get_Location method +title: Aspose::Pdf::LowCode::SignOptions::get_Location method linktitle: get_Location second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::SignOptions::get_Location method. The location of signature in C++.' +description: 'Aspose::Pdf::LowCode::SignOptions::get_Location method. The location of signature in C++.' type: docs weight: 300 -url: /cpp/aspose.pdf.plugins/signoptions/get_location/ +url: /cpp/aspose.pdf.lowcode/signoptions/get_location/ --- ## SignOptions::get_Location method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/signoptions/get_location/ The location of signature. ```cpp -System::String Aspose::Pdf::Plugins::SignOptions::get_Location() const +System::String Aspose::Pdf::LowCode::SignOptions::get_Location() const ``` ## See Also * Class [String](../../../system/string/) * Class [SignOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/signoptions/get_name/_index.md b/english/cpp/aspose.pdf.lowcode/signoptions/get_name/_index.md similarity index 58% rename from english/cpp/aspose.pdf.plugins/signoptions/get_name/_index.md rename to english/cpp/aspose.pdf.lowcode/signoptions/get_name/_index.md index 6557f25b60..2d1e6650e1 100644 --- a/english/cpp/aspose.pdf.plugins/signoptions/get_name/_index.md +++ b/english/cpp/aspose.pdf.lowcode/signoptions/get_name/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::SignOptions::get_Name method +title: Aspose::Pdf::LowCode::SignOptions::get_Name method linktitle: get_Name second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::SignOptions::get_Name method. The name of existing signature field. Null to create a new field in C++.' +description: 'Aspose::Pdf::LowCode::SignOptions::get_Name method. The name of existing signature field. Null to create a new field in C++.' type: docs weight: 400 -url: /cpp/aspose.pdf.plugins/signoptions/get_name/ +url: /cpp/aspose.pdf.lowcode/signoptions/get_name/ --- ## SignOptions::get_Name method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/signoptions/get_name/ The name of existing signature field. Null to create a new field. ```cpp -System::String Aspose::Pdf::Plugins::SignOptions::get_Name() const +System::String Aspose::Pdf::LowCode::SignOptions::get_Name() const ``` ## See Also * Class [String](../../../system/string/) * Class [SignOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/signoptions/get_pagenumber/_index.md b/english/cpp/aspose.pdf.lowcode/signoptions/get_pagenumber/_index.md similarity index 52% rename from english/cpp/aspose.pdf.plugins/signoptions/get_pagenumber/_index.md rename to english/cpp/aspose.pdf.lowcode/signoptions/get_pagenumber/_index.md index 29a2a55744..75c89e5742 100644 --- a/english/cpp/aspose.pdf.plugins/signoptions/get_pagenumber/_index.md +++ b/english/cpp/aspose.pdf.lowcode/signoptions/get_pagenumber/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::SignOptions::get_PageNumber method +title: Aspose::Pdf::LowCode::SignOptions::get_PageNumber method linktitle: get_PageNumber second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::SignOptions::get_PageNumber method. The page number on which signature is made in C++.' +description: 'Aspose::Pdf::LowCode::SignOptions::get_PageNumber method. The page number on which signature is made in C++.' type: docs weight: 500 -url: /cpp/aspose.pdf.plugins/signoptions/get_pagenumber/ +url: /cpp/aspose.pdf.lowcode/signoptions/get_pagenumber/ --- ## SignOptions::get_PageNumber method @@ -13,11 +13,11 @@ url: /cpp/aspose.pdf.plugins/signoptions/get_pagenumber/ The page number on which signature is made. ```cpp -int32_t Aspose::Pdf::Plugins::SignOptions::get_PageNumber() const +int32_t Aspose::Pdf::LowCode::SignOptions::get_PageNumber() const ``` ## See Also * Class [SignOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/signoptions/get_reason/_index.md b/english/cpp/aspose.pdf.lowcode/signoptions/get_reason/_index.md similarity index 53% rename from english/cpp/aspose.pdf.plugins/signoptions/get_reason/_index.md rename to english/cpp/aspose.pdf.lowcode/signoptions/get_reason/_index.md index 35704e2443..79837903db 100644 --- a/english/cpp/aspose.pdf.plugins/signoptions/get_reason/_index.md +++ b/english/cpp/aspose.pdf.lowcode/signoptions/get_reason/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::SignOptions::get_Reason method +title: Aspose::Pdf::LowCode::SignOptions::get_Reason method linktitle: get_Reason second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::SignOptions::get_Reason method. The reason of signature in C++.' +description: 'Aspose::Pdf::LowCode::SignOptions::get_Reason method. The reason of signature in C++.' type: docs weight: 600 -url: /cpp/aspose.pdf.plugins/signoptions/get_reason/ +url: /cpp/aspose.pdf.lowcode/signoptions/get_reason/ --- ## SignOptions::get_Reason method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/signoptions/get_reason/ The reason of signature. ```cpp -System::String Aspose::Pdf::Plugins::SignOptions::get_Reason() const +System::String Aspose::Pdf::LowCode::SignOptions::get_Reason() const ``` ## See Also * Class [String](../../../system/string/) * Class [SignOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/signoptions/get_rectangle/_index.md b/english/cpp/aspose.pdf.lowcode/signoptions/get_rectangle/_index.md similarity index 53% rename from english/cpp/aspose.pdf.plugins/signoptions/get_rectangle/_index.md rename to english/cpp/aspose.pdf.lowcode/signoptions/get_rectangle/_index.md index 1a8eae325d..a844328292 100644 --- a/english/cpp/aspose.pdf.plugins/signoptions/get_rectangle/_index.md +++ b/english/cpp/aspose.pdf.lowcode/signoptions/get_rectangle/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::SignOptions::get_Rectangle method +title: Aspose::Pdf::LowCode::SignOptions::get_Rectangle method linktitle: get_Rectangle second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::SignOptions::get_Rectangle method. The rect of signature in C++.' +description: 'Aspose::Pdf::LowCode::SignOptions::get_Rectangle method. The rect of signature in C++.' type: docs weight: 700 -url: /cpp/aspose.pdf.plugins/signoptions/get_rectangle/ +url: /cpp/aspose.pdf.lowcode/signoptions/get_rectangle/ --- ## SignOptions::get_Rectangle method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/signoptions/get_rectangle/ The rect of signature. ```cpp -const System::SharedPtr & Aspose::Pdf::Plugins::SignOptions::get_Rectangle() const +const System::SharedPtr & Aspose::Pdf::LowCode::SignOptions::get_Rectangle() const ``` ## See Also @@ -21,5 +21,5 @@ const System::SharedPtr & Aspose::Pdf::Plugins::SignOpti * Typedef [SharedPtr](../../../system/sharedptr/) * Class [Rectangle](../../../aspose.pdf/rectangle/) * Class [SignOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/signoptions/get_visible/_index.md b/english/cpp/aspose.pdf.lowcode/signoptions/get_visible/_index.md similarity index 50% rename from english/cpp/aspose.pdf.plugins/signoptions/get_visible/_index.md rename to english/cpp/aspose.pdf.lowcode/signoptions/get_visible/_index.md index 9c4f33d0bc..31b9dfdf11 100644 --- a/english/cpp/aspose.pdf.plugins/signoptions/get_visible/_index.md +++ b/english/cpp/aspose.pdf.lowcode/signoptions/get_visible/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::SignOptions::get_Visible method +title: Aspose::Pdf::LowCode::SignOptions::get_Visible method linktitle: get_Visible second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::SignOptions::get_Visible method. The visiblity of signature in C++.' +description: 'Aspose::Pdf::LowCode::SignOptions::get_Visible method. The visiblity of signature in C++.' type: docs weight: 800 -url: /cpp/aspose.pdf.plugins/signoptions/get_visible/ +url: /cpp/aspose.pdf.lowcode/signoptions/get_visible/ --- ## SignOptions::get_Visible method @@ -13,11 +13,11 @@ url: /cpp/aspose.pdf.plugins/signoptions/get_visible/ The visiblity of signature. ```cpp -bool Aspose::Pdf::Plugins::SignOptions::get_Visible() const +bool Aspose::Pdf::LowCode::SignOptions::get_Visible() const ``` ## See Also * Class [SignOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/signoptions/set_contact/_index.md b/english/cpp/aspose.pdf.lowcode/signoptions/set_contact/_index.md similarity index 53% rename from english/cpp/aspose.pdf.plugins/signoptions/set_contact/_index.md rename to english/cpp/aspose.pdf.lowcode/signoptions/set_contact/_index.md index 1586207b3a..8cc5d115e6 100644 --- a/english/cpp/aspose.pdf.plugins/signoptions/set_contact/_index.md +++ b/english/cpp/aspose.pdf.lowcode/signoptions/set_contact/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::SignOptions::set_Contact method +title: Aspose::Pdf::LowCode::SignOptions::set_Contact method linktitle: set_Contact second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::SignOptions::set_Contact method. The contact of signature in C++.' +description: 'Aspose::Pdf::LowCode::SignOptions::set_Contact method. The contact of signature in C++.' type: docs weight: 900 -url: /cpp/aspose.pdf.plugins/signoptions/set_contact/ +url: /cpp/aspose.pdf.lowcode/signoptions/set_contact/ --- ## SignOptions::set_Contact method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/signoptions/set_contact/ The contact of signature. ```cpp -void Aspose::Pdf::Plugins::SignOptions::set_Contact(System::String value) +void Aspose::Pdf::LowCode::SignOptions::set_Contact(System::String value) ``` ## See Also * Class [String](../../../system/string/) * Class [SignOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/signoptions/set_location/_index.md b/english/cpp/aspose.pdf.lowcode/signoptions/set_location/_index.md similarity index 54% rename from english/cpp/aspose.pdf.plugins/signoptions/set_location/_index.md rename to english/cpp/aspose.pdf.lowcode/signoptions/set_location/_index.md index ac27e96f0d..ec7184c8ee 100644 --- a/english/cpp/aspose.pdf.plugins/signoptions/set_location/_index.md +++ b/english/cpp/aspose.pdf.lowcode/signoptions/set_location/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::SignOptions::set_Location method +title: Aspose::Pdf::LowCode::SignOptions::set_Location method linktitle: set_Location second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::SignOptions::set_Location method. The location of signature in C++.' +description: 'Aspose::Pdf::LowCode::SignOptions::set_Location method. The location of signature in C++.' type: docs weight: 1000 -url: /cpp/aspose.pdf.plugins/signoptions/set_location/ +url: /cpp/aspose.pdf.lowcode/signoptions/set_location/ --- ## SignOptions::set_Location method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/signoptions/set_location/ The location of signature. ```cpp -void Aspose::Pdf::Plugins::SignOptions::set_Location(System::String value) +void Aspose::Pdf::LowCode::SignOptions::set_Location(System::String value) ``` ## See Also * Class [String](../../../system/string/) * Class [SignOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/signoptions/set_name/_index.md b/english/cpp/aspose.pdf.lowcode/signoptions/set_name/_index.md similarity index 58% rename from english/cpp/aspose.pdf.plugins/signoptions/set_name/_index.md rename to english/cpp/aspose.pdf.lowcode/signoptions/set_name/_index.md index 7646232da2..a55844af2b 100644 --- a/english/cpp/aspose.pdf.plugins/signoptions/set_name/_index.md +++ b/english/cpp/aspose.pdf.lowcode/signoptions/set_name/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::SignOptions::set_Name method +title: Aspose::Pdf::LowCode::SignOptions::set_Name method linktitle: set_Name second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::SignOptions::set_Name method. The name of existing signature field. Null to create a new field in C++.' +description: 'Aspose::Pdf::LowCode::SignOptions::set_Name method. The name of existing signature field. Null to create a new field in C++.' type: docs weight: 1100 -url: /cpp/aspose.pdf.plugins/signoptions/set_name/ +url: /cpp/aspose.pdf.lowcode/signoptions/set_name/ --- ## SignOptions::set_Name method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/signoptions/set_name/ The name of existing signature field. Null to create a new field. ```cpp -void Aspose::Pdf::Plugins::SignOptions::set_Name(System::String value) +void Aspose::Pdf::LowCode::SignOptions::set_Name(System::String value) ``` ## See Also * Class [String](../../../system/string/) * Class [SignOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/signoptions/set_pagenumber/_index.md b/english/cpp/aspose.pdf.lowcode/signoptions/set_pagenumber/_index.md similarity index 53% rename from english/cpp/aspose.pdf.plugins/signoptions/set_pagenumber/_index.md rename to english/cpp/aspose.pdf.lowcode/signoptions/set_pagenumber/_index.md index e088a2987f..930c3ea9f6 100644 --- a/english/cpp/aspose.pdf.plugins/signoptions/set_pagenumber/_index.md +++ b/english/cpp/aspose.pdf.lowcode/signoptions/set_pagenumber/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::SignOptions::set_PageNumber method +title: Aspose::Pdf::LowCode::SignOptions::set_PageNumber method linktitle: set_PageNumber second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::SignOptions::set_PageNumber method. The page number on which signature is made in C++.' +description: 'Aspose::Pdf::LowCode::SignOptions::set_PageNumber method. The page number on which signature is made in C++.' type: docs weight: 1200 -url: /cpp/aspose.pdf.plugins/signoptions/set_pagenumber/ +url: /cpp/aspose.pdf.lowcode/signoptions/set_pagenumber/ --- ## SignOptions::set_PageNumber method @@ -13,11 +13,11 @@ url: /cpp/aspose.pdf.plugins/signoptions/set_pagenumber/ The page number on which signature is made. ```cpp -void Aspose::Pdf::Plugins::SignOptions::set_PageNumber(int32_t value) +void Aspose::Pdf::LowCode::SignOptions::set_PageNumber(int32_t value) ``` ## See Also * Class [SignOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/signoptions/set_reason/_index.md b/english/cpp/aspose.pdf.lowcode/signoptions/set_reason/_index.md similarity index 53% rename from english/cpp/aspose.pdf.plugins/signoptions/set_reason/_index.md rename to english/cpp/aspose.pdf.lowcode/signoptions/set_reason/_index.md index be2d29a07b..860e363d53 100644 --- a/english/cpp/aspose.pdf.plugins/signoptions/set_reason/_index.md +++ b/english/cpp/aspose.pdf.lowcode/signoptions/set_reason/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::SignOptions::set_Reason method +title: Aspose::Pdf::LowCode::SignOptions::set_Reason method linktitle: set_Reason second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::SignOptions::set_Reason method. The reason of signature in C++.' +description: 'Aspose::Pdf::LowCode::SignOptions::set_Reason method. The reason of signature in C++.' type: docs weight: 1300 -url: /cpp/aspose.pdf.plugins/signoptions/set_reason/ +url: /cpp/aspose.pdf.lowcode/signoptions/set_reason/ --- ## SignOptions::set_Reason method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/signoptions/set_reason/ The reason of signature. ```cpp -void Aspose::Pdf::Plugins::SignOptions::set_Reason(System::String value) +void Aspose::Pdf::LowCode::SignOptions::set_Reason(System::String value) ``` ## See Also * Class [String](../../../system/string/) * Class [SignOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/signoptions/set_rectangle/_index.md b/english/cpp/aspose.pdf.lowcode/signoptions/set_rectangle/_index.md similarity index 58% rename from english/cpp/aspose.pdf.plugins/signoptions/set_rectangle/_index.md rename to english/cpp/aspose.pdf.lowcode/signoptions/set_rectangle/_index.md index 63e18a9bf0..5d27d9f891 100644 --- a/english/cpp/aspose.pdf.plugins/signoptions/set_rectangle/_index.md +++ b/english/cpp/aspose.pdf.lowcode/signoptions/set_rectangle/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::SignOptions::set_Rectangle method +title: Aspose::Pdf::LowCode::SignOptions::set_Rectangle method linktitle: set_Rectangle second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::SignOptions::set_Rectangle method. The rect of signature in C++.' +description: 'Aspose::Pdf::LowCode::SignOptions::set_Rectangle method. The rect of signature in C++.' type: docs weight: 1400 -url: /cpp/aspose.pdf.plugins/signoptions/set_rectangle/ +url: /cpp/aspose.pdf.lowcode/signoptions/set_rectangle/ --- ## SignOptions::set_Rectangle method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/signoptions/set_rectangle/ The rect of signature. ```cpp -void Aspose::Pdf::Plugins::SignOptions::set_Rectangle(System::SharedPtr value) +void Aspose::Pdf::LowCode::SignOptions::set_Rectangle(System::SharedPtr value) ``` ## See Also @@ -21,5 +21,5 @@ void Aspose::Pdf::Plugins::SignOptions::set_Rectangle(System::SharedPtr, System::String) constructor @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/signoptions/signoptions/ Initializes new instance of the [SignOptions](../) object with default options. ```cpp -Aspose::Pdf::Plugins::SignOptions::SignOptions(System::SharedPtr pfx, System::String password) +Aspose::Pdf::LowCode::SignOptions::SignOptions(System::SharedPtr pfx, System::String password) ``` @@ -28,7 +28,7 @@ Aspose::Pdf::Plugins::SignOptions::SignOptions(System::SharedPtr Aspose::Pdf::Plugins::Splitter::Process(System::SharedPtr options) override +System::SharedPtr Aspose::Pdf::LowCode::Splitter::Process(System::SharedPtr options) override ``` @@ -31,5 +31,5 @@ An [ResultContainer](../../resultcontainer/) object containg the result of the o * Class [ResultContainer](../../resultcontainer/) * Class [IPluginOptions](../../ipluginoptions/) * Class [Splitter](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/streamdatasource/_index.md b/english/cpp/aspose.pdf.lowcode/streamdatasource/_index.md similarity index 72% rename from english/cpp/aspose.pdf.plugins/streamdatasource/_index.md rename to english/cpp/aspose.pdf.lowcode/streamdatasource/_index.md index 75dc2dbb85..53f37de6fd 100644 --- a/english/cpp/aspose.pdf.plugins/streamdatasource/_index.md +++ b/english/cpp/aspose.pdf.lowcode/streamdatasource/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::StreamDataSource class +title: Aspose::Pdf::LowCode::StreamDataSource class linktitle: StreamDataSource second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::StreamDataSource class. Represents stream data source for load and save operations of a plugin in C++.' +description: 'Aspose::Pdf::LowCode::StreamDataSource class. Represents stream data source for load and save operations of a plugin in C++.' type: docs weight: 7700 -url: /cpp/aspose.pdf.plugins/streamdatasource/ +url: /cpp/aspose.pdf.lowcode/streamdatasource/ --- ## StreamDataSource class @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/streamdatasource/ Represents stream data source for load and save operations of a plugin. ```cpp -class StreamDataSource : public Aspose::Pdf::Plugins::IDataSource +class StreamDataSource : public Aspose::Pdf::LowCode::IDataSource ``` ## Methods @@ -26,5 +26,5 @@ class StreamDataSource : public Aspose::Pdf::Plugins::IDataSource ## See Also * Class [IDataSource](../idatasource/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/streamdatasource/get_data/_index.md b/english/cpp/aspose.pdf.lowcode/streamdatasource/get_data/_index.md similarity index 60% rename from english/cpp/aspose.pdf.plugins/streamdatasource/get_data/_index.md rename to english/cpp/aspose.pdf.lowcode/streamdatasource/get_data/_index.md index 0a210fad67..dd5eae1274 100644 --- a/english/cpp/aspose.pdf.plugins/streamdatasource/get_data/_index.md +++ b/english/cpp/aspose.pdf.lowcode/streamdatasource/get_data/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::StreamDataSource::get_Data method +title: Aspose::Pdf::LowCode::StreamDataSource::get_Data method linktitle: get_Data second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::StreamDataSource::get_Data method. Gets the stream object of the current data source in C++.' +description: 'Aspose::Pdf::LowCode::StreamDataSource::get_Data method. Gets the stream object of the current data source in C++.' type: docs weight: 200 -url: /cpp/aspose.pdf.plugins/streamdatasource/get_data/ +url: /cpp/aspose.pdf.lowcode/streamdatasource/get_data/ --- ## StreamDataSource::get_Data method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/streamdatasource/get_data/ Gets the stream object of the current data source. ```cpp -System::SharedPtr Aspose::Pdf::Plugins::StreamDataSource::get_Data() const +System::SharedPtr Aspose::Pdf::LowCode::StreamDataSource::get_Data() const ``` ## See Also @@ -21,5 +21,5 @@ System::SharedPtr Aspose::Pdf::Plugins::StreamDataSource::ge * Typedef [SharedPtr](../../../system/sharedptr/) * Class [Stream](../../../system.io/stream/) * Class [StreamDataSource](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/streamdatasource/get_datatype/_index.md b/english/cpp/aspose.pdf.lowcode/streamdatasource/get_datatype/_index.md similarity index 55% rename from english/cpp/aspose.pdf.plugins/streamdatasource/get_datatype/_index.md rename to english/cpp/aspose.pdf.lowcode/streamdatasource/get_datatype/_index.md index f2cae44735..c047ae7c7f 100644 --- a/english/cpp/aspose.pdf.plugins/streamdatasource/get_datatype/_index.md +++ b/english/cpp/aspose.pdf.lowcode/streamdatasource/get_datatype/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::StreamDataSource::get_DataType method +title: Aspose::Pdf::LowCode::StreamDataSource::get_DataType method linktitle: get_DataType second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::StreamDataSource::get_DataType method. Type of data source (stream) in C++.' +description: 'Aspose::Pdf::LowCode::StreamDataSource::get_DataType method. Type of data source (stream) in C++.' type: docs weight: 300 -url: /cpp/aspose.pdf.plugins/streamdatasource/get_datatype/ +url: /cpp/aspose.pdf.lowcode/streamdatasource/get_datatype/ --- ## StreamDataSource::get_DataType method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/streamdatasource/get_datatype/ Type of data source (stream). ```cpp -Aspose::Pdf::Plugins::DataType Aspose::Pdf::Plugins::StreamDataSource::get_DataType() override +Aspose::Pdf::LowCode::DataType Aspose::Pdf::LowCode::StreamDataSource::get_DataType() override ``` ## See Also * Enum [DataType](../../datatype/) * Class [StreamDataSource](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/streamdatasource/streamdatasource/_index.md b/english/cpp/aspose.pdf.lowcode/streamdatasource/streamdatasource/_index.md similarity index 68% rename from english/cpp/aspose.pdf.plugins/streamdatasource/streamdatasource/_index.md rename to english/cpp/aspose.pdf.lowcode/streamdatasource/streamdatasource/_index.md index 88a9a0d9f5..b89cbd007e 100644 --- a/english/cpp/aspose.pdf.plugins/streamdatasource/streamdatasource/_index.md +++ b/english/cpp/aspose.pdf.lowcode/streamdatasource/streamdatasource/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::StreamDataSource::StreamDataSource constructor +title: Aspose::Pdf::LowCode::StreamDataSource::StreamDataSource constructor linktitle: StreamDataSource second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::StreamDataSource::StreamDataSource constructor. Initializes new stream data source with the specified stream object in C++.' +description: 'Aspose::Pdf::LowCode::StreamDataSource::StreamDataSource constructor. Initializes new stream data source with the specified stream object in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/streamdatasource/streamdatasource/ +url: /cpp/aspose.pdf.lowcode/streamdatasource/streamdatasource/ --- ## StreamDataSource::StreamDataSource constructor @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/streamdatasource/streamdatasource/ Initializes new stream data source with the specified stream object. ```cpp -Aspose::Pdf::Plugins::StreamDataSource::StreamDataSource(System::SharedPtr data) +Aspose::Pdf::LowCode::StreamDataSource::StreamDataSource(System::SharedPtr data) ``` @@ -26,5 +26,5 @@ Aspose::Pdf::Plugins::StreamDataSource::StreamDataSource(System::SharedPtr Aspose::Pdf::Plugins::StreamResult::get_Data() override +System::SharedPtr Aspose::Pdf::LowCode::StreamResult::get_Data() override ``` @@ -26,5 +26,5 @@ An **object** representing output data. * Typedef [SharedPtr](../../../system/sharedptr/) * Class [Object](../../../system/object/) * Class [StreamResult](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/streamresult/get_isfile/_index.md b/english/cpp/aspose.pdf.lowcode/streamresult/get_isfile/_index.md similarity index 58% rename from english/cpp/aspose.pdf.plugins/streamresult/get_isfile/_index.md rename to english/cpp/aspose.pdf.lowcode/streamresult/get_isfile/_index.md index 1772b2c6cc..f3ae80a57b 100644 --- a/english/cpp/aspose.pdf.plugins/streamresult/get_isfile/_index.md +++ b/english/cpp/aspose.pdf.lowcode/streamresult/get_isfile/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::StreamResult::get_IsFile method +title: Aspose::Pdf::LowCode::StreamResult::get_IsFile method linktitle: get_IsFile second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::StreamResult::get_IsFile method. Indicates whether the result is a path to an output file in C++.' +description: 'Aspose::Pdf::LowCode::StreamResult::get_IsFile method. Indicates whether the result is a path to an output file in C++.' type: docs weight: 200 -url: /cpp/aspose.pdf.plugins/streamresult/get_isfile/ +url: /cpp/aspose.pdf.lowcode/streamresult/get_isfile/ --- ## StreamResult::get_IsFile method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/streamresult/get_isfile/ Indicates whether the result is a path to an output file. ```cpp -bool Aspose::Pdf::Plugins::StreamResult::get_IsFile() override +bool Aspose::Pdf::LowCode::StreamResult::get_IsFile() override ``` @@ -24,5 +24,5 @@ bool Aspose::Pdf::Plugins::StreamResult::get_IsFile() override ## See Also * Class [StreamResult](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/streamresult/get_isstream/_index.md b/english/cpp/aspose.pdf.lowcode/streamresult/get_isstream/_index.md similarity index 59% rename from english/cpp/aspose.pdf.plugins/streamresult/get_isstream/_index.md rename to english/cpp/aspose.pdf.lowcode/streamresult/get_isstream/_index.md index d30e938cf5..baed08e37c 100644 --- a/english/cpp/aspose.pdf.plugins/streamresult/get_isstream/_index.md +++ b/english/cpp/aspose.pdf.lowcode/streamresult/get_isstream/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::StreamResult::get_IsStream method +title: Aspose::Pdf::LowCode::StreamResult::get_IsStream method linktitle: get_IsStream second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::StreamResult::get_IsStream method. Indicates whether the result is a path to an output file in C++.' +description: 'Aspose::Pdf::LowCode::StreamResult::get_IsStream method. Indicates whether the result is a path to an output file in C++.' type: docs weight: 300 -url: /cpp/aspose.pdf.plugins/streamresult/get_isstream/ +url: /cpp/aspose.pdf.lowcode/streamresult/get_isstream/ --- ## StreamResult::get_IsStream method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/streamresult/get_isstream/ Indicates whether the result is a path to an output file. ```cpp -bool Aspose::Pdf::Plugins::StreamResult::get_IsStream() override +bool Aspose::Pdf::LowCode::StreamResult::get_IsStream() override ``` @@ -24,5 +24,5 @@ bool Aspose::Pdf::Plugins::StreamResult::get_IsStream() override ## See Also * Class [StreamResult](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/streamresult/get_isstring/_index.md b/english/cpp/aspose.pdf.lowcode/streamresult/get_isstring/_index.md similarity index 57% rename from english/cpp/aspose.pdf.plugins/streamresult/get_isstring/_index.md rename to english/cpp/aspose.pdf.lowcode/streamresult/get_isstring/_index.md index 84e7c53c01..1d85347809 100644 --- a/english/cpp/aspose.pdf.plugins/streamresult/get_isstring/_index.md +++ b/english/cpp/aspose.pdf.lowcode/streamresult/get_isstring/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::StreamResult::get_IsString method +title: Aspose::Pdf::LowCode::StreamResult::get_IsString method linktitle: get_IsString second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::StreamResult::get_IsString method. Indicates whether the result is a string in C++.' +description: 'Aspose::Pdf::LowCode::StreamResult::get_IsString method. Indicates whether the result is a string in C++.' type: docs weight: 400 -url: /cpp/aspose.pdf.plugins/streamresult/get_isstring/ +url: /cpp/aspose.pdf.lowcode/streamresult/get_isstring/ --- ## StreamResult::get_IsString method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/streamresult/get_isstring/ Indicates whether the result is a string. ```cpp -bool Aspose::Pdf::Plugins::StreamResult::get_IsString() override +bool Aspose::Pdf::LowCode::StreamResult::get_IsString() override ``` @@ -24,5 +24,5 @@ bool Aspose::Pdf::Plugins::StreamResult::get_IsString() override ## See Also * Class [StreamResult](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/streamresult/tofile/_index.md b/english/cpp/aspose.pdf.lowcode/streamresult/tofile/_index.md similarity index 61% rename from english/cpp/aspose.pdf.plugins/streamresult/tofile/_index.md rename to english/cpp/aspose.pdf.lowcode/streamresult/tofile/_index.md index 9926487e4d..11464bd60b 100644 --- a/english/cpp/aspose.pdf.plugins/streamresult/tofile/_index.md +++ b/english/cpp/aspose.pdf.lowcode/streamresult/tofile/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::StreamResult::ToFile method +title: Aspose::Pdf::LowCode::StreamResult::ToFile method linktitle: ToFile second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::StreamResult::ToFile method. Tries to convert the result to a file in C++.' +description: 'Aspose::Pdf::LowCode::StreamResult::ToFile method. Tries to convert the result to a file in C++.' type: docs weight: 500 -url: /cpp/aspose.pdf.plugins/streamresult/tofile/ +url: /cpp/aspose.pdf.lowcode/streamresult/tofile/ --- ## StreamResult::ToFile method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/streamresult/tofile/ Tries to convert the result to a file. ```cpp -System::String Aspose::Pdf::Plugins::StreamResult::ToFile() override +System::String Aspose::Pdf::LowCode::StreamResult::ToFile() override ``` @@ -25,5 +25,5 @@ A string representing the path to the output file if the result is file; otherwi * Class [String](../../../system/string/) * Class [StreamResult](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/streamresult/tostream/_index.md b/english/cpp/aspose.pdf.lowcode/streamresult/tostream/_index.md similarity index 65% rename from english/cpp/aspose.pdf.plugins/streamresult/tostream/_index.md rename to english/cpp/aspose.pdf.lowcode/streamresult/tostream/_index.md index 77fd88a408..0da0f1d989 100644 --- a/english/cpp/aspose.pdf.plugins/streamresult/tostream/_index.md +++ b/english/cpp/aspose.pdf.lowcode/streamresult/tostream/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::StreamResult::ToStream method +title: Aspose::Pdf::LowCode::StreamResult::ToStream method linktitle: ToStream second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::StreamResult::ToStream method. Tries to convert the result to a stream object in C++.' +description: 'Aspose::Pdf::LowCode::StreamResult::ToStream method. Tries to convert the result to a stream object in C++.' type: docs weight: 600 -url: /cpp/aspose.pdf.plugins/streamresult/tostream/ +url: /cpp/aspose.pdf.lowcode/streamresult/tostream/ --- ## StreamResult::ToStream method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/streamresult/tostream/ Tries to convert the result to a stream object. ```cpp -System::SharedPtr Aspose::Pdf::Plugins::StreamResult::ToStream() override +System::SharedPtr Aspose::Pdf::LowCode::StreamResult::ToStream() override ``` @@ -26,5 +26,5 @@ A stream object representing the output data if the result is stream; otherwise * Typedef [SharedPtr](../../../system/sharedptr/) * Class [Stream](../../../system.io/stream/) * Class [StreamResult](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/streamsavetarget/_index.md b/english/cpp/aspose.pdf.lowcode/streamsavetarget/_index.md similarity index 69% rename from english/cpp/aspose.pdf.plugins/streamsavetarget/_index.md rename to english/cpp/aspose.pdf.lowcode/streamsavetarget/_index.md index 517c6a7d3d..9270739685 100644 --- a/english/cpp/aspose.pdf.plugins/streamsavetarget/_index.md +++ b/english/cpp/aspose.pdf.lowcode/streamsavetarget/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::StreamSaveTarget class +title: Aspose::Pdf::LowCode::StreamSaveTarget class linktitle: StreamSaveTarget second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::StreamSaveTarget class. Represents stream save target for a plugin in C++.' +description: 'Aspose::Pdf::LowCode::StreamSaveTarget class. Represents stream save target for a plugin in C++.' type: docs weight: 7900 -url: /cpp/aspose.pdf.plugins/streamsavetarget/ +url: /cpp/aspose.pdf.lowcode/streamsavetarget/ --- ## StreamSaveTarget class @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/streamsavetarget/ Represents stream save target for a plugin. ```cpp -class StreamSaveTarget : public Aspose::Pdf::Plugins::ISaveTarget +class StreamSaveTarget : public Aspose::Pdf::LowCode::ISaveTarget ``` ## Methods @@ -26,5 +26,5 @@ class StreamSaveTarget : public Aspose::Pdf::Plugins::ISaveTarget ## See Also * Class [ISaveTarget](../isavetarget/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/streamsavetarget/get_data/_index.md b/english/cpp/aspose.pdf.lowcode/streamsavetarget/get_data/_index.md similarity index 62% rename from english/cpp/aspose.pdf.plugins/streamsavetarget/get_data/_index.md rename to english/cpp/aspose.pdf.lowcode/streamsavetarget/get_data/_index.md index dd39956c0a..424e5baca6 100644 --- a/english/cpp/aspose.pdf.plugins/streamsavetarget/get_data/_index.md +++ b/english/cpp/aspose.pdf.lowcode/streamsavetarget/get_data/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::StreamSaveTarget::get_Data method +title: Aspose::Pdf::LowCode::StreamSaveTarget::get_Data method linktitle: get_Data second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::StreamSaveTarget::get_Data method. Gets the stream of current save target in C++.' +description: 'Aspose::Pdf::LowCode::StreamSaveTarget::get_Data method. Gets the stream of current save target in C++.' type: docs weight: 200 -url: /cpp/aspose.pdf.plugins/streamsavetarget/get_data/ +url: /cpp/aspose.pdf.lowcode/streamsavetarget/get_data/ --- ## StreamSaveTarget::get_Data method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/streamsavetarget/get_data/ Gets the stream of current save target. ```cpp -System::SharedPtr Aspose::Pdf::Plugins::StreamSaveTarget::get_Data() const +System::SharedPtr Aspose::Pdf::LowCode::StreamSaveTarget::get_Data() const ``` @@ -26,5 +26,5 @@ A stream object representing output data. * Typedef [SharedPtr](../../../system/sharedptr/) * Class [Stream](../../../system.io/stream/) * Class [StreamSaveTarget](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/streamsavetarget/get_savetarget/_index.md b/english/cpp/aspose.pdf.lowcode/streamsavetarget/get_savetarget/_index.md similarity index 59% rename from english/cpp/aspose.pdf.plugins/streamsavetarget/get_savetarget/_index.md rename to english/cpp/aspose.pdf.lowcode/streamsavetarget/get_savetarget/_index.md index 0b4cdbc31d..85faa539e1 100644 --- a/english/cpp/aspose.pdf.plugins/streamsavetarget/get_savetarget/_index.md +++ b/english/cpp/aspose.pdf.lowcode/streamsavetarget/get_savetarget/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::StreamSaveTarget::get_SaveTarget method +title: Aspose::Pdf::LowCode::StreamSaveTarget::get_SaveTarget method linktitle: get_SaveTarget second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::StreamSaveTarget::get_SaveTarget method. Type of the save target (stream) in C++.' +description: 'Aspose::Pdf::LowCode::StreamSaveTarget::get_SaveTarget method. Type of the save target (stream) in C++.' type: docs weight: 300 -url: /cpp/aspose.pdf.plugins/streamsavetarget/get_savetarget/ +url: /cpp/aspose.pdf.lowcode/streamsavetarget/get_savetarget/ --- ## StreamSaveTarget::get_SaveTarget method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/streamsavetarget/get_savetarget/ Type of the save target (stream). ```cpp -DataType Aspose::Pdf::Plugins::StreamSaveTarget::get_SaveTarget() override +DataType Aspose::Pdf::LowCode::StreamSaveTarget::get_SaveTarget() override ``` @@ -25,5 +25,5 @@ A [DataType](../../datatype/) object representing output data. * Enum [DataType](../../datatype/) * Class [StreamSaveTarget](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/streamsavetarget/streamsavetarget/_index.md b/english/cpp/aspose.pdf.lowcode/streamsavetarget/streamsavetarget/_index.md similarity index 66% rename from english/cpp/aspose.pdf.plugins/streamsavetarget/streamsavetarget/_index.md rename to english/cpp/aspose.pdf.lowcode/streamsavetarget/streamsavetarget/_index.md index 20d9c2da3a..3a3263c565 100644 --- a/english/cpp/aspose.pdf.plugins/streamsavetarget/streamsavetarget/_index.md +++ b/english/cpp/aspose.pdf.lowcode/streamsavetarget/streamsavetarget/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::StreamSaveTarget::StreamSaveTarget constructor +title: Aspose::Pdf::LowCode::StreamSaveTarget::StreamSaveTarget constructor linktitle: StreamSaveTarget second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::StreamSaveTarget::StreamSaveTarget constructor. Initializes new stream save target in C++.' +description: 'Aspose::Pdf::LowCode::StreamSaveTarget::StreamSaveTarget constructor. Initializes new stream save target in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/streamsavetarget/streamsavetarget/ +url: /cpp/aspose.pdf.lowcode/streamsavetarget/streamsavetarget/ --- ## StreamSaveTarget::StreamSaveTarget constructor @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/streamsavetarget/streamsavetarget/ Initializes new stream save target. ```cpp -Aspose::Pdf::Plugins::StreamSaveTarget::StreamSaveTarget(System::SharedPtr stream) +Aspose::Pdf::LowCode::StreamSaveTarget::StreamSaveTarget(System::SharedPtr stream) ``` @@ -26,5 +26,5 @@ Aspose::Pdf::Plugins::StreamSaveTarget::StreamSaveTarget(System::SharedPtr Aspose::Pdf::Plugins::StringResult::get_Data() override +System::SharedPtr Aspose::Pdf::LowCode::StringResult::get_Data() override ``` @@ -26,5 +26,5 @@ An **object** representing output data. * Typedef [SharedPtr](../../../system/sharedptr/) * Class [Object](../../../system/object/) * Class [StringResult](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/stringresult/get_isfile/_index.md b/english/cpp/aspose.pdf.lowcode/stringresult/get_isfile/_index.md similarity index 58% rename from english/cpp/aspose.pdf.plugins/stringresult/get_isfile/_index.md rename to english/cpp/aspose.pdf.lowcode/stringresult/get_isfile/_index.md index a2dba9589c..30eadd02b3 100644 --- a/english/cpp/aspose.pdf.plugins/stringresult/get_isfile/_index.md +++ b/english/cpp/aspose.pdf.lowcode/stringresult/get_isfile/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::StringResult::get_IsFile method +title: Aspose::Pdf::LowCode::StringResult::get_IsFile method linktitle: get_IsFile second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::StringResult::get_IsFile method. Indicates whether the result is a path to an output file in C++.' +description: 'Aspose::Pdf::LowCode::StringResult::get_IsFile method. Indicates whether the result is a path to an output file in C++.' type: docs weight: 200 -url: /cpp/aspose.pdf.plugins/stringresult/get_isfile/ +url: /cpp/aspose.pdf.lowcode/stringresult/get_isfile/ --- ## StringResult::get_IsFile method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/stringresult/get_isfile/ Indicates whether the result is a path to an output file. ```cpp -bool Aspose::Pdf::Plugins::StringResult::get_IsFile() override +bool Aspose::Pdf::LowCode::StringResult::get_IsFile() override ``` @@ -24,5 +24,5 @@ bool Aspose::Pdf::Plugins::StringResult::get_IsFile() override ## See Also * Class [StringResult](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/stringresult/get_isstream/_index.md b/english/cpp/aspose.pdf.lowcode/stringresult/get_isstream/_index.md similarity index 59% rename from english/cpp/aspose.pdf.plugins/stringresult/get_isstream/_index.md rename to english/cpp/aspose.pdf.lowcode/stringresult/get_isstream/_index.md index 8440343a93..5daa7716ed 100644 --- a/english/cpp/aspose.pdf.plugins/stringresult/get_isstream/_index.md +++ b/english/cpp/aspose.pdf.lowcode/stringresult/get_isstream/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::StringResult::get_IsStream method +title: Aspose::Pdf::LowCode::StringResult::get_IsStream method linktitle: get_IsStream second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::StringResult::get_IsStream method. Indicates whether the result is a path to an output file in C++.' +description: 'Aspose::Pdf::LowCode::StringResult::get_IsStream method. Indicates whether the result is a path to an output file in C++.' type: docs weight: 300 -url: /cpp/aspose.pdf.plugins/stringresult/get_isstream/ +url: /cpp/aspose.pdf.lowcode/stringresult/get_isstream/ --- ## StringResult::get_IsStream method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/stringresult/get_isstream/ Indicates whether the result is a path to an output file. ```cpp -bool Aspose::Pdf::Plugins::StringResult::get_IsStream() override +bool Aspose::Pdf::LowCode::StringResult::get_IsStream() override ``` @@ -24,5 +24,5 @@ bool Aspose::Pdf::Plugins::StringResult::get_IsStream() override ## See Also * Class [StringResult](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/stringresult/get_isstring/_index.md b/english/cpp/aspose.pdf.lowcode/stringresult/get_isstring/_index.md similarity index 57% rename from english/cpp/aspose.pdf.plugins/stringresult/get_isstring/_index.md rename to english/cpp/aspose.pdf.lowcode/stringresult/get_isstring/_index.md index 4565b50e3b..e8e71f3522 100644 --- a/english/cpp/aspose.pdf.plugins/stringresult/get_isstring/_index.md +++ b/english/cpp/aspose.pdf.lowcode/stringresult/get_isstring/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::StringResult::get_IsString method +title: Aspose::Pdf::LowCode::StringResult::get_IsString method linktitle: get_IsString second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::StringResult::get_IsString method. Indicates whether the result is a string in C++.' +description: 'Aspose::Pdf::LowCode::StringResult::get_IsString method. Indicates whether the result is a string in C++.' type: docs weight: 400 -url: /cpp/aspose.pdf.plugins/stringresult/get_isstring/ +url: /cpp/aspose.pdf.lowcode/stringresult/get_isstring/ --- ## StringResult::get_IsString method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/stringresult/get_isstring/ Indicates whether the result is a string. ```cpp -bool Aspose::Pdf::Plugins::StringResult::get_IsString() override +bool Aspose::Pdf::LowCode::StringResult::get_IsString() override ``` @@ -24,5 +24,5 @@ bool Aspose::Pdf::Plugins::StringResult::get_IsString() override ## See Also * Class [StringResult](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/stringresult/get_text/_index.md b/english/cpp/aspose.pdf.lowcode/stringresult/get_text/_index.md similarity index 55% rename from english/cpp/aspose.pdf.plugins/stringresult/get_text/_index.md rename to english/cpp/aspose.pdf.lowcode/stringresult/get_text/_index.md index f649e9f3e2..f89900ea30 100644 --- a/english/cpp/aspose.pdf.plugins/stringresult/get_text/_index.md +++ b/english/cpp/aspose.pdf.lowcode/stringresult/get_text/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::StringResult::get_Text method +title: Aspose::Pdf::LowCode::StringResult::get_Text method linktitle: get_Text second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::StringResult::get_Text method. Returns string representation of the result in C++.' +description: 'Aspose::Pdf::LowCode::StringResult::get_Text method. Returns string representation of the result in C++.' type: docs weight: 500 -url: /cpp/aspose.pdf.plugins/stringresult/get_text/ +url: /cpp/aspose.pdf.lowcode/stringresult/get_text/ --- ## StringResult::get_Text method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/stringresult/get_text/ Returns string representation of the result. ```cpp -System::String Aspose::Pdf::Plugins::StringResult::get_Text() +System::String Aspose::Pdf::LowCode::StringResult::get_Text() ``` ## See Also * Class [String](../../../system/string/) * Class [StringResult](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/stringresult/tofile/_index.md b/english/cpp/aspose.pdf.lowcode/stringresult/tofile/_index.md similarity index 61% rename from english/cpp/aspose.pdf.plugins/stringresult/tofile/_index.md rename to english/cpp/aspose.pdf.lowcode/stringresult/tofile/_index.md index 5f3704d5c2..1a1a46d06f 100644 --- a/english/cpp/aspose.pdf.plugins/stringresult/tofile/_index.md +++ b/english/cpp/aspose.pdf.lowcode/stringresult/tofile/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::StringResult::ToFile method +title: Aspose::Pdf::LowCode::StringResult::ToFile method linktitle: ToFile second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::StringResult::ToFile method. Tries to convert the result to a file in C++.' +description: 'Aspose::Pdf::LowCode::StringResult::ToFile method. Tries to convert the result to a file in C++.' type: docs weight: 600 -url: /cpp/aspose.pdf.plugins/stringresult/tofile/ +url: /cpp/aspose.pdf.lowcode/stringresult/tofile/ --- ## StringResult::ToFile method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/stringresult/tofile/ Tries to convert the result to a file. ```cpp -System::String Aspose::Pdf::Plugins::StringResult::ToFile() override +System::String Aspose::Pdf::LowCode::StringResult::ToFile() override ``` @@ -25,5 +25,5 @@ A string representing the path to the output file if the result is file; otherwi * Class [String](../../../system/string/) * Class [StringResult](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/stringresult/tostream/_index.md b/english/cpp/aspose.pdf.lowcode/stringresult/tostream/_index.md similarity index 65% rename from english/cpp/aspose.pdf.plugins/stringresult/tostream/_index.md rename to english/cpp/aspose.pdf.lowcode/stringresult/tostream/_index.md index 797bf80f19..e903788bfd 100644 --- a/english/cpp/aspose.pdf.plugins/stringresult/tostream/_index.md +++ b/english/cpp/aspose.pdf.lowcode/stringresult/tostream/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::StringResult::ToStream method +title: Aspose::Pdf::LowCode::StringResult::ToStream method linktitle: ToStream second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::StringResult::ToStream method. Tries to convert the result to a stream object in C++.' +description: 'Aspose::Pdf::LowCode::StringResult::ToStream method. Tries to convert the result to a stream object in C++.' type: docs weight: 700 -url: /cpp/aspose.pdf.plugins/stringresult/tostream/ +url: /cpp/aspose.pdf.lowcode/stringresult/tostream/ --- ## StringResult::ToStream method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/stringresult/tostream/ Tries to convert the result to a stream object. ```cpp -System::SharedPtr Aspose::Pdf::Plugins::StringResult::ToStream() override +System::SharedPtr Aspose::Pdf::LowCode::StringResult::ToStream() override ``` @@ -26,5 +26,5 @@ A stream object representing the output data if the result is stream; otherwise * Typedef [SharedPtr](../../../system/sharedptr/) * Class [Stream](../../../system.io/stream/) * Class [StringResult](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/stringresult/tostring/_index.md b/english/cpp/aspose.pdf.lowcode/stringresult/tostring/_index.md similarity index 62% rename from english/cpp/aspose.pdf.plugins/stringresult/tostring/_index.md rename to english/cpp/aspose.pdf.lowcode/stringresult/tostring/_index.md index 8a7216030f..ff5058c138 100644 --- a/english/cpp/aspose.pdf.plugins/stringresult/tostring/_index.md +++ b/english/cpp/aspose.pdf.lowcode/stringresult/tostring/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::StringResult::ToString method +title: Aspose::Pdf::LowCode::StringResult::ToString method linktitle: ToString second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::StringResult::ToString method. Tries to convert the result to a string in C++.' +description: 'Aspose::Pdf::LowCode::StringResult::ToString method. Tries to convert the result to a string in C++.' type: docs weight: 800 -url: /cpp/aspose.pdf.plugins/stringresult/tostring/ +url: /cpp/aspose.pdf.lowcode/stringresult/tostring/ --- ## StringResult::ToString method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/stringresult/tostring/ Tries to convert the result to a string. ```cpp -System::String Aspose::Pdf::Plugins::StringResult::ToString() const override +System::String Aspose::Pdf::LowCode::StringResult::ToString() const override ``` @@ -25,5 +25,5 @@ A string representing the text content if the result is string; otherwise return * Class [String](../../../system/string/) * Class [StringResult](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/tablebuilder/_index.md b/english/cpp/aspose.pdf.lowcode/tablebuilder/_index.md similarity index 80% rename from english/cpp/aspose.pdf.plugins/tablebuilder/_index.md rename to english/cpp/aspose.pdf.lowcode/tablebuilder/_index.md index f21e50c10c..97b2364a0f 100644 --- a/english/cpp/aspose.pdf.plugins/tablebuilder/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tablebuilder/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TableBuilder class +title: Aspose::Pdf::LowCode::TableBuilder class linktitle: TableBuilder second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TableBuilder class. Class represents builder for table in pdf page in C++.' +description: 'Aspose::Pdf::LowCode::TableBuilder class. Class represents builder for table in pdf page in C++.' type: docs weight: 8100 -url: /cpp/aspose.pdf.plugins/tablebuilder/ +url: /cpp/aspose.pdf.lowcode/tablebuilder/ --- ## TableBuilder class @@ -28,5 +28,5 @@ class TableBuilder : public System::Object ## See Also * Class [Object](../../system/object/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/tablebuilder/addrow/_index.md b/english/cpp/aspose.pdf.lowcode/tablebuilder/addrow/_index.md similarity index 61% rename from english/cpp/aspose.pdf.plugins/tablebuilder/addrow/_index.md rename to english/cpp/aspose.pdf.lowcode/tablebuilder/addrow/_index.md index a4e848e9f1..dfd8b1a49d 100644 --- a/english/cpp/aspose.pdf.plugins/tablebuilder/addrow/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tablebuilder/addrow/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TableBuilder::AddRow method +title: Aspose::Pdf::LowCode::TableBuilder::AddRow method linktitle: AddRow second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TableBuilder::AddRow method. Add new row to table in C++.' +description: 'Aspose::Pdf::LowCode::TableBuilder::AddRow method. Add new row to table in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/tablebuilder/addrow/ +url: /cpp/aspose.pdf.lowcode/tablebuilder/addrow/ --- ## TableBuilder::AddRow method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/tablebuilder/addrow/ Add new row to table. ```cpp -virtual System::SharedPtr Aspose::Pdf::Plugins::TableBuilder::AddRow() +virtual System::SharedPtr Aspose::Pdf::LowCode::TableBuilder::AddRow() ``` @@ -26,5 +26,5 @@ Instance of current [TableRowBuilder](../../tablerowbuilder/). * Typedef [SharedPtr](../../../system/sharedptr/) * Class [TableRowBuilder](../../tablerowbuilder/) * Class [TableBuilder](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/tablebuilder/addtable/_index.md b/english/cpp/aspose.pdf.lowcode/tablebuilder/addtable/_index.md similarity index 59% rename from english/cpp/aspose.pdf.plugins/tablebuilder/addtable/_index.md rename to english/cpp/aspose.pdf.lowcode/tablebuilder/addtable/_index.md index 967ed1f8da..280be0853a 100644 --- a/english/cpp/aspose.pdf.plugins/tablebuilder/addtable/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tablebuilder/addtable/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TableBuilder::AddTable method +title: Aspose::Pdf::LowCode::TableBuilder::AddTable method linktitle: AddTable second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TableBuilder::AddTable method. Add new table to document in C++.' +description: 'Aspose::Pdf::LowCode::TableBuilder::AddTable method. Add new table to document in C++.' type: docs weight: 200 -url: /cpp/aspose.pdf.plugins/tablebuilder/addtable/ +url: /cpp/aspose.pdf.lowcode/tablebuilder/addtable/ --- ## TableBuilder::AddTable method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/tablebuilder/addtable/ Add new table to document. ```cpp -System::SharedPtr Aspose::Pdf::Plugins::TableBuilder::AddTable() +System::SharedPtr Aspose::Pdf::LowCode::TableBuilder::AddTable() ``` @@ -26,5 +26,5 @@ Instance of current [TableBuilder](../). * Typedef [SharedPtr](../../../system/sharedptr/) * Class [TableBuilder](../) * Class [TableBuilder](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/tablebuilder/insertpageafter/_index.md b/english/cpp/aspose.pdf.lowcode/tablebuilder/insertpageafter/_index.md similarity index 67% rename from english/cpp/aspose.pdf.plugins/tablebuilder/insertpageafter/_index.md rename to english/cpp/aspose.pdf.lowcode/tablebuilder/insertpageafter/_index.md index 1ae0f4c8db..36da450929 100644 --- a/english/cpp/aspose.pdf.plugins/tablebuilder/insertpageafter/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tablebuilder/insertpageafter/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TableBuilder::InsertPageAfter method +title: Aspose::Pdf::LowCode::TableBuilder::InsertPageAfter method linktitle: InsertPageAfter second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TableBuilder::InsertPageAfter method. Insert page after specified page in C++.' +description: 'Aspose::Pdf::LowCode::TableBuilder::InsertPageAfter method. Insert page after specified page in C++.' type: docs weight: 300 -url: /cpp/aspose.pdf.plugins/tablebuilder/insertpageafter/ +url: /cpp/aspose.pdf.lowcode/tablebuilder/insertpageafter/ --- ## TableBuilder::InsertPageAfter method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/tablebuilder/insertpageafter/ Insert page after specified page. ```cpp -System::SharedPtr Aspose::Pdf::Plugins::TableBuilder::InsertPageAfter(int32_t page) +System::SharedPtr Aspose::Pdf::LowCode::TableBuilder::InsertPageAfter(int32_t page) ``` @@ -30,5 +30,5 @@ Instance of current [TableOptions](../../tableoptions/). * Typedef [SharedPtr](../../../system/sharedptr/) * Class [TableOptions](../../tableoptions/) * Class [TableBuilder](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/tablebuilder/insertpagebefore/_index.md b/english/cpp/aspose.pdf.lowcode/tablebuilder/insertpagebefore/_index.md similarity index 68% rename from english/cpp/aspose.pdf.plugins/tablebuilder/insertpagebefore/_index.md rename to english/cpp/aspose.pdf.lowcode/tablebuilder/insertpagebefore/_index.md index 2f81301f95..ae77332f2d 100644 --- a/english/cpp/aspose.pdf.plugins/tablebuilder/insertpagebefore/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tablebuilder/insertpagebefore/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TableBuilder::InsertPageBefore method +title: Aspose::Pdf::LowCode::TableBuilder::InsertPageBefore method linktitle: InsertPageBefore second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TableBuilder::InsertPageBefore method. Insert page before specified page in C++.' +description: 'Aspose::Pdf::LowCode::TableBuilder::InsertPageBefore method. Insert page before specified page in C++.' type: docs weight: 400 -url: /cpp/aspose.pdf.plugins/tablebuilder/insertpagebefore/ +url: /cpp/aspose.pdf.lowcode/tablebuilder/insertpagebefore/ --- ## TableBuilder::InsertPageBefore method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/tablebuilder/insertpagebefore/ Insert page before specified page. ```cpp -System::SharedPtr Aspose::Pdf::Plugins::TableBuilder::InsertPageBefore(int32_t page) +System::SharedPtr Aspose::Pdf::LowCode::TableBuilder::InsertPageBefore(int32_t page) ``` @@ -30,5 +30,5 @@ Instance of current [TableOptions](../../tableoptions/). * Typedef [SharedPtr](../../../system/sharedptr/) * Class [TableOptions](../../tableoptions/) * Class [TableBuilder](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/tablebuilder/to_tableoptions/_index.md b/english/cpp/aspose.pdf.lowcode/tablebuilder/to_tableoptions/_index.md similarity index 71% rename from english/cpp/aspose.pdf.plugins/tablebuilder/to_tableoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/tablebuilder/to_tableoptions/_index.md index 3cc6338cab..927e033d05 100644 --- a/english/cpp/aspose.pdf.plugins/tablebuilder/to_tableoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tablebuilder/to_tableoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TableBuilder::to_TableOptions method +title: Aspose::Pdf::LowCode::TableBuilder::to_TableOptions method linktitle: to_TableOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TableBuilder::to_TableOptions method. Converts builder TableBuilder to options TableOptions in C++.' +description: 'Aspose::Pdf::LowCode::TableBuilder::to_TableOptions method. Converts builder TableBuilder to options TableOptions in C++.' type: docs weight: 500 -url: /cpp/aspose.pdf.plugins/tablebuilder/to_tableoptions/ +url: /cpp/aspose.pdf.lowcode/tablebuilder/to_tableoptions/ --- ## TableBuilder::to_TableOptions method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/tablebuilder/to_tableoptions/ Converts builder [TableBuilder](../) to options [TableOptions](../../tableoptions/) ```cpp -static System::SharedPtr Aspose::Pdf::Plugins::TableBuilder::to_TableOptions(System::SharedPtr builder) +static System::SharedPtr Aspose::Pdf::LowCode::TableBuilder::to_TableOptions(System::SharedPtr builder) ``` @@ -31,5 +31,5 @@ Result of conversion to PdfGeneratorTableOptions. * Class [TableOptions](../../tableoptions/) * Class [TableBuilder](../) * Class [TableBuilder](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/tablecellbuilder/_index.md b/english/cpp/aspose.pdf.lowcode/tablecellbuilder/_index.md similarity index 66% rename from english/cpp/aspose.pdf.plugins/tablecellbuilder/_index.md rename to english/cpp/aspose.pdf.lowcode/tablecellbuilder/_index.md index b78f349795..e4bcf7db24 100644 --- a/english/cpp/aspose.pdf.plugins/tablecellbuilder/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tablecellbuilder/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TableCellBuilder class +title: Aspose::Pdf::LowCode::TableCellBuilder class linktitle: TableCellBuilder second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TableCellBuilder class. Class represents builder for table cell in C++.' +description: 'Aspose::Pdf::LowCode::TableCellBuilder class. Class represents builder for table cell in C++.' type: docs weight: 8200 -url: /cpp/aspose.pdf.plugins/tablecellbuilder/ +url: /cpp/aspose.pdf.lowcode/tablecellbuilder/ --- ## TableCellBuilder class @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/tablecellbuilder/ Class represents builder for table cell. ```cpp -class TableCellBuilder : public Aspose::Pdf::Plugins::TableRowBuilder +class TableCellBuilder : public Aspose::Pdf::LowCode::TableRowBuilder ``` ## Methods @@ -25,5 +25,5 @@ class TableCellBuilder : public Aspose::Pdf::Plugins::TableRowBuilder ## See Also * Class [TableRowBuilder](../tablerowbuilder/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/tablecellbuilder/addcell/_index.md b/english/cpp/aspose.pdf.lowcode/tablecellbuilder/addcell/_index.md similarity index 59% rename from english/cpp/aspose.pdf.plugins/tablecellbuilder/addcell/_index.md rename to english/cpp/aspose.pdf.lowcode/tablecellbuilder/addcell/_index.md index e5ce6da755..d8814c655e 100644 --- a/english/cpp/aspose.pdf.plugins/tablecellbuilder/addcell/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tablecellbuilder/addcell/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TableCellBuilder::AddCell method +title: Aspose::Pdf::LowCode::TableCellBuilder::AddCell method linktitle: AddCell second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TableCellBuilder::AddCell method. Add cell to table in C++.' +description: 'Aspose::Pdf::LowCode::TableCellBuilder::AddCell method. Add cell to table in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/tablecellbuilder/addcell/ +url: /cpp/aspose.pdf.lowcode/tablecellbuilder/addcell/ --- ## TableCellBuilder::AddCell method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/tablecellbuilder/addcell/ Add cell to table. ```cpp -System::SharedPtr Aspose::Pdf::Plugins::TableCellBuilder::AddCell() override +System::SharedPtr Aspose::Pdf::LowCode::TableCellBuilder::AddCell() override ``` @@ -26,5 +26,5 @@ Instance of current [TableCellBuilder](../). * Typedef [SharedPtr](../../../system/sharedptr/) * Class [TableCellBuilder](../) * Class [TableCellBuilder](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/tablecellbuilder/addparagraph/_index.md b/english/cpp/aspose.pdf.lowcode/tablecellbuilder/addparagraph/_index.md similarity index 71% rename from english/cpp/aspose.pdf.plugins/tablecellbuilder/addparagraph/_index.md rename to english/cpp/aspose.pdf.lowcode/tablecellbuilder/addparagraph/_index.md index 8645fedcf2..b48d87b9dd 100644 --- a/english/cpp/aspose.pdf.plugins/tablecellbuilder/addparagraph/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tablecellbuilder/addparagraph/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TableCellBuilder::AddParagraph method +title: Aspose::Pdf::LowCode::TableCellBuilder::AddParagraph method linktitle: AddParagraph second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TableCellBuilder::AddParagraph method. Add paragraphs to table cell in C++.' +description: 'Aspose::Pdf::LowCode::TableCellBuilder::AddParagraph method. Add paragraphs to table cell in C++.' type: docs weight: 200 -url: /cpp/aspose.pdf.plugins/tablecellbuilder/addparagraph/ +url: /cpp/aspose.pdf.lowcode/tablecellbuilder/addparagraph/ --- ## TableCellBuilder::AddParagraph method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/tablecellbuilder/addparagraph/ Add paragraphs to table cell. ```cpp -System::SharedPtr Aspose::Pdf::Plugins::TableCellBuilder::AddParagraph(const System::ArrayPtr> ¶graph) +System::SharedPtr Aspose::Pdf::LowCode::TableCellBuilder::AddParagraph(const System::ArrayPtr> ¶graph) ``` @@ -32,5 +32,5 @@ Instance of current [TableCellBuilder](../). * Typedef [ArrayPtr](../../../system/arrayptr/) * Class [BaseParagraph](../../../aspose.pdf/baseparagraph/) * Class [TableCellBuilder](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/tablegenerator/_index.md b/english/cpp/aspose.pdf.lowcode/tablegenerator/_index.md similarity index 72% rename from english/cpp/aspose.pdf.plugins/tablegenerator/_index.md rename to english/cpp/aspose.pdf.lowcode/tablegenerator/_index.md index 73f8a1f4fd..8a48afc876 100644 --- a/english/cpp/aspose.pdf.plugins/tablegenerator/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tablegenerator/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TableGenerator class +title: Aspose::Pdf::LowCode::TableGenerator class linktitle: TableGenerator second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TableGenerator class. Represents Aspose.PDF TableGenerator plugin in C++.' +description: 'Aspose::Pdf::LowCode::TableGenerator class. Represents Aspose.PDF TableGenerator plugin in C++.' type: docs weight: 8300 -url: /cpp/aspose.pdf.plugins/tablegenerator/ +url: /cpp/aspose.pdf.lowcode/tablegenerator/ --- ## TableGenerator class @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/tablegenerator/ Represents Aspose.PDF [TableGenerator](./) plugin. ```cpp -class TableGenerator : public Aspose::Pdf::Plugins::IPlugin, +class TableGenerator : public Aspose::Pdf::LowCode::IPlugin, public System::IDisposable ``` @@ -27,5 +27,5 @@ class TableGenerator : public Aspose::Pdf::Plugins::IPlugin, * Class [IPlugin](../iplugin/) * Class [IDisposable](../../system/idisposable/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/tablegenerator/dispose/_index.md b/english/cpp/aspose.pdf.lowcode/tablegenerator/dispose/_index.md similarity index 57% rename from english/cpp/aspose.pdf.plugins/tablegenerator/dispose/_index.md rename to english/cpp/aspose.pdf.lowcode/tablegenerator/dispose/_index.md index 6f1c95a8f3..8b107bc046 100644 --- a/english/cpp/aspose.pdf.plugins/tablegenerator/dispose/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tablegenerator/dispose/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TableGenerator::Dispose method +title: Aspose::Pdf::LowCode::TableGenerator::Dispose method linktitle: Dispose second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TableGenerator::Dispose method. Implementation of IDisposable. In fact, it is not necessary for TableGenerator in C++.' +description: 'Aspose::Pdf::LowCode::TableGenerator::Dispose method. Implementation of IDisposable. In fact, it is not necessary for TableGenerator in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/tablegenerator/dispose/ +url: /cpp/aspose.pdf.lowcode/tablegenerator/dispose/ --- ## TableGenerator::Dispose method @@ -13,11 +13,11 @@ url: /cpp/aspose.pdf.plugins/tablegenerator/dispose/ Implementation of IDisposable. In fact, it is not necessary for [TableGenerator](../). ```cpp -void Aspose::Pdf::Plugins::TableGenerator::Dispose() override +void Aspose::Pdf::LowCode::TableGenerator::Dispose() override ``` ## See Also * Class [TableGenerator](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/tablegenerator/process/_index.md b/english/cpp/aspose.pdf.lowcode/tablegenerator/process/_index.md similarity index 73% rename from english/cpp/aspose.pdf.plugins/tablegenerator/process/_index.md rename to english/cpp/aspose.pdf.lowcode/tablegenerator/process/_index.md index e3cef98c9e..2da8807cf8 100644 --- a/english/cpp/aspose.pdf.plugins/tablegenerator/process/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tablegenerator/process/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TableGenerator::Process method +title: Aspose::Pdf::LowCode::TableGenerator::Process method linktitle: Process second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TableGenerator::Process method. Starts the PdfGenerator processing with the specified parameters in C++.' +description: 'Aspose::Pdf::LowCode::TableGenerator::Process method. Starts the PdfGenerator processing with the specified parameters in C++.' type: docs weight: 200 -url: /cpp/aspose.pdf.plugins/tablegenerator/process/ +url: /cpp/aspose.pdf.lowcode/tablegenerator/process/ --- ## TableGenerator::Process method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/tablegenerator/process/ Starts the PdfGenerator processing with the specified parameters. ```cpp -System::SharedPtr Aspose::Pdf::Plugins::TableGenerator::Process(System::SharedPtr options) override +System::SharedPtr Aspose::Pdf::LowCode::TableGenerator::Process(System::SharedPtr options) override ``` @@ -31,5 +31,5 @@ An [ResultContainer](../../resultcontainer/) object contains the result of the o * Class [ResultContainer](../../resultcontainer/) * Class [IPluginOptions](../../ipluginoptions/) * Class [TableGenerator](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/tableoptions/_index.md b/english/cpp/aspose.pdf.lowcode/tableoptions/_index.md similarity index 76% rename from english/cpp/aspose.pdf.plugins/tableoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/tableoptions/_index.md index af65b52eda..4646bf7771 100644 --- a/english/cpp/aspose.pdf.plugins/tableoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tableoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TableOptions class +title: Aspose::Pdf::LowCode::TableOptions class linktitle: TableOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TableOptions class. Represents options for add table to document by TableGenerator plugin in C++.' +description: 'Aspose::Pdf::LowCode::TableOptions class. Represents options for add table to document by TableGenerator plugin in C++.' type: docs weight: 8400 -url: /cpp/aspose.pdf.plugins/tableoptions/ +url: /cpp/aspose.pdf.lowcode/tableoptions/ --- ## TableOptions class @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/tableoptions/ Represents options for add table to document by [TableGenerator](../tablegenerator/) plugin. ```cpp -class TableOptions : public Aspose::Pdf::Plugins::PdfGeneratorOptions +class TableOptions : public Aspose::Pdf::LowCode::PdfGeneratorOptions ``` ## Methods @@ -28,5 +28,5 @@ class TableOptions : public Aspose::Pdf::Plugins::PdfGeneratorOptions ## See Also * Class [PdfGeneratorOptions](../pdfgeneratoroptions/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/tableoptions/addtable/_index.md b/english/cpp/aspose.pdf.lowcode/tableoptions/addtable/_index.md similarity index 60% rename from english/cpp/aspose.pdf.plugins/tableoptions/addtable/_index.md rename to english/cpp/aspose.pdf.lowcode/tableoptions/addtable/_index.md index f9321d73d8..fbd518ae33 100644 --- a/english/cpp/aspose.pdf.plugins/tableoptions/addtable/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tableoptions/addtable/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TableOptions::AddTable method +title: Aspose::Pdf::LowCode::TableOptions::AddTable method linktitle: AddTable second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TableOptions::AddTable method. Adding table to document in C++.' +description: 'Aspose::Pdf::LowCode::TableOptions::AddTable method. Adding table to document in C++.' type: docs weight: 200 -url: /cpp/aspose.pdf.plugins/tableoptions/addtable/ +url: /cpp/aspose.pdf.lowcode/tableoptions/addtable/ --- ## TableOptions::AddTable method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/tableoptions/addtable/ Adding table to document. ```cpp -System::SharedPtr Aspose::Pdf::Plugins::TableOptions::AddTable() +System::SharedPtr Aspose::Pdf::LowCode::TableOptions::AddTable() ``` @@ -26,5 +26,5 @@ New instance of [TableBuilder](../../tablebuilder/). * Typedef [SharedPtr](../../../system/sharedptr/) * Class [TableBuilder](../../tablebuilder/) * Class [TableOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/tableoptions/create/_index.md b/english/cpp/aspose.pdf.lowcode/tableoptions/create/_index.md similarity index 60% rename from english/cpp/aspose.pdf.plugins/tableoptions/create/_index.md rename to english/cpp/aspose.pdf.lowcode/tableoptions/create/_index.md index 4b0bddba71..464df723bd 100644 --- a/english/cpp/aspose.pdf.plugins/tableoptions/create/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tableoptions/create/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TableOptions::Create method +title: Aspose::Pdf::LowCode::TableOptions::Create method linktitle: Create second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TableOptions::Create method. Create instance of TableOptions in C++.' +description: 'Aspose::Pdf::LowCode::TableOptions::Create method. Create instance of TableOptions in C++.' type: docs weight: 500 -url: /cpp/aspose.pdf.plugins/tableoptions/create/ +url: /cpp/aspose.pdf.lowcode/tableoptions/create/ --- ## TableOptions::Create method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/tableoptions/create/ Create instance of [TableOptions](../). ```cpp -static System::SharedPtr Aspose::Pdf::Plugins::TableOptions::Create() +static System::SharedPtr Aspose::Pdf::LowCode::TableOptions::Create() ``` @@ -26,5 +26,5 @@ New instance of [TableOptions](../). * Typedef [SharedPtr](../../../system/sharedptr/) * Class [TableOptions](../) * Class [TableOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/tableoptions/insertpageafter/_index.md b/english/cpp/aspose.pdf.lowcode/tableoptions/insertpageafter/_index.md similarity index 66% rename from english/cpp/aspose.pdf.plugins/tableoptions/insertpageafter/_index.md rename to english/cpp/aspose.pdf.lowcode/tableoptions/insertpageafter/_index.md index 2f424399ef..554b84656c 100644 --- a/english/cpp/aspose.pdf.plugins/tableoptions/insertpageafter/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tableoptions/insertpageafter/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TableOptions::InsertPageAfter method +title: Aspose::Pdf::LowCode::TableOptions::InsertPageAfter method linktitle: InsertPageAfter second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TableOptions::InsertPageAfter method. Insert page after specified page in C++.' +description: 'Aspose::Pdf::LowCode::TableOptions::InsertPageAfter method. Insert page after specified page in C++.' type: docs weight: 300 -url: /cpp/aspose.pdf.plugins/tableoptions/insertpageafter/ +url: /cpp/aspose.pdf.lowcode/tableoptions/insertpageafter/ --- ## TableOptions::InsertPageAfter method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/tableoptions/insertpageafter/ Insert page after specified page. ```cpp -System::SharedPtr Aspose::Pdf::Plugins::TableOptions::InsertPageAfter(int32_t page) +System::SharedPtr Aspose::Pdf::LowCode::TableOptions::InsertPageAfter(int32_t page) ``` @@ -30,5 +30,5 @@ Instance of current [TableOptions](../). * Typedef [SharedPtr](../../../system/sharedptr/) * Class [TableOptions](../) * Class [TableOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/tableoptions/insertpagebefore/_index.md b/english/cpp/aspose.pdf.lowcode/tableoptions/insertpagebefore/_index.md similarity index 66% rename from english/cpp/aspose.pdf.plugins/tableoptions/insertpagebefore/_index.md rename to english/cpp/aspose.pdf.lowcode/tableoptions/insertpagebefore/_index.md index baada8e0c5..76730bb879 100644 --- a/english/cpp/aspose.pdf.plugins/tableoptions/insertpagebefore/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tableoptions/insertpagebefore/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TableOptions::InsertPageBefore method +title: Aspose::Pdf::LowCode::TableOptions::InsertPageBefore method linktitle: InsertPageBefore second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TableOptions::InsertPageBefore method. Insert page before specified page in C++.' +description: 'Aspose::Pdf::LowCode::TableOptions::InsertPageBefore method. Insert page before specified page in C++.' type: docs weight: 400 -url: /cpp/aspose.pdf.plugins/tableoptions/insertpagebefore/ +url: /cpp/aspose.pdf.lowcode/tableoptions/insertpagebefore/ --- ## TableOptions::InsertPageBefore method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/tableoptions/insertpagebefore/ Insert page before specified page. ```cpp -System::SharedPtr Aspose::Pdf::Plugins::TableOptions::InsertPageBefore(int32_t page) +System::SharedPtr Aspose::Pdf::LowCode::TableOptions::InsertPageBefore(int32_t page) ``` @@ -30,5 +30,5 @@ Instance of current [TableOptions](../). * Typedef [SharedPtr](../../../system/sharedptr/) * Class [TableOptions](../) * Class [TableOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/tableoptions/tableoptions/_index.md b/english/cpp/aspose.pdf.lowcode/tableoptions/tableoptions/_index.md similarity index 58% rename from english/cpp/aspose.pdf.plugins/tableoptions/tableoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/tableoptions/tableoptions/_index.md index 84eb200d43..c2e46cd6ee 100644 --- a/english/cpp/aspose.pdf.plugins/tableoptions/tableoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tableoptions/tableoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TableOptions::TableOptions constructor +title: Aspose::Pdf::LowCode::TableOptions::TableOptions constructor linktitle: TableOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TableOptions::TableOptions constructor. Initializes new instance of the TableOptions object with default options in C++.' +description: 'Aspose::Pdf::LowCode::TableOptions::TableOptions constructor. Initializes new instance of the TableOptions object with default options in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/tableoptions/tableoptions/ +url: /cpp/aspose.pdf.lowcode/tableoptions/tableoptions/ --- ## TableOptions::TableOptions constructor @@ -13,11 +13,11 @@ url: /cpp/aspose.pdf.plugins/tableoptions/tableoptions/ Initializes new instance of the [TableOptions](../) object with default options. ```cpp -Aspose::Pdf::Plugins::TableOptions::TableOptions() +Aspose::Pdf::LowCode::TableOptions::TableOptions() ``` ## See Also * Class [TableOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/tablerowbuilder/_index.md b/english/cpp/aspose.pdf.lowcode/tablerowbuilder/_index.md similarity index 63% rename from english/cpp/aspose.pdf.plugins/tablerowbuilder/_index.md rename to english/cpp/aspose.pdf.lowcode/tablerowbuilder/_index.md index e879713864..f27830a662 100644 --- a/english/cpp/aspose.pdf.plugins/tablerowbuilder/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tablerowbuilder/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TableRowBuilder class +title: Aspose::Pdf::LowCode::TableRowBuilder class linktitle: TableRowBuilder second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TableRowBuilder class. Class represents builder for table row in C++.' +description: 'Aspose::Pdf::LowCode::TableRowBuilder class. Class represents builder for table row in C++.' type: docs weight: 8500 -url: /cpp/aspose.pdf.plugins/tablerowbuilder/ +url: /cpp/aspose.pdf.lowcode/tablerowbuilder/ --- ## TableRowBuilder class @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/tablerowbuilder/ Class represents builder for table row. ```cpp -class TableRowBuilder : public Aspose::Pdf::Plugins::TableBuilder +class TableRowBuilder : public Aspose::Pdf::LowCode::TableBuilder ``` ## Methods @@ -25,5 +25,5 @@ class TableRowBuilder : public Aspose::Pdf::Plugins::TableBuilder ## See Also * Class [TableBuilder](../tablebuilder/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/tablerowbuilder/addcell/_index.md b/english/cpp/aspose.pdf.lowcode/tablerowbuilder/addcell/_index.md similarity index 62% rename from english/cpp/aspose.pdf.plugins/tablerowbuilder/addcell/_index.md rename to english/cpp/aspose.pdf.lowcode/tablerowbuilder/addcell/_index.md index 08c6f345e5..220e56e7d2 100644 --- a/english/cpp/aspose.pdf.plugins/tablerowbuilder/addcell/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tablerowbuilder/addcell/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TableRowBuilder::AddCell method +title: Aspose::Pdf::LowCode::TableRowBuilder::AddCell method linktitle: AddCell second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TableRowBuilder::AddCell method. Add cell to table row in C++.' +description: 'Aspose::Pdf::LowCode::TableRowBuilder::AddCell method. Add cell to table row in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/tablerowbuilder/addcell/ +url: /cpp/aspose.pdf.lowcode/tablerowbuilder/addcell/ --- ## TableRowBuilder::AddCell method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/tablerowbuilder/addcell/ Add cell to table row. ```cpp -virtual System::SharedPtr Aspose::Pdf::Plugins::TableRowBuilder::AddCell() +virtual System::SharedPtr Aspose::Pdf::LowCode::TableRowBuilder::AddCell() ``` @@ -26,5 +26,5 @@ Instance of created [TableCellBuilder](../../tablecellbuilder/). * Typedef [SharedPtr](../../../system/sharedptr/) * Class [TableCellBuilder](../../tablecellbuilder/) * Class [TableRowBuilder](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/tablerowbuilder/addrow/_index.md b/english/cpp/aspose.pdf.lowcode/tablerowbuilder/addrow/_index.md similarity index 59% rename from english/cpp/aspose.pdf.plugins/tablerowbuilder/addrow/_index.md rename to english/cpp/aspose.pdf.lowcode/tablerowbuilder/addrow/_index.md index b4238a74bd..47342db48b 100644 --- a/english/cpp/aspose.pdf.plugins/tablerowbuilder/addrow/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tablerowbuilder/addrow/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TableRowBuilder::AddRow method +title: Aspose::Pdf::LowCode::TableRowBuilder::AddRow method linktitle: AddRow second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TableRowBuilder::AddRow method. Overriding AddRow in C++.' +description: 'Aspose::Pdf::LowCode::TableRowBuilder::AddRow method. Overriding AddRow in C++.' type: docs weight: 200 -url: /cpp/aspose.pdf.plugins/tablerowbuilder/addrow/ +url: /cpp/aspose.pdf.lowcode/tablerowbuilder/addrow/ --- ## TableRowBuilder::AddRow method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/tablerowbuilder/addrow/ Overriding AddRow. ```cpp -System::SharedPtr Aspose::Pdf::Plugins::TableRowBuilder::AddRow() override +System::SharedPtr Aspose::Pdf::LowCode::TableRowBuilder::AddRow() override ``` @@ -26,5 +26,5 @@ Instance of current [TableRowBuilder](../). * Typedef [SharedPtr](../../../system/sharedptr/) * Class [TableRowBuilder](../) * Class [TableRowBuilder](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/textextractor/_index.md b/english/cpp/aspose.pdf.lowcode/textextractor/_index.md similarity index 58% rename from english/cpp/aspose.pdf.plugins/textextractor/_index.md rename to english/cpp/aspose.pdf.lowcode/textextractor/_index.md index 8454a1ee94..6a7b5107e1 100644 --- a/english/cpp/aspose.pdf.plugins/textextractor/_index.md +++ b/english/cpp/aspose.pdf.lowcode/textextractor/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TextExtractor class +title: Aspose::Pdf::LowCode::TextExtractor class linktitle: TextExtractor second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TextExtractor class. Represents TextExtractor plugin in C++.' +description: 'Aspose::Pdf::LowCode::TextExtractor class. Represents TextExtractor plugin in C++.' type: docs weight: 8600 -url: /cpp/aspose.pdf.plugins/textextractor/ +url: /cpp/aspose.pdf.lowcode/textextractor/ --- ## TextExtractor class @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/textextractor/ Represents [TextExtractor](./) plugin. ```cpp -class TextExtractor : public Aspose::Pdf::Plugins::PdfExtractor +class TextExtractor : public Aspose::Pdf::LowCode::PdfExtractor ``` ## Remarks @@ -23,5 +23,5 @@ The [TextExtractor](./) object is used to extract text in PDF documents. ## See Also * Class [PdfExtractor](../pdfextractor/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/textextractoroptions/_index.md b/english/cpp/aspose.pdf.lowcode/textextractoroptions/_index.md similarity index 83% rename from english/cpp/aspose.pdf.plugins/textextractoroptions/_index.md rename to english/cpp/aspose.pdf.lowcode/textextractoroptions/_index.md index 39571a1963..27869167ab 100644 --- a/english/cpp/aspose.pdf.plugins/textextractoroptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/textextractoroptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TextExtractorOptions class +title: Aspose::Pdf::LowCode::TextExtractorOptions class linktitle: TextExtractorOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TextExtractorOptions class. Represents text extraction options for the TextExtractor plugin in C++.' +description: 'Aspose::Pdf::LowCode::TextExtractorOptions class. Represents text extraction options for the TextExtractor plugin in C++.' type: docs weight: 8700 -url: /cpp/aspose.pdf.plugins/textextractoroptions/ +url: /cpp/aspose.pdf.lowcode/textextractoroptions/ --- ## TextExtractorOptions class @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/textextractoroptions/ Represents text extraction options for the [TextExtractor](../textextractor/) plugin. ```cpp -class TextExtractorOptions : public Aspose::Pdf::Plugins::PdfExtractorOptions +class TextExtractorOptions : public Aspose::Pdf::LowCode::PdfExtractorOptions ``` ## Enums @@ -36,5 +36,5 @@ The [TextExtractorOptions](./) object is used to set [TextFormattingMode](./text ## See Also * Class [PdfExtractorOptions](../pdfextractoroptions/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/textextractoroptions/get_formattingmode/_index.md b/english/cpp/aspose.pdf.lowcode/textextractoroptions/get_formattingmode/_index.md similarity index 59% rename from english/cpp/aspose.pdf.plugins/textextractoroptions/get_formattingmode/_index.md rename to english/cpp/aspose.pdf.lowcode/textextractoroptions/get_formattingmode/_index.md index d373d29dd2..89606b217f 100644 --- a/english/cpp/aspose.pdf.plugins/textextractoroptions/get_formattingmode/_index.md +++ b/english/cpp/aspose.pdf.lowcode/textextractoroptions/get_formattingmode/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TextExtractorOptions::get_FormattingMode method +title: Aspose::Pdf::LowCode::TextExtractorOptions::get_FormattingMode method linktitle: get_FormattingMode second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TextExtractorOptions::get_FormattingMode method. Gets formatting mode in C++.' +description: 'Aspose::Pdf::LowCode::TextExtractorOptions::get_FormattingMode method. Gets formatting mode in C++.' type: docs weight: 200 -url: /cpp/aspose.pdf.plugins/textextractoroptions/get_formattingmode/ +url: /cpp/aspose.pdf.lowcode/textextractoroptions/get_formattingmode/ --- ## TextExtractorOptions::get_FormattingMode method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/textextractoroptions/get_formattingmode/ Gets formatting mode. ```cpp -TextExtractorOptions::TextFormattingMode Aspose::Pdf::Plugins::TextExtractorOptions::get_FormattingMode() const +TextExtractorOptions::TextFormattingMode Aspose::Pdf::LowCode::TextExtractorOptions::get_FormattingMode() const ``` ## See Also * Enum [TextFormattingMode](../textformattingmode/) * Class [TextExtractorOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/textextractoroptions/get_operationname/_index.md b/english/cpp/aspose.pdf.lowcode/textextractoroptions/get_operationname/_index.md similarity index 58% rename from english/cpp/aspose.pdf.plugins/textextractoroptions/get_operationname/_index.md rename to english/cpp/aspose.pdf.lowcode/textextractoroptions/get_operationname/_index.md index d30652a420..ffc1f34da5 100644 --- a/english/cpp/aspose.pdf.plugins/textextractoroptions/get_operationname/_index.md +++ b/english/cpp/aspose.pdf.lowcode/textextractoroptions/get_operationname/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TextExtractorOptions::get_OperationName method +title: Aspose::Pdf::LowCode::TextExtractorOptions::get_OperationName method linktitle: get_OperationName second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TextExtractorOptions::get_OperationName method. Returns name of the operation in C++.' +description: 'Aspose::Pdf::LowCode::TextExtractorOptions::get_OperationName method. Returns name of the operation in C++.' type: docs weight: 300 -url: /cpp/aspose.pdf.plugins/textextractoroptions/get_operationname/ +url: /cpp/aspose.pdf.lowcode/textextractoroptions/get_operationname/ --- ## TextExtractorOptions::get_OperationName method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/textextractoroptions/get_operationname/ Returns name of the operation. ```cpp -System::String Aspose::Pdf::Plugins::TextExtractorOptions::get_OperationName() override +System::String Aspose::Pdf::LowCode::TextExtractorOptions::get_OperationName() override ``` ## See Also * Class [String](../../../system/string/) * Class [TextExtractorOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/textextractoroptions/textextractoroptions/_index.md b/english/cpp/aspose.pdf.lowcode/textextractoroptions/textextractoroptions/_index.md similarity index 72% rename from english/cpp/aspose.pdf.plugins/textextractoroptions/textextractoroptions/_index.md rename to english/cpp/aspose.pdf.lowcode/textextractoroptions/textextractoroptions/_index.md index 757cbcb5ca..61a7c01a0f 100644 --- a/english/cpp/aspose.pdf.plugins/textextractoroptions/textextractoroptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/textextractoroptions/textextractoroptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TextExtractorOptions::TextExtractorOptions constructor +title: Aspose::Pdf::LowCode::TextExtractorOptions::TextExtractorOptions constructor linktitle: TextExtractorOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TextExtractorOptions::TextExtractorOptions constructor. Initializes a new instance of the TextExtractorOptions object with ''Raw'' (default) text formatting mode in C++.' +description: 'Aspose::Pdf::LowCode::TextExtractorOptions::TextExtractorOptions constructor. Initializes a new instance of the TextExtractorOptions object with ''Raw'' (default) text formatting mode in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/textextractoroptions/textextractoroptions/ +url: /cpp/aspose.pdf.lowcode/textextractoroptions/textextractoroptions/ --- ## TextExtractorOptions::TextExtractorOptions() constructor @@ -13,13 +13,13 @@ url: /cpp/aspose.pdf.plugins/textextractoroptions/textextractoroptions/ Initializes a new instance of the [TextExtractorOptions ](../) object with 'Raw' (default) text formatting mode. ```cpp -Aspose::Pdf::Plugins::TextExtractorOptions::TextExtractorOptions() +Aspose::Pdf::LowCode::TextExtractorOptions::TextExtractorOptions() ``` ## See Also * Class [TextExtractorOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) ## TextExtractorOptions::TextExtractorOptions(TextExtractorOptions::TextFormattingMode) constructor @@ -27,7 +27,7 @@ Aspose::Pdf::Plugins::TextExtractorOptions::TextExtractorOptions() Initializes a new instance of the [TextExtractorOptions](../) object for the specified text formatting mode. ```cpp -Aspose::Pdf::Plugins::TextExtractorOptions::TextExtractorOptions(TextExtractorOptions::TextFormattingMode formattingMode) +Aspose::Pdf::LowCode::TextExtractorOptions::TextExtractorOptions(TextExtractorOptions::TextFormattingMode formattingMode) ``` @@ -39,5 +39,5 @@ Aspose::Pdf::Plugins::TextExtractorOptions::TextExtractorOptions(TextExtractorOp * Enum [TextFormattingMode](../textformattingmode/) * Class [TextExtractorOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/textextractoroptions/textformattingmode/_index.md b/english/cpp/aspose.pdf.lowcode/textextractoroptions/textformattingmode/_index.md similarity index 79% rename from english/cpp/aspose.pdf.plugins/textextractoroptions/textformattingmode/_index.md rename to english/cpp/aspose.pdf.lowcode/textextractoroptions/textformattingmode/_index.md index 0ccf09c3c0..861ac78ed5 100644 --- a/english/cpp/aspose.pdf.plugins/textextractoroptions/textformattingmode/_index.md +++ b/english/cpp/aspose.pdf.lowcode/textextractoroptions/textformattingmode/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TextExtractorOptions::TextFormattingMode enum +title: Aspose::Pdf::LowCode::TextExtractorOptions::TextFormattingMode enum linktitle: TextFormattingMode second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TextExtractorOptions::TextFormattingMode enum. Defines different modes which can be used while converting a PDF document into text. See TextExtractorOptions class in C++.' +description: 'Aspose::Pdf::LowCode::TextExtractorOptions::TextFormattingMode enum. Defines different modes which can be used while converting a PDF document into text. See TextExtractorOptions class in C++.' type: docs weight: 400 -url: /cpp/aspose.pdf.plugins/textextractoroptions/textformattingmode/ +url: /cpp/aspose.pdf.lowcode/textextractoroptions/textformattingmode/ --- ## TextFormattingMode enum @@ -27,5 +27,5 @@ enum class TextFormattingMode ## See Also * Class [TextExtractorOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/tiff/_index.md b/english/cpp/aspose.pdf.lowcode/tiff/_index.md similarity index 61% rename from english/cpp/aspose.pdf.plugins/tiff/_index.md rename to english/cpp/aspose.pdf.lowcode/tiff/_index.md index 13e2667895..f086b74ae9 100644 --- a/english/cpp/aspose.pdf.plugins/tiff/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tiff/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::Tiff class +title: Aspose::Pdf::LowCode::Tiff class linktitle: Tiff second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::Tiff class. Represents Pdf to Tiff plugin in C++.' +description: 'Aspose::Pdf::LowCode::Tiff class. Represents Pdf to Tiff plugin in C++.' type: docs weight: 8800 -url: /cpp/aspose.pdf.plugins/tiff/ +url: /cpp/aspose.pdf.lowcode/tiff/ --- ## Tiff class @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/tiff/ Represents [Pdf](../../aspose.pdf/) to [Tiff](./) plugin. ```cpp -class Tiff : public Aspose::Pdf::Plugins::PdfToImage +class Tiff : public Aspose::Pdf::LowCode::PdfToImage ``` ## Methods @@ -28,5 +28,5 @@ class. | ## See Also * Class [PdfToImage](../pdftoimage/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/tiff/tiff/_index.md b/english/cpp/aspose.pdf.lowcode/tiff/tiff/_index.md similarity index 54% rename from english/cpp/aspose.pdf.plugins/tiff/tiff/_index.md rename to english/cpp/aspose.pdf.lowcode/tiff/tiff/_index.md index 41591e5e5d..5f66887a12 100644 --- a/english/cpp/aspose.pdf.plugins/tiff/tiff/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tiff/tiff/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::Tiff::Tiff constructor +title: Aspose::Pdf::LowCode::Tiff::Tiff constructor linktitle: Tiff second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::Tiff::Tiff constructor. Creates a new instance of Tiffclass in C++.' +description: 'Aspose::Pdf::LowCode::Tiff::Tiff constructor. Creates a new instance of Tiffclass in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/tiff/tiff/ +url: /cpp/aspose.pdf.lowcode/tiff/tiff/ --- ## Tiff::Tiff constructor @@ -17,11 +17,11 @@ Creates a new instance of class. ```cpp -Aspose::Pdf::Plugins::Tiff::Tiff() +Aspose::Pdf::LowCode::Tiff::Tiff() ``` ## See Also * Class [Tiff](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/tiffoptions/_index.md b/english/cpp/aspose.pdf.lowcode/tiffoptions/_index.md similarity index 89% rename from english/cpp/aspose.pdf.plugins/tiffoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/tiffoptions/_index.md index a7c3a4301b..4399201b5b 100644 --- a/english/cpp/aspose.pdf.plugins/tiffoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tiffoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TiffOptions class +title: Aspose::Pdf::LowCode::TiffOptions class linktitle: TiffOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TiffOptions class. Represents Pdf to Tiff converter options for the Tiff plugin in C++.' +description: 'Aspose::Pdf::LowCode::TiffOptions class. Represents Pdf to Tiff converter options for the Tiff plugin in C++.' type: docs weight: 8900 -url: /cpp/aspose.pdf.plugins/tiffoptions/ +url: /cpp/aspose.pdf.lowcode/tiffoptions/ --- ## TiffOptions class @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/tiffoptions/ Represents [Pdf](../../aspose.pdf/) to [Tiff](../tiff/) converter options for the [Tiff](../tiff/) plugin. ```cpp -class TiffOptions : public Aspose::Pdf::Plugins::PdfToImageOptions +class TiffOptions : public Aspose::Pdf::LowCode::PdfToImageOptions ``` ## Methods @@ -39,5 +39,5 @@ class TiffOptions : public Aspose::Pdf::Plugins::PdfToImageOptions ## See Also * Class [PdfToImageOptions](../pdftoimageoptions/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/tiffoptions/get_brightness/_index.md b/english/cpp/aspose.pdf.lowcode/tiffoptions/get_brightness/_index.md similarity index 73% rename from english/cpp/aspose.pdf.plugins/tiffoptions/get_brightness/_index.md rename to english/cpp/aspose.pdf.lowcode/tiffoptions/get_brightness/_index.md index ac2eae9c48..f9f79b5c9a 100644 --- a/english/cpp/aspose.pdf.plugins/tiffoptions/get_brightness/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tiffoptions/get_brightness/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TiffOptions::get_Brightness method +title: Aspose::Pdf::LowCode::TiffOptions::get_Brightness method linktitle: get_Brightness second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TiffOptions::get_Brightness method. Get or sets a value boundary of the transformation of colors in white and black. This parameter can be applied with EncoderValue.CompressionCCITT4, EncoderValue.CompressionCCITT3, EncoderValue.CompressionRle or ColorDepth.Format1bpp == 1 in C++.' +description: 'Aspose::Pdf::LowCode::TiffOptions::get_Brightness method. Get or sets a value boundary of the transformation of colors in white and black. This parameter can be applied with EncoderValue.CompressionCCITT4, EncoderValue.CompressionCCITT3, EncoderValue.CompressionRle or ColorDepth.Format1bpp == 1 in C++.' type: docs weight: 200 -url: /cpp/aspose.pdf.plugins/tiffoptions/get_brightness/ +url: /cpp/aspose.pdf.lowcode/tiffoptions/get_brightness/ --- ## TiffOptions::get_Brightness method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/tiffoptions/get_brightness/ Get or sets a value boundary of the transformation of colors in white and black. This parameter can be applied with EncoderValue.CompressionCCITT4, EncoderValue.CompressionCCITT3, EncoderValue.CompressionRle or ColorDepth.Format1bpp == 1. ```cpp -float Aspose::Pdf::Plugins::TiffOptions::get_Brightness() +float Aspose::Pdf::LowCode::TiffOptions::get_Brightness() ``` ## Remarks @@ -23,5 +23,5 @@ Value of brightness should be in the range from 0 to 1. By default value is equa ## See Also * Class [TiffOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/tiffoptions/get_compression/_index.md b/english/cpp/aspose.pdf.lowcode/tiffoptions/get_compression/_index.md similarity index 61% rename from english/cpp/aspose.pdf.plugins/tiffoptions/get_compression/_index.md rename to english/cpp/aspose.pdf.lowcode/tiffoptions/get_compression/_index.md index d5ed50f5a8..7ede18cd9b 100644 --- a/english/cpp/aspose.pdf.plugins/tiffoptions/get_compression/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tiffoptions/get_compression/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TiffOptions::get_Compression method +title: Aspose::Pdf::LowCode::TiffOptions::get_Compression method linktitle: get_Compression second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TiffOptions::get_Compression method. Gets the type of the compression in C++.' +description: 'Aspose::Pdf::LowCode::TiffOptions::get_Compression method. Gets the type of the compression in C++.' type: docs weight: 300 -url: /cpp/aspose.pdf.plugins/tiffoptions/get_compression/ +url: /cpp/aspose.pdf.lowcode/tiffoptions/get_compression/ --- ## TiffOptions::get_Compression method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/tiffoptions/get_compression/ Gets the type of the compression. ```cpp -Devices::CompressionType Aspose::Pdf::Plugins::TiffOptions::get_Compression() +Devices::CompressionType Aspose::Pdf::LowCode::TiffOptions::get_Compression() ``` ## Remarks @@ -26,5 +26,5 @@ The type of the compression. * Enum [CompressionType](../../../aspose.pdf.devices/compressiontype/) * Class [TiffOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/tiffoptions/get_coordinatetype/_index.md b/english/cpp/aspose.pdf.lowcode/tiffoptions/get_coordinatetype/_index.md similarity index 63% rename from english/cpp/aspose.pdf.plugins/tiffoptions/get_coordinatetype/_index.md rename to english/cpp/aspose.pdf.lowcode/tiffoptions/get_coordinatetype/_index.md index 24df28dc22..3a2bae1ec5 100644 --- a/english/cpp/aspose.pdf.plugins/tiffoptions/get_coordinatetype/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tiffoptions/get_coordinatetype/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TiffOptions::get_CoordinateType method +title: Aspose::Pdf::LowCode::TiffOptions::get_CoordinateType method linktitle: get_CoordinateType second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TiffOptions::get_CoordinateType method. Get or sets the page coordinate type (Media/Crop boxes). CropBox value is used by default in C++.' +description: 'Aspose::Pdf::LowCode::TiffOptions::get_CoordinateType method. Get or sets the page coordinate type (Media/Crop boxes). CropBox value is used by default in C++.' type: docs weight: 400 -url: /cpp/aspose.pdf.plugins/tiffoptions/get_coordinatetype/ +url: /cpp/aspose.pdf.lowcode/tiffoptions/get_coordinatetype/ --- ## TiffOptions::get_CoordinateType method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/tiffoptions/get_coordinatetype/ Get or sets the page coordinate type (Media/Crop boxes). CropBox value is used by default. ```cpp -PageCoordinateType Aspose::Pdf::Plugins::TiffOptions::get_CoordinateType() +PageCoordinateType Aspose::Pdf::LowCode::TiffOptions::get_CoordinateType() ``` ## See Also * Enum [PageCoordinateType](../../../aspose.pdf/pagecoordinatetype/) * Class [TiffOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/tiffoptions/get_depth/_index.md b/english/cpp/aspose.pdf.lowcode/tiffoptions/get_depth/_index.md similarity index 57% rename from english/cpp/aspose.pdf.plugins/tiffoptions/get_depth/_index.md rename to english/cpp/aspose.pdf.lowcode/tiffoptions/get_depth/_index.md index 92f387451d..c41831d742 100644 --- a/english/cpp/aspose.pdf.plugins/tiffoptions/get_depth/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tiffoptions/get_depth/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TiffOptions::get_Depth method +title: Aspose::Pdf::LowCode::TiffOptions::get_Depth method linktitle: get_Depth second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TiffOptions::get_Depth method. Gets the color depth in C++.' +description: 'Aspose::Pdf::LowCode::TiffOptions::get_Depth method. Gets the color depth in C++.' type: docs weight: 500 -url: /cpp/aspose.pdf.plugins/tiffoptions/get_depth/ +url: /cpp/aspose.pdf.lowcode/tiffoptions/get_depth/ --- ## TiffOptions::get_Depth method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/tiffoptions/get_depth/ Gets the color depth. ```cpp -Devices::ColorDepth Aspose::Pdf::Plugins::TiffOptions::get_Depth() +Devices::ColorDepth Aspose::Pdf::LowCode::TiffOptions::get_Depth() ``` ## Remarks @@ -26,5 +26,5 @@ The color depth. * Enum [ColorDepth](../../../aspose.pdf.devices/colordepth/) * Class [TiffOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/tiffoptions/get_operationname/_index.md b/english/cpp/aspose.pdf.lowcode/tiffoptions/get_operationname/_index.md similarity index 55% rename from english/cpp/aspose.pdf.plugins/tiffoptions/get_operationname/_index.md rename to english/cpp/aspose.pdf.lowcode/tiffoptions/get_operationname/_index.md index 6a1f55360c..5e92b99067 100644 --- a/english/cpp/aspose.pdf.plugins/tiffoptions/get_operationname/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tiffoptions/get_operationname/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TiffOptions::get_OperationName method +title: Aspose::Pdf::LowCode::TiffOptions::get_OperationName method linktitle: get_OperationName second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TiffOptions::get_OperationName method. Returns name of the operation in C++.' +description: 'Aspose::Pdf::LowCode::TiffOptions::get_OperationName method. Returns name of the operation in C++.' type: docs weight: 600 -url: /cpp/aspose.pdf.plugins/tiffoptions/get_operationname/ +url: /cpp/aspose.pdf.lowcode/tiffoptions/get_operationname/ --- ## TiffOptions::get_OperationName method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/tiffoptions/get_operationname/ Returns name of the operation. ```cpp -System::String Aspose::Pdf::Plugins::TiffOptions::get_OperationName() override +System::String Aspose::Pdf::LowCode::TiffOptions::get_OperationName() override ``` ## See Also * Class [String](../../../system/string/) * Class [TiffOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/tiffoptions/get_saveasmultipagetiff/_index.md b/english/cpp/aspose.pdf.lowcode/tiffoptions/get_saveasmultipagetiff/_index.md similarity index 58% rename from english/cpp/aspose.pdf.plugins/tiffoptions/get_saveasmultipagetiff/_index.md rename to english/cpp/aspose.pdf.lowcode/tiffoptions/get_saveasmultipagetiff/_index.md index b274eb0173..8f08c725cb 100644 --- a/english/cpp/aspose.pdf.plugins/tiffoptions/get_saveasmultipagetiff/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tiffoptions/get_saveasmultipagetiff/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TiffOptions::get_SaveAsMultiPageTiff method +title: Aspose::Pdf::LowCode::TiffOptions::get_SaveAsMultiPageTiff method linktitle: get_SaveAsMultiPageTiff second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TiffOptions::get_SaveAsMultiPageTiff method. Gets and sets flag that allows to save all pages in one multi-page tiff in C++.' +description: 'Aspose::Pdf::LowCode::TiffOptions::get_SaveAsMultiPageTiff method. Gets and sets flag that allows to save all pages in one multi-page tiff in C++.' type: docs weight: 700 -url: /cpp/aspose.pdf.plugins/tiffoptions/get_saveasmultipagetiff/ +url: /cpp/aspose.pdf.lowcode/tiffoptions/get_saveasmultipagetiff/ --- ## TiffOptions::get_SaveAsMultiPageTiff method @@ -13,11 +13,11 @@ url: /cpp/aspose.pdf.plugins/tiffoptions/get_saveasmultipagetiff/ Gets and sets flag that allows to save all pages in one multi-page tiff. ```cpp -bool Aspose::Pdf::Plugins::TiffOptions::get_SaveAsMultiPageTiff() const +bool Aspose::Pdf::LowCode::TiffOptions::get_SaveAsMultiPageTiff() const ``` ## See Also * Class [TiffOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/tiffoptions/get_shape/_index.md b/english/cpp/aspose.pdf.lowcode/tiffoptions/get_shape/_index.md similarity index 58% rename from english/cpp/aspose.pdf.plugins/tiffoptions/get_shape/_index.md rename to english/cpp/aspose.pdf.lowcode/tiffoptions/get_shape/_index.md index 0e6f781aca..1b5dda1d83 100644 --- a/english/cpp/aspose.pdf.plugins/tiffoptions/get_shape/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tiffoptions/get_shape/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TiffOptions::get_Shape method +title: Aspose::Pdf::LowCode::TiffOptions::get_Shape method linktitle: get_Shape second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TiffOptions::get_Shape method. Gets the type of the shape in C++.' +description: 'Aspose::Pdf::LowCode::TiffOptions::get_Shape method. Gets the type of the shape in C++.' type: docs weight: 800 -url: /cpp/aspose.pdf.plugins/tiffoptions/get_shape/ +url: /cpp/aspose.pdf.lowcode/tiffoptions/get_shape/ --- ## TiffOptions::get_Shape method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/tiffoptions/get_shape/ Gets the type of the shape. ```cpp -Devices::ShapeType Aspose::Pdf::Plugins::TiffOptions::get_Shape() +Devices::ShapeType Aspose::Pdf::LowCode::TiffOptions::get_Shape() ``` ## Remarks @@ -26,5 +26,5 @@ The type of the shape. * Enum [ShapeType](../../../aspose.pdf.devices/shapetype/) * Class [TiffOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/tiffoptions/get_skipblankpages/_index.md b/english/cpp/aspose.pdf.lowcode/tiffoptions/get_skipblankpages/_index.md similarity index 60% rename from english/cpp/aspose.pdf.plugins/tiffoptions/get_skipblankpages/_index.md rename to english/cpp/aspose.pdf.lowcode/tiffoptions/get_skipblankpages/_index.md index a34f358e97..cc6293b058 100644 --- a/english/cpp/aspose.pdf.plugins/tiffoptions/get_skipblankpages/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tiffoptions/get_skipblankpages/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TiffOptions::get_SkipBlankPages method +title: Aspose::Pdf::LowCode::TiffOptions::get_SkipBlankPages method linktitle: get_SkipBlankPages second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TiffOptions::get_SkipBlankPages method. Gets a value indicating whether to skip blank pages in C++.' +description: 'Aspose::Pdf::LowCode::TiffOptions::get_SkipBlankPages method. Gets a value indicating whether to skip blank pages in C++.' type: docs weight: 900 -url: /cpp/aspose.pdf.plugins/tiffoptions/get_skipblankpages/ +url: /cpp/aspose.pdf.lowcode/tiffoptions/get_skipblankpages/ --- ## TiffOptions::get_SkipBlankPages method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/tiffoptions/get_skipblankpages/ Gets a value indicating whether to skip blank pages. ```cpp -bool Aspose::Pdf::Plugins::TiffOptions::get_SkipBlankPages() +bool Aspose::Pdf::LowCode::TiffOptions::get_SkipBlankPages() ``` ## Remarks @@ -25,5 +25,5 @@ Default value is false ## See Also * Class [TiffOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/tiffoptions/set_brightness/_index.md b/english/cpp/aspose.pdf.lowcode/tiffoptions/set_brightness/_index.md similarity index 73% rename from english/cpp/aspose.pdf.plugins/tiffoptions/set_brightness/_index.md rename to english/cpp/aspose.pdf.lowcode/tiffoptions/set_brightness/_index.md index 634af6d882..5921a36d84 100644 --- a/english/cpp/aspose.pdf.plugins/tiffoptions/set_brightness/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tiffoptions/set_brightness/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TiffOptions::set_Brightness method +title: Aspose::Pdf::LowCode::TiffOptions::set_Brightness method linktitle: set_Brightness second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TiffOptions::set_Brightness method. Get or sets a value boundary of the transformation of colors in white and black. This parameter can be applied with EncoderValue.CompressionCCITT4, EncoderValue.CompressionCCITT3, EncoderValue.CompressionRle or ColorDepth.Format1bpp == 1 in C++.' +description: 'Aspose::Pdf::LowCode::TiffOptions::set_Brightness method. Get or sets a value boundary of the transformation of colors in white and black. This parameter can be applied with EncoderValue.CompressionCCITT4, EncoderValue.CompressionCCITT3, EncoderValue.CompressionRle or ColorDepth.Format1bpp == 1 in C++.' type: docs weight: 1000 -url: /cpp/aspose.pdf.plugins/tiffoptions/set_brightness/ +url: /cpp/aspose.pdf.lowcode/tiffoptions/set_brightness/ --- ## TiffOptions::set_Brightness method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/tiffoptions/set_brightness/ Get or sets a value boundary of the transformation of colors in white and black. This parameter can be applied with EncoderValue.CompressionCCITT4, EncoderValue.CompressionCCITT3, EncoderValue.CompressionRle or ColorDepth.Format1bpp == 1. ```cpp -void Aspose::Pdf::Plugins::TiffOptions::set_Brightness(float value) +void Aspose::Pdf::LowCode::TiffOptions::set_Brightness(float value) ``` ## Remarks @@ -23,5 +23,5 @@ Value of brightness should be in the range from 0 to 1. By default value is equa ## See Also * Class [TiffOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/tiffoptions/set_compression/_index.md b/english/cpp/aspose.pdf.lowcode/tiffoptions/set_compression/_index.md similarity index 61% rename from english/cpp/aspose.pdf.plugins/tiffoptions/set_compression/_index.md rename to english/cpp/aspose.pdf.lowcode/tiffoptions/set_compression/_index.md index 7571bc7a31..0136add69e 100644 --- a/english/cpp/aspose.pdf.plugins/tiffoptions/set_compression/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tiffoptions/set_compression/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TiffOptions::set_Compression method +title: Aspose::Pdf::LowCode::TiffOptions::set_Compression method linktitle: set_Compression second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TiffOptions::set_Compression method. Sets the type of the compression in C++.' +description: 'Aspose::Pdf::LowCode::TiffOptions::set_Compression method. Sets the type of the compression in C++.' type: docs weight: 1100 -url: /cpp/aspose.pdf.plugins/tiffoptions/set_compression/ +url: /cpp/aspose.pdf.lowcode/tiffoptions/set_compression/ --- ## TiffOptions::set_Compression method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/tiffoptions/set_compression/ Sets the type of the compression. ```cpp -void Aspose::Pdf::Plugins::TiffOptions::set_Compression(Devices::CompressionType value) +void Aspose::Pdf::LowCode::TiffOptions::set_Compression(Devices::CompressionType value) ``` ## Remarks @@ -26,5 +26,5 @@ The type of the compression. * Enum [CompressionType](../../../aspose.pdf.devices/compressiontype/) * Class [TiffOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/tiffoptions/set_coordinatetype/_index.md b/english/cpp/aspose.pdf.lowcode/tiffoptions/set_coordinatetype/_index.md similarity index 63% rename from english/cpp/aspose.pdf.plugins/tiffoptions/set_coordinatetype/_index.md rename to english/cpp/aspose.pdf.lowcode/tiffoptions/set_coordinatetype/_index.md index 1dd0dc15da..7e4f5a4dde 100644 --- a/english/cpp/aspose.pdf.plugins/tiffoptions/set_coordinatetype/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tiffoptions/set_coordinatetype/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TiffOptions::set_CoordinateType method +title: Aspose::Pdf::LowCode::TiffOptions::set_CoordinateType method linktitle: set_CoordinateType second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TiffOptions::set_CoordinateType method. Get or sets the page coordinate type (Media/Crop boxes). CropBox value is used by default in C++.' +description: 'Aspose::Pdf::LowCode::TiffOptions::set_CoordinateType method. Get or sets the page coordinate type (Media/Crop boxes). CropBox value is used by default in C++.' type: docs weight: 1200 -url: /cpp/aspose.pdf.plugins/tiffoptions/set_coordinatetype/ +url: /cpp/aspose.pdf.lowcode/tiffoptions/set_coordinatetype/ --- ## TiffOptions::set_CoordinateType method @@ -13,12 +13,12 @@ url: /cpp/aspose.pdf.plugins/tiffoptions/set_coordinatetype/ Get or sets the page coordinate type (Media/Crop boxes). CropBox value is used by default. ```cpp -void Aspose::Pdf::Plugins::TiffOptions::set_CoordinateType(PageCoordinateType value) +void Aspose::Pdf::LowCode::TiffOptions::set_CoordinateType(PageCoordinateType value) ``` ## See Also * Enum [PageCoordinateType](../../../aspose.pdf/pagecoordinatetype/) * Class [TiffOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/tiffoptions/set_depth/_index.md b/english/cpp/aspose.pdf.lowcode/tiffoptions/set_depth/_index.md similarity index 58% rename from english/cpp/aspose.pdf.plugins/tiffoptions/set_depth/_index.md rename to english/cpp/aspose.pdf.lowcode/tiffoptions/set_depth/_index.md index 40448b05b8..a41f81772e 100644 --- a/english/cpp/aspose.pdf.plugins/tiffoptions/set_depth/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tiffoptions/set_depth/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TiffOptions::set_Depth method +title: Aspose::Pdf::LowCode::TiffOptions::set_Depth method linktitle: set_Depth second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TiffOptions::set_Depth method. Sets the color depth in C++.' +description: 'Aspose::Pdf::LowCode::TiffOptions::set_Depth method. Sets the color depth in C++.' type: docs weight: 1300 -url: /cpp/aspose.pdf.plugins/tiffoptions/set_depth/ +url: /cpp/aspose.pdf.lowcode/tiffoptions/set_depth/ --- ## TiffOptions::set_Depth method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/tiffoptions/set_depth/ Sets the color depth. ```cpp -void Aspose::Pdf::Plugins::TiffOptions::set_Depth(Devices::ColorDepth value) +void Aspose::Pdf::LowCode::TiffOptions::set_Depth(Devices::ColorDepth value) ``` ## Remarks @@ -26,5 +26,5 @@ The color depth. * Enum [ColorDepth](../../../aspose.pdf.devices/colordepth/) * Class [TiffOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/tiffoptions/set_saveasmultipagetiff/_index.md b/english/cpp/aspose.pdf.lowcode/tiffoptions/set_saveasmultipagetiff/_index.md similarity index 59% rename from english/cpp/aspose.pdf.plugins/tiffoptions/set_saveasmultipagetiff/_index.md rename to english/cpp/aspose.pdf.lowcode/tiffoptions/set_saveasmultipagetiff/_index.md index 0953b869a1..6386e7b380 100644 --- a/english/cpp/aspose.pdf.plugins/tiffoptions/set_saveasmultipagetiff/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tiffoptions/set_saveasmultipagetiff/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TiffOptions::set_SaveAsMultiPageTiff method +title: Aspose::Pdf::LowCode::TiffOptions::set_SaveAsMultiPageTiff method linktitle: set_SaveAsMultiPageTiff second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TiffOptions::set_SaveAsMultiPageTiff method. Gets and sets flag that allows to save all pages in one multi-page tiff in C++.' +description: 'Aspose::Pdf::LowCode::TiffOptions::set_SaveAsMultiPageTiff method. Gets and sets flag that allows to save all pages in one multi-page tiff in C++.' type: docs weight: 1400 -url: /cpp/aspose.pdf.plugins/tiffoptions/set_saveasmultipagetiff/ +url: /cpp/aspose.pdf.lowcode/tiffoptions/set_saveasmultipagetiff/ --- ## TiffOptions::set_SaveAsMultiPageTiff method @@ -13,11 +13,11 @@ url: /cpp/aspose.pdf.plugins/tiffoptions/set_saveasmultipagetiff/ Gets and sets flag that allows to save all pages in one multi-page tiff. ```cpp -void Aspose::Pdf::Plugins::TiffOptions::set_SaveAsMultiPageTiff(bool value) +void Aspose::Pdf::LowCode::TiffOptions::set_SaveAsMultiPageTiff(bool value) ``` ## See Also * Class [TiffOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/tiffoptions/set_shape/_index.md b/english/cpp/aspose.pdf.lowcode/tiffoptions/set_shape/_index.md similarity index 59% rename from english/cpp/aspose.pdf.plugins/tiffoptions/set_shape/_index.md rename to english/cpp/aspose.pdf.lowcode/tiffoptions/set_shape/_index.md index da7fe6d4c9..23c58b3dec 100644 --- a/english/cpp/aspose.pdf.plugins/tiffoptions/set_shape/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tiffoptions/set_shape/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TiffOptions::set_Shape method +title: Aspose::Pdf::LowCode::TiffOptions::set_Shape method linktitle: set_Shape second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TiffOptions::set_Shape method. Sets the type of the shape in C++.' +description: 'Aspose::Pdf::LowCode::TiffOptions::set_Shape method. Sets the type of the shape in C++.' type: docs weight: 1500 -url: /cpp/aspose.pdf.plugins/tiffoptions/set_shape/ +url: /cpp/aspose.pdf.lowcode/tiffoptions/set_shape/ --- ## TiffOptions::set_Shape method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/tiffoptions/set_shape/ Sets the type of the shape. ```cpp -void Aspose::Pdf::Plugins::TiffOptions::set_Shape(Devices::ShapeType value) +void Aspose::Pdf::LowCode::TiffOptions::set_Shape(Devices::ShapeType value) ``` ## Remarks @@ -26,5 +26,5 @@ The type of the shape. * Enum [ShapeType](../../../aspose.pdf.devices/shapetype/) * Class [TiffOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/tiffoptions/set_skipblankpages/_index.md b/english/cpp/aspose.pdf.lowcode/tiffoptions/set_skipblankpages/_index.md similarity index 60% rename from english/cpp/aspose.pdf.plugins/tiffoptions/set_skipblankpages/_index.md rename to english/cpp/aspose.pdf.lowcode/tiffoptions/set_skipblankpages/_index.md index 44830a7c64..2c7a94f3b2 100644 --- a/english/cpp/aspose.pdf.plugins/tiffoptions/set_skipblankpages/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tiffoptions/set_skipblankpages/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TiffOptions::set_SkipBlankPages method +title: Aspose::Pdf::LowCode::TiffOptions::set_SkipBlankPages method linktitle: set_SkipBlankPages second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TiffOptions::set_SkipBlankPages method. Sets a value indicating whether to skip blank pages in C++.' +description: 'Aspose::Pdf::LowCode::TiffOptions::set_SkipBlankPages method. Sets a value indicating whether to skip blank pages in C++.' type: docs weight: 1600 -url: /cpp/aspose.pdf.plugins/tiffoptions/set_skipblankpages/ +url: /cpp/aspose.pdf.lowcode/tiffoptions/set_skipblankpages/ --- ## TiffOptions::set_SkipBlankPages method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/tiffoptions/set_skipblankpages/ Sets a value indicating whether to skip blank pages. ```cpp -void Aspose::Pdf::Plugins::TiffOptions::set_SkipBlankPages(bool value) +void Aspose::Pdf::LowCode::TiffOptions::set_SkipBlankPages(bool value) ``` ## Remarks @@ -25,5 +25,5 @@ Default value is false ## See Also * Class [TiffOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/tiffoptions/tiffoptions/_index.md b/english/cpp/aspose.pdf.lowcode/tiffoptions/tiffoptions/_index.md similarity index 56% rename from english/cpp/aspose.pdf.plugins/tiffoptions/tiffoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/tiffoptions/tiffoptions/_index.md index b408934da2..3f58a2b1e3 100644 --- a/english/cpp/aspose.pdf.plugins/tiffoptions/tiffoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tiffoptions/tiffoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TiffOptions::TiffOptions constructor +title: Aspose::Pdf::LowCode::TiffOptions::TiffOptions constructor linktitle: TiffOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TiffOptions::TiffOptions constructor. Initializes a new instance of the TiffOptions object in C++.' +description: 'Aspose::Pdf::LowCode::TiffOptions::TiffOptions constructor. Initializes a new instance of the TiffOptions object in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/tiffoptions/tiffoptions/ +url: /cpp/aspose.pdf.lowcode/tiffoptions/tiffoptions/ --- ## TiffOptions::TiffOptions constructor @@ -13,11 +13,11 @@ url: /cpp/aspose.pdf.plugins/tiffoptions/tiffoptions/ Initializes a new instance of the [TiffOptions](../) object. ```cpp -Aspose::Pdf::Plugins::TiffOptions::TiffOptions() +Aspose::Pdf::LowCode::TiffOptions::TiffOptions() ``` ## See Also * Class [TiffOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/tocgenerator/_index.md b/english/cpp/aspose.pdf.lowcode/tocgenerator/_index.md similarity index 72% rename from english/cpp/aspose.pdf.plugins/tocgenerator/_index.md rename to english/cpp/aspose.pdf.lowcode/tocgenerator/_index.md index 0b2573b56d..78176dbbda 100644 --- a/english/cpp/aspose.pdf.plugins/tocgenerator/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tocgenerator/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TocGenerator class +title: Aspose::Pdf::LowCode::TocGenerator class linktitle: TocGenerator second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TocGenerator class. Represents Aspose.PDF TocGenerator plugin in C++.' +description: 'Aspose::Pdf::LowCode::TocGenerator class. Represents Aspose.PDF TocGenerator plugin in C++.' type: docs weight: 9000 -url: /cpp/aspose.pdf.plugins/tocgenerator/ +url: /cpp/aspose.pdf.lowcode/tocgenerator/ --- ## TocGenerator class @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/tocgenerator/ Represents Aspose.PDF [TocGenerator](./) plugin. ```cpp -class TocGenerator : public Aspose::Pdf::Plugins::IPlugin, +class TocGenerator : public Aspose::Pdf::LowCode::IPlugin, public System::IDisposable ``` @@ -27,5 +27,5 @@ class TocGenerator : public Aspose::Pdf::Plugins::IPlugin, * Class [IPlugin](../iplugin/) * Class [IDisposable](../../system/idisposable/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/tocgenerator/dispose/_index.md b/english/cpp/aspose.pdf.lowcode/tocgenerator/dispose/_index.md similarity index 57% rename from english/cpp/aspose.pdf.plugins/tocgenerator/dispose/_index.md rename to english/cpp/aspose.pdf.lowcode/tocgenerator/dispose/_index.md index 48f3929dda..ff0da6c449 100644 --- a/english/cpp/aspose.pdf.plugins/tocgenerator/dispose/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tocgenerator/dispose/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TocGenerator::Dispose method +title: Aspose::Pdf::LowCode::TocGenerator::Dispose method linktitle: Dispose second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TocGenerator::Dispose method. Implementation of IDisposable. In fact, it is not necessary for TocGenerator in C++.' +description: 'Aspose::Pdf::LowCode::TocGenerator::Dispose method. Implementation of IDisposable. In fact, it is not necessary for TocGenerator in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/tocgenerator/dispose/ +url: /cpp/aspose.pdf.lowcode/tocgenerator/dispose/ --- ## TocGenerator::Dispose method @@ -13,11 +13,11 @@ url: /cpp/aspose.pdf.plugins/tocgenerator/dispose/ Implementation of IDisposable. In fact, it is not necessary for [TocGenerator](../). ```cpp -void Aspose::Pdf::Plugins::TocGenerator::Dispose() override +void Aspose::Pdf::LowCode::TocGenerator::Dispose() override ``` ## See Also * Class [TocGenerator](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/tocgenerator/process/_index.md b/english/cpp/aspose.pdf.lowcode/tocgenerator/process/_index.md similarity index 73% rename from english/cpp/aspose.pdf.plugins/tocgenerator/process/_index.md rename to english/cpp/aspose.pdf.lowcode/tocgenerator/process/_index.md index b44e24ed32..d024bfb5f0 100644 --- a/english/cpp/aspose.pdf.plugins/tocgenerator/process/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tocgenerator/process/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TocGenerator::Process method +title: Aspose::Pdf::LowCode::TocGenerator::Process method linktitle: Process second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TocGenerator::Process method. Starts the PdfGenerator processing with the specified parameters in C++.' +description: 'Aspose::Pdf::LowCode::TocGenerator::Process method. Starts the PdfGenerator processing with the specified parameters in C++.' type: docs weight: 200 -url: /cpp/aspose.pdf.plugins/tocgenerator/process/ +url: /cpp/aspose.pdf.lowcode/tocgenerator/process/ --- ## TocGenerator::Process method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/tocgenerator/process/ Starts the PdfGenerator processing with the specified parameters. ```cpp -System::SharedPtr Aspose::Pdf::Plugins::TocGenerator::Process(System::SharedPtr options) override +System::SharedPtr Aspose::Pdf::LowCode::TocGenerator::Process(System::SharedPtr options) override ``` @@ -31,5 +31,5 @@ An [ResultContainer](../../resultcontainer/) object contains the result of the o * Class [ResultContainer](../../resultcontainer/) * Class [IPluginOptions](../../ipluginoptions/) * Class [TocGenerator](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/tocoptions/_index.md b/english/cpp/aspose.pdf.lowcode/tocoptions/_index.md similarity index 68% rename from english/cpp/aspose.pdf.plugins/tocoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/tocoptions/_index.md index 07195697f6..4c0971194d 100644 --- a/english/cpp/aspose.pdf.plugins/tocoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tocoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TocOptions class +title: Aspose::Pdf::LowCode::TocOptions class linktitle: TocOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TocOptions class. Represents options for add table of contents to document by TocGenerator plugin in C++.' +description: 'Aspose::Pdf::LowCode::TocOptions class. Represents options for add table of contents to document by TocGenerator plugin in C++.' type: docs weight: 9100 -url: /cpp/aspose.pdf.plugins/tocoptions/ +url: /cpp/aspose.pdf.lowcode/tocoptions/ --- ## TocOptions class @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/tocoptions/ Represents options for add table of contents to document by [TocGenerator](../tocgenerator/) plugin. ```cpp -class TocOptions : public Aspose::Pdf::Plugins::PdfGeneratorOptions +class TocOptions : public Aspose::Pdf::LowCode::PdfGeneratorOptions ``` ## Methods @@ -24,5 +24,5 @@ class TocOptions : public Aspose::Pdf::Plugins::PdfGeneratorOptions ## See Also * Class [PdfGeneratorOptions](../pdfgeneratoroptions/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/tocoptions/tocoptions/_index.md b/english/cpp/aspose.pdf.lowcode/tocoptions/tocoptions/_index.md similarity index 58% rename from english/cpp/aspose.pdf.plugins/tocoptions/tocoptions/_index.md rename to english/cpp/aspose.pdf.lowcode/tocoptions/tocoptions/_index.md index 4212275820..3c3df1d199 100644 --- a/english/cpp/aspose.pdf.plugins/tocoptions/tocoptions/_index.md +++ b/english/cpp/aspose.pdf.lowcode/tocoptions/tocoptions/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::TocOptions::TocOptions constructor +title: Aspose::Pdf::LowCode::TocOptions::TocOptions constructor linktitle: TocOptions second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::TocOptions::TocOptions constructor. Initializes new instance of the TocOptions object with default options in C++.' +description: 'Aspose::Pdf::LowCode::TocOptions::TocOptions constructor. Initializes new instance of the TocOptions object with default options in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/tocoptions/tocoptions/ +url: /cpp/aspose.pdf.lowcode/tocoptions/tocoptions/ --- ## TocOptions::TocOptions constructor @@ -13,11 +13,11 @@ url: /cpp/aspose.pdf.plugins/tocoptions/tocoptions/ Initializes new instance of the [TocOptions](../) object with default options. ```cpp -Aspose::Pdf::Plugins::TocOptions::TocOptions() +Aspose::Pdf::LowCode::TocOptions::TocOptions() ``` ## See Also * Class [TocOptions](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/xlsconverter/_index.md b/english/cpp/aspose.pdf.lowcode/xlsconverter/_index.md similarity index 70% rename from english/cpp/aspose.pdf.plugins/xlsconverter/_index.md rename to english/cpp/aspose.pdf.lowcode/xlsconverter/_index.md index 6ab45e5ff7..7f8489f0cc 100644 --- a/english/cpp/aspose.pdf.plugins/xlsconverter/_index.md +++ b/english/cpp/aspose.pdf.lowcode/xlsconverter/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::XlsConverter class +title: Aspose::Pdf::LowCode::XlsConverter class linktitle: XlsConverter second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::XlsConverter class. Represents XlsConverter plugin in C++.' +description: 'Aspose::Pdf::LowCode::XlsConverter class. Represents XlsConverter plugin in C++.' type: docs weight: 9200 -url: /cpp/aspose.pdf.plugins/xlsconverter/ +url: /cpp/aspose.pdf.lowcode/xlsconverter/ --- ## XlsConverter class @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/xlsconverter/ Represents [XlsConverter](./) plugin. ```cpp -class XlsConverter : public Aspose::Pdf::Plugins::IPlugin, +class XlsConverter : public Aspose::Pdf::LowCode::IPlugin, public System::IDisposable ``` @@ -27,5 +27,5 @@ class XlsConverter : public Aspose::Pdf::Plugins::IPlugin, * Class [IPlugin](../iplugin/) * Class [IDisposable](../../system/idisposable/) -* Namespace [Aspose::Pdf::Plugins](../) +* Namespace [Aspose::Pdf::LowCode](../) * Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/xlsconverter/dispose/_index.md b/english/cpp/aspose.pdf.lowcode/xlsconverter/dispose/_index.md similarity index 50% rename from english/cpp/aspose.pdf.plugins/xlsconverter/dispose/_index.md rename to english/cpp/aspose.pdf.lowcode/xlsconverter/dispose/_index.md index 9cc8975c75..8ef429a1a9 100644 --- a/english/cpp/aspose.pdf.plugins/xlsconverter/dispose/_index.md +++ b/english/cpp/aspose.pdf.lowcode/xlsconverter/dispose/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::XlsConverter::Dispose method +title: Aspose::Pdf::LowCode::XlsConverter::Dispose method linktitle: Dispose second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::XlsConverter::Dispose method. Implementation of IDisposable in C++.' +description: 'Aspose::Pdf::LowCode::XlsConverter::Dispose method. Implementation of IDisposable in C++.' type: docs weight: 100 -url: /cpp/aspose.pdf.plugins/xlsconverter/dispose/ +url: /cpp/aspose.pdf.lowcode/xlsconverter/dispose/ --- ## XlsConverter::Dispose method @@ -13,11 +13,11 @@ url: /cpp/aspose.pdf.plugins/xlsconverter/dispose/ Implementation of IDisposable. ```cpp -void Aspose::Pdf::Plugins::XlsConverter::Dispose() override +void Aspose::Pdf::LowCode::XlsConverter::Dispose() override ``` ## See Also * Class [XlsConverter](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.plugins/xlsconverter/process/_index.md b/english/cpp/aspose.pdf.lowcode/xlsconverter/process/_index.md similarity index 73% rename from english/cpp/aspose.pdf.plugins/xlsconverter/process/_index.md rename to english/cpp/aspose.pdf.lowcode/xlsconverter/process/_index.md index 5b56efd48a..ace5c20ddd 100644 --- a/english/cpp/aspose.pdf.plugins/xlsconverter/process/_index.md +++ b/english/cpp/aspose.pdf.lowcode/xlsconverter/process/_index.md @@ -1,11 +1,11 @@ --- -title: Aspose::Pdf::Plugins::XlsConverter::Process method +title: Aspose::Pdf::LowCode::XlsConverter::Process method linktitle: Process second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Plugins::XlsConverter::Process method. Starts the PdfToExcel processing with the specified parameters in C++.' +description: 'Aspose::Pdf::LowCode::XlsConverter::Process method. Starts the PdfToExcel processing with the specified parameters in C++.' type: docs weight: 200 -url: /cpp/aspose.pdf.plugins/xlsconverter/process/ +url: /cpp/aspose.pdf.lowcode/xlsconverter/process/ --- ## XlsConverter::Process method @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf.plugins/xlsconverter/process/ Starts the PdfToExcel processing with the specified parameters. ```cpp -System::SharedPtr Aspose::Pdf::Plugins::XlsConverter::Process(System::SharedPtr options) override +System::SharedPtr Aspose::Pdf::LowCode::XlsConverter::Process(System::SharedPtr options) override ``` @@ -31,5 +31,5 @@ An [ResultContainer](../../resultcontainer/) object containing the result of the * Class [ResultContainer](../../resultcontainer/) * Class [IPluginOptions](../../ipluginoptions/) * Class [XlsConverter](../) -* Namespace [Aspose::Pdf::Plugins](../../) +* Namespace [Aspose::Pdf::LowCode](../../) * Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.multithreading/_index.md b/english/cpp/aspose.pdf.multithreading/_index.md index d98c83efba..a8df6949f7 100644 --- a/english/cpp/aspose.pdf.multithreading/_index.md +++ b/english/cpp/aspose.pdf.multithreading/_index.md @@ -4,7 +4,7 @@ linktitle: Aspose::Pdf::Multithreading second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Multithreading namespace. The Aspose.Pdf.Multithreading namespace provides classes that are meant to be used in multi-threaded scenarios in C++.' type: docs -weight: 1300 +weight: 1500 url: /cpp/aspose.pdf.multithreading/ --- diff --git a/english/cpp/aspose.pdf.operators/_index.md b/english/cpp/aspose.pdf.operators/_index.md index a8b0c64f7f..7d6c79c708 100644 --- a/english/cpp/aspose.pdf.operators/_index.md +++ b/english/cpp/aspose.pdf.operators/_index.md @@ -4,7 +4,7 @@ linktitle: Aspose::Pdf::Operators second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Operators namespace. The Aspose.Pdf.Operators is a namespace for Operator implementations. These classes describes operators used in PDF page contents in C++.' type: docs -weight: 1400 +weight: 1600 url: /cpp/aspose.pdf.operators/ --- diff --git a/english/cpp/aspose.pdf.optimization/_index.md b/english/cpp/aspose.pdf.optimization/_index.md index 6faf84d891..fafc6f2694 100644 --- a/english/cpp/aspose.pdf.optimization/_index.md +++ b/english/cpp/aspose.pdf.optimization/_index.md @@ -4,7 +4,7 @@ linktitle: Aspose::Pdf::Optimization second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Optimization namespace. The Aspose.Pdf.Optimization is a namespace for classes for managing of document optimization process in C++.' type: docs -weight: 1500 +weight: 1700 url: /cpp/aspose.pdf.optimization/ --- diff --git a/english/cpp/aspose.pdf.optimization/optimizationoptions/get_linkduplcatestreams/_index.md b/english/cpp/aspose.pdf.optimization/optimizationoptions/get_linkduplcatestreams/_index.md deleted file mode 100644 index 831f59caa4..0000000000 --- a/english/cpp/aspose.pdf.optimization/optimizationoptions/get_linkduplcatestreams/_index.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: Aspose::Pdf::Optimization::OptimizationOptions::get_LinkDuplcateStreams method -linktitle: get_LinkDuplcateStreams -second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Optimization::OptimizationOptions::get_LinkDuplcateStreams method. Obsolete! Use LinkDuplicateStreams instead in C++.' -type: docs -weight: 800 -url: /cpp/aspose.pdf.optimization/optimizationoptions/get_linkduplcatestreams/ ---- -## OptimizationOptions::get_LinkDuplcateStreams method - - -Obsolete! Use LinkDuplicateStreams instead. - -```cpp -bool Aspose::Pdf::Optimization::OptimizationOptions::get_LinkDuplcateStreams() const -``` - - -## Deprecated -Use LinkDuplicateStreams instead. - -## See Also - -* Class [OptimizationOptions](../) -* Namespace [Aspose::Pdf::Optimization](../../) -* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.optimization/optimizationoptions/get_linkduplicatestreamsscanlevel/_index.md b/english/cpp/aspose.pdf.optimization/optimizationoptions/get_linkduplicatestreamsscanlevel/_index.md deleted file mode 100644 index c1921a22aa..0000000000 --- a/english/cpp/aspose.pdf.optimization/optimizationoptions/get_linkduplicatestreamsscanlevel/_index.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -title: Aspose::Pdf::Optimization::OptimizationOptions::get_LinkDuplicateStreamsScanLevel method -linktitle: get_LinkDuplicateStreamsScanLevel -second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Optimization::OptimizationOptions::get_LinkDuplicateStreamsScanLevel method. Level of scanning. Deeper scans (higher value) take longer but may produce smaller result files. Default value: 10 in C++.' -type: docs -weight: 900 -url: /cpp/aspose.pdf.optimization/optimizationoptions/get_linkduplicatestreamsscanlevel/ ---- -## OptimizationOptions::get_LinkDuplicateStreamsScanLevel method - - -Level of scanning. Deeper scans (higher value) take longer but may produce smaller result files. Default value: 10. - -```cpp -int32_t Aspose::Pdf::Optimization::OptimizationOptions::get_LinkDuplicateStreamsScanLevel() const -``` - -## See Also - -* Class [OptimizationOptions](../) -* Namespace [Aspose::Pdf::Optimization](../../) -* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.optimization/optimizationoptions/set_linkduplcatestreams/_index.md b/english/cpp/aspose.pdf.optimization/optimizationoptions/set_linkduplcatestreams/_index.md deleted file mode 100644 index 7fcb692957..0000000000 --- a/english/cpp/aspose.pdf.optimization/optimizationoptions/set_linkduplcatestreams/_index.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: Aspose::Pdf::Optimization::OptimizationOptions::set_LinkDuplcateStreams method -linktitle: set_LinkDuplcateStreams -second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Optimization::OptimizationOptions::set_LinkDuplcateStreams method. Obsolete! Use LinkDuplicateStreams instead in C++.' -type: docs -weight: 2300 -url: /cpp/aspose.pdf.optimization/optimizationoptions/set_linkduplcatestreams/ ---- -## OptimizationOptions::set_LinkDuplcateStreams method - - -Obsolete! Use LinkDuplicateStreams instead. - -```cpp -void Aspose::Pdf::Optimization::OptimizationOptions::set_LinkDuplcateStreams(bool value) -``` - - -## Deprecated -Use LinkDuplicateStreams instead. - -## See Also - -* Class [OptimizationOptions](../) -* Namespace [Aspose::Pdf::Optimization](../../) -* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.optimization/optimizationoptions/set_linkduplicatestreamsscanlevel/_index.md b/english/cpp/aspose.pdf.optimization/optimizationoptions/set_linkduplicatestreamsscanlevel/_index.md deleted file mode 100644 index 589bdf527c..0000000000 --- a/english/cpp/aspose.pdf.optimization/optimizationoptions/set_linkduplicatestreamsscanlevel/_index.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -title: Aspose::Pdf::Optimization::OptimizationOptions::set_LinkDuplicateStreamsScanLevel method -linktitle: set_LinkDuplicateStreamsScanLevel -second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Optimization::OptimizationOptions::set_LinkDuplicateStreamsScanLevel method. Level of scanning. Deeper scans (higher value) take longer but may produce smaller result files. Default value: 10 in C++.' -type: docs -weight: 2300 -url: /cpp/aspose.pdf.optimization/optimizationoptions/set_linkduplicatestreamsscanlevel/ ---- -## OptimizationOptions::set_LinkDuplicateStreamsScanLevel method - - -Level of scanning. Deeper scans (higher value) take longer but may produce smaller result files. Default value: 10. - -```cpp -void Aspose::Pdf::Optimization::OptimizationOptions::set_LinkDuplicateStreamsScanLevel(int32_t value) -``` - -## See Also - -* Class [OptimizationOptions](../) -* Namespace [Aspose::Pdf::Optimization](../../) -* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.pdftomarkdown/_index.md b/english/cpp/aspose.pdf.pdftomarkdown/_index.md deleted file mode 100644 index 4853218bfd..0000000000 --- a/english/cpp/aspose.pdf.pdftomarkdown/_index.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: Aspose::Pdf::PdfToMarkdown namespace -linktitle: Aspose::Pdf::PdfToMarkdown -second_title: Aspose.PDF for C++ API Reference -description: 'How to use Aspose::Pdf::PdfToMarkdown namespace in C++.' -type: docs -weight: 1600 -url: /cpp/aspose.pdf.pdftomarkdown/ ---- - - - -## Classes - -| Class | Description | -| --- | --- | -| [HeadingLevels](./headinglevels/) | Represents a class to work with header levels based on font size. | diff --git a/english/cpp/aspose.pdf.pdftomarkdown/emphasisstyle/_index.md b/english/cpp/aspose.pdf.pdftomarkdown/emphasisstyle/_index.md deleted file mode 100644 index 38c2f9f159..0000000000 --- a/english/cpp/aspose.pdf.pdftomarkdown/emphasisstyle/_index.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -title: Aspose::Pdf::PdfToMarkdown::EmphasisStyle enum -linktitle: EmphasisStyle -second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::PdfToMarkdown::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: 200 -url: /cpp/aspose.pdf.pdftomarkdown/emphasisstyle/ ---- -## EmphasisStyle enum - - -Defines the available serialization styles for emphasis and strong emphasis. For specification see CommonMark - Emphasis and strong emphasis. - -```cpp -enum class EmphasisStyle -``` - -### Values - -| Name | Value | Description | -| --- | --- | --- | -| Asterisk | 0 | Use '*' respectively '**' for (strongly) emphasized text. | -| Underscore | 1 | Use '_' respectively '__' for (strongly) emphasized text. | - -## See Also - -* Namespace [Aspose::Pdf::PdfToMarkdown](../) -* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.pdftomarkdown/headinglevels/_index.md b/english/cpp/aspose.pdf.pdftomarkdown/headinglevels/_index.md deleted file mode 100644 index ad7c0aa68e..0000000000 --- a/english/cpp/aspose.pdf.pdftomarkdown/headinglevels/_index.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -title: Aspose::Pdf::PdfToMarkdown::HeadingLevels class -linktitle: HeadingLevels -second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::PdfToMarkdown::HeadingLevels class. Represents a class to work with header levels based on font size in C++.' -type: docs -weight: 100 -url: /cpp/aspose.pdf.pdftomarkdown/headinglevels/ ---- -## HeadingLevels class - - -Represents a class to work with header levels based on font size. - -```cpp -class HeadingLevels : public System::Object -``` - -## Methods - -| Method | Description | -| --- | --- | -| [AddLevels](./addlevels/)(System::SharedPtr\\>) | Adds heading levels. Font size collection should be sorted by decreasing size. | -| [get_AllLevels](./get_alllevels/)() | Gets all heading levels. | -| [HeadingLevels](./headinglevels/)() | Creates a new instance of the [HeadingLevels](./) class. | -| [HeadingLevels](./headinglevels/)(double) | Creates a new instance of the [HeadingLevels](./) class. | -## See Also - -* Class [Object](../../system/object/) -* Namespace [Aspose::Pdf::PdfToMarkdown](../) -* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.pdftomarkdown/headinglevels/addlevels/_index.md b/english/cpp/aspose.pdf.pdftomarkdown/headinglevels/addlevels/_index.md deleted file mode 100644 index a5598e8922..0000000000 --- a/english/cpp/aspose.pdf.pdftomarkdown/headinglevels/addlevels/_index.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -title: Aspose::Pdf::PdfToMarkdown::HeadingLevels::AddLevels method -linktitle: AddLevels -second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::PdfToMarkdown::HeadingLevels::AddLevels method. Adds heading levels. Font size collection should be sorted by decreasing size in C++.' -type: docs -weight: 200 -url: /cpp/aspose.pdf.pdftomarkdown/headinglevels/addlevels/ ---- -## HeadingLevels::AddLevels method - - -Adds heading levels. Font size collection should be sorted by decreasing size. - -```cpp -void Aspose::Pdf::PdfToMarkdown::HeadingLevels::AddLevels(System::SharedPtr> fontSizes) -``` - - -| Parameter | Type | Description | -| --- | --- | --- | -| fontSizes | System::SharedPtr\\> | Values should be sorted in decreasing order. | - -## See Also - -* Typedef [SharedPtr](../../../system/sharedptr/) -* Class [ICollection](../../../system.collections.generic/icollection/) -* Class [HeadingLevels](../) -* Namespace [Aspose::Pdf::PdfToMarkdown](../../) -* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.pdftomarkdown/headinglevels/get_alllevels/_index.md b/english/cpp/aspose.pdf.pdftomarkdown/headinglevels/get_alllevels/_index.md deleted file mode 100644 index 34991fda59..0000000000 --- a/english/cpp/aspose.pdf.pdftomarkdown/headinglevels/get_alllevels/_index.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -title: Aspose::Pdf::PdfToMarkdown::HeadingLevels::get_AllLevels method -linktitle: get_AllLevels -second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::PdfToMarkdown::HeadingLevels::get_AllLevels method. Gets all heading levels in C++.' -type: docs -weight: 300 -url: /cpp/aspose.pdf.pdftomarkdown/headinglevels/get_alllevels/ ---- -## HeadingLevels::get_AllLevels method - - -Gets all heading levels. - -```cpp -System::SharedPtr> Aspose::Pdf::PdfToMarkdown::HeadingLevels::get_AllLevels() -``` - -## See Also - -* Typedef [SharedPtr](../../../system/sharedptr/) -* Class [IList](../../../system.collections.generic/ilist/) -* Class [HeadingLevels](../) -* Namespace [Aspose::Pdf::PdfToMarkdown](../../) -* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.pdftomarkdown/headinglevels/headinglevels/_index.md b/english/cpp/aspose.pdf.pdftomarkdown/headinglevels/headinglevels/_index.md deleted file mode 100644 index c62663d510..0000000000 --- a/english/cpp/aspose.pdf.pdftomarkdown/headinglevels/headinglevels/_index.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Aspose::Pdf::PdfToMarkdown::HeadingLevels::HeadingLevels constructor -linktitle: HeadingLevels -second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::PdfToMarkdown::HeadingLevels::HeadingLevels constructor. Creates a new instance of the HeadingLevels class in C++.' -type: docs -weight: 100 -url: /cpp/aspose.pdf.pdftomarkdown/headinglevels/headinglevels/ ---- -## HeadingLevels::HeadingLevels() constructor - - -Creates a new instance of the [HeadingLevels](../) class. - -```cpp -Aspose::Pdf::PdfToMarkdown::HeadingLevels::HeadingLevels() -``` - -## See Also - -* Class [HeadingLevels](../) -* Namespace [Aspose::Pdf::PdfToMarkdown](../../) -* Library [Aspose.PDF for C++](../../../) -## HeadingLevels::HeadingLevels(double) constructor - - -Creates a new instance of the [HeadingLevels](../) class. - -```cpp -Aspose::Pdf::PdfToMarkdown::HeadingLevels::HeadingLevels(double threshold) -``` - - -| Parameter | Type | Description | -| --- | --- | --- | -| threshold | double | The threshold value to compare font sizes. Within the threshold, the header levels are the same. The threshold default value is 0.01. | - -## See Also - -* Class [HeadingLevels](../) -* Namespace [Aspose::Pdf::PdfToMarkdown](../../) -* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.pdftomarkdown/headingrecognitionstrategy/_index.md b/english/cpp/aspose.pdf.pdftomarkdown/headingrecognitionstrategy/_index.md deleted file mode 100644 index fab6482641..0000000000 --- a/english/cpp/aspose.pdf.pdftomarkdown/headingrecognitionstrategy/_index.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -title: Aspose::Pdf::PdfToMarkdown::HeadingRecognitionStrategy enum -linktitle: HeadingRecognitionStrategy -second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::PdfToMarkdown::HeadingRecognitionStrategy enum. Represents types of header recognition strategies in C++.' -type: docs -weight: 300 -url: /cpp/aspose.pdf.pdftomarkdown/headingrecognitionstrategy/ ---- -## HeadingRecognitionStrategy enum - - -Represents types of header recognition strategies. - -```cpp -enum class HeadingRecognitionStrategy -``` - -### Values - -| Name | Value | Description | -| --- | --- | --- | -| Outlines | 0 | Represents the header recognition strategy by means of outlines. | -| Heuristic | 1 | Represents the header recognition strategy by means of heuristics rules and font size statistic. | -| Auto | 2 | Provides an automatic header recognition strategy selection. This is the default option. If the document contains bookmarks, the [Outlines](../../aspose.pdf/outlines/) strategy will be selected, otherwise [Heuristic](./) | -| None | 3 | Do not recognize headers. This option can be useful in complexly formatted documents. | - -## See Also - -* Namespace [Aspose::Pdf::PdfToMarkdown](../) -* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.pdftomarkdown/headingstyle/_index.md b/english/cpp/aspose.pdf.pdftomarkdown/headingstyle/_index.md deleted file mode 100644 index 586260fc21..0000000000 --- a/english/cpp/aspose.pdf.pdftomarkdown/headingstyle/_index.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -title: Aspose::Pdf::PdfToMarkdown::HeadingStyle enum -linktitle: HeadingStyle -second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::PdfToMarkdown::HeadingStyle enum. Defines the available serialization styles for headings. For specification see CommonMark - ATX headings, respectively CommonMark - Setext headings in C++.' -type: docs -weight: 400 -url: /cpp/aspose.pdf.pdftomarkdown/headingstyle/ ---- -## HeadingStyle enum - - -Defines the available serialization styles for headings. For specification see CommonMark - ATX headings, respectively CommonMark - Setext headings. - -```cpp -enum class HeadingStyle -``` - -### Values - -| Name | Value | Description | -| --- | --- | --- | -| Atx | 0 | Prefix headings with '#'. | -| Setext | 1 | Underscore level 1 and 2 headings with "======" respectively "------". | - -## See Also - -* Namespace [Aspose::Pdf::PdfToMarkdown](../) -* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.pdftomarkdown/linebreakstyle/_index.md b/english/cpp/aspose.pdf.pdftomarkdown/linebreakstyle/_index.md deleted file mode 100644 index 98c7c9889f..0000000000 --- a/english/cpp/aspose.pdf.pdftomarkdown/linebreakstyle/_index.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -title: Aspose::Pdf::PdfToMarkdown::LineBreakStyle enum -linktitle: LineBreakStyle -second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::PdfToMarkdown::LineBreakStyle enum. Represents the possible line break styles for a file in C++.' -type: docs -weight: 500 -url: /cpp/aspose.pdf.pdftomarkdown/linebreakstyle/ ---- -## LineBreakStyle enum - - -Represents the possible line break styles for a file. - -```cpp -enum class LineBreakStyle -``` - -### Values - -| Name | Value | Description | -| --- | --- | --- | -| Windows | 0 | Selects the Windows string wrap style(CRLF). | -| Unix | 1 | Select the Unix string wrap style(LF). Also used for OSX. | -| Auto | 2 | Automatically select the type of string wrapping based on the operating system. | - -## See Also - -* Namespace [Aspose::Pdf::PdfToMarkdown](../) -* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.plugins/selectfield/_index.md b/english/cpp/aspose.pdf.plugins/selectfield/_index.md deleted file mode 100644 index f421edfa18..0000000000 --- a/english/cpp/aspose.pdf.plugins/selectfield/_index.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: Aspose::Pdf::Plugins::SelectField typedef -linktitle: SelectField -second_title: Aspose.PDF for C++ API Reference -description: 'How to use Aspose::Pdf::Plugins::SelectField typedef in C++.' -type: docs -weight: 9700 -url: /cpp/aspose.pdf.plugins/selectfield/ ---- -## SelectField typedef - - - - -```cpp -using Aspose::Pdf::Plugins::SelectField = System::MulticastDelegate)> -``` - -## See Also - -* Namespace [Aspose::Pdf::Plugins](../) -* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf.sanitization/_index.md b/english/cpp/aspose.pdf.sanitization/_index.md index 8b2a600030..7d7d358ccc 100644 --- a/english/cpp/aspose.pdf.sanitization/_index.md +++ b/english/cpp/aspose.pdf.sanitization/_index.md @@ -4,7 +4,7 @@ linktitle: Aspose::Pdf::Sanitization second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Sanitization namespace. The Aspose.Pdf.Sanitization is a namespace for sanitization operations in C++.' type: docs -weight: 1700 +weight: 1800 url: /cpp/aspose.pdf.sanitization/ --- diff --git a/english/cpp/aspose.pdf.security.impl/_index.md b/english/cpp/aspose.pdf.security.impl/_index.md index 8a379ee110..b2ff86efc4 100644 --- a/english/cpp/aspose.pdf.security.impl/_index.md +++ b/english/cpp/aspose.pdf.security.impl/_index.md @@ -4,7 +4,7 @@ linktitle: Aspose::Pdf::Security::Impl second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::Security::Impl namespace in C++.' type: docs -weight: 1900 +weight: 2000 url: /cpp/aspose.pdf.security.impl/ --- diff --git a/english/cpp/aspose.pdf.security/_index.md b/english/cpp/aspose.pdf.security/_index.md index 89a7c39c8d..6f3b6c5e38 100644 --- a/english/cpp/aspose.pdf.security/_index.md +++ b/english/cpp/aspose.pdf.security/_index.md @@ -4,7 +4,7 @@ linktitle: Aspose::Pdf::Security second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Security namespace. The Aspose.Pdf.Security namespace contains classes used for encryption and digital signing in C++.' type: docs -weight: 1800 +weight: 1900 url: /cpp/aspose.pdf.security/ --- diff --git a/english/cpp/aspose.pdf.signatures/_index.md b/english/cpp/aspose.pdf.signatures/_index.md index 72cfae3289..c55e38b60b 100644 --- a/english/cpp/aspose.pdf.signatures/_index.md +++ b/english/cpp/aspose.pdf.signatures/_index.md @@ -4,7 +4,7 @@ linktitle: Aspose::Pdf::Signatures second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Signatures namespace. The Aspose.Pdf.Signatures namespace provides classes for signatures functionalities in C++.' type: docs -weight: 2000 +weight: 2100 url: /cpp/aspose.pdf.signatures/ --- diff --git a/english/cpp/aspose.pdf.structure/_index.md b/english/cpp/aspose.pdf.structure/_index.md index 658c0ae2b4..13e3b665b3 100644 --- a/english/cpp/aspose.pdf.structure/_index.md +++ b/english/cpp/aspose.pdf.structure/_index.md @@ -4,7 +4,7 @@ linktitle: Aspose::Pdf::Structure second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Structure namespace. The Aspose.Pdf.Structure namespace provides classes which help to work with a logical structure of a document which presents the organization of the document into chapters and sections or the identification of special elements such as figures, tables, and footnotes in C++.' type: docs -weight: 2100 +weight: 2200 url: /cpp/aspose.pdf.structure/ --- diff --git a/english/cpp/aspose.pdf.tagged/_index.md b/english/cpp/aspose.pdf.tagged/_index.md index 616aa09a9a..2008b5daed 100644 --- a/english/cpp/aspose.pdf.tagged/_index.md +++ b/english/cpp/aspose.pdf.tagged/_index.md @@ -4,7 +4,7 @@ linktitle: Aspose::Pdf::Tagged second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Tagged namespace. The Aspose.Pdf.Tagged is a namespace for classes for support of Tagged PDF documents in C++.' type: docs -weight: 2200 +weight: 2300 url: /cpp/aspose.pdf.tagged/ --- diff --git a/english/cpp/aspose.pdf.text/_index.md b/english/cpp/aspose.pdf.text/_index.md index 09ccab7408..8c6c183691 100644 --- a/english/cpp/aspose.pdf.text/_index.md +++ b/english/cpp/aspose.pdf.text/_index.md @@ -4,7 +4,7 @@ linktitle: Aspose::Pdf::Text second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::Text namespace in C++.' type: docs -weight: 2300 +weight: 2400 url: /cpp/aspose.pdf.text/ --- diff --git a/english/cpp/aspose.pdf.text/onsegmentchangedeventargs/get_initialsegmenttextlength/_index.md b/english/cpp/aspose.pdf.text/onsegmentchangedeventargs/get_initialsegmenttextlength/_index.md deleted file mode 100644 index b177095bd1..0000000000 --- a/english/cpp/aspose.pdf.text/onsegmentchangedeventargs/get_initialsegmenttextlength/_index.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -title: Aspose::Pdf::Text::OnSegmentChangedEventArgs::get_InitialSegmentTextLength method -linktitle: get_InitialSegmentTextLength -second_title: Aspose.PDF for C++ API Reference -description: 'How to use get_InitialSegmentTextLength method of Aspose::Pdf::Text::OnSegmentChangedEventArgs class in C++.' -type: docs -weight: 200 -url: /cpp/aspose.pdf.text/onsegmentchangedeventargs/get_initialsegmenttextlength/ ---- -## OnSegmentChangedEventArgs::get_InitialSegmentTextLength method - - - - -```cpp -int32_t Aspose::Pdf::Text::OnSegmentChangedEventArgs::get_InitialSegmentTextLength() const -``` - -## See Also - -* Class [OnSegmentChangedEventArgs](../) -* Namespace [Aspose::Pdf::Text](../../) -* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.text/onsegmentchangedeventargs/get_segmentafter/_index.md b/english/cpp/aspose.pdf.text/onsegmentchangedeventargs/get_segmentafter/_index.md deleted file mode 100644 index bc8a624465..0000000000 --- a/english/cpp/aspose.pdf.text/onsegmentchangedeventargs/get_segmentafter/_index.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: Aspose::Pdf::Text::OnSegmentChangedEventArgs::get_SegmentAfter method -linktitle: get_SegmentAfter -second_title: Aspose.PDF for C++ API Reference -description: 'How to use get_SegmentAfter method of Aspose::Pdf::Text::OnSegmentChangedEventArgs class in C++.' -type: docs -weight: 300 -url: /cpp/aspose.pdf.text/onsegmentchangedeventargs/get_segmentafter/ ---- -## OnSegmentChangedEventArgs::get_SegmentAfter method - - - - -```cpp -System::SharedPtr Aspose::Pdf::Text::OnSegmentChangedEventArgs::get_SegmentAfter() const -``` - -## See Also - -* Typedef [SharedPtr](../../../system/sharedptr/) -* Class [OnSegmentChangedEventArgs](../) -* Namespace [Aspose::Pdf::Text](../../) -* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.text/onsegmentchangedeventargs/get_segmentchanged/_index.md b/english/cpp/aspose.pdf.text/onsegmentchangedeventargs/get_segmentchanged/_index.md deleted file mode 100644 index 7f0f5e2b81..0000000000 --- a/english/cpp/aspose.pdf.text/onsegmentchangedeventargs/get_segmentchanged/_index.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: Aspose::Pdf::Text::OnSegmentChangedEventArgs::get_SegmentChanged method -linktitle: get_SegmentChanged -second_title: Aspose.PDF for C++ API Reference -description: 'How to use get_SegmentChanged method of Aspose::Pdf::Text::OnSegmentChangedEventArgs class in C++.' -type: docs -weight: 400 -url: /cpp/aspose.pdf.text/onsegmentchangedeventargs/get_segmentchanged/ ---- -## OnSegmentChangedEventArgs::get_SegmentChanged method - - - - -```cpp -System::SharedPtr Aspose::Pdf::Text::OnSegmentChangedEventArgs::get_SegmentChanged() const -``` - -## See Also - -* Typedef [SharedPtr](../../../system/sharedptr/) -* Class [OnSegmentChangedEventArgs](../) -* Namespace [Aspose::Pdf::Text](../../) -* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.text/onsegmentchangedeventargs/onsegmentchangedeventargs/_index.md b/english/cpp/aspose.pdf.text/onsegmentchangedeventargs/onsegmentchangedeventargs/_index.md deleted file mode 100644 index bb9a3ed449..0000000000 --- a/english/cpp/aspose.pdf.text/onsegmentchangedeventargs/onsegmentchangedeventargs/_index.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: Aspose::Pdf::Text::OnSegmentChangedEventArgs::OnSegmentChangedEventArgs constructor -linktitle: OnSegmentChangedEventArgs -second_title: Aspose.PDF for C++ API Reference -description: 'How to use OnSegmentChangedEventArgs constructor of Aspose::Pdf::Text::OnSegmentChangedEventArgs class in C++.' -type: docs -weight: 100 -url: /cpp/aspose.pdf.text/onsegmentchangedeventargs/onsegmentchangedeventargs/ ---- -## OnSegmentChangedEventArgs::OnSegmentChangedEventArgs constructor - - - - -```cpp -Aspose::Pdf::Text::OnSegmentChangedEventArgs::OnSegmentChangedEventArgs(System::SharedPtr segmentChanged, System::SharedPtr segmentAfter, int32_t _initialSegmentTextLength) -``` - -## See Also - -* Typedef [SharedPtr](../../../system/sharedptr/) -* Class [OnSegmentChangedEventArgs](../) -* Namespace [Aspose::Pdf::Text](../../) -* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.vector/_index.md b/english/cpp/aspose.pdf.vector/_index.md index 0ef022628d..81a3dedd14 100644 --- a/english/cpp/aspose.pdf.vector/_index.md +++ b/english/cpp/aspose.pdf.vector/_index.md @@ -4,7 +4,7 @@ linktitle: Aspose::Pdf::Vector second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Vector namespace. The Aspose.Pdf.Vector is a root namespace for graphics operations in C++.' type: docs -weight: 2400 +weight: 2500 url: /cpp/aspose.pdf.vector/ --- diff --git a/english/cpp/aspose.pdf.xfaconverter/_index.md b/english/cpp/aspose.pdf.xfaconverter/_index.md index 5e4bac16e0..23b42b07ee 100644 --- a/english/cpp/aspose.pdf.xfaconverter/_index.md +++ b/english/cpp/aspose.pdf.xfaconverter/_index.md @@ -4,7 +4,7 @@ linktitle: Aspose::Pdf::XfaConverter second_title: Aspose.PDF for C++ API Reference description: 'How to use Aspose::Pdf::XfaConverter namespace in C++.' type: docs -weight: 2500 +weight: 2600 url: /cpp/aspose.pdf.xfaconverter/ --- diff --git a/english/cpp/aspose.pdf/docsaveoptions/recognitionmode/_index.md b/english/cpp/aspose.pdf/docsaveoptions/recognitionmode/_index.md index 1c0ce597a5..1ebb5519bf 100644 --- a/english/cpp/aspose.pdf/docsaveoptions/recognitionmode/_index.md +++ b/english/cpp/aspose.pdf/docsaveoptions/recognitionmode/_index.md @@ -22,7 +22,7 @@ enum class RecognitionMode | --- | --- | --- | | Textbox | 0 | This mode is fast and good for maximally preserving original look of the PDF file, but editability of the resulting document could be limited. | | Flow | 1 | Full recognition mode, the engine performs grouping and multi-level analysis to restore the original document author's intent and produce a maximally editable document. The downside is that the output document might look different from the original PDF file. | -| EnhancedFlow | 2 | An alternative Flow mode that supports the recognition of tables. | +| EnhancedFlow | 2 | An alternative [Flow](../../../aspose.pdf.flow/) mode that supports the recognition of tables. | ## Remarks diff --git a/english/cpp/aspose.pdf/document/mergeoptions/_index.md b/english/cpp/aspose.pdf/document/mergeoptions/_index.md index 34e7294143..82112e451a 100644 --- a/english/cpp/aspose.pdf/document/mergeoptions/_index.md +++ b/english/cpp/aspose.pdf/document/mergeoptions/_index.md @@ -20,11 +20,15 @@ class MergeOptions : public System::Object | Method | Description | | --- | --- | +| [get_ConcatenationPacketSize](./get_concatenationpacketsize/)() const | Number of documents concatenated before new incremental update was made during concatenation when UseDiskBuffer is set to true. The default value is 4. | | [get_IsNeedPageTreeBalance](./get_isneedpagetreebalance/)() const | Gets and sets the requirement for page tree balancing The entire page tree in the resulting document will be rebalanced. It creates balanced pages tree to speed up pages access. | | [get_MaximumNodesInLevel](./get_maximumnodesinlevel/)() const | Gets and sets the maximum nodes in pages tree level. Default is 10. | +| [get_UseDiskBuffer](./get_usediskbuffer/)() const | If this option used then destination document will be saved on disk periodically and further concatenation will appllied to it as incremental updates. The default value is **false**. | | [MergeOptions](./mergeoptions/)() | | +| [set_ConcatenationPacketSize](./set_concatenationpacketsize/)(int32_t) | Number of documents concatenated before new incremental update was made during concatenation when UseDiskBuffer is set to true. The default value is 4. | | [set_IsNeedPageTreeBalance](./set_isneedpagetreebalance/)(bool) | Gets and sets the requirement for page tree balancing The entire page tree in the resulting document will be rebalanced. It creates balanced pages tree to speed up pages access. | | [set_MaximumNodesInLevel](./set_maximumnodesinlevel/)(uint8_t) | Gets and sets the maximum nodes in pages tree level. Default is 10. | +| [set_UseDiskBuffer](./set_usediskbuffer/)(bool) | If this option used then destination document will be saved on disk periodically and further concatenation will appllied to it as incremental updates. The default value is **false**. | ## See Also * Class [Object](../../../system/object/) diff --git a/english/cpp/aspose.pdf/document/mergeoptions/get_concatenationpacketsize/_index.md b/english/cpp/aspose.pdf/document/mergeoptions/get_concatenationpacketsize/_index.md new file mode 100644 index 0000000000..91596857fb --- /dev/null +++ b/english/cpp/aspose.pdf/document/mergeoptions/get_concatenationpacketsize/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Document::MergeOptions::get_ConcatenationPacketSize method +linktitle: get_ConcatenationPacketSize +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Document::MergeOptions::get_ConcatenationPacketSize method. Number of documents concatenated before new incremental update was made during concatenation when UseDiskBuffer is set to true. The default value is 4 in C++.' +type: docs +weight: 200 +url: /cpp/aspose.pdf/document/mergeoptions/get_concatenationpacketsize/ +--- +## MergeOptions::get_ConcatenationPacketSize method + + +Number of documents concatenated before new incremental update was made during concatenation when UseDiskBuffer is set to true. The default value is 4. + +```cpp +int32_t Aspose::Pdf::Document::MergeOptions::get_ConcatenationPacketSize() const +``` + +## See Also + +* Class [MergeOptions](../) +* Class [Document](../../) +* Namespace [Aspose::Pdf](../../../) +* Library [Aspose.PDF for C++](../../../../) diff --git a/english/cpp/aspose.pdf/document/mergeoptions/get_isneedpagetreebalance/_index.md b/english/cpp/aspose.pdf/document/mergeoptions/get_isneedpagetreebalance/_index.md index 6fc59beeae..7e085853b1 100644 --- a/english/cpp/aspose.pdf/document/mergeoptions/get_isneedpagetreebalance/_index.md +++ b/english/cpp/aspose.pdf/document/mergeoptions/get_isneedpagetreebalance/_index.md @@ -4,7 +4,7 @@ linktitle: get_IsNeedPageTreeBalance second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::MergeOptions::get_IsNeedPageTreeBalance method. Gets and sets the requirement for page tree balancing The entire page tree in the resulting document will be rebalanced. It creates balanced pages tree to speed up pages access in C++.' type: docs -weight: 200 +weight: 300 url: /cpp/aspose.pdf/document/mergeoptions/get_isneedpagetreebalance/ --- ## MergeOptions::get_IsNeedPageTreeBalance method diff --git a/english/cpp/aspose.pdf/document/mergeoptions/get_maximumnodesinlevel/_index.md b/english/cpp/aspose.pdf/document/mergeoptions/get_maximumnodesinlevel/_index.md index 554ac8032c..b8835d1d54 100644 --- a/english/cpp/aspose.pdf/document/mergeoptions/get_maximumnodesinlevel/_index.md +++ b/english/cpp/aspose.pdf/document/mergeoptions/get_maximumnodesinlevel/_index.md @@ -4,7 +4,7 @@ linktitle: get_MaximumNodesInLevel second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::MergeOptions::get_MaximumNodesInLevel method. Gets and sets the maximum nodes in pages tree level. Default is 10 in C++.' type: docs -weight: 300 +weight: 400 url: /cpp/aspose.pdf/document/mergeoptions/get_maximumnodesinlevel/ --- ## MergeOptions::get_MaximumNodesInLevel method diff --git a/english/cpp/aspose.pdf/document/mergeoptions/get_usediskbuffer/_index.md b/english/cpp/aspose.pdf/document/mergeoptions/get_usediskbuffer/_index.md new file mode 100644 index 0000000000..1d1bdd78c8 --- /dev/null +++ b/english/cpp/aspose.pdf/document/mergeoptions/get_usediskbuffer/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Document::MergeOptions::get_UseDiskBuffer method +linktitle: get_UseDiskBuffer +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Document::MergeOptions::get_UseDiskBuffer method. If this option used then destination document will be saved on disk periodically and further concatenation will appllied to it as incremental updates. The default value is false in C++.' +type: docs +weight: 500 +url: /cpp/aspose.pdf/document/mergeoptions/get_usediskbuffer/ +--- +## MergeOptions::get_UseDiskBuffer method + + +If this option used then destination document will be saved on disk periodically and further concatenation will appllied to it as incremental updates. The default value is **false**. + +```cpp +bool Aspose::Pdf::Document::MergeOptions::get_UseDiskBuffer() const +``` + +## Remarks + + +**This option is ignored when calling a non-static merge method.** +## See Also + +* Class [MergeOptions](../) +* Class [Document](../../) +* Namespace [Aspose::Pdf](../../../) +* Library [Aspose.PDF for C++](../../../../) diff --git a/english/cpp/aspose.pdf/document/mergeoptions/set_concatenationpacketsize/_index.md b/english/cpp/aspose.pdf/document/mergeoptions/set_concatenationpacketsize/_index.md new file mode 100644 index 0000000000..2d288c8d1e --- /dev/null +++ b/english/cpp/aspose.pdf/document/mergeoptions/set_concatenationpacketsize/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::Document::MergeOptions::set_ConcatenationPacketSize method +linktitle: set_ConcatenationPacketSize +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Document::MergeOptions::set_ConcatenationPacketSize method. Number of documents concatenated before new incremental update was made during concatenation when UseDiskBuffer is set to true. The default value is 4 in C++.' +type: docs +weight: 600 +url: /cpp/aspose.pdf/document/mergeoptions/set_concatenationpacketsize/ +--- +## MergeOptions::set_ConcatenationPacketSize method + + +Number of documents concatenated before new incremental update was made during concatenation when UseDiskBuffer is set to true. The default value is 4. + +```cpp +void Aspose::Pdf::Document::MergeOptions::set_ConcatenationPacketSize(int32_t value) +``` + +## See Also + +* Class [MergeOptions](../) +* Class [Document](../../) +* Namespace [Aspose::Pdf](../../../) +* Library [Aspose.PDF for C++](../../../../) diff --git a/english/cpp/aspose.pdf/document/mergeoptions/set_isneedpagetreebalance/_index.md b/english/cpp/aspose.pdf/document/mergeoptions/set_isneedpagetreebalance/_index.md index 9182e04764..409bf381b7 100644 --- a/english/cpp/aspose.pdf/document/mergeoptions/set_isneedpagetreebalance/_index.md +++ b/english/cpp/aspose.pdf/document/mergeoptions/set_isneedpagetreebalance/_index.md @@ -4,7 +4,7 @@ linktitle: set_IsNeedPageTreeBalance second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::MergeOptions::set_IsNeedPageTreeBalance method. Gets and sets the requirement for page tree balancing The entire page tree in the resulting document will be rebalanced. It creates balanced pages tree to speed up pages access in C++.' type: docs -weight: 400 +weight: 700 url: /cpp/aspose.pdf/document/mergeoptions/set_isneedpagetreebalance/ --- ## MergeOptions::set_IsNeedPageTreeBalance method diff --git a/english/cpp/aspose.pdf/document/mergeoptions/set_maximumnodesinlevel/_index.md b/english/cpp/aspose.pdf/document/mergeoptions/set_maximumnodesinlevel/_index.md index a3afd6d835..19bd7e0fa3 100644 --- a/english/cpp/aspose.pdf/document/mergeoptions/set_maximumnodesinlevel/_index.md +++ b/english/cpp/aspose.pdf/document/mergeoptions/set_maximumnodesinlevel/_index.md @@ -4,7 +4,7 @@ linktitle: set_MaximumNodesInLevel second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Document::MergeOptions::set_MaximumNodesInLevel method. Gets and sets the maximum nodes in pages tree level. Default is 10 in C++.' type: docs -weight: 500 +weight: 800 url: /cpp/aspose.pdf/document/mergeoptions/set_maximumnodesinlevel/ --- ## MergeOptions::set_MaximumNodesInLevel method diff --git a/english/cpp/aspose.pdf/document/mergeoptions/set_usediskbuffer/_index.md b/english/cpp/aspose.pdf/document/mergeoptions/set_usediskbuffer/_index.md new file mode 100644 index 0000000000..e28d0b3cc4 --- /dev/null +++ b/english/cpp/aspose.pdf/document/mergeoptions/set_usediskbuffer/_index.md @@ -0,0 +1,28 @@ +--- +title: Aspose::Pdf::Document::MergeOptions::set_UseDiskBuffer method +linktitle: set_UseDiskBuffer +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Document::MergeOptions::set_UseDiskBuffer method. If this option used then destination document will be saved on disk periodically and further concatenation will appllied to it as incremental updates. The default value is false in C++.' +type: docs +weight: 900 +url: /cpp/aspose.pdf/document/mergeoptions/set_usediskbuffer/ +--- +## MergeOptions::set_UseDiskBuffer method + + +If this option used then destination document will be saved on disk periodically and further concatenation will appllied to it as incremental updates. The default value is **false**. + +```cpp +void Aspose::Pdf::Document::MergeOptions::set_UseDiskBuffer(bool value) +``` + +## Remarks + + +**This option is ignored when calling a non-static merge method.** +## See Also + +* Class [MergeOptions](../) +* Class [Document](../../) +* Namespace [Aspose::Pdf](../../../) +* Library [Aspose.PDF for C++](../../../../) diff --git a/english/cpp/aspose.pdf/htmlsaveoptions/_index.md b/english/cpp/aspose.pdf/htmlsaveoptions/_index.md index 1a6d779200..a6efd4cd9d 100644 --- a/english/cpp/aspose.pdf/htmlsaveoptions/_index.md +++ b/english/cpp/aspose.pdf/htmlsaveoptions/_index.md @@ -49,7 +49,7 @@ class HtmlSaveOptions : public Aspose::Pdf::UnifiedSaveOptions, | [get_DocumentType](./get_documenttype/)() const | Gets the [HtmlDocumentType](../htmldocumenttype/). | | [get_ExplicitListOfSavedPages](./get_explicitlistofsavedpages/)() override | With this property You can explicitely define what pages of document should be converted. Pages in this list must have 1-based numbers. I.e. valid numbers of pages must be taken from range (1...[NumberOfPagesInConvertedDocument]) Order of appearing of pages in this list does not affect their order in result HTML page(s) - in result pages allways will go in order in which they are present in source PDF. If this list is null (as it is by default), all pages will be converted. If any page number of this list will go out of range of present pages(1-[amountOfPagesInDocument]) exception will be thrown. | | [get_FixedLayout](./get_fixedlayout/)() const | Gets a value indicating whether that HTML is created as fixed layout. | -| [get_FlowLayoutParagraphFullWidth](./get_flowlayoutparagraphfullwidth/)() const | This attribute specifies full width paragraph text for Flow mode, FixedLayout = false. | +| [get_FlowLayoutParagraphFullWidth](./get_flowlayoutparagraphfullwidth/)() const | This attribute specifies full width paragraph text for [Flow](../../aspose.pdf.flow/) mode, FixedLayout = false. | | [get_FontSources](./get_fontsources/)() const | Font sources of pre-saved fonts. | | [get_IgnoredTextFontSize](./get_ignoredtextfontsize/)() const | [Text](../../aspose.pdf.text/) with the specified size or less will be ignored during conversion. We do not remove this text, we ignore it and do not transfer it to the output file. | | [get_IgnoreResourceFontErrors](./get_ignoreresourcefonterrors/)() const | Gets indication that errors related to absence of font will be ignored. true - means that errors of absence of font will be ignored. [Text](../../aspose.pdf.text/) segments that refer to incorrect resources will be skipped during processing. false by default. | @@ -76,7 +76,7 @@ class HtmlSaveOptions : public Aspose::Pdf::UnifiedSaveOptions, | [set_DocumentType](./set_documenttype/)(HtmlDocumentType) | Sets the [HtmlDocumentType](../htmldocumenttype/). | | [set_ExplicitListOfSavedPages](./set_explicitlistofsavedpages/)(System::ArrayPtr\) override | With this property You can explicitely define what pages of document should be converted. Pages in this list must have 1-based numbers. I.e. valid numbers of pages must be taken from range (1...[NumberOfPagesInConvertedDocument]) Order of appearing of pages in this list does not affect their order in result HTML page(s) - in result pages allways will go in order in which they are present in source PDF. If this list is null (as it is by default), all pages will be converted. If any page number of this list will go out of range of present pages(1-[amountOfPagesInDocument]) exception will be thrown. | | [set_FixedLayout](./set_fixedlayout/)(bool) | Sets a value indicating whether that HTML is created as fixed layout. | -| [set_FlowLayoutParagraphFullWidth](./set_flowlayoutparagraphfullwidth/)(bool) | This attribute specifies full width paragraph text for Flow mode, FixedLayout = false. | +| [set_FlowLayoutParagraphFullWidth](./set_flowlayoutparagraphfullwidth/)(bool) | This attribute specifies full width paragraph text for [Flow](../../aspose.pdf.flow/) mode, FixedLayout = false. | | [set_IgnoredTextFontSize](./set_ignoredtextfontsize/)(System::Nullable\) | [Text](../../aspose.pdf.text/) with the specified size or less will be ignored during conversion. We do not remove this text, we ignore it and do not transfer it to the output file. | | [set_IgnoreResourceFontErrors](./set_ignoreresourcefonterrors/)(bool) | Sets indication that errors related to absence of font will be ignored. true - means that errors of absence of font will be ignored. [Text](../../aspose.pdf.text/) segments that refer to incorrect resources will be skipped during processing. false by default. | | [set_ImageResolution](./set_imageresolution/)(int32_t) | Sets resolution for image rendering. | diff --git a/english/cpp/aspose.pdf/htmlsaveoptions/get_flowlayoutparagraphfullwidth/_index.md b/english/cpp/aspose.pdf/htmlsaveoptions/get_flowlayoutparagraphfullwidth/_index.md index 7c66e3cfa2..14bdc96b0d 100644 --- a/english/cpp/aspose.pdf/htmlsaveoptions/get_flowlayoutparagraphfullwidth/_index.md +++ b/english/cpp/aspose.pdf/htmlsaveoptions/get_flowlayoutparagraphfullwidth/_index.md @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf/htmlsaveoptions/get_flowlayoutparagraphfullwidth/ ## HtmlSaveOptions::get_FlowLayoutParagraphFullWidth method -This attribute specifies full width paragraph text for Flow mode, FixedLayout = false. +This attribute specifies full width paragraph text for [Flow](../../../aspose.pdf.flow/) mode, FixedLayout = false. ```cpp bool Aspose::Pdf::HtmlSaveOptions::get_FlowLayoutParagraphFullWidth() const diff --git a/english/cpp/aspose.pdf/htmlsaveoptions/set_flowlayoutparagraphfullwidth/_index.md b/english/cpp/aspose.pdf/htmlsaveoptions/set_flowlayoutparagraphfullwidth/_index.md index c72dcf234d..0ed3bc8c2e 100644 --- a/english/cpp/aspose.pdf/htmlsaveoptions/set_flowlayoutparagraphfullwidth/_index.md +++ b/english/cpp/aspose.pdf/htmlsaveoptions/set_flowlayoutparagraphfullwidth/_index.md @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf/htmlsaveoptions/set_flowlayoutparagraphfullwidth/ ## HtmlSaveOptions::set_FlowLayoutParagraphFullWidth method -This attribute specifies full width paragraph text for Flow mode, FixedLayout = false. +This attribute specifies full width paragraph text for [Flow](../../../aspose.pdf.flow/) mode, FixedLayout = false. ```cpp void Aspose::Pdf::HtmlSaveOptions::set_FlowLayoutParagraphFullWidth(bool value) diff --git a/english/cpp/aspose.pdf/pagecollectionextension/_index.md b/english/cpp/aspose.pdf/pagecollectionextension/_index.md deleted file mode 100644 index de89dc1a43..0000000000 --- a/english/cpp/aspose.pdf/pagecollectionextension/_index.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: Aspose::Pdf::PageCollectionExtension class -linktitle: PageCollectionExtension -second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::PageCollectionExtension class. Represents the extension method for updating header and footer pagination in C++.' -type: docs -weight: 12900 -url: /cpp/aspose.pdf/pagecollectionextension/ ---- -## PageCollectionExtension class - - -Represents the extension method for updating header and footer pagination. - -```cpp -class PageCollectionExtension -``` - -## Methods - -| Method | Description | -| --- | --- | -| [PageCollectionExtension](./pagecollectionextension/)() | | -| static [UpdatePagination](./updatepagination/)(System::SharedPtr\) | Updates the header and footer page numbers and dates for all pages. This will work if the document has at least one pagination artifact with special settings data. All pages in the collection will be updated with the source artifact according to its settings. | -## See Also - -* Namespace [Aspose::Pdf](../) -* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/aspose.pdf/pagecollectionextension/pagecollectionextension/_index.md b/english/cpp/aspose.pdf/pagecollectionextension/pagecollectionextension/_index.md deleted file mode 100644 index aaf29b2bc2..0000000000 --- a/english/cpp/aspose.pdf/pagecollectionextension/pagecollectionextension/_index.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -title: Aspose::Pdf::PageCollectionExtension::PageCollectionExtension constructor -linktitle: PageCollectionExtension -second_title: Aspose.PDF for C++ API Reference -description: 'How to use PageCollectionExtension constructor of Aspose::Pdf::PageCollectionExtension class in C++.' -type: docs -weight: 200 -url: /cpp/aspose.pdf/pagecollectionextension/pagecollectionextension/ ---- -## PageCollectionExtension::PageCollectionExtension constructor - - - - -```cpp -Aspose::Pdf::PageCollectionExtension::PageCollectionExtension()=delete -``` - -## See Also - -* Class [PageCollectionExtension](../) -* Namespace [Aspose::Pdf](../../) -* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf/pagecollectionextension/updatepagination/_index.md b/english/cpp/aspose.pdf/pagecollectionextension/updatepagination/_index.md deleted file mode 100644 index b49ae4d8e9..0000000000 --- a/english/cpp/aspose.pdf/pagecollectionextension/updatepagination/_index.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -title: Aspose::Pdf::PageCollectionExtension::UpdatePagination method -linktitle: UpdatePagination -second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::PageCollectionExtension::UpdatePagination method. Updates the header and footer page numbers and dates for all pages. This will work if the document has at least one pagination artifact with special settings data. All pages in the collection will be updated with the source artifact according to its settings in C++.' -type: docs -weight: 100 -url: /cpp/aspose.pdf/pagecollectionextension/updatepagination/ ---- -## PageCollectionExtension::UpdatePagination method - - -Updates the header and footer page numbers and dates for all pages. This will work if the document has at least one pagination artifact with special settings data. All pages in the collection will be updated with the source artifact according to its settings. - -```cpp -static void Aspose::Pdf::PageCollectionExtension::UpdatePagination(System::SharedPtr pageCollection) -``` - - -| Parameter | Type | Description | -| --- | --- | --- | -| pageCollection | System::SharedPtr\ | The page collection. | - -## See Also - -* Typedef [SharedPtr](../../../system/sharedptr/) -* Class [PageCollection](../../pagecollection/) -* Class [PageCollectionExtension](../) -* Namespace [Aspose::Pdf](../../) -* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf/paragraphs/_anonymous_method_0/_index.md b/english/cpp/aspose.pdf/paragraphs/_anonymous_method_0/_index.md deleted file mode 100644 index 6f35f36c39..0000000000 --- a/english/cpp/aspose.pdf/paragraphs/_anonymous_method_0/_index.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -title: Aspose::Pdf::Paragraphs::_anonymous_method_0 method -linktitle: _anonymous_method_0 -second_title: Aspose.PDF for C++ API Reference -description: 'How to use _anonymous_method_0 method of Aspose::Pdf::Paragraphs class in C++.' -type: docs -weight: 2300 -url: /cpp/aspose.pdf/paragraphs/_anonymous_method_0/ ---- -## Paragraphs::_anonymous_method_0 method - - - - -```cpp -static int32_t Aspose::Pdf::Paragraphs::_anonymous_method_0(System::SharedPtr x, System::SharedPtr y) -``` - -## See Also - -* Typedef [SharedPtr](../../../system/sharedptr/) -* Class [BaseParagraph](../../baseparagraph/) -* Class [Paragraphs](../) -* Namespace [Aspose::Pdf](../../) -* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf/pdfformat/_index.md b/english/cpp/aspose.pdf/pdfformat/_index.md index 457d6f6d4d..87370bbd99 100644 --- a/english/cpp/aspose.pdf/pdfformat/_index.md +++ b/english/cpp/aspose.pdf/pdfformat/_index.md @@ -46,6 +46,7 @@ enum class PdfFormat | PDF_A_4E | 23 | PDF/A-4e format. | | PDF_A_4F | 24 | PDF/A-4f format. | | PDF_X_4 | 25 | PDF/X-4 format. | +| PDF_E_1 | 26 | PDF/E-1 (PDF 1.6) format. | ## See Also diff --git a/english/cpp/aspose.pdf/rectangle/empty/_index.md b/english/cpp/aspose.pdf/rectangle/empty/_index.md deleted file mode 100644 index 04783f640a..0000000000 --- a/english/cpp/aspose.pdf/rectangle/empty/_index.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -title: Aspose::Pdf::Rectangle::Empty field -linktitle: Empty -second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Rectangle::Empty field. Empty rectangle in C++.' -type: docs -weight: 3300 -url: /cpp/aspose.pdf/rectangle/empty/ ---- -## Empty field - - -Empty rectangle. - -```cpp -static System::SharedPtr Aspose::Pdf::Rectangle::Empty -``` - -## See Also - -* Class [Rectangle](../) -* Namespace [Aspose::Pdf](../../) -* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.collections.concurrent/_index.md b/english/cpp/system.collections.concurrent/_index.md index fefe5bae63..c5974a03b6 100644 --- a/english/cpp/system.collections.concurrent/_index.md +++ b/english/cpp/system.collections.concurrent/_index.md @@ -4,7 +4,7 @@ linktitle: System::Collections::Concurrent second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Collections::Concurrent namespace in C++.' type: docs -weight: 2800 +weight: 2900 url: /cpp/system.collections.concurrent/ --- diff --git a/english/cpp/system.collections.generic/_index.md b/english/cpp/system.collections.generic/_index.md index 0379e41290..314741306d 100644 --- a/english/cpp/system.collections.generic/_index.md +++ b/english/cpp/system.collections.generic/_index.md @@ -4,7 +4,7 @@ linktitle: System::Collections::Generic second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Collections::Generic namespace in C++.' type: docs -weight: 2900 +weight: 3000 url: /cpp/system.collections.generic/ --- diff --git a/english/cpp/system.collections.objectmodel/_index.md b/english/cpp/system.collections.objectmodel/_index.md index f84bfe5f36..cd7e2abad4 100644 --- a/english/cpp/system.collections.objectmodel/_index.md +++ b/english/cpp/system.collections.objectmodel/_index.md @@ -4,7 +4,7 @@ linktitle: System::Collections::ObjectModel second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Collections::ObjectModel namespace in C++.' type: docs -weight: 3000 +weight: 3100 url: /cpp/system.collections.objectmodel/ --- diff --git a/english/cpp/system.collections.specialized/_index.md b/english/cpp/system.collections.specialized/_index.md index 57c54ba994..1c10dcdf5f 100644 --- a/english/cpp/system.collections.specialized/_index.md +++ b/english/cpp/system.collections.specialized/_index.md @@ -4,7 +4,7 @@ linktitle: System::Collections::Specialized second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Collections::Specialized namespace in C++.' type: docs -weight: 3100 +weight: 3200 url: /cpp/system.collections.specialized/ --- diff --git a/english/cpp/system.collections/_index.md b/english/cpp/system.collections/_index.md index d60a3d8ddd..ef3312d992 100644 --- a/english/cpp/system.collections/_index.md +++ b/english/cpp/system.collections/_index.md @@ -4,7 +4,7 @@ linktitle: System::Collections second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Collections namespace in C++.' type: docs -weight: 2700 +weight: 2800 url: /cpp/system.collections/ --- diff --git a/english/cpp/system.componentmodel.design.serialization/_index.md b/english/cpp/system.componentmodel.design.serialization/_index.md index 6e00344e54..d311cc2b5b 100644 --- a/english/cpp/system.componentmodel.design.serialization/_index.md +++ b/english/cpp/system.componentmodel.design.serialization/_index.md @@ -4,7 +4,7 @@ linktitle: System::ComponentModel::Design::Serialization second_title: Aspose.PDF for C++ API Reference description: 'How to use System::ComponentModel::Design::Serialization namespace in C++.' type: docs -weight: 3300 +weight: 3400 url: /cpp/system.componentmodel.design.serialization/ --- diff --git a/english/cpp/system.componentmodel/_index.md b/english/cpp/system.componentmodel/_index.md index 6ed861552b..800d84204a 100644 --- a/english/cpp/system.componentmodel/_index.md +++ b/english/cpp/system.componentmodel/_index.md @@ -4,7 +4,7 @@ linktitle: System::ComponentModel second_title: Aspose.PDF for C++ API Reference description: 'How to use System::ComponentModel namespace in C++.' type: docs -weight: 3200 +weight: 3300 url: /cpp/system.componentmodel/ --- diff --git a/english/cpp/system.data.common/_index.md b/english/cpp/system.data.common/_index.md index 36d0221cba..2ac963512c 100644 --- a/english/cpp/system.data.common/_index.md +++ b/english/cpp/system.data.common/_index.md @@ -4,7 +4,7 @@ linktitle: System::Data::Common second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Data::Common namespace in C++.' type: docs -weight: 3500 +weight: 3600 url: /cpp/system.data.common/ --- diff --git a/english/cpp/system.data.sqlclient/_index.md b/english/cpp/system.data.sqlclient/_index.md index 571260e988..0d7a59de0c 100644 --- a/english/cpp/system.data.sqlclient/_index.md +++ b/english/cpp/system.data.sqlclient/_index.md @@ -4,7 +4,7 @@ linktitle: System::Data::SqlClient second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Data::SqlClient namespace in C++.' type: docs -weight: 3600 +weight: 3700 url: /cpp/system.data.sqlclient/ --- diff --git a/english/cpp/system.data/_index.md b/english/cpp/system.data/_index.md index c7577cd0d0..0f4944dd32 100644 --- a/english/cpp/system.data/_index.md +++ b/english/cpp/system.data/_index.md @@ -4,7 +4,7 @@ linktitle: System::Data second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Data namespace in C++.' type: docs -weight: 3400 +weight: 3500 url: /cpp/system.data/ --- diff --git a/english/cpp/system.diagnostics/_index.md b/english/cpp/system.diagnostics/_index.md index a0d33e7de9..442fb1343f 100644 --- a/english/cpp/system.diagnostics/_index.md +++ b/english/cpp/system.diagnostics/_index.md @@ -4,7 +4,7 @@ linktitle: System::Diagnostics second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Diagnostics namespace in C++.' type: docs -weight: 3700 +weight: 3800 url: /cpp/system.diagnostics/ --- diff --git a/english/cpp/system.drawing.drawing2d/_index.md b/english/cpp/system.drawing.drawing2d/_index.md index a6f360f0c7..499cdcebdc 100644 --- a/english/cpp/system.drawing.drawing2d/_index.md +++ b/english/cpp/system.drawing.drawing2d/_index.md @@ -4,7 +4,7 @@ linktitle: System::Drawing::Drawing2D second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Drawing::Drawing2D namespace in C++.' type: docs -weight: 3900 +weight: 4000 url: /cpp/system.drawing.drawing2d/ --- diff --git a/english/cpp/system.drawing.imaging/_index.md b/english/cpp/system.drawing.imaging/_index.md index 4110235d03..dbd300fa17 100644 --- a/english/cpp/system.drawing.imaging/_index.md +++ b/english/cpp/system.drawing.imaging/_index.md @@ -4,7 +4,7 @@ linktitle: System::Drawing::Imaging second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Drawing::Imaging namespace in C++.' type: docs -weight: 4000 +weight: 4100 url: /cpp/system.drawing.imaging/ --- diff --git a/english/cpp/system.drawing.printing/_index.md b/english/cpp/system.drawing.printing/_index.md index e1ad449ec6..b2a8a7878f 100644 --- a/english/cpp/system.drawing.printing/_index.md +++ b/english/cpp/system.drawing.printing/_index.md @@ -4,7 +4,7 @@ linktitle: System::Drawing::Printing second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Drawing::Printing namespace in C++.' type: docs -weight: 4100 +weight: 4200 url: /cpp/system.drawing.printing/ --- diff --git a/english/cpp/system.drawing.text/_index.md b/english/cpp/system.drawing.text/_index.md index 0cc392ff72..be090d74b6 100644 --- a/english/cpp/system.drawing.text/_index.md +++ b/english/cpp/system.drawing.text/_index.md @@ -4,7 +4,7 @@ linktitle: System::Drawing::Text second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Drawing::Text namespace in C++.' type: docs -weight: 4200 +weight: 4300 url: /cpp/system.drawing.text/ --- diff --git a/english/cpp/system.drawing/_index.md b/english/cpp/system.drawing/_index.md index 5d7d0ebe85..14a9690317 100644 --- a/english/cpp/system.drawing/_index.md +++ b/english/cpp/system.drawing/_index.md @@ -4,7 +4,7 @@ linktitle: System::Drawing second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Drawing namespace in C++.' type: docs -weight: 3800 +weight: 3900 url: /cpp/system.drawing/ --- diff --git a/english/cpp/system.drawing/brush/clone/_index.md b/english/cpp/system.drawing/brush/clone/_index.md deleted file mode 100644 index 653c6c4331..0000000000 --- a/english/cpp/system.drawing/brush/clone/_index.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: System::Drawing::Brush::Clone method -linktitle: Clone -second_title: Aspose.PDF for C++ API Reference -description: 'System::Drawing::Brush::Clone method. RTTI information in C++.' -type: docs -weight: 100 -url: /cpp/system.drawing/brush/clone/ ---- -## Brush::Clone method - - -RTTI information. - -```cpp -virtual SharedPtr System::Drawing::Brush::Clone()=0 -``` - - -### ReturnValue - -A shared pointer to the copy of the current object. -## Remarks - - -Creates a copy of the current object. -## See Also - -* Typedef [SharedPtr](../../../system/sharedptr/) -* Class [Brush](../) -* Class [Brush](../) -* Namespace [System::Drawing](../../) -* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.drawing/brush/dispose/_index.md b/english/cpp/system.drawing/brush/dispose/_index.md deleted file mode 100644 index 31b109616c..0000000000 --- a/english/cpp/system.drawing/brush/dispose/_index.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -title: System::Drawing::Brush::Dispose method -linktitle: Dispose -second_title: Aspose.PDF for C++ API Reference -description: 'System::Drawing::Brush::Dispose method. Releases operating system resources acquired by the current object in C++.' -type: docs -weight: 200 -url: /cpp/system.drawing/brush/dispose/ ---- -## Brush::Dispose method - - -Releases operating system resources acquired by the current object. - -```cpp -void System::Drawing::Brush::Dispose() -``` - -## See Also - -* Class [Brush](../) -* Namespace [System::Drawing](../../) -* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.globalization/_index.md b/english/cpp/system.globalization/_index.md index e031c3b711..6bd475ef75 100644 --- a/english/cpp/system.globalization/_index.md +++ b/english/cpp/system.globalization/_index.md @@ -4,7 +4,7 @@ linktitle: System::Globalization second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Globalization namespace in C++.' type: docs -weight: 4300 +weight: 4400 url: /cpp/system.globalization/ --- diff --git a/english/cpp/system.io.compression/_index.md b/english/cpp/system.io.compression/_index.md index 555e9f68d7..7b6de1f339 100644 --- a/english/cpp/system.io.compression/_index.md +++ b/english/cpp/system.io.compression/_index.md @@ -4,7 +4,7 @@ linktitle: System::IO::Compression second_title: Aspose.PDF for C++ API Reference description: 'How to use System::IO::Compression namespace in C++.' type: docs -weight: 4500 +weight: 4600 url: /cpp/system.io.compression/ --- diff --git a/english/cpp/system.io/_index.md b/english/cpp/system.io/_index.md index e9cc1fdafb..92dd560585 100644 --- a/english/cpp/system.io/_index.md +++ b/english/cpp/system.io/_index.md @@ -4,7 +4,7 @@ linktitle: System::IO second_title: Aspose.PDF for C++ API Reference description: 'How to use System::IO namespace in C++.' type: docs -weight: 4400 +weight: 4500 url: /cpp/system.io/ --- diff --git a/english/cpp/system.io/fileoptions/_index.md b/english/cpp/system.io/fileoptions/_index.md index 90b3391962..49a2b04fd4 100644 --- a/english/cpp/system.io/fileoptions/_index.md +++ b/english/cpp/system.io/fileoptions/_index.md @@ -25,7 +25,7 @@ enum class FileOptions | DeleteOnClose | 67108864 | The file should be automatically deleted when it is not in use anymore. | | SequentialScan | 134217728 | The file shoud be accesses sequentially. | | RandomAccess | 268435456 | The file is accessed randomly. | -| Asynchronous | 1073741824 | The file can be used for asynchronous I/O operations. NOT IMPLEMENTED. | +| Asynchronous | 1073741824 | The file can be used for asynchronous I/O operations. | | WriteThrough | n/a | All writes should go directly to the disk bypassing any intermediate cache. | ## See Also diff --git a/english/cpp/system.io/filestream/_index.md b/english/cpp/system.io/filestream/_index.md index 58f0346c37..c1770f17d6 100644 --- a/english/cpp/system.io/filestream/_index.md +++ b/english/cpp/system.io/filestream/_index.md @@ -23,9 +23,11 @@ class FileStream : public System::IO::Stream | [Close](./close/)() override | Closes the current [FileStream](./) object. | | [FileStream](./filestream/)(const String\&, FileMode) | Constructs a new instance of [FileStream](./) class and initializes it with the specified parameters. | | [FileStream](./filestream/)(const String\&, FileMode, FileAccess, FileShare, int32_t, FileOptions) | Constructs a new instance of [FileStream](./) class and initializes it with the specified parameters. | +| [FileStream](./filestream/)(const String\&, FileMode, FileAccess, FileShare, int32_t, bool) | Constructs a new instance of [FileStream](./) class and initializes it with the specified parameters. | | [FileStream](./filestream/)(const FileStream\&) | | | [Flush](./flush/)() override | Clears this stream's buffers and writes all buffered data to the underlying file. | | [Flush](./flush/)(bool) | Clears this stream's buffers and writes all buffered data to the underlying file. Synonym for method [Flush()](./flush/). | +| [FlushAsync](./flushasync/)(const Threading::CancellationToken\&) override | Asynchronously clears all buffers for this stream, causes any buffered data to be written to the underlying device, and monitors cancellation requests. | | [get_CanRead](./get_canread/)() const override | Determines if the stream is readable. | | [get_CanSeek](./get_canseek/)() const override | Determines if the stream supports seeking. | | [get_CanWrite](./get_canwrite/)() const override | Determines if the stream is writable. | @@ -35,12 +37,14 @@ class FileStream : public System::IO::Stream | [operator=](./operator=/)(const FileStream\&) | | | [Read](./read/)(const ArrayPtr\\&, int32_t, int32_t) override | Reads the specified number of bytes from the stream and writes them to the specified byte array. | | [Read](./read/)(const System::Details::ArrayView\\&, int32_t, int32_t) override | Reads the specified number of bytes from the stream and writes them to the specified byte array. | +| [ReadAsync](./readasync/)(const ArrayPtr\\&, int32_t, int32_t, const Threading::CancellationToken\&) override | Asynchronously reads a sequence of bytes from the current stream, advances the position within the stream by the number of bytes read, and monitors cancellation requests. | | [ReadByte](./readbyte/)() override | Reads a single byte from the stream and returns a 32-bit integer value equivalent to the value of the read byte. | | [Seek](./seek/)(int64_t, SeekOrigin) override | Sets the position of the stream represented by the current object. | | [set_Position](./set_position/)(int64_t) override | Flushes the stream and then sets the stream's position. | | [SetLength](./setlength/)(int64_t) override | Sets the length of the stream represented by the current object. | | [Write](./write/)(const ArrayPtr\\&, int32_t, int32_t) override | Writes the specified subrange of bytes from the specified byte array to the stream. | | [Write](./write/)(const System::Details::ArrayView\\&, int32_t, int32_t) override | Writes the specified subrange of bytes from the specified byte array to the stream. | +| [WriteAsync](./writeasync/)(const ArrayPtr\\&, int32_t, int32_t, const Threading::CancellationToken\&) override | Asynchronously writes a sequence of bytes to the current stream, advances the current position within this stream by the number of bytes written, and monitors cancellation requests. | | [WriteByte](./writebyte/)(uint8_t) override | Writes the specified unsigned 8-bit integer value to the stream. | | [~FileStream](./~filestream/)() | Destructor. | ## Fields diff --git a/english/cpp/system.io/filestream/defaultbuffersize/_index.md b/english/cpp/system.io/filestream/defaultbuffersize/_index.md index b4f38b7fce..70fffc1044 100644 --- a/english/cpp/system.io/filestream/defaultbuffersize/_index.md +++ b/english/cpp/system.io/filestream/defaultbuffersize/_index.md @@ -4,7 +4,7 @@ linktitle: DefaultBufferSize second_title: Aspose.PDF for C++ API Reference description: 'System::IO::FileStream::DefaultBufferSize field. Default value of the number of bytes bufferred during read and write operations in C++.' type: docs -weight: 1900 +weight: 2200 url: /cpp/system.io/filestream/defaultbuffersize/ --- ## DefaultBufferSize field diff --git a/english/cpp/system.io/filestream/filestream/_index.md b/english/cpp/system.io/filestream/filestream/_index.md index 15096783d3..e7df8588b6 100644 --- a/english/cpp/system.io/filestream/filestream/_index.md +++ b/english/cpp/system.io/filestream/filestream/_index.md @@ -44,6 +44,39 @@ System::IO::FileStream::FileStream(const String &path, FileMode mode) * Class [FileStream](../) * Namespace [System::IO](../../) * Library [Aspose.PDF for C++](../../../) +## FileStream::FileStream(const String\&, FileMode, FileAccess, FileShare, int32_t, bool) constructor + + +Constructs a new instance of [FileStream](../) class and initializes it with the specified parameters. + +```cpp +System::IO::FileStream::FileStream(const String &path, FileMode mode, FileAccess access, FileShare share, int32_t buffer_size, bool useAsync) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| path | const String\& | The path of the file to open. | +| mode | FileMode | Specifies the mode in which to open the file. | +| access | FileAccess | The requested access type. | +| share | FileShare | The type of access that other [FileStream](../) objects have to the opened file. | +| buffer_size | int32_t | The number of bytes bufferred during read and write operations. | +| useAsync | bool | Specifies whether to use asynchronous I/O or synchronous I/O. | +## Remarks + + + +The underlying operating system might not support asynchronous I/O. + +## See Also + +* Class [String](../../../system/string/) +* Enum [FileMode](../../filemode/) +* Enum [FileAccess](../../fileaccess/) +* Enum [FileShare](../../fileshare/) +* Class [FileStream](../) +* Namespace [System::IO](../../) +* Library [Aspose.PDF for C++](../../../) ## FileStream::FileStream(const String\&, FileMode, FileAccess, FileShare, int32_t, FileOptions) constructor diff --git a/english/cpp/system.io/filestream/flushasync/_index.md b/english/cpp/system.io/filestream/flushasync/_index.md new file mode 100644 index 0000000000..daf3f8fe7f --- /dev/null +++ b/english/cpp/system.io/filestream/flushasync/_index.md @@ -0,0 +1,34 @@ +--- +title: System::IO::FileStream::FlushAsync method +linktitle: FlushAsync +second_title: Aspose.PDF for C++ API Reference +description: 'System::IO::FileStream::FlushAsync method. Asynchronously clears all buffers for this stream, causes any buffered data to be written to the underlying device, and monitors cancellation requests in C++.' +type: docs +weight: 500 +url: /cpp/system.io/filestream/flushasync/ +--- +## FileStream::FlushAsync method + + +Asynchronously clears all buffers for this stream, causes any buffered data to be written to the underlying device, and monitors cancellation requests. + +```cpp +TaskPtr System::IO::FileStream::FlushAsync(const Threading::CancellationToken &cancellationToken) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| cancellationToken | const Threading::CancellationToken\& | The token to monitor for cancellation requests. | + +### ReturnValue + +A task that represents the asynchronous flush operation. + +## See Also + +* Typedef [TaskPtr](../../../system/taskptr/) +* Class [CancellationToken](../../../system.threading/cancellationtoken/) +* Class [FileStream](../) +* Namespace [System::IO](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.io/filestream/get_canread/_index.md b/english/cpp/system.io/filestream/get_canread/_index.md index fdc641081a..c65a95c288 100644 --- a/english/cpp/system.io/filestream/get_canread/_index.md +++ b/english/cpp/system.io/filestream/get_canread/_index.md @@ -4,7 +4,7 @@ linktitle: get_CanRead second_title: Aspose.PDF for C++ API Reference description: 'System::IO::FileStream::get_CanRead method. Determines if the stream is readable in C++.' type: docs -weight: 500 +weight: 600 url: /cpp/system.io/filestream/get_canread/ --- ## FileStream::get_CanRead method diff --git a/english/cpp/system.io/filestream/get_canseek/_index.md b/english/cpp/system.io/filestream/get_canseek/_index.md index 3b7fa7cf43..8186679714 100644 --- a/english/cpp/system.io/filestream/get_canseek/_index.md +++ b/english/cpp/system.io/filestream/get_canseek/_index.md @@ -4,7 +4,7 @@ linktitle: get_CanSeek second_title: Aspose.PDF for C++ API Reference description: 'System::IO::FileStream::get_CanSeek method. Determines if the stream supports seeking in C++.' type: docs -weight: 600 +weight: 700 url: /cpp/system.io/filestream/get_canseek/ --- ## FileStream::get_CanSeek method diff --git a/english/cpp/system.io/filestream/get_canwrite/_index.md b/english/cpp/system.io/filestream/get_canwrite/_index.md index 9abe26227e..72477fd655 100644 --- a/english/cpp/system.io/filestream/get_canwrite/_index.md +++ b/english/cpp/system.io/filestream/get_canwrite/_index.md @@ -4,7 +4,7 @@ linktitle: get_CanWrite second_title: Aspose.PDF for C++ API Reference description: 'System::IO::FileStream::get_CanWrite method. Determines if the stream is writable in C++.' type: docs -weight: 700 +weight: 800 url: /cpp/system.io/filestream/get_canwrite/ --- ## FileStream::get_CanWrite method diff --git a/english/cpp/system.io/filestream/get_length/_index.md b/english/cpp/system.io/filestream/get_length/_index.md index 04a5b25053..8fb0cac8c2 100644 --- a/english/cpp/system.io/filestream/get_length/_index.md +++ b/english/cpp/system.io/filestream/get_length/_index.md @@ -4,7 +4,7 @@ linktitle: get_Length second_title: Aspose.PDF for C++ API Reference description: 'System::IO::FileStream::get_Length method. Returns the length of the stream in bytes in C++.' type: docs -weight: 800 +weight: 900 url: /cpp/system.io/filestream/get_length/ --- ## FileStream::get_Length method diff --git a/english/cpp/system.io/filestream/get_name/_index.md b/english/cpp/system.io/filestream/get_name/_index.md index 6fe03855f2..c9f86b7f24 100644 --- a/english/cpp/system.io/filestream/get_name/_index.md +++ b/english/cpp/system.io/filestream/get_name/_index.md @@ -4,7 +4,7 @@ linktitle: get_Name second_title: Aspose.PDF for C++ API Reference description: 'System::IO::FileStream::get_Name method. Returns the name of the file encapsulated by the current FileStream object in C++.' type: docs -weight: 900 +weight: 1000 url: /cpp/system.io/filestream/get_name/ --- ## FileStream::get_Name method diff --git a/english/cpp/system.io/filestream/get_position/_index.md b/english/cpp/system.io/filestream/get_position/_index.md index 11d3f51725..3cb64d4051 100644 --- a/english/cpp/system.io/filestream/get_position/_index.md +++ b/english/cpp/system.io/filestream/get_position/_index.md @@ -4,7 +4,7 @@ linktitle: get_Position second_title: Aspose.PDF for C++ API Reference description: 'System::IO::FileStream::get_Position method. Returns the current position of the stream in C++.' type: docs -weight: 1000 +weight: 1100 url: /cpp/system.io/filestream/get_position/ --- ## FileStream::get_Position method diff --git a/english/cpp/system.io/filestream/operator=/_index.md b/english/cpp/system.io/filestream/operator=/_index.md index d8313a207a..a7a3a43992 100644 --- a/english/cpp/system.io/filestream/operator=/_index.md +++ b/english/cpp/system.io/filestream/operator=/_index.md @@ -4,7 +4,7 @@ linktitle: operator= second_title: Aspose.PDF for C++ API Reference description: 'How to use operator= method of System::IO::FileStream class in C++.' type: docs -weight: 1100 +weight: 1200 url: /cpp/system.io/filestream/operator=/ --- ## FileStream::operator= method diff --git a/english/cpp/system.io/filestream/read/_index.md b/english/cpp/system.io/filestream/read/_index.md index 52195c3657..e2b07c0c92 100644 --- a/english/cpp/system.io/filestream/read/_index.md +++ b/english/cpp/system.io/filestream/read/_index.md @@ -4,7 +4,7 @@ linktitle: Read second_title: Aspose.PDF for C++ API Reference description: 'System::IO::FileStream::Read method. Reads the specified number of bytes from the stream and writes them to the specified byte array in C++.' type: docs -weight: 1200 +weight: 1300 url: /cpp/system.io/filestream/read/ --- ## FileStream::Read(const ArrayPtr\\&, int32_t, int32_t) method diff --git a/english/cpp/system.io/filestream/readasync/_index.md b/english/cpp/system.io/filestream/readasync/_index.md new file mode 100644 index 0000000000..e16630bb77 --- /dev/null +++ b/english/cpp/system.io/filestream/readasync/_index.md @@ -0,0 +1,38 @@ +--- +title: System::IO::FileStream::ReadAsync method +linktitle: ReadAsync +second_title: Aspose.PDF for C++ API Reference +description: 'System::IO::FileStream::ReadAsync method. Asynchronously reads a sequence of bytes from the current stream, advances the position within the stream by the number of bytes read, and monitors cancellation requests in C++.' +type: docs +weight: 1400 +url: /cpp/system.io/filestream/readasync/ +--- +## FileStream::ReadAsync method + + +Asynchronously reads a sequence of bytes from the current stream, advances the position within the stream by the number of bytes read, and monitors cancellation requests. + +```cpp +RTaskPtr System::IO::FileStream::ReadAsync(const ArrayPtr &buffer, int32_t offset, int32_t count, const Threading::CancellationToken &cancellationToken) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| buffer | const ArrayPtr\\& | The byte array to write the read bytes to. | +| offset | int32_t | A 0-based position in **buffer** to start writing at. | +| count | int32_t | The number of bytes to read. | +| cancellationToken | const Threading::CancellationToken\& | The token to monitor for cancellation requests. | + +### ReturnValue + +A task that represents the asynchronous read operation. The value of the TResult parameter contains the total number of bytes read into the buffer. The result value can be less than the number of bytes requested if the number of bytes currently available is less than the requested number, or it can be 0 (zero) if the end of the stream has been reached. + +## See Also + +* Typedef [RTaskPtr](../../../system/rtaskptr/) +* Typedef [ArrayPtr](../../../system/arrayptr/) +* Class [CancellationToken](../../../system.threading/cancellationtoken/) +* Class [FileStream](../) +* Namespace [System::IO](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.io/filestream/readbyte/_index.md b/english/cpp/system.io/filestream/readbyte/_index.md index a1374aa517..b2cc8f08e4 100644 --- a/english/cpp/system.io/filestream/readbyte/_index.md +++ b/english/cpp/system.io/filestream/readbyte/_index.md @@ -4,7 +4,7 @@ linktitle: ReadByte second_title: Aspose.PDF for C++ API Reference description: 'System::IO::FileStream::ReadByte method. Reads a single byte from the stream and returns a 32-bit integer value equivalent to the value of the read byte in C++.' type: docs -weight: 1300 +weight: 1500 url: /cpp/system.io/filestream/readbyte/ --- ## FileStream::ReadByte method diff --git a/english/cpp/system.io/filestream/seek/_index.md b/english/cpp/system.io/filestream/seek/_index.md index e4902c3453..35afbe31b6 100644 --- a/english/cpp/system.io/filestream/seek/_index.md +++ b/english/cpp/system.io/filestream/seek/_index.md @@ -4,7 +4,7 @@ linktitle: Seek second_title: Aspose.PDF for C++ API Reference description: 'System::IO::FileStream::Seek method. Sets the position of the stream represented by the current object in C++.' type: docs -weight: 1400 +weight: 1600 url: /cpp/system.io/filestream/seek/ --- ## FileStream::Seek method diff --git a/english/cpp/system.io/filestream/set_position/_index.md b/english/cpp/system.io/filestream/set_position/_index.md index 083b7237b8..8c2bbfe1e7 100644 --- a/english/cpp/system.io/filestream/set_position/_index.md +++ b/english/cpp/system.io/filestream/set_position/_index.md @@ -4,7 +4,7 @@ linktitle: set_Position second_title: Aspose.PDF for C++ API Reference description: 'System::IO::FileStream::set_Position method. Flushes the stream and then sets the stream''s position in C++.' type: docs -weight: 1500 +weight: 1700 url: /cpp/system.io/filestream/set_position/ --- ## FileStream::set_Position method diff --git a/english/cpp/system.io/filestream/setlength/_index.md b/english/cpp/system.io/filestream/setlength/_index.md index 1916d2107c..b749c1fa1d 100644 --- a/english/cpp/system.io/filestream/setlength/_index.md +++ b/english/cpp/system.io/filestream/setlength/_index.md @@ -4,7 +4,7 @@ linktitle: SetLength second_title: Aspose.PDF for C++ API Reference description: 'System::IO::FileStream::SetLength method. Sets the length of the stream represented by the current object in C++.' type: docs -weight: 1600 +weight: 1800 url: /cpp/system.io/filestream/setlength/ --- ## FileStream::SetLength method diff --git a/english/cpp/system.io/filestream/write/_index.md b/english/cpp/system.io/filestream/write/_index.md index 29285bb319..9b6668449d 100644 --- a/english/cpp/system.io/filestream/write/_index.md +++ b/english/cpp/system.io/filestream/write/_index.md @@ -4,7 +4,7 @@ linktitle: Write second_title: Aspose.PDF for C++ API Reference description: 'System::IO::FileStream::Write method. Writes the specified subrange of bytes from the specified byte array to the stream in C++.' type: docs -weight: 1700 +weight: 1900 url: /cpp/system.io/filestream/write/ --- ## FileStream::Write(const ArrayPtr\\&, int32_t, int32_t) method diff --git a/english/cpp/system.io/filestream/writeasync/_index.md b/english/cpp/system.io/filestream/writeasync/_index.md new file mode 100644 index 0000000000..24c42e16e4 --- /dev/null +++ b/english/cpp/system.io/filestream/writeasync/_index.md @@ -0,0 +1,38 @@ +--- +title: System::IO::FileStream::WriteAsync method +linktitle: WriteAsync +second_title: Aspose.PDF for C++ API Reference +description: 'System::IO::FileStream::WriteAsync method. Asynchronously writes a sequence of bytes to the current stream, advances the current position within this stream by the number of bytes written, and monitors cancellation requests in C++.' +type: docs +weight: 2000 +url: /cpp/system.io/filestream/writeasync/ +--- +## FileStream::WriteAsync method + + +Asynchronously writes a sequence of bytes to the current stream, advances the current position within this stream by the number of bytes written, and monitors cancellation requests. + +```cpp +TaskPtr System::IO::FileStream::WriteAsync(const ArrayPtr &buffer, int32_t offset, int32_t count, const Threading::CancellationToken &cancellationToken) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| buffer | const ArrayPtr\\& | The array containing the bytes to write. | +| offset | int32_t | A 0-based index of the elemnet in **buffer** at which the subrange to write begins. | +| count | int32_t | The number of elements in the subrange to write. | +| cancellationToken | const Threading::CancellationToken\& | The token to monitor for cancellation requests. | + +### ReturnValue + +A task that represents the asynchronous write operation. + +## See Also + +* Typedef [TaskPtr](../../../system/taskptr/) +* Typedef [ArrayPtr](../../../system/arrayptr/) +* Class [CancellationToken](../../../system.threading/cancellationtoken/) +* Class [FileStream](../) +* Namespace [System::IO](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.io/filestream/writebyte/_index.md b/english/cpp/system.io/filestream/writebyte/_index.md index 5eca6cbcfc..9ad1475bc3 100644 --- a/english/cpp/system.io/filestream/writebyte/_index.md +++ b/english/cpp/system.io/filestream/writebyte/_index.md @@ -4,7 +4,7 @@ linktitle: WriteByte second_title: Aspose.PDF for C++ API Reference description: 'System::IO::FileStream::WriteByte method. Writes the specified unsigned 8-bit integer value to the stream in C++.' type: docs -weight: 1800 +weight: 2100 url: /cpp/system.io/filestream/writebyte/ --- ## FileStream::WriteByte method diff --git a/english/cpp/system.io/stream/_index.md b/english/cpp/system.io/stream/_index.md index 54f3733f0d..21e9f9b6c1 100644 --- a/english/cpp/system.io/stream/_index.md +++ b/english/cpp/system.io/stream/_index.md @@ -29,6 +29,8 @@ class Stream : public System::IDisposable | virtual [EndRead](./endread/)(System::SharedPtr\) | Waits until the specified asynchronous read operation completes. | | virtual [EndWrite](./endwrite/)(System::SharedPtr\) | Ends an asynchronous write operation. Waits until the specified asynchronous write operation completes. | | virtual [Flush](./flush/)() | Clears this stream's buffers and writes all buffered data to the underlying storage. | +| virtual [FlushAsync](./flushasync/)(const Threading::CancellationToken\&) | Asynchronously clears all buffers for this stream, causes any buffered data to be written to the underlying device, and monitors cancellation requests. | +| [FlushAsync](./flushasync/)() | Asynchronously clears all buffers for this stream, causes any buffered data to be written to the underlying device, and monitors cancellation requests. | | virtual [get_CanRead](./get_canread/)() const | Determines if the stream is readable. | | virtual [get_CanSeek](./get_canseek/)() const | Determines if the stream supports seeking. | | virtual [get_CanTimeout](./get_cantimeout/)() const | Gets a value that determines whether the current stream can time out. | @@ -40,6 +42,8 @@ class Stream : public System::IDisposable | virtual [Read](./read/)(const ArrayPtr\\&, int32_t, int32_t) | Reads the specified number of bytes from the stream and writes them to the specified byte array. | | virtual [Read](./read/)(const System::Details::ArrayView\\&, int32_t, int32_t) | Reads the specified number of bytes from the stream and writes them to the specified byte array. | | [Read](./read/)(const System::Details::StackArray\\&, int32_t, int32_t) | Reads the specified number of bytes from the stream and writes them to the specified byte array. | +| virtual [ReadAsync](./readasync/)(const ArrayPtr\\&, int32_t, int32_t, const Threading::CancellationToken\&) | Asynchronously reads a sequence of bytes from the current stream, advances the position within the stream by the number of bytes read, and monitors cancellation requests. | +| [ReadAsync](./readasync/)(const ArrayPtr\\&, int32_t, int32_t) | Asynchronously reads a sequence of bytes from the current stream, advances the position within the stream by the number of bytes read, and monitors cancellation requests. | | virtual [ReadByte](./readbyte/)() | Reads a single byte from the stream and returns a 32-bit integer value equivalent to the value of the read byte. | | virtual [Seek](./seek/)(int64_t, SeekOrigin) | Sets the position of the stream represented by the current object. | | virtual [set_Position](./set_position/)(int64_t) | Sets the stream's position. | @@ -49,6 +53,8 @@ class Stream : public System::IDisposable | virtual [Write](./write/)(const ArrayPtr\\&, int32_t, int32_t) | Writes the specified subrange of bytes from the specified byte array to the stream. | | virtual [Write](./write/)(const System::Details::ArrayView\\&, int32_t, int32_t) | Writes the specified subrange of bytes from the specified byte array to the stream. | | [Write](./write/)(const System::Details::StackArray\\&, int32_t, int32_t) | Writes the specified subrange of bytes from the specified byte array to the stream. | +| virtual [WriteAsync](./writeasync/)(const ArrayPtr\\&, int32_t, int32_t, const Threading::CancellationToken\&) | Asynchronously writes a sequence of bytes to the current stream, advances the current position within this stream by the number of bytes written, and monitors cancellation requests. | +| [WriteAsync](./writeasync/)(const ArrayPtr\\&, int32_t, int32_t) | Asynchronously writes a sequence of bytes to the current stream, advances the current position within this stream by the number of bytes written, and monitors cancellation requests. | | virtual [WriteByte](./writebyte/)(uint8_t) | Writes the specified unsigned 8-bit integer value to the stream. | ## Fields diff --git a/english/cpp/system.io/stream/flushasync/_index.md b/english/cpp/system.io/stream/flushasync/_index.md new file mode 100644 index 0000000000..b93e7e8786 --- /dev/null +++ b/english/cpp/system.io/stream/flushasync/_index.md @@ -0,0 +1,54 @@ +--- +title: System::IO::Stream::FlushAsync method +linktitle: FlushAsync +second_title: Aspose.PDF for C++ API Reference +description: 'System::IO::Stream::FlushAsync method. Asynchronously clears all buffers for this stream, causes any buffered data to be written to the underlying device, and monitors cancellation requests in C++.' +type: docs +weight: 900 +url: /cpp/system.io/stream/flushasync/ +--- +## Stream::FlushAsync() method + + +Asynchronously clears all buffers for this stream, causes any buffered data to be written to the underlying device, and monitors cancellation requests. + +```cpp +TaskPtr System::IO::Stream::FlushAsync() +``` + + +### ReturnValue + +A task that represents the asynchronous flush operation. + +## See Also + +* Typedef [TaskPtr](../../../system/taskptr/) +* Class [Stream](../) +* Namespace [System::IO](../../) +* Library [Aspose.PDF for C++](../../../) +## Stream::FlushAsync(const Threading::CancellationToken\&) method + + +Asynchronously clears all buffers for this stream, causes any buffered data to be written to the underlying device, and monitors cancellation requests. + +```cpp +virtual TaskPtr System::IO::Stream::FlushAsync(const Threading::CancellationToken &cancellationToken) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| cancellationToken | const Threading::CancellationToken\& | The token to monitor for cancellation requests. | + +### ReturnValue + +A task that represents the asynchronous flush operation. + +## See Also + +* Typedef [TaskPtr](../../../system/taskptr/) +* Class [CancellationToken](../../../system.threading/cancellationtoken/) +* Class [Stream](../) +* Namespace [System::IO](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.io/stream/get_canread/_index.md b/english/cpp/system.io/stream/get_canread/_index.md index 667acc40d6..f2fc8d9d89 100644 --- a/english/cpp/system.io/stream/get_canread/_index.md +++ b/english/cpp/system.io/stream/get_canread/_index.md @@ -4,7 +4,7 @@ linktitle: get_CanRead second_title: Aspose.PDF for C++ API Reference description: 'System::IO::Stream::get_CanRead method. Determines if the stream is readable in C++.' type: docs -weight: 900 +weight: 1000 url: /cpp/system.io/stream/get_canread/ --- ## Stream::get_CanRead method diff --git a/english/cpp/system.io/stream/get_canseek/_index.md b/english/cpp/system.io/stream/get_canseek/_index.md index 02fc2549fb..7ce9e8569d 100644 --- a/english/cpp/system.io/stream/get_canseek/_index.md +++ b/english/cpp/system.io/stream/get_canseek/_index.md @@ -4,7 +4,7 @@ linktitle: get_CanSeek second_title: Aspose.PDF for C++ API Reference description: 'System::IO::Stream::get_CanSeek method. Determines if the stream supports seeking in C++.' type: docs -weight: 1000 +weight: 1100 url: /cpp/system.io/stream/get_canseek/ --- ## Stream::get_CanSeek method diff --git a/english/cpp/system.io/stream/get_cantimeout/_index.md b/english/cpp/system.io/stream/get_cantimeout/_index.md index 2439310e4c..a58413e62a 100644 --- a/english/cpp/system.io/stream/get_cantimeout/_index.md +++ b/english/cpp/system.io/stream/get_cantimeout/_index.md @@ -4,7 +4,7 @@ linktitle: get_CanTimeout second_title: Aspose.PDF for C++ API Reference description: 'System::IO::Stream::get_CanTimeout method. Gets a value that determines whether the current stream can time out in C++.' type: docs -weight: 1100 +weight: 1200 url: /cpp/system.io/stream/get_cantimeout/ --- ## Stream::get_CanTimeout method diff --git a/english/cpp/system.io/stream/get_canwrite/_index.md b/english/cpp/system.io/stream/get_canwrite/_index.md index 79caffc7ff..d82c1f7e02 100644 --- a/english/cpp/system.io/stream/get_canwrite/_index.md +++ b/english/cpp/system.io/stream/get_canwrite/_index.md @@ -4,7 +4,7 @@ linktitle: get_CanWrite second_title: Aspose.PDF for C++ API Reference description: 'System::IO::Stream::get_CanWrite method. Determines if the stream is writable in C++.' type: docs -weight: 1200 +weight: 1300 url: /cpp/system.io/stream/get_canwrite/ --- ## Stream::get_CanWrite method diff --git a/english/cpp/system.io/stream/get_length/_index.md b/english/cpp/system.io/stream/get_length/_index.md index c1c73f122a..54b265da3c 100644 --- a/english/cpp/system.io/stream/get_length/_index.md +++ b/english/cpp/system.io/stream/get_length/_index.md @@ -4,7 +4,7 @@ linktitle: get_Length second_title: Aspose.PDF for C++ API Reference description: 'System::IO::Stream::get_Length method. Returns the length of the stream in bytes in C++.' type: docs -weight: 1300 +weight: 1400 url: /cpp/system.io/stream/get_length/ --- ## Stream::get_Length method diff --git a/english/cpp/system.io/stream/get_position/_index.md b/english/cpp/system.io/stream/get_position/_index.md index cacc67abf4..6ec98916b0 100644 --- a/english/cpp/system.io/stream/get_position/_index.md +++ b/english/cpp/system.io/stream/get_position/_index.md @@ -4,7 +4,7 @@ linktitle: get_Position second_title: Aspose.PDF for C++ API Reference description: 'System::IO::Stream::get_Position method. Returns the current position of the stream in C++.' type: docs -weight: 1400 +weight: 1500 url: /cpp/system.io/stream/get_position/ --- ## Stream::get_Position method diff --git a/english/cpp/system.io/stream/get_readtimeout/_index.md b/english/cpp/system.io/stream/get_readtimeout/_index.md index 650398d319..0d70fc3a1c 100644 --- a/english/cpp/system.io/stream/get_readtimeout/_index.md +++ b/english/cpp/system.io/stream/get_readtimeout/_index.md @@ -4,7 +4,7 @@ linktitle: get_ReadTimeout second_title: Aspose.PDF for C++ API Reference description: 'System::IO::Stream::get_ReadTimeout method. Gets a value, in milliseconds, that determines how long the stream will attempt to read before timing out in C++.' type: docs -weight: 1500 +weight: 1600 url: /cpp/system.io/stream/get_readtimeout/ --- ## Stream::get_ReadTimeout method diff --git a/english/cpp/system.io/stream/get_writetimeout/_index.md b/english/cpp/system.io/stream/get_writetimeout/_index.md index ab2bbda797..ef1776ddb4 100644 --- a/english/cpp/system.io/stream/get_writetimeout/_index.md +++ b/english/cpp/system.io/stream/get_writetimeout/_index.md @@ -4,7 +4,7 @@ linktitle: get_WriteTimeout second_title: Aspose.PDF for C++ API Reference description: 'System::IO::Stream::get_WriteTimeout method. Gets a value, in milliseconds, that determines how long the stream will attempt to write before timing out in C++.' type: docs -weight: 1600 +weight: 1700 url: /cpp/system.io/stream/get_writetimeout/ --- ## Stream::get_WriteTimeout method diff --git a/english/cpp/system.io/stream/null/_index.md b/english/cpp/system.io/stream/null/_index.md index 9566185a3a..41d599ae06 100644 --- a/english/cpp/system.io/stream/null/_index.md +++ b/english/cpp/system.io/stream/null/_index.md @@ -4,7 +4,7 @@ linktitle: Null second_title: Aspose.PDF for C++ API Reference description: 'System::IO::Stream::Null field. A stream with no underlying storage in C++.' type: docs -weight: 2600 +weight: 2900 url: /cpp/system.io/stream/null/ --- ## Null field diff --git a/english/cpp/system.io/stream/ptr/_index.md b/english/cpp/system.io/stream/ptr/_index.md index f649f39d43..f2697bf53a 100644 --- a/english/cpp/system.io/stream/ptr/_index.md +++ b/english/cpp/system.io/stream/ptr/_index.md @@ -4,7 +4,7 @@ linktitle: Ptr second_title: Aspose.PDF for C++ API Reference description: 'System::IO::Stream::Ptr typedef. An alias for a shared pointer to this class in C++.' type: docs -weight: 2700 +weight: 3000 url: /cpp/system.io/stream/ptr/ --- ## Ptr typedef diff --git a/english/cpp/system.io/stream/read/_index.md b/english/cpp/system.io/stream/read/_index.md index a8eac3a343..7d1b558cc6 100644 --- a/english/cpp/system.io/stream/read/_index.md +++ b/english/cpp/system.io/stream/read/_index.md @@ -4,7 +4,7 @@ linktitle: Read second_title: Aspose.PDF for C++ API Reference description: 'System::IO::Stream::Read method. Reads the specified number of bytes from the stream and writes them to the specified byte array in C++.' type: docs -weight: 1700 +weight: 1800 url: /cpp/system.io/stream/read/ --- ## Stream::Read(const ArrayPtr\\&, int32_t, int32_t) method diff --git a/english/cpp/system.io/stream/readasync/_index.md b/english/cpp/system.io/stream/readasync/_index.md new file mode 100644 index 0000000000..1ac3cfa40e --- /dev/null +++ b/english/cpp/system.io/stream/readasync/_index.md @@ -0,0 +1,65 @@ +--- +title: System::IO::Stream::ReadAsync method +linktitle: ReadAsync +second_title: Aspose.PDF for C++ API Reference +description: 'System::IO::Stream::ReadAsync method. Asynchronously reads a sequence of bytes from the current stream, advances the position within the stream by the number of bytes read, and monitors cancellation requests in C++.' +type: docs +weight: 1900 +url: /cpp/system.io/stream/readasync/ +--- +## Stream::ReadAsync(const ArrayPtr\\&, int32_t, int32_t) method + + +Asynchronously reads a sequence of bytes from the current stream, advances the position within the stream by the number of bytes read, and monitors cancellation requests. + +```cpp +RTaskPtr System::IO::Stream::ReadAsync(const ArrayPtr &buffer, int32_t offset, int32_t count) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| buffer | const ArrayPtr\\& | The byte array to write the read bytes to. | +| offset | int32_t | A 0-based position in **buffer** to start writing at. | +| count | int32_t | The number of bytes to read. | + +### ReturnValue + +A task that represents the asynchronous read operation. The value of the TResult parameter contains the total number of bytes read into the buffer. The result value can be less than the number of bytes requested if the number of bytes currently available is less than the requested number, or it can be 0 (zero) if the end of the stream has been reached. + +## See Also + +* Typedef [RTaskPtr](../../../system/rtaskptr/) +* Typedef [ArrayPtr](../../../system/arrayptr/) +* Class [Stream](../) +* Namespace [System::IO](../../) +* Library [Aspose.PDF for C++](../../../) +## Stream::ReadAsync(const ArrayPtr\\&, int32_t, int32_t, const Threading::CancellationToken\&) method + + +Asynchronously reads a sequence of bytes from the current stream, advances the position within the stream by the number of bytes read, and monitors cancellation requests. + +```cpp +virtual RTaskPtr System::IO::Stream::ReadAsync(const ArrayPtr &buffer, int32_t offset, int32_t count, const Threading::CancellationToken &cancellationToken) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| buffer | const ArrayPtr\\& | The byte array to write the read bytes to. | +| offset | int32_t | A 0-based position in **buffer** to start writing at. | +| count | int32_t | The number of bytes to read. | +| cancellationToken | const Threading::CancellationToken\& | The token to monitor for cancellation requests. | + +### ReturnValue + +A task that represents the asynchronous read operation. The value of the TResult parameter contains the total number of bytes read into the buffer. The result value can be less than the number of bytes requested if the number of bytes currently available is less than the requested number, or it can be 0 (zero) if the end of the stream has been reached. + +## See Also + +* Typedef [RTaskPtr](../../../system/rtaskptr/) +* Typedef [ArrayPtr](../../../system/arrayptr/) +* Class [CancellationToken](../../../system.threading/cancellationtoken/) +* Class [Stream](../) +* Namespace [System::IO](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.io/stream/readbyte/_index.md b/english/cpp/system.io/stream/readbyte/_index.md index 8d2b704bc1..1cc74debf8 100644 --- a/english/cpp/system.io/stream/readbyte/_index.md +++ b/english/cpp/system.io/stream/readbyte/_index.md @@ -4,7 +4,7 @@ linktitle: ReadByte second_title: Aspose.PDF for C++ API Reference description: 'System::IO::Stream::ReadByte method. Reads a single byte from the stream and returns a 32-bit integer value equivalent to the value of the read byte in C++.' type: docs -weight: 1800 +weight: 2000 url: /cpp/system.io/stream/readbyte/ --- ## Stream::ReadByte method diff --git a/english/cpp/system.io/stream/seek/_index.md b/english/cpp/system.io/stream/seek/_index.md index d2cab1c893..9ae301029b 100644 --- a/english/cpp/system.io/stream/seek/_index.md +++ b/english/cpp/system.io/stream/seek/_index.md @@ -4,7 +4,7 @@ linktitle: Seek second_title: Aspose.PDF for C++ API Reference description: 'System::IO::Stream::Seek method. Sets the position of the stream represented by the current object in C++.' type: docs -weight: 1900 +weight: 2100 url: /cpp/system.io/stream/seek/ --- ## Stream::Seek method diff --git a/english/cpp/system.io/stream/set_position/_index.md b/english/cpp/system.io/stream/set_position/_index.md index eaae677dc2..545a754cae 100644 --- a/english/cpp/system.io/stream/set_position/_index.md +++ b/english/cpp/system.io/stream/set_position/_index.md @@ -4,7 +4,7 @@ linktitle: set_Position second_title: Aspose.PDF for C++ API Reference description: 'System::IO::Stream::set_Position method. Sets the stream''s position in C++.' type: docs -weight: 2000 +weight: 2200 url: /cpp/system.io/stream/set_position/ --- ## Stream::set_Position method diff --git a/english/cpp/system.io/stream/set_readtimeout/_index.md b/english/cpp/system.io/stream/set_readtimeout/_index.md index 73926ab900..c57e16ed66 100644 --- a/english/cpp/system.io/stream/set_readtimeout/_index.md +++ b/english/cpp/system.io/stream/set_readtimeout/_index.md @@ -4,7 +4,7 @@ linktitle: set_ReadTimeout second_title: Aspose.PDF for C++ API Reference description: 'System::IO::Stream::set_ReadTimeout method. Sets a value that determines whether the current stream can time out in C++.' type: docs -weight: 2100 +weight: 2300 url: /cpp/system.io/stream/set_readtimeout/ --- ## Stream::set_ReadTimeout method diff --git a/english/cpp/system.io/stream/set_writetimeout/_index.md b/english/cpp/system.io/stream/set_writetimeout/_index.md index ac8194b89d..f22421ae22 100644 --- a/english/cpp/system.io/stream/set_writetimeout/_index.md +++ b/english/cpp/system.io/stream/set_writetimeout/_index.md @@ -4,7 +4,7 @@ linktitle: set_WriteTimeout second_title: Aspose.PDF for C++ API Reference description: 'System::IO::Stream::set_WriteTimeout method. Sets a value, in milliseconds, that determines how long the stream will attempt to read before timing out in C++.' type: docs -weight: 2200 +weight: 2400 url: /cpp/system.io/stream/set_writetimeout/ --- ## Stream::set_WriteTimeout method diff --git a/english/cpp/system.io/stream/setlength/_index.md b/english/cpp/system.io/stream/setlength/_index.md index cce76bacdd..bee1197aa9 100644 --- a/english/cpp/system.io/stream/setlength/_index.md +++ b/english/cpp/system.io/stream/setlength/_index.md @@ -4,7 +4,7 @@ linktitle: SetLength second_title: Aspose.PDF for C++ API Reference description: 'System::IO::Stream::SetLength method. Sets the length of the stream represented by the current object in C++.' type: docs -weight: 2300 +weight: 2500 url: /cpp/system.io/stream/setlength/ --- ## Stream::SetLength method diff --git a/english/cpp/system.io/stream/write/_index.md b/english/cpp/system.io/stream/write/_index.md index eb6be509a2..1125d61ecb 100644 --- a/english/cpp/system.io/stream/write/_index.md +++ b/english/cpp/system.io/stream/write/_index.md @@ -4,7 +4,7 @@ linktitle: Write second_title: Aspose.PDF for C++ API Reference description: 'System::IO::Stream::Write method. Writes the specified subrange of bytes from the specified byte array to the stream in C++.' type: docs -weight: 2400 +weight: 2600 url: /cpp/system.io/stream/write/ --- ## Stream::Write(const ArrayPtr\\&, int32_t, int32_t) method diff --git a/english/cpp/system.io/stream/writeasync/_index.md b/english/cpp/system.io/stream/writeasync/_index.md new file mode 100644 index 0000000000..2c7a3db2db --- /dev/null +++ b/english/cpp/system.io/stream/writeasync/_index.md @@ -0,0 +1,65 @@ +--- +title: System::IO::Stream::WriteAsync method +linktitle: WriteAsync +second_title: Aspose.PDF for C++ API Reference +description: 'System::IO::Stream::WriteAsync method. Asynchronously writes a sequence of bytes to the current stream, advances the current position within this stream by the number of bytes written, and monitors cancellation requests in C++.' +type: docs +weight: 2700 +url: /cpp/system.io/stream/writeasync/ +--- +## Stream::WriteAsync(const ArrayPtr\\&, int32_t, int32_t) method + + +Asynchronously writes a sequence of bytes to the current stream, advances the current position within this stream by the number of bytes written, and monitors cancellation requests. + +```cpp +TaskPtr System::IO::Stream::WriteAsync(const ArrayPtr &buffer, int32_t offset, int32_t count) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| buffer | const ArrayPtr\\& | The array containing the bytes to write. | +| offset | int32_t | A 0-based index of the elemnet in **buffer** at which the subrange to write begins. | +| count | int32_t | The number of elements in the subrange to write. | + +### ReturnValue + +A task that represents the asynchronous write operation. + +## See Also + +* Typedef [TaskPtr](../../../system/taskptr/) +* Typedef [ArrayPtr](../../../system/arrayptr/) +* Class [Stream](../) +* Namespace [System::IO](../../) +* Library [Aspose.PDF for C++](../../../) +## Stream::WriteAsync(const ArrayPtr\\&, int32_t, int32_t, const Threading::CancellationToken\&) method + + +Asynchronously writes a sequence of bytes to the current stream, advances the current position within this stream by the number of bytes written, and monitors cancellation requests. + +```cpp +virtual TaskPtr System::IO::Stream::WriteAsync(const ArrayPtr &buffer, int32_t offset, int32_t count, const Threading::CancellationToken &cancellationToken) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| buffer | const ArrayPtr\\& | The array containing the bytes to write. | +| offset | int32_t | A 0-based index of the elemnet in **buffer** at which the subrange to write begins. | +| count | int32_t | The number of elements in the subrange to write. | +| cancellationToken | const Threading::CancellationToken\& | The token to monitor for cancellation requests. | + +### ReturnValue + +A task that represents the asynchronous write operation. + +## See Also + +* Typedef [TaskPtr](../../../system/taskptr/) +* Typedef [ArrayPtr](../../../system/arrayptr/) +* Class [CancellationToken](../../../system.threading/cancellationtoken/) +* Class [Stream](../) +* Namespace [System::IO](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.io/stream/writebyte/_index.md b/english/cpp/system.io/stream/writebyte/_index.md index 6d1dfb22a7..fe164c5619 100644 --- a/english/cpp/system.io/stream/writebyte/_index.md +++ b/english/cpp/system.io/stream/writebyte/_index.md @@ -4,7 +4,7 @@ linktitle: WriteByte second_title: Aspose.PDF for C++ API Reference description: 'System::IO::Stream::WriteByte method. Writes the specified unsigned 8-bit integer value to the stream in C++.' type: docs -weight: 2500 +weight: 2800 url: /cpp/system.io/stream/writebyte/ --- ## Stream::WriteByte method diff --git a/english/cpp/system.linq/_index.md b/english/cpp/system.linq/_index.md index 19defe4aca..a1b0d0947b 100644 --- a/english/cpp/system.linq/_index.md +++ b/english/cpp/system.linq/_index.md @@ -4,7 +4,7 @@ linktitle: System::Linq second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Linq namespace in C++.' type: docs -weight: 4600 +weight: 4700 url: /cpp/system.linq/ --- diff --git a/english/cpp/system.net.cache/_index.md b/english/cpp/system.net.cache/_index.md index 538e39eb56..4080d91207 100644 --- a/english/cpp/system.net.cache/_index.md +++ b/english/cpp/system.net.cache/_index.md @@ -4,7 +4,7 @@ linktitle: System::Net::Cache second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Net::Cache namespace in C++.' type: docs -weight: 4800 +weight: 4900 url: /cpp/system.net.cache/ --- diff --git a/english/cpp/system.net.http.headers/_index.md b/english/cpp/system.net.http.headers/_index.md index 14f3c0454d..7426fb9430 100644 --- a/english/cpp/system.net.http.headers/_index.md +++ b/english/cpp/system.net.http.headers/_index.md @@ -4,7 +4,7 @@ linktitle: System::Net::Http::Headers second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Net::Http::Headers namespace in C++.' type: docs -weight: 5000 +weight: 5100 url: /cpp/system.net.http.headers/ --- diff --git a/english/cpp/system.net.http/_index.md b/english/cpp/system.net.http/_index.md index 47a8af9647..5bc2461658 100644 --- a/english/cpp/system.net.http/_index.md +++ b/english/cpp/system.net.http/_index.md @@ -4,7 +4,7 @@ linktitle: System::Net::Http second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Net::Http namespace in C++.' type: docs -weight: 4900 +weight: 5000 url: /cpp/system.net.http/ --- diff --git a/english/cpp/system.net.networkinformation/_index.md b/english/cpp/system.net.networkinformation/_index.md index d68220fbc8..7ca180e1db 100644 --- a/english/cpp/system.net.networkinformation/_index.md +++ b/english/cpp/system.net.networkinformation/_index.md @@ -4,7 +4,7 @@ linktitle: System::Net::NetworkInformation second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Net::NetworkInformation namespace in C++.' type: docs -weight: 5100 +weight: 5200 url: /cpp/system.net.networkinformation/ --- diff --git a/english/cpp/system.net.security/_index.md b/english/cpp/system.net.security/_index.md index c292655eb7..7a1fddc472 100644 --- a/english/cpp/system.net.security/_index.md +++ b/english/cpp/system.net.security/_index.md @@ -4,7 +4,7 @@ linktitle: System::Net::Security second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Net::Security namespace in C++.' type: docs -weight: 5200 +weight: 5300 url: /cpp/system.net.security/ --- diff --git a/english/cpp/system.net.sockets/_index.md b/english/cpp/system.net.sockets/_index.md index c38a5b5a3b..3dccc445a4 100644 --- a/english/cpp/system.net.sockets/_index.md +++ b/english/cpp/system.net.sockets/_index.md @@ -4,7 +4,7 @@ linktitle: System::Net::Sockets second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Net::Sockets namespace in C++.' type: docs -weight: 5300 +weight: 5400 url: /cpp/system.net.sockets/ --- diff --git a/english/cpp/system.net/_index.md b/english/cpp/system.net/_index.md index fce71b75ba..92f8240ec1 100644 --- a/english/cpp/system.net/_index.md +++ b/english/cpp/system.net/_index.md @@ -4,7 +4,7 @@ linktitle: System::Net second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Net namespace in C++.' type: docs -weight: 4700 +weight: 4800 url: /cpp/system.net/ --- diff --git a/english/cpp/system.reflection/_index.md b/english/cpp/system.reflection/_index.md index 2b457cadcb..4ded8e12e8 100644 --- a/english/cpp/system.reflection/_index.md +++ b/english/cpp/system.reflection/_index.md @@ -4,7 +4,7 @@ linktitle: System::Reflection second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Reflection namespace in C++.' type: docs -weight: 5400 +weight: 5500 url: /cpp/system.reflection/ --- diff --git a/english/cpp/system.resources/_index.md b/english/cpp/system.resources/_index.md index 974d3fe44f..3a4ef3d4e5 100644 --- a/english/cpp/system.resources/_index.md +++ b/english/cpp/system.resources/_index.md @@ -4,7 +4,7 @@ linktitle: System::Resources second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Resources namespace in C++.' type: docs -weight: 5500 +weight: 5600 url: /cpp/system.resources/ --- diff --git a/english/cpp/system.runtime.compilerservices/_index.md b/english/cpp/system.runtime.compilerservices/_index.md index c37e5826eb..3fef85e4d0 100644 --- a/english/cpp/system.runtime.compilerservices/_index.md +++ b/english/cpp/system.runtime.compilerservices/_index.md @@ -4,7 +4,7 @@ linktitle: System::Runtime::CompilerServices second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Runtime::CompilerServices namespace in C++.' type: docs -weight: 5600 +weight: 5700 url: /cpp/system.runtime.compilerservices/ --- @@ -14,5 +14,9 @@ url: /cpp/system.runtime.compilerservices/ | Class | Description | | --- | --- | +| [ConfiguredResultTaskAwaitable](./configuredresulttaskawaitable/) | | +| [ConfiguredTaskAwaitable](./configuredtaskawaitable/) | | | [ITuple](./ituple/) | Defines a general-purpose [Tuple](../system/tuple/) implementation that allows access to [Tuple](../system/tuple/) instance members without knowing the underlying [Tuple](../system/tuple/) type. | +| [ResultTaskAwaiter](./resulttaskawaiter/) | | | [RuntimeHelpers](./runtimehelpers/) | Helper class to get some object information in runtime. | +| [TaskAwaiter](./taskawaiter/) | | diff --git a/english/cpp/system.runtime.compilerservices/configuredresulttaskawaitable/_index.md b/english/cpp/system.runtime.compilerservices/configuredresulttaskawaitable/_index.md new file mode 100644 index 0000000000..21f7f45488 --- /dev/null +++ b/english/cpp/system.runtime.compilerservices/configuredresulttaskawaitable/_index.md @@ -0,0 +1,28 @@ +--- +title: System::Runtime::CompilerServices::ConfiguredResultTaskAwaitable class +linktitle: ConfiguredResultTaskAwaitable +second_title: Aspose.PDF for C++ API Reference +description: 'How to use System::Runtime::CompilerServices::ConfiguredResultTaskAwaitable class in C++.' +type: docs +weight: 100 +url: /cpp/system.runtime.compilerservices/configuredresulttaskawaitable/ +--- +## ConfiguredResultTaskAwaitable class + + + + +```cpp +templateclass ConfiguredResultTaskAwaitable +``` + +## Methods + +| Method | Description | +| --- | --- | +| [ConfiguredResultTaskAwaitable](./configuredresulttaskawaitable/)(const RTaskPtr\\&, bool) | | +| [GetAwaiter](./getawaiter/)() const | | +## See Also + +* Namespace [System::Runtime::CompilerServices](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system.runtime.compilerservices/configuredresulttaskawaitable/configuredresulttaskawaitable/_index.md b/english/cpp/system.runtime.compilerservices/configuredresulttaskawaitable/configuredresulttaskawaitable/_index.md new file mode 100644 index 0000000000..f099190fcb --- /dev/null +++ b/english/cpp/system.runtime.compilerservices/configuredresulttaskawaitable/configuredresulttaskawaitable/_index.md @@ -0,0 +1,24 @@ +--- +title: System::Runtime::CompilerServices::ConfiguredResultTaskAwaitable::ConfiguredResultTaskAwaitable constructor +linktitle: ConfiguredResultTaskAwaitable +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ConfiguredResultTaskAwaitable constructor of System::Runtime::CompilerServices::ConfiguredResultTaskAwaitable class in C++.' +type: docs +weight: 100 +url: /cpp/system.runtime.compilerservices/configuredresulttaskawaitable/configuredresulttaskawaitable/ +--- +## ConfiguredResultTaskAwaitable::ConfiguredResultTaskAwaitable constructor + + + + +```cpp +System::Runtime::CompilerServices::ConfiguredResultTaskAwaitable::ConfiguredResultTaskAwaitable(const RTaskPtr &task, bool continueOnCapturedContext) +``` + +## See Also + +* Typedef [RTaskPtr](../../../system/rtaskptr/) +* Class [ConfiguredResultTaskAwaitable](../) +* Namespace [System::Runtime::CompilerServices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.runtime.compilerservices/configuredresulttaskawaitable/getawaiter/_index.md b/english/cpp/system.runtime.compilerservices/configuredresulttaskawaitable/getawaiter/_index.md new file mode 100644 index 0000000000..e65b1a4e2b --- /dev/null +++ b/english/cpp/system.runtime.compilerservices/configuredresulttaskawaitable/getawaiter/_index.md @@ -0,0 +1,24 @@ +--- +title: System::Runtime::CompilerServices::ConfiguredResultTaskAwaitable::GetAwaiter method +linktitle: GetAwaiter +second_title: Aspose.PDF for C++ API Reference +description: 'How to use GetAwaiter method of System::Runtime::CompilerServices::ConfiguredResultTaskAwaitable class in C++.' +type: docs +weight: 200 +url: /cpp/system.runtime.compilerservices/configuredresulttaskawaitable/getawaiter/ +--- +## ConfiguredResultTaskAwaitable::GetAwaiter method + + + + +```cpp +Runtime::CompilerServices::ResultTaskAwaiter System::Runtime::CompilerServices::ConfiguredResultTaskAwaitable::GetAwaiter() const +``` + +## See Also + +* Class [ResultTaskAwaiter](../../resulttaskawaiter/) +* Class [ConfiguredResultTaskAwaitable](../) +* Namespace [System::Runtime::CompilerServices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.runtime.compilerservices/configuredtaskawaitable/_index.md b/english/cpp/system.runtime.compilerservices/configuredtaskawaitable/_index.md new file mode 100644 index 0000000000..1670d7b795 --- /dev/null +++ b/english/cpp/system.runtime.compilerservices/configuredtaskawaitable/_index.md @@ -0,0 +1,28 @@ +--- +title: System::Runtime::CompilerServices::ConfiguredTaskAwaitable class +linktitle: ConfiguredTaskAwaitable +second_title: Aspose.PDF for C++ API Reference +description: 'How to use System::Runtime::CompilerServices::ConfiguredTaskAwaitable class in C++.' +type: docs +weight: 200 +url: /cpp/system.runtime.compilerservices/configuredtaskawaitable/ +--- +## ConfiguredTaskAwaitable class + + + + +```cpp +class ConfiguredTaskAwaitable +``` + +## Methods + +| Method | Description | +| --- | --- | +| [ConfiguredTaskAwaitable](./configuredtaskawaitable/)(const TaskPtr\&, bool) | | +| [GetAwaiter](./getawaiter/)() const | | +## See Also + +* Namespace [System::Runtime::CompilerServices](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system.runtime.compilerservices/configuredtaskawaitable/configuredtaskawaitable/_index.md b/english/cpp/system.runtime.compilerservices/configuredtaskawaitable/configuredtaskawaitable/_index.md new file mode 100644 index 0000000000..db20f32f29 --- /dev/null +++ b/english/cpp/system.runtime.compilerservices/configuredtaskawaitable/configuredtaskawaitable/_index.md @@ -0,0 +1,24 @@ +--- +title: System::Runtime::CompilerServices::ConfiguredTaskAwaitable::ConfiguredTaskAwaitable constructor +linktitle: ConfiguredTaskAwaitable +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ConfiguredTaskAwaitable constructor of System::Runtime::CompilerServices::ConfiguredTaskAwaitable class in C++.' +type: docs +weight: 100 +url: /cpp/system.runtime.compilerservices/configuredtaskawaitable/configuredtaskawaitable/ +--- +## ConfiguredTaskAwaitable::ConfiguredTaskAwaitable constructor + + + + +```cpp +System::Runtime::CompilerServices::ConfiguredTaskAwaitable::ConfiguredTaskAwaitable(const TaskPtr &task, bool continueOnCapturedContext) +``` + +## See Also + +* Typedef [TaskPtr](../../../system/taskptr/) +* Class [ConfiguredTaskAwaitable](../) +* Namespace [System::Runtime::CompilerServices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.runtime.compilerservices/configuredtaskawaitable/getawaiter/_index.md b/english/cpp/system.runtime.compilerservices/configuredtaskawaitable/getawaiter/_index.md new file mode 100644 index 0000000000..9297f89036 --- /dev/null +++ b/english/cpp/system.runtime.compilerservices/configuredtaskawaitable/getawaiter/_index.md @@ -0,0 +1,24 @@ +--- +title: System::Runtime::CompilerServices::ConfiguredTaskAwaitable::GetAwaiter method +linktitle: GetAwaiter +second_title: Aspose.PDF for C++ API Reference +description: 'How to use GetAwaiter method of System::Runtime::CompilerServices::ConfiguredTaskAwaitable class in C++.' +type: docs +weight: 200 +url: /cpp/system.runtime.compilerservices/configuredtaskawaitable/getawaiter/ +--- +## ConfiguredTaskAwaitable::GetAwaiter method + + + + +```cpp +Runtime::CompilerServices::TaskAwaiter System::Runtime::CompilerServices::ConfiguredTaskAwaitable::GetAwaiter() const +``` + +## See Also + +* Class [TaskAwaiter](../../taskawaiter/) +* Class [ConfiguredTaskAwaitable](../) +* Namespace [System::Runtime::CompilerServices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.runtime.compilerservices/ituple/_index.md b/english/cpp/system.runtime.compilerservices/ituple/_index.md index e097d0440f..9f0ae44713 100644 --- a/english/cpp/system.runtime.compilerservices/ituple/_index.md +++ b/english/cpp/system.runtime.compilerservices/ituple/_index.md @@ -4,7 +4,7 @@ linktitle: ITuple second_title: Aspose.PDF for C++ API Reference description: 'System::Runtime::CompilerServices::ITuple class. Defines a general-purpose Tuple implementation that allows access to Tuple instance members without knowing the underlying Tuple type in C++.' type: docs -weight: 100 +weight: 300 url: /cpp/system.runtime.compilerservices/ituple/ --- ## ITuple class diff --git a/english/cpp/system.runtime.compilerservices/resulttaskawaiter/_index.md b/english/cpp/system.runtime.compilerservices/resulttaskawaiter/_index.md new file mode 100644 index 0000000000..b0fe0d35e4 --- /dev/null +++ b/english/cpp/system.runtime.compilerservices/resulttaskawaiter/_index.md @@ -0,0 +1,30 @@ +--- +title: System::Runtime::CompilerServices::ResultTaskAwaiter class +linktitle: ResultTaskAwaiter +second_title: Aspose.PDF for C++ API Reference +description: 'How to use System::Runtime::CompilerServices::ResultTaskAwaiter class in C++.' +type: docs +weight: 400 +url: /cpp/system.runtime.compilerservices/resulttaskawaiter/ +--- +## ResultTaskAwaiter class + + + + +```cpp +templateclass ResultTaskAwaiter +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_IsCompleted](./get_iscompleted/)() const | | +| [GetResult](./getresult/)() const | | +| [OnCompleted](./oncompleted/)(const Action<>\&) | | +| [ResultTaskAwaiter](./resulttaskawaiter/)(const RTaskPtr\\&) | | +## See Also + +* Namespace [System::Runtime::CompilerServices](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system.runtime.compilerservices/resulttaskawaiter/get_iscompleted/_index.md b/english/cpp/system.runtime.compilerservices/resulttaskawaiter/get_iscompleted/_index.md new file mode 100644 index 0000000000..6c4cdeb696 --- /dev/null +++ b/english/cpp/system.runtime.compilerservices/resulttaskawaiter/get_iscompleted/_index.md @@ -0,0 +1,23 @@ +--- +title: System::Runtime::CompilerServices::ResultTaskAwaiter::get_IsCompleted method +linktitle: get_IsCompleted +second_title: Aspose.PDF for C++ API Reference +description: 'How to use get_IsCompleted method of System::Runtime::CompilerServices::ResultTaskAwaiter class in C++.' +type: docs +weight: 200 +url: /cpp/system.runtime.compilerservices/resulttaskawaiter/get_iscompleted/ +--- +## ResultTaskAwaiter::get_IsCompleted method + + + + +```cpp +bool System::Runtime::CompilerServices::ResultTaskAwaiter::get_IsCompleted() const +``` + +## See Also + +* Class [ResultTaskAwaiter](../) +* Namespace [System::Runtime::CompilerServices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.runtime.compilerservices/resulttaskawaiter/getresult/_index.md b/english/cpp/system.runtime.compilerservices/resulttaskawaiter/getresult/_index.md new file mode 100644 index 0000000000..6873172f73 --- /dev/null +++ b/english/cpp/system.runtime.compilerservices/resulttaskawaiter/getresult/_index.md @@ -0,0 +1,23 @@ +--- +title: System::Runtime::CompilerServices::ResultTaskAwaiter::GetResult method +linktitle: GetResult +second_title: Aspose.PDF for C++ API Reference +description: 'How to use GetResult method of System::Runtime::CompilerServices::ResultTaskAwaiter class in C++.' +type: docs +weight: 300 +url: /cpp/system.runtime.compilerservices/resulttaskawaiter/getresult/ +--- +## ResultTaskAwaiter::GetResult method + + + + +```cpp +T System::Runtime::CompilerServices::ResultTaskAwaiter::GetResult() const +``` + +## See Also + +* Class [ResultTaskAwaiter](../) +* Namespace [System::Runtime::CompilerServices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.runtime.compilerservices/resulttaskawaiter/oncompleted/_index.md b/english/cpp/system.runtime.compilerservices/resulttaskawaiter/oncompleted/_index.md new file mode 100644 index 0000000000..acc788735c --- /dev/null +++ b/english/cpp/system.runtime.compilerservices/resulttaskawaiter/oncompleted/_index.md @@ -0,0 +1,24 @@ +--- +title: System::Runtime::CompilerServices::ResultTaskAwaiter::OnCompleted method +linktitle: OnCompleted +second_title: Aspose.PDF for C++ API Reference +description: 'How to use OnCompleted method of System::Runtime::CompilerServices::ResultTaskAwaiter class in C++.' +type: docs +weight: 400 +url: /cpp/system.runtime.compilerservices/resulttaskawaiter/oncompleted/ +--- +## ResultTaskAwaiter::OnCompleted method + + + + +```cpp +void System::Runtime::CompilerServices::ResultTaskAwaiter::OnCompleted(const Action<> &continuation) +``` + +## See Also + +* Typedef [Action](../../../system/action/) +* Class [ResultTaskAwaiter](../) +* Namespace [System::Runtime::CompilerServices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.runtime.compilerservices/resulttaskawaiter/resulttaskawaiter/_index.md b/english/cpp/system.runtime.compilerservices/resulttaskawaiter/resulttaskawaiter/_index.md new file mode 100644 index 0000000000..69bac7fcab --- /dev/null +++ b/english/cpp/system.runtime.compilerservices/resulttaskawaiter/resulttaskawaiter/_index.md @@ -0,0 +1,24 @@ +--- +title: System::Runtime::CompilerServices::ResultTaskAwaiter::ResultTaskAwaiter constructor +linktitle: ResultTaskAwaiter +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ResultTaskAwaiter constructor of System::Runtime::CompilerServices::ResultTaskAwaiter class in C++.' +type: docs +weight: 100 +url: /cpp/system.runtime.compilerservices/resulttaskawaiter/resulttaskawaiter/ +--- +## ResultTaskAwaiter::ResultTaskAwaiter constructor + + + + +```cpp +System::Runtime::CompilerServices::ResultTaskAwaiter::ResultTaskAwaiter(const RTaskPtr &task) +``` + +## See Also + +* Typedef [RTaskPtr](../../../system/rtaskptr/) +* Class [ResultTaskAwaiter](../) +* Namespace [System::Runtime::CompilerServices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.runtime.compilerservices/runtimehelpers/_index.md b/english/cpp/system.runtime.compilerservices/runtimehelpers/_index.md index 763cae7097..0d412f4d08 100644 --- a/english/cpp/system.runtime.compilerservices/runtimehelpers/_index.md +++ b/english/cpp/system.runtime.compilerservices/runtimehelpers/_index.md @@ -4,7 +4,7 @@ linktitle: RuntimeHelpers second_title: Aspose.PDF for C++ API Reference description: 'System::Runtime::CompilerServices::RuntimeHelpers class. Helper class to get some object information in runtime in C++.' type: docs -weight: 200 +weight: 500 url: /cpp/system.runtime.compilerservices/runtimehelpers/ --- ## RuntimeHelpers class diff --git a/english/cpp/system.runtime.compilerservices/taskawaiter/_index.md b/english/cpp/system.runtime.compilerservices/taskawaiter/_index.md new file mode 100644 index 0000000000..c9f41cdf3e --- /dev/null +++ b/english/cpp/system.runtime.compilerservices/taskawaiter/_index.md @@ -0,0 +1,30 @@ +--- +title: System::Runtime::CompilerServices::TaskAwaiter class +linktitle: TaskAwaiter +second_title: Aspose.PDF for C++ API Reference +description: 'How to use System::Runtime::CompilerServices::TaskAwaiter class in C++.' +type: docs +weight: 600 +url: /cpp/system.runtime.compilerservices/taskawaiter/ +--- +## TaskAwaiter class + + + + +```cpp +class TaskAwaiter +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_IsCompleted](./get_iscompleted/)() const | | +| [GetResult](./getresult/)() const | | +| [OnCompleted](./oncompleted/)(const Action<>\&) | | +| [TaskAwaiter](./taskawaiter/)(const TaskPtr\&) | | +## See Also + +* Namespace [System::Runtime::CompilerServices](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system.runtime.compilerservices/taskawaiter/get_iscompleted/_index.md b/english/cpp/system.runtime.compilerservices/taskawaiter/get_iscompleted/_index.md new file mode 100644 index 0000000000..dba1141fb1 --- /dev/null +++ b/english/cpp/system.runtime.compilerservices/taskawaiter/get_iscompleted/_index.md @@ -0,0 +1,23 @@ +--- +title: System::Runtime::CompilerServices::TaskAwaiter::get_IsCompleted method +linktitle: get_IsCompleted +second_title: Aspose.PDF for C++ API Reference +description: 'How to use get_IsCompleted method of System::Runtime::CompilerServices::TaskAwaiter class in C++.' +type: docs +weight: 200 +url: /cpp/system.runtime.compilerservices/taskawaiter/get_iscompleted/ +--- +## TaskAwaiter::get_IsCompleted method + + + + +```cpp +bool System::Runtime::CompilerServices::TaskAwaiter::get_IsCompleted() const +``` + +## See Also + +* Class [TaskAwaiter](../) +* Namespace [System::Runtime::CompilerServices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.runtime.compilerservices/taskawaiter/getresult/_index.md b/english/cpp/system.runtime.compilerservices/taskawaiter/getresult/_index.md new file mode 100644 index 0000000000..86c4383d49 --- /dev/null +++ b/english/cpp/system.runtime.compilerservices/taskawaiter/getresult/_index.md @@ -0,0 +1,23 @@ +--- +title: System::Runtime::CompilerServices::TaskAwaiter::GetResult method +linktitle: GetResult +second_title: Aspose.PDF for C++ API Reference +description: 'How to use GetResult method of System::Runtime::CompilerServices::TaskAwaiter class in C++.' +type: docs +weight: 300 +url: /cpp/system.runtime.compilerservices/taskawaiter/getresult/ +--- +## TaskAwaiter::GetResult method + + + + +```cpp +void System::Runtime::CompilerServices::TaskAwaiter::GetResult() const +``` + +## See Also + +* Class [TaskAwaiter](../) +* Namespace [System::Runtime::CompilerServices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.runtime.compilerservices/taskawaiter/oncompleted/_index.md b/english/cpp/system.runtime.compilerservices/taskawaiter/oncompleted/_index.md new file mode 100644 index 0000000000..1d17fb4244 --- /dev/null +++ b/english/cpp/system.runtime.compilerservices/taskawaiter/oncompleted/_index.md @@ -0,0 +1,24 @@ +--- +title: System::Runtime::CompilerServices::TaskAwaiter::OnCompleted method +linktitle: OnCompleted +second_title: Aspose.PDF for C++ API Reference +description: 'How to use OnCompleted method of System::Runtime::CompilerServices::TaskAwaiter class in C++.' +type: docs +weight: 400 +url: /cpp/system.runtime.compilerservices/taskawaiter/oncompleted/ +--- +## TaskAwaiter::OnCompleted method + + + + +```cpp +void System::Runtime::CompilerServices::TaskAwaiter::OnCompleted(const Action<> &continuation) +``` + +## See Also + +* Typedef [Action](../../../system/action/) +* Class [TaskAwaiter](../) +* Namespace [System::Runtime::CompilerServices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.runtime.compilerservices/taskawaiter/taskawaiter/_index.md b/english/cpp/system.runtime.compilerservices/taskawaiter/taskawaiter/_index.md new file mode 100644 index 0000000000..a6cedb4fa8 --- /dev/null +++ b/english/cpp/system.runtime.compilerservices/taskawaiter/taskawaiter/_index.md @@ -0,0 +1,24 @@ +--- +title: System::Runtime::CompilerServices::TaskAwaiter::TaskAwaiter constructor +linktitle: TaskAwaiter +second_title: Aspose.PDF for C++ API Reference +description: 'How to use TaskAwaiter constructor of System::Runtime::CompilerServices::TaskAwaiter class in C++.' +type: docs +weight: 100 +url: /cpp/system.runtime.compilerservices/taskawaiter/taskawaiter/ +--- +## TaskAwaiter::TaskAwaiter constructor + + + + +```cpp +System::Runtime::CompilerServices::TaskAwaiter::TaskAwaiter(const TaskPtr &task) +``` + +## See Also + +* Typedef [TaskPtr](../../../system/taskptr/) +* Class [TaskAwaiter](../) +* Namespace [System::Runtime::CompilerServices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.runtime.interopservices/_index.md b/english/cpp/system.runtime.interopservices/_index.md index 9b67b9ba7b..a3db9017aa 100644 --- a/english/cpp/system.runtime.interopservices/_index.md +++ b/english/cpp/system.runtime.interopservices/_index.md @@ -4,7 +4,7 @@ linktitle: System::Runtime::InteropServices second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Runtime::InteropServices namespace in C++.' type: docs -weight: 5700 +weight: 5800 url: /cpp/system.runtime.interopservices/ --- diff --git a/english/cpp/system.runtime.serialization/_index.md b/english/cpp/system.runtime.serialization/_index.md index 507575dcaa..ea66058acd 100644 --- a/english/cpp/system.runtime.serialization/_index.md +++ b/english/cpp/system.runtime.serialization/_index.md @@ -4,7 +4,7 @@ linktitle: System::Runtime::Serialization second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Runtime::Serialization namespace in C++.' type: docs -weight: 5800 +weight: 5900 url: /cpp/system.runtime.serialization/ --- diff --git a/english/cpp/system.security.authentication/_index.md b/english/cpp/system.security.authentication/_index.md index fcd4b4b36b..d8227078a7 100644 --- a/english/cpp/system.security.authentication/_index.md +++ b/english/cpp/system.security.authentication/_index.md @@ -4,7 +4,7 @@ linktitle: System::Security::Authentication second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Security::Authentication namespace in C++.' type: docs -weight: 6000 +weight: 6100 url: /cpp/system.security.authentication/ --- diff --git a/english/cpp/system.security.cryptography.pkcs/_index.md b/english/cpp/system.security.cryptography.pkcs/_index.md index cb64ec06a3..cf43c8fd3b 100644 --- a/english/cpp/system.security.cryptography.pkcs/_index.md +++ b/english/cpp/system.security.cryptography.pkcs/_index.md @@ -4,7 +4,7 @@ linktitle: System::Security::Cryptography::Pkcs second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Security::Cryptography::Pkcs namespace in C++.' type: docs -weight: 6200 +weight: 6300 url: /cpp/system.security.cryptography.pkcs/ --- diff --git a/english/cpp/system.security.cryptography.x509certificates/_index.md b/english/cpp/system.security.cryptography.x509certificates/_index.md index dbdd887fcf..e5bc4165a2 100644 --- a/english/cpp/system.security.cryptography.x509certificates/_index.md +++ b/english/cpp/system.security.cryptography.x509certificates/_index.md @@ -4,7 +4,7 @@ linktitle: System::Security::Cryptography::X509Certificates second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Security::Cryptography::X509Certificates namespace in C++.' type: docs -weight: 6300 +weight: 6400 url: /cpp/system.security.cryptography.x509certificates/ --- diff --git a/english/cpp/system.security.cryptography.xml/_index.md b/english/cpp/system.security.cryptography.xml/_index.md index a301b2a163..ed84608611 100644 --- a/english/cpp/system.security.cryptography.xml/_index.md +++ b/english/cpp/system.security.cryptography.xml/_index.md @@ -4,7 +4,7 @@ linktitle: System::Security::Cryptography::Xml second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Security::Cryptography::Xml namespace in C++.' type: docs -weight: 6400 +weight: 6500 url: /cpp/system.security.cryptography.xml/ --- diff --git a/english/cpp/system.security.cryptography/_index.md b/english/cpp/system.security.cryptography/_index.md index de9f0b22df..8b28d08c75 100644 --- a/english/cpp/system.security.cryptography/_index.md +++ b/english/cpp/system.security.cryptography/_index.md @@ -4,7 +4,7 @@ linktitle: System::Security::Cryptography second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Security::Cryptography namespace in C++.' type: docs -weight: 6100 +weight: 6200 url: /cpp/system.security.cryptography/ --- diff --git a/english/cpp/system.security.permissions/_index.md b/english/cpp/system.security.permissions/_index.md index 7f1d9b4c95..699cbed898 100644 --- a/english/cpp/system.security.permissions/_index.md +++ b/english/cpp/system.security.permissions/_index.md @@ -4,7 +4,7 @@ linktitle: System::Security::Permissions second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Security::Permissions namespace in C++.' type: docs -weight: 6500 +weight: 6600 url: /cpp/system.security.permissions/ --- diff --git a/english/cpp/system.security.policy/_index.md b/english/cpp/system.security.policy/_index.md index d7c7f16125..1aa1454582 100644 --- a/english/cpp/system.security.policy/_index.md +++ b/english/cpp/system.security.policy/_index.md @@ -4,7 +4,7 @@ linktitle: System::Security::Policy second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Security::Policy namespace in C++.' type: docs -weight: 6600 +weight: 6700 url: /cpp/system.security.policy/ --- diff --git a/english/cpp/system.security/_index.md b/english/cpp/system.security/_index.md index 3e2049eb84..7f400743a1 100644 --- a/english/cpp/system.security/_index.md +++ b/english/cpp/system.security/_index.md @@ -4,7 +4,7 @@ linktitle: System::Security second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Security namespace in C++.' type: docs -weight: 5900 +weight: 6000 url: /cpp/system.security/ --- diff --git a/english/cpp/system.testpredicates.typetraits/_index.md b/english/cpp/system.testpredicates.typetraits/_index.md index 249403dc9b..7163fad80e 100644 --- a/english/cpp/system.testpredicates.typetraits/_index.md +++ b/english/cpp/system.testpredicates.typetraits/_index.md @@ -4,7 +4,7 @@ linktitle: System::TestPredicates::TypeTraits second_title: Aspose.PDF for C++ API Reference description: 'How to use System::TestPredicates::TypeTraits namespace in C++.' type: docs -weight: 6700 +weight: 6800 url: /cpp/system.testpredicates.typetraits/ --- diff --git a/english/cpp/system.text.regularexpressions/_index.md b/english/cpp/system.text.regularexpressions/_index.md index f1040fc1d4..9bfc52ce03 100644 --- a/english/cpp/system.text.regularexpressions/_index.md +++ b/english/cpp/system.text.regularexpressions/_index.md @@ -4,7 +4,7 @@ linktitle: System::Text::RegularExpressions second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Text::RegularExpressions namespace in C++.' type: docs -weight: 6900 +weight: 7000 url: /cpp/system.text.regularexpressions/ --- diff --git a/english/cpp/system.text/_index.md b/english/cpp/system.text/_index.md index f0d4fe0d00..0912b9cdf1 100644 --- a/english/cpp/system.text/_index.md +++ b/english/cpp/system.text/_index.md @@ -4,7 +4,7 @@ linktitle: System::Text second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Text namespace in C++.' type: docs -weight: 6800 +weight: 6900 url: /cpp/system.text/ --- diff --git a/english/cpp/system.threading.tasks/_index.md b/english/cpp/system.threading.tasks/_index.md new file mode 100644 index 0000000000..d73826e547 --- /dev/null +++ b/english/cpp/system.threading.tasks/_index.md @@ -0,0 +1,41 @@ +--- +title: System::Threading::Tasks namespace +linktitle: System::Threading::Tasks +second_title: Aspose.PDF for C++ API Reference +description: 'How to use System::Threading::Tasks namespace in C++.' +type: docs +weight: 7200 +url: /cpp/system.threading.tasks/ +--- + + + +## Classes + +| Class | Description | +| --- | --- | +| [ResultTask](./resulttask/) | A [Task](./task/) specialization that returns a result value upon completion. | +| [Task](./task/) | Represents an asynchronous operation that can be awaited and composed with other tasks. | +| [TaskScheduler](./taskscheduler/) | Represents an object that handles the low-level work of queuing tasks onto threads. | +## Enums + +| Enum | Description | +| --- | --- | +| [TaskStatus](./taskstatus/) | | +## Functions + +| Function | Description | +| --- | --- | +| Delay | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | +| Delay | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | +| DispatchCurrentContext | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | +| FromException | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | +| FromException | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | +| FromResult | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | +| Run | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | +| Run | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | +| Run | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | +| WhenAll | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | +| WhenAll | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | +| WhenAll | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | +| WhenAll | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | diff --git a/english/cpp/system.threading.tasks/delay/_index.md b/english/cpp/system.threading.tasks/delay/_index.md new file mode 100644 index 0000000000..c6fd6b4b84 --- /dev/null +++ b/english/cpp/system.threading.tasks/delay/_index.md @@ -0,0 +1,47 @@ +--- +title: System::Threading::Tasks::Delay method +linktitle: Delay +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::Delay method. Creates a task that completes after a time delay in C++.' +type: docs +weight: 500 +url: /cpp/system.threading.tasks/delay/ +--- +## System::Threading::Tasks::Delay(int32_t) method + + +Creates a task that completes after a time delay. + +```cpp +TaskPtr System::Threading::Tasks::Delay(int32_t millisecondsDelay) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| millisecondsDelay | int32_t | The number of milliseconds to wait before completing the returned task, or -1 to wait indefinitely. | + +### ReturnValue + +A task that represents the time delay. + +## See Also + +* Typedef [TaskPtr](../../system/taskptr/) +* Namespace [System::Threading::Tasks](../) +* Library [Aspose.PDF for C++](../../) +## System::Threading::Tasks::Delay(int32_t, const CancellationToken\&) method + + + + +```cpp +TaskPtr System::Threading::Tasks::Delay(int32_t millisecondsDelay, const CancellationToken &cancellationToken) +``` + +## See Also + +* Typedef [TaskPtr](../../system/taskptr/) +* Class [CancellationToken](../../system.threading/cancellationtoken/) +* Namespace [System::Threading::Tasks](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system.threading.tasks/dispatchcurrentcontext/_index.md b/english/cpp/system.threading.tasks/dispatchcurrentcontext/_index.md new file mode 100644 index 0000000000..ce56b82aca --- /dev/null +++ b/english/cpp/system.threading.tasks/dispatchcurrentcontext/_index.md @@ -0,0 +1,22 @@ +--- +title: System::Threading::Tasks::DispatchCurrentContext method +linktitle: DispatchCurrentContext +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::DispatchCurrentContext method. Dispatches all tasks bound to this thread synchronously in C++.' +type: docs +weight: 700 +url: /cpp/system.threading.tasks/dispatchcurrentcontext/ +--- +## System::Threading::Tasks::DispatchCurrentContext method + + +Dispatches all tasks bound to this thread synchronously. + +```cpp +void System::Threading::Tasks::DispatchCurrentContext() +``` + +## See Also + +* Namespace [System::Threading::Tasks](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system.threading.tasks/fromexception/_index.md b/english/cpp/system.threading.tasks/fromexception/_index.md new file mode 100644 index 0000000000..772211b55d --- /dev/null +++ b/english/cpp/system.threading.tasks/fromexception/_index.md @@ -0,0 +1,39 @@ +--- +title: System::Threading::Tasks::FromException method +linktitle: FromException +second_title: Aspose.PDF for C++ API Reference +description: 'How to use FromException method of class in C++.' +type: docs +weight: 800 +url: /cpp/system.threading.tasks/fromexception/ +--- +## System::Threading::Tasks::FromException(const Exception\&) method + + + + +```cpp +TaskPtr System::Threading::Tasks::FromException(const Exception &exception) +``` + +## See Also + +* Typedef [TaskPtr](../../system/taskptr/) +* Typedef [Exception](../../system/exception/) +* Namespace [System::Threading::Tasks](../) +* Library [Aspose.PDF for C++](../../) +## System::Threading::Tasks::FromException(const Exception\&) method + + + + +```cpp +template RTaskPtr System::Threading::Tasks::FromException(const Exception &exception) +``` + +## See Also + +* Typedef [RTaskPtr](../../system/rtaskptr/) +* Typedef [Exception](../../system/exception/) +* Namespace [System::Threading::Tasks](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system.threading.tasks/fromresult/_index.md b/english/cpp/system.threading.tasks/fromresult/_index.md new file mode 100644 index 0000000000..746ceb2ceb --- /dev/null +++ b/english/cpp/system.threading.tasks/fromresult/_index.md @@ -0,0 +1,23 @@ +--- +title: System::Threading::Tasks::FromResult method +linktitle: FromResult +second_title: Aspose.PDF for C++ API Reference +description: 'How to use FromResult method of class in C++.' +type: docs +weight: 1000 +url: /cpp/system.threading.tasks/fromresult/ +--- +## System::Threading::Tasks::FromResult method + + + + +```cpp +template RTaskPtr System::Threading::Tasks::FromResult(TResult result) +``` + +## See Also + +* Typedef [RTaskPtr](../../system/rtaskptr/) +* Namespace [System::Threading::Tasks](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system.threading.tasks/resulttask/_index.md b/english/cpp/system.threading.tasks/resulttask/_index.md new file mode 100644 index 0000000000..d0b75c209b --- /dev/null +++ b/english/cpp/system.threading.tasks/resulttask/_index.md @@ -0,0 +1,43 @@ +--- +title: System::Threading::Tasks::ResultTask class +linktitle: ResultTask +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::ResultTask class. A Task specialization that returns a result value upon completion in C++.' +type: docs +weight: 100 +url: /cpp/system.threading.tasks/resulttask/ +--- +## ResultTask class + + +A [Task](../task/) specialization that returns a result value upon completion. + +```cpp +templateclass ResultTask : public System::Threading::Tasks::Task +``` + + +| Parameter | Description | +| --- | --- | +| T | The type of the result value returned by the task | +## Methods + +| Method | Description | +| --- | --- | +| [ConfigureAwait](./configureawait/)(bool) const | Configures how awaits on this result task should behave regarding context capture. | +| [ContinueWith](./continuewith/)(const Action\\>\&) | Creates a continuation that executes when the result task completes. | +| [get_Result](./get_result/)() | Gets the result of the asynchronous operation. | +| [GetAwaiter](./getawaiter/)() const | Gets an awaiter for this result task for use with Await. | +| [ResultTask](./resulttask/)(const Func\\&) | Constructs a [ResultTask](./) with a function that returns a value. | +| [ResultTask](./resulttask/)() | Internal implementation. Not for user code. | +| [set_Result](./set_result/)(const T\&) | Sets the result value for the task. | +## Remarks + + + +Represents an asynchronous operation that produces a result, similar to System.Threading.Tasks.Task in .NET +## See Also + +* Class [Task](../task/) +* Namespace [System::Threading::Tasks](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system.threading.tasks/resulttask/configureawait/_index.md b/english/cpp/system.threading.tasks/resulttask/configureawait/_index.md new file mode 100644 index 0000000000..0957e55c2f --- /dev/null +++ b/english/cpp/system.threading.tasks/resulttask/configureawait/_index.md @@ -0,0 +1,38 @@ +--- +title: System::Threading::Tasks::ResultTask::ConfigureAwait method +linktitle: ConfigureAwait +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::ResultTask::ConfigureAwait method. Configures how awaits on this result task should behave regarding context capture in C++.' +type: docs +weight: 200 +url: /cpp/system.threading.tasks/resulttask/configureawait/ +--- +## ResultTask::ConfigureAwait method + + +Configures how awaits on this result task should behave regarding context capture. + +```cpp +Runtime::CompilerServices::ConfiguredResultTaskAwaitable System::Threading::Tasks::ResultTask::ConfigureAwait(bool continueOnCapturedContext) const +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| continueOnCapturedContext | bool | Whether to continue on the captured context | + +### ReturnValue + +Runtime::CompilerServices::ConfiguredResultTaskAwaitable A configured awaitable for the result +## Remarks + + + +This enables fine-grained control over context flow for async/await patterns + +## See Also + +* Class [ConfiguredResultTaskAwaitable](../../../system.runtime.compilerservices/configuredresulttaskawaitable/) +* Class [ResultTask](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/resulttask/continuewith/_index.md b/english/cpp/system.threading.tasks/resulttask/continuewith/_index.md new file mode 100644 index 0000000000..3168fcde35 --- /dev/null +++ b/english/cpp/system.threading.tasks/resulttask/continuewith/_index.md @@ -0,0 +1,40 @@ +--- +title: System::Threading::Tasks::ResultTask::ContinueWith method +linktitle: ContinueWith +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::ResultTask::ContinueWith method. Creates a continuation that executes when the result task completes in C++.' +type: docs +weight: 300 +url: /cpp/system.threading.tasks/resulttask/continuewith/ +--- +## ResultTask::ContinueWith method + + +Creates a continuation that executes when the result task completes. + +```cpp +TaskPtr System::Threading::Tasks::ResultTask::ContinueWith(const Action> &continuationAction) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| continuationAction | const Action\\>\& | Action to execute when this task completes, receiving this result task | + +### ReturnValue + +TaskPtr A new task representing the continuation +## Remarks + + + +The continuation action receives this [ResultTask](../) to access the result value + +## See Also + +* Typedef [TaskPtr](../../../system/taskptr/) +* Typedef [Action](../../../system/action/) +* Typedef [RTaskPtr](../../../system/rtaskptr/) +* Class [ResultTask](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/resulttask/get_result/_index.md b/english/cpp/system.threading.tasks/resulttask/get_result/_index.md new file mode 100644 index 0000000000..5a8a5c5ffc --- /dev/null +++ b/english/cpp/system.threading.tasks/resulttask/get_result/_index.md @@ -0,0 +1,33 @@ +--- +title: System::Threading::Tasks::ResultTask::get_Result method +linktitle: get_Result +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::ResultTask::get_Result method. Gets the result of the asynchronous operation in C++.' +type: docs +weight: 400 +url: /cpp/system.threading.tasks/resulttask/get_result/ +--- +## ResultTask::get_Result method + + +Gets the result of the asynchronous operation. + +```cpp +T System::Threading::Tasks::ResultTask::get_Result() +``` + + +### ReturnValue + +T The result value produced by the task +## Remarks + + + +This method blocks until the task completes if necessary + +## See Also + +* Class [ResultTask](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/resulttask/getawaiter/_index.md b/english/cpp/system.threading.tasks/resulttask/getawaiter/_index.md new file mode 100644 index 0000000000..c17713aa83 --- /dev/null +++ b/english/cpp/system.threading.tasks/resulttask/getawaiter/_index.md @@ -0,0 +1,34 @@ +--- +title: System::Threading::Tasks::ResultTask::GetAwaiter method +linktitle: GetAwaiter +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::ResultTask::GetAwaiter method. Gets an awaiter for this result task for use with Await in C++.' +type: docs +weight: 500 +url: /cpp/system.threading.tasks/resulttask/getawaiter/ +--- +## ResultTask::GetAwaiter method + + +Gets an awaiter for this result task for use with Await. + +```cpp +Runtime::CompilerServices::ResultTaskAwaiter System::Threading::Tasks::ResultTask::GetAwaiter() const +``` + + +### ReturnValue + +Runtime::CompilerServices::ResultTaskAwaiter An awaiter instance that returns the result +## Remarks + + + +When awaited, the coroutine will resume with the result value available + +## See Also + +* Class [ResultTaskAwaiter](../../../system.runtime.compilerservices/resulttaskawaiter/) +* Class [ResultTask](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/resulttask/resulttask/_index.md b/english/cpp/system.threading.tasks/resulttask/resulttask/_index.md new file mode 100644 index 0000000000..e91da37299 --- /dev/null +++ b/english/cpp/system.threading.tasks/resulttask/resulttask/_index.md @@ -0,0 +1,47 @@ +--- +title: System::Threading::Tasks::ResultTask::ResultTask constructor +linktitle: ResultTask +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::ResultTask::ResultTask constructor. Internal implementation. Not for user code in C++.' +type: docs +weight: 100 +url: /cpp/system.threading.tasks/resulttask/resulttask/ +--- +## ResultTask::ResultTask() constructor + + +Internal implementation. Not for user code. + +```cpp +System::Threading::Tasks::ResultTask::ResultTask() +``` + +## Remarks + + +Internal constructor for creating uninitialized result tasks +## See Also + +* Class [ResultTask](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) +## ResultTask::ResultTask(const Func\\&) constructor + + +Constructs a [ResultTask](../) with a function that returns a value. + +```cpp +System::Threading::Tasks::ResultTask::ResultTask(const Func &function) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| function | const Func\\& | The function to execute asynchronously that returns a result | + +## See Also + +* Class [Func](../../../system/func/) +* Class [ResultTask](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/resulttask/set_result/_index.md b/english/cpp/system.threading.tasks/resulttask/set_result/_index.md new file mode 100644 index 0000000000..44b533fa94 --- /dev/null +++ b/english/cpp/system.threading.tasks/resulttask/set_result/_index.md @@ -0,0 +1,23 @@ +--- +title: System::Threading::Tasks::ResultTask::set_Result method +linktitle: set_Result +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::ResultTask::set_Result method. Sets the result value for the task in C++.' +type: docs +weight: 600 +url: /cpp/system.threading.tasks/resulttask/set_result/ +--- +## ResultTask::set_Result method + + +Sets the result value for the task. + +```cpp +void System::Threading::Tasks::ResultTask::set_Result(const T &result) +``` + +## See Also + +* Class [ResultTask](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/run/_index.md b/english/cpp/system.threading.tasks/run/_index.md new file mode 100644 index 0000000000..5512d84271 --- /dev/null +++ b/english/cpp/system.threading.tasks/run/_index.md @@ -0,0 +1,55 @@ +--- +title: System::Threading::Tasks::Run method +linktitle: Run +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Run method of class in C++.' +type: docs +weight: 1100 +url: /cpp/system.threading.tasks/run/ +--- +## System::Threading::Tasks::Run(const Action<>\&) method + + + + +```cpp +TaskPtr System::Threading::Tasks::Run(const Action<> &action) +``` + +## See Also + +* Typedef [TaskPtr](../../system/taskptr/) +* Typedef [Action](../../system/action/) +* Namespace [System::Threading::Tasks](../) +* Library [Aspose.PDF for C++](../../) +## System::Threading::Tasks::Run(const Action<>\&, const CancellationToken\&) method + + + + +```cpp +TaskPtr System::Threading::Tasks::Run(const Action<> &action, const CancellationToken &cancellationToken) +``` + +## See Also + +* Typedef [TaskPtr](../../system/taskptr/) +* Typedef [Action](../../system/action/) +* Class [CancellationToken](../../system.threading/cancellationtoken/) +* Namespace [System::Threading::Tasks](../) +* Library [Aspose.PDF for C++](../../) +## System::Threading::Tasks::Run(const Func\\&) method + + + + +```cpp +template RTaskPtr System::Threading::Tasks::Run(const Func &function) +``` + +## See Also + +* Typedef [RTaskPtr](../../system/rtaskptr/) +* Class [Func](../../system/func/) +* Namespace [System::Threading::Tasks](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system.threading.tasks/task/_index.md b/english/cpp/system.threading.tasks/task/_index.md new file mode 100644 index 0000000000..cd245273e6 --- /dev/null +++ b/english/cpp/system.threading.tasks/task/_index.md @@ -0,0 +1,67 @@ +--- +title: System::Threading::Tasks::Task class +linktitle: Task +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::Task class. Represents an asynchronous operation that can be awaited and composed with other tasks in C++.' +type: docs +weight: 200 +url: /cpp/system.threading.tasks/task/ +--- +## Task class + + +Represents an asynchronous operation that can be awaited and composed with other tasks. + +```cpp +class Task : public System::IDisposable +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Activate](./activate/)(TaskScheduler *) | Activates the task for execution on a scheduler. | +| [AddContinuation](./addcontinuation/)(const Action<>\&) | Adds a continuation action to be executed upon completion. | +| [Complete](./complete/)() | Marks the task as completed and finishes task. | +| [ConfigureAwait](./configureawait/)(bool) const | Configures how awaits on this task should behave regarding context capture. | +| [ContinueWith](./continuewith/)(const Action\\&) | Creates a continuation that executes when the task completes. | +| [Dispose](./dispose/)() override | Releases resources associated with the task. | +| [Execute](./execute/)() | Executes the task's function. | +| [get_AsyncState](./get_asyncstate/)() const | Gets the user-defined state object associated with the task. | +| static [get_CompletedTask](./get_completedtask/)() | Gets a completed task (singleton) | +| static [get_CurrentId](./get_currentid/)() | | +| [get_Id](./get_id/)() const | Gets the ID for task. | +| [get_IsCanceled](./get_iscanceled/)() const | Gets whether the task completed due to cancellation. | +| [get_IsCompleted](./get_iscompleted/)() const | Gets whether the task has completed. | +| [get_IsFaulted](./get_isfaulted/)() const | Gets whether the task completed due to an unhandled exception. | +| [get_Scheduler](./get_scheduler/)() const | Gets the scheduler associated with this task. | +| [get_Status](./get_status/)() const | Gets the current status of the task. | +| [GetAwaiter](./getawaiter/)() const | Gets an awaiter for this task for use with Await. | +| [RunSynchronously](./runsynchronously/)() | Runs the task synchronously on the current thread. | +| [RunSynchronously](./runsynchronously/)(const SharedPtr\\&) | Runs the task synchronously using the specified scheduler. | +| [set_Function](./set_function/)(const FunctionT\&) | Sets the internal function to execute. | +| [set_Status](./set_status/)(TaskStatus) | Sets the task status. | +| [Start](./start/)() | Starts the task execution using the default scheduler. | +| [Start](./start/)(const SharedPtr\\&) | Starts the task execution using the specified scheduler. | +| [Task](./task/)(const Action<>\&) | Constructs a [Task](./) with an action to execute. | +| [Task](./task/)(const Action<>\&, const CancellationToken\&) | Constructs a [Task](./) with an action and cancellation token. | +| [Task](./task/)(const Action\\>\&, const SharedPtr\\&) | Constructs a [Task](./) with a stateful action and state object. | +| [Task](./task/)(const Action\\>\&, const SharedPtr\\&, const CancellationToken\&) | Constructs a [Task](./) with stateful action, state, and cancellation token. | +| [Task](./task/)() | Internal constructor for creating uninitialized tasks. | +| [Wait](./wait/)(const CancellationToken\&) | Waits for the task to complete with cancellation support. | +| [Wait](./wait/)() | Waits for the task to complete. | +| [~Task](./~task/)() | Destructor. | +## Typedefs + +| Typedef | Description | +| --- | --- | +| [FunctionT](./functiont/) | Internal implementation. Not for user code. | +## Remarks + + +Provides a C++ implementation similar to [System.Threading.Tasks.Task](./) in .NET, supporting cancellation, continuations, and async/await patterns +## See Also + +* Class [IDisposable](../../system/idisposable/) +* Namespace [System::Threading::Tasks](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system.threading.tasks/task/activate/_index.md b/english/cpp/system.threading.tasks/task/activate/_index.md new file mode 100644 index 0000000000..8e1a99e62c --- /dev/null +++ b/english/cpp/system.threading.tasks/task/activate/_index.md @@ -0,0 +1,24 @@ +--- +title: System::Threading::Tasks::Task::Activate method +linktitle: Activate +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::Task::Activate method. Activates the task for execution on a scheduler in C++.' +type: docs +weight: 300 +url: /cpp/system.threading.tasks/task/activate/ +--- +## Task::Activate method + + +Activates the task for execution on a scheduler. + +```cpp +void System::Threading::Tasks::Task::Activate(TaskScheduler *=nullptr) +``` + +## See Also + +* Class [TaskScheduler](../../taskscheduler/) +* Class [Task](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/task/addcontinuation/_index.md b/english/cpp/system.threading.tasks/task/addcontinuation/_index.md new file mode 100644 index 0000000000..1b41f2994b --- /dev/null +++ b/english/cpp/system.threading.tasks/task/addcontinuation/_index.md @@ -0,0 +1,24 @@ +--- +title: System::Threading::Tasks::Task::AddContinuation method +linktitle: AddContinuation +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::Task::AddContinuation method. Adds a continuation action to be executed upon completion in C++.' +type: docs +weight: 400 +url: /cpp/system.threading.tasks/task/addcontinuation/ +--- +## Task::AddContinuation method + + +Adds a continuation action to be executed upon completion. + +```cpp +void System::Threading::Tasks::Task::AddContinuation(const Action<> &continuation) +``` + +## See Also + +* Typedef [Action](../../../system/action/) +* Class [Task](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/task/complete/_index.md b/english/cpp/system.threading.tasks/task/complete/_index.md new file mode 100644 index 0000000000..2a627888a6 --- /dev/null +++ b/english/cpp/system.threading.tasks/task/complete/_index.md @@ -0,0 +1,23 @@ +--- +title: System::Threading::Tasks::Task::Complete method +linktitle: Complete +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::Task::Complete method. Marks the task as completed and finishes task in C++.' +type: docs +weight: 500 +url: /cpp/system.threading.tasks/task/complete/ +--- +## Task::Complete method + + +Marks the task as completed and finishes task. + +```cpp +void System::Threading::Tasks::Task::Complete() +``` + +## See Also + +* Class [Task](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/task/configureawait/_index.md b/english/cpp/system.threading.tasks/task/configureawait/_index.md new file mode 100644 index 0000000000..d28347c120 --- /dev/null +++ b/english/cpp/system.threading.tasks/task/configureawait/_index.md @@ -0,0 +1,33 @@ +--- +title: System::Threading::Tasks::Task::ConfigureAwait method +linktitle: ConfigureAwait +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::Task::ConfigureAwait method. Configures how awaits on this task should behave regarding context capture in C++.' +type: docs +weight: 600 +url: /cpp/system.threading.tasks/task/configureawait/ +--- +## Task::ConfigureAwait method + + +Configures how awaits on this task should behave regarding context capture. + +```cpp +Runtime::CompilerServices::ConfiguredTaskAwaitable System::Threading::Tasks::Task::ConfigureAwait(bool continueOnCapturedContext) const +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| continueOnCapturedContext | bool | Whether to continue on the captured context | + +### ReturnValue + +[Runtime::CompilerServices::ConfiguredTaskAwaitable](../../../system.runtime.compilerservices/configuredtaskawaitable/) A configured awaitable + +## See Also + +* Class [ConfiguredTaskAwaitable](../../../system.runtime.compilerservices/configuredtaskawaitable/) +* Class [Task](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/task/continuewith/_index.md b/english/cpp/system.threading.tasks/task/continuewith/_index.md new file mode 100644 index 0000000000..e3d81e2ff8 --- /dev/null +++ b/english/cpp/system.threading.tasks/task/continuewith/_index.md @@ -0,0 +1,34 @@ +--- +title: System::Threading::Tasks::Task::ContinueWith method +linktitle: ContinueWith +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::Task::ContinueWith method. Creates a continuation that executes when the task completes in C++.' +type: docs +weight: 700 +url: /cpp/system.threading.tasks/task/continuewith/ +--- +## Task::ContinueWith method + + +Creates a continuation that executes when the task completes. + +```cpp +TaskPtr System::Threading::Tasks::Task::ContinueWith(const Action &continuationAction) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| continuationAction | const Action\\& | Action to execute when this task completes | + +### ReturnValue + +TaskPtr A new task representing the continuation + +## See Also + +* Typedef [TaskPtr](../../../system/taskptr/) +* Typedef [Action](../../../system/action/) +* Class [Task](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/task/dispose/_index.md b/english/cpp/system.threading.tasks/task/dispose/_index.md new file mode 100644 index 0000000000..5116b181c3 --- /dev/null +++ b/english/cpp/system.threading.tasks/task/dispose/_index.md @@ -0,0 +1,23 @@ +--- +title: System::Threading::Tasks::Task::Dispose method +linktitle: Dispose +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::Task::Dispose method. Releases resources associated with the task in C++.' +type: docs +weight: 800 +url: /cpp/system.threading.tasks/task/dispose/ +--- +## Task::Dispose method + + +Releases resources associated with the task. + +```cpp +void System::Threading::Tasks::Task::Dispose() override +``` + +## See Also + +* Class [Task](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/task/execute/_index.md b/english/cpp/system.threading.tasks/task/execute/_index.md new file mode 100644 index 0000000000..aa2b512b64 --- /dev/null +++ b/english/cpp/system.threading.tasks/task/execute/_index.md @@ -0,0 +1,23 @@ +--- +title: System::Threading::Tasks::Task::Execute method +linktitle: Execute +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::Task::Execute method. Executes the task''s function in C++.' +type: docs +weight: 900 +url: /cpp/system.threading.tasks/task/execute/ +--- +## Task::Execute method + + +Executes the task's function. + +```cpp +void System::Threading::Tasks::Task::Execute() +``` + +## See Also + +* Class [Task](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/task/functiont/_index.md b/english/cpp/system.threading.tasks/task/functiont/_index.md new file mode 100644 index 0000000000..c4c664ef4a --- /dev/null +++ b/english/cpp/system.threading.tasks/task/functiont/_index.md @@ -0,0 +1,27 @@ +--- +title: System::Threading::Tasks::Task::FunctionT typedef +linktitle: FunctionT +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::Task::FunctionT typedef. Internal implementation. Not for user code in C++.' +type: docs +weight: 2500 +url: /cpp/system.threading.tasks/task/functiont/ +--- +## FunctionT typedef + + +Internal implementation. Not for user code. + +```cpp +using System::Threading::Tasks::Task::FunctionT = std::function +``` + +## Remarks + + +Function type for internal task execution +## See Also + +* Class [Task](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/task/get_asyncstate/_index.md b/english/cpp/system.threading.tasks/task/get_asyncstate/_index.md new file mode 100644 index 0000000000..74319bab05 --- /dev/null +++ b/english/cpp/system.threading.tasks/task/get_asyncstate/_index.md @@ -0,0 +1,30 @@ +--- +title: System::Threading::Tasks::Task::get_AsyncState method +linktitle: get_AsyncState +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::Task::get_AsyncState method. Gets the user-defined state object associated with the task in C++.' +type: docs +weight: 1000 +url: /cpp/system.threading.tasks/task/get_asyncstate/ +--- +## Task::get_AsyncState method + + +Gets the user-defined state object associated with the task. + +```cpp +const SharedPtr & System::Threading::Tasks::Task::get_AsyncState() const +``` + + +### ReturnValue + +SharedPtr The state object provided during construction + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [Object](../../../system/object/) +* Class [Task](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/task/get_completedtask/_index.md b/english/cpp/system.threading.tasks/task/get_completedtask/_index.md new file mode 100644 index 0000000000..dc88734b6c --- /dev/null +++ b/english/cpp/system.threading.tasks/task/get_completedtask/_index.md @@ -0,0 +1,29 @@ +--- +title: System::Threading::Tasks::Task::get_CompletedTask method +linktitle: get_CompletedTask +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::Task::get_CompletedTask method. Gets a completed task (singleton) in C++.' +type: docs +weight: 2300 +url: /cpp/system.threading.tasks/task/get_completedtask/ +--- +## Task::get_CompletedTask method + + +Gets a completed task (singleton) + +```cpp +static const TaskPtr & System::Threading::Tasks::Task::get_CompletedTask() +``` + + +### ReturnValue + +TaskPtr Shared pointer to a completed task instance + +## See Also + +* Typedef [TaskPtr](../../../system/taskptr/) +* Class [Task](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/task/get_currentid/_index.md b/english/cpp/system.threading.tasks/task/get_currentid/_index.md new file mode 100644 index 0000000000..95d7e642ad --- /dev/null +++ b/english/cpp/system.threading.tasks/task/get_currentid/_index.md @@ -0,0 +1,24 @@ +--- +title: System::Threading::Tasks::Task::get_CurrentId method +linktitle: get_CurrentId +second_title: Aspose.PDF for C++ API Reference +description: 'How to use get_CurrentId method of System::Threading::Tasks::Task class in C++.' +type: docs +weight: 2400 +url: /cpp/system.threading.tasks/task/get_currentid/ +--- +## Task::get_CurrentId method + + + + +```cpp +static Nullable System::Threading::Tasks::Task::get_CurrentId() +``` + +## See Also + +* Class [Nullable](../../../system/nullable/) +* Class [Task](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/task/get_id/_index.md b/english/cpp/system.threading.tasks/task/get_id/_index.md new file mode 100644 index 0000000000..ab5506d9c6 --- /dev/null +++ b/english/cpp/system.threading.tasks/task/get_id/_index.md @@ -0,0 +1,28 @@ +--- +title: System::Threading::Tasks::Task::get_Id method +linktitle: get_Id +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::Task::get_Id method. Gets the ID for task in C++.' +type: docs +weight: 1100 +url: /cpp/system.threading.tasks/task/get_id/ +--- +## Task::get_Id method + + +Gets the ID for task. + +```cpp +int32_t System::Threading::Tasks::Task::get_Id() const +``` + + +### ReturnValue + +int32_t The unique ID for this task + +## See Also + +* Class [Task](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/task/get_iscanceled/_index.md b/english/cpp/system.threading.tasks/task/get_iscanceled/_index.md new file mode 100644 index 0000000000..fc9c2ea934 --- /dev/null +++ b/english/cpp/system.threading.tasks/task/get_iscanceled/_index.md @@ -0,0 +1,28 @@ +--- +title: System::Threading::Tasks::Task::get_IsCanceled method +linktitle: get_IsCanceled +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::Task::get_IsCanceled method. Gets whether the task completed due to cancellation in C++.' +type: docs +weight: 1200 +url: /cpp/system.threading.tasks/task/get_iscanceled/ +--- +## Task::get_IsCanceled method + + +Gets whether the task completed due to cancellation. + +```cpp +bool System::Threading::Tasks::Task::get_IsCanceled() const +``` + + +### ReturnValue + +bool True if the task was canceled + +## See Also + +* Class [Task](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/task/get_iscompleted/_index.md b/english/cpp/system.threading.tasks/task/get_iscompleted/_index.md new file mode 100644 index 0000000000..1bc0ab5bf1 --- /dev/null +++ b/english/cpp/system.threading.tasks/task/get_iscompleted/_index.md @@ -0,0 +1,28 @@ +--- +title: System::Threading::Tasks::Task::get_IsCompleted method +linktitle: get_IsCompleted +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::Task::get_IsCompleted method. Gets whether the task has completed in C++.' +type: docs +weight: 1300 +url: /cpp/system.threading.tasks/task/get_iscompleted/ +--- +## Task::get_IsCompleted method + + +Gets whether the task has completed. + +```cpp +bool System::Threading::Tasks::Task::get_IsCompleted() const +``` + + +### ReturnValue + +bool True if the task has completed (successfully, faulted, or canceled) + +## See Also + +* Class [Task](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/task/get_isfaulted/_index.md b/english/cpp/system.threading.tasks/task/get_isfaulted/_index.md new file mode 100644 index 0000000000..500cc6e812 --- /dev/null +++ b/english/cpp/system.threading.tasks/task/get_isfaulted/_index.md @@ -0,0 +1,28 @@ +--- +title: System::Threading::Tasks::Task::get_IsFaulted method +linktitle: get_IsFaulted +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::Task::get_IsFaulted method. Gets whether the task completed due to an unhandled exception in C++.' +type: docs +weight: 1400 +url: /cpp/system.threading.tasks/task/get_isfaulted/ +--- +## Task::get_IsFaulted method + + +Gets whether the task completed due to an unhandled exception. + +```cpp +bool System::Threading::Tasks::Task::get_IsFaulted() const +``` + + +### ReturnValue + +bool True if the task faulted + +## See Also + +* Class [Task](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/task/get_scheduler/_index.md b/english/cpp/system.threading.tasks/task/get_scheduler/_index.md new file mode 100644 index 0000000000..f21d5fc676 --- /dev/null +++ b/english/cpp/system.threading.tasks/task/get_scheduler/_index.md @@ -0,0 +1,24 @@ +--- +title: System::Threading::Tasks::Task::get_Scheduler method +linktitle: get_Scheduler +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::Task::get_Scheduler method. Gets the scheduler associated with this task in C++.' +type: docs +weight: 1500 +url: /cpp/system.threading.tasks/task/get_scheduler/ +--- +## Task::get_Scheduler method + + +Gets the scheduler associated with this task. + +```cpp +TaskScheduler * System::Threading::Tasks::Task::get_Scheduler() const +``` + +## See Also + +* Class [TaskScheduler](../../taskscheduler/) +* Class [Task](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/task/get_status/_index.md b/english/cpp/system.threading.tasks/task/get_status/_index.md new file mode 100644 index 0000000000..7251649935 --- /dev/null +++ b/english/cpp/system.threading.tasks/task/get_status/_index.md @@ -0,0 +1,29 @@ +--- +title: System::Threading::Tasks::Task::get_Status method +linktitle: get_Status +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::Task::get_Status method. Gets the current status of the task in C++.' +type: docs +weight: 1600 +url: /cpp/system.threading.tasks/task/get_status/ +--- +## Task::get_Status method + + +Gets the current status of the task. + +```cpp +TaskStatus System::Threading::Tasks::Task::get_Status() const +``` + + +### ReturnValue + +TaskStatus The current execution status + +## See Also + +* Enum [TaskStatus](../../taskstatus/) +* Class [Task](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/task/getawaiter/_index.md b/english/cpp/system.threading.tasks/task/getawaiter/_index.md new file mode 100644 index 0000000000..4486938c46 --- /dev/null +++ b/english/cpp/system.threading.tasks/task/getawaiter/_index.md @@ -0,0 +1,29 @@ +--- +title: System::Threading::Tasks::Task::GetAwaiter method +linktitle: GetAwaiter +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::Task::GetAwaiter method. Gets an awaiter for this task for use with Await in C++.' +type: docs +weight: 1700 +url: /cpp/system.threading.tasks/task/getawaiter/ +--- +## Task::GetAwaiter method + + +Gets an awaiter for this task for use with Await. + +```cpp +Runtime::CompilerServices::TaskAwaiter System::Threading::Tasks::Task::GetAwaiter() const +``` + + +### ReturnValue + +[Runtime::CompilerServices::TaskAwaiter](../../../system.runtime.compilerservices/taskawaiter/) An awaiter instance + +## See Also + +* Class [TaskAwaiter](../../../system.runtime.compilerservices/taskawaiter/) +* Class [Task](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/task/runsynchronously/_index.md b/english/cpp/system.threading.tasks/task/runsynchronously/_index.md new file mode 100644 index 0000000000..b422964085 --- /dev/null +++ b/english/cpp/system.threading.tasks/task/runsynchronously/_index.md @@ -0,0 +1,45 @@ +--- +title: System::Threading::Tasks::Task::RunSynchronously method +linktitle: RunSynchronously +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::Task::RunSynchronously method. Runs the task synchronously on the current thread in C++.' +type: docs +weight: 1800 +url: /cpp/system.threading.tasks/task/runsynchronously/ +--- +## Task::RunSynchronously() method + + +Runs the task synchronously on the current thread. + +```cpp +void System::Threading::Tasks::Task::RunSynchronously() +``` + + +## See Also + +* Class [Task](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) +## Task::RunSynchronously(const SharedPtr\\&) method + + +Runs the task synchronously using the specified scheduler. + +```cpp +void System::Threading::Tasks::Task::RunSynchronously(const SharedPtr &scheduler) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| scheduler | const SharedPtr\\& | The scheduler to use for execution | + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [TaskScheduler](../../taskscheduler/) +* Class [Task](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/task/set_function/_index.md b/english/cpp/system.threading.tasks/task/set_function/_index.md new file mode 100644 index 0000000000..3171010875 --- /dev/null +++ b/english/cpp/system.threading.tasks/task/set_function/_index.md @@ -0,0 +1,24 @@ +--- +title: System::Threading::Tasks::Task::set_Function method +linktitle: set_Function +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::Task::set_Function method. Sets the internal function to execute in C++.' +type: docs +weight: 1900 +url: /cpp/system.threading.tasks/task/set_function/ +--- +## Task::set_Function method + + +Sets the internal function to execute. + +```cpp +void System::Threading::Tasks::Task::set_Function(const FunctionT &fnc) +``` + +## See Also + +* Typedef [FunctionT](../functiont/) +* Class [Task](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/task/set_status/_index.md b/english/cpp/system.threading.tasks/task/set_status/_index.md new file mode 100644 index 0000000000..8eaacd4332 --- /dev/null +++ b/english/cpp/system.threading.tasks/task/set_status/_index.md @@ -0,0 +1,24 @@ +--- +title: System::Threading::Tasks::Task::set_Status method +linktitle: set_Status +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::Task::set_Status method. Sets the task status in C++.' +type: docs +weight: 2000 +url: /cpp/system.threading.tasks/task/set_status/ +--- +## Task::set_Status method + + +Sets the task status. + +```cpp +void System::Threading::Tasks::Task::set_Status(TaskStatus status) +``` + +## See Also + +* Enum [TaskStatus](../../taskstatus/) +* Class [Task](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/task/start/_index.md b/english/cpp/system.threading.tasks/task/start/_index.md new file mode 100644 index 0000000000..f8fee0a88f --- /dev/null +++ b/english/cpp/system.threading.tasks/task/start/_index.md @@ -0,0 +1,45 @@ +--- +title: System::Threading::Tasks::Task::Start method +linktitle: Start +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::Task::Start method. Starts the task execution using the default scheduler in C++.' +type: docs +weight: 2100 +url: /cpp/system.threading.tasks/task/start/ +--- +## Task::Start() method + + +Starts the task execution using the default scheduler. + +```cpp +void System::Threading::Tasks::Task::Start() +``` + + +## See Also + +* Class [Task](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) +## Task::Start(const SharedPtr\\&) method + + +Starts the task execution using the specified scheduler. + +```cpp +void System::Threading::Tasks::Task::Start(const SharedPtr &scheduler) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| scheduler | const SharedPtr\\& | The scheduler to use for execution | + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [TaskScheduler](../../taskscheduler/) +* Class [Task](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/task/task/_index.md b/english/cpp/system.threading.tasks/task/task/_index.md new file mode 100644 index 0000000000..bd18a6eda3 --- /dev/null +++ b/english/cpp/system.threading.tasks/task/task/_index.md @@ -0,0 +1,113 @@ +--- +title: System::Threading::Tasks::Task::Task constructor +linktitle: Task +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::Task::Task constructor. Internal constructor for creating uninitialized tasks in C++.' +type: docs +weight: 100 +url: /cpp/system.threading.tasks/task/task/ +--- +## Task::Task() constructor + + +Internal constructor for creating uninitialized tasks. + +```cpp +System::Threading::Tasks::Task::Task() +``` + +## See Also + +* Class [Task](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) +## Task::Task(const Action\\>\&, const SharedPtr\\&) constructor + + +Constructs a [Task](../) with a stateful action and state object. + +```cpp +System::Threading::Tasks::Task::Task(const Action> &action, const SharedPtr &state) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| action | const Action\\>\& | The action to execute (accepts state object) | +| state | const SharedPtr\\& | User-defined state object passed to the action | + +## See Also + +* Typedef [Action](../../../system/action/) +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [Object](../../../system/object/) +* Class [Task](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) +## Task::Task(const Action\\>\&, const SharedPtr\\&, const CancellationToken\&) constructor + + +Constructs a [Task](../) with stateful action, state, and cancellation token. + +```cpp +System::Threading::Tasks::Task::Task(const Action> &action, const SharedPtr &state, const CancellationToken &cancellationToken) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| action | const Action\\>\& | The action to execute (accepts state object) | +| state | const SharedPtr\\& | User-defined state object passed to the action | +| cancellationToken | const CancellationToken\& | Token to monitor for cancellation requests | + +## See Also + +* Typedef [Action](../../../system/action/) +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [Object](../../../system/object/) +* Class [CancellationToken](../../../system.threading/cancellationtoken/) +* Class [Task](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) +## Task::Task(const Action<>\&) constructor + + +Constructs a [Task](../) with an action to execute. + +```cpp +System::Threading::Tasks::Task::Task(const Action<> &action) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| action | const Action<>\& | The action to execute asynchronously | + +## See Also + +* Typedef [Action](../../../system/action/) +* Class [Task](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) +## Task::Task(const Action<>\&, const CancellationToken\&) constructor + + +Constructs a [Task](../) with an action and cancellation token. + +```cpp +System::Threading::Tasks::Task::Task(const Action<> &action, const CancellationToken &cancellationToken) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| action | const Action<>\& | The action to execute asynchronously | +| cancellationToken | const CancellationToken\& | Token to monitor for cancellation requests | + +## See Also + +* Typedef [Action](../../../system/action/) +* Class [CancellationToken](../../../system.threading/cancellationtoken/) +* Class [Task](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/task/wait/_index.md b/english/cpp/system.threading.tasks/task/wait/_index.md new file mode 100644 index 0000000000..6e30206655 --- /dev/null +++ b/english/cpp/system.threading.tasks/task/wait/_index.md @@ -0,0 +1,44 @@ +--- +title: System::Threading::Tasks::Task::Wait method +linktitle: Wait +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::Task::Wait method. Waits for the task to complete in C++.' +type: docs +weight: 2200 +url: /cpp/system.threading.tasks/task/wait/ +--- +## Task::Wait() method + + +Waits for the task to complete. + +```cpp +void System::Threading::Tasks::Task::Wait() +``` + + +## See Also + +* Class [Task](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) +## Task::Wait(const CancellationToken\&) method + + +Waits for the task to complete with cancellation support. + +```cpp +void System::Threading::Tasks::Task::Wait(const CancellationToken &cancellationToken) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| cancellationToken | const CancellationToken\& | Token to monitor for cancellation while waiting | + +## See Also + +* Class [CancellationToken](../../../system.threading/cancellationtoken/) +* Class [Task](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/task/~task/_index.md b/english/cpp/system.threading.tasks/task/~task/_index.md new file mode 100644 index 0000000000..0acaddcec4 --- /dev/null +++ b/english/cpp/system.threading.tasks/task/~task/_index.md @@ -0,0 +1,23 @@ +--- +title: System::Threading::Tasks::Task::~Task method +linktitle: ~Task +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::Task::~Task method. Destructor in C++.' +type: docs +weight: 200 +url: /cpp/system.threading.tasks/task/~task/ +--- +## Task::~Task method + + +Destructor. + +```cpp +System::Threading::Tasks::Task::~Task() +``` + +## See Also + +* Class [Task](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/taskscheduler/_index.md b/english/cpp/system.threading.tasks/taskscheduler/_index.md new file mode 100644 index 0000000000..42cbf21a53 --- /dev/null +++ b/english/cpp/system.threading.tasks/taskscheduler/_index.md @@ -0,0 +1,32 @@ +--- +title: System::Threading::Tasks::TaskScheduler class +linktitle: TaskScheduler +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::TaskScheduler class. Represents an object that handles the low-level work of queuing tasks onto threads in C++.' +type: docs +weight: 300 +url: /cpp/system.threading.tasks/taskscheduler/ +--- +## TaskScheduler class + + +Represents an object that handles the low-level work of queuing tasks onto threads. + +```cpp +class TaskScheduler : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [FromCurrentSynchronizationContext](./fromcurrentsynchronizationcontext/)() | Creates a [TaskScheduler](./) associated with the current thread. | +| static [get_Current](./get_current/)() | Gets the [TaskScheduler](./) associated with the currently executing task. | +| static [get_Default](./get_default/)() | Gets the default [TaskScheduler](./) instance that is provided by the framework. | +| [get_Id](./get_id/)() const | Gets the unique ID for this [TaskScheduler](./). | +| virtual [get_MaximumConcurrencyLevel](./get_maximumconcurrencylevel/)() const | Indicates the maximum concurrency level this [TaskScheduler](./) is able to support. | +## See Also + +* Class [Object](../../system/object/) +* Namespace [System::Threading::Tasks](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system.threading.tasks/taskscheduler/fromcurrentsynchronizationcontext/_index.md b/english/cpp/system.threading.tasks/taskscheduler/fromcurrentsynchronizationcontext/_index.md new file mode 100644 index 0000000000..fc54c6a38d --- /dev/null +++ b/english/cpp/system.threading.tasks/taskscheduler/fromcurrentsynchronizationcontext/_index.md @@ -0,0 +1,30 @@ +--- +title: System::Threading::Tasks::TaskScheduler::FromCurrentSynchronizationContext method +linktitle: FromCurrentSynchronizationContext +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::TaskScheduler::FromCurrentSynchronizationContext method. Creates a TaskScheduler associated with the current thread in C++.' +type: docs +weight: 100 +url: /cpp/system.threading.tasks/taskscheduler/fromcurrentsynchronizationcontext/ +--- +## TaskScheduler::FromCurrentSynchronizationContext method + + +Creates a [TaskScheduler](../) associated with the current thread. + +```cpp +static SharedPtr System::Threading::Tasks::TaskScheduler::FromCurrentSynchronizationContext() +``` + + +### ReturnValue + +A [TaskScheduler](../) associated with the current thread. + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [TaskScheduler](../) +* Class [TaskScheduler](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/taskscheduler/get_current/_index.md b/english/cpp/system.threading.tasks/taskscheduler/get_current/_index.md new file mode 100644 index 0000000000..cac01a2969 --- /dev/null +++ b/english/cpp/system.threading.tasks/taskscheduler/get_current/_index.md @@ -0,0 +1,30 @@ +--- +title: System::Threading::Tasks::TaskScheduler::get_Current method +linktitle: get_Current +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::TaskScheduler::get_Current method. Gets the TaskScheduler associated with the currently executing task in C++.' +type: docs +weight: 200 +url: /cpp/system.threading.tasks/taskscheduler/get_current/ +--- +## TaskScheduler::get_Current method + + +Gets the [TaskScheduler](../) associated with the currently executing task. + +```cpp +static SharedPtr System::Threading::Tasks::TaskScheduler::get_Current() +``` + + +### ReturnValue + +The [TaskScheduler](../) associated with the currently executing task. + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [TaskScheduler](../) +* Class [TaskScheduler](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/taskscheduler/get_default/_index.md b/english/cpp/system.threading.tasks/taskscheduler/get_default/_index.md new file mode 100644 index 0000000000..598a13632b --- /dev/null +++ b/english/cpp/system.threading.tasks/taskscheduler/get_default/_index.md @@ -0,0 +1,30 @@ +--- +title: System::Threading::Tasks::TaskScheduler::get_Default method +linktitle: get_Default +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::TaskScheduler::get_Default method. Gets the default TaskScheduler instance that is provided by the framework in C++.' +type: docs +weight: 300 +url: /cpp/system.threading.tasks/taskscheduler/get_default/ +--- +## TaskScheduler::get_Default method + + +Gets the default [TaskScheduler](../) instance that is provided by the framework. + +```cpp +static const SharedPtr & System::Threading::Tasks::TaskScheduler::get_Default() +``` + + +### ReturnValue + +The default [TaskScheduler](../) instance. + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [TaskScheduler](../) +* Class [TaskScheduler](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/taskscheduler/get_id/_index.md b/english/cpp/system.threading.tasks/taskscheduler/get_id/_index.md new file mode 100644 index 0000000000..8fde8e02dd --- /dev/null +++ b/english/cpp/system.threading.tasks/taskscheduler/get_id/_index.md @@ -0,0 +1,28 @@ +--- +title: System::Threading::Tasks::TaskScheduler::get_Id method +linktitle: get_Id +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::TaskScheduler::get_Id method. Gets the unique ID for this TaskScheduler in C++.' +type: docs +weight: 400 +url: /cpp/system.threading.tasks/taskscheduler/get_id/ +--- +## TaskScheduler::get_Id method + + +Gets the unique ID for this [TaskScheduler](../). + +```cpp +int32_t System::Threading::Tasks::TaskScheduler::get_Id() const +``` + + +### ReturnValue + +The unique ID for this [TaskScheduler](../). + +## See Also + +* Class [TaskScheduler](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/taskscheduler/get_maximumconcurrencylevel/_index.md b/english/cpp/system.threading.tasks/taskscheduler/get_maximumconcurrencylevel/_index.md new file mode 100644 index 0000000000..608d0dd261 --- /dev/null +++ b/english/cpp/system.threading.tasks/taskscheduler/get_maximumconcurrencylevel/_index.md @@ -0,0 +1,28 @@ +--- +title: System::Threading::Tasks::TaskScheduler::get_MaximumConcurrencyLevel method +linktitle: get_MaximumConcurrencyLevel +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::TaskScheduler::get_MaximumConcurrencyLevel method. Indicates the maximum concurrency level this TaskScheduler is able to support in C++.' +type: docs +weight: 500 +url: /cpp/system.threading.tasks/taskscheduler/get_maximumconcurrencylevel/ +--- +## TaskScheduler::get_MaximumConcurrencyLevel method + + +Indicates the maximum concurrency level this [TaskScheduler](../) is able to support. + +```cpp +virtual int32_t System::Threading::Tasks::TaskScheduler::get_MaximumConcurrencyLevel() const +``` + + +### ReturnValue + +An integer that represents the maximum concurrency level. + +## See Also + +* Class [TaskScheduler](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/taskstatus/_index.md b/english/cpp/system.threading.tasks/taskstatus/_index.md new file mode 100644 index 0000000000..d8783384ac --- /dev/null +++ b/english/cpp/system.threading.tasks/taskstatus/_index.md @@ -0,0 +1,35 @@ +--- +title: System::Threading::Tasks::TaskStatus enum +linktitle: TaskStatus +second_title: Aspose.PDF for C++ API Reference +description: 'How to use System::Threading::Tasks::TaskStatus enum in C++.' +type: docs +weight: 400 +url: /cpp/system.threading.tasks/taskstatus/ +--- +## TaskStatus enum + + + + +```cpp +enum class TaskStatus +``` + +### Values + +| Name | Value | Description | +| --- | --- | --- | +| Created | 0 | | +| WaitingForActivation | 1 | | +| WaitingToRun | 2 | | +| Running | 3 | | +| WaitingForChildrenToComplete | 4 | | +| RanToCompletion | 5 | | +| Canceled | 6 | | +| Faulted | 7 | | + +## See Also + +* Namespace [System::Threading::Tasks](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system.threading.tasks/whenall/_index.md b/english/cpp/system.threading.tasks/whenall/_index.md new file mode 100644 index 0000000000..16e6a9e20a --- /dev/null +++ b/english/cpp/system.threading.tasks/whenall/_index.md @@ -0,0 +1,72 @@ +--- +title: System::Threading::Tasks::WhenAll method +linktitle: WhenAll +second_title: Aspose.PDF for C++ API Reference +description: 'How to use WhenAll method of class in C++.' +type: docs +weight: 1400 +url: /cpp/system.threading.tasks/whenall/ +--- +## System::Threading::Tasks::WhenAll(ArrayPtr\\>) method + + + + +```cpp +template RTaskPtr> System::Threading::Tasks::WhenAll(ArrayPtr> tasks) +``` + +## See Also + +* Typedef [RTaskPtr](../../system/rtaskptr/) +* Typedef [ArrayPtr](../../system/arrayptr/) +* Namespace [System::Threading::Tasks](../) +* Library [Aspose.PDF for C++](../../) +## System::Threading::Tasks::WhenAll(const ArrayPtr\\&) method + + + + +```cpp +TaskPtr System::Threading::Tasks::WhenAll(const ArrayPtr &tasks) +``` + +## See Also + +* Typedef [TaskPtr](../../system/taskptr/) +* Typedef [ArrayPtr](../../system/arrayptr/) +* Namespace [System::Threading::Tasks](../) +* Library [Aspose.PDF for C++](../../) +## System::Threading::Tasks::WhenAll(const SharedPtr\\>\&) method + + + + +```cpp +TaskPtr System::Threading::Tasks::WhenAll(const SharedPtr> &tasks) +``` + +## See Also + +* Typedef [TaskPtr](../../system/taskptr/) +* Typedef [SharedPtr](../../system/sharedptr/) +* Class [IEnumerable](../../system.collections.generic/ienumerable/) +* Namespace [System::Threading::Tasks](../) +* Library [Aspose.PDF for C++](../../) +## System::Threading::Tasks::WhenAll(SharedPtr\\>\>) method + + + + +```cpp +template RTaskPtr> System::Threading::Tasks::WhenAll(SharedPtr>> tasks) +``` + +## See Also + +* Typedef [RTaskPtr](../../system/rtaskptr/) +* Typedef [ArrayPtr](../../system/arrayptr/) +* Typedef [SharedPtr](../../system/sharedptr/) +* Class [IEnumerable](../../system.collections.generic/ienumerable/) +* Namespace [System::Threading::Tasks](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system.threading/_index.md b/english/cpp/system.threading/_index.md index 1ddaceb04d..80890200a1 100644 --- a/english/cpp/system.threading/_index.md +++ b/english/cpp/system.threading/_index.md @@ -4,7 +4,7 @@ linktitle: System::Threading second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Threading namespace in C++.' type: docs -weight: 7000 +weight: 7100 url: /cpp/system.threading/ --- @@ -15,6 +15,9 @@ url: /cpp/system.threading/ | Class | Description | | --- | --- | | [AutoResetEvent](./autoresetevent/) | Event to notify waiting thread that resets automatically. Objects of this class should only be allocated using [System::MakeObject()](../system/makeobject/) function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into [System::SmartPtr](../system/smartptr/) pointer and use this pointer to pass it to functions as argument. | +| [CancellationToken](./cancellationtoken/) | Propagates notification that operations should be canceled. This class provides a mechanism for cooperative cancellation between threads, allowing one thread to notify others that an operation should be canceled. | +| [CancellationTokenRegistration](./cancellationtokenregistration/) | Represents a registration for a cancellation token callback. | +| [CancellationTokenSource](./cancellationtokensource/) | A cancellation token source that can be used to trigger cancellation notifications. | | [EventWaitHandle](./eventwaithandle/) | Event that can be sent to waiting thread. Objects of this class should only be allocated using [System::MakeObject()](../system/makeobject/) function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into [System::SmartPtr](../system/smartptr/) pointer and use this pointer to pass it to functions as argument. | | [Interlocked](./interlocked/) | Provides API for thread-safe operations. This is a static type with no instance services. You should never create instances of it by any means. | | [ManualResetEvent](./manualresetevent/) | Event to notify waiting thread that does not reset automatically. Objects of this class should only be allocated using [System::MakeObject()](../system/makeobject/) function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into [System::SmartPtr](../system/smartptr/) pointer and use this pointer to pass it to functions as argument. | diff --git a/english/cpp/system.threading/apartmentstate/_index.md b/english/cpp/system.threading/apartmentstate/_index.md index e60f43260e..e4f63e7b6c 100644 --- a/english/cpp/system.threading/apartmentstate/_index.md +++ b/english/cpp/system.threading/apartmentstate/_index.md @@ -4,7 +4,7 @@ linktitle: ApartmentState second_title: Aspose.PDF for C++ API Reference description: 'System::Threading::ApartmentState enum. Sets apartment state of the thread in C++.' type: docs -weight: 1400 +weight: 1700 url: /cpp/system.threading/apartmentstate/ --- ## ApartmentState enum diff --git a/english/cpp/system.threading/cancellationtoken/_index.md b/english/cpp/system.threading/cancellationtoken/_index.md new file mode 100644 index 0000000000..9a7ec83f74 --- /dev/null +++ b/english/cpp/system.threading/cancellationtoken/_index.md @@ -0,0 +1,38 @@ +--- +title: System::Threading::CancellationToken class +linktitle: CancellationToken +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::CancellationToken class. Propagates notification that operations should be canceled. This class provides a mechanism for cooperative cancellation between threads, allowing one thread to notify others that an operation should be canceled in C++.' +type: docs +weight: 200 +url: /cpp/system.threading/cancellationtoken/ +--- +## CancellationToken class + + +Propagates notification that operations should be canceled. This class provides a mechanism for cooperative cancellation between threads, allowing one thread to notify others that an operation should be canceled. + +```cpp +class CancellationToken : public System::Details::BoxableObjectBase +``` + +## Methods + +| Method | Description | +| --- | --- | +| [CancellationToken](./cancellationtoken/)() | Default constructor. | +| [get_CanBeCanceled](./get_canbecanceled/)() const | Gets whether this token is capable of being in the canceled state. | +| [get_IsCancellationRequested](./get_iscancellationrequested/)() const | Gets whether cancellation has been requested for this token. | +| static [get_None](./get_none/)() | Returns an empty [System::Threading::CancellationToken](./) value. | +| [Register](./register/)(const Action<>\&) const | Registers a callback that will be invoked when cancellation is requested. | +| [ThrowIfCancellationRequested](./throwifcancellationrequested/)() const | Throws a OperationCanceledException if cancellation has been requested. | +## Remarks + + + +A [CancellationToken](./) can only be canceled through its associated [CancellationTokenSource](../cancellationtokensource/). + +## See Also + +* Namespace [System::Threading](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system.threading/cancellationtoken/cancellationtoken/_index.md b/english/cpp/system.threading/cancellationtoken/cancellationtoken/_index.md new file mode 100644 index 0000000000..97836963b4 --- /dev/null +++ b/english/cpp/system.threading/cancellationtoken/cancellationtoken/_index.md @@ -0,0 +1,27 @@ +--- +title: System::Threading::CancellationToken::CancellationToken constructor +linktitle: CancellationToken +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::CancellationToken::CancellationToken constructor. Default constructor in C++.' +type: docs +weight: 100 +url: /cpp/system.threading/cancellationtoken/cancellationtoken/ +--- +## CancellationToken::CancellationToken constructor + + +Default constructor. + +```cpp +System::Threading::CancellationToken::CancellationToken() +``` + +## Remarks + + +Creates a token that will never be canceled (equivalent to None). +## See Also + +* Class [CancellationToken](../) +* Namespace [System::Threading](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading/cancellationtoken/get_canbecanceled/_index.md b/english/cpp/system.threading/cancellationtoken/get_canbecanceled/_index.md new file mode 100644 index 0000000000..457718259d --- /dev/null +++ b/english/cpp/system.threading/cancellationtoken/get_canbecanceled/_index.md @@ -0,0 +1,33 @@ +--- +title: System::Threading::CancellationToken::get_CanBeCanceled method +linktitle: get_CanBeCanceled +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::CancellationToken::get_CanBeCanceled method. Gets whether this token is capable of being in the canceled state in C++.' +type: docs +weight: 200 +url: /cpp/system.threading/cancellationtoken/get_canbecanceled/ +--- +## CancellationToken::get_CanBeCanceled method + + +Gets whether this token is capable of being in the canceled state. + +```cpp +bool System::Threading::CancellationToken::get_CanBeCanceled() const +``` + + +### ReturnValue + +true if this token is capable of being in the canceled state; otherwise, false. +## Remarks + + + +Tokens created from [CancellationTokenSource](../../cancellationtokensource/) will return true, while the None token will always return false. + +## See Also + +* Class [CancellationToken](../) +* Namespace [System::Threading](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading/cancellationtoken/get_iscancellationrequested/_index.md b/english/cpp/system.threading/cancellationtoken/get_iscancellationrequested/_index.md new file mode 100644 index 0000000000..164771be27 --- /dev/null +++ b/english/cpp/system.threading/cancellationtoken/get_iscancellationrequested/_index.md @@ -0,0 +1,28 @@ +--- +title: System::Threading::CancellationToken::get_IsCancellationRequested method +linktitle: get_IsCancellationRequested +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::CancellationToken::get_IsCancellationRequested method. Gets whether cancellation has been requested for this token in C++.' +type: docs +weight: 300 +url: /cpp/system.threading/cancellationtoken/get_iscancellationrequested/ +--- +## CancellationToken::get_IsCancellationRequested method + + +Gets whether cancellation has been requested for this token. + +```cpp +bool System::Threading::CancellationToken::get_IsCancellationRequested() const +``` + + +### ReturnValue + +true if cancellation has been requested for this token; otherwise, false. + +## See Also + +* Class [CancellationToken](../) +* Namespace [System::Threading](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading/cancellationtoken/get_none/_index.md b/english/cpp/system.threading/cancellationtoken/get_none/_index.md new file mode 100644 index 0000000000..9dd6629838 --- /dev/null +++ b/english/cpp/system.threading/cancellationtoken/get_none/_index.md @@ -0,0 +1,34 @@ +--- +title: System::Threading::CancellationToken::get_None method +linktitle: get_None +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::CancellationToken::get_None method. Returns an empty System::Threading::CancellationToken value in C++.' +type: docs +weight: 600 +url: /cpp/system.threading/cancellationtoken/get_none/ +--- +## CancellationToken::get_None method + + +Returns an empty [System::Threading::CancellationToken](../) value. + +```cpp +static CancellationToken System::Threading::CancellationToken::get_None() +``` + + +### ReturnValue + +An empty cancellation token that cannot be canceled. +## Remarks + + + +The returned token will never transition to a canceled state. + +## See Also + +* Class [CancellationToken](../) +* Class [CancellationToken](../) +* Namespace [System::Threading](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading/cancellationtoken/register/_index.md b/english/cpp/system.threading/cancellationtoken/register/_index.md new file mode 100644 index 0000000000..6116eeb6c1 --- /dev/null +++ b/english/cpp/system.threading/cancellationtoken/register/_index.md @@ -0,0 +1,39 @@ +--- +title: System::Threading::CancellationToken::Register method +linktitle: Register +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::CancellationToken::Register method. Registers a callback that will be invoked when cancellation is requested in C++.' +type: docs +weight: 400 +url: /cpp/system.threading/cancellationtoken/register/ +--- +## CancellationToken::Register method + + +Registers a callback that will be invoked when cancellation is requested. + +```cpp +CancellationTokenRegistration System::Threading::CancellationToken::Register(const Action<> &callback) const +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| callback | const Action<>\& | The Action<> to execute when cancellation is requested. | + +### ReturnValue + +A [CancellationTokenRegistration](../../cancellationtokenregistration/) object that can be used to deregister the callback. +## Remarks + + + +If cancellation has already been requested, the callback will be invoked immediately. + +## See Also + +* Class [CancellationTokenRegistration](../../cancellationtokenregistration/) +* Typedef [Action](../../../system/action/) +* Class [CancellationToken](../) +* Namespace [System::Threading](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading/cancellationtoken/throwifcancellationrequested/_index.md b/english/cpp/system.threading/cancellationtoken/throwifcancellationrequested/_index.md new file mode 100644 index 0000000000..8a1f67b612 --- /dev/null +++ b/english/cpp/system.threading/cancellationtoken/throwifcancellationrequested/_index.md @@ -0,0 +1,29 @@ +--- +title: System::Threading::CancellationToken::ThrowIfCancellationRequested method +linktitle: ThrowIfCancellationRequested +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::CancellationToken::ThrowIfCancellationRequested method. Throws a OperationCanceledException if cancellation has been requested in C++.' +type: docs +weight: 500 +url: /cpp/system.threading/cancellationtoken/throwifcancellationrequested/ +--- +## CancellationToken::ThrowIfCancellationRequested method + + +Throws a OperationCanceledException if cancellation has been requested. + +```cpp +void System::Threading::CancellationToken::ThrowIfCancellationRequested() const +``` + +## Remarks + + + +This method provides a convenient way to check for cancellation at specific points in your code where it's safe to throw an exception. + +## See Also + +* Class [CancellationToken](../) +* Namespace [System::Threading](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading/cancellationtokenregistration/_index.md b/english/cpp/system.threading/cancellationtokenregistration/_index.md new file mode 100644 index 0000000000..c36bc8a2b0 --- /dev/null +++ b/english/cpp/system.threading/cancellationtokenregistration/_index.md @@ -0,0 +1,33 @@ +--- +title: System::Threading::CancellationTokenRegistration class +linktitle: CancellationTokenRegistration +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::CancellationTokenRegistration class. Represents a registration for a cancellation token callback in C++.' +type: docs +weight: 300 +url: /cpp/system.threading/cancellationtokenregistration/ +--- +## CancellationTokenRegistration class + + +Represents a registration for a cancellation token callback. + +```cpp +class CancellationTokenRegistration +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Dispose](./dispose/)() | Disposes the registration and removes the callback from the associated [CancellationTokenSource](../cancellationtokensource/). After calling this method, the registered callback will no longer be invoked when the associated [CancellationTokenSource](../cancellationtokensource/) is canceled. | +## Remarks + + +This class allows for the deregistration of a callback from a cancellation token. When disposed, it removes the callback from the associated [CancellationTokenSource](../cancellationtokensource/). +This class should not be created directly - it is returned by [CancellationToken](../cancellationtoken/) registration methods. + +## See Also + +* Namespace [System::Threading](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system.threading/cancellationtokenregistration/dispose/_index.md b/english/cpp/system.threading/cancellationtokenregistration/dispose/_index.md new file mode 100644 index 0000000000..56a2a32ac3 --- /dev/null +++ b/english/cpp/system.threading/cancellationtokenregistration/dispose/_index.md @@ -0,0 +1,29 @@ +--- +title: System::Threading::CancellationTokenRegistration::Dispose method +linktitle: Dispose +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::CancellationTokenRegistration::Dispose method. Disposes the registration and removes the callback from the associated CancellationTokenSource. After calling this method, the registered callback will no longer be invoked when the associated CancellationTokenSource is canceled in C++.' +type: docs +weight: 100 +url: /cpp/system.threading/cancellationtokenregistration/dispose/ +--- +## CancellationTokenRegistration::Dispose method + + +Disposes the registration and removes the callback from the associated [CancellationTokenSource](../../cancellationtokensource/). After calling this method, the registered callback will no longer be invoked when the associated [CancellationTokenSource](../../cancellationtokensource/) is canceled. + +```cpp +void System::Threading::CancellationTokenRegistration::Dispose() +``` + +## Remarks + + + +It is safe to call this method multiple times - subsequent calls will have no effect. + +## See Also + +* Class [CancellationTokenRegistration](../) +* Namespace [System::Threading](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading/cancellationtokensource/_index.md b/english/cpp/system.threading/cancellationtokensource/_index.md new file mode 100644 index 0000000000..126c712c6c --- /dev/null +++ b/english/cpp/system.threading/cancellationtokensource/_index.md @@ -0,0 +1,37 @@ +--- +title: System::Threading::CancellationTokenSource class +linktitle: CancellationTokenSource +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::CancellationTokenSource class. A cancellation token source that can be used to trigger cancellation notifications in C++.' +type: docs +weight: 400 +url: /cpp/system.threading/cancellationtokensource/ +--- +## CancellationTokenSource class + + +A cancellation token source that can be used to trigger cancellation notifications. + +```cpp +class CancellationTokenSource : public System::IDisposable +``` + +## Methods + +| Method | Description | +| --- | --- | +| [Cancel](./cancel/)() | Communicates a request for cancellation. | +| [CancellationTokenSource](./cancellationtokensource/)() | Constructs a new [CancellationTokenSource](./). | +| static [CreateLinkedTokenSource](./createlinkedtokensource/)(const CancellationToken\&, const CancellationToken\&) | Creates a linked token source that cancels when any of the provided tokens cancel. | +| [Dispose](./dispose/)() override | Releases all resources used by the [CancellationTokenSource](./). | +| [get_IsCancellationRequested](./get_iscancellationrequested/)() const | Gets whether cancellation has been requested. | +| [get_Token](./get_token/)() const | Gets the cancellation token associated with this source. | +## Remarks + + +Provides mechanisms to create and control cancellation tokens for cooperative cancellation of operations. +## See Also + +* Class [IDisposable](../../system/idisposable/) +* Namespace [System::Threading](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system.threading/cancellationtokensource/cancel/_index.md b/english/cpp/system.threading/cancellationtokensource/cancel/_index.md new file mode 100644 index 0000000000..66e28791c6 --- /dev/null +++ b/english/cpp/system.threading/cancellationtokensource/cancel/_index.md @@ -0,0 +1,29 @@ +--- +title: System::Threading::CancellationTokenSource::Cancel method +linktitle: Cancel +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::CancellationTokenSource::Cancel method. Communicates a request for cancellation in C++.' +type: docs +weight: 200 +url: /cpp/system.threading/cancellationtokensource/cancel/ +--- +## CancellationTokenSource::Cancel method + + +Communicates a request for cancellation. + +```cpp +void System::Threading::CancellationTokenSource::Cancel() +``` + +## Remarks + + + +Callbacks are executed synchronously during this call. + +## See Also + +* Class [CancellationTokenSource](../) +* Namespace [System::Threading](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading/cancellationtokensource/cancellationtokensource/_index.md b/english/cpp/system.threading/cancellationtokensource/cancellationtokensource/_index.md new file mode 100644 index 0000000000..874d77cbe0 --- /dev/null +++ b/english/cpp/system.threading/cancellationtokensource/cancellationtokensource/_index.md @@ -0,0 +1,24 @@ +--- +title: System::Threading::CancellationTokenSource::CancellationTokenSource constructor +linktitle: CancellationTokenSource +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::CancellationTokenSource::CancellationTokenSource constructor. Constructs a new CancellationTokenSource in C++.' +type: docs +weight: 100 +url: /cpp/system.threading/cancellationtokensource/cancellationtokensource/ +--- +## CancellationTokenSource::CancellationTokenSource constructor + + +Constructs a new [CancellationTokenSource](../). + +```cpp +System::Threading::CancellationTokenSource::CancellationTokenSource() +``` + + +## See Also + +* Class [CancellationTokenSource](../) +* Namespace [System::Threading](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading/cancellationtokensource/createlinkedtokensource/_index.md b/english/cpp/system.threading/cancellationtokensource/createlinkedtokensource/_index.md new file mode 100644 index 0000000000..e6377ec81c --- /dev/null +++ b/english/cpp/system.threading/cancellationtokensource/createlinkedtokensource/_index.md @@ -0,0 +1,41 @@ +--- +title: System::Threading::CancellationTokenSource::CreateLinkedTokenSource method +linktitle: CreateLinkedTokenSource +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::CancellationTokenSource::CreateLinkedTokenSource method. Creates a linked token source that cancels when any of the provided tokens cancel in C++.' +type: docs +weight: 600 +url: /cpp/system.threading/cancellationtokensource/createlinkedtokensource/ +--- +## CancellationTokenSource::CreateLinkedTokenSource method + + +Creates a linked token source that cancels when any of the provided tokens cancel. + +```cpp +static SharedPtr System::Threading::CancellationTokenSource::CreateLinkedTokenSource(const CancellationToken &token1, const CancellationToken &token2) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| token1 | const CancellationToken\& | First cancellation token to monitor. | +| token2 | const CancellationToken\& | Second cancellation token to monitor. | + +### ReturnValue + +New token source that will cancel when either input token cancels. +## Remarks + + + +The returned source will immediately cancel if either input token is already canceled. + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [CancellationTokenSource](../) +* Class [CancellationToken](../../cancellationtoken/) +* Class [CancellationTokenSource](../) +* Namespace [System::Threading](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading/cancellationtokensource/dispose/_index.md b/english/cpp/system.threading/cancellationtokensource/dispose/_index.md new file mode 100644 index 0000000000..598d008352 --- /dev/null +++ b/english/cpp/system.threading/cancellationtokensource/dispose/_index.md @@ -0,0 +1,29 @@ +--- +title: System::Threading::CancellationTokenSource::Dispose method +linktitle: Dispose +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::CancellationTokenSource::Dispose method. Releases all resources used by the CancellationTokenSource in C++.' +type: docs +weight: 300 +url: /cpp/system.threading/cancellationtokensource/dispose/ +--- +## CancellationTokenSource::Dispose method + + +Releases all resources used by the [CancellationTokenSource](../). + +```cpp +void System::Threading::CancellationTokenSource::Dispose() override +``` + +## Remarks + + +Unregisters all callbacks and makes the token unusable. +Multiple calls are safe and have no additional effect. + +## See Also + +* Class [CancellationTokenSource](../) +* Namespace [System::Threading](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading/cancellationtokensource/get_iscancellationrequested/_index.md b/english/cpp/system.threading/cancellationtokensource/get_iscancellationrequested/_index.md new file mode 100644 index 0000000000..1738ebdaca --- /dev/null +++ b/english/cpp/system.threading/cancellationtokensource/get_iscancellationrequested/_index.md @@ -0,0 +1,28 @@ +--- +title: System::Threading::CancellationTokenSource::get_IsCancellationRequested method +linktitle: get_IsCancellationRequested +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::CancellationTokenSource::get_IsCancellationRequested method. Gets whether cancellation has been requested in C++.' +type: docs +weight: 400 +url: /cpp/system.threading/cancellationtokensource/get_iscancellationrequested/ +--- +## CancellationTokenSource::get_IsCancellationRequested method + + +Gets whether cancellation has been requested. + +```cpp +bool System::Threading::CancellationTokenSource::get_IsCancellationRequested() const +``` + + +### ReturnValue + +true if [Cancel()](../cancel/) has been called, false otherwise. + +## See Also + +* Class [CancellationTokenSource](../) +* Namespace [System::Threading](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading/cancellationtokensource/get_token/_index.md b/english/cpp/system.threading/cancellationtokensource/get_token/_index.md new file mode 100644 index 0000000000..3493e2d3da --- /dev/null +++ b/english/cpp/system.threading/cancellationtokensource/get_token/_index.md @@ -0,0 +1,29 @@ +--- +title: System::Threading::CancellationTokenSource::get_Token method +linktitle: get_Token +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::CancellationTokenSource::get_Token method. Gets the cancellation token associated with this source in C++.' +type: docs +weight: 500 +url: /cpp/system.threading/cancellationtokensource/get_token/ +--- +## CancellationTokenSource::get_Token method + + +Gets the cancellation token associated with this source. + +```cpp +CancellationToken System::Threading::CancellationTokenSource::get_Token() const +``` + + +### ReturnValue + +A cancellation token that can be passed to cancelable operations. + +## See Also + +* Class [CancellationToken](../../cancellationtoken/) +* Class [CancellationTokenSource](../) +* Namespace [System::Threading](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading/eventresetmode/_index.md b/english/cpp/system.threading/eventresetmode/_index.md index d3e60ce772..bb4277aa78 100644 --- a/english/cpp/system.threading/eventresetmode/_index.md +++ b/english/cpp/system.threading/eventresetmode/_index.md @@ -4,7 +4,7 @@ linktitle: EventResetMode second_title: Aspose.PDF for C++ API Reference description: 'System::Threading::EventResetMode enum. Indicates how event state resets in C++.' type: docs -weight: 1500 +weight: 1800 url: /cpp/system.threading/eventresetmode/ --- ## EventResetMode enum diff --git a/english/cpp/system.threading/eventwaithandle/_index.md b/english/cpp/system.threading/eventwaithandle/_index.md index b1a288877e..467071b2a8 100644 --- a/english/cpp/system.threading/eventwaithandle/_index.md +++ b/english/cpp/system.threading/eventwaithandle/_index.md @@ -4,7 +4,7 @@ linktitle: EventWaitHandle second_title: Aspose.PDF for C++ API Reference description: 'System::Threading::EventWaitHandle class. Event that can be sent to waiting thread. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument in C++.' type: docs -weight: 200 +weight: 500 url: /cpp/system.threading/eventwaithandle/ --- ## EventWaitHandle class diff --git a/english/cpp/system.threading/interlocked/_index.md b/english/cpp/system.threading/interlocked/_index.md index 557b438fec..851d02fdf6 100644 --- a/english/cpp/system.threading/interlocked/_index.md +++ b/english/cpp/system.threading/interlocked/_index.md @@ -4,7 +4,7 @@ linktitle: Interlocked second_title: Aspose.PDF for C++ API Reference description: 'System::Threading::Interlocked class. Provides API for thread-safe operations. This is a static type with no instance services. You should never create instances of it by any means in C++.' type: docs -weight: 300 +weight: 600 url: /cpp/system.threading/interlocked/ --- ## Interlocked class diff --git a/english/cpp/system.threading/manualresetevent/_index.md b/english/cpp/system.threading/manualresetevent/_index.md index b3ea44ba3a..90ba8fabca 100644 --- a/english/cpp/system.threading/manualresetevent/_index.md +++ b/english/cpp/system.threading/manualresetevent/_index.md @@ -4,7 +4,7 @@ linktitle: ManualResetEvent second_title: Aspose.PDF for C++ API Reference description: 'System::Threading::ManualResetEvent class. Event to notify waiting thread that does not reset automatically. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument in C++.' type: docs -weight: 400 +weight: 700 url: /cpp/system.threading/manualresetevent/ --- ## ManualResetEvent class diff --git a/english/cpp/system.threading/monitor/_index.md b/english/cpp/system.threading/monitor/_index.md index f142139018..a6f90a1985 100644 --- a/english/cpp/system.threading/monitor/_index.md +++ b/english/cpp/system.threading/monitor/_index.md @@ -4,7 +4,7 @@ linktitle: Monitor second_title: Aspose.PDF for C++ API Reference description: 'System::Threading::Monitor class. Class Monitor provides a mechanism that synchronizes access to objects in C++.' type: docs -weight: 500 +weight: 800 url: /cpp/system.threading/monitor/ --- ## Monitor class diff --git a/english/cpp/system.threading/mutex/_index.md b/english/cpp/system.threading/mutex/_index.md index 09a550e0e9..1e3f4fe087 100644 --- a/english/cpp/system.threading/mutex/_index.md +++ b/english/cpp/system.threading/mutex/_index.md @@ -4,7 +4,7 @@ linktitle: Mutex second_title: Aspose.PDF for C++ API Reference description: 'System::Threading::Mutex class. Mutex implemnetation. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument in C++.' type: docs -weight: 600 +weight: 900 url: /cpp/system.threading/mutex/ --- ## Mutex class diff --git a/english/cpp/system.threading/parameterizedthreadstart/_index.md b/english/cpp/system.threading/parameterizedthreadstart/_index.md index 42a946ef7e..7b1bae3674 100644 --- a/english/cpp/system.threading/parameterizedthreadstart/_index.md +++ b/english/cpp/system.threading/parameterizedthreadstart/_index.md @@ -4,7 +4,7 @@ linktitle: ParameterizedThreadStart second_title: Aspose.PDF for C++ API Reference description: 'System::Threading::ParameterizedThreadStart typedef. Thread function with single parameter in C++.' type: docs -weight: 1700 +weight: 2000 url: /cpp/system.threading/parameterizedthreadstart/ --- ## ParameterizedThreadStart typedef diff --git a/english/cpp/system.threading/semaphore/_index.md b/english/cpp/system.threading/semaphore/_index.md index 51c9c83228..4ad8e1ff38 100644 --- a/english/cpp/system.threading/semaphore/_index.md +++ b/english/cpp/system.threading/semaphore/_index.md @@ -4,7 +4,7 @@ linktitle: Semaphore second_title: Aspose.PDF for C++ API Reference description: 'System::Threading::Semaphore class. Semaphore implementation. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument in C++.' type: docs -weight: 700 +weight: 1000 url: /cpp/system.threading/semaphore/ --- ## Semaphore class diff --git a/english/cpp/system.threading/sendorpostcallback/_index.md b/english/cpp/system.threading/sendorpostcallback/_index.md index 034340f839..477ff6b42b 100644 --- a/english/cpp/system.threading/sendorpostcallback/_index.md +++ b/english/cpp/system.threading/sendorpostcallback/_index.md @@ -4,7 +4,7 @@ linktitle: SendOrPostCallback second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Threading::SendOrPostCallback typedef in C++.' type: docs -weight: 1800 +weight: 2100 url: /cpp/system.threading/sendorpostcallback/ --- ## SendOrPostCallback typedef diff --git a/english/cpp/system.threading/thread/_index.md b/english/cpp/system.threading/thread/_index.md index 82d34cf1de..7230ae2e9a 100644 --- a/english/cpp/system.threading/thread/_index.md +++ b/english/cpp/system.threading/thread/_index.md @@ -4,7 +4,7 @@ linktitle: Thread second_title: Aspose.PDF for C++ API Reference description: 'System::Threading::Thread class. Thread implementation. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument in C++.' type: docs -weight: 800 +weight: 1100 url: /cpp/system.threading/thread/ --- ## Thread class diff --git a/english/cpp/system.threading/threadpool/_index.md b/english/cpp/system.threading/threadpool/_index.md index f5c3effbb9..2a24b7f992 100644 --- a/english/cpp/system.threading/threadpool/_index.md +++ b/english/cpp/system.threading/threadpool/_index.md @@ -4,7 +4,7 @@ linktitle: ThreadPool second_title: Aspose.PDF for C++ API Reference description: 'System::Threading::ThreadPool class. Thread pool API allowing it pushing jobs into queue to be read by pool of worker threads. This is a static type with no instance services. You should never create instances of it by any means in C++.' type: docs -weight: 900 +weight: 1200 url: /cpp/system.threading/threadpool/ --- ## ThreadPool class diff --git a/english/cpp/system.threading/threadpoolimpl/_index.md b/english/cpp/system.threading/threadpoolimpl/_index.md index 2b6e24fbb6..c3208cc8ac 100644 --- a/english/cpp/system.threading/threadpoolimpl/_index.md +++ b/english/cpp/system.threading/threadpoolimpl/_index.md @@ -4,7 +4,7 @@ linktitle: ThreadPoolImpl second_title: Aspose.PDF for C++ API Reference description: 'System::Threading::ThreadPoolImpl class. Thread pool internal data. This is a singleton type with memory management done by access function(s). You should never create instances of it directly in C++.' type: docs -weight: 1000 +weight: 1300 url: /cpp/system.threading/threadpoolimpl/ --- ## ThreadPoolImpl class diff --git a/english/cpp/system.threading/threadstart/_index.md b/english/cpp/system.threading/threadstart/_index.md index 6e3e2f2087..5c3ed1a0cd 100644 --- a/english/cpp/system.threading/threadstart/_index.md +++ b/english/cpp/system.threading/threadstart/_index.md @@ -4,7 +4,7 @@ linktitle: ThreadStart second_title: Aspose.PDF for C++ API Reference description: 'System::Threading::ThreadStart typedef. Thread function with no parameters in C++.' type: docs -weight: 1900 +weight: 2200 url: /cpp/system.threading/threadstart/ --- ## ThreadStart typedef diff --git a/english/cpp/system.threading/threadstate/_index.md b/english/cpp/system.threading/threadstate/_index.md index 9c69d59f16..038e756c21 100644 --- a/english/cpp/system.threading/threadstate/_index.md +++ b/english/cpp/system.threading/threadstate/_index.md @@ -4,7 +4,7 @@ linktitle: ThreadState second_title: Aspose.PDF for C++ API Reference description: 'System::Threading::ThreadState enum. State of the thread in C++.' type: docs -weight: 1600 +weight: 1900 url: /cpp/system.threading/threadstate/ --- ## ThreadState enum diff --git a/english/cpp/system.threading/timer/_index.md b/english/cpp/system.threading/timer/_index.md index 71e2c725d9..5da9f13baa 100644 --- a/english/cpp/system.threading/timer/_index.md +++ b/english/cpp/system.threading/timer/_index.md @@ -4,7 +4,7 @@ linktitle: Timer second_title: Aspose.PDF for C++ API Reference description: 'System::Threading::Timer class. Timer class that executes job item in separate thread after delay. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument in C++.' type: docs -weight: 1100 +weight: 1400 url: /cpp/system.threading/timer/ --- ## Timer class diff --git a/english/cpp/system.threading/timercallback/_index.md b/english/cpp/system.threading/timercallback/_index.md index 4d609a43fb..fed83df5c2 100644 --- a/english/cpp/system.threading/timercallback/_index.md +++ b/english/cpp/system.threading/timercallback/_index.md @@ -4,7 +4,7 @@ linktitle: TimerCallback second_title: Aspose.PDF for C++ API Reference description: 'System::Threading::TimerCallback typedef. Callback function to be called by timer in C++.' type: docs -weight: 2000 +weight: 2300 url: /cpp/system.threading/timercallback/ --- ## TimerCallback typedef diff --git a/english/cpp/system.threading/timerqueue/_index.md b/english/cpp/system.threading/timerqueue/_index.md index 98f7c70168..3776a2e239 100644 --- a/english/cpp/system.threading/timerqueue/_index.md +++ b/english/cpp/system.threading/timerqueue/_index.md @@ -4,7 +4,7 @@ linktitle: TimerQueue second_title: Aspose.PDF for C++ API Reference description: 'System::Threading::TimerQueue class. Queue that handles Timer objects. This is just an implementation. Timer objects register there by themselves, you don''t have to do so to use them - use Timer class API instead. This is a singleton type with memory management done by access function(s). You should never create instances of it directly in C++.' type: docs -weight: 1200 +weight: 1500 url: /cpp/system.threading/timerqueue/ --- ## TimerQueue class diff --git a/english/cpp/system.threading/wait_handle_t/_index.md b/english/cpp/system.threading/wait_handle_t/_index.md index 4da52d4fb5..8041ce97a4 100644 --- a/english/cpp/system.threading/wait_handle_t/_index.md +++ b/english/cpp/system.threading/wait_handle_t/_index.md @@ -4,7 +4,7 @@ linktitle: wait_handle_t second_title: Aspose.PDF for C++ API Reference description: 'System::Threading::wait_handle_t typedef. Handle type in C++.' type: docs -weight: 2100 +weight: 2400 url: /cpp/system.threading/wait_handle_t/ --- ## wait_handle_t typedef diff --git a/english/cpp/system.threading/waitcallback/_index.md b/english/cpp/system.threading/waitcallback/_index.md index 1d3929c5f8..9953442967 100644 --- a/english/cpp/system.threading/waitcallback/_index.md +++ b/english/cpp/system.threading/waitcallback/_index.md @@ -4,7 +4,7 @@ linktitle: WaitCallback second_title: Aspose.PDF for C++ API Reference description: 'System::Threading::WaitCallback typedef. Callback item to be executed once there is a spot in C++.' type: docs -weight: 2200 +weight: 2500 url: /cpp/system.threading/waitcallback/ --- ## WaitCallback typedef diff --git a/english/cpp/system.threading/waithandle/_index.md b/english/cpp/system.threading/waithandle/_index.md index c0af798f54..a110f40ff5 100644 --- a/english/cpp/system.threading/waithandle/_index.md +++ b/english/cpp/system.threading/waithandle/_index.md @@ -4,7 +4,7 @@ linktitle: WaitHandle second_title: Aspose.PDF for C++ API Reference description: 'System::Threading::WaitHandle class. Waiting primitive base class. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument in C++.' type: docs -weight: 1300 +weight: 1600 url: /cpp/system.threading/waithandle/ --- ## WaitHandle class diff --git a/english/cpp/system.timers/_index.md b/english/cpp/system.timers/_index.md index 47afc0589f..72c02dcbac 100644 --- a/english/cpp/system.timers/_index.md +++ b/english/cpp/system.timers/_index.md @@ -4,7 +4,7 @@ linktitle: System::Timers second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Timers namespace in C++.' type: docs -weight: 7100 +weight: 7300 url: /cpp/system.timers/ --- diff --git a/english/cpp/system.web.services.description/_index.md b/english/cpp/system.web.services.description/_index.md index 6426dee27b..ca97a9492e 100644 --- a/english/cpp/system.web.services.description/_index.md +++ b/english/cpp/system.web.services.description/_index.md @@ -4,7 +4,7 @@ linktitle: System::Web::Services::Description second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Web::Services::Description namespace in C++.' type: docs -weight: 7400 +weight: 7600 url: /cpp/system.web.services.description/ --- diff --git a/english/cpp/system.web.services.protocols/_index.md b/english/cpp/system.web.services.protocols/_index.md index 5305b9fbc4..c3e600e023 100644 --- a/english/cpp/system.web.services.protocols/_index.md +++ b/english/cpp/system.web.services.protocols/_index.md @@ -4,7 +4,7 @@ linktitle: System::Web::Services::Protocols second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Web::Services::Protocols namespace in C++.' type: docs -weight: 7500 +weight: 7700 url: /cpp/system.web.services.protocols/ --- diff --git a/english/cpp/system.web.services/_index.md b/english/cpp/system.web.services/_index.md index 79b4e889be..89917a408b 100644 --- a/english/cpp/system.web.services/_index.md +++ b/english/cpp/system.web.services/_index.md @@ -4,7 +4,7 @@ linktitle: System::Web::Services second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Web::Services namespace in C++.' type: docs -weight: 7300 +weight: 7500 url: /cpp/system.web.services/ --- diff --git a/english/cpp/system.web.ui.webcontrols/_index.md b/english/cpp/system.web.ui.webcontrols/_index.md index e3e866cfe3..c450304ecf 100644 --- a/english/cpp/system.web.ui.webcontrols/_index.md +++ b/english/cpp/system.web.ui.webcontrols/_index.md @@ -4,7 +4,7 @@ linktitle: System::Web::UI::WebControls second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Web::UI::WebControls namespace in C++.' type: docs -weight: 7600 +weight: 7800 url: /cpp/system.web.ui.webcontrols/ --- diff --git a/english/cpp/system.web/_index.md b/english/cpp/system.web/_index.md index 75d2d82d09..f436e9ae51 100644 --- a/english/cpp/system.web/_index.md +++ b/english/cpp/system.web/_index.md @@ -4,7 +4,7 @@ linktitle: System::Web second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Web namespace in C++.' type: docs -weight: 7200 +weight: 7400 url: /cpp/system.web/ --- diff --git a/english/cpp/system.windows.forms/_index.md b/english/cpp/system.windows.forms/_index.md index a6b3e32e56..d8a3075ef1 100644 --- a/english/cpp/system.windows.forms/_index.md +++ b/english/cpp/system.windows.forms/_index.md @@ -4,7 +4,7 @@ linktitle: System::Windows::Forms second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Windows::Forms namespace in C++.' type: docs -weight: 7700 +weight: 7900 url: /cpp/system.windows.forms/ --- diff --git a/english/cpp/system.xml.resolvers/_index.md b/english/cpp/system.xml.resolvers/_index.md index 41153b584a..6cfc504a2f 100644 --- a/english/cpp/system.xml.resolvers/_index.md +++ b/english/cpp/system.xml.resolvers/_index.md @@ -4,7 +4,7 @@ linktitle: System::Xml::Resolvers second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Xml::Resolvers namespace in C++.' type: docs -weight: 7900 +weight: 8100 url: /cpp/system.xml.resolvers/ --- diff --git a/english/cpp/system.xml.schema/_index.md b/english/cpp/system.xml.schema/_index.md index fc0c0d5012..f67250bd10 100644 --- a/english/cpp/system.xml.schema/_index.md +++ b/english/cpp/system.xml.schema/_index.md @@ -4,7 +4,7 @@ linktitle: System::Xml::Schema second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Xml::Schema namespace in C++.' type: docs -weight: 8000 +weight: 8200 url: /cpp/system.xml.schema/ --- diff --git a/english/cpp/system.xml.serialization/_index.md b/english/cpp/system.xml.serialization/_index.md index d097a49081..3cfcfef01b 100644 --- a/english/cpp/system.xml.serialization/_index.md +++ b/english/cpp/system.xml.serialization/_index.md @@ -4,7 +4,7 @@ linktitle: System::Xml::Serialization second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Xml::Serialization namespace in C++.' type: docs -weight: 8100 +weight: 8300 url: /cpp/system.xml.serialization/ --- diff --git a/english/cpp/system.xml.xpath/_index.md b/english/cpp/system.xml.xpath/_index.md index 4e8ea2733f..d97c2692bb 100644 --- a/english/cpp/system.xml.xpath/_index.md +++ b/english/cpp/system.xml.xpath/_index.md @@ -4,7 +4,7 @@ linktitle: System::Xml::XPath second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Xml::XPath namespace in C++.' type: docs -weight: 8200 +weight: 8400 url: /cpp/system.xml.xpath/ --- diff --git a/english/cpp/system.xml.xsl.runtime/_index.md b/english/cpp/system.xml.xsl.runtime/_index.md index a61831a784..ec75f96254 100644 --- a/english/cpp/system.xml.xsl.runtime/_index.md +++ b/english/cpp/system.xml.xsl.runtime/_index.md @@ -4,7 +4,7 @@ linktitle: System::Xml::Xsl::Runtime second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Xml::Xsl::Runtime namespace in C++.' type: docs -weight: 8400 +weight: 8600 url: /cpp/system.xml.xsl.runtime/ --- diff --git a/english/cpp/system.xml.xsl/_index.md b/english/cpp/system.xml.xsl/_index.md index c8b1327693..363efea9a1 100644 --- a/english/cpp/system.xml.xsl/_index.md +++ b/english/cpp/system.xml.xsl/_index.md @@ -4,7 +4,7 @@ linktitle: System::Xml::Xsl second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Xml::Xsl namespace in C++.' type: docs -weight: 8300 +weight: 8500 url: /cpp/system.xml.xsl/ --- diff --git a/english/cpp/system.xml/_index.md b/english/cpp/system.xml/_index.md index 8a0278621b..ff319d4fb6 100644 --- a/english/cpp/system.xml/_index.md +++ b/english/cpp/system.xml/_index.md @@ -4,7 +4,7 @@ linktitle: System::Xml second_title: Aspose.PDF for C++ API Reference description: 'How to use System::Xml namespace in C++.' type: docs -weight: 7800 +weight: 8000 url: /cpp/system.xml/ --- diff --git a/english/cpp/system/_index.md b/english/cpp/system/_index.md index 54be8982d7..c03e600d82 100644 --- a/english/cpp/system/_index.md +++ b/english/cpp/system/_index.md @@ -4,7 +4,7 @@ linktitle: System second_title: Aspose.PDF for C++ API Reference description: 'How to use System namespace in C++.' type: docs -weight: 2600 +weight: 2700 url: /cpp/system/ --- @@ -141,16 +141,19 @@ url: /cpp/system/ | [FileInfoPtr](./fileinfoptr/) | An alias for a smart pointer that points to an instance of [System::IO::FileInfo](../system.io/fileinfo/) class. | | [FileStreamPtr](./filestreamptr/) | An alias for a smart pointer that points to an instance of [System::IO::FileStream](../system.io/filestream/) class. | | [FileSystemInfoPtr](./filesysteminfoptr/) | An alias for a smart pointer that points to an instance of [System::IO::FileSystemInfo](../system.io/filesysteminfo/) class. | +| [FunctionPtr](./functionptr/) | An alias for function type with default calling convention. | | [IAsyncResultPtr](./iasyncresultptr/) | Shared pointer to [IAsyncResult](./iasyncresult/). | | [IFormatProviderPtr](./iformatproviderptr/) | An alias for a smart pointer that points to an instance of [System::IFormatProvider](./iformatprovider/) class. | | [MakeConstRef_t](./makeconstref_t/) | Helper type for [MakeConstRef](./makeconstref/) modifier. | | [MemoryStreamPtr](./memorystreamptr/) | An alias for a smart pointer that points to an instance of [System::IO::MemoryStream](../system.io/memorystream/) class. | | [Predicate](./predicate/) | Represents a pointer to a predicate - an invokable entity that accepts a single argument and returns a bool value. | +| [RTaskPtr](./rtaskptr/) | An alias for a smart pointer that points to an instance of [System::Threading::Tasks::ResultTask](../system.threading.tasks/resulttask/) class. | | [SharedPtr](./sharedptr/) | Alias for smart pointer widely used in the library. | | [StreamPtr](./streamptr/) | An alias for a smart pointer that points to an instance of [System::IO::Stream](../system.io/stream/) class. | | [StreamReaderPtr](./streamreaderptr/) | An alias for a smart pointer that points to an instance of [System::IO::StreamReader](../system.io/streamreader/) class. | | [StreamWriterPtr](./streamwriterptr/) | An alias for a smart pointer that points to an instance of [System::IO::StreamWriter](../system.io/streamwriter/) class. | | [StringComparerPtr](./stringcomparerptr/) | An alias for a shared pointer to an instance of [StringComparer](./stringcomparer/) class. | +| [TaskPtr](./taskptr/) | An alias for a smart pointer that points to an instance of [System::Threading::Tasks::Task](../system.threading.tasks/task/) class. | | [TimeZoneInfoPtr](./timezoneinfoptr/) | Alias for shared pointer to an instance of [TimeZoneInfo](./timezoneinfo/) class. | | [TimeZonePtr](./timezoneptr/) | Shared pointer to an instance of [TimeZone](./timezone/) class. | ## Functions @@ -246,12 +249,16 @@ url: /cpp/system/ | MakeArray | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | | MakeArray | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | | MakeArray | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | +| MakeAsync | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | +| MakeAsync | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | | MakeObject | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | | MakeObject | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | | MakeScopeGuard | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | | MakeSharedPtr | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | | MakeSharedPtr | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | | MakeTuple | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | +| MakeYieldEnumerable | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | +| MakeYieldEnumerator | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | | MemberwiseClone | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | | ObjectType::GetType< System::DateTime > | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | | ObjectType::GetType< System::String > | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | diff --git a/english/cpp/system/ascast/_index.md b/english/cpp/system/ascast/_index.md index dcc31378a2..41031dc862 100644 --- a/english/cpp/system/ascast/_index.md +++ b/english/cpp/system/ascast/_index.md @@ -4,7 +4,7 @@ linktitle: AsCast second_title: Aspose.PDF for C++ API Reference description: 'System::AsCast method. Casts the source type to the result type using ''as'' operator cast. Used when simple constructor-like cast is needed in C++.' type: docs -weight: 13200 +weight: 13500 url: /cpp/system/ascast/ --- ## System::AsCast(const Source\&) method diff --git a/english/cpp/system/cast/_index.md b/english/cpp/system/cast/_index.md index 0cedf25d84..192b7ca4c2 100644 --- a/english/cpp/system/cast/_index.md +++ b/english/cpp/system/cast/_index.md @@ -4,7 +4,7 @@ linktitle: Cast second_title: Aspose.PDF for C++ API Reference description: 'System::Cast method. Performs cast on SmartPtr objects in C++.' type: docs -weight: 14500 +weight: 14800 url: /cpp/system/cast/ --- ## System::Cast method diff --git a/english/cpp/system/cast_noexcept/_index.md b/english/cpp/system/cast_noexcept/_index.md index 5f03060bc9..a1af2e4891 100644 --- a/english/cpp/system/cast_noexcept/_index.md +++ b/english/cpp/system/cast_noexcept/_index.md @@ -4,7 +4,7 @@ linktitle: Cast_noexcept second_title: Aspose.PDF for C++ API Reference description: 'System::Cast_noexcept method. Performs cast on SmartPtr objects in C++.' type: docs -weight: 14600 +weight: 14900 url: /cpp/system/cast_noexcept/ --- ## System::Cast_noexcept method diff --git a/english/cpp/system/castenumerableto/_index.md b/english/cpp/system/castenumerableto/_index.md index 211f1f32e1..8dddadebc4 100644 --- a/english/cpp/system/castenumerableto/_index.md +++ b/english/cpp/system/castenumerableto/_index.md @@ -4,7 +4,7 @@ linktitle: CastEnumerableTo second_title: Aspose.PDF for C++ API Reference description: 'System::CastEnumerableTo method. Performs the explicit casting of elements of the specified enumerable object to different type in C++.' type: docs -weight: 14700 +weight: 15000 url: /cpp/system/castenumerableto/ --- ## System::CastEnumerableTo(const From\&) method diff --git a/english/cpp/system/checkedcast/_index.md b/english/cpp/system/checkedcast/_index.md index 2ad1856bd5..378048af79 100644 --- a/english/cpp/system/checkedcast/_index.md +++ b/english/cpp/system/checkedcast/_index.md @@ -4,7 +4,7 @@ linktitle: CheckedCast second_title: Aspose.PDF for C++ API Reference description: 'System::CheckedCast method. Determines if the specified value falls into the range of values of type TTo and if it does casts it to the type TTo in C++.' type: docs -weight: 14900 +weight: 15200 url: /cpp/system/checkedcast/ --- ## System::CheckedCast method diff --git a/english/cpp/system/compare/_index.md b/english/cpp/system/compare/_index.md index 8c458e7b79..ef400f1181 100644 --- a/english/cpp/system/compare/_index.md +++ b/english/cpp/system/compare/_index.md @@ -4,7 +4,7 @@ linktitle: Compare second_title: Aspose.PDF for C++ API Reference description: 'System::Compare method. Compares two values in C++.' type: docs -weight: 15000 +weight: 15300 url: /cpp/system/compare/ --- ## System::Compare(const TA\&, const TB\&) method diff --git a/english/cpp/system/const_pointer_cast/_index.md b/english/cpp/system/const_pointer_cast/_index.md index 3d8094dc4c..b18be03565 100644 --- a/english/cpp/system/const_pointer_cast/_index.md +++ b/english/cpp/system/const_pointer_cast/_index.md @@ -4,7 +4,7 @@ linktitle: const_pointer_cast second_title: Aspose.PDF for C++ API Reference description: 'System::const_pointer_cast method. Casts smart pointers using const_cast in C++.' type: docs -weight: 15200 +weight: 15500 url: /cpp/system/const_pointer_cast/ --- ## System::const_pointer_cast method diff --git a/english/cpp/system/constcast/_index.md b/english/cpp/system/constcast/_index.md index a0f7361447..cc104988a1 100644 --- a/english/cpp/system/constcast/_index.md +++ b/english/cpp/system/constcast/_index.md @@ -4,7 +4,7 @@ linktitle: ConstCast second_title: Aspose.PDF for C++ API Reference description: 'System::ConstCast method. End of deprecated casts in C++.' type: docs -weight: 15300 +weight: 15600 url: /cpp/system/constcast/ --- ## System::ConstCast method diff --git a/english/cpp/system/default/_index.md b/english/cpp/system/default/_index.md index fef97c054e..26b12e6a79 100644 --- a/english/cpp/system/default/_index.md +++ b/english/cpp/system/default/_index.md @@ -4,7 +4,7 @@ linktitle: Default second_title: Aspose.PDF for C++ API Reference description: 'System::Default method. Returns the reference to the single default-constructed instance of the exception type in C++.' type: docs -weight: 15400 +weight: 15700 url: /cpp/system/default/ --- ## System::Default() method diff --git a/english/cpp/system/discard/_index.md b/english/cpp/system/discard/_index.md index e4e6e40f76..783ecd92cf 100644 --- a/english/cpp/system/discard/_index.md +++ b/english/cpp/system/discard/_index.md @@ -4,7 +4,7 @@ linktitle: Discard second_title: Aspose.PDF for C++ API Reference description: 'System::Discard method. Returns the default-constructed temporary instance of the specified type, which can be placed instead of discarding ''_'' argument in C++.' type: docs -weight: 15600 +weight: 15900 url: /cpp/system/discard/ --- ## System::Discard method diff --git a/english/cpp/system/dotryfinally/_index.md b/english/cpp/system/dotryfinally/_index.md index d4384cad81..1a6c3dcbf7 100644 --- a/english/cpp/system/dotryfinally/_index.md +++ b/english/cpp/system/dotryfinally/_index.md @@ -4,7 +4,7 @@ linktitle: DoTryFinally second_title: Aspose.PDF for C++ API Reference description: 'System::DoTryFinally method. The sigle function that emulates behavior of C#''s try[-catch]-finally statement. During translation of C#''s try[-catch]-finally statement with translator''s option finally_statement_as_lambda set to true, the statement is translated into the invocation of this method in C++.' type: docs -weight: 15700 +weight: 16000 url: /cpp/system/dotryfinally/ --- ## System::DoTryFinally(T\&&, F\&&) method diff --git a/english/cpp/system/dynamic_pointer_cast/_index.md b/english/cpp/system/dynamic_pointer_cast/_index.md index 6ff13f81ae..c42c29ae2a 100644 --- a/english/cpp/system/dynamic_pointer_cast/_index.md +++ b/english/cpp/system/dynamic_pointer_cast/_index.md @@ -4,7 +4,7 @@ linktitle: dynamic_pointer_cast second_title: Aspose.PDF for C++ API Reference description: 'System::dynamic_pointer_cast method. Casts smart pointers using dynamic_cast in C++.' type: docs -weight: 16000 +weight: 16300 url: /cpp/system/dynamic_pointer_cast/ --- ## System::dynamic_pointer_cast method diff --git a/english/cpp/system/dynamiccast/_index.md b/english/cpp/system/dynamiccast/_index.md index 5ab0b49ade..a73233b6a4 100644 --- a/english/cpp/system/dynamiccast/_index.md +++ b/english/cpp/system/dynamiccast/_index.md @@ -4,7 +4,7 @@ linktitle: DynamicCast second_title: Aspose.PDF for C++ API Reference description: 'System::DynamicCast method. Performs dynamic cast on Exception objects in C++.' type: docs -weight: 16100 +weight: 16400 url: /cpp/system/dynamiccast/ --- ## System::DynamicCast(const TFrom\&) method diff --git a/english/cpp/system/dynamiccast_noexcept/_index.md b/english/cpp/system/dynamiccast_noexcept/_index.md index 6294063dd2..664c2a1bf7 100644 --- a/english/cpp/system/dynamiccast_noexcept/_index.md +++ b/english/cpp/system/dynamiccast_noexcept/_index.md @@ -4,7 +4,7 @@ linktitle: DynamicCast_noexcept second_title: Aspose.PDF for C++ API Reference description: 'System::DynamicCast_noexcept method. Old obsolete casts. Will be removed in future versions in C++.' type: docs -weight: 16800 +weight: 17100 url: /cpp/system/dynamiccast_noexcept/ --- ## System::DynamicCast_noexcept(const TFrom\&) method diff --git a/english/cpp/system/dynamiccastarray/_index.md b/english/cpp/system/dynamiccastarray/_index.md index cbd3dfce99..f18aaf95a1 100644 --- a/english/cpp/system/dynamiccastarray/_index.md +++ b/english/cpp/system/dynamiccastarray/_index.md @@ -4,7 +4,7 @@ linktitle: DynamicCastArray second_title: Aspose.PDF for C++ API Reference description: 'System::DynamicCastArray method. Performs casting of elements of the specified array to different type in C++.' type: docs -weight: 17100 +weight: 17400 url: /cpp/system/dynamiccastarray/ --- ## System::DynamicCastArray method diff --git a/english/cpp/system/enumgetname/_index.md b/english/cpp/system/enumgetname/_index.md index 6811adbe83..f6e6475b6e 100644 --- a/english/cpp/system/enumgetname/_index.md +++ b/english/cpp/system/enumgetname/_index.md @@ -4,7 +4,7 @@ linktitle: EnumGetName second_title: Aspose.PDF for C++ API Reference description: 'How to use EnumGetName method of class in C++.' type: docs -weight: 17200 +weight: 17500 url: /cpp/system/enumgetname/ --- ## System::EnumGetName(T) method diff --git a/english/cpp/system/equals/_index.md b/english/cpp/system/equals/_index.md index 3c37ea893e..b75a8af7da 100644 --- a/english/cpp/system/equals/_index.md +++ b/english/cpp/system/equals/_index.md @@ -4,7 +4,7 @@ linktitle: Equals second_title: Aspose.PDF for C++ API Reference description: 'System::Equals method. Determines the equality of two values applying operator==() to them in C++.' type: docs -weight: 17400 +weight: 17700 url: /cpp/system/equals/ --- ## System::Equals method diff --git a/english/cpp/system/equals_double,double_/_index.md b/english/cpp/system/equals_double,double_/_index.md index 3727bb2322..cb131a315c 100644 --- a/english/cpp/system/equals_double,double_/_index.md +++ b/english/cpp/system/equals_double,double_/_index.md @@ -4,7 +4,7 @@ linktitle: Equals< double, double > second_title: Aspose.PDF for C++ API Reference description: 'System::Equals< double, double > method. Specialization for double-precision floating point values in C++.' type: docs -weight: 17500 +weight: 17800 url: /cpp/system/equals_double,double_/ --- ## System::Equals< double, double > method diff --git a/english/cpp/system/equals_float,float_/_index.md b/english/cpp/system/equals_float,float_/_index.md index e0fdab9257..660712b158 100644 --- a/english/cpp/system/equals_float,float_/_index.md +++ b/english/cpp/system/equals_float,float_/_index.md @@ -4,7 +4,7 @@ linktitle: Equals< float, float > second_title: Aspose.PDF for C++ API Reference description: 'System::Equals< float, float > method. Specialization for single-precision floating point values. Although two floating point NaNs are defined by IEC 60559:1989 to always compare as unequal, the contract for System.Object.Equals, requires that overrides must satisfy the requirements for an equivalence operator. Therefore, System.Double.Equals and System.Single.Equals return True when comparing two NaNs, while the equality operator returns False in that case, as required by the standard in C++.' type: docs -weight: 17600 +weight: 17900 url: /cpp/system/equals_float,float_/ --- ## System::Equals< float, float > method diff --git a/english/cpp/system/explicitcast/_index.md b/english/cpp/system/explicitcast/_index.md index 99def8f280..3978d1b36f 100644 --- a/english/cpp/system/explicitcast/_index.md +++ b/english/cpp/system/explicitcast/_index.md @@ -4,7 +4,7 @@ linktitle: ExplicitCast second_title: Aspose.PDF for C++ API Reference description: 'System::ExplicitCast method. Casts the source type to the result type using explicit cast. Used when the source and the result types are the same in C++.' type: docs -weight: 17700 +weight: 18000 url: /cpp/system/explicitcast/ --- ## System::ExplicitCast(const Source\&) method diff --git a/english/cpp/system/forcestaticcast/_index.md b/english/cpp/system/forcestaticcast/_index.md index 0407686c6a..2a7d111350 100644 --- a/english/cpp/system/forcestaticcast/_index.md +++ b/english/cpp/system/forcestaticcast/_index.md @@ -4,7 +4,7 @@ linktitle: ForceStaticCast second_title: Aspose.PDF for C++ API Reference description: 'System::ForceStaticCast method. Performs real static cast on SmartPtr objects in C++.' type: docs -weight: 19300 +weight: 19600 url: /cpp/system/forcestaticcast/ --- ## System::ForceStaticCast method diff --git a/english/cpp/system/foreachmembergvname/_index.md b/english/cpp/system/foreachmembergvname/_index.md index 5251125447..3868e6da4a 100644 --- a/english/cpp/system/foreachmembergvname/_index.md +++ b/english/cpp/system/foreachmembergvname/_index.md @@ -4,7 +4,7 @@ linktitle: ForEachMemberGVName second_title: Aspose.PDF for C++ API Reference description: 'How to use ForEachMemberGVName method of class in C++.' type: docs -weight: 19400 +weight: 19700 url: /cpp/system/foreachmembergvname/ --- ## System::ForEachMemberGVName method diff --git a/english/cpp/system/functionptr/_index.md b/english/cpp/system/functionptr/_index.md new file mode 100644 index 0000000000..602e786500 --- /dev/null +++ b/english/cpp/system/functionptr/_index.md @@ -0,0 +1,22 @@ +--- +title: System::FunctionPtr typedef +linktitle: FunctionPtr +second_title: Aspose.PDF for C++ API Reference +description: 'System::FunctionPtr typedef. An alias for function type with default calling convention in C++.' +type: docs +weight: 12000 +url: /cpp/system/functionptr/ +--- +## FunctionPtr typedef + + +An alias for function type with default calling convention. + +```cpp +using System::FunctionPtr = ReturnT(*)(ArgsT...) +``` + +## See Also + +* Namespace [System](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system/get_pointer/_index.md b/english/cpp/system/get_pointer/_index.md index 8b97c1901e..5818cb6c39 100644 --- a/english/cpp/system/get_pointer/_index.md +++ b/english/cpp/system/get_pointer/_index.md @@ -4,7 +4,7 @@ linktitle: get_pointer second_title: Aspose.PDF for C++ API Reference description: 'System::get_pointer method. Gets referenced object of smart pointer in C++.' type: docs -weight: 19500 +weight: 19800 url: /cpp/system/get_pointer/ --- ## System::get_pointer method diff --git a/english/cpp/system/gethashcode/_index.md b/english/cpp/system/gethashcode/_index.md index 1b4808548c..3a56ca3f0f 100644 --- a/english/cpp/system/gethashcode/_index.md +++ b/english/cpp/system/gethashcode/_index.md @@ -4,7 +4,7 @@ linktitle: GetHashCode second_title: Aspose.PDF for C++ API Reference description: 'System::GetHashCode method. Specialization for std::thread::id; Returns the hash code for the specified thread object in C++.' type: docs -weight: 19600 +weight: 19900 url: /cpp/system/gethashcode/ --- ## System::GetHashCode(const std::thread::id\&) method diff --git a/english/cpp/system/iasyncresultptr/_index.md b/english/cpp/system/iasyncresultptr/_index.md index 41b240ccb8..aadbf5ffe1 100644 --- a/english/cpp/system/iasyncresultptr/_index.md +++ b/english/cpp/system/iasyncresultptr/_index.md @@ -4,7 +4,7 @@ linktitle: IAsyncResultPtr second_title: Aspose.PDF for C++ API Reference description: 'System::IAsyncResultPtr typedef. Shared pointer to IAsyncResult in C++.' type: docs -weight: 12000 +weight: 12100 url: /cpp/system/iasyncresultptr/ --- ## IAsyncResultPtr typedef diff --git a/english/cpp/system/iformatproviderptr/_index.md b/english/cpp/system/iformatproviderptr/_index.md index de1674c148..de8b385276 100644 --- a/english/cpp/system/iformatproviderptr/_index.md +++ b/english/cpp/system/iformatproviderptr/_index.md @@ -4,7 +4,7 @@ linktitle: IFormatProviderPtr second_title: Aspose.PDF for C++ API Reference description: 'System::IFormatProviderPtr typedef. An alias for a smart pointer that points to an instance of System::IFormatProvider class in C++.' type: docs -weight: 12100 +weight: 12200 url: /cpp/system/iformatproviderptr/ --- ## IFormatProviderPtr typedef diff --git a/english/cpp/system/is_parametrized_test/_index.md b/english/cpp/system/is_parametrized_test/_index.md index 68b0e580a4..cca452d604 100644 --- a/english/cpp/system/is_parametrized_test/_index.md +++ b/english/cpp/system/is_parametrized_test/_index.md @@ -4,7 +4,7 @@ linktitle: is_parametrized_test second_title: Aspose.PDF for C++ API Reference description: 'How to use is_parametrized_test method of class in C++.' type: docs -weight: 20100 +weight: 20400 url: /cpp/system/is_parametrized_test/ --- ## System::is_parametrized_test method diff --git a/english/cpp/system/is_vp_test/_index.md b/english/cpp/system/is_vp_test/_index.md index 657119ba17..cb35cdd984 100644 --- a/english/cpp/system/is_vp_test/_index.md +++ b/english/cpp/system/is_vp_test/_index.md @@ -4,7 +4,7 @@ linktitle: is_vp_test second_title: Aspose.PDF for C++ API Reference description: 'How to use is_vp_test method of class in C++.' type: docs -weight: 20200 +weight: 20500 url: /cpp/system/is_vp_test/ --- ## System::is_vp_test method diff --git a/english/cpp/system/isconstant/_index.md b/english/cpp/system/isconstant/_index.md index 26df02f358..b436ed88a4 100644 --- a/english/cpp/system/isconstant/_index.md +++ b/english/cpp/system/isconstant/_index.md @@ -4,7 +4,7 @@ linktitle: IsConstant second_title: Aspose.PDF for C++ API Reference description: 'System::IsConstant method. Implements ''is'' constant pattern translation in C++.' type: docs -weight: 20300 +weight: 20600 url: /cpp/system/isconstant/ --- ## System::IsConstant method diff --git a/english/cpp/system/isdeclaration/_index.md b/english/cpp/system/isdeclaration/_index.md index d6b86ccd9d..4129165e7c 100644 --- a/english/cpp/system/isdeclaration/_index.md +++ b/english/cpp/system/isdeclaration/_index.md @@ -4,7 +4,7 @@ linktitle: IsDeclaration second_title: Aspose.PDF for C++ API Reference description: 'System::IsDeclaration method. Implements ''is'' declaration pattern translation in C++.' type: docs -weight: 20400 +weight: 20700 url: /cpp/system/isdeclaration/ --- ## System::IsDeclaration method diff --git a/english/cpp/system/isenummetainfodefined/_index.md b/english/cpp/system/isenummetainfodefined/_index.md index f72d0f4d1a..3fb292216f 100644 --- a/english/cpp/system/isenummetainfodefined/_index.md +++ b/english/cpp/system/isenummetainfodefined/_index.md @@ -4,7 +4,7 @@ linktitle: IsEnumMetaInfoDefined second_title: Aspose.PDF for C++ API Reference description: 'How to use IsEnumMetaInfoDefined method of class in C++.' type: docs -weight: 20500 +weight: 20800 url: /cpp/system/isenummetainfodefined/ --- ## System::IsEnumMetaInfoDefined(T) method diff --git a/english/cpp/system/isinfinity/_index.md b/english/cpp/system/isinfinity/_index.md index 01a58c8d22..9fd9302366 100644 --- a/english/cpp/system/isinfinity/_index.md +++ b/english/cpp/system/isinfinity/_index.md @@ -4,7 +4,7 @@ linktitle: IsInfinity second_title: Aspose.PDF for C++ API Reference description: 'System::IsInfinity method. Determines if the specified value represents infinity in C++.' type: docs -weight: 20700 +weight: 21000 url: /cpp/system/isinfinity/ --- ## System::IsInfinity method diff --git a/english/cpp/system/isnan/_index.md b/english/cpp/system/isnan/_index.md index 0572c41d09..bf12a4dd76 100644 --- a/english/cpp/system/isnan/_index.md +++ b/english/cpp/system/isnan/_index.md @@ -4,7 +4,7 @@ linktitle: IsNaN second_title: Aspose.PDF for C++ API Reference description: 'System::IsNaN method. Determines if the specified value is Not-A-Number value in C++.' type: docs -weight: 20800 +weight: 21100 url: /cpp/system/isnan/ --- ## System::IsNaN method diff --git a/english/cpp/system/isnegativeinfinity/_index.md b/english/cpp/system/isnegativeinfinity/_index.md index 634d2c87d7..d69d2271a6 100644 --- a/english/cpp/system/isnegativeinfinity/_index.md +++ b/english/cpp/system/isnegativeinfinity/_index.md @@ -4,7 +4,7 @@ linktitle: IsNegativeInfinity second_title: Aspose.PDF for C++ API Reference description: 'System::IsNegativeInfinity method. Determines if the specified value represents negative infinity in C++.' type: docs -weight: 20900 +weight: 21200 url: /cpp/system/isnegativeinfinity/ --- ## System::IsNegativeInfinity method diff --git a/english/cpp/system/ispattern/_index.md b/english/cpp/system/ispattern/_index.md deleted file mode 100644 index 87544a0752..0000000000 --- a/english/cpp/system/ispattern/_index.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: System::IsPattern method -linktitle: IsPattern -second_title: Aspose.PDF for C++ API Reference -description: 'System::IsPattern method. Implements ''is'' pattern translation in C++.' -type: docs -weight: 20500 -url: /cpp/system/ispattern/ ---- -## System::IsPattern method - - -Implements 'is' pattern translation. - -```cpp -template static bool System::IsPattern(const ExpressionT &left, ResultT &result) -``` - - -| Parameter | Description | -| --- | --- | -| PatternT | type to check. | -| ExpressionT | left expression type. | -| ResultT | type of result expression. | - -| Parameter | Type | Description | -| --- | --- | --- | -| left | const ExpressionT\& | expression which will be checked. | -| result | ResultT\& | variable which will be assigned to checked type. | - -### ReturnValue - -true if type check is successfull, false otherwise. - -## See Also - -* Namespace [System](../) -* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system/ispositiveinfinity/_index.md b/english/cpp/system/ispositiveinfinity/_index.md index f23ac38ace..ea3073a65a 100644 --- a/english/cpp/system/ispositiveinfinity/_index.md +++ b/english/cpp/system/ispositiveinfinity/_index.md @@ -4,7 +4,7 @@ linktitle: IsPositiveInfinity second_title: Aspose.PDF for C++ API Reference description: 'System::IsPositiveInfinity method. Determines if the specified value represents positive infinity in C++.' type: docs -weight: 21000 +weight: 21300 url: /cpp/system/ispositiveinfinity/ --- ## System::IsPositiveInfinity method diff --git a/english/cpp/system/iterateover/_index.md b/english/cpp/system/iterateover/_index.md index 789636c751..e79124077e 100644 --- a/english/cpp/system/iterateover/_index.md +++ b/english/cpp/system/iterateover/_index.md @@ -4,7 +4,7 @@ linktitle: IterateOver second_title: Aspose.PDF for C++ API Reference description: 'System::IterateOver method. This function property wraps enumerable (or iterable) object so it can be used with range-based for loop This overload for Enumerable this with default target type in C++.' type: docs -weight: 21100 +weight: 21400 url: /cpp/system/iterateover/ --- ## System::IterateOver(const Enumerable *) method diff --git a/english/cpp/system/makearray/_index.md b/english/cpp/system/makearray/_index.md index 41fbfd6298..6c4727b02c 100644 --- a/english/cpp/system/makearray/_index.md +++ b/english/cpp/system/makearray/_index.md @@ -4,7 +4,7 @@ linktitle: MakeArray second_title: Aspose.PDF for C++ API Reference description: 'System::MakeArray method. A factory function that constructs a new Array object passing the specified arguments to its constructor in C++.' type: docs -weight: 21800 +weight: 22100 url: /cpp/system/makearray/ --- ## System::MakeArray(Args\&&...) method diff --git a/english/cpp/system/makeasync/_index.md b/english/cpp/system/makeasync/_index.md new file mode 100644 index 0000000000..3a4b64feb3 --- /dev/null +++ b/english/cpp/system/makeasync/_index.md @@ -0,0 +1,37 @@ +--- +title: System::MakeAsync method +linktitle: MakeAsync +second_title: Aspose.PDF for C++ API Reference +description: 'How to use MakeAsync method of class in C++.' +type: docs +weight: 22400 +url: /cpp/system/makeasync/ +--- +## System::MakeAsync(const Details::AsyncFunction\&) method + + + + +```cpp +TaskPtr System::MakeAsync(const Details::AsyncFunction &fnc) +``` + +## See Also + +* Typedef [TaskPtr](../taskptr/) +* Namespace [System](../) +* Library [Aspose.PDF for C++](../../) +## System::MakeAsync(const Details::ResultAsyncFunction\\&) method + + + + +```cpp +template RTaskPtr System::MakeAsync(const Details::ResultAsyncFunction &fnc) +``` + +## See Also + +* Typedef [RTaskPtr](../rtaskptr/) +* Namespace [System](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system/makeconstref_t/_index.md b/english/cpp/system/makeconstref_t/_index.md index 95f9b3e323..7f87bbf9cf 100644 --- a/english/cpp/system/makeconstref_t/_index.md +++ b/english/cpp/system/makeconstref_t/_index.md @@ -4,7 +4,7 @@ linktitle: MakeConstRef_t second_title: Aspose.PDF for C++ API Reference description: 'System::MakeConstRef_t typedef. Helper type for MakeConstRef modifier in C++.' type: docs -weight: 12200 +weight: 12300 url: /cpp/system/makeconstref_t/ --- ## MakeConstRef_t typedef diff --git a/english/cpp/system/makeobject/_index.md b/english/cpp/system/makeobject/_index.md index 348b9ad10f..eb56854b38 100644 --- a/english/cpp/system/makeobject/_index.md +++ b/english/cpp/system/makeobject/_index.md @@ -4,7 +4,7 @@ linktitle: MakeObject second_title: Aspose.PDF for C++ API Reference description: 'System::MakeObject method. Creates object on heap and returns shared pointer to it in C++.' type: docs -weight: 22100 +weight: 22600 url: /cpp/system/makeobject/ --- ## System::MakeObject(Args\&&...) method diff --git a/english/cpp/system/makescopeguard/_index.md b/english/cpp/system/makescopeguard/_index.md index 075d8ea57a..7e5aedb9ef 100644 --- a/english/cpp/system/makescopeguard/_index.md +++ b/english/cpp/system/makescopeguard/_index.md @@ -4,7 +4,7 @@ linktitle: MakeScopeGuard second_title: Aspose.PDF for C++ API Reference description: 'System::MakeScopeGuard method. A factory function that creates instances of ScopedGuard class in C++.' type: docs -weight: 22300 +weight: 22800 url: /cpp/system/makescopeguard/ --- ## System::MakeScopeGuard method diff --git a/english/cpp/system/makesharedptr/_index.md b/english/cpp/system/makesharedptr/_index.md index 200ec4dfca..cd738fc6a1 100644 --- a/english/cpp/system/makesharedptr/_index.md +++ b/english/cpp/system/makesharedptr/_index.md @@ -4,7 +4,7 @@ linktitle: MakeSharedPtr second_title: Aspose.PDF for C++ API Reference description: 'System::MakeSharedPtr method. Converts raw pointer to smart pointer. Overload for const pointers. Useful e. g. when using ''this'' variable in C# methods translated as const in C++.' type: docs -weight: 22400 +weight: 22900 url: /cpp/system/makesharedptr/ --- ## System::MakeSharedPtr(const X *) method diff --git a/english/cpp/system/maketuple/_index.md b/english/cpp/system/maketuple/_index.md index ee631cf865..03de969964 100644 --- a/english/cpp/system/maketuple/_index.md +++ b/english/cpp/system/maketuple/_index.md @@ -4,7 +4,7 @@ linktitle: MakeTuple second_title: Aspose.PDF for C++ API Reference description: 'System::MakeTuple method. Creates tuple on stack in C++.' type: docs -weight: 22600 +weight: 23100 url: /cpp/system/maketuple/ --- ## System::MakeTuple method diff --git a/english/cpp/system/makeyieldenumerable/_index.md b/english/cpp/system/makeyieldenumerable/_index.md new file mode 100644 index 0000000000..fc0113fea4 --- /dev/null +++ b/english/cpp/system/makeyieldenumerable/_index.md @@ -0,0 +1,37 @@ +--- +title: System::MakeYieldEnumerable method +linktitle: MakeYieldEnumerable +second_title: Aspose.PDF for C++ API Reference +description: 'System::MakeYieldEnumerable method. Creates an IEnumerable from a yield function in C++.' +type: docs +weight: 23200 +url: /cpp/system/makeyieldenumerable/ +--- +## System::MakeYieldEnumerable method + + +Creates an IEnumerable from a yield function. + +```cpp +template SharedPtr> System::MakeYieldEnumerable(const Details::YieldFunction &fnc) +``` + + +| Parameter | Description | +| --- | --- | +| T | The type of elements in the sequence | + +| Parameter | Type | Description | +| --- | --- | --- | +| fnc | const Details::YieldFunction\\& | The yield function to execute | + +### ReturnValue + +Shared pointer to the IEnumerable + +## See Also + +* Typedef [SharedPtr](../sharedptr/) +* Class [IEnumerable](../../system.collections.generic/ienumerable/) +* Namespace [System](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system/makeyieldenumerator/_index.md b/english/cpp/system/makeyieldenumerator/_index.md new file mode 100644 index 0000000000..2b239db235 --- /dev/null +++ b/english/cpp/system/makeyieldenumerator/_index.md @@ -0,0 +1,37 @@ +--- +title: System::MakeYieldEnumerator method +linktitle: MakeYieldEnumerator +second_title: Aspose.PDF for C++ API Reference +description: 'System::MakeYieldEnumerator method. Creates an IEnumerator from a yield function in C++.' +type: docs +weight: 23300 +url: /cpp/system/makeyieldenumerator/ +--- +## System::MakeYieldEnumerator method + + +Creates an IEnumerator from a yield function. + +```cpp +template SharedPtr> System::MakeYieldEnumerator(const Details::YieldFunction &fnc) +``` + + +| Parameter | Description | +| --- | --- | +| T | The type of elements in the sequence | + +| Parameter | Type | Description | +| --- | --- | --- | +| fnc | const Details::YieldFunction\\& | The yield function to execute | + +### ReturnValue + +Shared pointer to the IEnumerator + +## See Also + +* Typedef [SharedPtr](../sharedptr/) +* Class [IEnumerator](../../system.collections.generic/ienumerator/) +* Namespace [System](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system/memberwiseclone/_index.md b/english/cpp/system/memberwiseclone/_index.md index ec0c27cca4..42e28ff331 100644 --- a/english/cpp/system/memberwiseclone/_index.md +++ b/english/cpp/system/memberwiseclone/_index.md @@ -4,7 +4,7 @@ linktitle: MemberwiseClone second_title: Aspose.PDF for C++ API Reference description: 'System::MemberwiseClone method. Performs memberwise cloning using copy constructor in C++.' type: docs -weight: 22700 +weight: 23400 url: /cpp/system/memberwiseclone/ --- ## System::MemberwiseClone method diff --git a/english/cpp/system/memorystreamptr/_index.md b/english/cpp/system/memorystreamptr/_index.md index debf6d0615..ddc31a2c63 100644 --- a/english/cpp/system/memorystreamptr/_index.md +++ b/english/cpp/system/memorystreamptr/_index.md @@ -4,7 +4,7 @@ linktitle: MemoryStreamPtr second_title: Aspose.PDF for C++ API Reference description: 'System::MemoryStreamPtr typedef. An alias for a smart pointer that points to an instance of System::IO::MemoryStream class in C++.' type: docs -weight: 12300 +weight: 12400 url: /cpp/system/memorystreamptr/ --- ## MemoryStreamPtr typedef diff --git a/english/cpp/system/objecttype.gettype_system.datetime_/_index.md b/english/cpp/system/objecttype.gettype_system.datetime_/_index.md index 4a82402ad3..e9d020a410 100644 --- a/english/cpp/system/objecttype.gettype_system.datetime_/_index.md +++ b/english/cpp/system/objecttype.gettype_system.datetime_/_index.md @@ -4,7 +4,7 @@ linktitle: ObjectType::GetType< System::DateTime > second_title: Aspose.PDF for C++ API Reference description: 'System::GetType< System::DateTime > method. Implements typeof() translation. Overload for DateTime in C++.' type: docs -weight: 22800 +weight: 23500 url: /cpp/system/objecttype.gettype_system.datetime_/ --- ## System::ObjectType::GetType< System::DateTime > method diff --git a/english/cpp/system/objecttype.gettype_system.string_/_index.md b/english/cpp/system/objecttype.gettype_system.string_/_index.md index 75f04a4ff7..6b5d0da94f 100644 --- a/english/cpp/system/objecttype.gettype_system.string_/_index.md +++ b/english/cpp/system/objecttype.gettype_system.string_/_index.md @@ -4,7 +4,7 @@ linktitle: ObjectType::GetType< System::String > second_title: Aspose.PDF for C++ API Reference description: 'System::GetType< System::String > method. Implements typeof() translation. Overload for String in C++.' type: docs -weight: 22900 +weight: 23600 url: /cpp/system/objecttype.gettype_system.string_/ --- ## System::ObjectType::GetType< System::String > method diff --git a/english/cpp/system/operator!=/_index.md b/english/cpp/system/operator!=/_index.md index 187668432e..dc97ecc814 100644 --- a/english/cpp/system/operator!=/_index.md +++ b/english/cpp/system/operator!=/_index.md @@ -4,7 +4,7 @@ linktitle: operator!= second_title: Aspose.PDF for C++ API Reference description: 'How to use operator!= method of class in C++.' type: docs -weight: 23000 +weight: 23700 url: /cpp/system/operator!=/ --- ## System::operator!=(ArraySegment\, ArraySegment\) method diff --git a/english/cpp/system/operator+/_index.md b/english/cpp/system/operator+/_index.md index 86e37b32b6..875ec9d0fe 100644 --- a/english/cpp/system/operator+/_index.md +++ b/english/cpp/system/operator+/_index.md @@ -4,7 +4,7 @@ linktitle: operator+ second_title: Aspose.PDF for C++ API Reference description: 'System::operator+ method. String concatenation in C++.' type: docs -weight: 24700 +weight: 25400 url: /cpp/system/operator+/ --- ## System::operator+(const char_t, const String\&) method diff --git a/english/cpp/system/operator-/_index.md b/english/cpp/system/operator-/_index.md index 1f389fb487..8f90244573 100644 --- a/english/cpp/system/operator-/_index.md +++ b/english/cpp/system/operator-/_index.md @@ -4,7 +4,7 @@ linktitle: operator- second_title: Aspose.PDF for C++ API Reference description: 'System::operator- method. Returns a new instance of Decimal class that represents a value that is the result of subtraction of the value represented by the specified Decimal object from the specified value in C++.' type: docs -weight: 25300 +weight: 26000 url: /cpp/system/operator-/ --- ## System::operator-(const T\&, const Decimal\&) method diff --git a/english/cpp/system/operator/_index.md b/english/cpp/system/operator/_index.md index 5152e42f16..f39f28597d 100644 --- a/english/cpp/system/operator/_index.md +++ b/english/cpp/system/operator/_index.md @@ -4,7 +4,7 @@ linktitle: operator/ second_title: Aspose.PDF for C++ API Reference description: 'System::operator/ method. Returns a new instance of Decimal class that represents a value that is a result of division of the specified value and the value represented by the specified Decimal object in C++.' type: docs -weight: 25700 +weight: 26400 url: /cpp/system/operator/ --- ## System::operator/ method diff --git a/english/cpp/system/operator==/_index.md b/english/cpp/system/operator==/_index.md index aded430163..143c772016 100644 --- a/english/cpp/system/operator==/_index.md +++ b/english/cpp/system/operator==/_index.md @@ -4,7 +4,7 @@ linktitle: operator== second_title: Aspose.PDF for C++ API Reference description: 'How to use operator== method of class in C++.' type: docs -weight: 29600 +weight: 30300 url: /cpp/system/operator==/ --- ## System::operator==(ArraySegment\, ArraySegment\) method diff --git a/english/cpp/system/operator_/_index.md b/english/cpp/system/operator_/_index.md index e101f73ec2..a2e98db1f2 100644 --- a/english/cpp/system/operator_/_index.md +++ b/english/cpp/system/operator_/_index.md @@ -4,7 +4,7 @@ linktitle: operator* second_title: Aspose.PDF for C++ API Reference description: 'System::operator* method. Returns a new instance of Decimal class that represents a value that is a result of multiplication of the specified value and the value represented by the specified Decimal object in C++.' type: docs -weight: 24600 +weight: 25300 url: /cpp/system/operator_/ --- ## System::operator* method @@ -37,7 +37,7 @@ linktitle: operator< second_title: Aspose.PDF for C++ API Reference description: 'System::operator< method. Determines if the specified value is less than the value represented by the specified Nullable object by applying operator<() to these values in C++.' type: docs -weight: 25800 +weight: 26500 url: /cpp/system/operator_/ --- ## System::operator<(const T1\&, const Nullable\\&) method @@ -131,7 +131,7 @@ linktitle: operator> second_title: Aspose.PDF for C++ API Reference description: 'System::operator> method. Determines if the specified value is greater than the value represented by the specified Nullable object by applying operator>() to these values in C++.' type: docs -weight: 31300 +weight: 32000 url: /cpp/system/operator_/ --- ## System::operator>(const T1\&, const Nullable\\&) method diff --git a/english/cpp/system/operator_=/_index.md b/english/cpp/system/operator_=/_index.md index f64c6eddc6..9a9abb9655 100644 --- a/english/cpp/system/operator_=/_index.md +++ b/english/cpp/system/operator_=/_index.md @@ -4,7 +4,7 @@ linktitle: operator<= second_title: Aspose.PDF for C++ API Reference description: 'System::operator<= method. Determines if the specified value is less or equal to the value represented by the specified Nullable object by applying operator<=() to these values in C++.' type: docs -weight: 29100 +weight: 29800 url: /cpp/system/operator_=/ --- ## System::operator<=(const T1\&, const Nullable\\&) method @@ -98,7 +98,7 @@ linktitle: operator>= second_title: Aspose.PDF for C++ API Reference description: 'System::operator>= method. Determines if the specified value is greater or equal to the value represented by the specified Nullable object by applying operator>=() to these values in C++.' type: docs -weight: 31800 +weight: 32500 url: /cpp/system/operator_=/ --- ## System::operator>=(const T1\&, const Nullable\\&) method diff --git a/english/cpp/system/operator__/_index.md b/english/cpp/system/operator__/_index.md index f1016a72a1..ef2bbff8e3 100644 --- a/english/cpp/system/operator__/_index.md +++ b/english/cpp/system/operator__/_index.md @@ -4,7 +4,7 @@ linktitle: operator<< second_title: Aspose.PDF for C++ API Reference description: 'System::operator<< method. Outputs a string to the output stream using UTF-8 encoding in C++.' type: docs -weight: 26300 +weight: 27000 url: /cpp/system/operator__/ --- ## System::operator<<(std::ostream\&, const String\&) method @@ -685,7 +685,7 @@ linktitle: operator>> second_title: Aspose.PDF for C++ API Reference description: 'System::operator>> method. Gets a string from the input streamusing UTF-8 encoding in C++.' type: docs -weight: 32300 +weight: 33000 url: /cpp/system/operator__/ --- ## System::operator>>(std::istream\&, String\&) method diff --git a/english/cpp/system/predicate/_index.md b/english/cpp/system/predicate/_index.md index 9d83c4740a..acb819a388 100644 --- a/english/cpp/system/predicate/_index.md +++ b/english/cpp/system/predicate/_index.md @@ -4,7 +4,7 @@ linktitle: Predicate second_title: Aspose.PDF for C++ API Reference description: 'System::Predicate typedef. Represents a pointer to a predicate - an invokable entity that accepts a single argument and returns a bool value in C++.' type: docs -weight: 12400 +weight: 12500 url: /cpp/system/predicate/ --- ## Predicate typedef diff --git a/english/cpp/system/printto/_index.md b/english/cpp/system/printto/_index.md index 7541713bbb..f348ebe5a1 100644 --- a/english/cpp/system/printto/_index.md +++ b/english/cpp/system/printto/_index.md @@ -4,7 +4,7 @@ linktitle: PrintTo second_title: Aspose.PDF for C++ API Reference description: 'System::PrintTo method. Writes the value represented by the specified object to the specified output stream in C++.' type: docs -weight: 32500 +weight: 33200 url: /cpp/system/printto/ --- ## System::PrintTo(const Decimal\&, ::std::ostream *) method diff --git a/english/cpp/system/ref/_index.md b/english/cpp/system/ref/_index.md index ce77241a02..0ec5cae1ef 100644 --- a/english/cpp/system/ref/_index.md +++ b/english/cpp/system/ref/_index.md @@ -4,7 +4,7 @@ linktitle: Ref second_title: Aspose.PDF for C++ API Reference description: 'System::Ref method. Wrapper to make sure Ref(std::ref(DynamicWeakPtr)) works in C++.' type: docs -weight: 33800 +weight: 34500 url: /cpp/system/ref/ --- ## System::Ref(const std::reference_wrapper\\&) method diff --git a/english/cpp/system/rtaskptr/_index.md b/english/cpp/system/rtaskptr/_index.md new file mode 100644 index 0000000000..fcde087f6d --- /dev/null +++ b/english/cpp/system/rtaskptr/_index.md @@ -0,0 +1,22 @@ +--- +title: System::RTaskPtr typedef +linktitle: RTaskPtr +second_title: Aspose.PDF for C++ API Reference +description: 'System::RTaskPtr typedef. An alias for a smart pointer that points to an instance of System::Threading::Tasks::ResultTask class in C++.' +type: docs +weight: 12600 +url: /cpp/system/rtaskptr/ +--- +## RTaskPtr typedef + + +An alias for a smart pointer that points to an instance of [System::Threading::Tasks::ResultTask](../../system.threading.tasks/resulttask/) class. + +```cpp +using System::RTaskPtr = System::SmartPtr> +``` + +## See Also + +* Namespace [System](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system/safeinvoke/_index.md b/english/cpp/system/safeinvoke/_index.md index 935e44b7b7..bc0a7b6ec4 100644 --- a/english/cpp/system/safeinvoke/_index.md +++ b/english/cpp/system/safeinvoke/_index.md @@ -4,7 +4,7 @@ linktitle: SafeInvoke second_title: Aspose.PDF for C++ API Reference description: 'System::SafeInvoke method. Implementation of ''?.'' operator translation in C++.' type: docs -weight: 34100 +weight: 34800 url: /cpp/system/safeinvoke/ --- ## System::SafeInvoke method diff --git a/english/cpp/system/setter_add_wrap/_index.md b/english/cpp/system/setter_add_wrap/_index.md index 36c7a541c2..5b03f299a8 100644 --- a/english/cpp/system/setter_add_wrap/_index.md +++ b/english/cpp/system/setter_add_wrap/_index.md @@ -4,7 +4,7 @@ linktitle: setter_add_wrap second_title: Aspose.PDF for C++ API Reference description: 'How to use setter_add_wrap method of class in C++.' type: docs -weight: 34200 +weight: 34900 url: /cpp/system/setter_add_wrap/ --- ## System::setter_add_wrap(HostT *const, PropT(HostGetT::*)(), void(HostSetT::*)(const PropT\&), PropValT) method diff --git a/english/cpp/system/setter_and_wrap/_index.md b/english/cpp/system/setter_and_wrap/_index.md index 94883c3571..d116337bed 100644 --- a/english/cpp/system/setter_and_wrap/_index.md +++ b/english/cpp/system/setter_and_wrap/_index.md @@ -4,7 +4,7 @@ linktitle: setter_and_wrap second_title: Aspose.PDF for C++ API Reference description: 'How to use setter_and_wrap method of class in C++.' type: docs -weight: 34600 +weight: 35300 url: /cpp/system/setter_and_wrap/ --- ## System::setter_and_wrap(HostT *const, PropT(HostGetT::*)(), void(HostSetT::*)(const PropT\&), PropValT) method diff --git a/english/cpp/system/setter_decrement_wrap/_index.md b/english/cpp/system/setter_decrement_wrap/_index.md index 224612883e..fb4d7a90c6 100644 --- a/english/cpp/system/setter_decrement_wrap/_index.md +++ b/english/cpp/system/setter_decrement_wrap/_index.md @@ -4,7 +4,7 @@ linktitle: setter_decrement_wrap second_title: Aspose.PDF for C++ API Reference description: 'System::setter_decrement_wrap method. Translator translates C#''s pre-decrement expressions targeting instance''s property that has setter and getter defined, into invocation of this function (overload for const getter) in C++.' type: docs -weight: 35000 +weight: 35700 url: /cpp/system/setter_decrement_wrap/ --- ## System::setter_decrement_wrap(Host *const, T(HostConstGet::*)() const, void(HostSet::*)(T)) method diff --git a/english/cpp/system/setter_div_wrap/_index.md b/english/cpp/system/setter_div_wrap/_index.md index 5358956e60..faea0eaf4e 100644 --- a/english/cpp/system/setter_div_wrap/_index.md +++ b/english/cpp/system/setter_div_wrap/_index.md @@ -4,7 +4,7 @@ linktitle: setter_div_wrap second_title: Aspose.PDF for C++ API Reference description: 'How to use setter_div_wrap method of class in C++.' type: docs -weight: 35300 +weight: 36000 url: /cpp/system/setter_div_wrap/ --- ## System::setter_div_wrap(HostT *const, PropT(HostGetT::*)(), void(HostSetT::*)(const PropT\&), PropValT) method diff --git a/english/cpp/system/setter_exor_wrap/_index.md b/english/cpp/system/setter_exor_wrap/_index.md index 576bb13b64..ade3387745 100644 --- a/english/cpp/system/setter_exor_wrap/_index.md +++ b/english/cpp/system/setter_exor_wrap/_index.md @@ -4,7 +4,7 @@ linktitle: setter_exor_wrap second_title: Aspose.PDF for C++ API Reference description: 'How to use setter_exor_wrap method of class in C++.' type: docs -weight: 35700 +weight: 36400 url: /cpp/system/setter_exor_wrap/ --- ## System::setter_exor_wrap(HostT *const, PropT(HostGetT::*)(), void(HostSetT::*)(const PropT\&), PropValT) method diff --git a/english/cpp/system/setter_increment_wrap/_index.md b/english/cpp/system/setter_increment_wrap/_index.md index 44944dc3f7..236b1401a4 100644 --- a/english/cpp/system/setter_increment_wrap/_index.md +++ b/english/cpp/system/setter_increment_wrap/_index.md @@ -4,7 +4,7 @@ linktitle: setter_increment_wrap second_title: Aspose.PDF for C++ API Reference description: 'System::setter_increment_wrap method. Translator translates C#''s increment expressions targeting class'' property that has setter and getter defined, into invocation of this function in C++.' type: docs -weight: 36100 +weight: 36800 url: /cpp/system/setter_increment_wrap/ --- ## System::setter_increment_wrap(Host *const, T(HostGet::*)(), void(HostSet::*)(T)) method diff --git a/english/cpp/system/setter_mod_wrap/_index.md b/english/cpp/system/setter_mod_wrap/_index.md index 41c6699f72..a90097ac0f 100644 --- a/english/cpp/system/setter_mod_wrap/_index.md +++ b/english/cpp/system/setter_mod_wrap/_index.md @@ -4,7 +4,7 @@ linktitle: setter_mod_wrap second_title: Aspose.PDF for C++ API Reference description: 'How to use setter_mod_wrap method of class in C++.' type: docs -weight: 36300 +weight: 37000 url: /cpp/system/setter_mod_wrap/ --- ## System::setter_mod_wrap(HostT *const, PropT(HostGetT::*)(), void(HostSetT::*)(const PropT\&), PropValT) method diff --git a/english/cpp/system/setter_mul_wrap/_index.md b/english/cpp/system/setter_mul_wrap/_index.md index dc922b1a35..291abf3c07 100644 --- a/english/cpp/system/setter_mul_wrap/_index.md +++ b/english/cpp/system/setter_mul_wrap/_index.md @@ -4,7 +4,7 @@ linktitle: setter_mul_wrap second_title: Aspose.PDF for C++ API Reference description: 'How to use setter_mul_wrap method of class in C++.' type: docs -weight: 36700 +weight: 37400 url: /cpp/system/setter_mul_wrap/ --- ## System::setter_mul_wrap(HostT *const, PropT(HostGetT::*)(), void(HostSetT::*)(const PropT\&), PropValT) method diff --git a/english/cpp/system/setter_or_wrap/_index.md b/english/cpp/system/setter_or_wrap/_index.md index d6f6254bea..30dd2d3a6a 100644 --- a/english/cpp/system/setter_or_wrap/_index.md +++ b/english/cpp/system/setter_or_wrap/_index.md @@ -4,7 +4,7 @@ linktitle: setter_or_wrap second_title: Aspose.PDF for C++ API Reference description: 'How to use setter_or_wrap method of class in C++.' type: docs -weight: 37100 +weight: 37800 url: /cpp/system/setter_or_wrap/ --- ## System::setter_or_wrap(HostT *const, PropT(HostGetT::*)(), void(HostSetT::*)(const PropT\&), PropValT) method diff --git a/english/cpp/system/setter_post_decrement_wrap/_index.md b/english/cpp/system/setter_post_decrement_wrap/_index.md index 9c4d399f17..8c298fd12c 100644 --- a/english/cpp/system/setter_post_decrement_wrap/_index.md +++ b/english/cpp/system/setter_post_decrement_wrap/_index.md @@ -4,7 +4,7 @@ linktitle: setter_post_decrement_wrap second_title: Aspose.PDF for C++ API Reference description: 'System::setter_post_decrement_wrap method. Translator translates C#''s post-decrement expressions targeting instance''s property that has setter and getter defined, into invocation of this function (overload for const getter) in C++.' type: docs -weight: 37500 +weight: 38200 url: /cpp/system/setter_post_decrement_wrap/ --- ## System::setter_post_decrement_wrap(Host *const, T(HostConstGet::*)() const, void(HostSet::*)(T)) method diff --git a/english/cpp/system/setter_post_increment_wrap/_index.md b/english/cpp/system/setter_post_increment_wrap/_index.md index dba7fce52d..4d77f45e22 100644 --- a/english/cpp/system/setter_post_increment_wrap/_index.md +++ b/english/cpp/system/setter_post_increment_wrap/_index.md @@ -4,7 +4,7 @@ linktitle: setter_post_increment_wrap second_title: Aspose.PDF for C++ API Reference description: 'System::setter_post_increment_wrap method. Translator translates C#''s post-increment expressions targeting instance''s property that has setter and getter defined, into invocation of this function (overload for const getter) in C++.' type: docs -weight: 37800 +weight: 38500 url: /cpp/system/setter_post_increment_wrap/ --- ## System::setter_post_increment_wrap(Host *const, T(HostConstGet::*)() const, void(HostSet::*)(T)) method diff --git a/english/cpp/system/setter_shl_wrap/_index.md b/english/cpp/system/setter_shl_wrap/_index.md index c7423bd803..665078feb0 100644 --- a/english/cpp/system/setter_shl_wrap/_index.md +++ b/english/cpp/system/setter_shl_wrap/_index.md @@ -4,7 +4,7 @@ linktitle: setter_shl_wrap second_title: Aspose.PDF for C++ API Reference description: 'How to use setter_shl_wrap method of class in C++.' type: docs -weight: 38100 +weight: 38800 url: /cpp/system/setter_shl_wrap/ --- ## System::setter_shl_wrap(HostT *const, PropT(HostGetT::*)(), void(HostSetT::*)(const PropT\&), PropValT) method diff --git a/english/cpp/system/setter_shr_wrap/_index.md b/english/cpp/system/setter_shr_wrap/_index.md index acd64c2261..5110e5da3d 100644 --- a/english/cpp/system/setter_shr_wrap/_index.md +++ b/english/cpp/system/setter_shr_wrap/_index.md @@ -4,7 +4,7 @@ linktitle: setter_shr_wrap second_title: Aspose.PDF for C++ API Reference description: 'How to use setter_shr_wrap method of class in C++.' type: docs -weight: 38500 +weight: 39200 url: /cpp/system/setter_shr_wrap/ --- ## System::setter_shr_wrap(HostT *const, PropT(HostGetT::*)(), void(HostSetT::*)(const PropT\&), PropValT) method diff --git a/english/cpp/system/setter_sub_wrap/_index.md b/english/cpp/system/setter_sub_wrap/_index.md index e9299ea9c4..cfcf11f38f 100644 --- a/english/cpp/system/setter_sub_wrap/_index.md +++ b/english/cpp/system/setter_sub_wrap/_index.md @@ -4,7 +4,7 @@ linktitle: setter_sub_wrap second_title: Aspose.PDF for C++ API Reference description: 'How to use setter_sub_wrap method of class in C++.' type: docs -weight: 38900 +weight: 39600 url: /cpp/system/setter_sub_wrap/ --- ## System::setter_sub_wrap(HostT *const, PropT(HostGetT::*)(), void(HostSetT::*)(const PropT\&), PropValT) method diff --git a/english/cpp/system/setter_wrap/_index.md b/english/cpp/system/setter_wrap/_index.md index a3f5930fba..b49c553c93 100644 --- a/english/cpp/system/setter_wrap/_index.md +++ b/english/cpp/system/setter_wrap/_index.md @@ -4,7 +4,7 @@ linktitle: setter_wrap second_title: Aspose.PDF for C++ API Reference description: 'System::setter_wrap method. Overload for instance setter functions with type conversion in C++.' type: docs -weight: 39300 +weight: 40000 url: /cpp/system/setter_wrap/ --- ## System::setter_wrap(Host *const, void(HostSet::*)(T2), T) method diff --git a/english/cpp/system/sharedptr/_index.md b/english/cpp/system/sharedptr/_index.md index d4e1727b8a..1af46368bc 100644 --- a/english/cpp/system/sharedptr/_index.md +++ b/english/cpp/system/sharedptr/_index.md @@ -4,7 +4,7 @@ linktitle: SharedPtr second_title: Aspose.PDF for C++ API Reference description: 'System::SharedPtr typedef. Alias for smart pointer widely used in the library in C++.' type: docs -weight: 12500 +weight: 12700 url: /cpp/system/sharedptr/ --- ## SharedPtr typedef diff --git a/english/cpp/system/static_pointer_cast/_index.md b/english/cpp/system/static_pointer_cast/_index.md index c3057caded..0bb95eba00 100644 --- a/english/cpp/system/static_pointer_cast/_index.md +++ b/english/cpp/system/static_pointer_cast/_index.md @@ -4,7 +4,7 @@ linktitle: static_pointer_cast second_title: Aspose.PDF for C++ API Reference description: 'System::static_pointer_cast method. Casts smart pointers using static_cast in C++.' type: docs -weight: 39500 +weight: 40200 url: /cpp/system/static_pointer_cast/ --- ## System::static_pointer_cast method diff --git a/english/cpp/system/staticcast/_index.md b/english/cpp/system/staticcast/_index.md index 5b39e6f79f..e1a271fc78 100644 --- a/english/cpp/system/staticcast/_index.md +++ b/english/cpp/system/staticcast/_index.md @@ -4,7 +4,7 @@ linktitle: StaticCast second_title: Aspose.PDF for C++ API Reference description: 'System::StaticCast method. Performs static cast on non-pointer objects in C++.' type: docs -weight: 39600 +weight: 40300 url: /cpp/system/staticcast/ --- ## System::StaticCast(const TFrom\&) method diff --git a/english/cpp/system/staticcast_noexcept/_index.md b/english/cpp/system/staticcast_noexcept/_index.md index d3474eb788..a365a48fb8 100644 --- a/english/cpp/system/staticcast_noexcept/_index.md +++ b/english/cpp/system/staticcast_noexcept/_index.md @@ -4,7 +4,7 @@ linktitle: StaticCast_noexcept second_title: Aspose.PDF for C++ API Reference description: 'System::StaticCast_noexcept method. Performs static cast on Exception objects in C++.' type: docs -weight: 40500 +weight: 41200 url: /cpp/system/staticcast_noexcept/ --- ## System::StaticCast_noexcept(const TFrom\&) method diff --git a/english/cpp/system/staticcastarray/_index.md b/english/cpp/system/staticcastarray/_index.md index 5716602a9c..9201ccdb15 100644 --- a/english/cpp/system/staticcastarray/_index.md +++ b/english/cpp/system/staticcastarray/_index.md @@ -4,7 +4,7 @@ linktitle: StaticCastArray second_title: Aspose.PDF for C++ API Reference description: 'System::StaticCastArray method. Performs casting of elements of the specified array to different type. Override for cases then From is SmartPtr obj in C++.' type: docs -weight: 40900 +weight: 41600 url: /cpp/system/staticcastarray/ --- ## System::StaticCastArray(const System::SharedPtr\\>\&) method diff --git a/english/cpp/system/streamptr/_index.md b/english/cpp/system/streamptr/_index.md index c1f4e5ce6c..4d7df77e9c 100644 --- a/english/cpp/system/streamptr/_index.md +++ b/english/cpp/system/streamptr/_index.md @@ -4,7 +4,7 @@ linktitle: StreamPtr second_title: Aspose.PDF for C++ API Reference description: 'System::StreamPtr typedef. An alias for a smart pointer that points to an instance of System::IO::Stream class in C++.' type: docs -weight: 12600 +weight: 12800 url: /cpp/system/streamptr/ --- ## StreamPtr typedef diff --git a/english/cpp/system/streamreaderptr/_index.md b/english/cpp/system/streamreaderptr/_index.md index 269b234ef2..e42dc72c51 100644 --- a/english/cpp/system/streamreaderptr/_index.md +++ b/english/cpp/system/streamreaderptr/_index.md @@ -4,7 +4,7 @@ linktitle: StreamReaderPtr second_title: Aspose.PDF for C++ API Reference description: 'System::StreamReaderPtr typedef. An alias for a smart pointer that points to an instance of System::IO::StreamReader class in C++.' type: docs -weight: 12700 +weight: 12900 url: /cpp/system/streamreaderptr/ --- ## StreamReaderPtr typedef diff --git a/english/cpp/system/streamwriterptr/_index.md b/english/cpp/system/streamwriterptr/_index.md index 92b28b1c09..a1c0322feb 100644 --- a/english/cpp/system/streamwriterptr/_index.md +++ b/english/cpp/system/streamwriterptr/_index.md @@ -4,7 +4,7 @@ linktitle: StreamWriterPtr second_title: Aspose.PDF for C++ API Reference description: 'System::StreamWriterPtr typedef. An alias for a smart pointer that points to an instance of System::IO::StreamWriter class in C++.' type: docs -weight: 12800 +weight: 13000 url: /cpp/system/streamwriterptr/ --- ## StreamWriterPtr typedef diff --git a/english/cpp/system/stringcomparerptr/_index.md b/english/cpp/system/stringcomparerptr/_index.md index eb4d5fa086..f52f48ddee 100644 --- a/english/cpp/system/stringcomparerptr/_index.md +++ b/english/cpp/system/stringcomparerptr/_index.md @@ -4,7 +4,7 @@ linktitle: StringComparerPtr second_title: Aspose.PDF for C++ API Reference description: 'System::StringComparerPtr typedef. An alias for a shared pointer to an instance of StringComparer class in C++.' type: docs -weight: 12900 +weight: 13100 url: /cpp/system/stringcomparerptr/ --- ## StringComparerPtr typedef diff --git a/english/cpp/system/taskptr/_index.md b/english/cpp/system/taskptr/_index.md new file mode 100644 index 0000000000..d0c0e3aafd --- /dev/null +++ b/english/cpp/system/taskptr/_index.md @@ -0,0 +1,22 @@ +--- +title: System::TaskPtr typedef +linktitle: TaskPtr +second_title: Aspose.PDF for C++ API Reference +description: 'System::TaskPtr typedef. An alias for a smart pointer that points to an instance of System::Threading::Tasks::Task class in C++.' +type: docs +weight: 13200 +url: /cpp/system/taskptr/ +--- +## TaskPtr typedef + + +An alias for a smart pointer that points to an instance of [System::Threading::Tasks::Task](../../system.threading.tasks/task/) class. + +```cpp +typedef System::SmartPtr System::TaskPtr +``` + +## See Also + +* Namespace [System](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system/tietuple/_index.md b/english/cpp/system/tietuple/_index.md index a175ee4c2a..00e4bb6ef0 100644 --- a/english/cpp/system/tietuple/_index.md +++ b/english/cpp/system/tietuple/_index.md @@ -4,7 +4,7 @@ linktitle: TieTuple second_title: Aspose.PDF for C++ API Reference description: 'System::TieTuple method. Creates tuple bound to some values in C++.' type: docs -weight: 41100 +weight: 41800 url: /cpp/system/tietuple/ --- ## System::TieTuple method diff --git a/english/cpp/system/timezoneinfoptr/_index.md b/english/cpp/system/timezoneinfoptr/_index.md index 588097f33e..4ba24031d1 100644 --- a/english/cpp/system/timezoneinfoptr/_index.md +++ b/english/cpp/system/timezoneinfoptr/_index.md @@ -4,7 +4,7 @@ linktitle: TimeZoneInfoPtr second_title: Aspose.PDF for C++ API Reference description: 'System::TimeZoneInfoPtr typedef. Alias for shared pointer to an instance of TimeZoneInfo class in C++.' type: docs -weight: 13000 +weight: 13300 url: /cpp/system/timezoneinfoptr/ --- ## TimeZoneInfoPtr typedef diff --git a/english/cpp/system/timezoneptr/_index.md b/english/cpp/system/timezoneptr/_index.md index 2294d4dce8..8fcf063f0a 100644 --- a/english/cpp/system/timezoneptr/_index.md +++ b/english/cpp/system/timezoneptr/_index.md @@ -4,7 +4,7 @@ linktitle: TimeZonePtr second_title: Aspose.PDF for C++ API Reference description: 'System::TimeZonePtr typedef. Shared pointer to an instance of TimeZone class in C++.' type: docs -weight: 13100 +weight: 13400 url: /cpp/system/timezoneptr/ --- ## TimeZonePtr typedef