From fb1966ce60874809d4201ab03e493d94ca825a00 Mon Sep 17 00:00:00 2001 From: Oleksandr Andriienko Date: Thu, 2 Oct 2025 21:18:18 +0200 Subject: [PATCH 1/7] Aspose.PDF for JavaScript/Node.js via C++: upd AsposePdfGetInfo (tablecount) --- english/javascript-cpp/metadata/asposepdfgetinfo/_index.md | 6 +++++- english/nodejs-cpp/metadata/asposepdfgetinfo/_index.md | 3 +++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/english/javascript-cpp/metadata/asposepdfgetinfo/_index.md b/english/javascript-cpp/metadata/asposepdfgetinfo/_index.md index 2fdb2d8dab..adf50eb836 100644 --- a/english/javascript-cpp/metadata/asposepdfgetinfo/_index.md +++ b/english/javascript-cpp/metadata/asposepdfgetinfo/_index.md @@ -48,6 +48,7 @@ JSON object * **metadatacount** - Metadata count * **javascriptcount** - JavaScript count * **imagecount** - Image count +* **tablecount** - Table count **Web Worker example**: @@ -86,7 +87,8 @@ evt.data.json.errorCode !== 0 "\nAttachment count : " + evt.data.json.attachmentcount + "\nMetadata count : " + evt.data.json.metadatacount + "\nJavaScript count : " + evt.data.json.javascriptcount + - "\nImage count : " + evt.data.json.imagecount; + "\nImage count : " + evt.data.json.imagecount + + "\nTable count : " + evt.data.json.tablecount; /*Event handler*/ const ffilePdfGetInfo = e => { @@ -128,6 +130,7 @@ evt.data.json.errorCode !== 0 Metadata count : json.metadatacount JavaScript count : json.javascriptcount Image count : json.imagecount + Table count : json.tablecount */ if (json.errorCode == 0) document.getElementById('output').textContent = "Title : " + json.title @@ -152,6 +155,7 @@ evt.data.json.errorCode !== 0 + "\nMetadata count : " + json.metadatacount + "\nJavaScript count : " + json.javascriptcount + "\nImage count : " + json.imagecount + + "\nTable count : " + json.tablecount else document.getElementById('output').textContent = json.errorText; }; file_reader.readAsArrayBuffer(e.target.files[0]); diff --git a/english/nodejs-cpp/metadata/asposepdfgetinfo/_index.md b/english/nodejs-cpp/metadata/asposepdfgetinfo/_index.md index c263f4179c..62eaf662d5 100644 --- a/english/nodejs-cpp/metadata/asposepdfgetinfo/_index.md +++ b/english/nodejs-cpp/metadata/asposepdfgetinfo/_index.md @@ -46,6 +46,7 @@ JSON object * **metadatacount** - Metadata count * **javascriptcount** - JavaScript count * **imagecount** - Image count +* **tablecount** - Table count **CommonJS**: @@ -79,6 +80,7 @@ AsposePdf().then(AsposePdfModule => { Metadata count : json.metadatacount JavaScript count : json.javascriptcount Image count : json.imagecount + Table count : json.tablecount */ console.log("AsposePdfGetInfo => %O", json.errorCode == 0 ? 'Title: ' + json.title : json.errorText); }); @@ -115,6 +117,7 @@ const json = AsposePdfModule.AsposePdfGetInfo(pdf_file); Metadata count : json.metadatacount JavaScript count : json.javascriptcount Image count : json.imagecount + Table count : json.tablecount */ console.log("AsposePdfGetInfo => %O", json.errorCode == 0 ? 'Title: ' + json.title : json.errorText); ``` \ No newline at end of file From 542910e2c988d92ad2241bb8028980540d16aebe Mon Sep 17 00:00:00 2001 From: Oleksandr Andriienko Date: Mon, 6 Oct 2025 09:57:26 +0200 Subject: [PATCH 2/7] Aspose.PDF for Go via C++: RemoveTables, PageRemoveTables --- english/go-cpp/_index.md | 2 + english/go-cpp/organize/_index.md | 2 + .../organize/pageremovetables/_index.md | 48 +++++++++++++++++++ .../go-cpp/organize/removetables/_index.md | 47 ++++++++++++++++++ 4 files changed, 99 insertions(+) create mode 100644 english/go-cpp/organize/pageremovetables/_index.md create mode 100644 english/go-cpp/organize/removetables/_index.md diff --git a/english/go-cpp/_index.md b/english/go-cpp/_index.md index a6a0e2aae6..f4ebc97f58 100644 --- a/english/go-cpp/_index.md +++ b/english/go-cpp/_index.md @@ -75,6 +75,7 @@ type Document struct { | [RemoveHiddenText](./organize/removehiddentext/) | Remove hidden text from PDF-document. | | [RemoveImages](./organize/removeimages/) | Remove images from PDF-document. | | [RemoveJavaScripts](./organize/removejavascripts/) | Remove java scripts from PDF-document. | +| [RemoveTables](./organize/removetables/) | Remove tables from PDF-document. | | [PageRotate](./organize/pagerotate/) | Rotate page. | | [PageSetSize](./organize/pagesetsize/) | Set size of page. | | [PageGrayscale](./organize/pagegrayscale/) | Convert page to black and white. | @@ -86,6 +87,7 @@ type Document struct { | [PageRemoveAnnotations](./organize/pageremoveannotations/) | Remove annotations in page. | | [PageRemoveHiddenText](./organize/pageremovehiddentext/) | Remove hidden text in page. | | [PageRemoveImages](./organize/pageremoveimages/) | Remove images in page. | +| [PageRemoveTables](./organize/pageremovetables/) | Remove tables in page. | ## Core PDF functions diff --git a/english/go-cpp/organize/_index.md b/english/go-cpp/organize/_index.md index 2f91539a63..5aac9ee90c 100644 --- a/english/go-cpp/organize/_index.md +++ b/english/go-cpp/organize/_index.md @@ -28,6 +28,7 @@ url: /go-cpp/organize/ | [RemoveHiddenText](./removehiddentext/) | Remove hidden text from PDF-document. | | [RemoveImages](./removeimages/) | Remove images from PDF-document. | | [RemoveJavaScripts](./removejavascripts/) | Remove java scripts from PDF-document. | +| [RemoveTables](./removetables/) | Remove tables from PDF-document. | | [PageRotate](./pagerotate/) | Rotate page. | | [PageSetSize](./pagesetsize/) | Set size of page. | | [PageGrayscale](./pagegrayscale/) | Convert page to black and white. | @@ -39,6 +40,7 @@ url: /go-cpp/organize/ | [PageRemoveAnnotations](./pageremoveannotations/) | Remove annotations in page. | | [PageRemoveHiddenText](./pageremovehiddentext/) | Remove hidden text in page. | | [PageRemoveImages](./pageremoveimages/) | Remove images in page. | +| [PageRemoveTables](./pageremovetables/) | Remove tables in page. | ## Detailed Description diff --git a/english/go-cpp/organize/pageremovetables/_index.md b/english/go-cpp/organize/pageremovetables/_index.md new file mode 100644 index 0000000000..33cc2c18fd --- /dev/null +++ b/english/go-cpp/organize/pageremovetables/_index.md @@ -0,0 +1,48 @@ +--- +title: "PageRemoveTables" +second_title: Aspose.PDF for Go via C++ +description: "Remove tables in page." +type: docs +url: /go-cpp/organize/pageremovetables/ +--- + +_Remove tables in page._ + +```go +func (document *Document) PageRemoveTables(num int32) error +``` + +**Parameters**: + * **num** - page number of the PDF-document + +**Return**: + * **error** - contains an error or nil if absent + + +**Example**: +```go +package main + +import "github.com/aspose-pdf/aspose-pdf-go-cpp" +import "log" + +func main() { + // Open(filename string) opens a PDF-document with filename + pdf, err := asposepdf.Open("sample.pdf") + if err != nil { + log.Fatal(err) + } + // PageRemoveTables(num int32) removes tables in page + err = pdf.PageRemoveTables(1) + if err != nil { + log.Fatal(err) + } + // SaveAs(filename string) saves previously opened PDF-document with new filename + err = pdf.SaveAs("sample_page1_RemoveTables.pdf") + if err != nil { + log.Fatal(err) + } + // Close() releases allocated resources for PDF-document + defer pdf.Close() +} +``` diff --git a/english/go-cpp/organize/removetables/_index.md b/english/go-cpp/organize/removetables/_index.md new file mode 100644 index 0000000000..6b9cec66f5 --- /dev/null +++ b/english/go-cpp/organize/removetables/_index.md @@ -0,0 +1,47 @@ +--- +title: "RemoveTables" +second_title: Aspose.PDF for Go via C++ +description: "Remove tables from PDF-document" +type: docs +url: /go-cpp/organize/removetables/ +--- + +_Remove tables from PDF-document_ + +```go +func (document *Document) RemoveTables() error +``` + +**Parameters**: + +**Return**: + * **error** - contains an error or nil if absent + + +**Example**: +```go +package main + +import "github.com/aspose-pdf/aspose-pdf-go-cpp" +import "log" + +func main() { + // Open(filename string) opens a PDF-document with filename + pdf, err := asposepdf.Open("sample.pdf") + if err != nil { + log.Fatal(err) + } + // RemoveTables() removes tables from PDF-document + err = pdf.RemoveTables() + if err != nil { + log.Fatal(err) + } + // SaveAs(filename string) saves previously opened PDF-document with new filename + err = pdf.SaveAs("sample_RemoveTables.pdf") + if err != nil { + log.Fatal(err) + } + // Close() releases allocated resources for PDF-document + defer pdf.Close() +} +``` From 82f8f0591983aaf0c2b1b454b17db31a6986cc2e Mon Sep 17 00:00:00 2001 From: Oleksandr Andriienko Date: Thu, 9 Oct 2025 11:18:55 +0200 Subject: [PATCH 3/7] Aspose.PDF for Rust via C++: word_count, character_count, page_word_count, page_character_count, page_is_blank, remove_tables, page_remove_tables --- english/rust-cpp/_index.md | 7 +++ english/rust-cpp/core/_index.md | 5 +++ .../rust-cpp/core/character_count/_index.md | 40 +++++++++++++++++ .../core/page_character_count/_index.md | 44 +++++++++++++++++++ english/rust-cpp/core/page_is_blank/_index.md | 44 +++++++++++++++++++ .../rust-cpp/core/page_word_count/_index.md | 44 +++++++++++++++++++ english/rust-cpp/core/word_count/_index.md | 40 +++++++++++++++++ english/rust-cpp/organize/_index.md | 2 + .../organize/page_remove_tables/_index.md | 40 +++++++++++++++++ .../rust-cpp/organize/remove_tables/_index.md | 40 +++++++++++++++++ 10 files changed, 306 insertions(+) create mode 100644 english/rust-cpp/core/character_count/_index.md create mode 100644 english/rust-cpp/core/page_character_count/_index.md create mode 100644 english/rust-cpp/core/page_is_blank/_index.md create mode 100644 english/rust-cpp/core/page_word_count/_index.md create mode 100644 english/rust-cpp/core/word_count/_index.md create mode 100644 english/rust-cpp/organize/page_remove_tables/_index.md create mode 100644 english/rust-cpp/organize/remove_tables/_index.md diff --git a/english/rust-cpp/_index.md b/english/rust-cpp/_index.md index 1b2c29a861..ecea2ee0b4 100644 --- a/english/rust-cpp/_index.md +++ b/english/rust-cpp/_index.md @@ -74,6 +74,7 @@ pub struct Document { /* private fields */ } | [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 | +| [remove_tables](./organize/remove_tables/) | Remove tables from a 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. | @@ -85,6 +86,7 @@ pub struct Document { /* private fields */ } | [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. | +| [page_remove_tables](./organize/page_remove_tables/) | Remove tables in page. | ## Core PDF functions @@ -97,10 +99,15 @@ pub struct Document { /* private fields */ } | [save_as](./core/save_as/) | Save the previously opened PDF-document with new filename. | | [set_license](./core/set_license/) | Set license with filename. | | [extract_text](./core/extract_text/) | Return the PDF-document contents as plain text. | +| [word_count](./core/word_count/) | Return word count in PDF-document. | +| [character_count](./core/character_count/) | Return character count in PDF-document. | | [page_add](./core/page_add/) | Add new page in PDF-document. | | [page_insert](./core/page_insert/) | Insert new page at the specified position in PDF-document. | | [page_delete](./core/page_delete/) | Delete specified page in PDF-document. | | [page_count](./core/page_count/) | Return the number of pages in the PDF-document. | +| [page_word_count](./core/page_word_count/) | Return word count on specified page in PDF-document. | +| [page_character_count](./core/page_character_count/) | Return character count on specified page in PDF-document. | +| [page_is_blank](./core/page_is_blank/) | Return page is blank in PDF-document. | ## Miscellaneous diff --git a/english/rust-cpp/core/_index.md b/english/rust-cpp/core/_index.md index b58e51232e..3719e33783 100644 --- a/english/rust-cpp/core/_index.md +++ b/english/rust-cpp/core/_index.md @@ -16,10 +16,15 @@ url: /rust-cpp/core/ | [save_as](./save_as/) | Save the previously opened PDF-document with new filename. | | [set_license](./set_license/) | Set license with filename. | | [extract_text](./extract_text/) | Return the PDF-document contents as plain text. | +| [word_count](./word_count/) | Return word count in PDF-document. | +| [character_count](./character_count/) | Return character count in PDF-document. | | [page_add](./page_add/) | Add new page in PDF-document. | | [page_insert](./page_insert/) | Insert new page at the specified position in PDF-document. | | [page_delete](./page_delete/) | Delete specified page in PDF-document. | | [page_count](./page_count/) | Return the number of pages in the PDF-document. | +| [page_word_count](./page_word_count/) | Return word count on specified page in PDF-document. | +| [page_character_count](./page_character_count/) | Return character count on specified page in PDF-document. | +| [page_is_blank](./page_is_blank/) | Return page is blank in PDF-document. | ## Detailed Description diff --git a/english/rust-cpp/core/character_count/_index.md b/english/rust-cpp/core/character_count/_index.md new file mode 100644 index 0000000000..32cb541393 --- /dev/null +++ b/english/rust-cpp/core/character_count/_index.md @@ -0,0 +1,40 @@ +--- +title: "character_count" +second_title: Aspose.PDF for Rust via C++ +description: "Returns character count in PDF-document." +type: docs +url: /rust-cpp/core/character_count/ +--- + +_Returns character count in PDF-document._ + +```rust +pub fn character_count(&self) -> Result +``` + +**Arguments** + + +**Returns** + * **Ok(i32)** - 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")?; + + // Return character count in PDF-document + let count = pdf.character_count()?; + + // Print the character count + println!("Character count: {}", count); + + Ok(()) +} + +``` \ No newline at end of file diff --git a/english/rust-cpp/core/page_character_count/_index.md b/english/rust-cpp/core/page_character_count/_index.md new file mode 100644 index 0000000000..e3194ad59d --- /dev/null +++ b/english/rust-cpp/core/page_character_count/_index.md @@ -0,0 +1,44 @@ +--- +title: "page_character_count" +second_title: Aspose.PDF for Rust via C++ +description: "Returns character count on specified page in PDF-document." +type: docs +url: /rust-cpp/core/page_character_count/ +--- + +_Returns character count on specified page in PDF-document._ + +```rust +pub fn page_character_count(&self) -> Result +``` + +**Arguments** + * **num** - the page number (1-based) + + +**Returns** + * **Ok(i32)** - 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")?; + + // Specify the page number (1-based index) + let page_number = 1; + + // Return character count on the specified page + let count = pdf.page_character_count(page_number)?; + + // Print the character count + println!("Character count on page {}: {}", page_number, count); + + Ok(()) +} + +``` \ No newline at end of file diff --git a/english/rust-cpp/core/page_is_blank/_index.md b/english/rust-cpp/core/page_is_blank/_index.md new file mode 100644 index 0000000000..b9f8421f1b --- /dev/null +++ b/english/rust-cpp/core/page_is_blank/_index.md @@ -0,0 +1,44 @@ +--- +title: "page_is_blank" +second_title: Aspose.PDF for Rust via C++ +description: "Returns page is blank in PDF-document." +type: docs +url: /rust-cpp/core/page_is_blank/ +--- + +_Returns page is blank in PDF-document._ + +```rust +pub fn page_is_blank(&self) -> Result +``` + +**Arguments** + * **num** - the page number (1-based) + + +**Returns** + * **Ok(bool)** - 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")?; + + // Specify the page number (1-based index) + let page_number = 1; + + // Return page is blank in PDF-document + let is_blank = pdf.page_is_blank(page_number)?; + + // Print if the specified page is blank + println!("Is page {} blank? {}", page_number, is_blank); + + Ok(()) +} + +``` \ No newline at end of file diff --git a/english/rust-cpp/core/page_word_count/_index.md b/english/rust-cpp/core/page_word_count/_index.md new file mode 100644 index 0000000000..a9d323a087 --- /dev/null +++ b/english/rust-cpp/core/page_word_count/_index.md @@ -0,0 +1,44 @@ +--- +title: "page_word_count" +second_title: Aspose.PDF for Rust via C++ +description: "Returns word count on specified page in PDF-document." +type: docs +url: /rust-cpp/core/page_word_count/ +--- + +_Returns word count on specified page in PDF-document._ + +```rust +pub fn page_word_count(&self) -> Result +``` + +**Arguments** + * **num** - the page number (1-based) + + +**Returns** + * **Ok(i32)** - 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")?; + + // Specify the page number (1-based index) + let page_number = 1; + + // Return word count on the specified page + let count = pdf.page_word_count(page_number)?; + + // Print the word count + println!("Word count on page {}: {}", page_number, count); + + Ok(()) +} + +``` \ No newline at end of file diff --git a/english/rust-cpp/core/word_count/_index.md b/english/rust-cpp/core/word_count/_index.md new file mode 100644 index 0000000000..73eb917637 --- /dev/null +++ b/english/rust-cpp/core/word_count/_index.md @@ -0,0 +1,40 @@ +--- +title: "word_count" +second_title: Aspose.PDF for Rust via C++ +description: "Returns word count in PDF-document." +type: docs +url: /rust-cpp/core/word_count/ +--- + +_Returns word count in PDF-document._ + +```rust +pub fn word_count(&self) -> Result +``` + +**Arguments** + + +**Returns** + * **Ok(i32)** - 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")?; + + // Return word count in PDF-document + let count = pdf.word_count()?; + + // Print the word count + println!("Word count: {}", count); + + Ok(()) +} + +``` \ No newline at end of file diff --git a/english/rust-cpp/organize/_index.md b/english/rust-cpp/organize/_index.md index dc41cce434..997a146be3 100644 --- a/english/rust-cpp/organize/_index.md +++ b/english/rust-cpp/organize/_index.md @@ -28,6 +28,7 @@ url: /rust-cpp/organize/ | [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 | +| [remove_tables](./remove_tables/) | Remove tables from a 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. | @@ -39,6 +40,7 @@ url: /rust-cpp/organize/ | [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. | +| [page_remove_tables](./page_remove_tables/) | Remove tables in page. | ## Detailed Description diff --git a/english/rust-cpp/organize/page_remove_tables/_index.md b/english/rust-cpp/organize/page_remove_tables/_index.md new file mode 100644 index 0000000000..dd0015a8dd --- /dev/null +++ b/english/rust-cpp/organize/page_remove_tables/_index.md @@ -0,0 +1,40 @@ +--- +title: "page_remove_tables" +second_title: Aspose.PDF for Rust via C++ +description: "Removes tables in page." +type: docs +url: /rust-cpp/organize/page_remove_tables/ +--- + +_Removes tables in page._ + +```rust +pub fn page_remove_tables(&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 tables in page + pdf.page_remove_tables(1)?; + + // Save the previously opened PDF-document with new filename + pdf.save_as("sample_page1_remove_tables.pdf")?; + + Ok(()) +} + +``` \ No newline at end of file diff --git a/english/rust-cpp/organize/remove_tables/_index.md b/english/rust-cpp/organize/remove_tables/_index.md new file mode 100644 index 0000000000..9258fd2662 --- /dev/null +++ b/english/rust-cpp/organize/remove_tables/_index.md @@ -0,0 +1,40 @@ +--- +title: "remove_tables" +second_title: Aspose.PDF for Rust via C++ +description: "Removes tables from PDF-document." +type: docs +url: /rust-cpp/organize/remove_tables/ +--- + +_Removes tables from PDF-document._ + +```rust +pub fn remove_tables(&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 tables from PDF-document + pdf.remove_tables()?; + + // Save the previously opened PDF-document with new filename + pdf.save_as("sample_remove_tables.pdf")?; + + Ok(()) +} + +``` \ No newline at end of file From c0de1cbe9b680ffdd4c3e7c41cd9c64921f2d812 Mon Sep 17 00:00:00 2001 From: Oleksandr Andriienko Date: Thu, 9 Oct 2025 20:13:55 +0200 Subject: [PATCH 4/7] Aspose.PDF for Rust via C++: bytes --- english/rust-cpp/_index.md | 1 + english/rust-cpp/core/_index.md | 1 + english/rust-cpp/core/bytes/_index.md | 40 +++++++++++++++++++++++++++ 3 files changed, 42 insertions(+) create mode 100644 english/rust-cpp/core/bytes/_index.md diff --git a/english/rust-cpp/_index.md b/english/rust-cpp/_index.md index ecea2ee0b4..6667b67d52 100644 --- a/english/rust-cpp/_index.md +++ b/english/rust-cpp/_index.md @@ -101,6 +101,7 @@ pub struct Document { /* private fields */ } | [extract_text](./core/extract_text/) | Return the PDF-document contents as plain text. | | [word_count](./core/word_count/) | Return word count in PDF-document. | | [character_count](./core/character_count/) | Return character count in PDF-document. | +| [bytes](./core/bytes/) | Return the contents of the PDF-document as a byte vector. | | [page_add](./core/page_add/) | Add new page in PDF-document. | | [page_insert](./core/page_insert/) | Insert new page at the specified position in PDF-document. | | [page_delete](./core/page_delete/) | Delete specified page in PDF-document. | diff --git a/english/rust-cpp/core/_index.md b/english/rust-cpp/core/_index.md index 3719e33783..a2e5d0b095 100644 --- a/english/rust-cpp/core/_index.md +++ b/english/rust-cpp/core/_index.md @@ -18,6 +18,7 @@ url: /rust-cpp/core/ | [extract_text](./extract_text/) | Return the PDF-document contents as plain text. | | [word_count](./word_count/) | Return word count in PDF-document. | | [character_count](./character_count/) | Return character count in PDF-document. | +| [bytes](./bytes/) | Return the contents of the PDF-document as a byte vector. | | [page_add](./page_add/) | Add new page in PDF-document. | | [page_insert](./page_insert/) | Insert new page at the specified position in PDF-document. | | [page_delete](./page_delete/) | Delete specified page in PDF-document. | diff --git a/english/rust-cpp/core/bytes/_index.md b/english/rust-cpp/core/bytes/_index.md new file mode 100644 index 0000000000..ae56b4af24 --- /dev/null +++ b/english/rust-cpp/core/bytes/_index.md @@ -0,0 +1,40 @@ +--- +title: "bytes" +second_title: Aspose.PDF for Rust via C++ +description: "Returns the contents of the PDF-document as a byte vector." +type: docs +url: /rust-cpp/core/bytes/ +--- + +_Returns the contents of the PDF-document as a byte vector._ + +```rust +pub fn bytes(&self) -> Result, PdfError> +``` + +**Arguments** + + +**Returns** + * **Ok(Vec\)** - if the operation succeeds + * **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 the contents of the PDF-document as a byte vector + let data = pdf.bytes()?; + + // Print length of the byte vector + println!("Length: {}", data.len()); + + Ok(()) +} + +``` \ No newline at end of file From d81dd20f5a13b63a2643879b641268309d77db12 Mon Sep 17 00:00:00 2001 From: Oleksandr Andriienko Date: Sun, 12 Oct 2025 13:14:30 +0200 Subject: [PATCH 5/7] Aspose.PDF for Go via C++: Split, SplitAt --- english/go-cpp/_index.md | 2 + english/go-cpp/core/_index.md | 2 + english/go-cpp/core/split/_index.md | 59 ++++++++++++++++++++++++++ english/go-cpp/core/splitat/_index.md | 61 +++++++++++++++++++++++++++ 4 files changed, 124 insertions(+) create mode 100644 english/go-cpp/core/split/_index.md create mode 100644 english/go-cpp/core/splitat/_index.md diff --git a/english/go-cpp/_index.md b/english/go-cpp/_index.md index f4ebc97f58..302bbca55c 100644 --- a/english/go-cpp/_index.md +++ b/english/go-cpp/_index.md @@ -107,7 +107,9 @@ type Document struct { | [AppendPages](./core/appendpages/) | Append selected pages from another PDF-document. | | [MergeDocuments](./core/mergedocuments/) | Create a new PDF-document by merging the provided PDF-documents. | | [SplitDocument](./core/splitdocument/) | Create multiple new PDF-documents by extracting pages from the source PDF-document. | +| [Split](./core/split/) | Create multiple new PDF-documents by extracting pages from the current PDF-document. | | [SplitAtPage](./core/splitatpage/) | Split the PDF-document into two new PDF-documents. | +| [SplitAt](./core/splitat/) | Split the current PDF-document into two new PDF-documents. | | [Bytes](./core/bytes/) | Return the contents of the PDF-document as a byte slice. | | [PageAdd](./core/pageadd/) | Add new page in PDF-document. | | [PageInsert](./core/pageinsert/) | Insert new page at the specified position in PDF-document. | diff --git a/english/go-cpp/core/_index.md b/english/go-cpp/core/_index.md index 4a00792486..b9832e55eb 100644 --- a/english/go-cpp/core/_index.md +++ b/english/go-cpp/core/_index.md @@ -23,7 +23,9 @@ url: /go-cpp/core/ | [AppendPages](./appendpages/) | Append selected pages from another PDF-document. | | [MergeDocuments](./mergedocuments/) | Create a new PDF-document by merging the provided PDF-documents. | | [SplitDocument](./splitdocument/) | Create multiple new PDF-documents by extracting pages from the source PDF-document. | +| [Split](./split/) | Create multiple new PDF-documents by extracting pages from the current PDF-document. | | [SplitAtPage](./splitatpage/) | Split the PDF-document into two new PDF-documents. | +| [SplitAt](./splitat/) | Split the current PDF-document into two new PDF-documents. | | [Bytes](./bytes/) | Return the contents of the PDF-document as a byte slice. | | [PageAdd](./pageadd/) | Add new page in PDF-document. | | [PageInsert](./pageinsert/) | Insert new page at the specified position in PDF-document. | diff --git a/english/go-cpp/core/split/_index.md b/english/go-cpp/core/split/_index.md new file mode 100644 index 0000000000..e37920fb1d --- /dev/null +++ b/english/go-cpp/core/split/_index.md @@ -0,0 +1,59 @@ +--- +title: "Split" +second_title: Aspose.PDF for Go via C++ +description: "Create multiple new PDF-documents by extracting pages from the current PDF-document." +type: docs +url: /go-cpp/core/split/ +--- + +_Create multiple new PDF-documents by extracting pages from the current PDF-document._ + +```go +func (document *Document) Split(pagerange string) ([]*Document, error) +``` + +**Parameters**: + * **pagerange** - string that defines how to split the PDF-document. Each segment, separated by `;`, specifies the page range for a separate output PDF document. The page range syntax supports individual pages, ranges, and open-ended intervals. For example: "1,3,5;7-10", "-3;4-", or "1;2-3;5-" + +**Return**: + * **[]\*Document** - slice of new PDF-documents, each containing the pages defined by a corresponding segment of the specified page range + * **error** - contains an error or nil if absent + + +**Example**: +```go +package main + +import ( + "fmt" + "github.com/aspose-pdf/aspose-pdf-go-cpp" + "log" +) + +func main() { + // Open(filename string) opens a PDF-document with filename + pdf_split, err := asposepdf.Open("sample.pdf") + if err != nil { + log.Fatal(err) + } + // Close() releases allocated resources for PDF-document + defer pdf_split.Close() + + // Split(pagerange string) creates multiple new PDF-documents by extracting pages from the current PDF-document + pdfs, err := pdf_split.Split("1-2;3;4-") + if err != nil { + log.Fatal(err) + } + + // Save each split PDF-document as a separate file + for i, pdf := range pdfs { + defer pdf.Close() + filename := fmt.Sprintf("sample_Split_part%d.pdf", i+1) + // SaveAs(filename string) saves previously opened PDF-document with new filename + err := pdf.SaveAs(filename) + if err != nil { + log.Fatal(err) + } + } +} +``` diff --git a/english/go-cpp/core/splitat/_index.md b/english/go-cpp/core/splitat/_index.md new file mode 100644 index 0000000000..ee8e861c22 --- /dev/null +++ b/english/go-cpp/core/splitat/_index.md @@ -0,0 +1,61 @@ +--- +title: "SplitAt" +second_title: Aspose.PDF for Go via C++ +description: "Split the current PDF-document into two new PDF-documents." +type: docs +url: /go-cpp/core/splitat/ +--- + +_Split the current PDF-document into two new PDF-documents._ + +```go +func (document *Document) SplitAt(page int) (*Document, *Document, error) +``` + +**Parameters**: + * **page** - page number at which to split the PDF-document. Pages up to and including this page go into the first PDF-document + +**Return**: + * **\*Document** - new PDF-document containing pages 1 to page (inclusive) + * **\*Document** - new PDF-document containing pages from page + 1 to the end + * **error** - contains an error or nil if absent + + +**Example**: +```go +package main + +import ( + "github.com/aspose-pdf/aspose-pdf-go-cpp" + "log" +) + +func main() { + // Open(filename string) opens a PDF-document with filename + pdf_split, err := asposepdf.Open("sample.pdf") + if err != nil { + log.Fatal(err) + } + // Close() releases allocated resources for PDF-document + defer pdf_split.Close() + + // SplitAt(page int) splits the current PDF-document into two new PDF-documents. + left, right, err := pdf_split.SplitAt(2) + if err != nil { + log.Fatal(err) + } + // Close() releases allocated resources for resulting PDF-documents + defer left.Close() + defer right.Close() + + // Save each part as a separate file + err = left.SaveAs("sample_SplitAt_left.pdf") + if err != nil { + log.Fatal(err) + } + err = right.SaveAs("sample_SplitAt_right.pdf") + if err != nil { + log.Fatal(err) + } +} +``` From 55d2b2b1f7432852ab3b3f291d5d88f0268799e3 Mon Sep 17 00:00:00 2001 From: Alexander Malokhovetskiy Date: Wed, 15 Oct 2025 16:01:01 +0300 Subject: [PATCH 6/7] Aspose.PDF for C++ 25.10 --- english/cpp/aspose.pdf.annotations/_index.md | 8 +- .../colorbarannotation/_index.md | 2 +- .../lightingschemetype/_index.md | 2 +- .../pdf3dactivation/_index.md | 2 +- .../rendermodetype/_index.md | 2 +- english/cpp/aspose.pdf.facades/_index.md | 2 +- .../autorotatemode/_index.md | 6 +- .../formattedtext/formattedtext/_index.md | 2 +- .../aspose.pdf.facades/pdffileinfo/_index.md | 2 +- .../pdffileinfo/get_haseditpassword/_index.md | 2 +- .../aspose.pdf.facades/pdffilemend/_index.md | 4 +- .../pdffilemend/get_wrapmode/_index.md | 2 +- .../pdffilemend/set_wrapmode/_index.md | 2 +- .../pdffilesecurity/_index.md | 6 +- .../pdffilesecurity/changepassword/_index.md | 2 +- .../pdffilesecurity/mfencryptfile/_index.md | 2 +- .../trychangepassword/_index.md | 2 +- .../aspose.pdf.facades/pdffilestamp/_index.md | 4 +- .../get_pagenumberrotation/_index.md | 2 +- .../set_pagenumberrotation/_index.md | 2 +- .../pdfxmpmetadata/_index.md | 2 + .../pdfxmpmetadata/get_keys/_index.md | 26 ++++++ .../pdfxmpmetadata/get_values/_index.md | 26 ++++++ .../pdfxmpmetadata/getenumerator/_index.md | 2 +- .../getnamespaceuribyprefix/_index.md | 2 +- .../getprefixbynamespaceuri/_index.md | 2 +- .../pdfxmpmetadata/getxmpmetadata/_index.md | 2 +- .../pdfxmpmetadata/idx_get/_index.md | 2 +- .../pdfxmpmetadata/idx_set/_index.md | 2 +- .../registernamespaceuri/_index.md | 2 +- .../pdfxmpmetadata/remove/_index.md | 2 +- .../pdfxmpmetadata/trygetvalue/_index.md | 2 +- .../replacetextstrategy/_index.md | 6 +- .../get_replacescope/_index.md | 2 +- .../replacetextstrategy/scope/_index.md | 2 +- .../set_replacescope/_index.md | 2 +- .../cpp/aspose.pdf.facades/stamp/_index.md | 4 +- .../stamp/get_blendingspace/_index.md | 2 +- .../stamp/set_blendingspace/_index.md | 2 +- english/cpp/aspose.pdf.forms/_index.md | 2 +- .../checkboxfield/checkboxfield/_index.md | 2 +- .../cpp/aspose.pdf.forms/iconfit/_index.md | 4 +- .../iconfit/nametoscalingmode/_index.md | 2 +- .../iconfit/nametoscalingreason/_index.md | 2 +- .../cpp/aspose.pdf.forms/symbology/_index.md | 2 +- .../textboxfield/textboxfield/_index.md | 2 +- .../validationoptions/_index.md | 4 +- .../get_validationmode/_index.md | 2 +- .../set_validationmode/_index.md | 2 +- english/cpp/aspose.pdf.text/_index.md | 2 +- .../coordinateorigin/_index.md | 4 +- .../wordwrapmode/_index.md | 2 +- .../textfragmentstate/_index.md | 4 +- .../get_coordinateorigin/_index.md | 2 +- .../set_coordinateorigin/_index.md | 2 +- .../textreplaceoptions/_index.md | 2 +- .../textreplaceoptions/scope/_index.md | 2 +- .../textreplaceoptions/_index.md | 4 +- .../cpp/aspose.pdf.text/textstate/_index.md | 4 +- .../textstate/get_coordinateorigin/_index.md | 2 +- .../textstate/set_coordinateorigin/_index.md | 2 +- english/cpp/aspose.pdf/_index.md | 4 +- .../cpp/aspose.pdf/apsloadoptions/_index.md | 3 + .../apsloadoptions/apsloadoptions/_index.md | 2 +- .../apsloadoptions/gettype/_index.md | 29 +++++++ .../aspose.pdf/apsloadoptions/is/_index.md | 33 +++++++ .../aspose.pdf/apsloadoptions/type/_index.md | 24 +++++ .../aspose.pdf/boundscheckablelist/_index.md | 2 +- .../boundscheckablelist/add/_index.md | 2 +- .../boundscheckablelist/begin/_index.md | 4 +- .../boundscheckablelist/_index.md | 4 +- .../boundscheckablelist/cbegin/_index.md | 2 +- .../boundscheckablelist/cend/_index.md | 2 +- .../boundscheckablelist/clear/_index.md | 2 +- .../const_iterator/_index.md | 2 +- .../boundscheckablelist/contains/_index.md | 2 +- .../boundscheckablelist/copyto/_index.md | 2 +- .../boundscheckablelist/end/_index.md | 4 +- .../boundscheckablelist/get_count/_index.md | 2 +- .../get_isreadonly/_index.md | 2 +- .../getenumerator/_index.md | 2 +- .../boundscheckablelist/idx_get/_index.md | 2 +- .../boundscheckablelist/idx_set/_index.md | 2 +- .../boundscheckablelist/indexof/_index.md | 2 +- .../boundscheckablelist/insert/_index.md | 2 +- .../boundscheckablelist/iterator/_index.md | 2 +- .../iterator_holder_type/_index.md | 2 +- .../boundscheckablelist/remove/_index.md | 2 +- .../boundscheckablelist/removeat/_index.md | 2 +- .../settemplateweakptr/_index.md | 2 +- .../updateboundscheckmode/_index.md | 4 +- .../virtualizebeginconstiterator/_index.md | 2 +- .../virtualizebeginiterator/_index.md | 2 +- .../virtualized_iterator/_index.md | 2 +- .../virtualized_iterator_element/_index.md | 2 +- .../virtualizeendconstiterator/_index.md | 2 +- .../virtualizeenditerator/_index.md | 2 +- .../collectionfieldsubtypeconverter/_index.md | 10 +-- .../convert/_index.md | 14 +-- .../converttofieldtype/_index.md | 6 +- english/cpp/aspose.pdf/document/_index.md | 6 +- .../cpp/aspose.pdf/document/convert/_index.md | 12 +-- .../document/get_cryptoalgorithm/_index.md | 2 +- english/cpp/aspose.pdf/fixup/_index.md | 2 +- .../aspose.pdf/htmlpagelayoutoption/_index.md | 2 +- english/cpp/aspose.pdf/loadoptions/_index.md | 4 +- .../loadoptions/get_warninghandler/_index.md | 2 +- .../loadoptions/set_warninghandler/_index.md | 2 +- .../aspose.pdf/matrix3d/getangle/_index.md | 2 +- .../aspose.pdf/page/inttorotation/_index.md | 2 +- .../aspose.pdf/page/rotationtoint/_index.md | 2 +- .../cpp/aspose.pdf/rectangle/rotate/_index.md | 2 +- english/cpp/aspose.pdf/saveoptions/_index.md | 4 +- .../saveoptions/get_warninghandler/_index.md | 2 +- .../saveoptions/set_warninghandler/_index.md | 2 +- .../cpp/aspose.pdf/texsaveoptions/_index.md | 4 +- .../get_outdirectorypath/_index.md | 2 +- .../set_outdirectorypath/_index.md | 2 +- english/cpp/aspose.pdf/ximage/_index.md | 2 +- .../aspose.pdf/ximage/get_imagemask/_index.md | 2 +- .../cpp/system.collections.generic/_index.md | 4 +- .../_keycollection/tkey/_index.md | 2 +- .../_keylist/tkey/_index.md | 2 +- .../_valuecollection/tvalue/_index.md | 2 +- .../_valuelist/tvalue/_index.md | 2 +- .../basedictionary/basetype/_index.md | 2 +- .../basedictionary/const_iterator/_index.md | 2 +- .../basedictionary/getenumerator/_index.md | 2 +- .../basedictionary/iterator/_index.md | 2 +- .../basedictionary/keycollection/_index.md | 2 +- .../basedictionary/kvpair/_index.md | 2 +- .../basedictionary/map_t/_index.md | 2 +- .../basedictionary/valuecollection/_index.md | 2 +- .../baseenumerator/_index.md | 2 +- .../dictionary/ienumerableptr/_index.md | 2 +- .../dictionary/ienumeratorptr/_index.md | 2 +- .../dictionary/keycollection/_index.md | 2 +- .../dictionary/kvpair/_index.md | 2 +- .../dictionary/map_t/_index.md | 2 +- .../dictionary/ptr/_index.md | 2 +- .../dictionary/valuecollection/_index.md | 2 +- .../dictionaryptr/_index.md | 2 +- .../hashsetptr/_index.md | 2 +- .../icollection/thistype/_index.md | 2 +- .../icollection/valuetype/_index.md | 2 +- .../icomparer/args_type/_index.md | 2 +- .../idictionary/_index.md | 1 + .../idictionary/basetype/_index.md | 4 +- .../idictionary/get_count/_index.md | 23 +++++ .../idictionary/get_isfixedsize/_index.md | 2 +- .../idictionary/get_issynchronized/_index.md | 2 +- .../idictionary/get_keys/_index.md | 2 +- .../idictionary/get_values/_index.md | 2 +- .../idictionary/getvalueordefault/_index.md | 2 +- .../idictionary/getvalueornull/_index.md | 2 +- .../idictionary/idx_get/_index.md | 2 +- .../idictionary/idx_set/_index.md | 2 +- .../idictionary/keyvaluepairtype/_index.md | 4 +- .../idictionary/remove/_index.md | 2 +- .../idictionary/trygetvalue/_index.md | 2 +- .../ienumerable/_index.md | 2 +- .../ienumerable/ienumeratortype/_index.md | 4 +- .../ienumerable/linq_tolist/_index.md | 2 +- .../ienumerator/valuetype/_index.md | 2 +- .../ilist/basetype/_index.md | 2 +- .../ilist/thistype/_index.md | 2 +- .../ilist/valuetype/_index.md | 2 +- .../iset/ienumerableptr/_index.md | 2 +- .../keyvaluepair/_index.md | 2 +- .../keyvaluepair/operator_/_index.md | 2 +- .../linkedlist/const_iterator/_index.md | 2 +- .../const_reverse_iterator/_index.md | 2 +- .../linkedlist/iterator/_index.md | 2 +- .../linkedlist/list_t/_index.md | 2 +- .../linkedlist/reverse_iterator/_index.md | 2 +- .../system.collections.generic/list/_index.md | 2 +- .../list/addinitializer/_index.md | 4 +- .../list/basetype/_index.md | 2 +- .../list/const_iterator/_index.md | 2 +- .../list/const_reverse_iterator/_index.md | 2 +- .../list/convertall/_index.md | 2 +- .../list/exists/_index.md | 2 +- .../list/find/_index.md | 2 +- .../list/findall/_index.md | 2 +- .../list/findindex/_index.md | 6 +- .../list/findlast/_index.md | 2 +- .../list/foreach/_index.md | 2 +- .../list/ienumerableptr/_index.md | 2 +- .../list/ienumeratorptr/_index.md | 2 +- .../list/iterator/_index.md | 2 +- .../list/removeall/_index.md | 2 +- .../list/reverse_iterator/_index.md | 2 +- .../list/trueforall/_index.md | 2 +- .../list/valuetype/_index.md | 2 +- .../list/vector_t/_index.md | 2 +- .../listext/basetype/_index.md | 2 +- .../listext/basetypes/_index.md | 2 +- .../listext/listtype/_index.md | 2 +- .../listext/thistype/_index.md | 2 +- .../listext/valuetype/_index.md | 2 +- .../listptr/_index.md | 2 +- .../queue/ienumerableptr/_index.md | 2 +- .../queue/ienumeratorptr/_index.md | 2 +- .../queue/queue_t/_index.md | 2 +- .../queue/valuetype/_index.md | 2 +- .../queueptr/_index.md | 2 +- .../reverseenumerator/_index.md | 2 +- .../sorteddictionary/_index.md | 2 +- .../sorteddictionary/const_iterator/_index.md | 2 +- .../const_reverse_iterator/_index.md | 2 +- .../enumerator/enumeratortype/_index.md | 2 +- .../sorteddictionary/get_comparer/_index.md | 2 +- .../sorteddictionary/ienumerableptr/_index.md | 2 +- .../sorteddictionary/ienumeratorptr/_index.md | 2 +- .../sorteddictionary/iterator/_index.md | 2 +- .../sorteddictionary/keycollection/_index.md | 2 +- .../sorteddictionary/kvpair/_index.md | 2 +- .../sorteddictionary/map_t/_index.md | 2 +- .../sorteddictionary/ptr/_index.md | 2 +- .../reverse_iterator/_index.md | 2 +- .../sorteddictionary/this_t/_index.md | 2 +- .../valuecollection/_index.md | 2 +- .../sorteddictionaryptr/_index.md | 2 +- .../sortedlist/_index.md | 4 +- .../sortedlist/const_iterator/_index.md | 2 +- .../const_reverse_iterator/_index.md | 2 +- .../enumerator/enumeratortype/_index.md | 2 +- .../sortedlist/get_keys/_index.md | 9 +- .../sortedlist/get_values/_index.md | 9 +- .../sortedlist/ienumerableptr/_index.md | 2 +- .../sortedlist/ienumeratorptr/_index.md | 2 +- .../sortedlist/iterator/_index.md | 2 +- .../sortedlist/keycollection/_index.md | 2 +- .../sortedlist/kvpair/_index.md | 2 +- .../sortedlist/map_t/_index.md | 2 +- .../sortedlist/ptr/_index.md | 2 +- .../sortedlist/reverse_iterator/_index.md | 2 +- .../sortedlist/this_t/_index.md | 2 +- .../sortedlist/valuecollection/_index.md | 2 +- .../sortedsetptr/_index.md | 2 +- .../stack/ienumerableptr/_index.md | 2 +- .../stack/ienumeratorptr/_index.md | 2 +- .../stack/stack_t/_index.md | 2 +- .../stack/valuetype/_index.md | 2 +- .../stackptr/_index.md | 2 +- .../const_reverse_iterator/_index.md | 2 +- .../collection/reverse_iterator/_index.md | 2 +- .../defaultthreshold/_index.md | 4 - .../readonlycollection/basetype/_index.md | 2 +- .../ienumeratorptr/_index.md | 2 +- .../readonlycollection/valuetype/_index.md | 2 +- .../stringcollection/const_iterator/_index.md | 2 +- .../const_reverse_iterator/_index.md | 2 +- .../stringcollection/iterator/_index.md | 2 +- .../reverse_iterator/_index.md | 2 +- .../stringcollectionptr/_index.md | 2 +- .../bitarray/bitset/_index.md | 2 +- .../system.collections/bitarrayptr/_index.md | 2 +- .../dbdatareader/ptr/_index.md | 2 +- .../customlinecap/_index.md | 4 +- .../customlinecap/get_strokejoin/_index.md | 2 +- .../customlinecap/set_strokejoin/_index.md | 2 +- .../graphicspath/addstring/_index.md | 8 +- .../pagesettings/ptr/_index.md | 2 +- .../printersettings/ptr/_index.md | 2 +- .../printpageeventargs/ptr/_index.md | 2 +- .../querypagesettingseventargs/ptr/_index.md | 2 +- english/cpp/system.drawing/color/_index.md | 2 +- .../color/get_isnamedcolor/_index.md | 2 +- .../system.drawing/fontconverter/_index.md | 5 ++ .../fontconverter/convertfrom/_index.md | 84 +++++++++++++++++- .../fontconverter/convertto/_index.md | 59 ++++++++++++- .../system.drawing/imageconverter/_index.md | 1 + .../imageconverter/convertto/_index.md | 29 ++++++- .../imageformatconverter/_index.md | 5 ++ .../convertfrom/_index.md | 84 +++++++++++++++++- .../imageformatconverter/convertto/_index.md | 59 ++++++++++++- .../cpp/system.drawing/stringformat/_index.md | 2 +- .../stringformat/get_formatflags/_index.md | 2 +- .../stringformat/stringformat/_index.md | 2 +- english/cpp/system.io/_index.md | 3 +- .../basicstdiostreamwrapper/_index.md | 4 +- .../basicstdiostreamwrapper/write/_index.md | 2 +- .../writebyte/_index.md | 2 +- .../basicstdistreamwrapper/_index.md | 4 +- .../basicstdistreamwrapper/write/_index.md | 2 +- .../writebyte/_index.md | 2 +- .../basicstdostreamwrapper/_index.md | 4 +- .../basicstdostreamwrapper/write/_index.md | 2 +- .../writebyte/_index.md | 2 +- .../system.io/file/setattributes/_index.md | 2 +- .../system.io/filenotfoundexception/_index.md | 2 +- .../filesysteminfo/set_attributes/_index.md | 2 +- .../cpp/system.io/istemplatebaseof/_index.md | 23 +++++ .../cpp/system.io/memorystream/ptr/_index.md | 2 +- .../system.io/stdiostreamwrapper/_index.md | 2 +- .../cpp/system.io/stdistreamwrapper/_index.md | 2 +- .../cpp/system.io/stdostreamwrapper/_index.md | 2 +- .../system.io/stdwiostreamwrapper/_index.md | 2 +- .../system.io/stdwistreamwrapper/_index.md | 2 +- .../system.io/stdwostreamwrapper/_index.md | 2 +- english/cpp/system.io/stream/ptr/_index.md | 2 +- .../system.io/systemiostreamwrapper/_index.md | 2 +- .../system.io/systemistreamwrapper/_index.md | 2 +- .../system.io/systemostreamwrapper/_index.md | 2 +- .../systemwiostreamwrapper/_index.md | 2 +- .../system.io/systemwistreamwrapper/_index.md | 2 +- .../system.io/systemwostreamwrapper/_index.md | 2 +- .../cpp/system.io/textwriter/ptr/_index.md | 2 +- .../cpp/system.io/wrapstdiostream/_index.md | 2 +- .../get_level/_index.md | 4 +- .../requestcachelevel/_index.md | 2 +- .../requestcachepolicy/_index.md | 2 +- .../requestcachepolicy/get_level/_index.md | 4 +- .../requestcachepolicy/_index.md | 4 +- .../system.net.http.headers/string_/_index.md | 3 +- .../httpresponsemessage/_index.md | 2 +- .../ensuresuccessstatuscode/_index.md | 2 +- .../sslstream/asyncresulttype/_index.md | 4 +- .../streamimplementationptr/_index.md | 2 +- .../socket/implptr/_index.md | 2 +- english/cpp/system.net/_index.md | 6 +- .../cpp/system.net/endpoint/implptr/_index.md | 2 +- .../httprequestheaderextensions/_index.md | 2 +- .../httpresponseheaderextensions/_index.md | 2 +- .../system.net/ipaddress/implptr/_index.md | 2 +- .../system.net/webexceptionstatus/_index.md | 2 +- english/cpp/system.reflection/_index.md | 4 +- .../constructorinfo/_index.md | 2 +- .../constructorinfo/get_membertype/_index.md | 2 +- .../memberinfo/objectptr/_index.md | 2 +- .../system.reflection/methodinfo/_index.md | 2 +- .../methodinfo/get_membertype/_index.md | 2 +- .../system.reflection/propertyinfo/_index.md | 2 +- .../propertyinfo/get_membertype/_index.md | 2 +- .../reflectiontypeloadexception/_index.md | 2 +- .../targetinvocationexception/_index.md | 2 +- .../system.runtime.compilerservices/_index.md | 5 ++ .../_index.md | 28 ++++++ .../_index.md | 24 +++++ .../getawaiter/_index.md | 24 +++++ .../configuredtaskawaitable/_index.md | 2 +- .../configuredvaluetaskawaitable/_index.md | 28 ++++++ .../configuredvaluetaskawaitable/_index.md | 24 +++++ .../getawaiter/_index.md | 24 +++++ .../ituple/_index.md | 2 +- .../resulttaskawaiter/_index.md | 2 +- .../resultvaluetaskawaiter/_index.md | 30 +++++++ .../get_iscompleted/_index.md | 23 +++++ .../getresult/_index.md | 23 +++++ .../oncompleted/_index.md | 24 +++++ .../resultvaluetaskawaiter/_index.md | 24 +++++ .../runtimehelpers/_index.md | 2 +- .../taskawaiter/_index.md | 2 +- .../valuetaskawaiter/_index.md | 30 +++++++ .../get_iscompleted/_index.md | 23 +++++ .../valuetaskawaiter/getresult/_index.md | 23 +++++ .../valuetaskawaiter/oncompleted/_index.md | 24 +++++ .../valuetaskawaiter/_index.md | 24 +++++ .../yieldawaitable/_index.md | 30 +++++++ .../yieldawaitable/getawaiter/_index.md | 24 +++++ .../yieldawaitable/yieldawaiter/_index.md | 35 ++++++++ .../continueoncapturedcontext/_index.md | 24 +++++ .../yieldawaiter/get_iscompleted/_index.md | 24 +++++ .../yieldawaiter/getresult/_index.md | 24 +++++ .../yieldawaiter/oncompleted/_index.md | 25 ++++++ .../marshal/gethrforexception/_index.md | 2 +- .../x509certificate/ptr/_index.md | 2 +- .../x509certificate2collectionptr/_index.md | 2 +- .../x509certificatecollectionptr/_index.md | 2 +- .../x509extensioncollection/_index.md | 1 + .../x509extensioncollection/idx_get/_index.md | 18 +++- .../x509extensioncollectionptr/_index.md | 2 +- .../basetype/_index.md | 2 +- .../thistype/_index.md | 2 +- .../cspkeycontainerinfo/_index.md | 2 +- .../get_keynumber/_index.md | 2 +- .../md5/ptr/_index.md | 2 +- .../capturecollection/_index.md | 5 +- .../capturecollection/base/_index.md | 6 +- .../capturecollection/idx_get/_index.md | 24 +++++ .../capturecollection/operator[]/_index.md | 37 ++++++++ .../capturecollection/remove/_index.md | 2 +- .../groupcollection/_index.md | 4 +- .../groupcollection/base/_index.md | 4 +- .../groupcollection/operator[]/_index.md | 30 ++++++- .../groupcollectionptr/_index.md | 2 +- .../cpp/system.text/encoding/ptr/_index.md | 2 +- english/cpp/system.text/icudecoder/_index.md | 2 +- .../cpp/system.text/icudecoder/base/_index.md | 4 +- english/cpp/system.text/icuencoder/_index.md | 2 +- .../cpp/system.text/icuencoder/base/_index.md | 4 +- english/cpp/system.threading.tasks/_index.md | 4 + .../system.threading.tasks/delay/_index.md | 2 +- .../dispatchcurrentcontext/_index.md | 2 +- .../fromexception/_index.md | 2 +- .../fromresult/_index.md | 2 +- .../resulttask/_index.md | 5 +- .../resulttask/configureawait/_index.md | 2 +- .../resulttask/continuewith/_index.md | 4 +- .../resulttask/get_result/_index.md | 2 +- .../resulttask/getawaiter/_index.md | 2 +- .../resulttask/resulttask/_index.md | 14 +++ .../resultvaluetask/_index.md | 51 +++++++++++ .../resultvaluetask/astask/_index.md | 34 ++++++++ .../resultvaluetask/configureawait/_index.md | 33 +++++++ .../resultvaluetask/equals/_index.md | 58 +++++++++++++ .../resultvaluetask/get_iscanceled/_index.md | 33 +++++++ .../resultvaluetask/get_iscompleted/_index.md | 28 ++++++ .../get_iscompletedsuccessfully/_index.md | 28 ++++++ .../resultvaluetask/get_isfaulted/_index.md | 33 +++++++ .../resultvaluetask/get_result/_index.md | 33 +++++++ .../resultvaluetask/getawaiter/_index.md | 34 ++++++++ .../resultvaluetask/operator!=/_index.md | 33 +++++++ .../resultvaluetask/operator==/_index.md | 37 ++++++++ .../resultvaluetask/resultvaluetask/_index.md | 78 +++++++++++++++++ .../cpp/system.threading.tasks/run/_index.md | 17 +++- .../cpp/system.threading.tasks/task/_index.md | 7 +- .../task/continuewith/_index.md | 4 +- .../task/functiont/_index.md | 2 +- .../task/get_asyncstate/_index.md | 2 +- .../task/get_completedtask/_index.md | 4 +- .../task/get_currentid/_index.md | 2 +- .../task/get_status/_index.md | 2 +- .../task/set_scheduler/_index.md | 24 +++++ .../task/set_status/_index.md | 2 +- .../task/start/_index.md | 2 +- .../task/wait/_index.md | 10 +-- .../taskscheduler/_index.md | 2 +- .../taskstatus/_index.md | 2 +- .../valuetask/_index.md | 41 +++++++++ .../valuetask/astask/_index.md | 29 +++++++ .../valuetask/configureawait/_index.md | 33 +++++++ .../valuetask/equals/_index.md | 58 +++++++++++++ .../valuetask/get_iscanceled/_index.md | 28 ++++++ .../valuetask/get_iscompleted/_index.md | 28 ++++++ .../get_iscompletedsuccessfully/_index.md | 28 ++++++ .../valuetask/get_isfaulted/_index.md | 28 ++++++ .../valuetask/getawaiter/_index.md | 34 ++++++++ .../valuetask/operator!=/_index.md | 33 +++++++ .../valuetask/operator==/_index.md | 33 +++++++ .../valuetask/valuetask/_index.md | 54 ++++++++++++ .../system.threading.tasks/whenall/_index.md | 2 +- .../system.threading.tasks/yield/_index.md | 23 +++++ english/cpp/system.threading/_index.md | 7 +- .../system.threading/apartmentstate/_index.md | 2 +- .../system.threading/autoresetevent/_index.md | 2 +- .../cancellationtoken/register/_index.md | 2 +- .../system.threading/eventresetmode/_index.md | 6 +- .../eventwaithandle/_index.md | 2 +- .../manualresetevent/_index.md | 2 +- .../parameterizedthreadstart/_index.md | 2 +- .../sendorpostcallback/_index.md | 2 +- .../synchronizationcontext/_index.md | 36 ++++++++ .../get_current/_index.md | 35 ++++++++ .../setsynchronizationcontext/_index.md | 35 ++++++++ .../synchronizationcontext/_index.md | 29 +++++++ 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 +- .../datagrid/ptr/_index.md | 2 +- english/cpp/system.xml.schema/_index.md | 2 +- .../ixmlschemainfo/_index.md | 2 +- .../ixmlschemainfo/get_validity/_index.md | 4 +- .../validationeventargs/_index.md | 4 +- .../get_exception/_index.md | 4 +- .../get_severity/_index.md | 2 +- .../get_attributeformdefault/_index.md | 2 +- .../xmlschema/get_blockdefault/_index.md | 2 +- .../get_elementformdefault/_index.md | 2 +- .../xmlschema/get_finaldefault/_index.md | 2 +- .../get_processcontents/_index.md | 2 +- .../get_processcontents/_index.md | 2 +- .../xmlschemaattribute/get_form/_index.md | 2 +- .../xmlschemadatatype/_index.md | 4 +- .../get_tokenizedtype/_index.md | 2 +- .../xmlschemadatatype/get_typecode/_index.md | 4 +- .../xmlschemadatatype/get_variety/_index.md | 4 +- .../system.xml.schema/xmlschemainfo/_index.md | 8 +- .../xmlschemainfo/get_contenttype/_index.md | 4 +- .../xmlschemainfo/get_validity/_index.md | 4 +- .../xmlschemainfo/set_contenttype/_index.md | 2 +- .../xmlschemainfo/set_validity/_index.md | 2 +- .../xmlschemaset/add/_index.md | 6 +- .../xmlschemaset/reprocess/_index.md | 2 +- .../validationeventhandler_add/_index.md | 2 +- .../validationeventhandler_remove/_index.md | 2 +- .../system.xml.schema/xmlschematype/_index.md | 2 +- .../xmlschematype/get_derivedby/_index.md | 2 +- .../xmlschematype/get_final/_index.md | 2 +- .../xmlschematype/get_typecode/_index.md | 4 +- .../getbuiltincomplextype/_index.md | 2 +- .../getbuiltinsimpletype/_index.md | 2 +- .../xmlschematype/isderivedfrom/_index.md | 2 +- .../xmlschemavalidator/_index.md | 4 +- .../validateattribute/_index.md | 2 +- .../xmlschemavalidator/validatetext/_index.md | 4 +- .../validatewhitespace/_index.md | 4 +- .../xmlschemavalidator/_index.md | 2 +- .../initialize/_index.md | 2 +- .../xpathdocument/xpathdocument/_index.md | 4 +- .../xpathexpression/addsort/_index.md | 6 +- .../xpathexpression/get_returntype/_index.md | 2 +- .../system.xml.xpath/xpathnavigator/_index.md | 20 ++--- .../xpathnavigator/compareposition/_index.md | 2 +- .../xpathnavigator/get_nodetype/_index.md | 4 +- .../getnamespacesinscope/_index.md | 2 +- .../xpathnavigator/movetochild/_index.md | 4 +- .../movetofirstnamespace/_index.md | 4 +- .../xpathnavigator/movetofollowing/_index.md | 8 +- .../xpathnavigator/movetonext/_index.md | 4 +- .../movetonextnamespace/_index.md | 4 +- .../xpathnavigator/selectancestors/_index.md | 4 +- .../xpathnavigator/selectchildren/_index.md | 4 +- .../selectdescendants/_index.md | 4 +- .../system.xml.xpath/xpathnodetype/_index.md | 2 +- english/cpp/system.xml/_index.md | 2 +- .../cpp/system.xml/dtdprocessing/_index.md | 4 +- .../getnamespacesinscope/_index.md | 2 +- english/cpp/system.xml/xmlconvert/_index.md | 6 +- .../xmlconvert/todatetime/_index.md | 2 +- .../system.xml/xmlconvert/tostring/_index.md | 4 +- .../xmlconvert/verifyxmlchars/_index.md | 4 +- english/cpp/system.xml/xmldocument/_index.md | 4 +- .../xmldocument/createnode/_index.md | 12 +-- .../system.xml/xmlnode/get_nodetype/_index.md | 2 +- .../get_action/_index.md | 2 +- .../xmlnodechangedeventargs/_index.md | 2 +- .../xmlnodereader/get_nodetype/_index.md | 2 +- .../xmlnodereader/get_readstate/_index.md | 2 +- .../xmlnodereader/get_xmlspace/_index.md | 2 +- .../xmlparsercontext/get_xmlspace/_index.md | 2 +- .../xmlparsercontext/_index.md | 8 +- .../xmlreader/get_xmlspace/_index.md | 2 +- .../get_validationtype/_index.md | 2 +- .../cpp/system.xml/xmltextreader/_index.md | 8 +- .../xmltextreader/get_dtdprocessing/_index.md | 4 +- .../get_entityhandling/_index.md | 2 +- .../xmltextreader/get_nodetype/_index.md | 2 +- .../xmltextreader/get_readstate/_index.md | 2 +- .../get_whitespacehandling/_index.md | 2 +- .../xmltextreader/get_xmlspace/_index.md | 2 +- .../getnamespacesinscope/_index.md | 2 +- .../xmltextreader/set_dtdprocessing/_index.md | 2 +- .../xmltextreader/xmltextreader/_index.md | 8 +- .../cpp/system.xml/xmltextwriter/_index.md | 2 +- .../xmltextwriter/get_formatting/_index.md | 2 +- .../xmltextwriter/get_writestate/_index.md | 2 +- .../xmltextwriter/get_xmlspace/_index.md | 4 +- .../get_entityhandling/_index.md | 2 +- .../get_nodetype/_index.md | 2 +- .../get_readstate/_index.md | 2 +- .../get_validationtype/_index.md | 2 +- .../get_xmlspace/_index.md | 2 +- .../xmlvalidatingreader/_index.md | 8 +- english/cpp/system.xml/xmlwriter/_index.md | 2 +- .../xmlwriter/get_writestate/_index.md | 2 +- .../xmlwriter/get_xmlspace/_index.md | 4 +- .../get_namespacehandling/_index.md | 2 +- .../get_newlinehandling/_index.md | 2 +- .../get_outputmethod/_index.md | 2 +- english/cpp/system/_index.md | 13 ++- english/cpp/system/array/_index.md | 8 +- english/cpp/system/array/array/_index.md | 8 +- .../cpp/system/array/const_iterator/_index.md | 2 +- .../array/const_reverse_iterator/_index.md | 2 +- english/cpp/system/array/convertall/_index.md | 2 +- .../cpp/system/array/enumerableptr/_index.md | 2 +- .../cpp/system/array/enumeratorptr/_index.md | 2 +- english/cpp/system/array/iterator/_index.md | 2 +- .../system/array/reverse_iterator/_index.md | 2 +- english/cpp/system/ascast/_index.md | 56 +++++++++++- .../system/badimageformatexception/_index.md | 2 +- .../system/boxedvalue/gettypecode/_index.md | 2 +- .../boxedvaluebase/gettypecode/_index.md | 2 +- english/cpp/system/build/_index.md | 41 +++++++++ english/cpp/system/buildobject/_index.md | 43 +++++++++ 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 +- english/cpp/system/console/_index.md | 2 +- .../cpp/system/console/writeline/_index.md | 2 +- .../cpp/system/const_pointer_cast/_index.md | 2 +- english/cpp/system/constcast/_index.md | 2 +- .../cpp/system/datetime/specifykind/_index.md | 2 +- .../cpp/system/decimal/number_type/_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 | 12 +-- .../cpp/system/dynamiccast_noexcept/_index.md | 12 +-- english/cpp/system/dynamiccastarray/_index.md | 2 +- .../dynamicweakptr/dynamicweakptr_/_index.md | 2 +- .../system/dynamicweakptr/pointee_/_index.md | 2 +- .../system/dynamicweakptr/reference/_index.md | 2 +- .../operatordynamicweakptr_&/_index.md | 2 +- .../system/dynamicweakptr/smartptr_/_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/exceptionwrapper/_index.md | 10 +-- .../exceptionwrapper/_index.md | 4 +- .../exceptionwrapper/operator-_/_index.md | 4 +- .../operatorsharedptr_object_/_index.md | 2 +- .../system/exceptionwrapper/type/_index.md | 4 +- english/cpp/system/explicitcast/_index.md | 87 ++++++++++++++++++- english/cpp/system/forcestaticcast/_index.md | 2 +- .../cpp/system/foreachmembergvname/_index.md | 2 +- english/cpp/system/gc/_index.md | 1 + .../gc/gettotalallocatedbytes/_index.md | 37 ++++++++ .../cpp/system/gc/gettotalmemory/_index.md | 2 +- english/cpp/system/get_pointer/_index.md | 2 +- english/cpp/system/gethashcode/_index.md | 4 +- .../system/iasyncresult/smart_ptr/_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 +- .../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 | 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 +- english/cpp/system/makevalueasync/_index.md | 37 ++++++++ .../cpp/system/makeyieldenumerable/_index.md | 2 +- .../cpp/system/makeyieldenumerator/_index.md | 2 +- english/cpp/system/memberwiseclone/_index.md | 2 +- .../_index.md | 2 +- .../connect/_index.md | 2 +- .../multicastdelegate/_index.md | 2 +- .../cpp/system/nullable/valuetype/_index.md | 2 +- english/cpp/system/object/ptr/_index.md | 2 +- english/cpp/system/objectext/_index.md | 1 + english/cpp/system/objectext/is/_index.md | 30 +++++++ .../_index.md | 2 +- .../_index.md | 2 +- .../cpp/system/objecttype/gettype/_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/printto/_index.md | 2 +- english/cpp/system/ref/_index.md | 2 +- 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/smartptr/_index.md | 20 ++--- .../cpp/system/smartptr/arraytype/_index.md | 4 +- english/cpp/system/smartptr/begin/_index.md | 4 +- english/cpp/system/smartptr/cbegin/_index.md | 2 +- english/cpp/system/smartptr/cend/_index.md | 2 +- english/cpp/system/smartptr/end/_index.md | 4 +- .../cpp/system/smartptr/operator[]/_index.md | 2 +- .../cpp/system/smartptr/pointee_/_index.md | 2 +- .../cpp/system/smartptr/smartptr_/_index.md | 2 +- .../cpp/system/smartptr/toobjectptr/_index.md | 2 +- english/cpp/system/smartptr/type/_index.md | 4 +- .../cpp/system/static_pointer_cast/_index.md | 2 +- english/cpp/system/staticcast/_index.md | 12 +-- .../cpp/system/staticcast_noexcept/_index.md | 12 +-- english/cpp/system/staticcastarray/_index.md | 2 +- english/cpp/system/string/_index.md | 3 +- english/cpp/system/string/compare/_index.md | 2 +- .../system/string/compareordinal/_index.md | 2 +- english/cpp/system/string/concat/_index.md | 2 +- english/cpp/system/string/copy/_index.md | 2 +- english/cpp/system/string/empty/_index.md | 2 +- english/cpp/system/string/equals/_index.md | 2 +- english/cpp/system/string/format/_index.md | 2 +- english/cpp/system/string/fromascii/_index.md | 2 +- english/cpp/system/string/fromutf16/_index.md | 2 +- english/cpp/system/string/fromutf32/_index.md | 2 +- english/cpp/system/string/fromutf8/_index.md | 2 +- english/cpp/system/string/fromwcs/_index.md | 2 +- .../string/isnullorwhitespace/_index.md | 2 +- english/cpp/system/string/join/_index.md | 2 +- english/cpp/system/string/null/_index.md | 2 +- .../cpp/system/string/operator[]/_index.md | 2 +- english/cpp/system/string/operator_/_index.md | 33 +++++++ english/cpp/system/string/padleft/_index.md | 2 +- english/cpp/system/string/padright/_index.md | 2 +- english/cpp/system/string/rbegin/_index.md | 2 +- english/cpp/system/string/remove/_index.md | 2 +- english/cpp/system/string/rend/_index.md | 2 +- english/cpp/system/string/replace/_index.md | 2 +- english/cpp/system/string/reset/_index.md | 2 +- .../system/string/reverse_iterator/_index.md | 2 +- english/cpp/system/string/setcharat/_index.md | 2 +- english/cpp/system/string/split/_index.md | 2 +- .../cpp/system/string/startswith/_index.md | 2 +- english/cpp/system/string/substring/_index.md | 2 +- .../cpp/system/string/toasciistring/_index.md | 2 +- .../cpp/system/string/tobytearray/_index.md | 2 +- .../cpp/system/string/tochararray/_index.md | 2 +- english/cpp/system/string/tolower/_index.md | 2 +- .../system/string/tolowerinvariant/_index.md | 2 +- english/cpp/system/string/tostring/_index.md | 2 +- english/cpp/system/string/tou16str/_index.md | 2 +- english/cpp/system/string/tou32str/_index.md | 2 +- english/cpp/system/string/toupper/_index.md | 2 +- .../system/string/toupperinvariant/_index.md | 2 +- .../cpp/system/string/toutf8string/_index.md | 2 +- english/cpp/system/string/towcs/_index.md | 2 +- english/cpp/system/string/trim/_index.md | 2 +- english/cpp/system/string/trimend/_index.md | 2 +- english/cpp/system/string/trimstart/_index.md | 2 +- english/cpp/system/string/u_str/_index.md | 2 +- .../system/stringcomparer/args_type/_index.md | 2 +- english/cpp/system/tietuple/_index.md | 2 +- .../timezoneinfo/adjustmentruleptr/_index.md | 2 +- english/cpp/system/typecode/_index.md | 2 +- .../typeinfo/defaultconstructor/_index.md | 2 +- english/cpp/system/uri/compare/_index.md | 2 +- .../cpp/system/uri/getcomponents/_index.md | 2 +- english/cpp/system/weakptr/_index.md | 2 +- .../cpp/system/weakptr/operator=/_index.md | 2 +- english/cpp/system/weakptr/pointee_/_index.md | 2 +- .../cpp/system/weakptr/smartptr_/_index.md | 2 +- english/cpp/system/weakptr/weakptr_/_index.md | 2 +- 755 files changed, 3627 insertions(+), 885 deletions(-) create mode 100644 english/cpp/aspose.pdf.facades/pdfxmpmetadata/get_keys/_index.md create mode 100644 english/cpp/aspose.pdf.facades/pdfxmpmetadata/get_values/_index.md create mode 100644 english/cpp/aspose.pdf/apsloadoptions/gettype/_index.md create mode 100644 english/cpp/aspose.pdf/apsloadoptions/is/_index.md create mode 100644 english/cpp/aspose.pdf/apsloadoptions/type/_index.md create mode 100644 english/cpp/system.collections.generic/idictionary/get_count/_index.md create mode 100644 english/cpp/system.io/istemplatebaseof/_index.md create mode 100644 english/cpp/system.runtime.compilerservices/configuredresultvaluetaskawaitable/_index.md create mode 100644 english/cpp/system.runtime.compilerservices/configuredresultvaluetaskawaitable/configuredresultvaluetaskawaitable/_index.md create mode 100644 english/cpp/system.runtime.compilerservices/configuredresultvaluetaskawaitable/getawaiter/_index.md create mode 100644 english/cpp/system.runtime.compilerservices/configuredvaluetaskawaitable/_index.md create mode 100644 english/cpp/system.runtime.compilerservices/configuredvaluetaskawaitable/configuredvaluetaskawaitable/_index.md create mode 100644 english/cpp/system.runtime.compilerservices/configuredvaluetaskawaitable/getawaiter/_index.md create mode 100644 english/cpp/system.runtime.compilerservices/resultvaluetaskawaiter/_index.md create mode 100644 english/cpp/system.runtime.compilerservices/resultvaluetaskawaiter/get_iscompleted/_index.md create mode 100644 english/cpp/system.runtime.compilerservices/resultvaluetaskawaiter/getresult/_index.md create mode 100644 english/cpp/system.runtime.compilerservices/resultvaluetaskawaiter/oncompleted/_index.md create mode 100644 english/cpp/system.runtime.compilerservices/resultvaluetaskawaiter/resultvaluetaskawaiter/_index.md create mode 100644 english/cpp/system.runtime.compilerservices/valuetaskawaiter/_index.md create mode 100644 english/cpp/system.runtime.compilerservices/valuetaskawaiter/get_iscompleted/_index.md create mode 100644 english/cpp/system.runtime.compilerservices/valuetaskawaiter/getresult/_index.md create mode 100644 english/cpp/system.runtime.compilerservices/valuetaskawaiter/oncompleted/_index.md create mode 100644 english/cpp/system.runtime.compilerservices/valuetaskawaiter/valuetaskawaiter/_index.md create mode 100644 english/cpp/system.runtime.compilerservices/yieldawaitable/_index.md create mode 100644 english/cpp/system.runtime.compilerservices/yieldawaitable/getawaiter/_index.md create mode 100644 english/cpp/system.runtime.compilerservices/yieldawaitable/yieldawaiter/_index.md create mode 100644 english/cpp/system.runtime.compilerservices/yieldawaitable/yieldawaiter/continueoncapturedcontext/_index.md create mode 100644 english/cpp/system.runtime.compilerservices/yieldawaitable/yieldawaiter/get_iscompleted/_index.md create mode 100644 english/cpp/system.runtime.compilerservices/yieldawaitable/yieldawaiter/getresult/_index.md create mode 100644 english/cpp/system.runtime.compilerservices/yieldawaitable/yieldawaiter/oncompleted/_index.md create mode 100644 english/cpp/system.text.regularexpressions/capturecollection/idx_get/_index.md create mode 100644 english/cpp/system.text.regularexpressions/capturecollection/operator[]/_index.md create mode 100644 english/cpp/system.threading.tasks/resultvaluetask/_index.md create mode 100644 english/cpp/system.threading.tasks/resultvaluetask/astask/_index.md create mode 100644 english/cpp/system.threading.tasks/resultvaluetask/configureawait/_index.md create mode 100644 english/cpp/system.threading.tasks/resultvaluetask/equals/_index.md create mode 100644 english/cpp/system.threading.tasks/resultvaluetask/get_iscanceled/_index.md create mode 100644 english/cpp/system.threading.tasks/resultvaluetask/get_iscompleted/_index.md create mode 100644 english/cpp/system.threading.tasks/resultvaluetask/get_iscompletedsuccessfully/_index.md create mode 100644 english/cpp/system.threading.tasks/resultvaluetask/get_isfaulted/_index.md create mode 100644 english/cpp/system.threading.tasks/resultvaluetask/get_result/_index.md create mode 100644 english/cpp/system.threading.tasks/resultvaluetask/getawaiter/_index.md create mode 100644 english/cpp/system.threading.tasks/resultvaluetask/operator!=/_index.md create mode 100644 english/cpp/system.threading.tasks/resultvaluetask/operator==/_index.md create mode 100644 english/cpp/system.threading.tasks/resultvaluetask/resultvaluetask/_index.md create mode 100644 english/cpp/system.threading.tasks/task/set_scheduler/_index.md create mode 100644 english/cpp/system.threading.tasks/valuetask/_index.md create mode 100644 english/cpp/system.threading.tasks/valuetask/astask/_index.md create mode 100644 english/cpp/system.threading.tasks/valuetask/configureawait/_index.md create mode 100644 english/cpp/system.threading.tasks/valuetask/equals/_index.md create mode 100644 english/cpp/system.threading.tasks/valuetask/get_iscanceled/_index.md create mode 100644 english/cpp/system.threading.tasks/valuetask/get_iscompleted/_index.md create mode 100644 english/cpp/system.threading.tasks/valuetask/get_iscompletedsuccessfully/_index.md create mode 100644 english/cpp/system.threading.tasks/valuetask/get_isfaulted/_index.md create mode 100644 english/cpp/system.threading.tasks/valuetask/getawaiter/_index.md create mode 100644 english/cpp/system.threading.tasks/valuetask/operator!=/_index.md create mode 100644 english/cpp/system.threading.tasks/valuetask/operator==/_index.md create mode 100644 english/cpp/system.threading.tasks/valuetask/valuetask/_index.md create mode 100644 english/cpp/system.threading.tasks/yield/_index.md create mode 100644 english/cpp/system.threading/synchronizationcontext/_index.md create mode 100644 english/cpp/system.threading/synchronizationcontext/get_current/_index.md create mode 100644 english/cpp/system.threading/synchronizationcontext/setsynchronizationcontext/_index.md create mode 100644 english/cpp/system.threading/synchronizationcontext/synchronizationcontext/_index.md create mode 100644 english/cpp/system/build/_index.md create mode 100644 english/cpp/system/buildobject/_index.md create mode 100644 english/cpp/system/gc/gettotalallocatedbytes/_index.md create mode 100644 english/cpp/system/makevalueasync/_index.md diff --git a/english/cpp/aspose.pdf.annotations/_index.md b/english/cpp/aspose.pdf.annotations/_index.md index 032a7c974a..87ffc2fb37 100644 --- a/english/cpp/aspose.pdf.annotations/_index.md +++ b/english/cpp/aspose.pdf.annotations/_index.md @@ -32,7 +32,7 @@ The **[Aspose.Pdf.Annotations](./)** namespace provides classes for working with | [CaretSymbolConverter](./caretsymbolconverter/) | | | [Characteristics](./characteristics/) | Represents annotation characteristics. | | [CircleAnnotation](./circleannotation/) | Class representing Circle annotation. | -| [ColorBarAnnotation](./colorbarannotation/) | Class representing [ColorBarAnnotation](./colorbarannotation/) annotation. Property [Color](../aspose.pdf/color/) ignored, instead used ColorsOfCMYK color. On creation, the ratio of width and height determines the orientation of the annotation - horizontal or vertical. Next, it checks that the annotation rectangle is outside the TrimBox, and if not, then it is shifted to the nearest location outside the TrimBox, taking into account the orientation of the annotation. It is possible to reduce the width (height) so that the annotation fits outside the TrimBox. If there is no space for the layout, the width/height can be set to zero (in this case, the annotation is present on the page, but not displayed). | +| [ColorBarAnnotation](./colorbarannotation/) | Class representing [ColorBarAnnotation](./colorbarannotation/) annotation. Property [Color](../aspose.pdf/color/) ignored, instead used [ColorsOfCMYK](./colorsofcmyk/) color. On creation, the ratio of width and height determines the orientation of the annotation - horizontal or vertical. Next, it checks that the annotation rectangle is outside the TrimBox, and if not, then it is shifted to the nearest location outside the TrimBox, taking into account the orientation of the annotation. It is possible to reduce the width (height) so that the annotation fits outside the TrimBox. If there is no space for the layout, the width/height can be set to zero (in this case, the annotation is present on the page, but not displayed). | | [ColorsOfCMYKConverter](./colorsofcmykconverter/) | | | [CommonFigureAnnotation](./commonfigureannotation/) | Abstract class representing common figure annotation. | | [CornerPrinterMarkAnnotation](./cornerprintermarkannotation/) | Represents annotation types that are placed in the corners of the printed page. | @@ -154,16 +154,16 @@ The **[Aspose.Pdf.Annotations](./)** namespace provides classes for working with | [HighlightingMode](./highlightingmode/) | Enumerates the annotation's highlighting mode, the visual effect to be used when the mouse button is pressed or held down inside its active area. | | [Justification](./justification/) | Enumerates the forms of quadding (justification) to be used in displaying the annotation's text. | | [LaunchActionOperation](./launchactionoperation/) | Enumerates the operations to perform with document during launch action executing. | -| [LightingSchemeType](./lightingschemetype/) | Enum LightingSchemeType: set of lighting scheme types. | +| [LightingSchemeType](./lightingschemetype/) | Enum [LightingSchemeType](./lightingschemetype/): set of lighting scheme types. | | [LineEnding](./lineending/) | Enumerates the line ending styles to be used in drawing the line. | | [LineIntent](./lineintent/) | Enumerates the intents of the line annotation. | -| [PDF3DActivation](./pdf3dactivation/) | Enum PDF3DActivation: set of 3D annotation activation mode. | +| [PDF3DActivation](./pdf3dactivation/) | Enum [PDF3DActivation](./pdf3dactivation/): set of 3D annotation activation mode. | | [PolyIntent](./polyintent/) | Enumerates the intents of the polygon or polyline annotation. | | [PredefinedAction](./predefinedaction/) | Defines different actions which can be triggered from a PDF file. | | [PrinterMarkCornerPosition](./printermarkcornerposition/) | Represents a position of a mark in a corner of a page. | | [PrinterMarkSidePosition](./printermarksideposition/) | Represents a position of a registration mark on a page. | | [PrinterMarksKind](./printermarkskind/) | Specifies the types of printer's marks to be added to a document. | -| [RenderModeType](./rendermodetype/) | Enum RenderModeType: set of render mode types. | +| [RenderModeType](./rendermodetype/) | Enum [RenderModeType](./rendermodetype/): set of render mode types. | | [RenditionOperation](./renditionoperation/) | The operation to perform when the action is triggered. | | [RenditionType](./renditiontype/) | Enumeration describes possible types of [Rendition](./rendition/). | | [ReplyType](./replytype/) | Enumerates the kinds of the relationships (the "reply type") between the annotation and one specified by InReplyTo. | diff --git a/english/cpp/aspose.pdf.annotations/colorbarannotation/_index.md b/english/cpp/aspose.pdf.annotations/colorbarannotation/_index.md index 4dbcc73660..0e9b05812a 100644 --- a/english/cpp/aspose.pdf.annotations/colorbarannotation/_index.md +++ b/english/cpp/aspose.pdf.annotations/colorbarannotation/_index.md @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf.annotations/colorbarannotation/ ## ColorBarAnnotation class -Class representing [ColorBarAnnotation](./) annotation. Property [Color](../../aspose.pdf/color/) ignored, instead used ColorsOfCMYK color. On creation, the ratio of width and height determines the orientation of the annotation - horizontal or vertical. Next, it checks that the annotation rectangle is outside the TrimBox, and if not, then it is shifted to the nearest location outside the TrimBox, taking into account the orientation of the annotation. It is possible to reduce the width (height) so that the annotation fits outside the TrimBox. If there is no space for the layout, the width/height can be set to zero (in this case, the annotation is present on the page, but not displayed). +Class representing [ColorBarAnnotation](./) annotation. Property [Color](../../aspose.pdf/color/) ignored, instead used [ColorsOfCMYK](../colorsofcmyk/) color. On creation, the ratio of width and height determines the orientation of the annotation - horizontal or vertical. Next, it checks that the annotation rectangle is outside the TrimBox, and if not, then it is shifted to the nearest location outside the TrimBox, taking into account the orientation of the annotation. It is possible to reduce the width (height) so that the annotation fits outside the TrimBox. If there is no space for the layout, the width/height can be set to zero (in this case, the annotation is present on the page, but not displayed). ```cpp class ColorBarAnnotation : public Aspose::Pdf::Annotations::PrinterMarkAnnotation diff --git a/english/cpp/aspose.pdf.annotations/lightingschemetype/_index.md b/english/cpp/aspose.pdf.annotations/lightingschemetype/_index.md index e97ba6db8f..f22821dec9 100644 --- a/english/cpp/aspose.pdf.annotations/lightingschemetype/_index.md +++ b/english/cpp/aspose.pdf.annotations/lightingschemetype/_index.md @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf.annotations/lightingschemetype/ ## LightingSchemeType enum -Enum LightingSchemeType: set of lighting scheme types. +Enum [LightingSchemeType](./): set of lighting scheme types. ```cpp enum class LightingSchemeType diff --git a/english/cpp/aspose.pdf.annotations/pdf3dactivation/_index.md b/english/cpp/aspose.pdf.annotations/pdf3dactivation/_index.md index bfd96f4d87..5f11521734 100644 --- a/english/cpp/aspose.pdf.annotations/pdf3dactivation/_index.md +++ b/english/cpp/aspose.pdf.annotations/pdf3dactivation/_index.md @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf.annotations/pdf3dactivation/ ## PDF3DActivation enum -Enum PDF3DActivation: set of 3D annotation activation mode. +Enum [PDF3DActivation](./): set of 3D annotation activation mode. ```cpp enum class PDF3DActivation diff --git a/english/cpp/aspose.pdf.annotations/rendermodetype/_index.md b/english/cpp/aspose.pdf.annotations/rendermodetype/_index.md index 5a54f45b39..ef35f76ae2 100644 --- a/english/cpp/aspose.pdf.annotations/rendermodetype/_index.md +++ b/english/cpp/aspose.pdf.annotations/rendermodetype/_index.md @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf.annotations/rendermodetype/ ## RenderModeType enum -Enum RenderModeType: set of render mode types. +Enum [RenderModeType](./): set of render mode types. ```cpp enum class RenderModeType diff --git a/english/cpp/aspose.pdf.facades/_index.md b/english/cpp/aspose.pdf.facades/_index.md index 3ef478e321..2960dd2253 100644 --- a/english/cpp/aspose.pdf.facades/_index.md +++ b/english/cpp/aspose.pdf.facades/_index.md @@ -57,7 +57,7 @@ The **[Aspose.Pdf.Facades](./)** namespace provides classes originaly came from | Enum | Description | | --- | --- | | [Algorithm](./algorithm/) | Represents algorithms which can be used to encrypt pdf document. | -| [AutoRotateMode](./autorotatemode/) | Direction of the rotation when document is printed. | +| [AutoRotateMode](./autorotatemode/) | [Direction](../aspose.pdf/direction/) of the rotation when document is printed. | | [BlendingColorSpace](./blendingcolorspace/) | Class represents blending color space. | | [DataType](./datatype/) | Enumerates field types definitions. | | [DefaultMetadataProperties](./defaultmetadataproperties/) | Enumeration of standard XMP properties. | diff --git a/english/cpp/aspose.pdf.facades/autorotatemode/_index.md b/english/cpp/aspose.pdf.facades/autorotatemode/_index.md index 49d214b218..c13db24bfb 100644 --- a/english/cpp/aspose.pdf.facades/autorotatemode/_index.md +++ b/english/cpp/aspose.pdf.facades/autorotatemode/_index.md @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf.facades/autorotatemode/ ## AutoRotateMode enum -Direction of the rotation when document is printed. +[Direction](../../aspose.pdf/direction/) of the rotation when document is printed. ```cpp enum class AutoRotateMode @@ -21,8 +21,8 @@ enum class AutoRotateMode | Name | Value | Description | | --- | --- | --- | | None | 0 | No rotation. | -| ClockWise | 1 | Rotation direction is clockwise. | -| AntiClockWise | 2 | Rotation directon is counterclockwise. | +| ClockWise | 1 | [Rotation](../../aspose.pdf/rotation/) direction is clockwise. | +| AntiClockWise | 2 | [Rotation](../../aspose.pdf/rotation/) directon is counterclockwise. | ## See Also diff --git a/english/cpp/aspose.pdf.facades/formattedtext/formattedtext/_index.md b/english/cpp/aspose.pdf.facades/formattedtext/formattedtext/_index.md index cd1638517f..e8d441dd14 100644 --- a/english/cpp/aspose.pdf.facades/formattedtext/formattedtext/_index.md +++ b/english/cpp/aspose.pdf.facades/formattedtext/formattedtext/_index.md @@ -250,7 +250,7 @@ Aspose::Pdf::Facades::FormattedText::FormattedText(System::String text, System:: | text | System::String | [Text](../../../aspose.pdf.text/) content of the string. | | fontColor | System::SharedPtr\ | [Color](../../../aspose.pdf/color/) of the text. | | fontStyle | FontStyle | Style of the text. | -| encodingType | EncodingType | Encoding type (value of EncodingType enumeration). | +| encodingType | EncodingType | Encoding type (value of [EncodingType](../../encodingtype/) enumeration). | | embedded | bool | True if the font will be embedded. | | textSize | float | Size of the text. | diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/_index.md index 9896c9aab9..7d2ab8226a 100644 --- a/english/cpp/aspose.pdf.facades/pdffileinfo/_index.md +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/_index.md @@ -27,7 +27,7 @@ class PdfFileInfo : public Aspose::Pdf::Facades::SaveableFacade | [get_CreationDate](./get_creationdate/)() | Gets the CreationDate information of PDF document. | | [get_Creator](./get_creator/)() | Gets the Creator information of PDF document. | | [get_HasCollection](./get_hascollection/)() | Returns true if the current input file is a 'Portfolio' file containing collection of PDF files in it. | -| [get_HasEditPassword](./get_haseditpassword/)() | Returns true if password is needed to modify permissions or document security property. Pay attention that this property can be read only if valid password was provided in [PdfFileInfo](./) constructor. In case PasswordType is Inaccessible (means that invalid password was provided) reading this property will fail with [InvalidPasswordException](../../aspose.pdf/invalidpasswordexception/). | +| [get_HasEditPassword](./get_haseditpassword/)() | Returns true if password is needed to modify permissions or document security property. Pay attention that this property can be read only if valid password was provided in [PdfFileInfo](./) constructor. In case [PasswordType](../../aspose.pdf/passwordtype/) is Inaccessible (means that invalid password was provided) reading this property will fail with [InvalidPasswordException](../../aspose.pdf/invalidpasswordexception/). | | [get_HasOpenPassword](./get_hasopenpassword/)() | Returns true if password is needed to open password protected pdf document. | | [get_Header](./get_header/)() const | Gets the customized information of PDF document. | | [get_InputFile](./get_inputfile/)() const | Gets the input file. | diff --git a/english/cpp/aspose.pdf.facades/pdffileinfo/get_haseditpassword/_index.md b/english/cpp/aspose.pdf.facades/pdffileinfo/get_haseditpassword/_index.md index ed080e5616..ec11d29a6c 100644 --- a/english/cpp/aspose.pdf.facades/pdffileinfo/get_haseditpassword/_index.md +++ b/english/cpp/aspose.pdf.facades/pdffileinfo/get_haseditpassword/_index.md @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf.facades/pdffileinfo/get_haseditpassword/ ## PdfFileInfo::get_HasEditPassword method -Returns true if password is needed to modify permissions or document security property. Pay attention that this property can be read only if valid password was provided in [PdfFileInfo](../) constructor. In case PasswordType is Inaccessible (means that invalid password was provided) reading this property will fail with [InvalidPasswordException](../../../aspose.pdf/invalidpasswordexception/). +Returns true if password is needed to modify permissions or document security property. Pay attention that this property can be read only if valid password was provided in [PdfFileInfo](../) constructor. In case [PasswordType](../../../aspose.pdf/passwordtype/) is Inaccessible (means that invalid password was provided) reading this property will fail with [InvalidPasswordException](../../../aspose.pdf/invalidpasswordexception/). ```cpp bool Aspose::Pdf::Facades::PdfFileInfo::get_HasEditPassword() diff --git a/english/cpp/aspose.pdf.facades/pdffilemend/_index.md b/english/cpp/aspose.pdf.facades/pdffilemend/_index.md index 5ca3c2e856..1512ffc459 100644 --- a/english/cpp/aspose.pdf.facades/pdffilemend/_index.md +++ b/english/cpp/aspose.pdf.facades/pdffilemend/_index.md @@ -37,7 +37,7 @@ class PdfFileMend : public Aspose::Pdf::Facades::SaveableFacade | [get_OutputFile](./get_outputfile/)() const | Sets the output file. | | [get_OutputStream](./get_outputstream/)() const | Sets the output stream. | | [get_TextPositioningMode](./get_textpositioningmode/)() const | Sets or gets text positioning strategy. [PositioningMode](../positioningmode/) Default mode is Legacy. | -| [get_WrapMode](./get_wrapmode/)() const | Sets or gets word wrapping algorithm. See WordWrapMode and IsWordWrap. | +| [get_WrapMode](./get_wrapmode/)() const | Sets or gets word wrapping algorithm. See [WordWrapMode](../wordwrapmode/) and IsWordWrap. | | [PdfFileMend](./pdffilemend/)() | Constructor. | | [PdfFileMend](./pdffilemend/)(System::String, System::String) | Constructor. | | [PdfFileMend](./pdffilemend/)(System::SharedPtr\, System::SharedPtr\) | Constructor. | @@ -52,7 +52,7 @@ class PdfFileMend : public Aspose::Pdf::Facades::SaveableFacade | [set_OutputFile](./set_outputfile/)(System::String) | Sets the output file. | | [set_OutputStream](./set_outputstream/)(System::SharedPtr\) | Sets the output stream. | | [set_TextPositioningMode](./set_textpositioningmode/)(PositioningMode) | Sets or gets text positioning strategy. [PositioningMode](../positioningmode/) Default mode is Legacy. | -| [set_WrapMode](./set_wrapmode/)(WordWrapMode) | Sets or gets word wrapping algorithm. See WordWrapMode and IsWordWrap. | +| [set_WrapMode](./set_wrapmode/)(WordWrapMode) | Sets or gets word wrapping algorithm. See [WordWrapMode](../wordwrapmode/) and IsWordWrap. | ## See Also * Class [SaveableFacade](../saveablefacade/) diff --git a/english/cpp/aspose.pdf.facades/pdffilemend/get_wrapmode/_index.md b/english/cpp/aspose.pdf.facades/pdffilemend/get_wrapmode/_index.md index 77a24d3162..77266eacdb 100644 --- a/english/cpp/aspose.pdf.facades/pdffilemend/get_wrapmode/_index.md +++ b/english/cpp/aspose.pdf.facades/pdffilemend/get_wrapmode/_index.md @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf.facades/pdffilemend/get_wrapmode/ ## PdfFileMend::get_WrapMode method -Sets or gets word wrapping algorithm. See WordWrapMode and IsWordWrap. +Sets or gets word wrapping algorithm. See [WordWrapMode](../../wordwrapmode/) and IsWordWrap. ```cpp WordWrapMode Aspose::Pdf::Facades::PdfFileMend::get_WrapMode() const diff --git a/english/cpp/aspose.pdf.facades/pdffilemend/set_wrapmode/_index.md b/english/cpp/aspose.pdf.facades/pdffilemend/set_wrapmode/_index.md index edd721231a..de15f4624f 100644 --- a/english/cpp/aspose.pdf.facades/pdffilemend/set_wrapmode/_index.md +++ b/english/cpp/aspose.pdf.facades/pdffilemend/set_wrapmode/_index.md @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf.facades/pdffilemend/set_wrapmode/ ## PdfFileMend::set_WrapMode method -Sets or gets word wrapping algorithm. See WordWrapMode and IsWordWrap. +Sets or gets word wrapping algorithm. See [WordWrapMode](../../wordwrapmode/) and IsWordWrap. ```cpp void Aspose::Pdf::Facades::PdfFileMend::set_WrapMode(WordWrapMode value) diff --git a/english/cpp/aspose.pdf.facades/pdffilesecurity/_index.md b/english/cpp/aspose.pdf.facades/pdffilesecurity/_index.md index ebe8a0ee08..0b8a4c4765 100644 --- a/english/cpp/aspose.pdf.facades/pdffilesecurity/_index.md +++ b/english/cpp/aspose.pdf.facades/pdffilesecurity/_index.md @@ -24,13 +24,13 @@ class PdfFileSecurity : public Aspose::Pdf::Facades::SaveableFacade | [BindPdf](./bindpdf/)(System::SharedPtr\) override | Initializes the facade. | | [ChangePassword](./changepassword/)(System::String, System::String, System::String) | Changes the user password and owner password by owner password, keeps the original security settings. The new user password and the new owner password can be null or empty. The owner password will be replaced with a random string if the new owner password is null or empty. Throws an exception if process failed. | | [ChangePassword](./changepassword/)(System::String, System::String, System::String, System::SharedPtr\, KeySize) | Changes the user password and password by owner password, allows to reset [Pdf](../../aspose.pdf/) documnent security. The new user password and the new owner password can be null or empty. The owner password will be replaced with a random string if the new owner password is null or empty. Throws an exception if process failed. | -| [ChangePassword](./changepassword/)(System::String, System::String, System::String, System::SharedPtr\, KeySize, Algorithm) | Changes the user password and password by owner password, allows to reset [Pdf](../../aspose.pdf/) documnent security. The new user password and the new owner password can be null or empty. The owner password will be replaced with a random string if the new owner password is null or empty. There are 6 possible combinations of KeySize and Algorithm values. However ([KeySize.x40](../keysize/), [Algorithm.AES](../algorithm/)) and ([KeySize.x256](../keysize/), [Algorithm.RC4](../algorithm/)) are invalid and corresponding exception will be raised if kit encounters this combination. Throws an exception if process failed. | +| [ChangePassword](./changepassword/)(System::String, System::String, System::String, System::SharedPtr\, KeySize, Algorithm) | Changes the user password and password by owner password, allows to reset [Pdf](../../aspose.pdf/) documnent security. The new user password and the new owner password can be null or empty. The owner password will be replaced with a random string if the new owner password is null or empty. There are 6 possible combinations of [KeySize](../keysize/) and [Algorithm](../algorithm/) values. However ([KeySize.x40](../keysize/), [Algorithm.AES](../algorithm/)) and ([KeySize.x256](../keysize/), [Algorithm.RC4](../algorithm/)) are invalid and corresponding exception will be raised if kit encounters this combination. Throws an exception if process failed. | | [Close](./close/)() override | Closes the facade. | | [get_AllowExceptions](./get_allowexceptions/)() | If this value set to true, exception will be thrown on opearation failure. Else, method returns false on failure and last exception can be checked with LastException property. | | [get_LastException](./get_lastexception/)() const | Returns exception which was thrown by last operation. | | [MfDecryptFile](./mfdecryptfile/)(System::String) | Decrypts an encrypted [Pdf](../../aspose.pdf/) document by owner password. If the document hasn't owner password, it is allow to use user password. Throws an exception if process failed. | | [MfEncryptFile](./mfencryptfile/)(System::String, System::String, System::SharedPtr\, KeySize) | Encrypts [Pdf](../../aspose.pdf/) file with userpassword and ownerpassword and sets the document's privileges to access. The user password and the owner password can be null or empty. The owner password will be replaced with a random string if the input owner password is null or empty. Throws exception if process failed. | -| [MfEncryptFile](./mfencryptfile/)(System::String, System::String, System::SharedPtr\, KeySize, Algorithm) | Encrypts [Pdf](../../aspose.pdf/) file with userpassword and ownerpassword and sets the document's privileges to access. The user password and the owner password can be null or empty. The owner password will be replaced with a random string if the input owner password is null or empty. There are 6 possible combinations of KeySize and Algorithm values. However ([KeySize.x40](../keysize/), [Algorithm.AES](../algorithm/)) and ([KeySize.x256](../keysize/), [Algorithm.RC4](../algorithm/)) are invalid and corresponding exception will be raised if kit encounters this combination. Throws an exception if process failed. | +| [MfEncryptFile](./mfencryptfile/)(System::String, System::String, System::SharedPtr\, KeySize, Algorithm) | Encrypts [Pdf](../../aspose.pdf/) file with userpassword and ownerpassword and sets the document's privileges to access. The user password and the owner password can be null or empty. The owner password will be replaced with a random string if the input owner password is null or empty. There are 6 possible combinations of [KeySize](../keysize/) and [Algorithm](../algorithm/) values. However ([KeySize.x40](../keysize/), [Algorithm.AES](../algorithm/)) and ([KeySize.x256](../keysize/), [Algorithm.RC4](../algorithm/)) are invalid and corresponding exception will be raised if kit encounters this combination. Throws an exception if process failed. | | [PdfFileSecurity](./pdffilesecurity/)(System::SharedPtr\, System::SharedPtr\) | Initialize the object of [PdfFileSecurity](./) with input and output stream. | | [PdfFileSecurity](./pdffilesecurity/)(System::String, System::String) | Initializes the object of [PdfFileSecurity](./) with input and output file. | | [PdfFileSecurity](./pdffilesecurity/)() | Initialize the object of [PdfFileSecurity](./). | @@ -46,7 +46,7 @@ class PdfFileSecurity : public Aspose::Pdf::Facades::SaveableFacade | [SetPrivilege](./setprivilege/)(System::String, System::String, System::SharedPtr\) | Sets [Pdf](../../aspose.pdf/) file security with original password. Throws an exception if process failed. | | [TryChangePassword](./trychangepassword/)(System::String, System::String, System::String) | Changes the user password and owner password by owner password, keeps the original security settings. The new user password and the new owner password can be null or empty. The owner password will be replaced Does not throw an exception if process failed. with a random string if the new owner password is null or empty. | | [TryChangePassword](./trychangepassword/)(System::String, System::String, System::String, System::SharedPtr\, KeySize) | Changes the user password and password by owner password, allows to reset [Pdf](../../aspose.pdf/) documnent security. The new user password and the new owner password can be null or empty. The owner password will be replaced with a random string if the new owner password is null or empty. Does not throw an exception if process failed. | -| [TryChangePassword](./trychangepassword/)(System::String, System::String, System::String, System::SharedPtr\, KeySize, Algorithm) | Changes the user password and password by owner password, allows to reset [Pdf](../../aspose.pdf/) documnent security. The new user password and the new owner password can be null or empty. The owner password will be replaced with a random string if the new owner password is null or empty. There are 6 possible combinations of KeySize and Algorithm values. However ([KeySize.x40](../keysize/), [Algorithm.AES](../algorithm/)) and ([KeySize.x256](../keysize/), [Algorithm.RC4](../algorithm/)) are invalid and corresponding exception will be raised if kit encounters this combination. Does not throw an exception if process failed. | +| [TryChangePassword](./trychangepassword/)(System::String, System::String, System::String, System::SharedPtr\, KeySize, Algorithm) | Changes the user password and password by owner password, allows to reset [Pdf](../../aspose.pdf/) documnent security. The new user password and the new owner password can be null or empty. The owner password will be replaced with a random string if the new owner password is null or empty. There are 6 possible combinations of [KeySize](../keysize/) and [Algorithm](../algorithm/) values. However ([KeySize.x40](../keysize/), [Algorithm.AES](../algorithm/)) and ([KeySize.x256](../keysize/), [Algorithm.RC4](../algorithm/)) are invalid and corresponding exception will be raised if kit encounters this combination. Does not throw an exception if process failed. | | [TryDecryptFile](./trydecryptfile/)(System::String) | Decrypts an encrypted [Pdf](../../aspose.pdf/) document by owner password. If the document hasn't owner password, it is allow to use user password. Does not throw an exception if process failed. | | [TryEncryptFile](./tryencryptfile/)(System::String, System::String, System::SharedPtr\, KeySize) | Encrypts [Pdf](../../aspose.pdf/) file with userpassword and ownerpassword and sets the document's privileges to access. The user password and the owner password can be null or empty. The owner password will be replaced with a random string if the input owner password is null or empty. Does not throw an exception if process failed. | | [TrySetPrivilege](./trysetprivilege/)(System::String, System::String, System::SharedPtr\) | Sets [Pdf](../../aspose.pdf/) file security with original password. Does not throw an exception if process failed. | diff --git a/english/cpp/aspose.pdf.facades/pdffilesecurity/changepassword/_index.md b/english/cpp/aspose.pdf.facades/pdffilesecurity/changepassword/_index.md index 5a592603ec..49b0111e26 100644 --- a/english/cpp/aspose.pdf.facades/pdffilesecurity/changepassword/_index.md +++ b/english/cpp/aspose.pdf.facades/pdffilesecurity/changepassword/_index.md @@ -67,7 +67,7 @@ True for success. ## PdfFileSecurity::ChangePassword(System::String, System::String, System::String, System::SharedPtr\, KeySize, Algorithm) method -Changes the user password and password by owner password, allows to reset [Pdf](../../../aspose.pdf/) documnent security. The new user password and the new owner password can be null or empty. The owner password will be replaced with a random string if the new owner password is null or empty. There are 6 possible combinations of KeySize and Algorithm values. However ([KeySize.x40](../../keysize/), [Algorithm.AES](../../algorithm/)) and ([KeySize.x256](../../keysize/), [Algorithm.RC4](../../algorithm/)) are invalid and corresponding exception will be raised if kit encounters this combination. Throws an exception if process failed. +Changes the user password and password by owner password, allows to reset [Pdf](../../../aspose.pdf/) documnent security. The new user password and the new owner password can be null or empty. The owner password will be replaced with a random string if the new owner password is null or empty. There are 6 possible combinations of [KeySize](../../keysize/) and [Algorithm](../../algorithm/) values. However ([KeySize.x40](../../keysize/), [Algorithm.AES](../../algorithm/)) and ([KeySize.x256](../../keysize/), [Algorithm.RC4](../../algorithm/)) are invalid and corresponding exception will be raised if kit encounters this combination. Throws an exception if process failed. ```cpp bool Aspose::Pdf::Facades::PdfFileSecurity::ChangePassword(System::String ownerPassword, System::String newUserPassword, System::String newOwnerPassword, System::SharedPtr privilege, KeySize keySize, Algorithm cipher) diff --git a/english/cpp/aspose.pdf.facades/pdffilesecurity/mfencryptfile/_index.md b/english/cpp/aspose.pdf.facades/pdffilesecurity/mfencryptfile/_index.md index 6f134af254..99db4cf2ba 100644 --- a/english/cpp/aspose.pdf.facades/pdffilesecurity/mfencryptfile/_index.md +++ b/english/cpp/aspose.pdf.facades/pdffilesecurity/mfencryptfile/_index.md @@ -40,7 +40,7 @@ True for success. ## PdfFileSecurity::MfEncryptFile(System::String, System::String, System::SharedPtr\, KeySize, Algorithm) method -Encrypts [Pdf](../../../aspose.pdf/) file with userpassword and ownerpassword and sets the document's privileges to access. The user password and the owner password can be null or empty. The owner password will be replaced with a random string if the input owner password is null or empty. There are 6 possible combinations of KeySize and Algorithm values. However ([KeySize.x40](../../keysize/), [Algorithm.AES](../../algorithm/)) and ([KeySize.x256](../../keysize/), [Algorithm.RC4](../../algorithm/)) are invalid and corresponding exception will be raised if kit encounters this combination. Throws an exception if process failed. +Encrypts [Pdf](../../../aspose.pdf/) file with userpassword and ownerpassword and sets the document's privileges to access. The user password and the owner password can be null or empty. The owner password will be replaced with a random string if the input owner password is null or empty. There are 6 possible combinations of [KeySize](../../keysize/) and [Algorithm](../../algorithm/) values. However ([KeySize.x40](../../keysize/), [Algorithm.AES](../../algorithm/)) and ([KeySize.x256](../../keysize/), [Algorithm.RC4](../../algorithm/)) are invalid and corresponding exception will be raised if kit encounters this combination. Throws an exception if process failed. ```cpp bool Aspose::Pdf::Facades::PdfFileSecurity::MfEncryptFile(System::String userPassword, System::String ownerPassword, System::SharedPtr privilege, KeySize keySize, Algorithm cipher) diff --git a/english/cpp/aspose.pdf.facades/pdffilesecurity/trychangepassword/_index.md b/english/cpp/aspose.pdf.facades/pdffilesecurity/trychangepassword/_index.md index 765dc8589f..855315e0e5 100644 --- a/english/cpp/aspose.pdf.facades/pdffilesecurity/trychangepassword/_index.md +++ b/english/cpp/aspose.pdf.facades/pdffilesecurity/trychangepassword/_index.md @@ -67,7 +67,7 @@ True for success, or false. ## PdfFileSecurity::TryChangePassword(System::String, System::String, System::String, System::SharedPtr\, KeySize, Algorithm) method -Changes the user password and password by owner password, allows to reset [Pdf](../../../aspose.pdf/) documnent security. The new user password and the new owner password can be null or empty. The owner password will be replaced with a random string if the new owner password is null or empty. There are 6 possible combinations of KeySize and Algorithm values. However ([KeySize.x40](../../keysize/), [Algorithm.AES](../../algorithm/)) and ([KeySize.x256](../../keysize/), [Algorithm.RC4](../../algorithm/)) are invalid and corresponding exception will be raised if kit encounters this combination. Does not throw an exception if process failed. +Changes the user password and password by owner password, allows to reset [Pdf](../../../aspose.pdf/) documnent security. The new user password and the new owner password can be null or empty. The owner password will be replaced with a random string if the new owner password is null or empty. There are 6 possible combinations of [KeySize](../../keysize/) and [Algorithm](../../algorithm/) values. However ([KeySize.x40](../../keysize/), [Algorithm.AES](../../algorithm/)) and ([KeySize.x256](../../keysize/), [Algorithm.RC4](../../algorithm/)) are invalid and corresponding exception will be raised if kit encounters this combination. Does not throw an exception if process failed. ```cpp bool Aspose::Pdf::Facades::PdfFileSecurity::TryChangePassword(System::String ownerPassword, System::String newUserPassword, System::String newOwnerPassword, System::SharedPtr privilege, KeySize keySize, Algorithm cipher) diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/_index.md index f92d359eb2..195ccdf0ae 100644 --- a/english/cpp/aspose.pdf.facades/pdffilestamp/_index.md +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/_index.md @@ -52,7 +52,7 @@ class PdfFileStamp : public Aspose::Pdf::Facades::SaveableFacade | [get_OutputFile](./get_outputfile/)() const | Gets name and path of output file. | | [get_OutputStream](./get_outputstream/)() const | Gets output stream. | | [get_PageHeight](./get_pageheight/)() | Gets height of first page in souorce file. | -| [get_PageNumberRotation](./get_pagenumberrotation/)() | Gets rotation of page number. Rotation is in degrees. Default is 0. | +| [get_PageNumberRotation](./get_pagenumberrotation/)() | Gets rotation of page number. [Rotation](../../aspose.pdf/rotation/) is in degrees. Default is 0. | | [get_PageWidth](./get_pagewidth/)() | Gets width of first page in input file. | | [get_Response](./get_response/)() const | Gets Response object where result of operation will be stored. | | [get_SaveOptions](./get_saveoptions/)() const | Gets save options when result is stored as HttpResponse. Default value: [PdfSaveOptions](../../aspose.pdf/pdfsaveoptions/). | @@ -80,7 +80,7 @@ class PdfFileStamp : public Aspose::Pdf::Facades::SaveableFacade | [set_OptimizeSize](./set_optimizesize/)(bool) | Sets optimization flag. Equal resource streams in resultant file are merged into one PDF object if this flag set. This allows to decrease resultant file size but may cause slower execution and larger memory requirements. Default value: false. | | [set_OutputFile](./set_outputfile/)(System::String) | Sets name and path of output file. | | [set_OutputStream](./set_outputstream/)(System::SharedPtr\) | Sets output stream. | -| [set_PageNumberRotation](./set_pagenumberrotation/)(float) | Sets rotation of page number. Rotation is in degrees. Default is 0. | +| [set_PageNumberRotation](./set_pagenumberrotation/)(float) | Sets rotation of page number. [Rotation](../../aspose.pdf/rotation/) is in degrees. Default is 0. | | [set_Response](./set_response/)(System::SharedPtr\) | Sets Response object where result of operation will be stored. | | [set_SaveOptions](./set_saveoptions/)(System::SharedPtr\) | Sets save options when result is stored as HttpResponse. Default value: [PdfSaveOptions](../../aspose.pdf/pdfsaveoptions/). | | [set_StampId](./set_stampid/)(int32_t) | [Stamp](../stamp/) ID of next added stamp (incluiding page headers/hooters/page numbers). | diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/get_pagenumberrotation/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/get_pagenumberrotation/_index.md index 6f0b0c3a02..a28c1586fa 100644 --- a/english/cpp/aspose.pdf.facades/pdffilestamp/get_pagenumberrotation/_index.md +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/get_pagenumberrotation/_index.md @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf.facades/pdffilestamp/get_pagenumberrotation/ ## PdfFileStamp::get_PageNumberRotation method -Gets rotation of page number. Rotation is in degrees. Default is 0. +Gets rotation of page number. [Rotation](../../../aspose.pdf/rotation/) is in degrees. Default is 0. ```cpp float Aspose::Pdf::Facades::PdfFileStamp::get_PageNumberRotation() diff --git a/english/cpp/aspose.pdf.facades/pdffilestamp/set_pagenumberrotation/_index.md b/english/cpp/aspose.pdf.facades/pdffilestamp/set_pagenumberrotation/_index.md index cfbea9404b..a9bbeedd78 100644 --- a/english/cpp/aspose.pdf.facades/pdffilestamp/set_pagenumberrotation/_index.md +++ b/english/cpp/aspose.pdf.facades/pdffilestamp/set_pagenumberrotation/_index.md @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf.facades/pdffilestamp/set_pagenumberrotation/ ## PdfFileStamp::set_PageNumberRotation method -Sets rotation of page number. Rotation is in degrees. Default is 0. +Sets rotation of page number. [Rotation](../../../aspose.pdf/rotation/) is in degrees. Default is 0. ```cpp void Aspose::Pdf::Facades::PdfFileStamp::set_PageNumberRotation(float value) diff --git a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/_index.md b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/_index.md index f1cfd950bc..28566a7ca3 100644 --- a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/_index.md +++ b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/_index.md @@ -37,6 +37,8 @@ class PdfXmpMetadata : public Aspose::Pdf::Facades::SaveableFacade, | [get_IsFixedSize](./get_isfixedsize/)() const | Returns true is collection has fixed size. | | [get_IsReadOnly](./get_isreadonly/)() const override | Returns true if collection is read-only. | | [get_IsSynchronized](./get_issynchronized/)() | Returns true if collection is synchronized. | +| [get_Keys](./get_keys/)() const override | Gets keys from the dictionary. | +| [get_Values](./get_values/)() const override | Gets the collection of values in dictionary. | | [GetEnumerator](./getenumerator/)() override | Gets enumerator object of the dictionary. | | [GetNamespaceURIByPrefix](./getnamespaceuribyprefix/)(System::String) | Gets namespace URI by prefix. | | [GetPrefixByNamespaceURI](./getprefixbynamespaceuri/)(System::String) | Gets the prefix by namespace URI. | diff --git a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/get_keys/_index.md b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/get_keys/_index.md new file mode 100644 index 0000000000..e3372fd890 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/get_keys/_index.md @@ -0,0 +1,26 @@ +--- +title: Aspose::Pdf::Facades::PdfXmpMetadata::get_Keys method +linktitle: get_Keys +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfXmpMetadata::get_Keys method. Gets keys from the dictionary in C++.' +type: docs +weight: 1200 +url: /cpp/aspose.pdf.facades/pdfxmpmetadata/get_keys/ +--- +## PdfXmpMetadata::get_Keys method + + +Gets keys from the dictionary. + +```cpp +System::SharedPtr> Aspose::Pdf::Facades::PdfXmpMetadata::get_Keys() const override +``` + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [ICollection](../../../system.collections.generic/icollection/) +* Class [String](../../../system/string/) +* Class [PdfXmpMetadata](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/get_values/_index.md b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/get_values/_index.md new file mode 100644 index 0000000000..fd781b1677 --- /dev/null +++ b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/get_values/_index.md @@ -0,0 +1,26 @@ +--- +title: Aspose::Pdf::Facades::PdfXmpMetadata::get_Values method +linktitle: get_Values +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::Facades::PdfXmpMetadata::get_Values method. Gets the collection of values in dictionary in C++.' +type: docs +weight: 1300 +url: /cpp/aspose.pdf.facades/pdfxmpmetadata/get_values/ +--- +## PdfXmpMetadata::get_Values method + + +Gets the collection of values in dictionary. + +```cpp +System::SharedPtr>> Aspose::Pdf::Facades::PdfXmpMetadata::get_Values() const override +``` + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [ICollection](../../../system.collections.generic/icollection/) +* Class [XmpValue](../../../aspose.pdf/xmpvalue/) +* Class [PdfXmpMetadata](../) +* Namespace [Aspose::Pdf::Facades](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/getenumerator/_index.md b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/getenumerator/_index.md index f05255c1a0..c34305d57d 100644 --- a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/getenumerator/_index.md +++ b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/getenumerator/_index.md @@ -4,7 +4,7 @@ linktitle: GetEnumerator second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Facades::PdfXmpMetadata::GetEnumerator method. Gets enumerator object of the dictionary in C++.' type: docs -weight: 1200 +weight: 1400 url: /cpp/aspose.pdf.facades/pdfxmpmetadata/getenumerator/ --- ## PdfXmpMetadata::GetEnumerator method diff --git a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/getnamespaceuribyprefix/_index.md b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/getnamespaceuribyprefix/_index.md index 1d146007c2..17f0ba7202 100644 --- a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/getnamespaceuribyprefix/_index.md +++ b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/getnamespaceuribyprefix/_index.md @@ -4,7 +4,7 @@ linktitle: GetNamespaceURIByPrefix second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Facades::PdfXmpMetadata::GetNamespaceURIByPrefix method. Gets namespace URI by prefix in C++.' type: docs -weight: 1300 +weight: 1500 url: /cpp/aspose.pdf.facades/pdfxmpmetadata/getnamespaceuribyprefix/ --- ## PdfXmpMetadata::GetNamespaceURIByPrefix method diff --git a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/getprefixbynamespaceuri/_index.md b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/getprefixbynamespaceuri/_index.md index 2291167434..be4189fea9 100644 --- a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/getprefixbynamespaceuri/_index.md +++ b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/getprefixbynamespaceuri/_index.md @@ -4,7 +4,7 @@ linktitle: GetPrefixByNamespaceURI second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Facades::PdfXmpMetadata::GetPrefixByNamespaceURI method. Gets the prefix by namespace URI in C++.' type: docs -weight: 1400 +weight: 1600 url: /cpp/aspose.pdf.facades/pdfxmpmetadata/getprefixbynamespaceuri/ --- ## PdfXmpMetadata::GetPrefixByNamespaceURI method diff --git a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/getxmpmetadata/_index.md b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/getxmpmetadata/_index.md index de973bef88..27994b4fd9 100644 --- a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/getxmpmetadata/_index.md +++ b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/getxmpmetadata/_index.md @@ -4,7 +4,7 @@ linktitle: GetXmpMetadata second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Facades::PdfXmpMetadata::GetXmpMetadata method. Get the XmpMetadata of the input pdf in a xml format in C++.' type: docs -weight: 1500 +weight: 1700 url: /cpp/aspose.pdf.facades/pdfxmpmetadata/getxmpmetadata/ --- ## PdfXmpMetadata::GetXmpMetadata() method diff --git a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/idx_get/_index.md b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/idx_get/_index.md index 698bd63ba9..c5cf223008 100644 --- a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/idx_get/_index.md +++ b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/idx_get/_index.md @@ -4,7 +4,7 @@ linktitle: idx_get second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Facades::PdfXmpMetadata::idx_get method. Gets value of XMP metadata by key in C++.' type: docs -weight: 1600 +weight: 1800 url: /cpp/aspose.pdf.facades/pdfxmpmetadata/idx_get/ --- ## PdfXmpMetadata::idx_get(const DefaultMetadataProperties\&) const method diff --git a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/idx_set/_index.md b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/idx_set/_index.md index bb43db3cc4..97e6301d76 100644 --- a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/idx_set/_index.md +++ b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/idx_set/_index.md @@ -4,7 +4,7 @@ linktitle: idx_set second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Facades::PdfXmpMetadata::idx_set method. Gets value of XMP metadata by key in C++.' type: docs -weight: 1700 +weight: 1900 url: /cpp/aspose.pdf.facades/pdfxmpmetadata/idx_set/ --- ## PdfXmpMetadata::idx_set(const DefaultMetadataProperties\&, System::SharedPtr\) method diff --git a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/registernamespaceuri/_index.md b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/registernamespaceuri/_index.md index bfd0379629..e04d3f2e3f 100644 --- a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/registernamespaceuri/_index.md +++ b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/registernamespaceuri/_index.md @@ -4,7 +4,7 @@ linktitle: RegisterNamespaceURI second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Facades::PdfXmpMetadata::RegisterNamespaceURI method. Registers the namespace URI in C++.' type: docs -weight: 1800 +weight: 2000 url: /cpp/aspose.pdf.facades/pdfxmpmetadata/registernamespaceuri/ --- ## PdfXmpMetadata::RegisterNamespaceURI method diff --git a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/remove/_index.md b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/remove/_index.md index 93922cfac7..880817b1ac 100644 --- a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/remove/_index.md +++ b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/remove/_index.md @@ -4,7 +4,7 @@ linktitle: Remove second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Facades::PdfXmpMetadata::Remove method. Removes key/value pair from the collection in C++.' type: docs -weight: 1900 +weight: 2100 url: /cpp/aspose.pdf.facades/pdfxmpmetadata/remove/ --- ## PdfXmpMetadata::Remove(const System::Collections::Generic::KeyValuePair\\>\&) method diff --git a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/trygetvalue/_index.md b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/trygetvalue/_index.md index 58e79d152d..478ab1d73e 100644 --- a/english/cpp/aspose.pdf.facades/pdfxmpmetadata/trygetvalue/_index.md +++ b/english/cpp/aspose.pdf.facades/pdfxmpmetadata/trygetvalue/_index.md @@ -4,7 +4,7 @@ linktitle: TryGetValue second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::Facades::PdfXmpMetadata::TryGetValue method. Tries to find key in the dictionary and retreives value if found in C++.' type: docs -weight: 2000 +weight: 2200 url: /cpp/aspose.pdf.facades/pdfxmpmetadata/trygetvalue/ --- ## PdfXmpMetadata::TryGetValue method diff --git a/english/cpp/aspose.pdf.facades/replacetextstrategy/_index.md b/english/cpp/aspose.pdf.facades/replacetextstrategy/_index.md index 9d96210f3c..c050209ff1 100644 --- a/english/cpp/aspose.pdf.facades/replacetextstrategy/_index.md +++ b/english/cpp/aspose.pdf.facades/replacetextstrategy/_index.md @@ -21,18 +21,18 @@ class ReplaceTextStrategy : public System::Object | Enum | Description | | --- | --- | | [NoCharacterAction](./nocharacteraction/) | Action to perform if font does not contain required character. | -| [Scope](./scope/) | Scope where replace text operation is applied REPLACE_FIRST by default. | +| [Scope](./scope/) | [Scope](./scope/) where replace text operation is applied REPLACE_FIRST by default. | ## Methods | Method | Description | | --- | --- | | [get_IsRegularExpressionUsed](./get_isregularexpressionused/)() const | If false, string to find is a simple text. If true, string to find is regular expression. | | [get_NoCharacterBehavior](./get_nocharacterbehavior/)() const | Action which is performed when no approppriate font found for changed text (Throw exception / Substitute other font / Replace anyway). | -| [get_ReplaceScope](./get_replacescope/)() const | Scope of the replacement operation (replace first occurence or replace all occurences). | +| [get_ReplaceScope](./get_replacescope/)() const | [Scope](./scope/) of the replacement operation (replace first occurence or replace all occurences). | | [ReplaceTextStrategy](./replacetextstrategy/)() | | | [set_IsRegularExpressionUsed](./set_isregularexpressionused/)(bool) | If false, string to find is a simple text. If true, string to find is regular expression. | | [set_NoCharacterBehavior](./set_nocharacterbehavior/)(ReplaceTextStrategy::NoCharacterAction) | Action which is performed when no approppriate font found for changed text (Throw exception / Substitute other font / Replace anyway). | -| [set_ReplaceScope](./set_replacescope/)(ReplaceTextStrategy::Scope) | Scope of the replacement operation (replace first occurence or replace all occurences). | +| [set_ReplaceScope](./set_replacescope/)(ReplaceTextStrategy::Scope) | [Scope](./scope/) of the replacement operation (replace first occurence or replace all occurences). | ## See Also * Class [Object](../../system/object/) diff --git a/english/cpp/aspose.pdf.facades/replacetextstrategy/get_replacescope/_index.md b/english/cpp/aspose.pdf.facades/replacetextstrategy/get_replacescope/_index.md index aa9362b261..ef68da1008 100644 --- a/english/cpp/aspose.pdf.facades/replacetextstrategy/get_replacescope/_index.md +++ b/english/cpp/aspose.pdf.facades/replacetextstrategy/get_replacescope/_index.md @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf.facades/replacetextstrategy/get_replacescope/ ## ReplaceTextStrategy::get_ReplaceScope method -Scope of the replacement operation (replace first occurence or replace all occurences). +[Scope](../scope/) of the replacement operation (replace first occurence or replace all occurences). ```cpp ReplaceTextStrategy::Scope Aspose::Pdf::Facades::ReplaceTextStrategy::get_ReplaceScope() const diff --git a/english/cpp/aspose.pdf.facades/replacetextstrategy/scope/_index.md b/english/cpp/aspose.pdf.facades/replacetextstrategy/scope/_index.md index 8ad4efba34..741607fb28 100644 --- a/english/cpp/aspose.pdf.facades/replacetextstrategy/scope/_index.md +++ b/english/cpp/aspose.pdf.facades/replacetextstrategy/scope/_index.md @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf.facades/replacetextstrategy/scope/ ## Scope enum -Scope where replace text operation is applied REPLACE_FIRST by default. +[Scope](./) where replace text operation is applied REPLACE_FIRST by default. ```cpp enum class Scope diff --git a/english/cpp/aspose.pdf.facades/replacetextstrategy/set_replacescope/_index.md b/english/cpp/aspose.pdf.facades/replacetextstrategy/set_replacescope/_index.md index e2b53968a4..8aab6413db 100644 --- a/english/cpp/aspose.pdf.facades/replacetextstrategy/set_replacescope/_index.md +++ b/english/cpp/aspose.pdf.facades/replacetextstrategy/set_replacescope/_index.md @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf.facades/replacetextstrategy/set_replacescope/ ## ReplaceTextStrategy::set_ReplaceScope method -Scope of the replacement operation (replace first occurence or replace all occurences). +[Scope](../scope/) of the replacement operation (replace first occurence or replace all occurences). ```cpp void Aspose::Pdf::Facades::ReplaceTextStrategy::set_ReplaceScope(ReplaceTextStrategy::Scope value) diff --git a/english/cpp/aspose.pdf.facades/stamp/_index.md b/english/cpp/aspose.pdf.facades/stamp/_index.md index eda3bb5dd1..06fcb00e6c 100644 --- a/english/cpp/aspose.pdf.facades/stamp/_index.md +++ b/english/cpp/aspose.pdf.facades/stamp/_index.md @@ -26,7 +26,7 @@ class Stamp : public System::Object | [BindPdf](./bindpdf/)(System::String, int32_t) | Sets PDF file and number of page which will be used as stamp. | | [BindPdf](./bindpdf/)(System::SharedPtr\, int32_t) | Sets PDF file and number of page which will be used as stamp. | | [BindTextState](./bindtextstate/)(System::SharedPtr\) | Sets text state of stamp text. | -| [get_BlendingSpace](./get_blendingspace/)() const | Gets a BlendingColorSpace value that defines a color space that is used to perform transparency and blending operations on the page. | +| [get_BlendingSpace](./get_blendingspace/)() const | Gets a [BlendingColorSpace](../blendingcolorspace/) value that defines a color space that is used to perform transparency and blending operations on the page. | | [get_IsBackground](./get_isbackground/)() const | Gets background status. If true stamp will be placed as background of the spamped page. By default is set to false. | | [get_Opacity](./get_opacity/)() | Gets opacity of the stamp. | | [get_PageNumber](./get_pagenumber/)() const | Gets page number. | @@ -34,7 +34,7 @@ class Stamp : public System::Object | [get_Quality](./get_quality/)() const | Gets quality of image stamp in percent. Valiued values 0..100%. | | [get_Rotation](./get_rotation/)() const | Gets rotation of the stamp in degrees. | | [get_StampId](./get_stampid/)() const | Gets identifier of stamp. | -| [set_BlendingSpace](./set_blendingspace/)(BlendingColorSpace) | Sets a BlendingColorSpace value that defines a color space that is used to perform transparency and blending operations on the page. | +| [set_BlendingSpace](./set_blendingspace/)(BlendingColorSpace) | Sets a [BlendingColorSpace](../blendingcolorspace/) value that defines a color space that is used to perform transparency and blending operations on the page. | | [set_IsBackground](./set_isbackground/)(bool) | Sets background status. If true stamp will be placed as background of the spamped page. By default is set to false. | | [set_Opacity](./set_opacity/)(float) | Sets opacity of the stamp. | | [set_PageNumber](./set_pagenumber/)(int32_t) | Sets page number. | diff --git a/english/cpp/aspose.pdf.facades/stamp/get_blendingspace/_index.md b/english/cpp/aspose.pdf.facades/stamp/get_blendingspace/_index.md index 30bc6a8bca..a8d40962c4 100644 --- a/english/cpp/aspose.pdf.facades/stamp/get_blendingspace/_index.md +++ b/english/cpp/aspose.pdf.facades/stamp/get_blendingspace/_index.md @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf.facades/stamp/get_blendingspace/ ## Stamp::get_BlendingSpace method -Gets a BlendingColorSpace value that defines a color space that is used to perform transparency and blending operations on the page. +Gets a [BlendingColorSpace](../../blendingcolorspace/) value that defines a color space that is used to perform transparency and blending operations on the page. ```cpp BlendingColorSpace Aspose::Pdf::Facades::Stamp::get_BlendingSpace() const diff --git a/english/cpp/aspose.pdf.facades/stamp/set_blendingspace/_index.md b/english/cpp/aspose.pdf.facades/stamp/set_blendingspace/_index.md index c0c43884e8..cc0048d1c8 100644 --- a/english/cpp/aspose.pdf.facades/stamp/set_blendingspace/_index.md +++ b/english/cpp/aspose.pdf.facades/stamp/set_blendingspace/_index.md @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf.facades/stamp/set_blendingspace/ ## Stamp::set_BlendingSpace method -Sets a BlendingColorSpace value that defines a color space that is used to perform transparency and blending operations on the page. +Sets a [BlendingColorSpace](../../blendingcolorspace/) value that defines a color space that is used to perform transparency and blending operations on the page. ```cpp void Aspose::Pdf::Facades::Stamp::set_BlendingSpace(BlendingColorSpace value) diff --git a/english/cpp/aspose.pdf.forms/_index.md b/english/cpp/aspose.pdf.forms/_index.md index 8e1ff902e6..0ea295b780 100644 --- a/english/cpp/aspose.pdf.forms/_index.md +++ b/english/cpp/aspose.pdf.forms/_index.md @@ -55,7 +55,7 @@ The **[Aspose.Pdf.Forms](./)** namespace has classes which describes forms (stan | [ScalingMode](./scalingmode/) | The type of scaling that shall be used. | | [ScalingReason](./scalingreason/) | The circumstances under which the icon shall be scaled inside the annotation rectangle. | | [SubjectNameElements](./subjectnameelements/) | Enumeration describes elements in signature subject string. | -| [Symbology](./symbology/) | A (Barcode) Symbology defines the technical details of a particular type of barcode: the width of the bars, character set, method of encoding, checksum specifications, etc. | +| [Symbology](./symbology/) | A (Barcode) [Symbology](./symbology/) defines the technical details of a particular type of barcode: the width of the bars, character set, method of encoding, checksum specifications, etc. | ## Typedefs | Typedef | Description | diff --git a/english/cpp/aspose.pdf.forms/checkboxfield/checkboxfield/_index.md b/english/cpp/aspose.pdf.forms/checkboxfield/checkboxfield/_index.md index fc38394e59..d7dd9b1e9a 100644 --- a/english/cpp/aspose.pdf.forms/checkboxfield/checkboxfield/_index.md +++ b/english/cpp/aspose.pdf.forms/checkboxfield/checkboxfield/_index.md @@ -18,7 +18,7 @@ Aspose::Pdf::Forms::CheckboxField::CheckboxField() ## Deprecated -For full field functionality, a binding to the document is required - use CheckboxField(Document doc) +For full field functionality, a binding to the document is required - use CheckboxField(Document doc) ## See Also diff --git a/english/cpp/aspose.pdf.forms/iconfit/_index.md b/english/cpp/aspose.pdf.forms/iconfit/_index.md index 74acaa35af..f2d0da545b 100644 --- a/english/cpp/aspose.pdf.forms/iconfit/_index.md +++ b/english/cpp/aspose.pdf.forms/iconfit/_index.md @@ -25,8 +25,8 @@ class IconFit : public System::Object | [get_ScalingMode](./get_scalingmode/)() | The type of scaling that shall be used. ///. | | [get_ScalingReason](./get_scalingreason/)() | Gets scaling reason. | | [get_SpreadOnBorder](./get_spreadonborder/)() | If true, indicates that the button appearance shall be scaled to fit fully within the bounds of the annotation without taking into consideration the line width of the border. | -| static [NameToScalingMode](./nametoscalingmode/)(System::String) | Converts scaling mode name into ScalingMode object. | -| static [NameToScalingReason](./nametoscalingreason/)(System::String) | Converts name of scaling reason into ScalingReason object. | +| static [NameToScalingMode](./nametoscalingmode/)(System::String) | Converts scaling mode name into [ScalingMode](../scalingmode/) object. | +| static [NameToScalingReason](./nametoscalingreason/)(System::String) | Converts name of scaling reason into [ScalingReason](../scalingreason/) object. | | static [ScalingModeToName](./scalingmodetoname/)(Aspose::Pdf::Forms::ScalingMode) | Converts scaling mode object into name. | | static [ScalingReasonToName](./scalingreasontoname/)(Aspose::Pdf::Forms::ScalingReason) | Converts scaling reason obejct to name. | | [set_LeftoverBottom](./set_leftoverbottom/)(double) | Sets space to allocate at the bottom of the icon. | diff --git a/english/cpp/aspose.pdf.forms/iconfit/nametoscalingmode/_index.md b/english/cpp/aspose.pdf.forms/iconfit/nametoscalingmode/_index.md index 1e69dd61bc..af444f40b4 100644 --- a/english/cpp/aspose.pdf.forms/iconfit/nametoscalingmode/_index.md +++ b/english/cpp/aspose.pdf.forms/iconfit/nametoscalingmode/_index.md @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf.forms/iconfit/nametoscalingmode/ ## IconFit::NameToScalingMode method -Converts scaling mode name into ScalingMode object. +Converts scaling mode name into [ScalingMode](../../scalingmode/) object. ```cpp static Aspose::Pdf::Forms::ScalingMode Aspose::Pdf::Forms::IconFit::NameToScalingMode(System::String mode) diff --git a/english/cpp/aspose.pdf.forms/iconfit/nametoscalingreason/_index.md b/english/cpp/aspose.pdf.forms/iconfit/nametoscalingreason/_index.md index e02852e422..10b9b8a4c0 100644 --- a/english/cpp/aspose.pdf.forms/iconfit/nametoscalingreason/_index.md +++ b/english/cpp/aspose.pdf.forms/iconfit/nametoscalingreason/_index.md @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf.forms/iconfit/nametoscalingreason/ ## IconFit::NameToScalingReason method -Converts name of scaling reason into ScalingReason object. +Converts name of scaling reason into [ScalingReason](../../scalingreason/) object. ```cpp static Aspose::Pdf::Forms::ScalingReason Aspose::Pdf::Forms::IconFit::NameToScalingReason(System::String reason) diff --git a/english/cpp/aspose.pdf.forms/symbology/_index.md b/english/cpp/aspose.pdf.forms/symbology/_index.md index aa05ca3cda..23a37ed789 100644 --- a/english/cpp/aspose.pdf.forms/symbology/_index.md +++ b/english/cpp/aspose.pdf.forms/symbology/_index.md @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf.forms/symbology/ ## Symbology enum -A (Barcode) Symbology defines the technical details of a particular type of barcode: the width of the bars, character set, method of encoding, checksum specifications, etc. +A (Barcode) [Symbology](./) defines the technical details of a particular type of barcode: the width of the bars, character set, method of encoding, checksum specifications, etc. ```cpp enum class Symbology diff --git a/english/cpp/aspose.pdf.forms/textboxfield/textboxfield/_index.md b/english/cpp/aspose.pdf.forms/textboxfield/textboxfield/_index.md index 59740c5cf6..2fe5d7ea7c 100644 --- a/english/cpp/aspose.pdf.forms/textboxfield/textboxfield/_index.md +++ b/english/cpp/aspose.pdf.forms/textboxfield/textboxfield/_index.md @@ -18,7 +18,7 @@ Aspose::Pdf::Forms::TextBoxField::TextBoxField() ## Deprecated -For full field functionality, a binding to the document is required - use TextBoxField(Document doc) +For full field functionality, a binding to the document is required - use TextBoxField(Document doc) ## See Also diff --git a/english/cpp/aspose.pdf.security/validationoptions/_index.md b/english/cpp/aspose.pdf.security/validationoptions/_index.md index 6e18d3ac46..0fa2e2ef05 100644 --- a/english/cpp/aspose.pdf.security/validationoptions/_index.md +++ b/english/cpp/aspose.pdf.security/validationoptions/_index.md @@ -23,11 +23,11 @@ class ValidationOptions : public System::Object | [get_CheckCertificateChain](./get_checkcertificatechain/)() const | Gets a value indicating whether the certificate chain should be checked during the validation process. | | [get_RequestTimeout](./get_requesttimeout/)() const | Gets the timeout duration, in milliseconds, for network-related operations during the validation process. The RequestTimeout property defines the maximum time the system should wait for a network response when accessing online resources, such as revocation status or OCSP servers. | | [get_ValidationMethod](./get_validationmethod/)() const | Gets the method used to validate a certificate. | -| [get_ValidationMode](./get_validationmode/)() const | Gets the mode of validation for digital signatures in a PDF document. The ValidationMode property determines the strictness of the validation process. | +| [get_ValidationMode](./get_validationmode/)() const | Gets the mode of validation for digital signatures in a PDF document. The [ValidationMode](../validationmode/) property determines the strictness of the validation process. | | [set_CheckCertificateChain](./set_checkcertificatechain/)(bool) | Sets a value indicating whether the certificate chain should be checked during the validation process. | | [set_RequestTimeout](./set_requesttimeout/)(int32_t) | Sets the timeout duration, in milliseconds, for network-related operations during the validation process. The RequestTimeout property defines the maximum time the system should wait for a network response when accessing online resources, such as revocation status or OCSP servers. | | [set_ValidationMethod](./set_validationmethod/)(Aspose::Pdf::Security::ValidationMethod) | Sets the method used to validate a certificate. | -| [set_ValidationMode](./set_validationmode/)(Aspose::Pdf::Security::ValidationMode) | Sets the mode of validation for digital signatures in a PDF document. The ValidationMode property determines the strictness of the validation process. | +| [set_ValidationMode](./set_validationmode/)(Aspose::Pdf::Security::ValidationMode) | Sets the mode of validation for digital signatures in a PDF document. The [ValidationMode](../validationmode/) property determines the strictness of the validation process. | | [ValidationOptions](./validationoptions/)() | Creates an instance of [ValidationOptions](./) class. | ## See Also diff --git a/english/cpp/aspose.pdf.security/validationoptions/get_validationmode/_index.md b/english/cpp/aspose.pdf.security/validationoptions/get_validationmode/_index.md index 781c72acf1..830224380e 100644 --- a/english/cpp/aspose.pdf.security/validationoptions/get_validationmode/_index.md +++ b/english/cpp/aspose.pdf.security/validationoptions/get_validationmode/_index.md @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf.security/validationoptions/get_validationmode/ ## ValidationOptions::get_ValidationMode method -Gets the mode of validation for digital signatures in a PDF document. The ValidationMode property determines the strictness of the validation process. +Gets the mode of validation for digital signatures in a PDF document. The [ValidationMode](../../validationmode/) property determines the strictness of the validation process. ```cpp Aspose::Pdf::Security::ValidationMode Aspose::Pdf::Security::ValidationOptions::get_ValidationMode() const diff --git a/english/cpp/aspose.pdf.security/validationoptions/set_validationmode/_index.md b/english/cpp/aspose.pdf.security/validationoptions/set_validationmode/_index.md index f55a833629..25f2047ac5 100644 --- a/english/cpp/aspose.pdf.security/validationoptions/set_validationmode/_index.md +++ b/english/cpp/aspose.pdf.security/validationoptions/set_validationmode/_index.md @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf.security/validationoptions/set_validationmode/ ## ValidationOptions::set_ValidationMode method -Sets the mode of validation for digital signatures in a PDF document. The ValidationMode property determines the strictness of the validation process. +Sets the mode of validation for digital signatures in a PDF document. The [ValidationMode](../../validationmode/) property determines the strictness of the validation process. ```cpp void Aspose::Pdf::Security::ValidationOptions::set_ValidationMode(Aspose::Pdf::Security::ValidationMode value) diff --git a/english/cpp/aspose.pdf.text/_index.md b/english/cpp/aspose.pdf.text/_index.md index 8c6c183691..d57c78c367 100644 --- a/english/cpp/aspose.pdf.text/_index.md +++ b/english/cpp/aspose.pdf.text/_index.md @@ -72,7 +72,7 @@ url: /cpp/aspose.pdf.text/ | Enum | Description | | --- | --- | -| [CoordinateOrigin](./coordinateorigin/) | [Text](./) CoordinateOrigin enumeration. | +| [CoordinateOrigin](./coordinateorigin/) | [Text](./)[CoordinateOrigin](./coordinateorigin/) enumeration. | | [FontStyles](./fontstyles/) | Specifies style information applied to text. | | [FontTypes](./fonttypes/) | Supported font types enumeration. | | [SubstitutionFontCategories](./substitutionfontcategories/) | Represents font categories that can be substituted. | diff --git a/english/cpp/aspose.pdf.text/coordinateorigin/_index.md b/english/cpp/aspose.pdf.text/coordinateorigin/_index.md index b1c8e12855..b7cac61ae6 100644 --- a/english/cpp/aspose.pdf.text/coordinateorigin/_index.md +++ b/english/cpp/aspose.pdf.text/coordinateorigin/_index.md @@ -2,7 +2,7 @@ title: Aspose::Pdf::Text::CoordinateOrigin enum linktitle: CoordinateOrigin second_title: Aspose.PDF for C++ API Reference -description: 'Aspose::Pdf::Text::CoordinateOrigin enum. Text CoordinateOrigin enumeration in C++.' +description: 'Aspose::Pdf::Text::CoordinateOrigin enum. TextCoordinateOrigin enumeration in C++.' type: docs weight: 5500 url: /cpp/aspose.pdf.text/coordinateorigin/ @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf.text/coordinateorigin/ ## CoordinateOrigin enum -[Text](../) CoordinateOrigin enumeration. +[Text](../)[CoordinateOrigin](./) enumeration. ```cpp enum class CoordinateOrigin diff --git a/english/cpp/aspose.pdf.text/textformattingoptions/wordwrapmode/_index.md b/english/cpp/aspose.pdf.text/textformattingoptions/wordwrapmode/_index.md index c771796fc2..f6498a42c6 100644 --- a/english/cpp/aspose.pdf.text/textformattingoptions/wordwrapmode/_index.md +++ b/english/cpp/aspose.pdf.text/textformattingoptions/wordwrapmode/_index.md @@ -23,7 +23,7 @@ enum class WordWrapMode | NoWrap | 0 | No wrapping is performed. | | DiscretionaryHyphenation | 1 | Discretionary hyphenation is performed. Allows breaking words in the middle. | | ByWords | 2 | Word wrapping only wraps complete words. If the complete word cannot be wrapped, attempts to use discretionary hyphenation. | -| Undefined | 3 | WordWrapMode not set. Wrapping strategies of upper-level structure (table cell, paragraph, etc.) will be used. | +| Undefined | 3 | [WordWrapMode](./) not set. Wrapping strategies of upper-level structure (table cell, paragraph, etc.) will be used. | ## See Also diff --git a/english/cpp/aspose.pdf.text/textfragmentstate/_index.md b/english/cpp/aspose.pdf.text/textfragmentstate/_index.md index d098ca6e60..cb46eb6e6a 100644 --- a/english/cpp/aspose.pdf.text/textfragmentstate/_index.md +++ b/english/cpp/aspose.pdf.text/textfragmentstate/_index.md @@ -23,7 +23,7 @@ class TextFragmentState : public Aspose::Pdf::Text::TextState | [ApplyChangesFrom](./applychangesfrom/)(System::SharedPtr\) override | Applies settings from another textState. | | [get_BackgroundColor](./get_backgroundcolor/)() override | Sets background color of the text, represented by the [TextFragment](../textfragment/) object. | | [get_CharacterSpacing](./get_characterspacing/)() override | Gets character spacing of the text, represented by the [TextFragment](../textfragment/) object. | -| [get_CoordinateOrigin](./get_coordinateorigin/)() override | Gets text CoordinateOrigin. If CoordinateOrigin is Descender, the text Y coordinate corresponds to the font's lowest point. If CoordinateOrigin is BaseLine, the text Y coordinate corresponds to the font's baseline. The default value is Descender. If the font's Descent value is too big, text can be rendered higher than other fonts. In this case, CoordinateOrigin BaseLine can be selected for better text rendering. | +| [get_CoordinateOrigin](./get_coordinateorigin/)() override | Gets text [CoordinateOrigin](../coordinateorigin/). If [CoordinateOrigin](../coordinateorigin/) is Descender, the text Y coordinate corresponds to the font's lowest point. If [CoordinateOrigin](../coordinateorigin/) is BaseLine, the text Y coordinate corresponds to the font's baseline. The default value is Descender. If the font's Descent value is too big, text can be rendered higher than other fonts. In this case, [CoordinateOrigin](../coordinateorigin/) BaseLine can be selected for better text rendering. | | [get_DrawTextRectangleBorder](./get_drawtextrectangleborder/)() const | Gets if text rectangle border drawn flag. | | [get_Font](./get_font/)() override | Gets font of the text, represented by the [TextFragment](../textfragment/) object. | | [get_FontSize](./get_fontsize/)() override | Gets font size of the text, represented by the [TextFragment](../textfragment/) object. | @@ -48,7 +48,7 @@ class TextFragmentState : public Aspose::Pdf::Text::TextState | [MeasureString](./measurestring/)(System::String) override | Measures the string. | | [set_BackgroundColor](./set_backgroundcolor/)(System::SharedPtr\) override | Sets background color of the text, represented by the [TextFragment](../textfragment/) object. | | [set_CharacterSpacing](./set_characterspacing/)(float) override | Sets character spacing of the text, represented by the [TextFragment](../textfragment/) object. | -| [set_CoordinateOrigin](./set_coordinateorigin/)(Aspose::Pdf::Text::CoordinateOrigin) override | Sets text CoordinateOrigin. If CoordinateOrigin is Descender, the text Y coordinate corresponds to the font's lowest point. If CoordinateOrigin is BaseLine, the text Y coordinate corresponds to the font's baseline. The default value is Descender. If the font's Descent value is too big, text can be rendered higher than other fonts. In this case, CoordinateOrigin BaseLine can be selected for better text rendering. | +| [set_CoordinateOrigin](./set_coordinateorigin/)(Aspose::Pdf::Text::CoordinateOrigin) override | Sets text [CoordinateOrigin](../coordinateorigin/). If [CoordinateOrigin](../coordinateorigin/) is Descender, the text Y coordinate corresponds to the font's lowest point. If [CoordinateOrigin](../coordinateorigin/) is BaseLine, the text Y coordinate corresponds to the font's baseline. The default value is Descender. If the font's Descent value is too big, text can be rendered higher than other fonts. In this case, [CoordinateOrigin](../coordinateorigin/) BaseLine can be selected for better text rendering. | | [set_DrawTextRectangleBorder](./set_drawtextrectangleborder/)(bool) | Sets if text rectangle border drawn flag. | | [set_Font](./set_font/)(System::SharedPtr\) override | Sets font of the text, represented by the [TextFragment](../textfragment/) object. | | [set_FontSize](./set_fontsize/)(float) override | Sets font size of the text, represented by the [TextFragment](../textfragment/) object. | diff --git a/english/cpp/aspose.pdf.text/textfragmentstate/get_coordinateorigin/_index.md b/english/cpp/aspose.pdf.text/textfragmentstate/get_coordinateorigin/_index.md index c7fc38fd96..6cb26a5638 100644 --- a/english/cpp/aspose.pdf.text/textfragmentstate/get_coordinateorigin/_index.md +++ b/english/cpp/aspose.pdf.text/textfragmentstate/get_coordinateorigin/_index.md @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf.text/textfragmentstate/get_coordinateorigin/ ## TextFragmentState::get_CoordinateOrigin method -Gets text CoordinateOrigin. If CoordinateOrigin is Descender, the text Y coordinate corresponds to the font's lowest point. If CoordinateOrigin is BaseLine, the text Y coordinate corresponds to the font's baseline. The default value is Descender. If the font's Descent value is too big, text can be rendered higher than other fonts. In this case, CoordinateOrigin BaseLine can be selected for better text rendering. +Gets text [CoordinateOrigin](../../coordinateorigin/). If [CoordinateOrigin](../../coordinateorigin/) is Descender, the text Y coordinate corresponds to the font's lowest point. If [CoordinateOrigin](../../coordinateorigin/) is BaseLine, the text Y coordinate corresponds to the font's baseline. The default value is Descender. If the font's Descent value is too big, text can be rendered higher than other fonts. In this case, [CoordinateOrigin](../../coordinateorigin/) BaseLine can be selected for better text rendering. ```cpp Aspose::Pdf::Text::CoordinateOrigin Aspose::Pdf::Text::TextFragmentState::get_CoordinateOrigin() override diff --git a/english/cpp/aspose.pdf.text/textfragmentstate/set_coordinateorigin/_index.md b/english/cpp/aspose.pdf.text/textfragmentstate/set_coordinateorigin/_index.md index 7c7c5be8b7..0e8d892714 100644 --- a/english/cpp/aspose.pdf.text/textfragmentstate/set_coordinateorigin/_index.md +++ b/english/cpp/aspose.pdf.text/textfragmentstate/set_coordinateorigin/_index.md @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf.text/textfragmentstate/set_coordinateorigin/ ## TextFragmentState::set_CoordinateOrigin method -Sets text CoordinateOrigin. If CoordinateOrigin is Descender, the text Y coordinate corresponds to the font's lowest point. If CoordinateOrigin is BaseLine, the text Y coordinate corresponds to the font's baseline. The default value is Descender. If the font's Descent value is too big, text can be rendered higher than other fonts. In this case, CoordinateOrigin BaseLine can be selected for better text rendering. +Sets text [CoordinateOrigin](../../coordinateorigin/). If [CoordinateOrigin](../../coordinateorigin/) is Descender, the text Y coordinate corresponds to the font's lowest point. If [CoordinateOrigin](../../coordinateorigin/) is BaseLine, the text Y coordinate corresponds to the font's baseline. The default value is Descender. If the font's Descent value is too big, text can be rendered higher than other fonts. In this case, [CoordinateOrigin](../../coordinateorigin/) BaseLine can be selected for better text rendering. ```cpp void Aspose::Pdf::Text::TextFragmentState::set_CoordinateOrigin(Aspose::Pdf::Text::CoordinateOrigin value) override diff --git a/english/cpp/aspose.pdf.text/textreplaceoptions/_index.md b/english/cpp/aspose.pdf.text/textreplaceoptions/_index.md index 129b0abffc..8b4d82e2af 100644 --- a/english/cpp/aspose.pdf.text/textreplaceoptions/_index.md +++ b/english/cpp/aspose.pdf.text/textreplaceoptions/_index.md @@ -22,7 +22,7 @@ class TextReplaceOptions : public Aspose::Pdf::Text::TextOptions | --- | --- | | [FontSizeAdjustment](./fontsizeadjustment/) | Specifies a policy for how the font size of text should be adjusted to fit within a containing area. | | [ReplaceAdjustment](./replaceadjustment/) | Determines action that will be done after replace of text fragment to more short. None - no action, replaced text may overlaps rest of the line; AdjustSpaceWidth - tries adjust spaces between words to keep line length; WholeWordsHyphenation - tries distribute words between paragraph lines to keep paragraph's right field; ShiftRestOfLine - shifts rest of the line according to changing length of text, length of the line may be changed; Default value is ShiftRestOfLine. | -| [Scope](./scope/) | Scope where replace text operation is applied REPLACE_FIRST by default This obsolete option was kept for compatibility. It affects to PdfContentEditor and has no effect to [TextFragmentAbsorber](../textfragmentabsorber/). | +| [Scope](./scope/) | [Scope](./scope/) where replace text operation is applied REPLACE_FIRST by default This obsolete option was kept for compatibility. It affects to PdfContentEditor and has no effect to [TextFragmentAbsorber](../textfragmentabsorber/). | ## Methods | Method | Description | diff --git a/english/cpp/aspose.pdf.text/textreplaceoptions/scope/_index.md b/english/cpp/aspose.pdf.text/textreplaceoptions/scope/_index.md index 9f2f417c1a..71ac02a358 100644 --- a/english/cpp/aspose.pdf.text/textreplaceoptions/scope/_index.md +++ b/english/cpp/aspose.pdf.text/textreplaceoptions/scope/_index.md @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf.text/textreplaceoptions/scope/ ## Scope enum -Scope where replace text operation is applied REPLACE_FIRST by default This obsolete option was kept for compatibility. It affects to PdfContentEditor and has no effect to [TextFragmentAbsorber](../../textfragmentabsorber/). +[Scope](./) where replace text operation is applied REPLACE_FIRST by default This obsolete option was kept for compatibility. It affects to PdfContentEditor and has no effect to [TextFragmentAbsorber](../../textfragmentabsorber/). ```cpp enum class Scope diff --git a/english/cpp/aspose.pdf.text/textreplaceoptions/textreplaceoptions/_index.md b/english/cpp/aspose.pdf.text/textreplaceoptions/textreplaceoptions/_index.md index 0325c735d4..b4c46c85b5 100644 --- a/english/cpp/aspose.pdf.text/textreplaceoptions/textreplaceoptions/_index.md +++ b/english/cpp/aspose.pdf.text/textreplaceoptions/textreplaceoptions/_index.md @@ -19,7 +19,7 @@ Aspose::Pdf::Text::TextReplaceOptions::TextReplaceOptions(TextReplaceOptions::Re | Parameter | Type | Description | | --- | --- | --- | -| adjustment | TextReplaceOptions::ReplaceAdjustment | ReplaceAdjustment object. | +| adjustment | TextReplaceOptions::ReplaceAdjustment | [ReplaceAdjustment](../replaceadjustment/) object. | ## See Also @@ -39,7 +39,7 @@ Aspose::Pdf::Text::TextReplaceOptions::TextReplaceOptions(TextReplaceOptions::Sc | Parameter | Type | Description | | --- | --- | --- | -| scope | TextReplaceOptions::Scope | Scope object. | +| scope | TextReplaceOptions::Scope | [Scope](../scope/) object. | ## See Also diff --git a/english/cpp/aspose.pdf.text/textstate/_index.md b/english/cpp/aspose.pdf.text/textstate/_index.md index 6101e7a08f..3074458fba 100644 --- a/english/cpp/aspose.pdf.text/textstate/_index.md +++ b/english/cpp/aspose.pdf.text/textstate/_index.md @@ -23,7 +23,7 @@ class TextState : public System::Object | virtual [ApplyChangesFrom](./applychangesfrom/)(System::SharedPtr\) | Applies settings from another textState. | | virtual [get_BackgroundColor](./get_backgroundcolor/)() | Sets background color of the text. | | virtual [get_CharacterSpacing](./get_characterspacing/)() | Gets character spacing of the text. | -| virtual [get_CoordinateOrigin](./get_coordinateorigin/)() | Gets text CoordinateOrigin. If CoordinateOrigin is Descender, the text Y coordinate corresponds to the font's lowest point. If CoordinateOrigin is BaseLine, the text Y coordinate corresponds to the font's baseline. The default value is Descender. If the font's Descent value is too big, text can be rendered higher than other fonts. In this case, CoordinateOrigin BaseLine can be selected for better text rendering. | +| virtual [get_CoordinateOrigin](./get_coordinateorigin/)() | Gets text [CoordinateOrigin](../coordinateorigin/). If [CoordinateOrigin](../coordinateorigin/) is Descender, the text Y coordinate corresponds to the font's lowest point. If [CoordinateOrigin](../coordinateorigin/) is BaseLine, the text Y coordinate corresponds to the font's baseline. The default value is Descender. If the font's Descent value is too big, text can be rendered higher than other fonts. In this case, [CoordinateOrigin](../coordinateorigin/) BaseLine can be selected for better text rendering. | | virtual [get_Font](./get_font/)() | Gets font of the text. | | virtual [get_FontSize](./get_fontsize/)() | Gets font size of the text. | | virtual [get_FontStyle](./get_fontstyle/)() | Sets font style of the text. | @@ -44,7 +44,7 @@ class TextState : public System::Object | virtual [MeasureString](./measurestring/)(System::String) | Measures the string. | | virtual [set_BackgroundColor](./set_backgroundcolor/)(System::SharedPtr\) | Sets background color of the text. | | virtual [set_CharacterSpacing](./set_characterspacing/)(float) | Sets character spacing of the text. | -| virtual [set_CoordinateOrigin](./set_coordinateorigin/)(Aspose::Pdf::Text::CoordinateOrigin) | Sets text CoordinateOrigin. If CoordinateOrigin is Descender, the text Y coordinate corresponds to the font's lowest point. If CoordinateOrigin is BaseLine, the text Y coordinate corresponds to the font's baseline. The default value is Descender. If the font's Descent value is too big, text can be rendered higher than other fonts. In this case, CoordinateOrigin BaseLine can be selected for better text rendering. | +| virtual [set_CoordinateOrigin](./set_coordinateorigin/)(Aspose::Pdf::Text::CoordinateOrigin) | Sets text [CoordinateOrigin](../coordinateorigin/). If [CoordinateOrigin](../coordinateorigin/) is Descender, the text Y coordinate corresponds to the font's lowest point. If [CoordinateOrigin](../coordinateorigin/) is BaseLine, the text Y coordinate corresponds to the font's baseline. The default value is Descender. If the font's Descent value is too big, text can be rendered higher than other fonts. In this case, [CoordinateOrigin](../coordinateorigin/) BaseLine can be selected for better text rendering. | | virtual [set_Font](./set_font/)(System::SharedPtr\) | Sets font of the text. | | virtual [set_FontSize](./set_fontsize/)(float) | Sets font size of the text. | | virtual [set_FontStyle](./set_fontstyle/)(FontStyles) | Sets font style of the text. | diff --git a/english/cpp/aspose.pdf.text/textstate/get_coordinateorigin/_index.md b/english/cpp/aspose.pdf.text/textstate/get_coordinateorigin/_index.md index 81e0ff2af5..061443530d 100644 --- a/english/cpp/aspose.pdf.text/textstate/get_coordinateorigin/_index.md +++ b/english/cpp/aspose.pdf.text/textstate/get_coordinateorigin/_index.md @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf.text/textstate/get_coordinateorigin/ ## TextState::get_CoordinateOrigin method -Gets text CoordinateOrigin. If CoordinateOrigin is Descender, the text Y coordinate corresponds to the font's lowest point. If CoordinateOrigin is BaseLine, the text Y coordinate corresponds to the font's baseline. The default value is Descender. If the font's Descent value is too big, text can be rendered higher than other fonts. In this case, CoordinateOrigin BaseLine can be selected for better text rendering. +Gets text [CoordinateOrigin](../../coordinateorigin/). If [CoordinateOrigin](../../coordinateorigin/) is Descender, the text Y coordinate corresponds to the font's lowest point. If [CoordinateOrigin](../../coordinateorigin/) is BaseLine, the text Y coordinate corresponds to the font's baseline. The default value is Descender. If the font's Descent value is too big, text can be rendered higher than other fonts. In this case, [CoordinateOrigin](../../coordinateorigin/) BaseLine can be selected for better text rendering. ```cpp virtual Aspose::Pdf::Text::CoordinateOrigin Aspose::Pdf::Text::TextState::get_CoordinateOrigin() diff --git a/english/cpp/aspose.pdf.text/textstate/set_coordinateorigin/_index.md b/english/cpp/aspose.pdf.text/textstate/set_coordinateorigin/_index.md index b25363373e..9cc61b6df1 100644 --- a/english/cpp/aspose.pdf.text/textstate/set_coordinateorigin/_index.md +++ b/english/cpp/aspose.pdf.text/textstate/set_coordinateorigin/_index.md @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf.text/textstate/set_coordinateorigin/ ## TextState::set_CoordinateOrigin method -Sets text CoordinateOrigin. If CoordinateOrigin is Descender, the text Y coordinate corresponds to the font's lowest point. If CoordinateOrigin is BaseLine, the text Y coordinate corresponds to the font's baseline. The default value is Descender. If the font's Descent value is too big, text can be rendered higher than other fonts. In this case, CoordinateOrigin BaseLine can be selected for better text rendering. +Sets text [CoordinateOrigin](../../coordinateorigin/). If [CoordinateOrigin](../../coordinateorigin/) is Descender, the text Y coordinate corresponds to the font's lowest point. If [CoordinateOrigin](../../coordinateorigin/) is BaseLine, the text Y coordinate corresponds to the font's baseline. The default value is Descender. If the font's Descent value is too big, text can be rendered higher than other fonts. In this case, [CoordinateOrigin](../../coordinateorigin/) BaseLine can be selected for better text rendering. ```cpp virtual void Aspose::Pdf::Text::TextState::set_CoordinateOrigin(Aspose::Pdf::Text::CoordinateOrigin value) diff --git a/english/cpp/aspose.pdf/_index.md b/english/cpp/aspose.pdf/_index.md index e1a3f86b38..1d6d8de6fa 100644 --- a/english/cpp/aspose.pdf/_index.md +++ b/english/cpp/aspose.pdf/_index.md @@ -37,7 +37,7 @@ The **[Aspose.Pdf](./)** is a root namespace for all classes of [Aspose.Pdf](./) | [CgmLoadOptions](./cgmloadoptions/) | Contains options for loading/importing CGM file into pdf document. | | [Collection](./collection/) | Represents class for [Collection](./collection/)(12.3.5 [Collections](../aspose.pdf.collections/)). | | [CollectionField](./collectionfield/) | Represents a document collection schema field class. | -| [CollectionFieldSubtypeConverter](./collectionfieldsubtypeconverter/) | Represents a class for converting CollectionFieldSubtype values. | +| [CollectionFieldSubtypeConverter](./collectionfieldsubtypeconverter/) | Represents a class for converting [CollectionFieldSubtype](./collectionfieldsubtype/) values. | | [CollectionItem](./collectionitem/) | Represents a collection item class. The collection item contains the data described by the collection schema. | | [CollectionSchema](./collectionschema/) | Represents a class that describes the "Schema" of a document collection. | | [CollectionSort](./collectionsort/) | Represents a class for a collection sort definition. | @@ -249,7 +249,7 @@ The **[Aspose.Pdf](./)** is a root namespace for all classes of [Aspose.Pdf](./) | [FieldSerializationStatus](./fieldserializationstatus/) | Represents the status of the form field serialization. | | [FieldValueType](./fieldvaluetype/) | Represents the type of a field value in a schema collection. | | [FileEncoding](./fileencoding/) | Encoding of the attached file. Possible values: Zip - file is compressed with ZIP, None - file is non compressed. | -| [Fixup](./fixup/) | This enum represents an type of Fixup. | +| [Fixup](./fixup/) | This enum represents an type of [Fixup](./fixup/). | | [FontSubsetStrategy](./fontsubsetstrategy/) | enumerates strategies for font subsetting | | [HeadingRecognitionStrategy](./headingrecognitionstrategy/) | Represents types of header recognition strategies. | | [HeadingStyle](./headingstyle/) | Defines the available serialization styles for headings. For specification see CommonMark - ATX headings, respectively CommonMark - Setext headings. | diff --git a/english/cpp/aspose.pdf/apsloadoptions/_index.md b/english/cpp/aspose.pdf/apsloadoptions/_index.md index 08db5adc09..1a750a5ebd 100644 --- a/english/cpp/aspose.pdf/apsloadoptions/_index.md +++ b/english/cpp/aspose.pdf/apsloadoptions/_index.md @@ -21,6 +21,9 @@ class ApsLoadOptions : public Aspose::Pdf::LoadOptions | Method | Description | | --- | --- | | [ApsLoadOptions](./apsloadoptions/)() | Default constructor. | +| [GetType](./gettype/)() const override | Gets actual type of object. Analog of C# [System.Object.GetType()](../../system/object/gettype/) call. | +| [Is](./is/)(const System::TypeInfo\&) const override | Check if object represents an instance of type described by targetType. Analog of C# 'is' operator. | +| static [Type](./type/)() | | ## See Also * Class [LoadOptions](../loadoptions/) diff --git a/english/cpp/aspose.pdf/apsloadoptions/apsloadoptions/_index.md b/english/cpp/aspose.pdf/apsloadoptions/apsloadoptions/_index.md index 02162e7922..7447a17a51 100644 --- a/english/cpp/aspose.pdf/apsloadoptions/apsloadoptions/_index.md +++ b/english/cpp/aspose.pdf/apsloadoptions/apsloadoptions/_index.md @@ -4,7 +4,7 @@ linktitle: ApsLoadOptions second_title: Aspose.PDF for C++ API Reference description: 'Aspose::Pdf::ApsLoadOptions::ApsLoadOptions constructor. Default constructor in C++.' type: docs -weight: 100 +weight: 200 url: /cpp/aspose.pdf/apsloadoptions/apsloadoptions/ --- ## ApsLoadOptions::ApsLoadOptions constructor diff --git a/english/cpp/aspose.pdf/apsloadoptions/gettype/_index.md b/english/cpp/aspose.pdf/apsloadoptions/gettype/_index.md new file mode 100644 index 0000000000..1955c4c50a --- /dev/null +++ b/english/cpp/aspose.pdf/apsloadoptions/gettype/_index.md @@ -0,0 +1,29 @@ +--- +title: Aspose::Pdf::ApsLoadOptions::GetType method +linktitle: GetType +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::ApsLoadOptions::GetType method. Gets actual type of object. Analog of C# System.Object.GetType() call in C++.' +type: docs +weight: 300 +url: /cpp/aspose.pdf/apsloadoptions/gettype/ +--- +## ApsLoadOptions::GetType method + + +Gets actual type of object. Analog of C# [System.Object.GetType()](../../../system/object/gettype/) call. + +```cpp +virtual const System::TypeInfo & Aspose::Pdf::ApsLoadOptions::GetType() const override +``` + + +### ReturnValue + +TypeInfo object which describes final type. + +## See Also + +* Class [TypeInfo](../../../system/typeinfo/) +* Class [ApsLoadOptions](../) +* Namespace [Aspose::Pdf](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf/apsloadoptions/is/_index.md b/english/cpp/aspose.pdf/apsloadoptions/is/_index.md new file mode 100644 index 0000000000..c34b17b180 --- /dev/null +++ b/english/cpp/aspose.pdf/apsloadoptions/is/_index.md @@ -0,0 +1,33 @@ +--- +title: Aspose::Pdf::ApsLoadOptions::Is method +linktitle: Is +second_title: Aspose.PDF for C++ API Reference +description: 'Aspose::Pdf::ApsLoadOptions::Is method. Check if object represents an instance of type described by targetType. Analog of C# ''is'' operator in C++.' +type: docs +weight: 400 +url: /cpp/aspose.pdf/apsloadoptions/is/ +--- +## ApsLoadOptions::Is method + + +Check if object represents an instance of type described by targetType. Analog of C# 'is' operator. + +```cpp +virtual bool Aspose::Pdf::ApsLoadOptions::Is(const System::TypeInfo &target) const override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| targetType | const System::TypeInfo\& | TypeInfo structure describing the type to test current object against. | + +### ReturnValue + +True if object is of tagged type or its subclass, false otherwise. + +## See Also + +* Class [TypeInfo](../../../system/typeinfo/) +* Class [ApsLoadOptions](../) +* Namespace [Aspose::Pdf](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf/apsloadoptions/type/_index.md b/english/cpp/aspose.pdf/apsloadoptions/type/_index.md new file mode 100644 index 0000000000..934ea6e636 --- /dev/null +++ b/english/cpp/aspose.pdf/apsloadoptions/type/_index.md @@ -0,0 +1,24 @@ +--- +title: Aspose::Pdf::ApsLoadOptions::Type method +linktitle: Type +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Type method of Aspose::Pdf::ApsLoadOptions class in C++.' +type: docs +weight: 100 +url: /cpp/aspose.pdf/apsloadoptions/type/ +--- +## ApsLoadOptions::Type method + + + + +```cpp +static const System::TypeInfo & Aspose::Pdf::ApsLoadOptions::Type() +``` + +## See Also + +* Class [TypeInfo](../../../system/typeinfo/) +* Class [ApsLoadOptions](../) +* Namespace [Aspose::Pdf](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/aspose.pdf/boundscheckablelist/_index.md b/english/cpp/aspose.pdf/boundscheckablelist/_index.md index 79fa0d362b..4b87f82d49 100644 --- a/english/cpp/aspose.pdf/boundscheckablelist/_index.md +++ b/english/cpp/aspose.pdf/boundscheckablelist/_index.md @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf/boundscheckablelist/ Represents [BoundsCheckableList](./) - wrapper around [System.Collections.Generic.List](../../system.collections.generic/list/). ```cpp -templateclass BoundsCheckableList : public System::Collections::Generic::IList +templateclass BoundsCheckableList : public System::Collections::Generic::IList ``` ## Methods diff --git a/english/cpp/aspose.pdf/boundscheckablelist/add/_index.md b/english/cpp/aspose.pdf/boundscheckablelist/add/_index.md index a10540152e..a45a05e323 100644 --- a/english/cpp/aspose.pdf/boundscheckablelist/add/_index.md +++ b/english/cpp/aspose.pdf/boundscheckablelist/add/_index.md @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf/boundscheckablelist/add/ Adds an object to the end of the [System.Collections.Generic.List](../../../system.collections.generic/list/) depending on "boundsCheckMode" parameter. ```cpp -void Aspose::Pdf::BoundsCheckableList::Add(const T &item) override +void Aspose::Pdf::BoundsCheckableList::Add(const T &item) override ``` diff --git a/english/cpp/aspose.pdf/boundscheckablelist/begin/_index.md b/english/cpp/aspose.pdf/boundscheckablelist/begin/_index.md index 4f171325e2..fcd084dacc 100644 --- a/english/cpp/aspose.pdf/boundscheckablelist/begin/_index.md +++ b/english/cpp/aspose.pdf/boundscheckablelist/begin/_index.md @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf/boundscheckablelist/begin/ Gets iterator pointing to the first element (if any) of the const-qualified instance of the collection. ```cpp -const_iterator Aspose::Pdf::BoundsCheckableList::begin() const noexcept +const_iterator Aspose::Pdf::BoundsCheckableList::begin() const noexcept ``` @@ -33,7 +33,7 @@ An iterator pointing to the first element (if any) of the const-qualified instan Gets iterator pointing to the first element (if any) of the collection. ```cpp -iterator Aspose::Pdf::BoundsCheckableList::begin() noexcept +iterator Aspose::Pdf::BoundsCheckableList::begin() noexcept ``` diff --git a/english/cpp/aspose.pdf/boundscheckablelist/boundscheckablelist/_index.md b/english/cpp/aspose.pdf/boundscheckablelist/boundscheckablelist/_index.md index 9e5a1f3a5f..7c0669c398 100644 --- a/english/cpp/aspose.pdf/boundscheckablelist/boundscheckablelist/_index.md +++ b/english/cpp/aspose.pdf/boundscheckablelist/boundscheckablelist/_index.md @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf/boundscheckablelist/boundscheckablelist/ Initializes a new instance of the [BoundsCheckableList](../) class. ```cpp -Aspose::Pdf::BoundsCheckableList::BoundsCheckableList() +Aspose::Pdf::BoundsCheckableList::BoundsCheckableList() ``` ## See Also @@ -27,7 +27,7 @@ Aspose::Pdf::BoundsCheckableList::BoundsCheckableList() Initializes a new instance of the [BoundsCheckableList](../) class. ```cpp -Aspose::Pdf::BoundsCheckableList::BoundsCheckableList(BoundsCheckMode boundsCheckMode, double containerWidth, double containerHeight) +Aspose::Pdf::BoundsCheckableList::BoundsCheckableList(BoundsCheckMode boundsCheckMode, double containerWidth, double containerHeight) ``` diff --git a/english/cpp/aspose.pdf/boundscheckablelist/cbegin/_index.md b/english/cpp/aspose.pdf/boundscheckablelist/cbegin/_index.md index 2e93089d3b..2e043370ca 100644 --- a/english/cpp/aspose.pdf/boundscheckablelist/cbegin/_index.md +++ b/english/cpp/aspose.pdf/boundscheckablelist/cbegin/_index.md @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf/boundscheckablelist/cbegin/ Gets iterator pointing to the first const-qualified element (if any) of the collection. ```cpp -const_iterator Aspose::Pdf::BoundsCheckableList::cbegin() const noexcept +const_iterator Aspose::Pdf::BoundsCheckableList::cbegin() const noexcept ``` diff --git a/english/cpp/aspose.pdf/boundscheckablelist/cend/_index.md b/english/cpp/aspose.pdf/boundscheckablelist/cend/_index.md index 591cfb9d7f..1111ff54aa 100644 --- a/english/cpp/aspose.pdf/boundscheckablelist/cend/_index.md +++ b/english/cpp/aspose.pdf/boundscheckablelist/cend/_index.md @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf/boundscheckablelist/cend/ Gets iterator pointing right after the last const-qualified element (if any) of the collection. ```cpp -const_iterator Aspose::Pdf::BoundsCheckableList::cend() const noexcept +const_iterator Aspose::Pdf::BoundsCheckableList::cend() const noexcept ``` diff --git a/english/cpp/aspose.pdf/boundscheckablelist/clear/_index.md b/english/cpp/aspose.pdf/boundscheckablelist/clear/_index.md index f3cc8101d2..d9491bf883 100644 --- a/english/cpp/aspose.pdf/boundscheckablelist/clear/_index.md +++ b/english/cpp/aspose.pdf/boundscheckablelist/clear/_index.md @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf/boundscheckablelist/clear/ Removes all elements from the [System.Collections.Generic.List](../../../system.collections.generic/list/). ```cpp -void Aspose::Pdf::BoundsCheckableList::Clear() override +void Aspose::Pdf::BoundsCheckableList::Clear() override ``` ## See Also diff --git a/english/cpp/aspose.pdf/boundscheckablelist/const_iterator/_index.md b/english/cpp/aspose.pdf/boundscheckablelist/const_iterator/_index.md index 10d622330d..ff56895303 100644 --- a/english/cpp/aspose.pdf/boundscheckablelist/const_iterator/_index.md +++ b/english/cpp/aspose.pdf/boundscheckablelist/const_iterator/_index.md @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf/boundscheckablelist/const_iterator/ Const iterator type. ```cpp -using Aspose::Pdf::BoundsCheckableList< typename >::const_iterator = typename iterator_holder_type::const_iterator +using Aspose::Pdf::BoundsCheckableList< T >::const_iterator = typename iterator_holder_type::const_iterator ``` ## See Also diff --git a/english/cpp/aspose.pdf/boundscheckablelist/contains/_index.md b/english/cpp/aspose.pdf/boundscheckablelist/contains/_index.md index 5e289eee3f..dce99fc913 100644 --- a/english/cpp/aspose.pdf/boundscheckablelist/contains/_index.md +++ b/english/cpp/aspose.pdf/boundscheckablelist/contains/_index.md @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf/boundscheckablelist/contains/ Determines whether an element is in the [System.Collections.Generic.List](../../../system.collections.generic/list/). ```cpp -bool Aspose::Pdf::BoundsCheckableList::Contains(const T &item) const override +bool Aspose::Pdf::BoundsCheckableList::Contains(const T &item) const override ``` diff --git a/english/cpp/aspose.pdf/boundscheckablelist/copyto/_index.md b/english/cpp/aspose.pdf/boundscheckablelist/copyto/_index.md index 24b3cca1d2..96d0010fb7 100644 --- a/english/cpp/aspose.pdf/boundscheckablelist/copyto/_index.md +++ b/english/cpp/aspose.pdf/boundscheckablelist/copyto/_index.md @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf/boundscheckablelist/copyto/ Copies the entire [System.Collections.Generic.List](../../../system.collections.generic/list/) to a compatible one-dimensional array, starting at the specified index of the target array. ```cpp -void Aspose::Pdf::BoundsCheckableList::CopyTo(System::ArrayPtr array, int32_t arrayIndex) override +void Aspose::Pdf::BoundsCheckableList::CopyTo(System::ArrayPtr array, int32_t arrayIndex) override ``` diff --git a/english/cpp/aspose.pdf/boundscheckablelist/end/_index.md b/english/cpp/aspose.pdf/boundscheckablelist/end/_index.md index 608400affa..13b8153a78 100644 --- a/english/cpp/aspose.pdf/boundscheckablelist/end/_index.md +++ b/english/cpp/aspose.pdf/boundscheckablelist/end/_index.md @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf/boundscheckablelist/end/ Gets iterator pointing right after the last element (if any) of the const-qualified instance of the collection. ```cpp -const_iterator Aspose::Pdf::BoundsCheckableList::end() const noexcept +const_iterator Aspose::Pdf::BoundsCheckableList::end() const noexcept ``` @@ -33,7 +33,7 @@ An iterator pointing right after the last element (if any) of the const-qualifie Gets iterator pointing right after the last element (if any) of the collection. ```cpp -iterator Aspose::Pdf::BoundsCheckableList::end() noexcept +iterator Aspose::Pdf::BoundsCheckableList::end() noexcept ``` diff --git a/english/cpp/aspose.pdf/boundscheckablelist/get_count/_index.md b/english/cpp/aspose.pdf/boundscheckablelist/get_count/_index.md index 95a2764bd3..3a828f2191 100644 --- a/english/cpp/aspose.pdf/boundscheckablelist/get_count/_index.md +++ b/english/cpp/aspose.pdf/boundscheckablelist/get_count/_index.md @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf/boundscheckablelist/get_count/ Gets the number of elements contained in the [System.Collections.Generic.List](../../../system.collections.generic/list/). ```cpp -int32_t Aspose::Pdf::BoundsCheckableList::get_Count() const override +int32_t Aspose::Pdf::BoundsCheckableList::get_Count() const override ``` diff --git a/english/cpp/aspose.pdf/boundscheckablelist/get_isreadonly/_index.md b/english/cpp/aspose.pdf/boundscheckablelist/get_isreadonly/_index.md index 05f679b2c7..7e31fef3fb 100644 --- a/english/cpp/aspose.pdf/boundscheckablelist/get_isreadonly/_index.md +++ b/english/cpp/aspose.pdf/boundscheckablelist/get_isreadonly/_index.md @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf/boundscheckablelist/get_isreadonly/ Gets the value indicating if collection is readonly. ```cpp -bool Aspose::Pdf::BoundsCheckableList::get_IsReadOnly() const override +bool Aspose::Pdf::BoundsCheckableList::get_IsReadOnly() const override ``` ## See Also diff --git a/english/cpp/aspose.pdf/boundscheckablelist/getenumerator/_index.md b/english/cpp/aspose.pdf/boundscheckablelist/getenumerator/_index.md index c3b2507b7e..75a2680c5f 100644 --- a/english/cpp/aspose.pdf/boundscheckablelist/getenumerator/_index.md +++ b/english/cpp/aspose.pdf/boundscheckablelist/getenumerator/_index.md @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf/boundscheckablelist/getenumerator/ Returns an enumerator that iterates through the [System.Collections.Generic.List](../../../system.collections.generic/list/). ```cpp -System::SharedPtr> Aspose::Pdf::BoundsCheckableList::GetEnumerator() override +System::SharedPtr> Aspose::Pdf::BoundsCheckableList::GetEnumerator() override ``` diff --git a/english/cpp/aspose.pdf/boundscheckablelist/idx_get/_index.md b/english/cpp/aspose.pdf/boundscheckablelist/idx_get/_index.md index 869c64b98d..99e9ce9d2c 100644 --- a/english/cpp/aspose.pdf/boundscheckablelist/idx_get/_index.md +++ b/english/cpp/aspose.pdf/boundscheckablelist/idx_get/_index.md @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf/boundscheckablelist/idx_get/ Gets paragraph from or to collection. ```cpp -T Aspose::Pdf::BoundsCheckableList::idx_get(int32_t index) const override +T Aspose::Pdf::BoundsCheckableList::idx_get(int32_t index) const override ``` diff --git a/english/cpp/aspose.pdf/boundscheckablelist/idx_set/_index.md b/english/cpp/aspose.pdf/boundscheckablelist/idx_set/_index.md index fc103286cb..f269b3705a 100644 --- a/english/cpp/aspose.pdf/boundscheckablelist/idx_set/_index.md +++ b/english/cpp/aspose.pdf/boundscheckablelist/idx_set/_index.md @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf/boundscheckablelist/idx_set/ Sets paragraph from or to collection. ```cpp -void Aspose::Pdf::BoundsCheckableList::idx_set(int32_t index, T value) override +void Aspose::Pdf::BoundsCheckableList::idx_set(int32_t index, T value) override ``` diff --git a/english/cpp/aspose.pdf/boundscheckablelist/indexof/_index.md b/english/cpp/aspose.pdf/boundscheckablelist/indexof/_index.md index e7887caefd..f171e9729e 100644 --- a/english/cpp/aspose.pdf/boundscheckablelist/indexof/_index.md +++ b/english/cpp/aspose.pdf/boundscheckablelist/indexof/_index.md @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf/boundscheckablelist/indexof/ Searches for the specified object and returns the zero-based index of the first occurrence within the entire [System.Collections.Generic.List](../../../system.collections.generic/list/). ```cpp -int32_t Aspose::Pdf::BoundsCheckableList::IndexOf(const T &item) const override +int32_t Aspose::Pdf::BoundsCheckableList::IndexOf(const T &item) const override ``` diff --git a/english/cpp/aspose.pdf/boundscheckablelist/insert/_index.md b/english/cpp/aspose.pdf/boundscheckablelist/insert/_index.md index a46803f388..f09c6d717c 100644 --- a/english/cpp/aspose.pdf/boundscheckablelist/insert/_index.md +++ b/english/cpp/aspose.pdf/boundscheckablelist/insert/_index.md @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf/boundscheckablelist/insert/ Inserts an element into the [System.Collections.Generic.List](../../../system.collections.generic/list/) at the specified index. ```cpp -void Aspose::Pdf::BoundsCheckableList::Insert(int32_t index, const T &item) override +void Aspose::Pdf::BoundsCheckableList::Insert(int32_t index, const T &item) override ``` diff --git a/english/cpp/aspose.pdf/boundscheckablelist/iterator/_index.md b/english/cpp/aspose.pdf/boundscheckablelist/iterator/_index.md index cd45e2b1d3..5ce28989d2 100644 --- a/english/cpp/aspose.pdf/boundscheckablelist/iterator/_index.md +++ b/english/cpp/aspose.pdf/boundscheckablelist/iterator/_index.md @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf/boundscheckablelist/iterator/ Iterator type. ```cpp -using Aspose::Pdf::BoundsCheckableList< typename >::iterator = typename iterator_holder_type::iterator +using Aspose::Pdf::BoundsCheckableList< T >::iterator = typename iterator_holder_type::iterator ``` ## See Also diff --git a/english/cpp/aspose.pdf/boundscheckablelist/iterator_holder_type/_index.md b/english/cpp/aspose.pdf/boundscheckablelist/iterator_holder_type/_index.md index f20628a1db..48764d4195 100644 --- a/english/cpp/aspose.pdf/boundscheckablelist/iterator_holder_type/_index.md +++ b/english/cpp/aspose.pdf/boundscheckablelist/iterator_holder_type/_index.md @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf/boundscheckablelist/iterator_holder_type/ A collection type whose iterator types is used as iterator types in the current collection. ```cpp -using Aspose::Pdf::BoundsCheckableList< typename >::iterator_holder_type = System::Collections::Generic::List +using Aspose::Pdf::BoundsCheckableList< T >::iterator_holder_type = System::Collections::Generic::List ``` ## See Also diff --git a/english/cpp/aspose.pdf/boundscheckablelist/remove/_index.md b/english/cpp/aspose.pdf/boundscheckablelist/remove/_index.md index 42d2117998..7e6f639585 100644 --- a/english/cpp/aspose.pdf/boundscheckablelist/remove/_index.md +++ b/english/cpp/aspose.pdf/boundscheckablelist/remove/_index.md @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf/boundscheckablelist/remove/ Removes the first occurrence of a specific object from the [System.Collections.Generic.List](../../../system.collections.generic/list/). ```cpp -bool Aspose::Pdf::BoundsCheckableList::Remove(const T &item) override +bool Aspose::Pdf::BoundsCheckableList::Remove(const T &item) override ``` diff --git a/english/cpp/aspose.pdf/boundscheckablelist/removeat/_index.md b/english/cpp/aspose.pdf/boundscheckablelist/removeat/_index.md index ef2f4ba156..7b9f11e05c 100644 --- a/english/cpp/aspose.pdf/boundscheckablelist/removeat/_index.md +++ b/english/cpp/aspose.pdf/boundscheckablelist/removeat/_index.md @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf/boundscheckablelist/removeat/ Removes the element at the specified index of the [System.Collections.Generic.List](../../../system.collections.generic/list/). ```cpp -void Aspose::Pdf::BoundsCheckableList::RemoveAt(int32_t index) override +void Aspose::Pdf::BoundsCheckableList::RemoveAt(int32_t index) override ``` diff --git a/english/cpp/aspose.pdf/boundscheckablelist/settemplateweakptr/_index.md b/english/cpp/aspose.pdf/boundscheckablelist/settemplateweakptr/_index.md index 4543da4fee..1284cb453f 100644 --- a/english/cpp/aspose.pdf/boundscheckablelist/settemplateweakptr/_index.md +++ b/english/cpp/aspose.pdf/boundscheckablelist/settemplateweakptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf/boundscheckablelist/settemplateweakptr/ Set n'th template argument a weak pointer (rather than shared). Allows switching pointers in containers to weak mode. ```cpp -void Aspose::Pdf::BoundsCheckableList::SetTemplateWeakPtr(uint32_t argument) override +void Aspose::Pdf::BoundsCheckableList::SetTemplateWeakPtr(uint32_t argument) override ``` diff --git a/english/cpp/aspose.pdf/boundscheckablelist/updateboundscheckmode/_index.md b/english/cpp/aspose.pdf/boundscheckablelist/updateboundscheckmode/_index.md index 6859992c29..e8a9a45157 100644 --- a/english/cpp/aspose.pdf/boundscheckablelist/updateboundscheckmode/_index.md +++ b/english/cpp/aspose.pdf/boundscheckablelist/updateboundscheckmode/_index.md @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf/boundscheckablelist/updateboundscheckmode/ Updates boundsCheckMode parameter for initialized collection. ```cpp -void Aspose::Pdf::BoundsCheckableList::UpdateBoundsCheckMode(BoundsCheckMode boundsCheckMode) +void Aspose::Pdf::BoundsCheckableList::UpdateBoundsCheckMode(BoundsCheckMode boundsCheckMode) ``` @@ -33,7 +33,7 @@ void Aspose::Pdf::BoundsCheckableList::UpdateBoundsCheckMode(BoundsChe Updates boundsCheckMode parameter for initialized collection. ```cpp -void Aspose::Pdf::BoundsCheckableList::UpdateBoundsCheckMode(BoundsCheckMode boundsCheckMode, double containerWidth, double containerHeight) +void Aspose::Pdf::BoundsCheckableList::UpdateBoundsCheckMode(BoundsCheckMode boundsCheckMode, double containerWidth, double containerHeight) ``` diff --git a/english/cpp/aspose.pdf/boundscheckablelist/virtualizebeginconstiterator/_index.md b/english/cpp/aspose.pdf/boundscheckablelist/virtualizebeginconstiterator/_index.md index 3267b0b1df..c2b236aa4f 100644 --- a/english/cpp/aspose.pdf/boundscheckablelist/virtualizebeginconstiterator/_index.md +++ b/english/cpp/aspose.pdf/boundscheckablelist/virtualizebeginconstiterator/_index.md @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf/boundscheckablelist/virtualizebeginconstiterator/ Gets iterator pointing to the first element (if any)of the const-qualified instance of the collection. ```cpp -virtualized_iterator * Aspose::Pdf::BoundsCheckableList::virtualizeBeginConstIterator() const override +virtualized_iterator * Aspose::Pdf::BoundsCheckableList::virtualizeBeginConstIterator() const override ``` diff --git a/english/cpp/aspose.pdf/boundscheckablelist/virtualizebeginiterator/_index.md b/english/cpp/aspose.pdf/boundscheckablelist/virtualizebeginiterator/_index.md index 91ea923b68..7465999aaa 100644 --- a/english/cpp/aspose.pdf/boundscheckablelist/virtualizebeginiterator/_index.md +++ b/english/cpp/aspose.pdf/boundscheckablelist/virtualizebeginiterator/_index.md @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf/boundscheckablelist/virtualizebeginiterator/ Gets iterator pointing to the first element (if any) of the collection. ```cpp -virtualized_iterator * Aspose::Pdf::BoundsCheckableList::virtualizeBeginIterator() override +virtualized_iterator * Aspose::Pdf::BoundsCheckableList::virtualizeBeginIterator() override ``` diff --git a/english/cpp/aspose.pdf/boundscheckablelist/virtualized_iterator/_index.md b/english/cpp/aspose.pdf/boundscheckablelist/virtualized_iterator/_index.md index 336cc26523..3da23b1153 100644 --- a/english/cpp/aspose.pdf/boundscheckablelist/virtualized_iterator/_index.md +++ b/english/cpp/aspose.pdf/boundscheckablelist/virtualized_iterator/_index.md @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf/boundscheckablelist/virtualized_iterator/ Virtualized type. ```cpp -using Aspose::Pdf::BoundsCheckableList< typename >::virtualized_iterator = typename iterator_holder_type::virtualized_iterator +using Aspose::Pdf::BoundsCheckableList< T >::virtualized_iterator = typename iterator_holder_type::virtualized_iterator ``` ## See Also diff --git a/english/cpp/aspose.pdf/boundscheckablelist/virtualized_iterator_element/_index.md b/english/cpp/aspose.pdf/boundscheckablelist/virtualized_iterator_element/_index.md index 36d339a69a..ee6b8aa05d 100644 --- a/english/cpp/aspose.pdf/boundscheckablelist/virtualized_iterator_element/_index.md +++ b/english/cpp/aspose.pdf/boundscheckablelist/virtualized_iterator_element/_index.md @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf/boundscheckablelist/virtualized_iterator_element/ Virtualized element type. ```cpp -using Aspose::Pdf::BoundsCheckableList< typename >::virtualized_iterator_element = typename iterator_holder_type::virtualized_iterator_element +using Aspose::Pdf::BoundsCheckableList< T >::virtualized_iterator_element = typename iterator_holder_type::virtualized_iterator_element ``` ## See Also diff --git a/english/cpp/aspose.pdf/boundscheckablelist/virtualizeendconstiterator/_index.md b/english/cpp/aspose.pdf/boundscheckablelist/virtualizeendconstiterator/_index.md index ab1c42b904..411d7162c7 100644 --- a/english/cpp/aspose.pdf/boundscheckablelist/virtualizeendconstiterator/_index.md +++ b/english/cpp/aspose.pdf/boundscheckablelist/virtualizeendconstiterator/_index.md @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf/boundscheckablelist/virtualizeendconstiterator/ Gets iterator pointing right after the last element (if any)of the const-qualified instance of the collection. ```cpp -virtualized_iterator * Aspose::Pdf::BoundsCheckableList::virtualizeEndConstIterator() const override +virtualized_iterator * Aspose::Pdf::BoundsCheckableList::virtualizeEndConstIterator() const override ``` diff --git a/english/cpp/aspose.pdf/boundscheckablelist/virtualizeenditerator/_index.md b/english/cpp/aspose.pdf/boundscheckablelist/virtualizeenditerator/_index.md index f7b1049e0c..fa763946d3 100644 --- a/english/cpp/aspose.pdf/boundscheckablelist/virtualizeenditerator/_index.md +++ b/english/cpp/aspose.pdf/boundscheckablelist/virtualizeenditerator/_index.md @@ -13,7 +13,7 @@ url: /cpp/aspose.pdf/boundscheckablelist/virtualizeenditerator/ Gets iterator pointing right after the last element (if any) of the collection. ```cpp -virtualized_iterator * Aspose::Pdf::BoundsCheckableList::virtualizeEndIterator() override +virtualized_iterator * Aspose::Pdf::BoundsCheckableList::virtualizeEndIterator() override ``` diff --git a/english/cpp/aspose.pdf/collectionfieldsubtypeconverter/_index.md b/english/cpp/aspose.pdf/collectionfieldsubtypeconverter/_index.md index 2013b7ac9b..90337abcda 100644 --- a/english/cpp/aspose.pdf/collectionfieldsubtypeconverter/_index.md +++ b/english/cpp/aspose.pdf/collectionfieldsubtypeconverter/_index.md @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf/collectionfieldsubtypeconverter/ ## CollectionFieldSubtypeConverter class -Represents a class for converting CollectionFieldSubtype values. +Represents a class for converting [CollectionFieldSubtype](../collectionfieldsubtype/) values. ```cpp class CollectionFieldSubtypeConverter : public System::Object @@ -20,10 +20,10 @@ class CollectionFieldSubtypeConverter : public System::Object | Method | Description | | --- | --- | -| static [Convert](./convert/)(System::SharedPtr\) | Converts a PdfName value to its corresponding CollectionFieldSubtype enumeration value. | -| static [Convert](./convert/)(System::String) | Converts a string value to its corresponding CollectionFieldSubtype enumeration value. | -| static [Convert](./convert/)(CollectionFieldSubtype) | Converts a CollectionFieldSubtype value to its string representation. | -| static [ConvertToFieldType](./converttofieldtype/)(CollectionFieldSubtype) | Converts a CollectionFieldSubtype enumeration value to its corresponding FieldValueType enumeration value. | +| static [Convert](./convert/)(System::SharedPtr\) | Converts a PdfName value to its corresponding [CollectionFieldSubtype](../collectionfieldsubtype/) enumeration value. | +| static [Convert](./convert/)(System::String) | Converts a string value to its corresponding [CollectionFieldSubtype](../collectionfieldsubtype/) enumeration value. | +| static [Convert](./convert/)(CollectionFieldSubtype) | Converts a [CollectionFieldSubtype](../collectionfieldsubtype/) value to its string representation. | +| static [ConvertToFieldType](./converttofieldtype/)(CollectionFieldSubtype) | Converts a [CollectionFieldSubtype](../collectionfieldsubtype/) enumeration value to its corresponding [FieldValueType](../fieldvaluetype/) enumeration value. | ## See Also * Class [Object](../../system/object/) diff --git a/english/cpp/aspose.pdf/collectionfieldsubtypeconverter/convert/_index.md b/english/cpp/aspose.pdf/collectionfieldsubtypeconverter/convert/_index.md index d2a557de63..9859da5505 100644 --- a/english/cpp/aspose.pdf/collectionfieldsubtypeconverter/convert/_index.md +++ b/english/cpp/aspose.pdf/collectionfieldsubtypeconverter/convert/_index.md @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf/collectionfieldsubtypeconverter/convert/ ## CollectionFieldSubtypeConverter::Convert(CollectionFieldSubtype) method -Converts a CollectionFieldSubtype value to its string representation. +Converts a [CollectionFieldSubtype](../../collectionfieldsubtype/) value to its string representation. ```cpp static System::String Aspose::Pdf::CollectionFieldSubtypeConverter::Convert(CollectionFieldSubtype suptype) @@ -19,11 +19,11 @@ static System::String Aspose::Pdf::CollectionFieldSubtypeConverter::Convert(Coll | Parameter | Type | Description | | --- | --- | --- | -| suptype | CollectionFieldSubtype | The CollectionFieldSubtype value to be converted. | +| suptype | CollectionFieldSubtype | The [CollectionFieldSubtype](../../collectionfieldsubtype/) value to be converted. | ### ReturnValue -The string representation of the CollectionFieldSubtype value. If suptype is None then returns empty string. +The string representation of the [CollectionFieldSubtype](../../collectionfieldsubtype/) value. If suptype is None then returns empty string. ## See Also @@ -35,7 +35,7 @@ The string representation of the CollectionFieldSubtype value. If suptype is Non ## CollectionFieldSubtypeConverter::Convert(System::SharedPtr\) method -Converts a PdfName value to its corresponding CollectionFieldSubtype enumeration value. +Converts a PdfName value to its corresponding [CollectionFieldSubtype](../../collectionfieldsubtype/) enumeration value. ```cpp static CollectionFieldSubtype Aspose::Pdf::CollectionFieldSubtypeConverter::Convert(System::SharedPtr pdfName) @@ -48,7 +48,7 @@ static CollectionFieldSubtype Aspose::Pdf::CollectionFieldSubtypeConverter::Conv ### ReturnValue -The CollectionFieldSubtype enumeration value that corresponds to the PdfName value. If the name value is not recognized, returns [CollectionFieldSubtype.None](../../collectionfieldsubtype/). +The [CollectionFieldSubtype](../../collectionfieldsubtype/) enumeration value that corresponds to the PdfName value. If the name value is not recognized, returns [CollectionFieldSubtype.None](../../collectionfieldsubtype/). ## See Also @@ -60,7 +60,7 @@ The CollectionFieldSubtype enumeration value that corresponds to the PdfName val ## CollectionFieldSubtypeConverter::Convert(System::String) method -Converts a string value to its corresponding CollectionFieldSubtype enumeration value. +Converts a string value to its corresponding [CollectionFieldSubtype](../../collectionfieldsubtype/) enumeration value. ```cpp static CollectionFieldSubtype Aspose::Pdf::CollectionFieldSubtypeConverter::Convert(System::String name) @@ -73,7 +73,7 @@ static CollectionFieldSubtype Aspose::Pdf::CollectionFieldSubtypeConverter::Conv ### ReturnValue -The CollectionFieldSubtype enumeration value that corresponds to the string value. If the string value is not recognized, returns [CollectionFieldSubtype.None](../../collectionfieldsubtype/). +The [CollectionFieldSubtype](../../collectionfieldsubtype/) enumeration value that corresponds to the string value. If the string value is not recognized, returns [CollectionFieldSubtype.None](../../collectionfieldsubtype/). ## See Also diff --git a/english/cpp/aspose.pdf/collectionfieldsubtypeconverter/converttofieldtype/_index.md b/english/cpp/aspose.pdf/collectionfieldsubtypeconverter/converttofieldtype/_index.md index 04cb817eee..b87ca0181a 100644 --- a/english/cpp/aspose.pdf/collectionfieldsubtypeconverter/converttofieldtype/_index.md +++ b/english/cpp/aspose.pdf/collectionfieldsubtypeconverter/converttofieldtype/_index.md @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf/collectionfieldsubtypeconverter/converttofieldtype/ ## CollectionFieldSubtypeConverter::ConvertToFieldType method -Converts a CollectionFieldSubtype enumeration value to its corresponding FieldValueType enumeration value. +Converts a [CollectionFieldSubtype](../../collectionfieldsubtype/) enumeration value to its corresponding [FieldValueType](../../fieldvaluetype/) enumeration value. ```cpp static FieldValueType Aspose::Pdf::CollectionFieldSubtypeConverter::ConvertToFieldType(CollectionFieldSubtype subtype) @@ -19,11 +19,11 @@ static FieldValueType Aspose::Pdf::CollectionFieldSubtypeConverter::ConvertToFie | Parameter | Type | Description | | --- | --- | --- | -| subtype | CollectionFieldSubtype | The CollectionFieldSubtype value to convert. | +| subtype | CollectionFieldSubtype | The [CollectionFieldSubtype](../../collectionfieldsubtype/) value to convert. | ### ReturnValue -The FieldValueType value corresponding to the given subtype. +The [FieldValueType](../../fieldvaluetype/) value corresponding to the given subtype. ## See Also diff --git a/english/cpp/aspose.pdf/document/_index.md b/english/cpp/aspose.pdf/document/_index.md index ed04008edc..ea2830b3a8 100644 --- a/english/cpp/aspose.pdf/document/_index.md +++ b/english/cpp/aspose.pdf/document/_index.md @@ -42,8 +42,8 @@ class Document : public System::IDisposable, | [Convert](./convert/)(Document::CallBackGetHocrWithPage, bool) | Recognize images inside the document and add hocr strings over it. | | [Convert](./convert/)(Document::CallBackGetHocr, bool) | Recognize images inside the document and add hocr strings over it. | | [Convert](./convert/)(System::SharedPtr\, Aspose::Pdf::PdfFormat, ConvertErrorAction) | Convert document and save errors into the specified stream. | -| [Convert](./convert/)(Fixup, System::SharedPtr\, bool, System::ArrayPtr\\>) | Convert document by applying the Fixup. | -| [Convert](./convert/)(Fixup, System::String, bool, System::ArrayPtr\\>) | Convert document by applying the Fixup. | +| [Convert](./convert/)(Fixup, System::SharedPtr\, bool, System::ArrayPtr\\>) | Convert document by applying the [Fixup](../fixup/). | +| [Convert](./convert/)(Fixup, System::String, bool, System::ArrayPtr\\>) | Convert document by applying the [Fixup](../fixup/). | | static [Convert](./convert/)(System::String, System::SharedPtr\, System::String, System::SharedPtr\) | Converts source file in source format into destination file in destination format. | | static [Convert](./convert/)(System::SharedPtr\, System::SharedPtr\, System::String, System::SharedPtr\) | Converts stream in source format into destination file in destination format. | | static [Convert](./convert/)(System::String, System::SharedPtr\, System::SharedPtr\, System::SharedPtr\) | Converts source file in source format into stream in destination format. | @@ -88,7 +88,7 @@ class Document : public System::IDisposable, | [get_Background](./get_background/)() | Gets the background color of the document. | | [get_CenterWindow](./get_centerwindow/)() | Gets flag specifying whether position of the document's window will be centerd on the screen. | | [get_Collection](./get_collection/)() | Gets collection of document. | -| [get_CryptoAlgorithm](./get_cryptoalgorithm/)() | Gets security settings if document is encrypted. If document is not encrypted then corresponding exception will be raised in .net 1.1 or CryptoAlgorithm will be null for other .net versions. | +| [get_CryptoAlgorithm](./get_cryptoalgorithm/)() | Gets security settings if document is encrypted. If document is not encrypted then corresponding exception will be raised in .net 1.1 or [CryptoAlgorithm](../cryptoalgorithm/) will be null for other .net versions. | | [get_CustomSecurityHandler](./get_customsecurityhandler/)() const | Gets a custom security handler. | | [get_Destinations](./get_destinations/)() | Gets the collection of destinations. Obsolete. Please use NamedDestinations. | | [get_Direction](./get_direction/)() | Gets reading order of text: L2R (left to right) or R2L (right to left). | diff --git a/english/cpp/aspose.pdf/document/convert/_index.md b/english/cpp/aspose.pdf/document/convert/_index.md index 16638c24b1..903c073b59 100644 --- a/english/cpp/aspose.pdf/document/convert/_index.md +++ b/english/cpp/aspose.pdf/document/convert/_index.md @@ -60,7 +60,7 @@ The operation result. If there are no images in the document returns [false](../ ## Document::Convert(Fixup, System::SharedPtr\, bool, System::ArrayPtr\\>) method -Convert document by applying the Fixup. +Convert document by applying the [Fixup](../../fixup/). ```cpp bool Aspose::Pdf::Document::Convert(Fixup fixup, System::SharedPtr outputLog, bool onlyValidation=false, System::ArrayPtr> parameters=nullptr) @@ -69,10 +69,10 @@ bool Aspose::Pdf::Document::Convert(Fixup fixup, System::SharedPtr | The log of process. | | onlyValidation | bool | Only document validation. | -| parameters | System::ArrayPtr\\> | Properties for Fixup that can not be set. | +| parameters | System::ArrayPtr\\> | Properties for [Fixup](../../fixup/) that can not be set. | ### ReturnValue @@ -91,7 +91,7 @@ The operation result. ## Document::Convert(Fixup, System::String, bool, System::ArrayPtr\\>) method -Convert document by applying the Fixup. +Convert document by applying the [Fixup](../../fixup/). ```cpp bool Aspose::Pdf::Document::Convert(Fixup fixup, System::String outputLog, bool onlyValidation=false, System::ArrayPtr> parameters=nullptr) @@ -100,10 +100,10 @@ bool Aspose::Pdf::Document::Convert(Fixup fixup, System::String outputLog, bool | Parameter | Type | Description | | --- | --- | --- | -| fixup | Fixup | The Fixup type. | +| fixup | Fixup | The [Fixup](../../fixup/) type. | | outputLog | System::String | The log of process. | | onlyValidation | bool | Only document validation. | -| parameters | System::ArrayPtr\\> | Properties for Fixup that can not be set. | +| parameters | System::ArrayPtr\\> | Properties for [Fixup](../../fixup/) that can not be set. | ### ReturnValue diff --git a/english/cpp/aspose.pdf/document/get_cryptoalgorithm/_index.md b/english/cpp/aspose.pdf/document/get_cryptoalgorithm/_index.md index ff6e9fc2ff..6e21d55fe6 100644 --- a/english/cpp/aspose.pdf/document/get_cryptoalgorithm/_index.md +++ b/english/cpp/aspose.pdf/document/get_cryptoalgorithm/_index.md @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf/document/get_cryptoalgorithm/ ## Document::get_CryptoAlgorithm method -Gets security settings if document is encrypted. If document is not encrypted then corresponding exception will be raised in .net 1.1 or CryptoAlgorithm will be null for other .net versions. +Gets security settings if document is encrypted. If document is not encrypted then corresponding exception will be raised in .net 1.1 or [CryptoAlgorithm](../../cryptoalgorithm/) will be null for other .net versions. ```cpp System::Nullable Aspose::Pdf::Document::get_CryptoAlgorithm() diff --git a/english/cpp/aspose.pdf/fixup/_index.md b/english/cpp/aspose.pdf/fixup/_index.md index de7134b2da..562bf6c28f 100644 --- a/english/cpp/aspose.pdf/fixup/_index.md +++ b/english/cpp/aspose.pdf/fixup/_index.md @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf/fixup/ ## Fixup enum -This enum represents an type of Fixup. +This enum represents an type of [Fixup](./). ```cpp enum class Fixup diff --git a/english/cpp/aspose.pdf/htmlpagelayoutoption/_index.md b/english/cpp/aspose.pdf/htmlpagelayoutoption/_index.md index b9f1112484..594b8436da 100644 --- a/english/cpp/aspose.pdf/htmlpagelayoutoption/_index.md +++ b/english/cpp/aspose.pdf/htmlpagelayoutoption/_index.md @@ -20,7 +20,7 @@ enum class HtmlPageLayoutOption | Name | Value | Description | | --- | --- | --- | -| None | 0 | Default value which indicates that the HtmlPageLayoutOption will not affect the sizes and layouts of pages. | +| None | 0 | Default value which indicates that the [HtmlPageLayoutOption](./) will not affect the sizes and layouts of pages. | | FitToWidestContentWidth | n/a | Indicates that the width of the page is determinated from the content size itself, not from the specified page width. | | ScaleToPageWidth | 256 | Indicates the content of the document will be scaled to fit the page. | diff --git a/english/cpp/aspose.pdf/loadoptions/_index.md b/english/cpp/aspose.pdf/loadoptions/_index.md index 288cdb1763..e80589ca36 100644 --- a/english/cpp/aspose.pdf/loadoptions/_index.md +++ b/english/cpp/aspose.pdf/loadoptions/_index.md @@ -35,14 +35,14 @@ class LoadOptions : public virtual System::Object . | | [get_LoadFormat](./get_loadformat/)() const | Represents file format which [LoadOptions](./) describes. | -| [get_WarningHandler](./get_warninghandler/)() const | Callback to handle any warnings generated. The WarningHandler returns ReturnAction enum item specifying either Continue or Abort. Continue is the default action and the Load operation continues, however the user may also return Abort in which case the Load operation should cease. | +| [get_WarningHandler](./get_warninghandler/)() const | Callback to handle any warnings generated. The WarningHandler returns [ReturnAction](../returnaction/) enum item specifying either Continue or Abort. Continue is the default action and the Load operation continues, however the user may also return Abort in which case the Load operation should cease. | | [LoadOptions](./loadoptions/)() | | | [set_DisableFontLicenseVerifications](./set_disablefontlicenseverifications/)(bool) | Sets flag to disable any license restrictions for all fonts while loading the file. When **true** , allows to execute operations with font that are prohibited by a license of this font, for example allows to embed a font into a PDF document even if license rules disable embedding for this font. By default **false** . | -| [set_WarningHandler](./set_warninghandler/)(System::SharedPtr\) | Callback to handle any warnings generated. The WarningHandler returns ReturnAction enum item specifying either Continue or Abort. Continue is the default action and the Load operation continues, however the user may also return Abort in which case the Load operation should cease. | +| [set_WarningHandler](./set_warninghandler/)(System::SharedPtr\) | Callback to handle any warnings generated. The WarningHandler returns [ReturnAction](../returnaction/) enum item specifying either Continue or Abort. Continue is the default action and the Load operation continues, however the user may also return Abort in which case the Load operation should cease. | ## Typedefs | Typedef | Description | diff --git a/english/cpp/aspose.pdf/loadoptions/get_warninghandler/_index.md b/english/cpp/aspose.pdf/loadoptions/get_warninghandler/_index.md index 74670d577d..b32484d847 100644 --- a/english/cpp/aspose.pdf/loadoptions/get_warninghandler/_index.md +++ b/english/cpp/aspose.pdf/loadoptions/get_warninghandler/_index.md @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf/loadoptions/get_warninghandler/ ## LoadOptions::get_WarningHandler method -Callback to handle any warnings generated. The WarningHandler returns ReturnAction enum item specifying either Continue or Abort. Continue is the default action and the Load operation continues, however the user may also return Abort in which case the Load operation should cease. +Callback to handle any warnings generated. The WarningHandler returns [ReturnAction](../../returnaction/) enum item specifying either Continue or Abort. Continue is the default action and the Load operation continues, however the user may also return Abort in which case the Load operation should cease. ```cpp System::SharedPtr Aspose::Pdf::LoadOptions::get_WarningHandler() const diff --git a/english/cpp/aspose.pdf/loadoptions/set_warninghandler/_index.md b/english/cpp/aspose.pdf/loadoptions/set_warninghandler/_index.md index 45912f3c50..d00bc0de44 100644 --- a/english/cpp/aspose.pdf/loadoptions/set_warninghandler/_index.md +++ b/english/cpp/aspose.pdf/loadoptions/set_warninghandler/_index.md @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf/loadoptions/set_warninghandler/ ## LoadOptions::set_WarningHandler method -Callback to handle any warnings generated. The WarningHandler returns ReturnAction enum item specifying either Continue or Abort. Continue is the default action and the Load operation continues, however the user may also return Abort in which case the Load operation should cease. +Callback to handle any warnings generated. The WarningHandler returns [ReturnAction](../../returnaction/) enum item specifying either Continue or Abort. Continue is the default action and the Load operation continues, however the user may also return Abort in which case the Load operation should cease. ```cpp void Aspose::Pdf::LoadOptions::set_WarningHandler(System::SharedPtr value) diff --git a/english/cpp/aspose.pdf/matrix3d/getangle/_index.md b/english/cpp/aspose.pdf/matrix3d/getangle/_index.md index 8775b223d1..896fd68025 100644 --- a/english/cpp/aspose.pdf/matrix3d/getangle/_index.md +++ b/english/cpp/aspose.pdf/matrix3d/getangle/_index.md @@ -19,7 +19,7 @@ static double Aspose::Pdf::Matrix3D::GetAngle(Rotation rotation) | Parameter | Type | Description | | --- | --- | --- | -| rotation | Rotation | Rotation value. | +| rotation | Rotation | [Rotation](../../rotation/) value. | ### ReturnValue diff --git a/english/cpp/aspose.pdf/page/inttorotation/_index.md b/english/cpp/aspose.pdf/page/inttorotation/_index.md index 518b1ac9dc..32055c8efa 100644 --- a/english/cpp/aspose.pdf/page/inttorotation/_index.md +++ b/english/cpp/aspose.pdf/page/inttorotation/_index.md @@ -23,7 +23,7 @@ static Aspose::Pdf::Rotation Aspose::Pdf::Page::IntToRotation(int32_t rotation) ### ReturnValue -Rotation enumeration member +[Rotation](../../rotation/) enumeration member ## See Also diff --git a/english/cpp/aspose.pdf/page/rotationtoint/_index.md b/english/cpp/aspose.pdf/page/rotationtoint/_index.md index 3b0515bdbb..38f3bcdf60 100644 --- a/english/cpp/aspose.pdf/page/rotationtoint/_index.md +++ b/english/cpp/aspose.pdf/page/rotationtoint/_index.md @@ -19,7 +19,7 @@ static int32_t Aspose::Pdf::Page::RotationToInt(Aspose::Pdf::Rotation rotation) | Parameter | Type | Description | | --- | --- | --- | -| rotation | Aspose::Pdf::Rotation | Rotation enumeratioom member. | +| rotation | Aspose::Pdf::Rotation | [Rotation](../../rotation/) enumeratioom member. | ### ReturnValue diff --git a/english/cpp/aspose.pdf/rectangle/rotate/_index.md b/english/cpp/aspose.pdf/rectangle/rotate/_index.md index 1f9c66cb62..d4d9638443 100644 --- a/english/cpp/aspose.pdf/rectangle/rotate/_index.md +++ b/english/cpp/aspose.pdf/rectangle/rotate/_index.md @@ -38,7 +38,7 @@ void Aspose::Pdf::Rectangle::Rotate(Rotation angle) | Parameter | Type | Description | | --- | --- | --- | -| angle | Rotation | Angle of rotation. Member of Rotation enumeration. | +| angle | Rotation | Angle of rotation. Member of [Rotation](../../rotation/) enumeration. | ## See Also diff --git a/english/cpp/aspose.pdf/saveoptions/_index.md b/english/cpp/aspose.pdf/saveoptions/_index.md index 67abcd94e5..bd0c4192d5 100644 --- a/english/cpp/aspose.pdf/saveoptions/_index.md +++ b/english/cpp/aspose.pdf/saveoptions/_index.md @@ -36,10 +36,10 @@ class SaveOptions : public virtual System::Object | [get_CacheGlyphs](./get_cacheglyphs/)() const | Gets boolean value which indicates if will font glyphs be cached while preparing aps pages. Improves performance of conversion pdf to other formats but increases memory consumption. | | [get_CloseResponse](./get_closeresponse/)() const | Gets boolean value which indicates will Response object be closed after document saved into response. | | [get_SaveFormat](./get_saveformat/)() const | Format of data save. | -| [get_WarningHandler](./get_warninghandler/)() const | Callback to handle any warnings generated. The WarningHandler returns ReturnAction enum item specifying either Continue or Abort. Continue is the default action and the Save operation continues, however the user may also return Abort in which case the Save operation should cease. | +| [get_WarningHandler](./get_warninghandler/)() const | Callback to handle any warnings generated. The WarningHandler returns [ReturnAction](../returnaction/) enum item specifying either Continue or Abort. Continue is the default action and the Save operation continues, however the user may also return Abort in which case the Save operation should cease. | | [set_CacheGlyphs](./set_cacheglyphs/)(bool) | Sets boolean value which indicates if will font glyphs be cached while preparing aps pages. Improves performance of conversion pdf to other formats but increases memory consumption. | | [set_CloseResponse](./set_closeresponse/)(bool) | Sets boolean value which indicates will Response object be closed after document saved into response. | -| [set_WarningHandler](./set_warninghandler/)(System::SharedPtr\) | Callback to handle any warnings generated. The WarningHandler returns ReturnAction enum item specifying either Continue or Abort. Continue is the default action and the Save operation continues, however the user may also return Abort in which case the Save operation should cease. | +| [set_WarningHandler](./set_warninghandler/)(System::SharedPtr\) | Callback to handle any warnings generated. The WarningHandler returns [ReturnAction](../returnaction/) enum item specifying either Continue or Abort. Continue is the default action and the Save operation continues, however the user may also return Abort in which case the Save operation should cease. | ## See Also * Class [Object](../../system/object/) diff --git a/english/cpp/aspose.pdf/saveoptions/get_warninghandler/_index.md b/english/cpp/aspose.pdf/saveoptions/get_warninghandler/_index.md index 809dccf47c..2d751a97b0 100644 --- a/english/cpp/aspose.pdf/saveoptions/get_warninghandler/_index.md +++ b/english/cpp/aspose.pdf/saveoptions/get_warninghandler/_index.md @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf/saveoptions/get_warninghandler/ ## SaveOptions::get_WarningHandler method -Callback to handle any warnings generated. The WarningHandler returns ReturnAction enum item specifying either Continue or Abort. Continue is the default action and the Save operation continues, however the user may also return Abort in which case the Save operation should cease. +Callback to handle any warnings generated. The WarningHandler returns [ReturnAction](../../returnaction/) enum item specifying either Continue or Abort. Continue is the default action and the Save operation continues, however the user may also return Abort in which case the Save operation should cease. ```cpp System::SharedPtr Aspose::Pdf::SaveOptions::get_WarningHandler() const diff --git a/english/cpp/aspose.pdf/saveoptions/set_warninghandler/_index.md b/english/cpp/aspose.pdf/saveoptions/set_warninghandler/_index.md index 267e0aa155..243eb1c8c4 100644 --- a/english/cpp/aspose.pdf/saveoptions/set_warninghandler/_index.md +++ b/english/cpp/aspose.pdf/saveoptions/set_warninghandler/_index.md @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf/saveoptions/set_warninghandler/ ## SaveOptions::set_WarningHandler method -Callback to handle any warnings generated. The WarningHandler returns ReturnAction enum item specifying either Continue or Abort. Continue is the default action and the Save operation continues, however the user may also return Abort in which case the Save operation should cease. +Callback to handle any warnings generated. The WarningHandler returns [ReturnAction](../../returnaction/) enum item specifying either Continue or Abort. Continue is the default action and the Save operation continues, however the user may also return Abort in which case the Save operation should cease. ```cpp void Aspose::Pdf::SaveOptions::set_WarningHandler(System::SharedPtr value) diff --git a/english/cpp/aspose.pdf/texsaveoptions/_index.md b/english/cpp/aspose.pdf/texsaveoptions/_index.md index 513b3f9bb2..20be1ea530 100644 --- a/english/cpp/aspose.pdf/texsaveoptions/_index.md +++ b/english/cpp/aspose.pdf/texsaveoptions/_index.md @@ -22,9 +22,9 @@ class TeXSaveOptions : public Aspose::Pdf::UnifiedSaveOptions | --- | --- | | [AddFontEncs](./addfontencs/)(const System::ArrayPtr\\&) | Adds a font ancoding to the font encoding list. | | [ClearFontEncs](./clearfontencs/)() | Clears the font encoding list. | -| [get_OutDirectoryPath](./get_outdirectorypath/)() const | Property for **_outDirectoryPath** parameter. | +| [get_OutDirectoryPath](./get_outdirectorypath/)() const | Property for [_outDirectoryPath](../) parameter. | | [get_PagesCount](./get_pagescount/)() const | Returns the number of pages after conversion. | -| [set_OutDirectoryPath](./set_outdirectorypath/)(System::String) | Property for **_outDirectoryPath** parameter. | +| [set_OutDirectoryPath](./set_outdirectorypath/)(System::String) | Property for [_outDirectoryPath](../) parameter. | | [TeXSaveOptions](./texsaveoptions/)() | Initializes a new instance of the [TeXSaveOptions](./) class. | ## See Also diff --git a/english/cpp/aspose.pdf/texsaveoptions/get_outdirectorypath/_index.md b/english/cpp/aspose.pdf/texsaveoptions/get_outdirectorypath/_index.md index 0a72ab863c..d681b6557d 100644 --- a/english/cpp/aspose.pdf/texsaveoptions/get_outdirectorypath/_index.md +++ b/english/cpp/aspose.pdf/texsaveoptions/get_outdirectorypath/_index.md @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf/texsaveoptions/get_outdirectorypath/ ## TeXSaveOptions::get_OutDirectoryPath method -Property for **_outDirectoryPath** parameter. +Property for [_outDirectoryPath](../) parameter. ```cpp System::String Aspose::Pdf::TeXSaveOptions::get_OutDirectoryPath() const diff --git a/english/cpp/aspose.pdf/texsaveoptions/set_outdirectorypath/_index.md b/english/cpp/aspose.pdf/texsaveoptions/set_outdirectorypath/_index.md index d56fee7660..94f90be30f 100644 --- a/english/cpp/aspose.pdf/texsaveoptions/set_outdirectorypath/_index.md +++ b/english/cpp/aspose.pdf/texsaveoptions/set_outdirectorypath/_index.md @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf/texsaveoptions/set_outdirectorypath/ ## TeXSaveOptions::set_OutDirectoryPath method -Property for **_outDirectoryPath** parameter. +Property for [_outDirectoryPath](../) parameter. ```cpp void Aspose::Pdf::TeXSaveOptions::set_OutDirectoryPath(System::String value) diff --git a/english/cpp/aspose.pdf/ximage/_index.md b/english/cpp/aspose.pdf/ximage/_index.md index 9dd897020f..2696d55426 100644 --- a/english/cpp/aspose.pdf/ximage/_index.md +++ b/english/cpp/aspose.pdf/ximage/_index.md @@ -26,7 +26,7 @@ class XImage : public System::Object | [get_FilterType](./get_filtertype/)() | Gets image filter type. | | [get_Grayscaled](./get_grayscaled/)() | Gets grayscaled version of image. | | [get_Height](./get_height/)() | Gets height of the image. | -| [get_ImageMask](./get_imagemask/)() | Gets a flag indicating whether the image shall be treated as an image mask (see 8.9.6, "Masked Images"). If this flag is true, the value of BitsPerComponent shall be 1 and Mask and ColorSpace shall not be specified; unmasked areas shall bepainted using the current nonstroking colour. Default value: false. | +| [get_ImageMask](./get_imagemask/)() | Gets a flag indicating whether the image shall be treated as an image mask (see 8.9.6, "Masked Images"). If this flag is true, the value of BitsPerComponent shall be 1 and Mask and [ColorSpace](../colorspace/) shall not be specified; unmasked areas shall bepainted using the current nonstroking colour. Default value: false. | | [get_Metadata](./get_metadata/)() | [Metadata](../metadata/) of the image. | | [get_Name](./get_name/)() | Gets image name. Please note that if you change name of the image which has references in page contents, document may became incorrect. Please use [XImage.Rename](./rename/) method in this case. | | [get_Width](./get_width/)() | Gets width of the image. | diff --git a/english/cpp/aspose.pdf/ximage/get_imagemask/_index.md b/english/cpp/aspose.pdf/ximage/get_imagemask/_index.md index 993dc79311..22f50ede66 100644 --- a/english/cpp/aspose.pdf/ximage/get_imagemask/_index.md +++ b/english/cpp/aspose.pdf/ximage/get_imagemask/_index.md @@ -10,7 +10,7 @@ url: /cpp/aspose.pdf/ximage/get_imagemask/ ## XImage::get_ImageMask method -Gets a flag indicating whether the image shall be treated as an image mask (see 8.9.6, "Masked Images"). If this flag is true, the value of BitsPerComponent shall be 1 and Mask and ColorSpace shall not be specified; unmasked areas shall bepainted using the current nonstroking colour. Default value: false. +Gets a flag indicating whether the image shall be treated as an image mask (see 8.9.6, "Masked Images"). If this flag is true, the value of BitsPerComponent shall be 1 and Mask and [ColorSpace](../../colorspace/) shall not be specified; unmasked areas shall bepainted using the current nonstroking colour. Default value: false. ```cpp bool Aspose::Pdf::XImage::get_ImageMask() diff --git a/english/cpp/system.collections.generic/_index.md b/english/cpp/system.collections.generic/_index.md index 314741306d..6c5d8958d3 100644 --- a/english/cpp/system.collections.generic/_index.md +++ b/english/cpp/system.collections.generic/_index.md @@ -19,7 +19,7 @@ url: /cpp/system.collections.generic/ | [_ValueCollection](./_valuecollection/) | Collection of [Dictionary](./dictionary/)'s values. References collection, doesn't copy anything. 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. | | [_ValueList](./_valuelist/) | Implements list of dictionary's values. Objects of this class should only be allocated using [System::MakeObject()](../system/makeobject/) function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into [System::SmartPtr](../system/smartptr/) pointer and use this pointer to pass it to functions as argument. | | [BaseDictionary](./basedictionary/) | Implements common code for various dictionary-alike data structures (e. g. [Dictionary](./dictionary/), [SortedDictionary](./sorteddictionary/)). Shouldn't be used directly, except for inheritance when defining containers. 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. | -| [BaseEnumerator](./baseenumerator/) | Enumerator definition to wrap STL-styled types for C#-styled usage. Makes no assertions on container structure except for existance of sequental iterator. Uses begin() and end() functions. Objects of this class should only be allocated using [System::MakeObject()](../system/makeobject/) function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into [System::SmartPtr](../system/smartptr/) pointer and use this pointer to pass it to functions as argument. | +| [BaseEnumerator](./baseenumerator/) | [Enumerator](./baseset/) definition to wrap STL-styled types for C#-styled usage. Makes no assertions on container structure except for existance of sequental iterator. Uses begin() and end() functions. Objects of this class should only be allocated using [System::MakeObject()](../system/makeobject/) function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into [System::SmartPtr](../system/smartptr/) pointer and use this pointer to pass it to functions as argument. | | [BaseKVCollection](./basekvcollection/) | Holds common code for collections of keys or values. Objects of this class should only be allocated using [System::MakeObject()](../system/makeobject/) function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into [System::SmartPtr](../system/smartptr/) pointer and use this pointer to pass it to functions as argument. | | [BaseSet](./baseset/) | | | [Comparer](./comparer/) | Provides a base class for implementations of the [System.Collections.Generic.IComparer](./icomparer/) generic interface. | @@ -51,7 +51,7 @@ url: /cpp/system.collections.generic/ | [ListPtr](./listptr/) | [List](./list/) pointer with access operators. This type is a pointer to manage other object's deletion. It should be allocated on stack and passed to functions either by value or by const reference. | | [Queue](./queue/) | [Queue](./queue/) class forward declaration. | | [QueuePtr](./queueptr/) | [Queue](./queue/) pointer. This type is a pointer to manage other object's deletion. It should be allocated on stack and passed to functions either by value or by const reference. | -| [ReverseEnumerator](./reverseenumerator/) | Enumerator that reverse-iterates through container. 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. | +| [ReverseEnumerator](./reverseenumerator/) | [Enumerator](./baseset/) that reverse-iterates through container. 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. | | [SimpleEnumerator](./simpleenumerator/) | Iterator class for simple containers holding elements directly using rbegin() and rend() functions. Objects of this class should only be allocated using [System::MakeObject()](../system/makeobject/) function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into [System::SmartPtr](../system/smartptr/) pointer and use this pointer to pass it to functions as argument. | | [SortedDictionary](./sorteddictionary/) | Sorted dictionary type forward declaration. | | [SortedDictionaryPtr](./sorteddictionaryptr/) | Sorted dictionary pointer with access operators. This type is a pointer to manage other object's deletion. It should be allocated on stack and passed to functions either by value or by const reference. | diff --git a/english/cpp/system.collections.generic/_keycollection/tkey/_index.md b/english/cpp/system.collections.generic/_keycollection/tkey/_index.md index 0bdcddbbd9..ae49c4e802 100644 --- a/english/cpp/system.collections.generic/_keycollection/tkey/_index.md +++ b/english/cpp/system.collections.generic/_keycollection/tkey/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/_keycollection/tkey/ Key type. ```cpp -Dict::map_t::key_type System::Collections::Generic::_KeyCollection< Dict >::TKey +typedef Dict::map_t::key_type System::Collections::Generic::_KeyCollection< Dict >::TKey ``` ## See Also diff --git a/english/cpp/system.collections.generic/_keylist/tkey/_index.md b/english/cpp/system.collections.generic/_keylist/tkey/_index.md index 124da0e450..f176a6e670 100644 --- a/english/cpp/system.collections.generic/_keylist/tkey/_index.md +++ b/english/cpp/system.collections.generic/_keylist/tkey/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/_keylist/tkey/ Key type. ```cpp -Dict::map_t::key_type System::Collections::Generic::_KeyList< Dict >::TKey +typedef Dict::map_t::key_type System::Collections::Generic::_KeyList< Dict >::TKey ``` ## See Also diff --git a/english/cpp/system.collections.generic/_valuecollection/tvalue/_index.md b/english/cpp/system.collections.generic/_valuecollection/tvalue/_index.md index 18c2bb86e4..f0b3b512b9 100644 --- a/english/cpp/system.collections.generic/_valuecollection/tvalue/_index.md +++ b/english/cpp/system.collections.generic/_valuecollection/tvalue/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/_valuecollection/tvalue/ Value type. ```cpp -Dict::map_t::mapped_type System::Collections::Generic::_ValueCollection< Dict >::TValue +typedef Dict::map_t::mapped_type System::Collections::Generic::_ValueCollection< Dict >::TValue ``` ## See Also diff --git a/english/cpp/system.collections.generic/_valuelist/tvalue/_index.md b/english/cpp/system.collections.generic/_valuelist/tvalue/_index.md index 3be3d72256..bc15e9ef4b 100644 --- a/english/cpp/system.collections.generic/_valuelist/tvalue/_index.md +++ b/english/cpp/system.collections.generic/_valuelist/tvalue/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/_valuelist/tvalue/ Value type. ```cpp -Dict::map_t::mapped_type System::Collections::Generic::_ValueList< Dict >::TValue +typedef Dict::map_t::mapped_type System::Collections::Generic::_ValueList< Dict >::TValue ``` ## See Also diff --git a/english/cpp/system.collections.generic/basedictionary/basetype/_index.md b/english/cpp/system.collections.generic/basedictionary/basetype/_index.md index d8e55fb03f..8fded8334f 100644 --- a/english/cpp/system.collections.generic/basedictionary/basetype/_index.md +++ b/english/cpp/system.collections.generic/basedictionary/basetype/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/basedictionary/basetype/ Implemented interface. ```cpp -IDictionary System::Collections::Generic::BaseDictionary< Map >::BaseType +typedef IDictionary System::Collections::Generic::BaseDictionary< Map >::BaseType ``` ## See Also diff --git a/english/cpp/system.collections.generic/basedictionary/const_iterator/_index.md b/english/cpp/system.collections.generic/basedictionary/const_iterator/_index.md index 0adf26981a..28bc8f929e 100644 --- a/english/cpp/system.collections.generic/basedictionary/const_iterator/_index.md +++ b/english/cpp/system.collections.generic/basedictionary/const_iterator/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/basedictionary/const_iterator/ Const iterator type. ```cpp -KVPairIterator System::Collections::Generic::BaseDictionary< Map >::const_iterator +typedef KVPairIterator System::Collections::Generic::BaseDictionary< Map >::const_iterator ``` ## See Also diff --git a/english/cpp/system.collections.generic/basedictionary/getenumerator/_index.md b/english/cpp/system.collections.generic/basedictionary/getenumerator/_index.md index 1423ef7ac7..2062b09468 100644 --- a/english/cpp/system.collections.generic/basedictionary/getenumerator/_index.md +++ b/english/cpp/system.collections.generic/basedictionary/getenumerator/_index.md @@ -19,7 +19,7 @@ SharedPtr>> System::Collections::Gener ### ReturnValue -Enumerator bound to this object. +[Enumerator](../../baseset/) bound to this object. ## See Also diff --git a/english/cpp/system.collections.generic/basedictionary/iterator/_index.md b/english/cpp/system.collections.generic/basedictionary/iterator/_index.md index b075b00b35..0d4fe3402e 100644 --- a/english/cpp/system.collections.generic/basedictionary/iterator/_index.md +++ b/english/cpp/system.collections.generic/basedictionary/iterator/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/basedictionary/iterator/ Iterator type. ```cpp -KVPairIterator System::Collections::Generic::BaseDictionary< Map >::iterator +typedef KVPairIterator System::Collections::Generic::BaseDictionary< Map >::iterator ``` ## See Also diff --git a/english/cpp/system.collections.generic/basedictionary/keycollection/_index.md b/english/cpp/system.collections.generic/basedictionary/keycollection/_index.md index b9586df23a..1039d768d2 100644 --- a/english/cpp/system.collections.generic/basedictionary/keycollection/_index.md +++ b/english/cpp/system.collections.generic/basedictionary/keycollection/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/basedictionary/keycollection/ Make sure we use correct allocator with underlying storage type. ```cpp -ICollection System::Collections::Generic::BaseDictionary< Map >::KeyCollection +typedef ICollection System::Collections::Generic::BaseDictionary< Map >::KeyCollection ``` ## Remarks diff --git a/english/cpp/system.collections.generic/basedictionary/kvpair/_index.md b/english/cpp/system.collections.generic/basedictionary/kvpair/_index.md index a64e4497cb..522b77fbe1 100644 --- a/english/cpp/system.collections.generic/basedictionary/kvpair/_index.md +++ b/english/cpp/system.collections.generic/basedictionary/kvpair/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/basedictionary/kvpair/ Key-value pair type. ```cpp -KeyValuePair System::Collections::Generic::BaseDictionary< Map >::KVPair +typedef KeyValuePair System::Collections::Generic::BaseDictionary< Map >::KVPair ``` ## See Also diff --git a/english/cpp/system.collections.generic/basedictionary/map_t/_index.md b/english/cpp/system.collections.generic/basedictionary/map_t/_index.md index ff1c4bbc5b..c1bf0d9c3a 100644 --- a/english/cpp/system.collections.generic/basedictionary/map_t/_index.md +++ b/english/cpp/system.collections.generic/basedictionary/map_t/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/basedictionary/map_t/ Internal map type. ```cpp -Map System::Collections::Generic::BaseDictionary< Map >::map_t +typedef Map System::Collections::Generic::BaseDictionary< Map >::map_t ``` ## See Also diff --git a/english/cpp/system.collections.generic/basedictionary/valuecollection/_index.md b/english/cpp/system.collections.generic/basedictionary/valuecollection/_index.md index 8248a86d42..e97b068c56 100644 --- a/english/cpp/system.collections.generic/basedictionary/valuecollection/_index.md +++ b/english/cpp/system.collections.generic/basedictionary/valuecollection/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/basedictionary/valuecollection/ Collection of values. ```cpp -ICollection System::Collections::Generic::BaseDictionary< Map >::ValueCollection +typedef ICollection System::Collections::Generic::BaseDictionary< Map >::ValueCollection ``` ## See Also diff --git a/english/cpp/system.collections.generic/baseenumerator/_index.md b/english/cpp/system.collections.generic/baseenumerator/_index.md index 278a5de1e8..7b3c11c2dd 100644 --- a/english/cpp/system.collections.generic/baseenumerator/_index.md +++ b/english/cpp/system.collections.generic/baseenumerator/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.collections.generic/baseenumerator/ ## BaseEnumerator class -Enumerator definition to wrap STL-styled types for C#-styled usage. Makes no assertions on container structure except for existance of sequental iterator. Uses begin() and end() functions. Objects of this class should only be allocated using [System::MakeObject()](../../system/makeobject/) function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into [System::SmartPtr](../../system/smartptr/) pointer and use this pointer to pass it to functions as argument. +[Enumerator](../baseset/) definition to wrap STL-styled types for C#-styled usage. Makes no assertions on container structure except for existance of sequental iterator. Uses begin() and end() functions. Objects of this class should only be allocated using [System::MakeObject()](../../system/makeobject/) function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into [System::SmartPtr](../../system/smartptr/) pointer and use this pointer to pass it to functions as argument. ```cpp templateclass BaseEnumerator : public System::Collections::Generic::IEnumerator diff --git a/english/cpp/system.collections.generic/dictionary/ienumerableptr/_index.md b/english/cpp/system.collections.generic/dictionary/ienumerableptr/_index.md index 9a0ad736da..b18d3f55f3 100644 --- a/english/cpp/system.collections.generic/dictionary/ienumerableptr/_index.md +++ b/english/cpp/system.collections.generic/dictionary/ienumerableptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/dictionary/ienumerableptr/ Pointer to enumerable interface. ```cpp -SharedPtr< IEnumerable > System::Collections::Generic::Dictionary< TKey, TValue >::IEnumerablePtr +typedef SharedPtr< IEnumerable > System::Collections::Generic::Dictionary< TKey, TValue >::IEnumerablePtr ``` ## See Also diff --git a/english/cpp/system.collections.generic/dictionary/ienumeratorptr/_index.md b/english/cpp/system.collections.generic/dictionary/ienumeratorptr/_index.md index 2360a04e5a..1fb468e189 100644 --- a/english/cpp/system.collections.generic/dictionary/ienumeratorptr/_index.md +++ b/english/cpp/system.collections.generic/dictionary/ienumeratorptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/dictionary/ienumeratorptr/ Pointer to enumerator. ```cpp -SharedPtr< IEnumerator > System::Collections::Generic::Dictionary< TKey, TValue >::IEnumeratorPtr +typedef SharedPtr< IEnumerator > System::Collections::Generic::Dictionary< TKey, TValue >::IEnumeratorPtr ``` ## See Also diff --git a/english/cpp/system.collections.generic/dictionary/keycollection/_index.md b/english/cpp/system.collections.generic/dictionary/keycollection/_index.md index 608c246e37..2aeb6def0b 100644 --- a/english/cpp/system.collections.generic/dictionary/keycollection/_index.md +++ b/english/cpp/system.collections.generic/dictionary/keycollection/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/dictionary/keycollection/ RTTI information. ```cpp -ICollection System::Collections::Generic::Dictionary< TKey, TValue >::KeyCollection +typedef ICollection System::Collections::Generic::Dictionary< TKey, TValue >::KeyCollection ``` ## Remarks diff --git a/english/cpp/system.collections.generic/dictionary/kvpair/_index.md b/english/cpp/system.collections.generic/dictionary/kvpair/_index.md index 84e98f19de..3e918efb1c 100644 --- a/english/cpp/system.collections.generic/dictionary/kvpair/_index.md +++ b/english/cpp/system.collections.generic/dictionary/kvpair/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/dictionary/kvpair/ Key-value pair type. ```cpp -KeyValuePair System::Collections::Generic::Dictionary< TKey, TValue >::KVPair +typedef KeyValuePair System::Collections::Generic::Dictionary< TKey, TValue >::KVPair ``` ## See Also diff --git a/english/cpp/system.collections.generic/dictionary/map_t/_index.md b/english/cpp/system.collections.generic/dictionary/map_t/_index.md index 2ca2db4ad6..7e61d21ff0 100644 --- a/english/cpp/system.collections.generic/dictionary/map_t/_index.md +++ b/english/cpp/system.collections.generic/dictionary/map_t/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/dictionary/map_t/ Underlying data type. ```cpp -std::unordered_map, EqualityComparerAdapter, ASPOSE_MAP_ALLOCATOR_TYPE(TKey, TValue)> System::Collections::Generic::Dictionary< TKey, TValue >::map_t +typedef std::unordered_map, EqualityComparerAdapter, ASPOSE_MAP_ALLOCATOR_TYPE(TKey, TValue)> System::Collections::Generic::Dictionary< TKey, TValue >::map_t ``` ## See Also diff --git a/english/cpp/system.collections.generic/dictionary/ptr/_index.md b/english/cpp/system.collections.generic/dictionary/ptr/_index.md index 1231a5df20..fdd080aacc 100644 --- a/english/cpp/system.collections.generic/dictionary/ptr/_index.md +++ b/english/cpp/system.collections.generic/dictionary/ptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/dictionary/ptr/ Pointer type. ```cpp -SharedPtr< Dictionary > System::Collections::Generic::Dictionary< TKey, TValue >::Ptr +typedef SharedPtr< Dictionary > System::Collections::Generic::Dictionary< TKey, TValue >::Ptr ``` ## See Also diff --git a/english/cpp/system.collections.generic/dictionary/valuecollection/_index.md b/english/cpp/system.collections.generic/dictionary/valuecollection/_index.md index e39322ecfe..f61f720044 100644 --- a/english/cpp/system.collections.generic/dictionary/valuecollection/_index.md +++ b/english/cpp/system.collections.generic/dictionary/valuecollection/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/dictionary/valuecollection/ Collection of values to extract. ```cpp -ICollection System::Collections::Generic::Dictionary< TKey, TValue >::ValueCollection +typedef ICollection System::Collections::Generic::Dictionary< TKey, TValue >::ValueCollection ``` ## See Also diff --git a/english/cpp/system.collections.generic/dictionaryptr/_index.md b/english/cpp/system.collections.generic/dictionaryptr/_index.md index 2d22c0ffaf..55ba66ec37 100644 --- a/english/cpp/system.collections.generic/dictionaryptr/_index.md +++ b/english/cpp/system.collections.generic/dictionaryptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/dictionaryptr/ [Dictionary](../dictionary/) pointer class with operator overloads. This type is a pointer to manage other object's deletion. It should be allocated on stack and passed to functions either by value or by const reference. ```cpp -templateclass DictionaryPtr : public System::SmartPtr> +templateclass DictionaryPtr : public System::SmartPtr ``` diff --git a/english/cpp/system.collections.generic/hashsetptr/_index.md b/english/cpp/system.collections.generic/hashsetptr/_index.md index e0790214d6..e18a3f1e11 100644 --- a/english/cpp/system.collections.generic/hashsetptr/_index.md +++ b/english/cpp/system.collections.generic/hashsetptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/hashsetptr/ Pointer to keep [HashSet](../hashset/) references. This type is a pointer to manage other object's deletion. It should be allocated on stack and passed to functions either by value or by const reference. ```cpp -templateclass HashSetPtr : public System::SmartPtr> +templateclass HashSetPtr : public System::SmartPtr ``` ## Methods diff --git a/english/cpp/system.collections.generic/icollection/thistype/_index.md b/english/cpp/system.collections.generic/icollection/thistype/_index.md index aace686450..159c4dccac 100644 --- a/english/cpp/system.collections.generic/icollection/thistype/_index.md +++ b/english/cpp/system.collections.generic/icollection/thistype/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/icollection/thistype/ Collection type name. ```cpp -ICollection System::Collections::Generic::ICollection< T >::ThisType +typedef ICollection System::Collections::Generic::ICollection< T >::ThisType ``` ## See Also diff --git a/english/cpp/system.collections.generic/icollection/valuetype/_index.md b/english/cpp/system.collections.generic/icollection/valuetype/_index.md index 15ca710b40..68df5a0dcd 100644 --- a/english/cpp/system.collections.generic/icollection/valuetype/_index.md +++ b/english/cpp/system.collections.generic/icollection/valuetype/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/icollection/valuetype/ RTTI information. ```cpp -T System::Collections::Generic::ICollection< T >::ValueType +typedef T System::Collections::Generic::ICollection< T >::ValueType ``` ## Remarks diff --git a/english/cpp/system.collections.generic/icomparer/args_type/_index.md b/english/cpp/system.collections.generic/icomparer/args_type/_index.md index 28b1b95a76..aa3262cc6b 100644 --- a/english/cpp/system.collections.generic/icomparer/args_type/_index.md +++ b/english/cpp/system.collections.generic/icomparer/args_type/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/icomparer/args_type/ RTTI information. ```cpp -T System::Collections::Generic::IComparer< T >::args_type +typedef T System::Collections::Generic::IComparer< T >::args_type ``` ## Remarks diff --git a/english/cpp/system.collections.generic/idictionary/_index.md b/english/cpp/system.collections.generic/idictionary/_index.md index 76333fb9bb..4efea74cae 100644 --- a/english/cpp/system.collections.generic/idictionary/_index.md +++ b/english/cpp/system.collections.generic/idictionary/_index.md @@ -28,6 +28,7 @@ templateclass IDictionary : public System::Collec | virtual [Add](./add/)(const TKey\&, const TValue\&) | Adds key-value pair into container. | | virtual [ContainsKey](./containskey/)(const TKey\&) const | Checks if container contains key. | | [CopyTo](./copyto/)(ArrayPtr\\>, int) override | Copies dictionary contents into existing array elements. | +| virtual [get_Count](./get_count/)() const | Unhides get_Count member function. | | [get_IsFixedSize](./get_isfixedsize/)() const | Checks if collection size is fixed. | | [get_IsSynchronized](./get_issynchronized/)() const | Checks if container is thread-safe. | | virtual [get_Keys](./get_keys/)() const | Accesses key collection. | diff --git a/english/cpp/system.collections.generic/idictionary/basetype/_index.md b/english/cpp/system.collections.generic/idictionary/basetype/_index.md index 285cdb8029..47ba9db8c9 100644 --- a/english/cpp/system.collections.generic/idictionary/basetype/_index.md +++ b/english/cpp/system.collections.generic/idictionary/basetype/_index.md @@ -4,7 +4,7 @@ linktitle: BaseType second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IDictionary::BaseType typedef. RTTI information in C++.' type: docs -weight: 1400 +weight: 1500 url: /cpp/system.collections.generic/idictionary/basetype/ --- ## BaseType typedef @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/idictionary/basetype/ RTTI information. ```cpp -ICollection > System::Collections::Generic::IDictionary< TKey, TValue >::BaseType +typedef ICollection > System::Collections::Generic::IDictionary< TKey, TValue >::BaseType ``` ## Remarks diff --git a/english/cpp/system.collections.generic/idictionary/get_count/_index.md b/english/cpp/system.collections.generic/idictionary/get_count/_index.md new file mode 100644 index 0000000000..869d438830 --- /dev/null +++ b/english/cpp/system.collections.generic/idictionary/get_count/_index.md @@ -0,0 +1,23 @@ +--- +title: System::Collections::Generic::IDictionary::get_Count method +linktitle: get_Count +second_title: Aspose.PDF for C++ API Reference +description: 'System::Collections::Generic::IDictionary::get_Count method. Unhides get_Count member function in C++.' +type: docs +weight: 400 +url: /cpp/system.collections.generic/idictionary/get_count/ +--- +## IDictionary::get_Count method + + +Unhides get_Count member function. + +```cpp +virtual int System::Collections::Generic::ICollection>::get_Count() const =0 +``` + +## See Also + +* Class [IDictionary](../) +* Namespace [System::Collections::Generic](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.collections.generic/idictionary/get_isfixedsize/_index.md b/english/cpp/system.collections.generic/idictionary/get_isfixedsize/_index.md index 7fa74b6f6b..ccc5167c67 100644 --- a/english/cpp/system.collections.generic/idictionary/get_isfixedsize/_index.md +++ b/english/cpp/system.collections.generic/idictionary/get_isfixedsize/_index.md @@ -4,7 +4,7 @@ linktitle: get_IsFixedSize second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IDictionary::get_IsFixedSize method. Checks if collection size is fixed in C++.' type: docs -weight: 400 +weight: 500 url: /cpp/system.collections.generic/idictionary/get_isfixedsize/ --- ## IDictionary::get_IsFixedSize method diff --git a/english/cpp/system.collections.generic/idictionary/get_issynchronized/_index.md b/english/cpp/system.collections.generic/idictionary/get_issynchronized/_index.md index d6b8a920d0..95edd280b4 100644 --- a/english/cpp/system.collections.generic/idictionary/get_issynchronized/_index.md +++ b/english/cpp/system.collections.generic/idictionary/get_issynchronized/_index.md @@ -4,7 +4,7 @@ linktitle: get_IsSynchronized second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IDictionary::get_IsSynchronized method. Checks if container is thread-safe in C++.' type: docs -weight: 500 +weight: 600 url: /cpp/system.collections.generic/idictionary/get_issynchronized/ --- ## IDictionary::get_IsSynchronized method diff --git a/english/cpp/system.collections.generic/idictionary/get_keys/_index.md b/english/cpp/system.collections.generic/idictionary/get_keys/_index.md index 5fb66a074d..73afbed7db 100644 --- a/english/cpp/system.collections.generic/idictionary/get_keys/_index.md +++ b/english/cpp/system.collections.generic/idictionary/get_keys/_index.md @@ -4,7 +4,7 @@ linktitle: get_Keys second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IDictionary::get_Keys method. Accesses key collection in C++.' type: docs -weight: 600 +weight: 700 url: /cpp/system.collections.generic/idictionary/get_keys/ --- ## IDictionary::get_Keys method diff --git a/english/cpp/system.collections.generic/idictionary/get_values/_index.md b/english/cpp/system.collections.generic/idictionary/get_values/_index.md index 531cf1336b..2a7eb95594 100644 --- a/english/cpp/system.collections.generic/idictionary/get_values/_index.md +++ b/english/cpp/system.collections.generic/idictionary/get_values/_index.md @@ -4,7 +4,7 @@ linktitle: get_Values second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IDictionary::get_Values method. Accesses value collection in C++.' type: docs -weight: 700 +weight: 800 url: /cpp/system.collections.generic/idictionary/get_values/ --- ## IDictionary::get_Values method diff --git a/english/cpp/system.collections.generic/idictionary/getvalueordefault/_index.md b/english/cpp/system.collections.generic/idictionary/getvalueordefault/_index.md index fb2e114fe5..5cd3cca821 100644 --- a/english/cpp/system.collections.generic/idictionary/getvalueordefault/_index.md +++ b/english/cpp/system.collections.generic/idictionary/getvalueordefault/_index.md @@ -4,7 +4,7 @@ linktitle: GetValueOrDefault second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IDictionary::GetValueOrDefault method. Returns value if found; or Value() otherwise in C++.' type: docs -weight: 800 +weight: 900 url: /cpp/system.collections.generic/idictionary/getvalueordefault/ --- ## IDictionary::GetValueOrDefault(const TKey\&) const method diff --git a/english/cpp/system.collections.generic/idictionary/getvalueornull/_index.md b/english/cpp/system.collections.generic/idictionary/getvalueornull/_index.md index 159659bde4..c43869d8bd 100644 --- a/english/cpp/system.collections.generic/idictionary/getvalueornull/_index.md +++ b/english/cpp/system.collections.generic/idictionary/getvalueornull/_index.md @@ -4,7 +4,7 @@ linktitle: GetValueOrNull second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IDictionary::GetValueOrNull method. Returns value if found; or null otherwise, make sense only for reference types in C++.' type: docs -weight: 900 +weight: 1000 url: /cpp/system.collections.generic/idictionary/getvalueornull/ --- ## IDictionary::GetValueOrNull method diff --git a/english/cpp/system.collections.generic/idictionary/idx_get/_index.md b/english/cpp/system.collections.generic/idictionary/idx_get/_index.md index 69139305fb..1b981bcaa2 100644 --- a/english/cpp/system.collections.generic/idictionary/idx_get/_index.md +++ b/english/cpp/system.collections.generic/idictionary/idx_get/_index.md @@ -4,7 +4,7 @@ linktitle: idx_get second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IDictionary::idx_get method. Getter function in C++.' type: docs -weight: 1000 +weight: 1100 url: /cpp/system.collections.generic/idictionary/idx_get/ --- ## IDictionary::idx_get method diff --git a/english/cpp/system.collections.generic/idictionary/idx_set/_index.md b/english/cpp/system.collections.generic/idictionary/idx_set/_index.md index 77fbe4376a..07e36ac347 100644 --- a/english/cpp/system.collections.generic/idictionary/idx_set/_index.md +++ b/english/cpp/system.collections.generic/idictionary/idx_set/_index.md @@ -4,7 +4,7 @@ linktitle: idx_set second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IDictionary::idx_set method. Setter function in C++.' type: docs -weight: 1100 +weight: 1200 url: /cpp/system.collections.generic/idictionary/idx_set/ --- ## IDictionary::idx_set method diff --git a/english/cpp/system.collections.generic/idictionary/keyvaluepairtype/_index.md b/english/cpp/system.collections.generic/idictionary/keyvaluepairtype/_index.md index c4920d1d1a..3393793e91 100644 --- a/english/cpp/system.collections.generic/idictionary/keyvaluepairtype/_index.md +++ b/english/cpp/system.collections.generic/idictionary/keyvaluepairtype/_index.md @@ -4,7 +4,7 @@ linktitle: KeyValuePairType second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IDictionary::KeyValuePairType typedef. Key value pair type in C++.' type: docs -weight: 1500 +weight: 1600 url: /cpp/system.collections.generic/idictionary/keyvaluepairtype/ --- ## KeyValuePairType typedef @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/idictionary/keyvaluepairtype/ Key value pair type. ```cpp -KeyValuePair System::Collections::Generic::IDictionary< TKey, TValue >::KeyValuePairType +typedef KeyValuePair System::Collections::Generic::IDictionary< TKey, TValue >::KeyValuePairType ``` ## See Also diff --git a/english/cpp/system.collections.generic/idictionary/remove/_index.md b/english/cpp/system.collections.generic/idictionary/remove/_index.md index 7506e22404..f69f74c0bc 100644 --- a/english/cpp/system.collections.generic/idictionary/remove/_index.md +++ b/english/cpp/system.collections.generic/idictionary/remove/_index.md @@ -4,7 +4,7 @@ linktitle: Remove second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IDictionary::Remove method. Removes key from container in C++.' type: docs -weight: 1200 +weight: 1300 url: /cpp/system.collections.generic/idictionary/remove/ --- ## IDictionary::Remove method diff --git a/english/cpp/system.collections.generic/idictionary/trygetvalue/_index.md b/english/cpp/system.collections.generic/idictionary/trygetvalue/_index.md index fa3da6387d..44facd7434 100644 --- a/english/cpp/system.collections.generic/idictionary/trygetvalue/_index.md +++ b/english/cpp/system.collections.generic/idictionary/trygetvalue/_index.md @@ -4,7 +4,7 @@ linktitle: TryGetValue second_title: Aspose.PDF for C++ API Reference description: 'System::Collections::Generic::IDictionary::TryGetValue method. Looks for value and retreives it if found in C++.' type: docs -weight: 1300 +weight: 1400 url: /cpp/system.collections.generic/idictionary/trygetvalue/ --- ## IDictionary::TryGetValue method diff --git a/english/cpp/system.collections.generic/ienumerable/_index.md b/english/cpp/system.collections.generic/ienumerable/_index.md index e22c0a07f8..f958c04938 100644 --- a/english/cpp/system.collections.generic/ienumerable/_index.md +++ b/english/cpp/system.collections.generic/ienumerable/_index.md @@ -70,7 +70,7 @@ templateclass IEnumerable : public virtual System::Object | [LINQ_SelectMany](./linq_selectmany/)(const Func\\>\>\&) | | | [LINQ_Take](./linq_take/)(int32_t) | Returns a specified number of contiguous elements from the start of a sequence. | | [LINQ_ToArray](./linq_toarray/)() | Creates an array from a sequence. | -| [LINQ_ToList](./linq_tolist/)() | Creates a List from a sequence. | +| [LINQ_ToList](./linq_tolist/)() | Creates a [List](../list/) from a sequence. | | [LINQ_Where](./linq_where/)(std::function\) | Filters a sequence based on the specified predicate. | | virtual [virtualizeBeginConstIterator](./virtualizebeginconstiterator/)() const | Gets the implementation of begin const iterator for the current container. | | virtual [virtualizeBeginIterator](./virtualizebeginiterator/)() | Gets the implementation of begin iterator for the current container. | diff --git a/english/cpp/system.collections.generic/ienumerable/ienumeratortype/_index.md b/english/cpp/system.collections.generic/ienumerable/ienumeratortype/_index.md index 8531746827..00f39b0f51 100644 --- a/english/cpp/system.collections.generic/ienumerable/ienumeratortype/_index.md +++ b/english/cpp/system.collections.generic/ienumerable/ienumeratortype/_index.md @@ -13,13 +13,13 @@ url: /cpp/system.collections.generic/ienumerable/ienumeratortype/ RTTI information. ```cpp -IEnumerator System::Collections::Generic::IEnumerable< T >::IEnumeratorType +typedef IEnumerator System::Collections::Generic::IEnumerable< T >::IEnumeratorType ``` ## Remarks -Enumerator type. +[Enumerator](../../baseset/) type. ## See Also * Class [IEnumerable](../) diff --git a/english/cpp/system.collections.generic/ienumerable/linq_tolist/_index.md b/english/cpp/system.collections.generic/ienumerable/linq_tolist/_index.md index 6ecfabb8fe..a5c6a8318c 100644 --- a/english/cpp/system.collections.generic/ienumerable/linq_tolist/_index.md +++ b/english/cpp/system.collections.generic/ienumerable/linq_tolist/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.collections.generic/ienumerable/linq_tolist/ ## IEnumerable::LINQ_ToList method -Creates a List from a sequence. +Creates a [List](../../list/) from a sequence. ```cpp System::SharedPtr> System::Collections::Generic::IEnumerable::LINQ_ToList() diff --git a/english/cpp/system.collections.generic/ienumerator/valuetype/_index.md b/english/cpp/system.collections.generic/ienumerator/valuetype/_index.md index 245a6f7b4f..933933fc1a 100644 --- a/english/cpp/system.collections.generic/ienumerator/valuetype/_index.md +++ b/english/cpp/system.collections.generic/ienumerator/valuetype/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/ienumerator/valuetype/ Value type. ```cpp -T System::Collections::Generic::IEnumerator< T >::ValueType +typedef T System::Collections::Generic::IEnumerator< T >::ValueType ``` ## See Also diff --git a/english/cpp/system.collections.generic/ilist/basetype/_index.md b/english/cpp/system.collections.generic/ilist/basetype/_index.md index 0dd18acf7b..3b270adcda 100644 --- a/english/cpp/system.collections.generic/ilist/basetype/_index.md +++ b/english/cpp/system.collections.generic/ilist/basetype/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/ilist/basetype/ RTTI information. ```cpp -ICollection System::Collections::Generic::IList< T >::BaseType +typedef ICollection System::Collections::Generic::IList< T >::BaseType ``` ## Remarks diff --git a/english/cpp/system.collections.generic/ilist/thistype/_index.md b/english/cpp/system.collections.generic/ilist/thistype/_index.md index a30f1a3cc8..4c0544c108 100644 --- a/english/cpp/system.collections.generic/ilist/thistype/_index.md +++ b/english/cpp/system.collections.generic/ilist/thistype/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/ilist/thistype/ This type. ```cpp -IList System::Collections::Generic::IList< T >::ThisType +typedef IList System::Collections::Generic::IList< T >::ThisType ``` ## See Also diff --git a/english/cpp/system.collections.generic/ilist/valuetype/_index.md b/english/cpp/system.collections.generic/ilist/valuetype/_index.md index 1db4dc9a86..3e1a5bf7c6 100644 --- a/english/cpp/system.collections.generic/ilist/valuetype/_index.md +++ b/english/cpp/system.collections.generic/ilist/valuetype/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/ilist/valuetype/ Value type. ```cpp -T System::Collections::Generic::IList< T >::ValueType +typedef T System::Collections::Generic::IList< T >::ValueType ``` ## See Also diff --git a/english/cpp/system.collections.generic/iset/ienumerableptr/_index.md b/english/cpp/system.collections.generic/iset/ienumerableptr/_index.md index a18c423ead..fd352332ee 100644 --- a/english/cpp/system.collections.generic/iset/ienumerableptr/_index.md +++ b/english/cpp/system.collections.generic/iset/ienumerableptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/iset/ienumerableptr/ RTTI information. ```cpp -SharedPtr > System::Collections::Generic::ISet< T >::IEnumerablePtr +typedef SharedPtr > System::Collections::Generic::ISet< T >::IEnumerablePtr ``` ## Remarks diff --git a/english/cpp/system.collections.generic/keyvaluepair/_index.md b/english/cpp/system.collections.generic/keyvaluepair/_index.md index 8d76318e8c..f38235b082 100644 --- a/english/cpp/system.collections.generic/keyvaluepair/_index.md +++ b/english/cpp/system.collections.generic/keyvaluepair/_index.md @@ -27,7 +27,7 @@ templateclass KeyValuePair | [KeyValuePair](./keyvaluepair/)() | Null key-value pair initializer. | | [KeyValuePair](./keyvaluepair/)(const TKey\&, const TValue\&) | Constructor. | | [KeyValuePair](./keyvaluepair/)(const std::pair\\&) | Type conversion constructor. | -| [operator<](./operator_/)(const KeyValuePair\&) const | Patch for classes inherited from IComparer>, doesn't compare anything. | +| [operator<](./operator_/)(const KeyValuePair\&) const | Patch for classes inherited from [IComparer>](../icomparer/), doesn't compare anything. | | [ToString](./tostring/)() const | Converts key-value pair to string. | ## See Also diff --git a/english/cpp/system.collections.generic/keyvaluepair/operator_/_index.md b/english/cpp/system.collections.generic/keyvaluepair/operator_/_index.md index c975b6216e..76ed2f10f0 100644 --- a/english/cpp/system.collections.generic/keyvaluepair/operator_/_index.md +++ b/english/cpp/system.collections.generic/keyvaluepair/operator_/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.collections.generic/keyvaluepair/operator_/ ## KeyValuePair::operator< method -Patch for classes inherited from IComparer>, doesn't compare anything. +Patch for classes inherited from [IComparer>](../../icomparer/), doesn't compare anything. ```cpp bool System::Collections::Generic::KeyValuePair::operator<(const KeyValuePair &kvp) const diff --git a/english/cpp/system.collections.generic/linkedlist/const_iterator/_index.md b/english/cpp/system.collections.generic/linkedlist/const_iterator/_index.md index 46314aa570..a4006a6fe6 100644 --- a/english/cpp/system.collections.generic/linkedlist/const_iterator/_index.md +++ b/english/cpp/system.collections.generic/linkedlist/const_iterator/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/linkedlist/const_iterator/ Const iterator type. ```cpp -list_t::const_iterator System::Collections::Generic::LinkedList< T >::const_iterator +typedef list_t::const_iterator System::Collections::Generic::LinkedList< T >::const_iterator ``` ## See Also diff --git a/english/cpp/system.collections.generic/linkedlist/const_reverse_iterator/_index.md b/english/cpp/system.collections.generic/linkedlist/const_reverse_iterator/_index.md index 87c7025771..8203dc7b4f 100644 --- a/english/cpp/system.collections.generic/linkedlist/const_reverse_iterator/_index.md +++ b/english/cpp/system.collections.generic/linkedlist/const_reverse_iterator/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/linkedlist/const_reverse_iterator/ Const reverse iterator type. ```cpp -list_t::const_reverse_iterator System::Collections::Generic::LinkedList< T >::const_reverse_iterator +typedef list_t::const_reverse_iterator System::Collections::Generic::LinkedList< T >::const_reverse_iterator ``` ## See Also diff --git a/english/cpp/system.collections.generic/linkedlist/iterator/_index.md b/english/cpp/system.collections.generic/linkedlist/iterator/_index.md index a4dfd83093..0ee93acff9 100644 --- a/english/cpp/system.collections.generic/linkedlist/iterator/_index.md +++ b/english/cpp/system.collections.generic/linkedlist/iterator/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/linkedlist/iterator/ Iterator type. ```cpp -list_t::iterator System::Collections::Generic::LinkedList< T >::iterator +typedef list_t::iterator System::Collections::Generic::LinkedList< T >::iterator ``` ## See Also diff --git a/english/cpp/system.collections.generic/linkedlist/list_t/_index.md b/english/cpp/system.collections.generic/linkedlist/list_t/_index.md index 209841b4b9..3f15125c02 100644 --- a/english/cpp/system.collections.generic/linkedlist/list_t/_index.md +++ b/english/cpp/system.collections.generic/linkedlist/list_t/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/linkedlist/list_t/ Underlying data type. ```cpp -std::list System::Collections::Generic::LinkedList< T >::list_t +typedef std::list System::Collections::Generic::LinkedList< T >::list_t ``` ## See Also diff --git a/english/cpp/system.collections.generic/linkedlist/reverse_iterator/_index.md b/english/cpp/system.collections.generic/linkedlist/reverse_iterator/_index.md index b6f9e77a30..0219d0889e 100644 --- a/english/cpp/system.collections.generic/linkedlist/reverse_iterator/_index.md +++ b/english/cpp/system.collections.generic/linkedlist/reverse_iterator/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/linkedlist/reverse_iterator/ Reverse iterator type. ```cpp -list_t::reverse_iterator System::Collections::Generic::LinkedList< T >::reverse_iterator +typedef list_t::reverse_iterator System::Collections::Generic::LinkedList< T >::reverse_iterator ``` ## See Also diff --git a/english/cpp/system.collections.generic/list/_index.md b/english/cpp/system.collections.generic/list/_index.md index 46ba85bd48..c36e7da5b6 100644 --- a/english/cpp/system.collections.generic/list/_index.md +++ b/english/cpp/system.collections.generic/list/_index.md @@ -30,7 +30,7 @@ templateclass List : public virtual System::Object, | --- | --- | | [_add_range](./_add_range/)(std::initializer_list\) | C++ specific. | | [Add](./add/)(const T\&) override | Adds element to the end of list. | -| [AddInitializer](./addinitializer/)(int, const T) | Adds elements to list; used when translating initializers. | +| [AddInitializer](./addinitializer/)(int, const T *) | Adds elements to list; used when translating initializers. | | [AddRange](./addrange/)(IEnumerablePtr) | Adds all elements from collection (or itself) to the end of current list. | | [AsReadOnly](./asreadonly/)() | Gets read-only reference to this collection. | | [begin](./begin/)() | Gets iterator to the first element of collection. | diff --git a/english/cpp/system.collections.generic/list/addinitializer/_index.md b/english/cpp/system.collections.generic/list/addinitializer/_index.md index f66c823678..15f7148b9f 100644 --- a/english/cpp/system.collections.generic/list/addinitializer/_index.md +++ b/english/cpp/system.collections.generic/list/addinitializer/_index.md @@ -13,14 +13,14 @@ url: /cpp/system.collections.generic/list/addinitializer/ Adds elements to list; used when translating initializers. ```cpp -void System::Collections::Generic::List::AddInitializer(int size, const T inits[]) +void System::Collections::Generic::List::AddInitializer(int size, const T *inits) ``` | Parameter | Type | Description | | --- | --- | --- | | size | int | Number of elements to insert. | -| inits | const T | Elements to insert. | +| inits | const T * | Elements to insert. | ## See Also diff --git a/english/cpp/system.collections.generic/list/basetype/_index.md b/english/cpp/system.collections.generic/list/basetype/_index.md index 7ccb1a621b..79f817b14c 100644 --- a/english/cpp/system.collections.generic/list/basetype/_index.md +++ b/english/cpp/system.collections.generic/list/basetype/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/list/basetype/ Interface type. ```cpp -IList System::Collections::Generic::List< T >::BaseType +typedef IList System::Collections::Generic::List< T >::BaseType ``` ## See Also diff --git a/english/cpp/system.collections.generic/list/const_iterator/_index.md b/english/cpp/system.collections.generic/list/const_iterator/_index.md index 9accf8ee44..8ab380e544 100644 --- a/english/cpp/system.collections.generic/list/const_iterator/_index.md +++ b/english/cpp/system.collections.generic/list/const_iterator/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/list/const_iterator/ Const iterator type. ```cpp -vector_t::const_iterator System::Collections::Generic::List< T >::const_iterator +typedef vector_t::const_iterator System::Collections::Generic::List< T >::const_iterator ``` ## See Also diff --git a/english/cpp/system.collections.generic/list/const_reverse_iterator/_index.md b/english/cpp/system.collections.generic/list/const_reverse_iterator/_index.md index 327979bc88..08536017d9 100644 --- a/english/cpp/system.collections.generic/list/const_reverse_iterator/_index.md +++ b/english/cpp/system.collections.generic/list/const_reverse_iterator/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/list/const_reverse_iterator/ Const reverse iterator type. ```cpp -vector_t::const_reverse_iterator System::Collections::Generic::List< T >::const_reverse_iterator +typedef vector_t::const_reverse_iterator System::Collections::Generic::List< T >::const_reverse_iterator ``` ## See Also diff --git a/english/cpp/system.collections.generic/list/convertall/_index.md b/english/cpp/system.collections.generic/list/convertall/_index.md index 0a93f81410..84c904ab27 100644 --- a/english/cpp/system.collections.generic/list/convertall/_index.md +++ b/english/cpp/system.collections.generic/list/convertall/_index.md @@ -23,7 +23,7 @@ template SharedPtr> System::Collections::G | Parameter | Type | Description | | --- | --- | --- | -| converter | Converter\ | Converter to use for items conversion. | +| converter | Converter\ | [Converter](../../../system/converter/) to use for items conversion. | ### ReturnValue diff --git a/english/cpp/system.collections.generic/list/exists/_index.md b/english/cpp/system.collections.generic/list/exists/_index.md index f2afa0b440..6056121954 100644 --- a/english/cpp/system.collections.generic/list/exists/_index.md +++ b/english/cpp/system.collections.generic/list/exists/_index.md @@ -19,7 +19,7 @@ bool System::Collections::Generic::List::Exists(System::Predicate match) | Parameter | Type | Description | | --- | --- | --- | -| match | System::Predicate\ | Predicate to check elements with. | +| match | System::Predicate\ | [Predicate](../../../system/predicate/) to check elements with. | ### ReturnValue diff --git a/english/cpp/system.collections.generic/list/find/_index.md b/english/cpp/system.collections.generic/list/find/_index.md index a40755ae5d..a75d877d45 100644 --- a/english/cpp/system.collections.generic/list/find/_index.md +++ b/english/cpp/system.collections.generic/list/find/_index.md @@ -19,7 +19,7 @@ T System::Collections::Generic::List::Find(System::Predicate predicate) | Parameter | Type | Description | | --- | --- | --- | -| predicate | System::Predicate\ | Predicate to check elements with. | +| predicate | System::Predicate\ | [Predicate](../../../system/predicate/) to check elements with. | ### ReturnValue diff --git a/english/cpp/system.collections.generic/list/findall/_index.md b/english/cpp/system.collections.generic/list/findall/_index.md index 4719c00c08..85527bc489 100644 --- a/english/cpp/system.collections.generic/list/findall/_index.md +++ b/english/cpp/system.collections.generic/list/findall/_index.md @@ -19,7 +19,7 @@ ListPtr System::Collections::Generic::List::FindAll(System::Predicate m | Parameter | Type | Description | | --- | --- | --- | -| match | System::Predicate\ | Predicate to check elements with. | +| match | System::Predicate\ | [Predicate](../../../system/predicate/) to check elements with. | ### ReturnValue diff --git a/english/cpp/system.collections.generic/list/findindex/_index.md b/english/cpp/system.collections.generic/list/findindex/_index.md index 32b80227c4..59463e7bd8 100644 --- a/english/cpp/system.collections.generic/list/findindex/_index.md +++ b/english/cpp/system.collections.generic/list/findindex/_index.md @@ -21,7 +21,7 @@ int System::Collections::Generic::List::FindIndex(int startIndex, int count, | --- | --- | --- | | startIndex | int | Index to start search from. | | count | int | Number of elements to look through. | -| match | System::Predicate\ | Predicate to check elements with. | +| match | System::Predicate\ | [Predicate](../../../system/predicate/) to check elements with. | ### ReturnValue @@ -46,7 +46,7 @@ int System::Collections::Generic::List::FindIndex(int startIndex, System::Pre | Parameter | Type | Description | | --- | --- | --- | | startIndex | int | Index to start search from. | -| match | System::Predicate\ | Predicate to check elements with. | +| match | System::Predicate\ | [Predicate](../../../system/predicate/) to check elements with. | ### ReturnValue @@ -70,7 +70,7 @@ int System::Collections::Generic::List::FindIndex(System::Predicate match) | Parameter | Type | Description | | --- | --- | --- | -| match | System::Predicate\ | Predicate to check elements with. | +| match | System::Predicate\ | [Predicate](../../../system/predicate/) to check elements with. | ### ReturnValue diff --git a/english/cpp/system.collections.generic/list/findlast/_index.md b/english/cpp/system.collections.generic/list/findlast/_index.md index 0f07e229f4..3d1b58cc1e 100644 --- a/english/cpp/system.collections.generic/list/findlast/_index.md +++ b/english/cpp/system.collections.generic/list/findlast/_index.md @@ -19,7 +19,7 @@ T System::Collections::Generic::List::FindLast(System::Predicate match) | Parameter | Type | Description | | --- | --- | --- | -| match | System::Predicate\ | Predicate to check elements with. | +| match | System::Predicate\ | [Predicate](../../../system/predicate/) to check elements with. | ### ReturnValue diff --git a/english/cpp/system.collections.generic/list/foreach/_index.md b/english/cpp/system.collections.generic/list/foreach/_index.md index 463965ec5a..4682207603 100644 --- a/english/cpp/system.collections.generic/list/foreach/_index.md +++ b/english/cpp/system.collections.generic/list/foreach/_index.md @@ -19,7 +19,7 @@ void System::Collections::Generic::List::ForEach(System::Action action) | Parameter | Type | Description | | --- | --- | --- | -| action | System::Action\ | Action to apply. | +| action | System::Action\ | [Action](../../../system/action/) to apply. | ## See Also diff --git a/english/cpp/system.collections.generic/list/ienumerableptr/_index.md b/english/cpp/system.collections.generic/list/ienumerableptr/_index.md index 2f083ef8d4..1b0a064b6f 100644 --- a/english/cpp/system.collections.generic/list/ienumerableptr/_index.md +++ b/english/cpp/system.collections.generic/list/ienumerableptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/list/ienumerableptr/ Container holding elements of same type we hold. ```cpp -SharedPtr > System::Collections::Generic::List< T >::IEnumerablePtr +typedef SharedPtr > System::Collections::Generic::List< T >::IEnumerablePtr ``` ## See Also diff --git a/english/cpp/system.collections.generic/list/ienumeratorptr/_index.md b/english/cpp/system.collections.generic/list/ienumeratorptr/_index.md index 32d6575b48..3d7010c3ab 100644 --- a/english/cpp/system.collections.generic/list/ienumeratorptr/_index.md +++ b/english/cpp/system.collections.generic/list/ienumeratorptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/list/ienumeratorptr/ [Enumerator](../enumerator/) type. ```cpp -SharedPtr > System::Collections::Generic::List< T >::IEnumeratorPtr +typedef SharedPtr > System::Collections::Generic::List< T >::IEnumeratorPtr ``` ## See Also diff --git a/english/cpp/system.collections.generic/list/iterator/_index.md b/english/cpp/system.collections.generic/list/iterator/_index.md index ce0f41ccfe..50739bb07f 100644 --- a/english/cpp/system.collections.generic/list/iterator/_index.md +++ b/english/cpp/system.collections.generic/list/iterator/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/list/iterator/ Iterator type. ```cpp -vector_t::iterator System::Collections::Generic::List< T >::iterator +typedef vector_t::iterator System::Collections::Generic::List< T >::iterator ``` ## See Also diff --git a/english/cpp/system.collections.generic/list/removeall/_index.md b/english/cpp/system.collections.generic/list/removeall/_index.md index ca6120a14a..f7ca3c02a5 100644 --- a/english/cpp/system.collections.generic/list/removeall/_index.md +++ b/english/cpp/system.collections.generic/list/removeall/_index.md @@ -19,7 +19,7 @@ int System::Collections::Generic::List::RemoveAll(Predicate match) | Parameter | Type | Description | | --- | --- | --- | -| match | Predicate\ | Predicate to check elements with. | +| match | Predicate\ | [Predicate](../../../system/predicate/) to check elements with. | ### ReturnValue diff --git a/english/cpp/system.collections.generic/list/reverse_iterator/_index.md b/english/cpp/system.collections.generic/list/reverse_iterator/_index.md index 0c8a118ce6..9fa2ffeec0 100644 --- a/english/cpp/system.collections.generic/list/reverse_iterator/_index.md +++ b/english/cpp/system.collections.generic/list/reverse_iterator/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/list/reverse_iterator/ Reverse iterator type. ```cpp -vector_t::reverse_iterator System::Collections::Generic::List< T >::reverse_iterator +typedef vector_t::reverse_iterator System::Collections::Generic::List< T >::reverse_iterator ``` ## See Also diff --git a/english/cpp/system.collections.generic/list/trueforall/_index.md b/english/cpp/system.collections.generic/list/trueforall/_index.md index 74d2b1044f..175e1d3ab7 100644 --- a/english/cpp/system.collections.generic/list/trueforall/_index.md +++ b/english/cpp/system.collections.generic/list/trueforall/_index.md @@ -19,7 +19,7 @@ bool System::Collections::Generic::List::TrueForAll(System::Predicate matc | Parameter | Type | Description | | --- | --- | --- | -| match | System::Predicate\ | Predicate to check elements with. | +| match | System::Predicate\ | [Predicate](../../../system/predicate/) to check elements with. | ### ReturnValue diff --git a/english/cpp/system.collections.generic/list/valuetype/_index.md b/english/cpp/system.collections.generic/list/valuetype/_index.md index 31c085d163..83094900b7 100644 --- a/english/cpp/system.collections.generic/list/valuetype/_index.md +++ b/english/cpp/system.collections.generic/list/valuetype/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/list/valuetype/ This type. ```cpp -T System::Collections::Generic::List< T >::ValueType +typedef T System::Collections::Generic::List< T >::ValueType ``` ## See Also diff --git a/english/cpp/system.collections.generic/list/vector_t/_index.md b/english/cpp/system.collections.generic/list/vector_t/_index.md index 93d602c09d..03c5676c98 100644 --- a/english/cpp/system.collections.generic/list/vector_t/_index.md +++ b/english/cpp/system.collections.generic/list/vector_t/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/list/vector_t/ RTTI information. ```cpp -std::vector System::Collections::Generic::List< T >::vector_t +typedef std::vector System::Collections::Generic::List< T >::vector_t ``` ## Remarks diff --git a/english/cpp/system.collections.generic/listext/basetype/_index.md b/english/cpp/system.collections.generic/listext/basetype/_index.md index 9d331a76b4..94e55f0b3d 100644 --- a/english/cpp/system.collections.generic/listext/basetype/_index.md +++ b/english/cpp/system.collections.generic/listext/basetype/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/listext/basetype/ ```cpp -List System::Collections::Generic::ListExt< T >::BaseType +typedef List System::Collections::Generic::ListExt< T >::BaseType ``` ## See Also diff --git a/english/cpp/system.collections.generic/listext/basetypes/_index.md b/english/cpp/system.collections.generic/listext/basetypes/_index.md index b196c58ebe..b212986687 100644 --- a/english/cpp/system.collections.generic/listext/basetypes/_index.md +++ b/english/cpp/system.collections.generic/listext/basetypes/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/listext/basetypes/ ```cpp -System::BaseTypesInfo System::Collections::Generic::ListExt< T >::BaseTypes +typedef System::BaseTypesInfo System::Collections::Generic::ListExt< T >::BaseTypes ``` ## See Also diff --git a/english/cpp/system.collections.generic/listext/listtype/_index.md b/english/cpp/system.collections.generic/listext/listtype/_index.md index f351494bfd..c522fb3dae 100644 --- a/english/cpp/system.collections.generic/listext/listtype/_index.md +++ b/english/cpp/system.collections.generic/listext/listtype/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/listext/listtype/ ```cpp -System::Collections::Generic::List System::Collections::Generic::ListExt< T >::ListType +typedef System::Collections::Generic::List System::Collections::Generic::ListExt< T >::ListType ``` ## See Also diff --git a/english/cpp/system.collections.generic/listext/thistype/_index.md b/english/cpp/system.collections.generic/listext/thistype/_index.md index bdd7938bbe..8887ca6be5 100644 --- a/english/cpp/system.collections.generic/listext/thistype/_index.md +++ b/english/cpp/system.collections.generic/listext/thistype/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/listext/thistype/ ```cpp -System::Collections::Generic::ListExt System::Collections::Generic::ListExt< T >::ThisType +typedef System::Collections::Generic::ListExt System::Collections::Generic::ListExt< T >::ThisType ``` ## See Also diff --git a/english/cpp/system.collections.generic/listext/valuetype/_index.md b/english/cpp/system.collections.generic/listext/valuetype/_index.md index b50d0022e0..0338b3d875 100644 --- a/english/cpp/system.collections.generic/listext/valuetype/_index.md +++ b/english/cpp/system.collections.generic/listext/valuetype/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/listext/valuetype/ ```cpp -T System::Collections::Generic::ListExt< T >::ValueType +typedef T System::Collections::Generic::ListExt< T >::ValueType ``` ## See Also diff --git a/english/cpp/system.collections.generic/listptr/_index.md b/english/cpp/system.collections.generic/listptr/_index.md index 9d41b49df5..38862afd05 100644 --- a/english/cpp/system.collections.generic/listptr/_index.md +++ b/english/cpp/system.collections.generic/listptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/listptr/ [List](../list/) pointer with access operators. This type is a pointer to manage other object's deletion. It should be allocated on stack and passed to functions either by value or by const reference. ```cpp -templateclass ListPtr : public System::SmartPtr> +templateclass ListPtr : public System::SmartPtr ``` ## Methods diff --git a/english/cpp/system.collections.generic/queue/ienumerableptr/_index.md b/english/cpp/system.collections.generic/queue/ienumerableptr/_index.md index 8d1fa9b2f8..d925c5ebe9 100644 --- a/english/cpp/system.collections.generic/queue/ienumerableptr/_index.md +++ b/english/cpp/system.collections.generic/queue/ienumerableptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/queue/ienumerableptr/ Container of same type elements. ```cpp -SharedPtr > System::Collections::Generic::Queue< T >::IEnumerablePtr +typedef SharedPtr > System::Collections::Generic::Queue< T >::IEnumerablePtr ``` ## See Also diff --git a/english/cpp/system.collections.generic/queue/ienumeratorptr/_index.md b/english/cpp/system.collections.generic/queue/ienumeratorptr/_index.md index 350e7ded7d..5bff3a239a 100644 --- a/english/cpp/system.collections.generic/queue/ienumeratorptr/_index.md +++ b/english/cpp/system.collections.generic/queue/ienumeratorptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/queue/ienumeratorptr/ [Enumerator](../enumerator/) type. ```cpp -SharedPtr > System::Collections::Generic::Queue< T >::IEnumeratorPtr +typedef SharedPtr > System::Collections::Generic::Queue< T >::IEnumeratorPtr ``` ## See Also diff --git a/english/cpp/system.collections.generic/queue/queue_t/_index.md b/english/cpp/system.collections.generic/queue/queue_t/_index.md index c60214395a..3c242000a2 100644 --- a/english/cpp/system.collections.generic/queue/queue_t/_index.md +++ b/english/cpp/system.collections.generic/queue/queue_t/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/queue/queue_t/ RTTI information. ```cpp -std::list System::Collections::Generic::Queue< T >::queue_t +typedef std::list System::Collections::Generic::Queue< T >::queue_t ``` ## Remarks diff --git a/english/cpp/system.collections.generic/queue/valuetype/_index.md b/english/cpp/system.collections.generic/queue/valuetype/_index.md index 31e30c0200..4657933e9b 100644 --- a/english/cpp/system.collections.generic/queue/valuetype/_index.md +++ b/english/cpp/system.collections.generic/queue/valuetype/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/queue/valuetype/ This type. ```cpp -T System::Collections::Generic::Queue< T >::ValueType +typedef T System::Collections::Generic::Queue< T >::ValueType ``` ## See Also diff --git a/english/cpp/system.collections.generic/queueptr/_index.md b/english/cpp/system.collections.generic/queueptr/_index.md index 6a33bb8cb1..41df737f8a 100644 --- a/english/cpp/system.collections.generic/queueptr/_index.md +++ b/english/cpp/system.collections.generic/queueptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/queueptr/ [Queue](../queue/) pointer. This type is a pointer to manage other object's deletion. It should be allocated on stack and passed to functions either by value or by const reference. ```cpp -templateclass QueuePtr : public System::SmartPtr> +templateclass QueuePtr : public System::SmartPtr ``` ## Methods diff --git a/english/cpp/system.collections.generic/reverseenumerator/_index.md b/english/cpp/system.collections.generic/reverseenumerator/_index.md index 3362098d42..ebebb01387 100644 --- a/english/cpp/system.collections.generic/reverseenumerator/_index.md +++ b/english/cpp/system.collections.generic/reverseenumerator/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.collections.generic/reverseenumerator/ ## ReverseEnumerator class -Enumerator that reverse-iterates through container. 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. +[Enumerator](../baseset/) that reverse-iterates through container. 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. ```cpp templateclass ReverseEnumerator : public System::Collections::Generic::IEnumerator diff --git a/english/cpp/system.collections.generic/sorteddictionary/_index.md b/english/cpp/system.collections.generic/sorteddictionary/_index.md index c5f2be70ce..beddf75593 100644 --- a/english/cpp/system.collections.generic/sorteddictionary/_index.md +++ b/english/cpp/system.collections.generic/sorteddictionary/_index.md @@ -30,7 +30,7 @@ templateclass SortedDictionary : public System::C | --- | --- | | [crbegin](./crbegin/)() const | Gets a reverse iterator to the last const-qualified element of collection (first in reverse). | | [crend](./crend/)() const | Gets a reverse iterator for a non-existent const-qualified element before the start of the collection. | -| [get_Comparer](./get_comparer/)() const | Gets the IComparer used to order the elements of the SortedDictionary. | +| [get_Comparer](./get_comparer/)() const | Gets the [IComparer](../icomparer/) used to order the elements of the SortedDictionary. | | static [GetDefaultKeyComparer](./getdefaultkeycomparer/)() | Singleton accessor function. | | [GetEnumerator](./getenumerator/)() override | Gets enumerator to iterate through current dictionary. | | [rbegin](./rbegin/)() | Gets a reverse iterator to the last element of collection (first in reverse). | diff --git a/english/cpp/system.collections.generic/sorteddictionary/const_iterator/_index.md b/english/cpp/system.collections.generic/sorteddictionary/const_iterator/_index.md index 91892c6bb1..08ad52dcb6 100644 --- a/english/cpp/system.collections.generic/sorteddictionary/const_iterator/_index.md +++ b/english/cpp/system.collections.generic/sorteddictionary/const_iterator/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/sorteddictionary/const_iterator/ Const iterator type. ```cpp -_BaseType::const_iterator System::Collections::Generic::SortedDictionary< TKey, TValue >::const_iterator +typedef _BaseType::const_iterator System::Collections::Generic::SortedDictionary< TKey, TValue >::const_iterator ``` ## See Also diff --git a/english/cpp/system.collections.generic/sorteddictionary/const_reverse_iterator/_index.md b/english/cpp/system.collections.generic/sorteddictionary/const_reverse_iterator/_index.md index 0b5b3c27d5..502bb4eec7 100644 --- a/english/cpp/system.collections.generic/sorteddictionary/const_reverse_iterator/_index.md +++ b/english/cpp/system.collections.generic/sorteddictionary/const_reverse_iterator/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/sorteddictionary/const_reverse_iterator/ Const reverse iterator type. ```cpp -map_t::const_reverse_iterator System::Collections::Generic::SortedDictionary< TKey, TValue >::const_reverse_iterator +typedef map_t::const_reverse_iterator System::Collections::Generic::SortedDictionary< TKey, TValue >::const_reverse_iterator ``` ## See Also diff --git a/english/cpp/system.collections.generic/sorteddictionary/enumerator/enumeratortype/_index.md b/english/cpp/system.collections.generic/sorteddictionary/enumerator/enumeratortype/_index.md index 3da64c5b81..6d8c588a17 100644 --- a/english/cpp/system.collections.generic/sorteddictionary/enumerator/enumeratortype/_index.md +++ b/english/cpp/system.collections.generic/sorteddictionary/enumerator/enumeratortype/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/sorteddictionary/enumerator/enumeratortype/ [Enumerator](../) type alias. ```cpp -SortedDictionary::Enumerator System::Collections::Generic::SortedDictionary< TKey, TValue >::Enumerator::EnumeratorType +typedef SortedDictionary::Enumerator System::Collections::Generic::SortedDictionary< TKey, TValue >::Enumerator::EnumeratorType ``` ## See Also diff --git a/english/cpp/system.collections.generic/sorteddictionary/get_comparer/_index.md b/english/cpp/system.collections.generic/sorteddictionary/get_comparer/_index.md index 40a17699cb..80f27a5ca3 100644 --- a/english/cpp/system.collections.generic/sorteddictionary/get_comparer/_index.md +++ b/english/cpp/system.collections.generic/sorteddictionary/get_comparer/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.collections.generic/sorteddictionary/get_comparer/ ## SortedDictionary::get_Comparer method -Gets the IComparer used to order the elements of the SortedDictionary. +Gets the [IComparer](../../icomparer/) used to order the elements of the SortedDictionary. ```cpp SharedPtr> System::Collections::Generic::SortedDictionary::get_Comparer() const diff --git a/english/cpp/system.collections.generic/sorteddictionary/ienumerableptr/_index.md b/english/cpp/system.collections.generic/sorteddictionary/ienumerableptr/_index.md index 623cad3721..4d6a6de514 100644 --- a/english/cpp/system.collections.generic/sorteddictionary/ienumerableptr/_index.md +++ b/english/cpp/system.collections.generic/sorteddictionary/ienumerableptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/sorteddictionary/ienumerableptr/ Collection of same elements. ```cpp -SharedPtr< IEnumerable > System::Collections::Generic::SortedDictionary< TKey, TValue >::IEnumerablePtr +typedef SharedPtr< IEnumerable > System::Collections::Generic::SortedDictionary< TKey, TValue >::IEnumerablePtr ``` ## See Also diff --git a/english/cpp/system.collections.generic/sorteddictionary/ienumeratorptr/_index.md b/english/cpp/system.collections.generic/sorteddictionary/ienumeratorptr/_index.md index 6bc30b15c3..3c6b20a735 100644 --- a/english/cpp/system.collections.generic/sorteddictionary/ienumeratorptr/_index.md +++ b/english/cpp/system.collections.generic/sorteddictionary/ienumeratorptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/sorteddictionary/ienumeratorptr/ [Enumerator](../enumerator/) type. ```cpp -SharedPtr< IEnumerator > System::Collections::Generic::SortedDictionary< TKey, TValue >::IEnumeratorPtr +typedef SharedPtr< IEnumerator > System::Collections::Generic::SortedDictionary< TKey, TValue >::IEnumeratorPtr ``` ## See Also diff --git a/english/cpp/system.collections.generic/sorteddictionary/iterator/_index.md b/english/cpp/system.collections.generic/sorteddictionary/iterator/_index.md index d28dfa1066..55ebd5b25c 100644 --- a/english/cpp/system.collections.generic/sorteddictionary/iterator/_index.md +++ b/english/cpp/system.collections.generic/sorteddictionary/iterator/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/sorteddictionary/iterator/ Iterator type. ```cpp -_BaseType::iterator System::Collections::Generic::SortedDictionary< TKey, TValue >::iterator +typedef _BaseType::iterator System::Collections::Generic::SortedDictionary< TKey, TValue >::iterator ``` ## See Also diff --git a/english/cpp/system.collections.generic/sorteddictionary/keycollection/_index.md b/english/cpp/system.collections.generic/sorteddictionary/keycollection/_index.md index 5a707afee3..2a6b48c7a5 100644 --- a/english/cpp/system.collections.generic/sorteddictionary/keycollection/_index.md +++ b/english/cpp/system.collections.generic/sorteddictionary/keycollection/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/sorteddictionary/keycollection/ Key collection type. ```cpp -ICollection System::Collections::Generic::SortedDictionary< TKey, TValue >::KeyCollection +typedef ICollection System::Collections::Generic::SortedDictionary< TKey, TValue >::KeyCollection ``` ## See Also diff --git a/english/cpp/system.collections.generic/sorteddictionary/kvpair/_index.md b/english/cpp/system.collections.generic/sorteddictionary/kvpair/_index.md index e9b0bd686b..70a81ac9f0 100644 --- a/english/cpp/system.collections.generic/sorteddictionary/kvpair/_index.md +++ b/english/cpp/system.collections.generic/sorteddictionary/kvpair/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/sorteddictionary/kvpair/ Key-value pair type. ```cpp -KeyValuePair System::Collections::Generic::SortedDictionary< TKey, TValue >::KVPair +typedef KeyValuePair System::Collections::Generic::SortedDictionary< TKey, TValue >::KVPair ``` ## See Also diff --git a/english/cpp/system.collections.generic/sorteddictionary/map_t/_index.md b/english/cpp/system.collections.generic/sorteddictionary/map_t/_index.md index 4f10658613..04f53c4d91 100644 --- a/english/cpp/system.collections.generic/sorteddictionary/map_t/_index.md +++ b/english/cpp/system.collections.generic/sorteddictionary/map_t/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/sorteddictionary/map_t/ Underlying data type. ```cpp -std::map::type>, ASPOSE_MAP_ALLOCATOR_TYPE(TKey, TValue)> System::Collections::Generic::SortedDictionary< TKey, TValue >::map_t +typedef std::map::type>, ASPOSE_MAP_ALLOCATOR_TYPE(TKey, TValue)> System::Collections::Generic::SortedDictionary< TKey, TValue >::map_t ``` ## See Also diff --git a/english/cpp/system.collections.generic/sorteddictionary/ptr/_index.md b/english/cpp/system.collections.generic/sorteddictionary/ptr/_index.md index f928587a33..d569ce3138 100644 --- a/english/cpp/system.collections.generic/sorteddictionary/ptr/_index.md +++ b/english/cpp/system.collections.generic/sorteddictionary/ptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/sorteddictionary/ptr/ Pointer type. ```cpp -SharedPtr System::Collections::Generic::SortedDictionary< TKey, TValue >::Ptr +typedef SharedPtr System::Collections::Generic::SortedDictionary< TKey, TValue >::Ptr ``` ## See Also diff --git a/english/cpp/system.collections.generic/sorteddictionary/reverse_iterator/_index.md b/english/cpp/system.collections.generic/sorteddictionary/reverse_iterator/_index.md index 90b25b77e2..4046edeefd 100644 --- a/english/cpp/system.collections.generic/sorteddictionary/reverse_iterator/_index.md +++ b/english/cpp/system.collections.generic/sorteddictionary/reverse_iterator/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/sorteddictionary/reverse_iterator/ Reverse iterator type. ```cpp -map_t::reverse_iterator System::Collections::Generic::SortedDictionary< TKey, TValue >::reverse_iterator +typedef map_t::reverse_iterator System::Collections::Generic::SortedDictionary< TKey, TValue >::reverse_iterator ``` ## See Also diff --git a/english/cpp/system.collections.generic/sorteddictionary/this_t/_index.md b/english/cpp/system.collections.generic/sorteddictionary/this_t/_index.md index 8f7de1c2e7..8ec032d1f4 100644 --- a/english/cpp/system.collections.generic/sorteddictionary/this_t/_index.md +++ b/english/cpp/system.collections.generic/sorteddictionary/this_t/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/sorteddictionary/this_t/ Self type. ```cpp -SortedDictionary System::Collections::Generic::SortedDictionary< TKey, TValue >::this_t +typedef SortedDictionary System::Collections::Generic::SortedDictionary< TKey, TValue >::this_t ``` ## See Also diff --git a/english/cpp/system.collections.generic/sorteddictionary/valuecollection/_index.md b/english/cpp/system.collections.generic/sorteddictionary/valuecollection/_index.md index 8765f28d8a..0a9dfa1eb7 100644 --- a/english/cpp/system.collections.generic/sorteddictionary/valuecollection/_index.md +++ b/english/cpp/system.collections.generic/sorteddictionary/valuecollection/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/sorteddictionary/valuecollection/ Value collection type. ```cpp -ICollection System::Collections::Generic::SortedDictionary< TKey, TValue >::ValueCollection +typedef ICollection System::Collections::Generic::SortedDictionary< TKey, TValue >::ValueCollection ``` ## See Also diff --git a/english/cpp/system.collections.generic/sorteddictionaryptr/_index.md b/english/cpp/system.collections.generic/sorteddictionaryptr/_index.md index bf9c3dd86b..e14ce8237d 100644 --- a/english/cpp/system.collections.generic/sorteddictionaryptr/_index.md +++ b/english/cpp/system.collections.generic/sorteddictionaryptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/sorteddictionaryptr/ Sorted dictionary pointer with access operators. This type is a pointer to manage other object's deletion. It should be allocated on stack and passed to functions either by value or by const reference. ```cpp -templateclass SortedDictionaryPtr : public System::SmartPtr> +templateclass SortedDictionaryPtr : public System::SmartPtr ``` ## Methods diff --git a/english/cpp/system.collections.generic/sortedlist/_index.md b/english/cpp/system.collections.generic/sortedlist/_index.md index 0cbc918fc6..160ba4d97b 100644 --- a/english/cpp/system.collections.generic/sortedlist/_index.md +++ b/english/cpp/system.collections.generic/sortedlist/_index.md @@ -32,8 +32,8 @@ templateclass SortedList : public System::Collect | [crbegin](./crbegin/)() const | Gets a reverse iterator to the last const-qualified element of collection (first in reverse). | | [crend](./crend/)() const | Gets a reverse iterator for a non-existent const-qualified element before the start of the collection. | | [get_Capacity](./get_capacity/)() const | Gets current list capacity. | -| [get_Keys](./get_keys/)() const | | -| [get_Values](./get_values/)() const | | +| virtual [get_Keys](./get_keys/)() const | Accesses key collection. | +| virtual [get_Values](./get_values/)() const | Accesses value collection. | | [GetEnumerator](./getenumerator/)() override | Gets enumerator iterating through current list. | | [IndexOfKey](./indexofkey/)(TKey) const | Looks for specific key. | | [IndexOfValue](./indexofvalue/)(TValue) const | Looks for specific value. | diff --git a/english/cpp/system.collections.generic/sortedlist/const_iterator/_index.md b/english/cpp/system.collections.generic/sortedlist/const_iterator/_index.md index 78bfd17c01..9f60a251d3 100644 --- a/english/cpp/system.collections.generic/sortedlist/const_iterator/_index.md +++ b/english/cpp/system.collections.generic/sortedlist/const_iterator/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/sortedlist/const_iterator/ Const iterator type. ```cpp -_BaseType::const_iterator System::Collections::Generic::SortedList< TKey, TValue >::const_iterator +typedef _BaseType::const_iterator System::Collections::Generic::SortedList< TKey, TValue >::const_iterator ``` ## See Also diff --git a/english/cpp/system.collections.generic/sortedlist/const_reverse_iterator/_index.md b/english/cpp/system.collections.generic/sortedlist/const_reverse_iterator/_index.md index dbd2d73c1d..7816b3a3e1 100644 --- a/english/cpp/system.collections.generic/sortedlist/const_reverse_iterator/_index.md +++ b/english/cpp/system.collections.generic/sortedlist/const_reverse_iterator/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/sortedlist/const_reverse_iterator/ Const reverse iterator type. ```cpp -map_t::const_reverse_iterator System::Collections::Generic::SortedList< TKey, TValue >::const_reverse_iterator +typedef map_t::const_reverse_iterator System::Collections::Generic::SortedList< TKey, TValue >::const_reverse_iterator ``` ## See Also diff --git a/english/cpp/system.collections.generic/sortedlist/enumerator/enumeratortype/_index.md b/english/cpp/system.collections.generic/sortedlist/enumerator/enumeratortype/_index.md index a13107d3fd..b387242025 100644 --- a/english/cpp/system.collections.generic/sortedlist/enumerator/enumeratortype/_index.md +++ b/english/cpp/system.collections.generic/sortedlist/enumerator/enumeratortype/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/sortedlist/enumerator/enumeratortype/ [Enumerator](../) type alias. ```cpp -SortedList::Enumerator System::Collections::Generic::SortedList< TKey, TValue >::Enumerator::EnumeratorType +typedef SortedList::Enumerator System::Collections::Generic::SortedList< TKey, TValue >::Enumerator::EnumeratorType ``` ## See Also diff --git a/english/cpp/system.collections.generic/sortedlist/get_keys/_index.md b/english/cpp/system.collections.generic/sortedlist/get_keys/_index.md index cbd394c348..20d786cbc4 100644 --- a/english/cpp/system.collections.generic/sortedlist/get_keys/_index.md +++ b/english/cpp/system.collections.generic/sortedlist/get_keys/_index.md @@ -2,7 +2,7 @@ title: System::Collections::Generic::SortedList::get_Keys method linktitle: get_Keys second_title: Aspose.PDF for C++ API Reference -description: 'How to use get_Keys method of System::Collections::Generic::SortedList class in C++.' +description: 'System::Collections::Generic::SortedList::get_Keys method. Accesses key collection in C++.' type: docs weight: 500 url: /cpp/system.collections.generic/sortedlist/get_keys/ @@ -10,12 +10,17 @@ url: /cpp/system.collections.generic/sortedlist/get_keys/ ## SortedList::get_Keys method - +Accesses key collection. ```cpp SharedPtr> System::Collections::Generic::SortedListHelper::get_Keys() const ``` + +### ReturnValue + +Pointer to interface providing access to stored keys via [ICollection](../../icollection/) interface. + ## See Also * Typedef [SharedPtr](../../../system/sharedptr/) diff --git a/english/cpp/system.collections.generic/sortedlist/get_values/_index.md b/english/cpp/system.collections.generic/sortedlist/get_values/_index.md index fb78cfc758..4c64281048 100644 --- a/english/cpp/system.collections.generic/sortedlist/get_values/_index.md +++ b/english/cpp/system.collections.generic/sortedlist/get_values/_index.md @@ -2,7 +2,7 @@ title: System::Collections::Generic::SortedList::get_Values method linktitle: get_Values second_title: Aspose.PDF for C++ API Reference -description: 'How to use get_Values method of System::Collections::Generic::SortedList class in C++.' +description: 'System::Collections::Generic::SortedList::get_Values method. Accesses value collection in C++.' type: docs weight: 600 url: /cpp/system.collections.generic/sortedlist/get_values/ @@ -10,12 +10,17 @@ url: /cpp/system.collections.generic/sortedlist/get_values/ ## SortedList::get_Values method - +Accesses value collection. ```cpp SharedPtr> System::Collections::Generic::SortedListHelper::get_Values() const ``` + +### ReturnValue + +Pointer to interface providing access to stored values via [ICollection](../../icollection/) interface. + ## See Also * Typedef [SharedPtr](../../../system/sharedptr/) diff --git a/english/cpp/system.collections.generic/sortedlist/ienumerableptr/_index.md b/english/cpp/system.collections.generic/sortedlist/ienumerableptr/_index.md index 61510bf77e..a2503add31 100644 --- a/english/cpp/system.collections.generic/sortedlist/ienumerableptr/_index.md +++ b/english/cpp/system.collections.generic/sortedlist/ienumerableptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/sortedlist/ienumerableptr/ Collection of same pairs type. ```cpp -SharedPtr< IEnumerable > System::Collections::Generic::SortedList< TKey, TValue >::IEnumerablePtr +typedef SharedPtr< IEnumerable > System::Collections::Generic::SortedList< TKey, TValue >::IEnumerablePtr ``` ## See Also diff --git a/english/cpp/system.collections.generic/sortedlist/ienumeratorptr/_index.md b/english/cpp/system.collections.generic/sortedlist/ienumeratorptr/_index.md index 40f564540e..8a92b3fc93 100644 --- a/english/cpp/system.collections.generic/sortedlist/ienumeratorptr/_index.md +++ b/english/cpp/system.collections.generic/sortedlist/ienumeratorptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/sortedlist/ienumeratorptr/ [Enumerator](../enumerator/) type. ```cpp -SharedPtr< IEnumerator > System::Collections::Generic::SortedList< TKey, TValue >::IEnumeratorPtr +typedef SharedPtr< IEnumerator > System::Collections::Generic::SortedList< TKey, TValue >::IEnumeratorPtr ``` ## See Also diff --git a/english/cpp/system.collections.generic/sortedlist/iterator/_index.md b/english/cpp/system.collections.generic/sortedlist/iterator/_index.md index 33960c6cec..724f224af7 100644 --- a/english/cpp/system.collections.generic/sortedlist/iterator/_index.md +++ b/english/cpp/system.collections.generic/sortedlist/iterator/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/sortedlist/iterator/ Iterator type. ```cpp -_BaseType::iterator System::Collections::Generic::SortedList< TKey, TValue >::iterator +typedef _BaseType::iterator System::Collections::Generic::SortedList< TKey, TValue >::iterator ``` ## See Also diff --git a/english/cpp/system.collections.generic/sortedlist/keycollection/_index.md b/english/cpp/system.collections.generic/sortedlist/keycollection/_index.md index 8e2b27a084..2ba71a33cf 100644 --- a/english/cpp/system.collections.generic/sortedlist/keycollection/_index.md +++ b/english/cpp/system.collections.generic/sortedlist/keycollection/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/sortedlist/keycollection/ Key collection type. ```cpp -ICollection System::Collections::Generic::SortedList< TKey, TValue >::KeyCollection +typedef ICollection System::Collections::Generic::SortedList< TKey, TValue >::KeyCollection ``` ## See Also diff --git a/english/cpp/system.collections.generic/sortedlist/kvpair/_index.md b/english/cpp/system.collections.generic/sortedlist/kvpair/_index.md index b60bbc5a6a..952a06ed5d 100644 --- a/english/cpp/system.collections.generic/sortedlist/kvpair/_index.md +++ b/english/cpp/system.collections.generic/sortedlist/kvpair/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/sortedlist/kvpair/ Key value pair type. ```cpp -KeyValuePair System::Collections::Generic::SortedList< TKey, TValue >::KVPair +typedef KeyValuePair System::Collections::Generic::SortedList< TKey, TValue >::KVPair ``` ## See Also diff --git a/english/cpp/system.collections.generic/sortedlist/map_t/_index.md b/english/cpp/system.collections.generic/sortedlist/map_t/_index.md index 3449ebc793..ca628332c4 100644 --- a/english/cpp/system.collections.generic/sortedlist/map_t/_index.md +++ b/english/cpp/system.collections.generic/sortedlist/map_t/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/sortedlist/map_t/ Underlying data type. ```cpp -Detail::FlatMap > System::Collections::Generic::SortedList< TKey, TValue >::map_t +typedef Detail::FlatMap > System::Collections::Generic::SortedList< TKey, TValue >::map_t ``` ## See Also diff --git a/english/cpp/system.collections.generic/sortedlist/ptr/_index.md b/english/cpp/system.collections.generic/sortedlist/ptr/_index.md index e3f0af7e0b..e7ae3d8518 100644 --- a/english/cpp/system.collections.generic/sortedlist/ptr/_index.md +++ b/english/cpp/system.collections.generic/sortedlist/ptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/sortedlist/ptr/ Pointer type. ```cpp -SharedPtr System::Collections::Generic::SortedList< TKey, TValue >::Ptr +typedef SharedPtr System::Collections::Generic::SortedList< TKey, TValue >::Ptr ``` ## See Also diff --git a/english/cpp/system.collections.generic/sortedlist/reverse_iterator/_index.md b/english/cpp/system.collections.generic/sortedlist/reverse_iterator/_index.md index 7362a014ad..e61e846797 100644 --- a/english/cpp/system.collections.generic/sortedlist/reverse_iterator/_index.md +++ b/english/cpp/system.collections.generic/sortedlist/reverse_iterator/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/sortedlist/reverse_iterator/ Reverse iterator type. ```cpp -map_t::reverse_iterator System::Collections::Generic::SortedList< TKey, TValue >::reverse_iterator +typedef map_t::reverse_iterator System::Collections::Generic::SortedList< TKey, TValue >::reverse_iterator ``` ## See Also diff --git a/english/cpp/system.collections.generic/sortedlist/this_t/_index.md b/english/cpp/system.collections.generic/sortedlist/this_t/_index.md index 91f90be774..1de21435e1 100644 --- a/english/cpp/system.collections.generic/sortedlist/this_t/_index.md +++ b/english/cpp/system.collections.generic/sortedlist/this_t/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/sortedlist/this_t/ This type. ```cpp -SortedList System::Collections::Generic::SortedList< TKey, TValue >::this_t +typedef SortedList System::Collections::Generic::SortedList< TKey, TValue >::this_t ``` ## See Also diff --git a/english/cpp/system.collections.generic/sortedlist/valuecollection/_index.md b/english/cpp/system.collections.generic/sortedlist/valuecollection/_index.md index f57335f2ce..684abffd79 100644 --- a/english/cpp/system.collections.generic/sortedlist/valuecollection/_index.md +++ b/english/cpp/system.collections.generic/sortedlist/valuecollection/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/sortedlist/valuecollection/ Value collection type. ```cpp -ICollection System::Collections::Generic::SortedList< TKey, TValue >::ValueCollection +typedef ICollection System::Collections::Generic::SortedList< TKey, TValue >::ValueCollection ``` ## See Also diff --git a/english/cpp/system.collections.generic/sortedsetptr/_index.md b/english/cpp/system.collections.generic/sortedsetptr/_index.md index d6b8d3db7e..afffb061da 100644 --- a/english/cpp/system.collections.generic/sortedsetptr/_index.md +++ b/english/cpp/system.collections.generic/sortedsetptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/sortedsetptr/ Pointer to keep [SortedSet](../sortedset/) references. This type is a pointer to manage other object's deletion. It should be allocated on stack and passed to functions either by value or by const reference. ```cpp -templateclass SortedSetPtr : public System::SmartPtr> +templateclass SortedSetPtr : public System::SmartPtr ``` ## Methods diff --git a/english/cpp/system.collections.generic/stack/ienumerableptr/_index.md b/english/cpp/system.collections.generic/stack/ienumerableptr/_index.md index a8aa44be14..0e3aadd8a0 100644 --- a/english/cpp/system.collections.generic/stack/ienumerableptr/_index.md +++ b/english/cpp/system.collections.generic/stack/ienumerableptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/stack/ienumerableptr/ Collection containing elements of same type. ```cpp -SharedPtr > System::Collections::Generic::Stack< T >::IEnumerablePtr +typedef SharedPtr > System::Collections::Generic::Stack< T >::IEnumerablePtr ``` ## See Also diff --git a/english/cpp/system.collections.generic/stack/ienumeratorptr/_index.md b/english/cpp/system.collections.generic/stack/ienumeratorptr/_index.md index 7bc9ec5564..3a9d3a5f1b 100644 --- a/english/cpp/system.collections.generic/stack/ienumeratorptr/_index.md +++ b/english/cpp/system.collections.generic/stack/ienumeratorptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/stack/ienumeratorptr/ [Enumerator](../enumerator/) type. ```cpp -SharedPtr > System::Collections::Generic::Stack< T >::IEnumeratorPtr +typedef SharedPtr > System::Collections::Generic::Stack< T >::IEnumeratorPtr ``` ## See Also diff --git a/english/cpp/system.collections.generic/stack/stack_t/_index.md b/english/cpp/system.collections.generic/stack/stack_t/_index.md index 1112a0363c..3cd044d54e 100644 --- a/english/cpp/system.collections.generic/stack/stack_t/_index.md +++ b/english/cpp/system.collections.generic/stack/stack_t/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/stack/stack_t/ RTTI information. ```cpp -std::list System::Collections::Generic::Stack< T >::stack_t +typedef std::list System::Collections::Generic::Stack< T >::stack_t ``` ## Remarks diff --git a/english/cpp/system.collections.generic/stack/valuetype/_index.md b/english/cpp/system.collections.generic/stack/valuetype/_index.md index affb778599..790a1fca25 100644 --- a/english/cpp/system.collections.generic/stack/valuetype/_index.md +++ b/english/cpp/system.collections.generic/stack/valuetype/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/stack/valuetype/ Value type. ```cpp -T System::Collections::Generic::Stack< T >::ValueType +typedef T System::Collections::Generic::Stack< T >::ValueType ``` ## See Also diff --git a/english/cpp/system.collections.generic/stackptr/_index.md b/english/cpp/system.collections.generic/stackptr/_index.md index 801427621b..5f8885f1f1 100644 --- a/english/cpp/system.collections.generic/stackptr/_index.md +++ b/english/cpp/system.collections.generic/stackptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.generic/stackptr/ [Stack](../stack/) pointer. This type is a pointer to manage other object's deletion. It should be allocated on stack and passed to functions either by value or by const reference. ```cpp -templateclass StackPtr : public System::SmartPtr> +templateclass StackPtr : public System::SmartPtr ``` diff --git a/english/cpp/system.collections.objectmodel/collection/const_reverse_iterator/_index.md b/english/cpp/system.collections.objectmodel/collection/const_reverse_iterator/_index.md index 4e06628beb..ecbfe6e506 100644 --- a/english/cpp/system.collections.objectmodel/collection/const_reverse_iterator/_index.md +++ b/english/cpp/system.collections.objectmodel/collection/const_reverse_iterator/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.objectmodel/collection/const_reverse_iterator/ ```cpp -reverse_iterator_prototype System::Collections::ObjectModel::Collection< T >::const_reverse_iterator +typedef reverse_iterator_prototype System::Collections::ObjectModel::Collection< T >::const_reverse_iterator ``` ## See Also diff --git a/english/cpp/system.collections.objectmodel/collection/reverse_iterator/_index.md b/english/cpp/system.collections.objectmodel/collection/reverse_iterator/_index.md index 9db4473737..44636abdf9 100644 --- a/english/cpp/system.collections.objectmodel/collection/reverse_iterator/_index.md +++ b/english/cpp/system.collections.objectmodel/collection/reverse_iterator/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.objectmodel/collection/reverse_iterator/ ```cpp -reverse_iterator_prototype System::Collections::ObjectModel::Collection< T >::reverse_iterator +typedef reverse_iterator_prototype System::Collections::ObjectModel::Collection< T >::reverse_iterator ``` ## See Also diff --git a/english/cpp/system.collections.objectmodel/keyedcollection/defaultthreshold/_index.md b/english/cpp/system.collections.objectmodel/keyedcollection/defaultthreshold/_index.md index 852f38c7c3..27a6b4aa9a 100644 --- a/english/cpp/system.collections.objectmodel/keyedcollection/defaultthreshold/_index.md +++ b/english/cpp/system.collections.objectmodel/keyedcollection/defaultthreshold/_index.md @@ -16,10 +16,6 @@ Lookup dictionary creation threshold, default. static const int System::Collections::ObjectModel::KeyedCollection::defaultThreshold ``` -## Remarks - - -Sets default lookup dictionary creation threshold to zero, can be overwrited for concrete types. ## See Also * Class [KeyedCollection](../) diff --git a/english/cpp/system.collections.objectmodel/readonlycollection/basetype/_index.md b/english/cpp/system.collections.objectmodel/readonlycollection/basetype/_index.md index 3d4d643936..acd37e4348 100644 --- a/english/cpp/system.collections.objectmodel/readonlycollection/basetype/_index.md +++ b/english/cpp/system.collections.objectmodel/readonlycollection/basetype/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.objectmodel/readonlycollection/basetype/ Implemented interface. ```cpp -Generic::IList System::Collections::ObjectModel::ReadOnlyCollection< T >::BaseType +typedef Generic::IList System::Collections::ObjectModel::ReadOnlyCollection< T >::BaseType ``` ## See Also diff --git a/english/cpp/system.collections.objectmodel/readonlycollection/ienumeratorptr/_index.md b/english/cpp/system.collections.objectmodel/readonlycollection/ienumeratorptr/_index.md index 97e6fa0d3c..fd9c251515 100644 --- a/english/cpp/system.collections.objectmodel/readonlycollection/ienumeratorptr/_index.md +++ b/english/cpp/system.collections.objectmodel/readonlycollection/ienumeratorptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.objectmodel/readonlycollection/ienumeratorptr/ Container of same elements. ```cpp -SharedPtr > System::Collections::ObjectModel::ReadOnlyCollection< T >::IEnumeratorPtr +typedef SharedPtr > System::Collections::ObjectModel::ReadOnlyCollection< T >::IEnumeratorPtr ``` ## See Also diff --git a/english/cpp/system.collections.objectmodel/readonlycollection/valuetype/_index.md b/english/cpp/system.collections.objectmodel/readonlycollection/valuetype/_index.md index 1332ecf01b..efec9adca7 100644 --- a/english/cpp/system.collections.objectmodel/readonlycollection/valuetype/_index.md +++ b/english/cpp/system.collections.objectmodel/readonlycollection/valuetype/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.objectmodel/readonlycollection/valuetype/ Value type. ```cpp -T System::Collections::ObjectModel::ReadOnlyCollection< T >::ValueType +typedef T System::Collections::ObjectModel::ReadOnlyCollection< T >::ValueType ``` ## See Also diff --git a/english/cpp/system.collections.specialized/stringcollection/const_iterator/_index.md b/english/cpp/system.collections.specialized/stringcollection/const_iterator/_index.md index a6b1e7929a..735023a5a1 100644 --- a/english/cpp/system.collections.specialized/stringcollection/const_iterator/_index.md +++ b/english/cpp/system.collections.specialized/stringcollection/const_iterator/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.specialized/stringcollection/const_iterator/ Const iterator type. ```cpp -std::vector::const_iterator System::Collections::Specialized::StringCollection::const_iterator +typedef std::vector::const_iterator System::Collections::Specialized::StringCollection::const_iterator ``` ## See Also diff --git a/english/cpp/system.collections.specialized/stringcollection/const_reverse_iterator/_index.md b/english/cpp/system.collections.specialized/stringcollection/const_reverse_iterator/_index.md index 1e5d4e6194..92f195976f 100644 --- a/english/cpp/system.collections.specialized/stringcollection/const_reverse_iterator/_index.md +++ b/english/cpp/system.collections.specialized/stringcollection/const_reverse_iterator/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.specialized/stringcollection/const_reverse_iterator Const reverse iterator type. ```cpp -std::vector::const_reverse_iterator System::Collections::Specialized::StringCollection::const_reverse_iterator +typedef std::vector::const_reverse_iterator System::Collections::Specialized::StringCollection::const_reverse_iterator ``` ## See Also diff --git a/english/cpp/system.collections.specialized/stringcollection/iterator/_index.md b/english/cpp/system.collections.specialized/stringcollection/iterator/_index.md index 510259484a..acfa73c514 100644 --- a/english/cpp/system.collections.specialized/stringcollection/iterator/_index.md +++ b/english/cpp/system.collections.specialized/stringcollection/iterator/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.specialized/stringcollection/iterator/ Iterator type. ```cpp -std::vector::iterator System::Collections::Specialized::StringCollection::iterator +typedef std::vector::iterator System::Collections::Specialized::StringCollection::iterator ``` ## See Also diff --git a/english/cpp/system.collections.specialized/stringcollection/reverse_iterator/_index.md b/english/cpp/system.collections.specialized/stringcollection/reverse_iterator/_index.md index 71e4486e95..b95e47f74f 100644 --- a/english/cpp/system.collections.specialized/stringcollection/reverse_iterator/_index.md +++ b/english/cpp/system.collections.specialized/stringcollection/reverse_iterator/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.specialized/stringcollection/reverse_iterator/ Reverse iterator type. ```cpp -std::vector::reverse_iterator System::Collections::Specialized::StringCollection::reverse_iterator +typedef std::vector::reverse_iterator System::Collections::Specialized::StringCollection::reverse_iterator ``` ## See Also diff --git a/english/cpp/system.collections.specialized/stringcollectionptr/_index.md b/english/cpp/system.collections.specialized/stringcollectionptr/_index.md index 3a4621450b..a17bf086f6 100644 --- a/english/cpp/system.collections.specialized/stringcollectionptr/_index.md +++ b/english/cpp/system.collections.specialized/stringcollectionptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections.specialized/stringcollectionptr/ Stirng collection poiner with access operator. ```cpp -class StringCollectionPtr : public System::SmartPtr +class StringCollectionPtr : public System::SmartPtr ``` ## Methods diff --git a/english/cpp/system.collections/bitarray/bitset/_index.md b/english/cpp/system.collections/bitarray/bitset/_index.md index bfa3c1513b..2f40b744a7 100644 --- a/english/cpp/system.collections/bitarray/bitset/_index.md +++ b/english/cpp/system.collections/bitarray/bitset/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections/bitarray/bitset/ RTTI information. ```cpp -Detail::BitsetType System::Collections::BitArray::bitset +typedef Detail::BitsetType System::Collections::BitArray::bitset ``` ## Remarks diff --git a/english/cpp/system.collections/bitarrayptr/_index.md b/english/cpp/system.collections/bitarrayptr/_index.md index 1634d5924a..5491fdadc7 100644 --- a/english/cpp/system.collections/bitarrayptr/_index.md +++ b/english/cpp/system.collections/bitarrayptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.collections/bitarrayptr/ Pointer to [BitArray](../bitarray/). This type is a pointer to manage other object's deletion. It should be allocated on stack and passed to functions either by value or by const reference. ```cpp -class BitArrayPtr : public System::SmartPtr +class BitArrayPtr : public System::SmartPtr ``` ## Methods diff --git a/english/cpp/system.data.common/dbdatareader/ptr/_index.md b/english/cpp/system.data.common/dbdatareader/ptr/_index.md index 82a8ba4b6e..5da8b6f6fd 100644 --- a/english/cpp/system.data.common/dbdatareader/ptr/_index.md +++ b/english/cpp/system.data.common/dbdatareader/ptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.data.common/dbdatareader/ptr/ RTTI information. ```cpp -SharedPtr System::Data::Common::DbDataReader::Ptr +typedef SharedPtr System::Data::Common::DbDataReader::Ptr ``` ## Remarks diff --git a/english/cpp/system.drawing.drawing2d/customlinecap/_index.md b/english/cpp/system.drawing.drawing2d/customlinecap/_index.md index a8d3ab1e77..858f120bfb 100644 --- a/english/cpp/system.drawing.drawing2d/customlinecap/_index.md +++ b/english/cpp/system.drawing.drawing2d/customlinecap/_index.md @@ -25,12 +25,12 @@ class CustomLineCap : public System::Object | [Dispose](./dispose/)() | Releases all operating system resources acquired by the current object. | | [get_BaseCap](./get_basecap/)() const | Returns the base line cap from which this custom cap is created. | | [get_BaseInset](./get_baseinset/)() const | Returns the distance between the line and the cap. | -| [get_StrokeJoin](./get_strokejoin/)() const | Returns the LineJoin value which determines how lines of this custom cap are joined. | +| [get_StrokeJoin](./get_strokejoin/)() const | Returns the [LineJoin](../linejoin/) value which determines how lines of this custom cap are joined. | | [get_WidthScale](./get_widthscale/)() const | Returns the scale of this custom cap. | | [GetStrokeCaps](./getstrokecaps/)(LineCap\&, LineCap\&) | Gets the start and end line caps of the custom cap represented by the current object. | | [set_BaseCap](./set_basecap/)(LineCap) | Sets the base line cap value for this custom cap. | | [set_BaseInset](./set_baseinset/)(float) | Sets the distance between the line and the cap. | -| [set_StrokeJoin](./set_strokejoin/)(LineJoin) | Sets the LineJoin value which determines how lines of this custom cap are joined. | +| [set_StrokeJoin](./set_strokejoin/)(LineJoin) | Sets the [LineJoin](../linejoin/) value which determines how lines of this custom cap are joined. | | [set_WidthScale](./set_widthscale/)(float) | Sets the scale value of this custom cap. | | [SetStrokeCaps](./setstrokecaps/)(LineCap, LineCap) | Sets the start and end line caps of the custom cap represented by the current object. | ## See Also diff --git a/english/cpp/system.drawing.drawing2d/customlinecap/get_strokejoin/_index.md b/english/cpp/system.drawing.drawing2d/customlinecap/get_strokejoin/_index.md index 3593ce4d1a..df5a2a7c89 100644 --- a/english/cpp/system.drawing.drawing2d/customlinecap/get_strokejoin/_index.md +++ b/english/cpp/system.drawing.drawing2d/customlinecap/get_strokejoin/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.drawing.drawing2d/customlinecap/get_strokejoin/ ## CustomLineCap::get_StrokeJoin method -Returns the LineJoin value which determines how lines of this custom cap are joined. +Returns the [LineJoin](../../linejoin/) value which determines how lines of this custom cap are joined. ```cpp LineJoin System::Drawing::Drawing2D::CustomLineCap::get_StrokeJoin() const diff --git a/english/cpp/system.drawing.drawing2d/customlinecap/set_strokejoin/_index.md b/english/cpp/system.drawing.drawing2d/customlinecap/set_strokejoin/_index.md index 10627d235d..db963ddd93 100644 --- a/english/cpp/system.drawing.drawing2d/customlinecap/set_strokejoin/_index.md +++ b/english/cpp/system.drawing.drawing2d/customlinecap/set_strokejoin/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.drawing.drawing2d/customlinecap/set_strokejoin/ ## CustomLineCap::set_StrokeJoin method -Sets the LineJoin value which determines how lines of this custom cap are joined. +Sets the [LineJoin](../../linejoin/) value which determines how lines of this custom cap are joined. ```cpp void System::Drawing::Drawing2D::CustomLineCap::set_StrokeJoin(LineJoin value) diff --git a/english/cpp/system.drawing.drawing2d/graphicspath/addstring/_index.md b/english/cpp/system.drawing.drawing2d/graphicspath/addstring/_index.md index 18d559a6e0..9c25f06d23 100644 --- a/english/cpp/system.drawing.drawing2d/graphicspath/addstring/_index.md +++ b/english/cpp/system.drawing.drawing2d/graphicspath/addstring/_index.md @@ -21,7 +21,7 @@ void System::Drawing::Drawing2D::GraphicsPath::AddString(const String &text, con | --- | --- | --- | | text | const String\& | The text to add | | family | const SharedPtr\\& | The font family used to draw the text | -| style | int | A FontStyle enumeration value tha specifies the font style to use | +| style | int | A [FontStyle](../../../system.drawing/fontstyle/) enumeration value tha specifies the font style to use | | emSize | float | The height of the em square box that bounds each character of the string | | origin | Point | Specifies the location where the text starts | | stringFormat | const SharedPtr\\& | The format of the string | @@ -50,7 +50,7 @@ void System::Drawing::Drawing2D::GraphicsPath::AddString(const String &text, con | --- | --- | --- | | text | const String\& | The text to add | | family | const SharedPtr\\& | The font family used to draw the text | -| style | int | A FontStyle enumeration value tha specifies the font style to use | +| style | int | A [FontStyle](../../../system.drawing/fontstyle/) enumeration value tha specifies the font style to use | | emSize | float | The height of the em square box that bounds each character of the string | | origin | PointF | Specifies the location where the text starts | | stringFormat | const SharedPtr\\& | The format of the string | @@ -79,7 +79,7 @@ void System::Drawing::Drawing2D::GraphicsPath::AddString(const String &text, con | --- | --- | --- | | text | const String\& | The text to add | | family | const SharedPtr\\& | The font family used to draw the text | -| style | int | A FontStyle enumeration value tha specifies the font style to use | +| style | int | A [FontStyle](../../../system.drawing/fontstyle/) enumeration value tha specifies the font style to use | | emSize | float | The height of the em square box that bounds each character of the string | | layoutRect | Rectangle | A rectangle that bounds the text | | stringFormat | const SharedPtr\\& | The format of the string | @@ -108,7 +108,7 @@ void System::Drawing::Drawing2D::GraphicsPath::AddString(const String &text, con | --- | --- | --- | | text | const String\& | The text to add | | family | const SharedPtr\\& | The font family used to draw the text | -| style | int | A FontStyle enumeration value tha specifies the font style to use | +| style | int | A [FontStyle](../../../system.drawing/fontstyle/) enumeration value tha specifies the font style to use | | emSize | float | The height of the em square box that bounds each character of the string | | layoutRect | RectangleF | A rectangle that bounds the text | | stringFormat | const SharedPtr\\& | The format of the string | diff --git a/english/cpp/system.drawing.printing/pagesettings/ptr/_index.md b/english/cpp/system.drawing.printing/pagesettings/ptr/_index.md index 0ce68277a6..0ce676c75a 100644 --- a/english/cpp/system.drawing.printing/pagesettings/ptr/_index.md +++ b/english/cpp/system.drawing.printing/pagesettings/ptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.drawing.printing/pagesettings/ptr/ An alias for a shared pointer to an instance of this class. ```cpp -SharedPtr System::Drawing::Printing::PageSettings::ptr +typedef SharedPtr System::Drawing::Printing::PageSettings::ptr ``` ## See Also diff --git a/english/cpp/system.drawing.printing/printersettings/ptr/_index.md b/english/cpp/system.drawing.printing/printersettings/ptr/_index.md index e6cfbf129b..5aaadc4362 100644 --- a/english/cpp/system.drawing.printing/printersettings/ptr/_index.md +++ b/english/cpp/system.drawing.printing/printersettings/ptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.drawing.printing/printersettings/ptr/ An alias for a shared pointer to an instance of this class. ```cpp -SharedPtr System::Drawing::Printing::PrinterSettings::ptr +typedef SharedPtr System::Drawing::Printing::PrinterSettings::ptr ``` ## See Also diff --git a/english/cpp/system.drawing.printing/printpageeventargs/ptr/_index.md b/english/cpp/system.drawing.printing/printpageeventargs/ptr/_index.md index 032bcef8a8..2658c70451 100644 --- a/english/cpp/system.drawing.printing/printpageeventargs/ptr/_index.md +++ b/english/cpp/system.drawing.printing/printpageeventargs/ptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.drawing.printing/printpageeventargs/ptr/ An alias for a shared pointer to an instance of this class. ```cpp -SharedPtr System::Drawing::Printing::PrintPageEventArgs::ptr +typedef SharedPtr System::Drawing::Printing::PrintPageEventArgs::ptr ``` ## See Also diff --git a/english/cpp/system.drawing.printing/querypagesettingseventargs/ptr/_index.md b/english/cpp/system.drawing.printing/querypagesettingseventargs/ptr/_index.md index 41c9d839a3..0c53714a71 100644 --- a/english/cpp/system.drawing.printing/querypagesettingseventargs/ptr/_index.md +++ b/english/cpp/system.drawing.printing/querypagesettingseventargs/ptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.drawing.printing/querypagesettingseventargs/ptr/ An alias for a shared pointer to an instance of this class. ```cpp -SharedPtr System::Drawing::Printing::QueryPageSettingsEventArgs::ptr +typedef SharedPtr System::Drawing::Printing::QueryPageSettingsEventArgs::ptr ``` ## See Also diff --git a/english/cpp/system.drawing/color/_index.md b/english/cpp/system.drawing/color/_index.md index 2d72eac501..59efe2ba10 100644 --- a/english/cpp/system.drawing/color/_index.md +++ b/english/cpp/system.drawing/color/_index.md @@ -89,7 +89,7 @@ class Color | static [get_IndianRed](./get_indianred/)() | Returns a color whose ARGB value in hexadecimal notation is #FFCD5C5C. | | static [get_Indigo](./get_indigo/)() | Returns a color whose ARGB value in hexadecimal notation is #FF4B0082. | | [get_IsEmpty](./get_isempty/)() const | Returns a value that indicate if the current object is "empty" i.e. does not represent any color. | -| [get_IsNamedColor](./get_isnamedcolor/)() const | Returns a value that determines whether the [Color](./) structure represents a named color or a member of the KnownColor enumeration. | +| [get_IsNamedColor](./get_isnamedcolor/)() const | Returns a value that determines whether the [Color](./) structure represents a named color or a member of the [KnownColor](../knowncolor/) enumeration. | | static [get_Ivory](./get_ivory/)() | Returns a color whose ARGB value in hexadecimal notation is #FFFFFFF0. | | static [get_Khaki](./get_khaki/)() | Returns a color whose ARGB value in hexadecimal notation is #FFF0E68C. | | static [get_Lavender](./get_lavender/)() | Returns a color whose ARGB value in hexadecimal notation is #FFE6E6FA. | diff --git a/english/cpp/system.drawing/color/get_isnamedcolor/_index.md b/english/cpp/system.drawing/color/get_isnamedcolor/_index.md index d924644fb1..9a8ea2e5b9 100644 --- a/english/cpp/system.drawing/color/get_isnamedcolor/_index.md +++ b/english/cpp/system.drawing/color/get_isnamedcolor/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.drawing/color/get_isnamedcolor/ ## Color::get_IsNamedColor method -Returns a value that determines whether the [Color](../) structure represents a named color or a member of the KnownColor enumeration. +Returns a value that determines whether the [Color](../) structure represents a named color or a member of the [KnownColor](../../knowncolor/) enumeration. ```cpp bool System::Drawing::Color::get_IsNamedColor() const diff --git a/english/cpp/system.drawing/fontconverter/_index.md b/english/cpp/system.drawing/fontconverter/_index.md index 8ce07582d2..bcab60ebf9 100644 --- a/english/cpp/system.drawing/fontconverter/_index.md +++ b/english/cpp/system.drawing/fontconverter/_index.md @@ -21,7 +21,12 @@ class FontConverter : public System::ComponentModel::TypeConverter | Method | Description | | --- | --- | | [ConvertFrom](./convertfrom/)(const System::SharedPtr\\&, const System::SharedPtr\\&, const System::SharedPtr\\&) override | Converts objects. | +| [ConvertFrom](./convertfrom/)(const System::SharedPtr\\&) | Converts objects. | +| virtual [ConvertFrom](./convertfrom/)(const System::SharedPtr\\&, const System::SharedPtr\\&, const System::SharedPtr\\&) | Converts objects. | +| [ConvertFrom](./convertfrom/)(const System::SharedPtr\\&, const System::SharedPtr\\&, const System::String\&) | Converts string to object. | | [ConvertTo](./convertto/)(const System::SharedPtr\\&, const System::SharedPtr\\&, const System::SharedPtr\\&, const System::TypeInfo\&) override | Converts object to specific type. | +| [ConvertTo](./convertto/)(const System::SharedPtr\\&, const System::TypeInfo\&) | Converts object to specific type. | +| virtual [ConvertTo](./convertto/)(const System::SharedPtr\\&, const System::SharedPtr\\&, const System::SharedPtr\\&, const System::TypeInfo\&) | Converts object to specific type. | ## See Also * Class [TypeConverter](../../system.componentmodel/typeconverter/) diff --git a/english/cpp/system.drawing/fontconverter/convertfrom/_index.md b/english/cpp/system.drawing/fontconverter/convertfrom/_index.md index f169f4695a..e36b2acfe7 100644 --- a/english/cpp/system.drawing/fontconverter/convertfrom/_index.md +++ b/english/cpp/system.drawing/fontconverter/convertfrom/_index.md @@ -7,7 +7,7 @@ type: docs weight: 100 url: /cpp/system.drawing/fontconverter/convertfrom/ --- -## FontConverter::ConvertFrom method +## FontConverter::ConvertFrom(const System::SharedPtr\\&, const System::SharedPtr\\&, const System::SharedPtr\\&) method Converts objects. @@ -36,3 +36,85 @@ converted object. * Class [FontConverter](../) * Namespace [System::Drawing](../../) * Library [Aspose.PDF for C++](../../../) +## FontConverter::ConvertFrom(const System::SharedPtr\\&, const System::SharedPtr\\&, const System::SharedPtr\\&) method + + +Converts objects. + +```cpp +virtual System::SharedPtr System::ComponentModel::TypeConverter::ConvertFrom(const System::SharedPtr &context, const System::SharedPtr &culture, const System::SharedPtr &value) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| context | const System::SharedPtr\\& | [Object](../../../system/object/) conversion context information. | +| culture | const System::SharedPtr\\& | Culture to use when converting objects. | +| value | const System::SharedPtr\\& | [Object](../../../system/object/) to convert. | + +### ReturnValue + +converted object. + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [Object](../../../system/object/) +* Class [CultureInfo](../../../system.globalization/cultureinfo/) +* Class [FontConverter](../) +* Namespace [System::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) +## FontConverter::ConvertFrom(const System::SharedPtr\\&, const System::SharedPtr\\&, const System::String\&) method + + +Converts string to object. + +```cpp +System::SharedPtr System::ComponentModel::TypeConverter::ConvertFrom(const System::SharedPtr &context, const System::SharedPtr &culture, const System::String &value) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| context | const System::SharedPtr\\& | [Object](../../../system/object/) conversion context information. | +| culture | const System::SharedPtr\\& | Culture to use when converting objects. | +| value | const System::String\& | Value to convert. | + +### ReturnValue + +converted object. + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [Object](../../../system/object/) +* Class [CultureInfo](../../../system.globalization/cultureinfo/) +* Class [String](../../../system/string/) +* Class [FontConverter](../) +* Namespace [System::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) +## FontConverter::ConvertFrom(const System::SharedPtr\\&) method + + +Converts objects. + +```cpp +System::SharedPtr System::ComponentModel::TypeConverter::ConvertFrom(const System::SharedPtr &value) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| value | const System::SharedPtr\\& | [Object](../../../system/object/) to convert. | + +### ReturnValue + +converted object. + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [Object](../../../system/object/) +* Class [FontConverter](../) +* Namespace [System::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.drawing/fontconverter/convertto/_index.md b/english/cpp/system.drawing/fontconverter/convertto/_index.md index ec00deaa57..0d67498a05 100644 --- a/english/cpp/system.drawing/fontconverter/convertto/_index.md +++ b/english/cpp/system.drawing/fontconverter/convertto/_index.md @@ -7,7 +7,7 @@ type: docs weight: 200 url: /cpp/system.drawing/fontconverter/convertto/ --- -## FontConverter::ConvertTo method +## FontConverter::ConvertTo(const System::SharedPtr\\&, const System::SharedPtr\\&, const System::SharedPtr\\&, const System::TypeInfo\&) method Converts object to specific type. @@ -38,3 +38,60 @@ Converted object. * Class [FontConverter](../) * Namespace [System::Drawing](../../) * Library [Aspose.PDF for C++](../../../) +## FontConverter::ConvertTo(const System::SharedPtr\\&, const System::SharedPtr\\&, const System::SharedPtr\\&, const System::TypeInfo\&) method + + +Converts object to specific type. + +```cpp +virtual System::SharedPtr System::ComponentModel::TypeConverter::ConvertTo(const System::SharedPtr &context, const System::SharedPtr &culture, const System::SharedPtr &value, const System::TypeInfo &destinationType) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| context | const System::SharedPtr\\& | [Object](../../../system/object/) conversion context information. | +| culture | const System::SharedPtr\\& | Culture to use when converting objects. | +| value | const System::SharedPtr\\& | [Object](../../../system/object/) to convert. | +| destinationType | const System::TypeInfo\& | Type to convert to. | + +### ReturnValue + +Converted object. + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [Object](../../../system/object/) +* Class [CultureInfo](../../../system.globalization/cultureinfo/) +* Class [TypeInfo](../../../system/typeinfo/) +* Class [FontConverter](../) +* Namespace [System::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) +## FontConverter::ConvertTo(const System::SharedPtr\\&, const System::TypeInfo\&) method + + +Converts object to specific type. + +```cpp +System::SharedPtr System::ComponentModel::TypeConverter::ConvertTo(const System::SharedPtr &value, const System::TypeInfo &destinationType) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| value | const System::SharedPtr\\& | [Object](../../../system/object/) to convert. | +| destinationType | const System::TypeInfo\& | Type to convert to. | + +### ReturnValue + +Converted object. + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [Object](../../../system/object/) +* Class [TypeInfo](../../../system/typeinfo/) +* Class [FontConverter](../) +* Namespace [System::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.drawing/imageconverter/_index.md b/english/cpp/system.drawing/imageconverter/_index.md index cf7d2cdf7a..afcf05fddf 100644 --- a/english/cpp/system.drawing/imageconverter/_index.md +++ b/english/cpp/system.drawing/imageconverter/_index.md @@ -21,6 +21,7 @@ class ImageConverter : public System::ComponentModel::TypeConverter | Method | Description | | --- | --- | | [ConvertTo](./convertto/)(const System::SharedPtr\\&, const System::SharedPtr\\&, const System::SharedPtr\\&, const System::TypeInfo\&) override | Converts object to specific type. | +| [ConvertTo](./convertto/)(const System::SharedPtr\\&, const System::TypeInfo\&) | Converts object to specific type. | | [ImageConverter](./imageconverter/)() | Constructs a new instance of [ImageConverter](./). | ## See Also diff --git a/english/cpp/system.drawing/imageconverter/convertto/_index.md b/english/cpp/system.drawing/imageconverter/convertto/_index.md index c81cb34be7..f1d6b52b32 100644 --- a/english/cpp/system.drawing/imageconverter/convertto/_index.md +++ b/english/cpp/system.drawing/imageconverter/convertto/_index.md @@ -7,7 +7,7 @@ type: docs weight: 200 url: /cpp/system.drawing/imageconverter/convertto/ --- -## ImageConverter::ConvertTo method +## ImageConverter::ConvertTo(const System::SharedPtr\\&, const System::SharedPtr\\&, const System::SharedPtr\\&, const System::TypeInfo\&) method Converts object to specific type. @@ -38,3 +38,30 @@ Converted object. * Class [ImageConverter](../) * Namespace [System::Drawing](../../) * Library [Aspose.PDF for C++](../../../) +## ImageConverter::ConvertTo(const System::SharedPtr\\&, const System::TypeInfo\&) method + + +Converts object to specific type. + +```cpp +System::SharedPtr System::ComponentModel::TypeConverter::ConvertTo(const System::SharedPtr &value, const System::TypeInfo &destinationType) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| value | const System::SharedPtr\\& | [Object](../../../system/object/) to convert. | +| destinationType | const System::TypeInfo\& | Type to convert to. | + +### ReturnValue + +Converted object. + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [Object](../../../system/object/) +* Class [TypeInfo](../../../system/typeinfo/) +* Class [ImageConverter](../) +* Namespace [System::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.drawing/imageformatconverter/_index.md b/english/cpp/system.drawing/imageformatconverter/_index.md index ba1ca4cd28..a5400fd586 100644 --- a/english/cpp/system.drawing/imageformatconverter/_index.md +++ b/english/cpp/system.drawing/imageformatconverter/_index.md @@ -21,7 +21,12 @@ class ImageFormatConverter : public System::ComponentModel::TypeConverter | Method | Description | | --- | --- | | [ConvertFrom](./convertfrom/)(const SharedPtr\\&, const SharedPtr\\&, const SharedPtr\\&) override | Converts objects. | +| [ConvertFrom](./convertfrom/)(const System::SharedPtr\\&) | Converts objects. | +| virtual [ConvertFrom](./convertfrom/)(const System::SharedPtr\\&, const System::SharedPtr\\&, const System::SharedPtr\\&) | Converts objects. | +| [ConvertFrom](./convertfrom/)(const System::SharedPtr\\&, const System::SharedPtr\\&, const System::String\&) | Converts string to object. | | [ConvertTo](./convertto/)(const SharedPtr\\&, const SharedPtr\\&, const SharedPtr\\&, const TypeInfo\&) override | Converts object to specific type. | +| [ConvertTo](./convertto/)(const System::SharedPtr\\&, const System::TypeInfo\&) | Converts object to specific type. | +| virtual [ConvertTo](./convertto/)(const System::SharedPtr\\&, const System::SharedPtr\\&, const System::SharedPtr\\&, const System::TypeInfo\&) | Converts object to specific type. | | [ImageFormatConverter](./imageformatconverter/)() | Constructs a new instance of [ImageFormatConverter](./). | ## See Also diff --git a/english/cpp/system.drawing/imageformatconverter/convertfrom/_index.md b/english/cpp/system.drawing/imageformatconverter/convertfrom/_index.md index 7ccd1e89cd..b16e5ef7a4 100644 --- a/english/cpp/system.drawing/imageformatconverter/convertfrom/_index.md +++ b/english/cpp/system.drawing/imageformatconverter/convertfrom/_index.md @@ -7,7 +7,7 @@ type: docs weight: 200 url: /cpp/system.drawing/imageformatconverter/convertfrom/ --- -## ImageFormatConverter::ConvertFrom method +## ImageFormatConverter::ConvertFrom(const SharedPtr\\&, const SharedPtr\\&, const SharedPtr\\&) method Converts objects. @@ -36,3 +36,85 @@ converted object. * Class [ImageFormatConverter](../) * Namespace [System::Drawing](../../) * Library [Aspose.PDF for C++](../../../) +## ImageFormatConverter::ConvertFrom(const System::SharedPtr\\&, const System::SharedPtr\\&, const System::SharedPtr\\&) method + + +Converts objects. + +```cpp +virtual System::SharedPtr System::ComponentModel::TypeConverter::ConvertFrom(const System::SharedPtr &context, const System::SharedPtr &culture, const System::SharedPtr &value) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| context | const System::SharedPtr\\& | [Object](../../../system/object/) conversion context information. | +| culture | const System::SharedPtr\\& | Culture to use when converting objects. | +| value | const System::SharedPtr\\& | [Object](../../../system/object/) to convert. | + +### ReturnValue + +converted object. + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [Object](../../../system/object/) +* Class [CultureInfo](../../../system.globalization/cultureinfo/) +* Class [ImageFormatConverter](../) +* Namespace [System::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) +## ImageFormatConverter::ConvertFrom(const System::SharedPtr\\&, const System::SharedPtr\\&, const System::String\&) method + + +Converts string to object. + +```cpp +System::SharedPtr System::ComponentModel::TypeConverter::ConvertFrom(const System::SharedPtr &context, const System::SharedPtr &culture, const System::String &value) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| context | const System::SharedPtr\\& | [Object](../../../system/object/) conversion context information. | +| culture | const System::SharedPtr\\& | Culture to use when converting objects. | +| value | const System::String\& | Value to convert. | + +### ReturnValue + +converted object. + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [Object](../../../system/object/) +* Class [CultureInfo](../../../system.globalization/cultureinfo/) +* Class [String](../../../system/string/) +* Class [ImageFormatConverter](../) +* Namespace [System::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) +## ImageFormatConverter::ConvertFrom(const System::SharedPtr\\&) method + + +Converts objects. + +```cpp +System::SharedPtr System::ComponentModel::TypeConverter::ConvertFrom(const System::SharedPtr &value) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| value | const System::SharedPtr\\& | [Object](../../../system/object/) to convert. | + +### ReturnValue + +converted object. + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [Object](../../../system/object/) +* Class [ImageFormatConverter](../) +* Namespace [System::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.drawing/imageformatconverter/convertto/_index.md b/english/cpp/system.drawing/imageformatconverter/convertto/_index.md index a9f5c879e0..471fa203e0 100644 --- a/english/cpp/system.drawing/imageformatconverter/convertto/_index.md +++ b/english/cpp/system.drawing/imageformatconverter/convertto/_index.md @@ -7,7 +7,7 @@ type: docs weight: 300 url: /cpp/system.drawing/imageformatconverter/convertto/ --- -## ImageFormatConverter::ConvertTo method +## ImageFormatConverter::ConvertTo(const SharedPtr\\&, const SharedPtr\\&, const SharedPtr\\&, const TypeInfo\&) method Converts object to specific type. @@ -38,3 +38,60 @@ Converted object. * Class [ImageFormatConverter](../) * Namespace [System::Drawing](../../) * Library [Aspose.PDF for C++](../../../) +## ImageFormatConverter::ConvertTo(const System::SharedPtr\\&, const System::SharedPtr\\&, const System::SharedPtr\\&, const System::TypeInfo\&) method + + +Converts object to specific type. + +```cpp +virtual System::SharedPtr System::ComponentModel::TypeConverter::ConvertTo(const System::SharedPtr &context, const System::SharedPtr &culture, const System::SharedPtr &value, const System::TypeInfo &destinationType) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| context | const System::SharedPtr\\& | [Object](../../../system/object/) conversion context information. | +| culture | const System::SharedPtr\\& | Culture to use when converting objects. | +| value | const System::SharedPtr\\& | [Object](../../../system/object/) to convert. | +| destinationType | const System::TypeInfo\& | Type to convert to. | + +### ReturnValue + +Converted object. + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [Object](../../../system/object/) +* Class [CultureInfo](../../../system.globalization/cultureinfo/) +* Class [TypeInfo](../../../system/typeinfo/) +* Class [ImageFormatConverter](../) +* Namespace [System::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) +## ImageFormatConverter::ConvertTo(const System::SharedPtr\\&, const System::TypeInfo\&) method + + +Converts object to specific type. + +```cpp +System::SharedPtr System::ComponentModel::TypeConverter::ConvertTo(const System::SharedPtr &value, const System::TypeInfo &destinationType) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| value | const System::SharedPtr\\& | [Object](../../../system/object/) to convert. | +| destinationType | const System::TypeInfo\& | Type to convert to. | + +### ReturnValue + +Converted object. + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [Object](../../../system/object/) +* Class [TypeInfo](../../../system/typeinfo/) +* Class [ImageFormatConverter](../) +* Namespace [System::Drawing](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.drawing/stringformat/_index.md b/english/cpp/system.drawing/stringformat/_index.md index ae6838f202..df59c6caa4 100644 --- a/english/cpp/system.drawing/stringformat/_index.md +++ b/english/cpp/system.drawing/stringformat/_index.md @@ -24,7 +24,7 @@ class StringFormat : public System::Object | [get_Alignment](./get_alignment/)() const | Returns a value that indicates horizontal alignment of the string. | | [get_DigitSubstitutionLanguage](./get_digitsubstitutionlanguage/)() const | Returns a value that indicats the language that is used when local digits are substituted with western digits. | | [get_DigitSubstitutionMethod](./get_digitsubstitutionmethod/)() const | Returns digit substitution method. | -| [get_FormatFlags](./get_formatflags/)() const | Returns a bitwise combination of StringFormatFlags that specifies the string format represented by the current object. | +| [get_FormatFlags](./get_formatflags/)() const | Returns a bitwise combination of [StringFormatFlags](../stringformatflags/) that specifies the string format represented by the current object. | | static [get_GenericDefault](./get_genericdefault/)() | Returns a [StringFormat](./) object that represents a generic default format. | | static [get_GenericTypographic](./get_generictypographic/)() | Returns a [StringFormat](./) object that represents a generic typographic format. | | [get_HotkeyPrefix](./get_hotkeyprefix/)() const | Returns the value that indicates how the hot key prefix is displayed. | diff --git a/english/cpp/system.drawing/stringformat/get_formatflags/_index.md b/english/cpp/system.drawing/stringformat/get_formatflags/_index.md index 48435626bf..51c80b78e9 100644 --- a/english/cpp/system.drawing/stringformat/get_formatflags/_index.md +++ b/english/cpp/system.drawing/stringformat/get_formatflags/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.drawing/stringformat/get_formatflags/ ## StringFormat::get_FormatFlags method -Returns a bitwise combination of StringFormatFlags that specifies the string format represented by the current object. +Returns a bitwise combination of [StringFormatFlags](../../stringformatflags/) that specifies the string format represented by the current object. ```cpp StringFormatFlags System::Drawing::StringFormat::get_FormatFlags() const diff --git a/english/cpp/system.drawing/stringformat/stringformat/_index.md b/english/cpp/system.drawing/stringformat/stringformat/_index.md index 7129be6eb6..1f0758fe0b 100644 --- a/english/cpp/system.drawing/stringformat/stringformat/_index.md +++ b/english/cpp/system.drawing/stringformat/stringformat/_index.md @@ -54,7 +54,7 @@ System::Drawing::StringFormat::StringFormat(StringFormatFlags options, int32_t l | Parameter | Type | Description | | --- | --- | --- | -| options | StringFormatFlags | A bitwise combination of StringFormatFlags enum value that specify the string format to be represented by the object being created | +| options | StringFormatFlags | A bitwise combination of [StringFormatFlags](../../stringformatflags/) enum value that specify the string format to be represented by the object being created | | language | int32_t | A language of the text | ## See Also diff --git a/english/cpp/system.io/_index.md b/english/cpp/system.io/_index.md index 92dd560585..a447d22117 100644 --- a/english/cpp/system.io/_index.md +++ b/english/cpp/system.io/_index.md @@ -61,7 +61,8 @@ url: /cpp/system.io/ | Typedef | Description | | --- | --- | | [BinaryWriterPtr](./binarywriterptr/) | An alias for a shared pointer to this class. | -| [FileNotFoundException](./filenotfoundexception/) | The exception that is thrown when an attempt to access a file that does not exist on disk fails. Never wrap the FileNotFoundException class instances into [System::SmartPtr](../system/smartptr/). | +| [FileNotFoundException](./filenotfoundexception/) | The exception that is thrown when an attempt to access a file that does not exist on disk fails. Never wrap the [FileNotFoundException](./filenotfoundexception/) class instances into [System::SmartPtr](../system/smartptr/). | +| [IsTemplateBaseOf](./istemplatebaseof/) | Represents std::is_base_of counterpart that determine the inheritance of not instantiated Base template class from instantiated Derived template class. Will fail with multiple inheritance or non-public inheritance from Base. | | [STDIOStreamWrapper](./stdiostreamwrapper/) | Specializations of [BasicSTDIOStreamWrapper](./basicstdiostreamwrapper/) for char character types. | | [STDIStreamWrapper](./stdistreamwrapper/) | Specializations of [BasicSTDIStreamWrapper](./basicstdistreamwrapper/) for char character types. | | [STDOStreamWrapper](./stdostreamwrapper/) | Specializations of [BasicSTDOStreamWrapper](./basicstdostreamwrapper/) for char character types. | diff --git a/english/cpp/system.io/basicstdiostreamwrapper/_index.md b/english/cpp/system.io/basicstdiostreamwrapper/_index.md index 116c44b03d..ee135127d0 100644 --- a/english/cpp/system.io/basicstdiostreamwrapper/_index.md +++ b/english/cpp/system.io/basicstdiostreamwrapper/_index.md @@ -29,9 +29,9 @@ templateclass BasicSTDIOStreamWrapper : public System::IO:: | [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. | | [ReadByte](./readbyte/)() override | If wrapping mode is binary, reads a single byte from the last decoded character storage, otherwise read a single character from the stream and convert it to uint8_t type. | | [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 | If wrapping mode is binary, writes to the stream the specified subrange of bytes from the specified byte array, otherwise convert the specified subrange of bytes from the specified byte array to char_type type ant then writes result to the stream. | +| [Write](./write/)(const ArrayPtr\\&, int32_t, int32_t) override | If wrapping mode is binary, writes to the stream the specified subrange of bytes from the specified byte array, otherwise convert the specified subrange of bytes from the specified byte array to [char_type](./char_type/) type ant then writes result 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. | -| [WriteByte](./writebyte/)(uint8_t) override | If wrapping mode is binary, writes to the stream the specified unsigned 8-bit integer value, otherwise convert it to char_type type and then write the result to the stream. | +| [WriteByte](./writebyte/)(uint8_t) override | If wrapping mode is binary, writes to the stream the specified unsigned 8-bit integer value, otherwise convert it to [char_type](./char_type/) type and then write the result to the stream. | ## Fields | Field | Description | diff --git a/english/cpp/system.io/basicstdiostreamwrapper/write/_index.md b/english/cpp/system.io/basicstdiostreamwrapper/write/_index.md index e8d01cd038..193e1813d7 100644 --- a/english/cpp/system.io/basicstdiostreamwrapper/write/_index.md +++ b/english/cpp/system.io/basicstdiostreamwrapper/write/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.io/basicstdiostreamwrapper/write/ ## BasicSTDIOStreamWrapper::Write(const ArrayPtr\\&, int32_t, int32_t) method -If wrapping mode is binary, writes to the stream the specified subrange of bytes from the specified byte array, otherwise convert the specified subrange of bytes from the specified byte array to char_type type ant then writes result to the stream. +If wrapping mode is binary, writes to the stream the specified subrange of bytes from the specified byte array, otherwise convert the specified subrange of bytes from the specified byte array to [char_type](../char_type/) type ant then writes result to the stream. ```cpp virtual void System::IO::BasicSTDIOStreamWrapper::Write(const ArrayPtr &buffer, int32_t offset, int32_t count) override diff --git a/english/cpp/system.io/basicstdiostreamwrapper/writebyte/_index.md b/english/cpp/system.io/basicstdiostreamwrapper/writebyte/_index.md index 56c54264de..2e46eb2d79 100644 --- a/english/cpp/system.io/basicstdiostreamwrapper/writebyte/_index.md +++ b/english/cpp/system.io/basicstdiostreamwrapper/writebyte/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.io/basicstdiostreamwrapper/writebyte/ ## BasicSTDIOStreamWrapper::WriteByte method -If wrapping mode is binary, writes to the stream the specified unsigned 8-bit integer value, otherwise convert it to char_type type and then write the result to the stream. +If wrapping mode is binary, writes to the stream the specified unsigned 8-bit integer value, otherwise convert it to [char_type](../char_type/) type and then write the result to the stream. ```cpp virtual void System::IO::BasicSTDIOStreamWrapper::WriteByte(uint8_t value) override diff --git a/english/cpp/system.io/basicstdistreamwrapper/_index.md b/english/cpp/system.io/basicstdistreamwrapper/_index.md index 1ac8050652..e6aba70830 100644 --- a/english/cpp/system.io/basicstdistreamwrapper/_index.md +++ b/english/cpp/system.io/basicstdistreamwrapper/_index.md @@ -28,9 +28,9 @@ templateclass BasicSTDIStreamWrapper : public virtual Syste | [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. | | [ReadByte](./readbyte/)() override | If wrapping mode is binary, reads a single byte from the last decoded character storage, otherwise read a single character from the stream and convert it to uint8_t type. | | [SetLength](./setlength/)(int64_t) override | Sets the length of the stream represented by the current object. Not supported! | -| [Write](./write/)(const ArrayPtr\\&, int32_t, int32_t) override | If wrapping mode is binary, writes to the stream the specified subrange of bytes from the specified byte array, otherwise convert the specified subrange of bytes from the specified byte array to char_type type ant then writes result to the stream. Not supported! | +| [Write](./write/)(const ArrayPtr\\&, int32_t, int32_t) override | If wrapping mode is binary, writes to the stream the specified subrange of bytes from the specified byte array, otherwise convert the specified subrange of bytes from the specified byte array to [char_type](./char_type/) type ant then writes result to the stream. Not supported! | | [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. | -| [WriteByte](./writebyte/)(uint8_t) override | If wrapping mode is binary, writes to the stream the specified unsigned 8-bit integer value, otherwise convert it to char_type type and then write the result to the stream. Not supported! | +| [WriteByte](./writebyte/)(uint8_t) override | If wrapping mode is binary, writes to the stream the specified unsigned 8-bit integer value, otherwise convert it to [char_type](./char_type/) type and then write the result to the stream. Not supported! | ## Fields | Field | Description | diff --git a/english/cpp/system.io/basicstdistreamwrapper/write/_index.md b/english/cpp/system.io/basicstdistreamwrapper/write/_index.md index ca3ed32698..9913ae3484 100644 --- a/english/cpp/system.io/basicstdistreamwrapper/write/_index.md +++ b/english/cpp/system.io/basicstdistreamwrapper/write/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.io/basicstdistreamwrapper/write/ ## BasicSTDIStreamWrapper::Write(const ArrayPtr\\&, int32_t, int32_t) method -If wrapping mode is binary, writes to the stream the specified subrange of bytes from the specified byte array, otherwise convert the specified subrange of bytes from the specified byte array to char_type type ant then writes result to the stream. Not supported! +If wrapping mode is binary, writes to the stream the specified subrange of bytes from the specified byte array, otherwise convert the specified subrange of bytes from the specified byte array to [char_type](../char_type/) type ant then writes result to the stream. Not supported! ```cpp virtual void System::IO::BasicSTDIStreamWrapper::Write(const ArrayPtr &buffer, int32_t offset, int32_t count) override diff --git a/english/cpp/system.io/basicstdistreamwrapper/writebyte/_index.md b/english/cpp/system.io/basicstdistreamwrapper/writebyte/_index.md index 7999c49938..53b495b6a5 100644 --- a/english/cpp/system.io/basicstdistreamwrapper/writebyte/_index.md +++ b/english/cpp/system.io/basicstdistreamwrapper/writebyte/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.io/basicstdistreamwrapper/writebyte/ ## BasicSTDIStreamWrapper::WriteByte method -If wrapping mode is binary, writes to the stream the specified unsigned 8-bit integer value, otherwise convert it to char_type type and then write the result to the stream. Not supported! +If wrapping mode is binary, writes to the stream the specified unsigned 8-bit integer value, otherwise convert it to [char_type](../char_type/) type and then write the result to the stream. Not supported! ```cpp virtual void System::IO::BasicSTDIStreamWrapper::WriteByte(uint8_t value) override diff --git a/english/cpp/system.io/basicstdostreamwrapper/_index.md b/english/cpp/system.io/basicstdostreamwrapper/_index.md index b55aa2d9ac..7d26baff54 100644 --- a/english/cpp/system.io/basicstdostreamwrapper/_index.md +++ b/english/cpp/system.io/basicstdostreamwrapper/_index.md @@ -28,9 +28,9 @@ templateclass BasicSTDOStreamWrapper : public virtual Syste | [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. | | [ReadByte](./readbyte/)() override | If wrapping mode is binary, reads a single byte from the last decoded character storage, otherwise read a single character from the stream and convert it to uint8_t type. Not supported! | | [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 | If wrapping mode is binary, writes to the stream the specified subrange of bytes from the specified byte array, otherwise convert the specified subrange of bytes from the specified byte array to char_type type ant then writes result to the stream. | +| [Write](./write/)(const ArrayPtr\\&, int32_t, int32_t) override | If wrapping mode is binary, writes to the stream the specified subrange of bytes from the specified byte array, otherwise convert the specified subrange of bytes from the specified byte array to [char_type](./char_type/) type ant then writes result 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. | -| [WriteByte](./writebyte/)(uint8_t) override | If wrapping mode is binary, writes to the stream the specified unsigned 8-bit integer value, otherwise convert it to char_type type and then write the result to the stream. | +| [WriteByte](./writebyte/)(uint8_t) override | If wrapping mode is binary, writes to the stream the specified unsigned 8-bit integer value, otherwise convert it to [char_type](./char_type/) type and then write the result to the stream. | ## Fields | Field | Description | diff --git a/english/cpp/system.io/basicstdostreamwrapper/write/_index.md b/english/cpp/system.io/basicstdostreamwrapper/write/_index.md index f4d3a53fb3..8b305ed60a 100644 --- a/english/cpp/system.io/basicstdostreamwrapper/write/_index.md +++ b/english/cpp/system.io/basicstdostreamwrapper/write/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.io/basicstdostreamwrapper/write/ ## BasicSTDOStreamWrapper::Write(const ArrayPtr\\&, int32_t, int32_t) method -If wrapping mode is binary, writes to the stream the specified subrange of bytes from the specified byte array, otherwise convert the specified subrange of bytes from the specified byte array to char_type type ant then writes result to the stream. +If wrapping mode is binary, writes to the stream the specified subrange of bytes from the specified byte array, otherwise convert the specified subrange of bytes from the specified byte array to [char_type](../char_type/) type ant then writes result to the stream. ```cpp virtual void System::IO::BasicSTDOStreamWrapper::Write(const ArrayPtr &buffer, int32_t offset, int32_t count) override diff --git a/english/cpp/system.io/basicstdostreamwrapper/writebyte/_index.md b/english/cpp/system.io/basicstdostreamwrapper/writebyte/_index.md index cb18b3add4..0adb33c9e6 100644 --- a/english/cpp/system.io/basicstdostreamwrapper/writebyte/_index.md +++ b/english/cpp/system.io/basicstdostreamwrapper/writebyte/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.io/basicstdostreamwrapper/writebyte/ ## BasicSTDOStreamWrapper::WriteByte method -If wrapping mode is binary, writes to the stream the specified unsigned 8-bit integer value, otherwise convert it to char_type type and then write the result to the stream. +If wrapping mode is binary, writes to the stream the specified unsigned 8-bit integer value, otherwise convert it to [char_type](../char_type/) type and then write the result to the stream. ```cpp virtual void System::IO::BasicSTDOStreamWrapper::WriteByte(uint8_t value) override diff --git a/english/cpp/system.io/file/setattributes/_index.md b/english/cpp/system.io/file/setattributes/_index.md index 8f7592751d..76b1090533 100644 --- a/english/cpp/system.io/file/setattributes/_index.md +++ b/english/cpp/system.io/file/setattributes/_index.md @@ -20,7 +20,7 @@ static void System::IO::File::SetAttributes(const String &path, FileAttributes f | Parameter | Type | Description | | --- | --- | --- | | path | const String\& | The path of the file on which the attributes to be set | -| fileAttributes | FileAttributes | A bitwise combination of FileAttributes values representing the attributes to set | +| fileAttributes | FileAttributes | A bitwise combination of [FileAttributes](../../fileattributes/) values representing the attributes to set | ## See Also diff --git a/english/cpp/system.io/filenotfoundexception/_index.md b/english/cpp/system.io/filenotfoundexception/_index.md index 3cf3e31092..457b2cf4bd 100644 --- a/english/cpp/system.io/filenotfoundexception/_index.md +++ b/english/cpp/system.io/filenotfoundexception/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.io/filenotfoundexception/ ## FileNotFoundException typedef -The exception that is thrown when an attempt to access a file that does not exist on disk fails. Never wrap the FileNotFoundException class instances into [System::SmartPtr](../../system/smartptr/). +The exception that is thrown when an attempt to access a file that does not exist on disk fails. Never wrap the [FileNotFoundException](./) class instances into [System::SmartPtr](../../system/smartptr/). ```cpp using System::IO::FileNotFoundException = System::ExceptionWrapper diff --git a/english/cpp/system.io/filesysteminfo/set_attributes/_index.md b/english/cpp/system.io/filesysteminfo/set_attributes/_index.md index 7df8d3696b..7cabc700b4 100644 --- a/english/cpp/system.io/filesysteminfo/set_attributes/_index.md +++ b/english/cpp/system.io/filesysteminfo/set_attributes/_index.md @@ -19,7 +19,7 @@ void System::IO::FileSystemInfo::set_Attributes(FileAttributes value) | Parameter | Type | Description | | --- | --- | --- | -| value | FileAttributes | A bitwise combination of FileAttributes values representing the attributes to set | +| value | FileAttributes | A bitwise combination of [FileAttributes](../../fileattributes/) values representing the attributes to set | ## See Also diff --git a/english/cpp/system.io/istemplatebaseof/_index.md b/english/cpp/system.io/istemplatebaseof/_index.md new file mode 100644 index 0000000000..540a0d922b --- /dev/null +++ b/english/cpp/system.io/istemplatebaseof/_index.md @@ -0,0 +1,23 @@ +--- +title: System::IO::IsTemplateBaseOf typedef +linktitle: IsTemplateBaseOf +second_title: Aspose.PDF for C++ API Reference +description: 'System::IO::IsTemplateBaseOf typedef. Represents std::is_base_of counterpart that determine the inheritance of not instantiated Base template class from instantiated Derived template class. Will fail with multiple inheritance or non-public inheritance from Base in C++.' +type: docs +weight: 4100 +url: /cpp/system.io/istemplatebaseof/ +--- +## IsTemplateBaseOf typedef + + +Represents std::is_base_of counterpart that determine the inheritance of not instantiated Base template class from instantiated Derived template class. Will fail with multiple inheritance or non-public inheritance from Base. + +```cpp +using System::Details::IsTemplateBaseOf = typename IsTemplateBaseOfImpl::type +``` + + +## See Also + +* Namespace [System::IO](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system.io/memorystream/ptr/_index.md b/english/cpp/system.io/memorystream/ptr/_index.md index 477042bd1c..bd1c26963c 100644 --- a/english/cpp/system.io/memorystream/ptr/_index.md +++ b/english/cpp/system.io/memorystream/ptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.io/memorystream/ptr/ An alias for a shared pointer to the self. ```cpp -System::SharedPtr System::IO::MemoryStream::Ptr +typedef System::SharedPtr System::IO::MemoryStream::Ptr ``` ## See Also diff --git a/english/cpp/system.io/stdiostreamwrapper/_index.md b/english/cpp/system.io/stdiostreamwrapper/_index.md index 04b251c99e..b771ec7f74 100644 --- a/english/cpp/system.io/stdiostreamwrapper/_index.md +++ b/english/cpp/system.io/stdiostreamwrapper/_index.md @@ -4,7 +4,7 @@ linktitle: STDIOStreamWrapper second_title: Aspose.PDF for C++ API Reference description: 'System::IO::STDIOStreamWrapper typedef. Specializations of BasicSTDIOStreamWrapper for char character types in C++.' type: docs -weight: 4100 +weight: 4200 url: /cpp/system.io/stdiostreamwrapper/ --- ## STDIOStreamWrapper typedef diff --git a/english/cpp/system.io/stdistreamwrapper/_index.md b/english/cpp/system.io/stdistreamwrapper/_index.md index 7056c60b7f..d77dd864f3 100644 --- a/english/cpp/system.io/stdistreamwrapper/_index.md +++ b/english/cpp/system.io/stdistreamwrapper/_index.md @@ -4,7 +4,7 @@ linktitle: STDIStreamWrapper second_title: Aspose.PDF for C++ API Reference description: 'System::IO::STDIStreamWrapper typedef. Specializations of BasicSTDIStreamWrapper for char character types in C++.' type: docs -weight: 4200 +weight: 4300 url: /cpp/system.io/stdistreamwrapper/ --- ## STDIStreamWrapper typedef diff --git a/english/cpp/system.io/stdostreamwrapper/_index.md b/english/cpp/system.io/stdostreamwrapper/_index.md index 798ebbc05e..b21cf7491a 100644 --- a/english/cpp/system.io/stdostreamwrapper/_index.md +++ b/english/cpp/system.io/stdostreamwrapper/_index.md @@ -4,7 +4,7 @@ linktitle: STDOStreamWrapper second_title: Aspose.PDF for C++ API Reference description: 'System::IO::STDOStreamWrapper typedef. Specializations of BasicSTDOStreamWrapper for char character types in C++.' type: docs -weight: 4300 +weight: 4400 url: /cpp/system.io/stdostreamwrapper/ --- ## STDOStreamWrapper typedef diff --git a/english/cpp/system.io/stdwiostreamwrapper/_index.md b/english/cpp/system.io/stdwiostreamwrapper/_index.md index 79d7c1afba..bc035673a0 100644 --- a/english/cpp/system.io/stdwiostreamwrapper/_index.md +++ b/english/cpp/system.io/stdwiostreamwrapper/_index.md @@ -4,7 +4,7 @@ linktitle: STDWIOStreamWrapper second_title: Aspose.PDF for C++ API Reference description: 'System::IO::STDWIOStreamWrapper typedef. Specializations of BasicSTDIOStreamWrapper for wchar_t character types in C++.' type: docs -weight: 4400 +weight: 4500 url: /cpp/system.io/stdwiostreamwrapper/ --- ## STDWIOStreamWrapper typedef diff --git a/english/cpp/system.io/stdwistreamwrapper/_index.md b/english/cpp/system.io/stdwistreamwrapper/_index.md index d850359ed9..6d2aa69951 100644 --- a/english/cpp/system.io/stdwistreamwrapper/_index.md +++ b/english/cpp/system.io/stdwistreamwrapper/_index.md @@ -4,7 +4,7 @@ linktitle: STDWIStreamWrapper second_title: Aspose.PDF for C++ API Reference description: 'System::IO::STDWIStreamWrapper typedef. Specializations of BasicSTDIStreamWrapper for wchar_t character types in C++.' type: docs -weight: 4500 +weight: 4600 url: /cpp/system.io/stdwistreamwrapper/ --- ## STDWIStreamWrapper typedef diff --git a/english/cpp/system.io/stdwostreamwrapper/_index.md b/english/cpp/system.io/stdwostreamwrapper/_index.md index 4294c5ab51..594ca04803 100644 --- a/english/cpp/system.io/stdwostreamwrapper/_index.md +++ b/english/cpp/system.io/stdwostreamwrapper/_index.md @@ -4,7 +4,7 @@ linktitle: STDWOStreamWrapper second_title: Aspose.PDF for C++ API Reference description: 'System::IO::STDWOStreamWrapper typedef. Specializations of BasicSTDOStreamWrapper for wchar_t character types in C++.' type: docs -weight: 4600 +weight: 4700 url: /cpp/system.io/stdwostreamwrapper/ --- ## STDWOStreamWrapper typedef diff --git a/english/cpp/system.io/stream/ptr/_index.md b/english/cpp/system.io/stream/ptr/_index.md index f2697bf53a..e6592a318e 100644 --- a/english/cpp/system.io/stream/ptr/_index.md +++ b/english/cpp/system.io/stream/ptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.io/stream/ptr/ An alias for a shared pointer to this class. ```cpp -SharedPtr System::IO::Stream::Ptr +typedef SharedPtr System::IO::Stream::Ptr ``` ## See Also diff --git a/english/cpp/system.io/systemiostreamwrapper/_index.md b/english/cpp/system.io/systemiostreamwrapper/_index.md index ca05e4adaa..96e723f9a7 100644 --- a/english/cpp/system.io/systemiostreamwrapper/_index.md +++ b/english/cpp/system.io/systemiostreamwrapper/_index.md @@ -4,7 +4,7 @@ linktitle: SystemIOStreamWrapper second_title: Aspose.PDF for C++ API Reference description: 'System::IO::SystemIOStreamWrapper typedef. Specializations of BasicSystemIOStreamWrapper for char character types in C++.' type: docs -weight: 4700 +weight: 4800 url: /cpp/system.io/systemiostreamwrapper/ --- ## SystemIOStreamWrapper typedef diff --git a/english/cpp/system.io/systemistreamwrapper/_index.md b/english/cpp/system.io/systemistreamwrapper/_index.md index a6bf9ae66a..f902713483 100644 --- a/english/cpp/system.io/systemistreamwrapper/_index.md +++ b/english/cpp/system.io/systemistreamwrapper/_index.md @@ -4,7 +4,7 @@ linktitle: SystemIStreamWrapper second_title: Aspose.PDF for C++ API Reference description: 'System::IO::SystemIStreamWrapper typedef. Specializations of BasicSystemIStreamWrapper for char character types in C++.' type: docs -weight: 4800 +weight: 4900 url: /cpp/system.io/systemistreamwrapper/ --- ## SystemIStreamWrapper typedef diff --git a/english/cpp/system.io/systemostreamwrapper/_index.md b/english/cpp/system.io/systemostreamwrapper/_index.md index 77d00a7ce1..07c7e9ab69 100644 --- a/english/cpp/system.io/systemostreamwrapper/_index.md +++ b/english/cpp/system.io/systemostreamwrapper/_index.md @@ -4,7 +4,7 @@ linktitle: SystemOStreamWrapper second_title: Aspose.PDF for C++ API Reference description: 'System::IO::SystemOStreamWrapper typedef. Specializations of BasicSystemOStreamWrapper for char character types in C++.' type: docs -weight: 4900 +weight: 5000 url: /cpp/system.io/systemostreamwrapper/ --- ## SystemOStreamWrapper typedef diff --git a/english/cpp/system.io/systemwiostreamwrapper/_index.md b/english/cpp/system.io/systemwiostreamwrapper/_index.md index de84a2e8ac..c72f4def95 100644 --- a/english/cpp/system.io/systemwiostreamwrapper/_index.md +++ b/english/cpp/system.io/systemwiostreamwrapper/_index.md @@ -4,7 +4,7 @@ linktitle: SystemWIOStreamWrapper second_title: Aspose.PDF for C++ API Reference description: 'System::IO::SystemWIOStreamWrapper typedef. Specializations of BasicSystemIOStreamWrapper for wchar_t character types in C++.' type: docs -weight: 5000 +weight: 5100 url: /cpp/system.io/systemwiostreamwrapper/ --- ## SystemWIOStreamWrapper typedef diff --git a/english/cpp/system.io/systemwistreamwrapper/_index.md b/english/cpp/system.io/systemwistreamwrapper/_index.md index 5da1133e2a..f278eb8370 100644 --- a/english/cpp/system.io/systemwistreamwrapper/_index.md +++ b/english/cpp/system.io/systemwistreamwrapper/_index.md @@ -4,7 +4,7 @@ linktitle: SystemWIStreamWrapper second_title: Aspose.PDF for C++ API Reference description: 'System::IO::SystemWIStreamWrapper typedef. Specializations of BasicSystemIStreamWrapper for wchar_t character types in C++.' type: docs -weight: 5100 +weight: 5200 url: /cpp/system.io/systemwistreamwrapper/ --- ## SystemWIStreamWrapper typedef diff --git a/english/cpp/system.io/systemwostreamwrapper/_index.md b/english/cpp/system.io/systemwostreamwrapper/_index.md index b3341b2c4c..aa32dc52bc 100644 --- a/english/cpp/system.io/systemwostreamwrapper/_index.md +++ b/english/cpp/system.io/systemwostreamwrapper/_index.md @@ -4,7 +4,7 @@ linktitle: SystemWOStreamWrapper second_title: Aspose.PDF for C++ API Reference description: 'System::IO::SystemWOStreamWrapper typedef. Specializations of BasicSystemOStreamWrapper for wchar_t character types in C++.' type: docs -weight: 5200 +weight: 5300 url: /cpp/system.io/systemwostreamwrapper/ --- ## SystemWOStreamWrapper typedef diff --git a/english/cpp/system.io/textwriter/ptr/_index.md b/english/cpp/system.io/textwriter/ptr/_index.md index 09465e69b6..da0b287ff5 100644 --- a/english/cpp/system.io/textwriter/ptr/_index.md +++ b/english/cpp/system.io/textwriter/ptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.io/textwriter/ptr/ An alias for a shared pointer to this class. ```cpp -System::SharedPtr System::IO::TextWriter::Ptr +typedef System::SharedPtr System::IO::TextWriter::Ptr ``` ## See Also diff --git a/english/cpp/system.io/wrapstdiostream/_index.md b/english/cpp/system.io/wrapstdiostream/_index.md index 9a044c7d49..2f0e7225b2 100644 --- a/english/cpp/system.io/wrapstdiostream/_index.md +++ b/english/cpp/system.io/wrapstdiostream/_index.md @@ -4,7 +4,7 @@ linktitle: WrapSTDIOStream second_title: Aspose.PDF for C++ API Reference description: 'System::IO::WrapSTDIOStream method. Wrapper function for std::basic_iostream-like streams in C++.' type: docs -weight: 5300 +weight: 5400 url: /cpp/system.io/wrapstdiostream/ --- ## System::IO::WrapSTDIOStream(std::basic_iostream\\&, STDIOStreamWrappingMode, STDIOStreamPositionPreference) method diff --git a/english/cpp/system.net.cache/httprequestcachepolicy/get_level/_index.md b/english/cpp/system.net.cache/httprequestcachepolicy/get_level/_index.md index 379ee7a355..05f861c201 100644 --- a/english/cpp/system.net.cache/httprequestcachepolicy/get_level/_index.md +++ b/english/cpp/system.net.cache/httprequestcachepolicy/get_level/_index.md @@ -19,11 +19,11 @@ HttpRequestCacheLevel System::Net::Cache::HttpRequestCachePolicy::get_Level() co ### ReturnValue -The specified HttpRequestCacheLevel value. +The specified [HttpRequestCacheLevel](../../httprequestcachelevel/) value. ## Remarks -Gets the specified HttpRequestCacheLevel value. +Gets the specified [HttpRequestCacheLevel](../../httprequestcachelevel/) value. ## See Also * Enum [HttpRequestCacheLevel](../../httprequestcachelevel/) diff --git a/english/cpp/system.net.cache/requestcachelevel/_index.md b/english/cpp/system.net.cache/requestcachelevel/_index.md index 3e1e9b031b..619b736f96 100644 --- a/english/cpp/system.net.cache/requestcachelevel/_index.md +++ b/english/cpp/system.net.cache/requestcachelevel/_index.md @@ -22,7 +22,7 @@ enum class RequestCacheLevel | --- | --- | --- | | Default | 0 | Satisfies a request for a resource either by using the cached copy of the resource or by sending a request for the resource to the server. | | BypassCache | 1 | Satisfies a request by using the server. No entries are taken from the cache. | -| CacheOnly | 2 | Satisfies a request for a resource only from the cache. WebException will be thrown when a resource is not in the client cache. | +| CacheOnly | 2 | Satisfies a request for a resource only from the cache. [WebException](../../system.net/webexception/) will be thrown when a resource is not in the client cache. | | CacheIfAvailable | 3 | Satisfies a request for a resource from the cache if the resource is available, otherwise sends a request to the server. | | Revalidate | 4 | Using a resource local copy if the client timestamp is the same as the timestamp of the resource on the server. Otherwise, a resource is downloaded from a server. | | Reload | 5 | A resource is always downloaded from the server. | diff --git a/english/cpp/system.net.cache/requestcachepolicy/_index.md b/english/cpp/system.net.cache/requestcachepolicy/_index.md index c2b988b69c..867060464e 100644 --- a/english/cpp/system.net.cache/requestcachepolicy/_index.md +++ b/english/cpp/system.net.cache/requestcachepolicy/_index.md @@ -22,7 +22,7 @@ class RequestCachePolicy : public System::Object | --- | --- | | [get_Level](./get_level/)() | RTTI information. | | [RequestCachePolicy](./requestcachepolicy/)() | Constructs a new instance. | -| [RequestCachePolicy](./requestcachepolicy/)(RequestCacheLevel) | Construct a new instance with the specified RequestCacheLevel value. | +| [RequestCachePolicy](./requestcachepolicy/)(RequestCacheLevel) | Construct a new instance with the specified [RequestCacheLevel](../requestcachelevel/) value. | | [ToString](./tostring/)() const override | Analog of C# [Object.ToString()](../../system/object/tostring/) method. Enables converting custom objects to string. | ## See Also diff --git a/english/cpp/system.net.cache/requestcachepolicy/get_level/_index.md b/english/cpp/system.net.cache/requestcachepolicy/get_level/_index.md index 7e2b0b0754..358856bc3e 100644 --- a/english/cpp/system.net.cache/requestcachepolicy/get_level/_index.md +++ b/english/cpp/system.net.cache/requestcachepolicy/get_level/_index.md @@ -19,11 +19,11 @@ RequestCacheLevel System::Net::Cache::RequestCachePolicy::get_Level() ### ReturnValue -The specified RequestCacheLevel value. +The specified [RequestCacheLevel](../../requestcachelevel/) value. ## Remarks -Gets the specified RequestCacheLevel value. +Gets the specified [RequestCacheLevel](../../requestcachelevel/) value. ## See Also * Enum [RequestCacheLevel](../../requestcachelevel/) diff --git a/english/cpp/system.net.cache/requestcachepolicy/requestcachepolicy/_index.md b/english/cpp/system.net.cache/requestcachepolicy/requestcachepolicy/_index.md index fcac001713..74c0dd97af 100644 --- a/english/cpp/system.net.cache/requestcachepolicy/requestcachepolicy/_index.md +++ b/english/cpp/system.net.cache/requestcachepolicy/requestcachepolicy/_index.md @@ -24,7 +24,7 @@ System::Net::Cache::RequestCachePolicy::RequestCachePolicy() ## RequestCachePolicy::RequestCachePolicy(RequestCacheLevel) constructor -Construct a new instance with the specified RequestCacheLevel value. +Construct a new instance with the specified [RequestCacheLevel](../../requestcachelevel/) value. ```cpp System::Net::Cache::RequestCachePolicy::RequestCachePolicy(RequestCacheLevel level) @@ -33,7 +33,7 @@ System::Net::Cache::RequestCachePolicy::RequestCachePolicy(RequestCacheLevel lev | Parameter | Type | Description | | --- | --- | --- | -| level | RequestCacheLevel | The RequestCacheLevel value. | +| level | RequestCacheLevel | The [RequestCacheLevel](../../requestcachelevel/) value. | ## See Also diff --git a/english/cpp/system.net.http.headers/string_/_index.md b/english/cpp/system.net.http.headers/string_/_index.md index 78c638893f..ee6718bf67 100644 --- a/english/cpp/system.net.http.headers/string_/_index.md +++ b/english/cpp/system.net.http.headers/string_/_index.md @@ -13,7 +13,8 @@ url: /cpp/system.net.http.headers/string_/ The partial specialization of the [HttpHeaderValueCollection](../httpheadervaluecollection/) template for the [String](../../system/string/) type. 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. ```cpp -class String > : public System::Collections::Generic::ICollection +class String > : public System::Collections::Generic::ICollection, + public System::Collections::Generic::ICollection ``` ## Methods diff --git a/english/cpp/system.net.http/httpresponsemessage/_index.md b/english/cpp/system.net.http/httpresponsemessage/_index.md index a6eac08538..de685dca2f 100644 --- a/english/cpp/system.net.http/httpresponsemessage/_index.md +++ b/english/cpp/system.net.http/httpresponsemessage/_index.md @@ -21,7 +21,7 @@ class HttpResponseMessage : public System::IDisposable | Method | Description | | --- | --- | | [Dispose](./dispose/)() override | Disposes the current instance. This method also disposes content of the HTTP response. | -| [EnsureSuccessStatusCode](./ensuresuccessstatuscode/)() | Checks the status code. HttpRequestException will be thrown when the status code doesn't belong to 2xx. | +| [EnsureSuccessStatusCode](./ensuresuccessstatuscode/)() | Checks the status code. [HttpRequestException](../httprequestexception/) will be thrown when the status code doesn't belong to 2xx. | | [get_Content](./get_content/)() const | Gets content of the HTTP response. | | [get_Headers](./get_headers/)() const | Returns the HTTP content headers. | | [get_IsSuccessStatusCode](./get_issuccessstatuscode/)() const | Checks if the status code indicates that the action requested by the client was received, understood, and accepted. | diff --git a/english/cpp/system.net.http/httpresponsemessage/ensuresuccessstatuscode/_index.md b/english/cpp/system.net.http/httpresponsemessage/ensuresuccessstatuscode/_index.md index 8a91123994..ec448bb7bd 100644 --- a/english/cpp/system.net.http/httpresponsemessage/ensuresuccessstatuscode/_index.md +++ b/english/cpp/system.net.http/httpresponsemessage/ensuresuccessstatuscode/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.net.http/httpresponsemessage/ensuresuccessstatuscode/ ## HttpResponseMessage::EnsureSuccessStatusCode method -Checks the status code. HttpRequestException will be thrown when the status code doesn't belong to 2xx. +Checks the status code. [HttpRequestException](../../httprequestexception/) will be thrown when the status code doesn't belong to 2xx. ```cpp System::SharedPtr System::Net::Http::HttpResponseMessage::EnsureSuccessStatusCode() diff --git a/english/cpp/system.net.security/sslstream/asyncresulttype/_index.md b/english/cpp/system.net.security/sslstream/asyncresulttype/_index.md index 5c0e810f3c..f3a1e17bef 100644 --- a/english/cpp/system.net.security/sslstream/asyncresulttype/_index.md +++ b/english/cpp/system.net.security/sslstream/asyncresulttype/_index.md @@ -13,13 +13,13 @@ url: /cpp/system.net.security/sslstream/asyncresulttype/ RTTI information. ```cpp -TlsStreamAsyncResult System::Net::Security::SslStream::AsyncResultType +typedef TlsStreamAsyncResult System::Net::Security::SslStream::AsyncResultType ``` ## Remarks -Type of AsyncResultType +Type of [AsyncResultType](./) ## See Also * Class [SslStream](../) diff --git a/english/cpp/system.net.security/sslstream/streamimplementationptr/_index.md b/english/cpp/system.net.security/sslstream/streamimplementationptr/_index.md index 6427300c66..b3e6ddeb30 100644 --- a/english/cpp/system.net.security/sslstream/streamimplementationptr/_index.md +++ b/english/cpp/system.net.security/sslstream/streamimplementationptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.net.security/sslstream/streamimplementationptr/ Type of pointer to the implementation. ```cpp -std::shared_ptr System::Net::Security::SslStream::StreamImplementationPtr +typedef std::shared_ptr System::Net::Security::SslStream::StreamImplementationPtr ``` ## See Also diff --git a/english/cpp/system.net.sockets/socket/implptr/_index.md b/english/cpp/system.net.sockets/socket/implptr/_index.md index e64e7324c3..3c1722c4c5 100644 --- a/english/cpp/system.net.sockets/socket/implptr/_index.md +++ b/english/cpp/system.net.sockets/socket/implptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.net.sockets/socket/implptr/ The socket implementation. ```cpp -std::shared_ptr System::Net::Sockets::Socket::ImplPtr +typedef std::shared_ptr System::Net::Sockets::Socket::ImplPtr ``` ## See Also diff --git a/english/cpp/system.net/_index.md b/english/cpp/system.net/_index.md index 92f8240ec1..65518b2fd3 100644 --- a/english/cpp/system.net/_index.md +++ b/english/cpp/system.net/_index.md @@ -29,8 +29,8 @@ url: /cpp/system.net/ | [FtpWebResponse](./ftpwebresponse/) | Dummy class making it possible linking translated code with [FtpWebResponse](./ftpwebresponse/) references, but not executing it. Contains no properly implemented members. 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. | | [HeaderVariantInfo](./headervariantinfo/) | Used to match the cookie name and specification. 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. | | [HttpKnownHeaderNames](./httpknownheadernames/) | Contains the string values of the known header names. | -| [HttpRequestHeaderExtensions](./httprequestheaderextensions/) | Contains utility methods to work with the HttpRequestHeader enumeration values. | -| [HttpResponseHeaderExtensions](./httpresponseheaderextensions/) | Contains utility methods to work with the HttpResponseHeader enumeration values. | +| [HttpRequestHeaderExtensions](./httprequestheaderextensions/) | Contains utility methods to work with the [HttpRequestHeader](./httprequestheader/) enumeration values. | +| [HttpResponseHeaderExtensions](./httpresponseheaderextensions/) | Contains utility methods to work with the [HttpResponseHeader](./httpresponseheader/) enumeration values. | | [HttpStatusDescription](./httpstatusdescription/) | Contains the utility methods to get the string representation of the HTTP status. | | [HttpVersion](./httpversion/) | Contains versions of HTTP. | | [HttpWebRequest](./httpwebrequest/) | Represents the HTTP web request. 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. | @@ -66,7 +66,7 @@ url: /cpp/system.net/ | [HttpStatusCode](./httpstatuscode/) | | | [SecurityProtocolType](./securityprotocoltype/) | Enumerates the security protocol types. | | [TransportType](./transporttype/) | Defines the transport type allowed for the socket. | -| [WebExceptionStatus](./webexceptionstatus/) | Enumerates the status codes of the WebException class. | +| [WebExceptionStatus](./webexceptionstatus/) | Enumerates the status codes of the [WebException](./webexception/) class. | | [WebHeaderCollectionType](./webheadercollectiontype/) | Enumerates the types of the protocol headers collection. | ## Typedefs diff --git a/english/cpp/system.net/endpoint/implptr/_index.md b/english/cpp/system.net/endpoint/implptr/_index.md index 7f6854921e..d5d024d70a 100644 --- a/english/cpp/system.net/endpoint/implptr/_index.md +++ b/english/cpp/system.net/endpoint/implptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.net/endpoint/implptr/ A pointer to implementation. ```cpp -std::shared_ptr System::Net::EndPoint::ImplPtr +typedef std::shared_ptr System::Net::EndPoint::ImplPtr ``` ## See Also diff --git a/english/cpp/system.net/httprequestheaderextensions/_index.md b/english/cpp/system.net/httprequestheaderextensions/_index.md index 39de7fa868..83b365e771 100644 --- a/english/cpp/system.net/httprequestheaderextensions/_index.md +++ b/english/cpp/system.net/httprequestheaderextensions/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.net/httprequestheaderextensions/ ## HttpRequestHeaderExtensions class -Contains utility methods to work with the HttpRequestHeader enumeration values. +Contains utility methods to work with the [HttpRequestHeader](../httprequestheader/) enumeration values. ```cpp class HttpRequestHeaderExtensions diff --git a/english/cpp/system.net/httpresponseheaderextensions/_index.md b/english/cpp/system.net/httpresponseheaderextensions/_index.md index 27caab078e..b38d4a87b5 100644 --- a/english/cpp/system.net/httpresponseheaderextensions/_index.md +++ b/english/cpp/system.net/httpresponseheaderextensions/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.net/httpresponseheaderextensions/ ## HttpResponseHeaderExtensions class -Contains utility methods to work with the HttpResponseHeader enumeration values. +Contains utility methods to work with the [HttpResponseHeader](../httpresponseheader/) enumeration values. ```cpp class HttpResponseHeaderExtensions : public System::Object diff --git a/english/cpp/system.net/ipaddress/implptr/_index.md b/english/cpp/system.net/ipaddress/implptr/_index.md index 54520ff57a..02e2ff22a2 100644 --- a/english/cpp/system.net/ipaddress/implptr/_index.md +++ b/english/cpp/system.net/ipaddress/implptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.net/ipaddress/implptr/ A pointer to the implementation type. ```cpp -std::shared_ptr System::Net::IPAddress::ImplPtr +typedef std::shared_ptr System::Net::IPAddress::ImplPtr ``` ## See Also diff --git a/english/cpp/system.net/webexceptionstatus/_index.md b/english/cpp/system.net/webexceptionstatus/_index.md index 1405822c54..696344e8d3 100644 --- a/english/cpp/system.net/webexceptionstatus/_index.md +++ b/english/cpp/system.net/webexceptionstatus/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.net/webexceptionstatus/ ## WebExceptionStatus enum -Enumerates the status codes of the WebException class. +Enumerates the status codes of the [WebException](../webexception/) class. ```cpp enum class WebExceptionStatus diff --git a/english/cpp/system.reflection/_index.md b/english/cpp/system.reflection/_index.md index 4ded8e12e8..15e473d1ea 100644 --- a/english/cpp/system.reflection/_index.md +++ b/english/cpp/system.reflection/_index.md @@ -35,5 +35,5 @@ url: /cpp/system.reflection/ | Typedef | Description | | --- | --- | -| [ReflectionTypeLoadException](./reflectiontypeloadexception/) | ReflectionTypeLoadException is thrown by the Module.GetTypes method if any of the classes in a module fail to load. Never wrap the ReflectionTypeLoadException class instances into [System::SmartPtr](../system/smartptr/). | -| [TargetInvocationException](./targetinvocationexception/) | TargetInvocationException is thrown by methods invoked through reflection. Never wrap the TargetInvocationException class instances into [System::SmartPtr](../system/smartptr/). | +| [ReflectionTypeLoadException](./reflectiontypeloadexception/) | [ReflectionTypeLoadException](./reflectiontypeloadexception/) is thrown by the Module.GetTypes method if any of the classes in a module fail to load. Never wrap the [ReflectionTypeLoadException](./reflectiontypeloadexception/) class instances into [System::SmartPtr](../system/smartptr/). | +| [TargetInvocationException](./targetinvocationexception/) | [TargetInvocationException](./targetinvocationexception/) is thrown by methods invoked through reflection. Never wrap the [TargetInvocationException](./targetinvocationexception/) class instances into [System::SmartPtr](../system/smartptr/). | diff --git a/english/cpp/system.reflection/constructorinfo/_index.md b/english/cpp/system.reflection/constructorinfo/_index.md index 5928eef022..2eecec8dc1 100644 --- a/english/cpp/system.reflection/constructorinfo/_index.md +++ b/english/cpp/system.reflection/constructorinfo/_index.md @@ -22,7 +22,7 @@ class ConstructorInfo : public System::Reflection::MethodBase | --- | --- | | [ConstructorInfo](./constructorinfo/)(const String\&, std::function\) | Initializes a new instance of the [ConstructorInfo](./) class for constructor without parameters. | | [get_DeclaringType](./get_declaringtype/)() | Gets the class that declares this member. NOT IMPLEMENTED. | -| [get_MemberType](./get_membertype/)() const override | Gets a MemberTypes value indicating that this member is a constructor. | +| [get_MemberType](./get_membertype/)() const override | Gets a [MemberTypes](../membertypes/) value indicating that this member is a constructor. | | [Invoke](./invoke/)(const System::ArrayPtr\\>\&) | Invokes the method or constructor represented by the current instance, using the specified parameters. | ## See Also diff --git a/english/cpp/system.reflection/constructorinfo/get_membertype/_index.md b/english/cpp/system.reflection/constructorinfo/get_membertype/_index.md index 7c97975e2a..f77ccdb5ae 100644 --- a/english/cpp/system.reflection/constructorinfo/get_membertype/_index.md +++ b/english/cpp/system.reflection/constructorinfo/get_membertype/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.reflection/constructorinfo/get_membertype/ ## ConstructorInfo::get_MemberType method -Gets a MemberTypes value indicating that this member is a constructor. +Gets a [MemberTypes](../../membertypes/) value indicating that this member is a constructor. ```cpp virtual MemberTypes System::Reflection::ConstructorInfo::get_MemberType() const override diff --git a/english/cpp/system.reflection/memberinfo/objectptr/_index.md b/english/cpp/system.reflection/memberinfo/objectptr/_index.md index d8b4a4cd1a..14dc9c9709 100644 --- a/english/cpp/system.reflection/memberinfo/objectptr/_index.md +++ b/english/cpp/system.reflection/memberinfo/objectptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.reflection/memberinfo/objectptr/ Alias for a shared pointer to [Object](../../../system/object/). ```cpp -SharedPtr System::Reflection::MemberInfo::ObjectPtr +typedef SharedPtr System::Reflection::MemberInfo::ObjectPtr ``` ## See Also diff --git a/english/cpp/system.reflection/methodinfo/_index.md b/english/cpp/system.reflection/methodinfo/_index.md index 4f59afc584..cdff0f2b3a 100644 --- a/english/cpp/system.reflection/methodinfo/_index.md +++ b/english/cpp/system.reflection/methodinfo/_index.md @@ -20,7 +20,7 @@ class MethodInfo : public System::Reflection::MemberInfo | Method | Description | | --- | --- | -| [get_MemberType](./get_membertype/)() const override | Gets a MemberTypes value indicating that this member is a method. | +| [get_MemberType](./get_membertype/)() const override | Gets a [MemberTypes](../membertypes/) value indicating that this member is a method. | | [MethodInfo](./methodinfo/)(const String\&) | Initializes a new instance of the [MethodInfo](./) class. | ## See Also diff --git a/english/cpp/system.reflection/methodinfo/get_membertype/_index.md b/english/cpp/system.reflection/methodinfo/get_membertype/_index.md index e2ce04465a..3a3897c62f 100644 --- a/english/cpp/system.reflection/methodinfo/get_membertype/_index.md +++ b/english/cpp/system.reflection/methodinfo/get_membertype/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.reflection/methodinfo/get_membertype/ ## MethodInfo::get_MemberType method -Gets a MemberTypes value indicating that this member is a method. +Gets a [MemberTypes](../../membertypes/) value indicating that this member is a method. ```cpp virtual MemberTypes System::Reflection::MethodInfo::get_MemberType() const override diff --git a/english/cpp/system.reflection/propertyinfo/_index.md b/english/cpp/system.reflection/propertyinfo/_index.md index d1f52185e1..fec9d71271 100644 --- a/english/cpp/system.reflection/propertyinfo/_index.md +++ b/english/cpp/system.reflection/propertyinfo/_index.md @@ -20,7 +20,7 @@ class PropertyInfo : public System::Reflection::MemberInfo | Method | Description | | --- | --- | -| [get_MemberType](./get_membertype/)() const override | Gets a MemberTypes value indicating that this member is a property. | +| [get_MemberType](./get_membertype/)() const override | Gets a [MemberTypes](../membertypes/) value indicating that this member is a property. | | [get_PropertyType](./get_propertytype/)() | Gets property type. | | [GetValue](./getvalue/)(System::SharedPtr\) | Gets property value from specific object. | | [GetValue](./getvalue/)(System::SharedPtr\, System::ArrayPtr\\>) | Gets property value from specific object. | diff --git a/english/cpp/system.reflection/propertyinfo/get_membertype/_index.md b/english/cpp/system.reflection/propertyinfo/get_membertype/_index.md index e0dc4fa2b8..99264d1cb1 100644 --- a/english/cpp/system.reflection/propertyinfo/get_membertype/_index.md +++ b/english/cpp/system.reflection/propertyinfo/get_membertype/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.reflection/propertyinfo/get_membertype/ ## PropertyInfo::get_MemberType method -Gets a MemberTypes value indicating that this member is a property. +Gets a [MemberTypes](../../membertypes/) value indicating that this member is a property. ```cpp virtual MemberTypes System::Reflection::PropertyInfo::get_MemberType() const override diff --git a/english/cpp/system.reflection/reflectiontypeloadexception/_index.md b/english/cpp/system.reflection/reflectiontypeloadexception/_index.md index 17ab488a69..897c914208 100644 --- a/english/cpp/system.reflection/reflectiontypeloadexception/_index.md +++ b/english/cpp/system.reflection/reflectiontypeloadexception/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.reflection/reflectiontypeloadexception/ ## ReflectionTypeLoadException typedef -ReflectionTypeLoadException is thrown by the Module.GetTypes method if any of the classes in a module fail to load. Never wrap the ReflectionTypeLoadException class instances into [System::SmartPtr](../../system/smartptr/). +[ReflectionTypeLoadException](./) is thrown by the Module.GetTypes method if any of the classes in a module fail to load. Never wrap the [ReflectionTypeLoadException](./) class instances into [System::SmartPtr](../../system/smartptr/). ```cpp using System::Reflection::ReflectionTypeLoadException = System::ExceptionWrapper diff --git a/english/cpp/system.reflection/targetinvocationexception/_index.md b/english/cpp/system.reflection/targetinvocationexception/_index.md index deaf684638..3b6c2fdf98 100644 --- a/english/cpp/system.reflection/targetinvocationexception/_index.md +++ b/english/cpp/system.reflection/targetinvocationexception/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.reflection/targetinvocationexception/ ## TargetInvocationException typedef -TargetInvocationException is thrown by methods invoked through reflection. Never wrap the TargetInvocationException class instances into [System::SmartPtr](../../system/smartptr/). +[TargetInvocationException](./) is thrown by methods invoked through reflection. Never wrap the [TargetInvocationException](./) class instances into [System::SmartPtr](../../system/smartptr/). ```cpp using System::Reflection::TargetInvocationException = System::ExceptionWrapper diff --git a/english/cpp/system.runtime.compilerservices/_index.md b/english/cpp/system.runtime.compilerservices/_index.md index 3fef85e4d0..35c2386cde 100644 --- a/english/cpp/system.runtime.compilerservices/_index.md +++ b/english/cpp/system.runtime.compilerservices/_index.md @@ -15,8 +15,13 @@ url: /cpp/system.runtime.compilerservices/ | Class | Description | | --- | --- | | [ConfiguredResultTaskAwaitable](./configuredresulttaskawaitable/) | | +| [ConfiguredResultValueTaskAwaitable](./configuredresultvaluetaskawaitable/) | | | [ConfiguredTaskAwaitable](./configuredtaskawaitable/) | | +| [ConfiguredValueTaskAwaitable](./configuredvaluetaskawaitable/) | | | [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/) | | +| [ResultValueTaskAwaiter](./resultvaluetaskawaiter/) | | | [RuntimeHelpers](./runtimehelpers/) | Helper class to get some object information in runtime. | | [TaskAwaiter](./taskawaiter/) | | +| [ValueTaskAwaiter](./valuetaskawaiter/) | | +| [YieldAwaitable](./yieldawaitable/) | | diff --git a/english/cpp/system.runtime.compilerservices/configuredresultvaluetaskawaitable/_index.md b/english/cpp/system.runtime.compilerservices/configuredresultvaluetaskawaitable/_index.md new file mode 100644 index 0000000000..1bc015c05d --- /dev/null +++ b/english/cpp/system.runtime.compilerservices/configuredresultvaluetaskawaitable/_index.md @@ -0,0 +1,28 @@ +--- +title: System::Runtime::CompilerServices::ConfiguredResultValueTaskAwaitable class +linktitle: ConfiguredResultValueTaskAwaitable +second_title: Aspose.PDF for C++ API Reference +description: 'How to use System::Runtime::CompilerServices::ConfiguredResultValueTaskAwaitable class in C++.' +type: docs +weight: 200 +url: /cpp/system.runtime.compilerservices/configuredresultvaluetaskawaitable/ +--- +## ConfiguredResultValueTaskAwaitable class + + + + +```cpp +templateclass ConfiguredResultValueTaskAwaitable +``` + +## Methods + +| Method | Description | +| --- | --- | +| [ConfiguredResultValueTaskAwaitable](./configuredresultvaluetaskawaitable/)(const Threading::Tasks::ResultValueTask\\&, bool) | | +| [GetAwaiter](./getawaiter/)() const | | +## See Also + +* Namespace [System::Runtime::CompilerServices](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system.runtime.compilerservices/configuredresultvaluetaskawaitable/configuredresultvaluetaskawaitable/_index.md b/english/cpp/system.runtime.compilerservices/configuredresultvaluetaskawaitable/configuredresultvaluetaskawaitable/_index.md new file mode 100644 index 0000000000..cc7625693e --- /dev/null +++ b/english/cpp/system.runtime.compilerservices/configuredresultvaluetaskawaitable/configuredresultvaluetaskawaitable/_index.md @@ -0,0 +1,24 @@ +--- +title: System::Runtime::CompilerServices::ConfiguredResultValueTaskAwaitable::ConfiguredResultValueTaskAwaitable constructor +linktitle: ConfiguredResultValueTaskAwaitable +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ConfiguredResultValueTaskAwaitable constructor of System::Runtime::CompilerServices::ConfiguredResultValueTaskAwaitable class in C++.' +type: docs +weight: 100 +url: /cpp/system.runtime.compilerservices/configuredresultvaluetaskawaitable/configuredresultvaluetaskawaitable/ +--- +## ConfiguredResultValueTaskAwaitable::ConfiguredResultValueTaskAwaitable constructor + + + + +```cpp +System::Runtime::CompilerServices::ConfiguredResultValueTaskAwaitable::ConfiguredResultValueTaskAwaitable(const Threading::Tasks::ResultValueTask &task, bool continueOnCapturedContext) +``` + +## See Also + +* Class [ResultValueTask](../../../system.threading.tasks/resultvaluetask/) +* Class [ConfiguredResultValueTaskAwaitable](../) +* Namespace [System::Runtime::CompilerServices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.runtime.compilerservices/configuredresultvaluetaskawaitable/getawaiter/_index.md b/english/cpp/system.runtime.compilerservices/configuredresultvaluetaskawaitable/getawaiter/_index.md new file mode 100644 index 0000000000..2decf17a58 --- /dev/null +++ b/english/cpp/system.runtime.compilerservices/configuredresultvaluetaskawaitable/getawaiter/_index.md @@ -0,0 +1,24 @@ +--- +title: System::Runtime::CompilerServices::ConfiguredResultValueTaskAwaitable::GetAwaiter method +linktitle: GetAwaiter +second_title: Aspose.PDF for C++ API Reference +description: 'How to use GetAwaiter method of System::Runtime::CompilerServices::ConfiguredResultValueTaskAwaitable class in C++.' +type: docs +weight: 200 +url: /cpp/system.runtime.compilerservices/configuredresultvaluetaskawaitable/getawaiter/ +--- +## ConfiguredResultValueTaskAwaitable::GetAwaiter method + + + + +```cpp +Runtime::CompilerServices::ResultTaskAwaiter System::Runtime::CompilerServices::ConfiguredResultValueTaskAwaitable::GetAwaiter() const +``` + +## See Also + +* Class [ResultTaskAwaiter](../../resulttaskawaiter/) +* Class [ConfiguredResultValueTaskAwaitable](../) +* 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 index 1670d7b795..1ff58941b5 100644 --- a/english/cpp/system.runtime.compilerservices/configuredtaskawaitable/_index.md +++ b/english/cpp/system.runtime.compilerservices/configuredtaskawaitable/_index.md @@ -4,7 +4,7 @@ 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 +weight: 300 url: /cpp/system.runtime.compilerservices/configuredtaskawaitable/ --- ## ConfiguredTaskAwaitable class diff --git a/english/cpp/system.runtime.compilerservices/configuredvaluetaskawaitable/_index.md b/english/cpp/system.runtime.compilerservices/configuredvaluetaskawaitable/_index.md new file mode 100644 index 0000000000..e5c0a6da8c --- /dev/null +++ b/english/cpp/system.runtime.compilerservices/configuredvaluetaskawaitable/_index.md @@ -0,0 +1,28 @@ +--- +title: System::Runtime::CompilerServices::ConfiguredValueTaskAwaitable class +linktitle: ConfiguredValueTaskAwaitable +second_title: Aspose.PDF for C++ API Reference +description: 'How to use System::Runtime::CompilerServices::ConfiguredValueTaskAwaitable class in C++.' +type: docs +weight: 400 +url: /cpp/system.runtime.compilerservices/configuredvaluetaskawaitable/ +--- +## ConfiguredValueTaskAwaitable class + + + + +```cpp +class ConfiguredValueTaskAwaitable +``` + +## Methods + +| Method | Description | +| --- | --- | +| [ConfiguredValueTaskAwaitable](./configuredvaluetaskawaitable/)(const Threading::Tasks::ValueTask\&, bool) | | +| [GetAwaiter](./getawaiter/)() const | | +## See Also + +* Namespace [System::Runtime::CompilerServices](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system.runtime.compilerservices/configuredvaluetaskawaitable/configuredvaluetaskawaitable/_index.md b/english/cpp/system.runtime.compilerservices/configuredvaluetaskawaitable/configuredvaluetaskawaitable/_index.md new file mode 100644 index 0000000000..b232ead84c --- /dev/null +++ b/english/cpp/system.runtime.compilerservices/configuredvaluetaskawaitable/configuredvaluetaskawaitable/_index.md @@ -0,0 +1,24 @@ +--- +title: System::Runtime::CompilerServices::ConfiguredValueTaskAwaitable::ConfiguredValueTaskAwaitable constructor +linktitle: ConfiguredValueTaskAwaitable +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ConfiguredValueTaskAwaitable constructor of System::Runtime::CompilerServices::ConfiguredValueTaskAwaitable class in C++.' +type: docs +weight: 100 +url: /cpp/system.runtime.compilerservices/configuredvaluetaskawaitable/configuredvaluetaskawaitable/ +--- +## ConfiguredValueTaskAwaitable::ConfiguredValueTaskAwaitable constructor + + + + +```cpp +System::Runtime::CompilerServices::ConfiguredValueTaskAwaitable::ConfiguredValueTaskAwaitable(const Threading::Tasks::ValueTask &task, bool continueOnCapturedContext) +``` + +## See Also + +* Class [ValueTask](../../../system.threading.tasks/valuetask/) +* Class [ConfiguredValueTaskAwaitable](../) +* Namespace [System::Runtime::CompilerServices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.runtime.compilerservices/configuredvaluetaskawaitable/getawaiter/_index.md b/english/cpp/system.runtime.compilerservices/configuredvaluetaskawaitable/getawaiter/_index.md new file mode 100644 index 0000000000..a6c81e1639 --- /dev/null +++ b/english/cpp/system.runtime.compilerservices/configuredvaluetaskawaitable/getawaiter/_index.md @@ -0,0 +1,24 @@ +--- +title: System::Runtime::CompilerServices::ConfiguredValueTaskAwaitable::GetAwaiter method +linktitle: GetAwaiter +second_title: Aspose.PDF for C++ API Reference +description: 'How to use GetAwaiter method of System::Runtime::CompilerServices::ConfiguredValueTaskAwaitable class in C++.' +type: docs +weight: 200 +url: /cpp/system.runtime.compilerservices/configuredvaluetaskawaitable/getawaiter/ +--- +## ConfiguredValueTaskAwaitable::GetAwaiter method + + + + +```cpp +Runtime::CompilerServices::ValueTaskAwaiter System::Runtime::CompilerServices::ConfiguredValueTaskAwaitable::GetAwaiter() const +``` + +## See Also + +* Class [ValueTaskAwaiter](../../valuetaskawaiter/) +* Class [ConfiguredValueTaskAwaitable](../) +* 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 9f0ae44713..84b9d7f432 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: 300 +weight: 500 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 index b0fe0d35e4..75fedfa8cf 100644 --- a/english/cpp/system.runtime.compilerservices/resulttaskawaiter/_index.md +++ b/english/cpp/system.runtime.compilerservices/resulttaskawaiter/_index.md @@ -4,7 +4,7 @@ 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 +weight: 600 url: /cpp/system.runtime.compilerservices/resulttaskawaiter/ --- ## ResultTaskAwaiter class diff --git a/english/cpp/system.runtime.compilerservices/resultvaluetaskawaiter/_index.md b/english/cpp/system.runtime.compilerservices/resultvaluetaskawaiter/_index.md new file mode 100644 index 0000000000..a58318271d --- /dev/null +++ b/english/cpp/system.runtime.compilerservices/resultvaluetaskawaiter/_index.md @@ -0,0 +1,30 @@ +--- +title: System::Runtime::CompilerServices::ResultValueTaskAwaiter class +linktitle: ResultValueTaskAwaiter +second_title: Aspose.PDF for C++ API Reference +description: 'How to use System::Runtime::CompilerServices::ResultValueTaskAwaiter class in C++.' +type: docs +weight: 700 +url: /cpp/system.runtime.compilerservices/resultvaluetaskawaiter/ +--- +## ResultValueTaskAwaiter class + + + + +```cpp +templateclass ResultValueTaskAwaiter +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_IsCompleted](./get_iscompleted/)() const | | +| [GetResult](./getresult/)() const | | +| [OnCompleted](./oncompleted/)(const Action<>\&) | | +| [ResultValueTaskAwaiter](./resultvaluetaskawaiter/)(Threading::Tasks::ResultValueTask\) | | +## See Also + +* Namespace [System::Runtime::CompilerServices](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system.runtime.compilerservices/resultvaluetaskawaiter/get_iscompleted/_index.md b/english/cpp/system.runtime.compilerservices/resultvaluetaskawaiter/get_iscompleted/_index.md new file mode 100644 index 0000000000..8ea993ee5a --- /dev/null +++ b/english/cpp/system.runtime.compilerservices/resultvaluetaskawaiter/get_iscompleted/_index.md @@ -0,0 +1,23 @@ +--- +title: System::Runtime::CompilerServices::ResultValueTaskAwaiter::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::ResultValueTaskAwaiter class in C++.' +type: docs +weight: 200 +url: /cpp/system.runtime.compilerservices/resultvaluetaskawaiter/get_iscompleted/ +--- +## ResultValueTaskAwaiter::get_IsCompleted method + + + + +```cpp +bool System::Runtime::CompilerServices::ResultValueTaskAwaiter::get_IsCompleted() const +``` + +## See Also + +* Class [ResultValueTaskAwaiter](../) +* Namespace [System::Runtime::CompilerServices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.runtime.compilerservices/resultvaluetaskawaiter/getresult/_index.md b/english/cpp/system.runtime.compilerservices/resultvaluetaskawaiter/getresult/_index.md new file mode 100644 index 0000000000..ad5bad7c93 --- /dev/null +++ b/english/cpp/system.runtime.compilerservices/resultvaluetaskawaiter/getresult/_index.md @@ -0,0 +1,23 @@ +--- +title: System::Runtime::CompilerServices::ResultValueTaskAwaiter::GetResult method +linktitle: GetResult +second_title: Aspose.PDF for C++ API Reference +description: 'How to use GetResult method of System::Runtime::CompilerServices::ResultValueTaskAwaiter class in C++.' +type: docs +weight: 300 +url: /cpp/system.runtime.compilerservices/resultvaluetaskawaiter/getresult/ +--- +## ResultValueTaskAwaiter::GetResult method + + + + +```cpp +T System::Runtime::CompilerServices::ResultValueTaskAwaiter::GetResult() const +``` + +## See Also + +* Class [ResultValueTaskAwaiter](../) +* Namespace [System::Runtime::CompilerServices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.runtime.compilerservices/resultvaluetaskawaiter/oncompleted/_index.md b/english/cpp/system.runtime.compilerservices/resultvaluetaskawaiter/oncompleted/_index.md new file mode 100644 index 0000000000..a7b636888e --- /dev/null +++ b/english/cpp/system.runtime.compilerservices/resultvaluetaskawaiter/oncompleted/_index.md @@ -0,0 +1,24 @@ +--- +title: System::Runtime::CompilerServices::ResultValueTaskAwaiter::OnCompleted method +linktitle: OnCompleted +second_title: Aspose.PDF for C++ API Reference +description: 'How to use OnCompleted method of System::Runtime::CompilerServices::ResultValueTaskAwaiter class in C++.' +type: docs +weight: 400 +url: /cpp/system.runtime.compilerservices/resultvaluetaskawaiter/oncompleted/ +--- +## ResultValueTaskAwaiter::OnCompleted method + + + + +```cpp +void System::Runtime::CompilerServices::ResultValueTaskAwaiter::OnCompleted(const Action<> &continuation) +``` + +## See Also + +* Typedef [Action](../../../system/action/) +* Class [ResultValueTaskAwaiter](../) +* Namespace [System::Runtime::CompilerServices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.runtime.compilerservices/resultvaluetaskawaiter/resultvaluetaskawaiter/_index.md b/english/cpp/system.runtime.compilerservices/resultvaluetaskawaiter/resultvaluetaskawaiter/_index.md new file mode 100644 index 0000000000..6359876b18 --- /dev/null +++ b/english/cpp/system.runtime.compilerservices/resultvaluetaskawaiter/resultvaluetaskawaiter/_index.md @@ -0,0 +1,24 @@ +--- +title: System::Runtime::CompilerServices::ResultValueTaskAwaiter::ResultValueTaskAwaiter constructor +linktitle: ResultValueTaskAwaiter +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ResultValueTaskAwaiter constructor of System::Runtime::CompilerServices::ResultValueTaskAwaiter class in C++.' +type: docs +weight: 100 +url: /cpp/system.runtime.compilerservices/resultvaluetaskawaiter/resultvaluetaskawaiter/ +--- +## ResultValueTaskAwaiter::ResultValueTaskAwaiter constructor + + + + +```cpp +System::Runtime::CompilerServices::ResultValueTaskAwaiter::ResultValueTaskAwaiter(Threading::Tasks::ResultValueTask task) +``` + +## See Also + +* Class [ResultValueTask](../../../system.threading.tasks/resultvaluetask/) +* Class [ResultValueTaskAwaiter](../) +* 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 0d412f4d08..083aaf4e5f 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: 500 +weight: 800 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 index c9f41cdf3e..0133f64fd2 100644 --- a/english/cpp/system.runtime.compilerservices/taskawaiter/_index.md +++ b/english/cpp/system.runtime.compilerservices/taskawaiter/_index.md @@ -4,7 +4,7 @@ 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 +weight: 900 url: /cpp/system.runtime.compilerservices/taskawaiter/ --- ## TaskAwaiter class diff --git a/english/cpp/system.runtime.compilerservices/valuetaskawaiter/_index.md b/english/cpp/system.runtime.compilerservices/valuetaskawaiter/_index.md new file mode 100644 index 0000000000..47764d951c --- /dev/null +++ b/english/cpp/system.runtime.compilerservices/valuetaskawaiter/_index.md @@ -0,0 +1,30 @@ +--- +title: System::Runtime::CompilerServices::ValueTaskAwaiter class +linktitle: ValueTaskAwaiter +second_title: Aspose.PDF for C++ API Reference +description: 'How to use System::Runtime::CompilerServices::ValueTaskAwaiter class in C++.' +type: docs +weight: 1000 +url: /cpp/system.runtime.compilerservices/valuetaskawaiter/ +--- +## ValueTaskAwaiter class + + + + +```cpp +class ValueTaskAwaiter +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_IsCompleted](./get_iscompleted/)() const | | +| [GetResult](./getresult/)() const | | +| [OnCompleted](./oncompleted/)(const Action<>\&) | | +| [ValueTaskAwaiter](./valuetaskawaiter/)(Threading::Tasks::ValueTask) | | +## See Also + +* Namespace [System::Runtime::CompilerServices](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system.runtime.compilerservices/valuetaskawaiter/get_iscompleted/_index.md b/english/cpp/system.runtime.compilerservices/valuetaskawaiter/get_iscompleted/_index.md new file mode 100644 index 0000000000..fffed414d9 --- /dev/null +++ b/english/cpp/system.runtime.compilerservices/valuetaskawaiter/get_iscompleted/_index.md @@ -0,0 +1,23 @@ +--- +title: System::Runtime::CompilerServices::ValueTaskAwaiter::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::ValueTaskAwaiter class in C++.' +type: docs +weight: 200 +url: /cpp/system.runtime.compilerservices/valuetaskawaiter/get_iscompleted/ +--- +## ValueTaskAwaiter::get_IsCompleted method + + + + +```cpp +bool System::Runtime::CompilerServices::ValueTaskAwaiter::get_IsCompleted() const +``` + +## See Also + +* Class [ValueTaskAwaiter](../) +* Namespace [System::Runtime::CompilerServices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.runtime.compilerservices/valuetaskawaiter/getresult/_index.md b/english/cpp/system.runtime.compilerservices/valuetaskawaiter/getresult/_index.md new file mode 100644 index 0000000000..ad043ba8cb --- /dev/null +++ b/english/cpp/system.runtime.compilerservices/valuetaskawaiter/getresult/_index.md @@ -0,0 +1,23 @@ +--- +title: System::Runtime::CompilerServices::ValueTaskAwaiter::GetResult method +linktitle: GetResult +second_title: Aspose.PDF for C++ API Reference +description: 'How to use GetResult method of System::Runtime::CompilerServices::ValueTaskAwaiter class in C++.' +type: docs +weight: 300 +url: /cpp/system.runtime.compilerservices/valuetaskawaiter/getresult/ +--- +## ValueTaskAwaiter::GetResult method + + + + +```cpp +void System::Runtime::CompilerServices::ValueTaskAwaiter::GetResult() const +``` + +## See Also + +* Class [ValueTaskAwaiter](../) +* Namespace [System::Runtime::CompilerServices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.runtime.compilerservices/valuetaskawaiter/oncompleted/_index.md b/english/cpp/system.runtime.compilerservices/valuetaskawaiter/oncompleted/_index.md new file mode 100644 index 0000000000..0cacd4e7f5 --- /dev/null +++ b/english/cpp/system.runtime.compilerservices/valuetaskawaiter/oncompleted/_index.md @@ -0,0 +1,24 @@ +--- +title: System::Runtime::CompilerServices::ValueTaskAwaiter::OnCompleted method +linktitle: OnCompleted +second_title: Aspose.PDF for C++ API Reference +description: 'How to use OnCompleted method of System::Runtime::CompilerServices::ValueTaskAwaiter class in C++.' +type: docs +weight: 400 +url: /cpp/system.runtime.compilerservices/valuetaskawaiter/oncompleted/ +--- +## ValueTaskAwaiter::OnCompleted method + + + + +```cpp +void System::Runtime::CompilerServices::ValueTaskAwaiter::OnCompleted(const Action<> &continuation) +``` + +## See Also + +* Typedef [Action](../../../system/action/) +* Class [ValueTaskAwaiter](../) +* Namespace [System::Runtime::CompilerServices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.runtime.compilerservices/valuetaskawaiter/valuetaskawaiter/_index.md b/english/cpp/system.runtime.compilerservices/valuetaskawaiter/valuetaskawaiter/_index.md new file mode 100644 index 0000000000..8de49e0b09 --- /dev/null +++ b/english/cpp/system.runtime.compilerservices/valuetaskawaiter/valuetaskawaiter/_index.md @@ -0,0 +1,24 @@ +--- +title: System::Runtime::CompilerServices::ValueTaskAwaiter::ValueTaskAwaiter constructor +linktitle: ValueTaskAwaiter +second_title: Aspose.PDF for C++ API Reference +description: 'How to use ValueTaskAwaiter constructor of System::Runtime::CompilerServices::ValueTaskAwaiter class in C++.' +type: docs +weight: 100 +url: /cpp/system.runtime.compilerservices/valuetaskawaiter/valuetaskawaiter/ +--- +## ValueTaskAwaiter::ValueTaskAwaiter constructor + + + + +```cpp +System::Runtime::CompilerServices::ValueTaskAwaiter::ValueTaskAwaiter(Threading::Tasks::ValueTask task) +``` + +## See Also + +* Class [ValueTask](../../../system.threading.tasks/valuetask/) +* Class [ValueTaskAwaiter](../) +* Namespace [System::Runtime::CompilerServices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.runtime.compilerservices/yieldawaitable/_index.md b/english/cpp/system.runtime.compilerservices/yieldawaitable/_index.md new file mode 100644 index 0000000000..6045da29f9 --- /dev/null +++ b/english/cpp/system.runtime.compilerservices/yieldawaitable/_index.md @@ -0,0 +1,30 @@ +--- +title: System::Runtime::CompilerServices::YieldAwaitable class +linktitle: YieldAwaitable +second_title: Aspose.PDF for C++ API Reference +description: 'How to use System::Runtime::CompilerServices::YieldAwaitable class in C++.' +type: docs +weight: 1100 +url: /cpp/system.runtime.compilerservices/yieldawaitable/ +--- +## YieldAwaitable class + + + + +```cpp +class YieldAwaitable +``` + +## Nested classes + +* Class [YieldAwaiter](./yieldawaiter/) +## Methods + +| Method | Description | +| --- | --- | +| [GetAwaiter](./getawaiter/)() const | | +## See Also + +* Namespace [System::Runtime::CompilerServices](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system.runtime.compilerservices/yieldawaitable/getawaiter/_index.md b/english/cpp/system.runtime.compilerservices/yieldawaitable/getawaiter/_index.md new file mode 100644 index 0000000000..47f3c68ea4 --- /dev/null +++ b/english/cpp/system.runtime.compilerservices/yieldawaitable/getawaiter/_index.md @@ -0,0 +1,24 @@ +--- +title: System::Runtime::CompilerServices::YieldAwaitable::GetAwaiter method +linktitle: GetAwaiter +second_title: Aspose.PDF for C++ API Reference +description: 'How to use GetAwaiter method of System::Runtime::CompilerServices::YieldAwaitable class in C++.' +type: docs +weight: 100 +url: /cpp/system.runtime.compilerservices/yieldawaitable/getawaiter/ +--- +## YieldAwaitable::GetAwaiter method + + + + +```cpp +YieldAwaiter System::Runtime::CompilerServices::YieldAwaitable::GetAwaiter() const +``` + +## See Also + +* Class [YieldAwaiter](../yieldawaiter/) +* Class [YieldAwaitable](../) +* Namespace [System::Runtime::CompilerServices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.runtime.compilerservices/yieldawaitable/yieldawaiter/_index.md b/english/cpp/system.runtime.compilerservices/yieldawaitable/yieldawaiter/_index.md new file mode 100644 index 0000000000..f21945f1f3 --- /dev/null +++ b/english/cpp/system.runtime.compilerservices/yieldawaitable/yieldawaiter/_index.md @@ -0,0 +1,35 @@ +--- +title: System::Runtime::CompilerServices::YieldAwaitable::YieldAwaiter class +linktitle: YieldAwaiter +second_title: Aspose.PDF for C++ API Reference +description: 'How to use System::Runtime::CompilerServices::YieldAwaitable::YieldAwaiter class in C++.' +type: docs +weight: 200 +url: /cpp/system.runtime.compilerservices/yieldawaitable/yieldawaiter/ +--- +## YieldAwaiter class + + + + +```cpp +class YieldAwaiter +``` + +## Methods + +| Method | Description | +| --- | --- | +| [get_IsCompleted](./get_iscompleted/)() const | | +| [GetResult](./getresult/)() const | | +| [OnCompleted](./oncompleted/)(const Action<>\&) | | +## Fields + +| Field | Description | +| --- | --- | +| static constexpr [continueOnCapturedContext](./continueoncapturedcontext/) | | +## See Also + +* Class [YieldAwaitable](../) +* Namespace [System::Runtime::CompilerServices](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.runtime.compilerservices/yieldawaitable/yieldawaiter/continueoncapturedcontext/_index.md b/english/cpp/system.runtime.compilerservices/yieldawaitable/yieldawaiter/continueoncapturedcontext/_index.md new file mode 100644 index 0000000000..067eef09b2 --- /dev/null +++ b/english/cpp/system.runtime.compilerservices/yieldawaitable/yieldawaiter/continueoncapturedcontext/_index.md @@ -0,0 +1,24 @@ +--- +title: System::Runtime::CompilerServices::YieldAwaitable::YieldAwaiter::continueOnCapturedContext field +linktitle: continueOnCapturedContext +second_title: Aspose.PDF for C++ API Reference +description: 'How to use continueOnCapturedContext field of System::Runtime::CompilerServices::YieldAwaitable::YieldAwaiter class in C++.' +type: docs +weight: 400 +url: /cpp/system.runtime.compilerservices/yieldawaitable/yieldawaiter/continueoncapturedcontext/ +--- +## continueOnCapturedContext field + + + + +```cpp +static bool System::Runtime::CompilerServices::YieldAwaitable::YieldAwaiter::continueOnCapturedContext +``` + +## See Also + +* Class [YieldAwaiter](../) +* Class [YieldAwaitable](../../) +* Namespace [System::Runtime::CompilerServices](../../../) +* Library [Aspose.PDF for C++](../../../../) diff --git a/english/cpp/system.runtime.compilerservices/yieldawaitable/yieldawaiter/get_iscompleted/_index.md b/english/cpp/system.runtime.compilerservices/yieldawaitable/yieldawaiter/get_iscompleted/_index.md new file mode 100644 index 0000000000..03250da7a3 --- /dev/null +++ b/english/cpp/system.runtime.compilerservices/yieldawaitable/yieldawaiter/get_iscompleted/_index.md @@ -0,0 +1,24 @@ +--- +title: System::Runtime::CompilerServices::YieldAwaitable::YieldAwaiter::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::YieldAwaitable::YieldAwaiter class in C++.' +type: docs +weight: 100 +url: /cpp/system.runtime.compilerservices/yieldawaitable/yieldawaiter/get_iscompleted/ +--- +## YieldAwaiter::get_IsCompleted method + + + + +```cpp +bool System::Runtime::CompilerServices::YieldAwaitable::YieldAwaiter::get_IsCompleted() const +``` + +## See Also + +* Class [YieldAwaiter](../) +* Class [YieldAwaitable](../../) +* Namespace [System::Runtime::CompilerServices](../../../) +* Library [Aspose.PDF for C++](../../../../) diff --git a/english/cpp/system.runtime.compilerservices/yieldawaitable/yieldawaiter/getresult/_index.md b/english/cpp/system.runtime.compilerservices/yieldawaitable/yieldawaiter/getresult/_index.md new file mode 100644 index 0000000000..a8dc1496a4 --- /dev/null +++ b/english/cpp/system.runtime.compilerservices/yieldawaitable/yieldawaiter/getresult/_index.md @@ -0,0 +1,24 @@ +--- +title: System::Runtime::CompilerServices::YieldAwaitable::YieldAwaiter::GetResult method +linktitle: GetResult +second_title: Aspose.PDF for C++ API Reference +description: 'How to use GetResult method of System::Runtime::CompilerServices::YieldAwaitable::YieldAwaiter class in C++.' +type: docs +weight: 200 +url: /cpp/system.runtime.compilerservices/yieldawaitable/yieldawaiter/getresult/ +--- +## YieldAwaiter::GetResult method + + + + +```cpp +void System::Runtime::CompilerServices::YieldAwaitable::YieldAwaiter::GetResult() const +``` + +## See Also + +* Class [YieldAwaiter](../) +* Class [YieldAwaitable](../../) +* Namespace [System::Runtime::CompilerServices](../../../) +* Library [Aspose.PDF for C++](../../../../) diff --git a/english/cpp/system.runtime.compilerservices/yieldawaitable/yieldawaiter/oncompleted/_index.md b/english/cpp/system.runtime.compilerservices/yieldawaitable/yieldawaiter/oncompleted/_index.md new file mode 100644 index 0000000000..5519f221be --- /dev/null +++ b/english/cpp/system.runtime.compilerservices/yieldawaitable/yieldawaiter/oncompleted/_index.md @@ -0,0 +1,25 @@ +--- +title: System::Runtime::CompilerServices::YieldAwaitable::YieldAwaiter::OnCompleted method +linktitle: OnCompleted +second_title: Aspose.PDF for C++ API Reference +description: 'How to use OnCompleted method of System::Runtime::CompilerServices::YieldAwaitable::YieldAwaiter class in C++.' +type: docs +weight: 300 +url: /cpp/system.runtime.compilerservices/yieldawaitable/yieldawaiter/oncompleted/ +--- +## YieldAwaiter::OnCompleted method + + + + +```cpp +void System::Runtime::CompilerServices::YieldAwaitable::YieldAwaiter::OnCompleted(const Action<> &continuation) +``` + +## See Also + +* Typedef [Action](../../../../system/action/) +* Class [YieldAwaiter](../) +* Class [YieldAwaitable](../../) +* Namespace [System::Runtime::CompilerServices](../../../) +* Library [Aspose.PDF for C++](../../../../) diff --git a/english/cpp/system.runtime.interopservices/marshal/gethrforexception/_index.md b/english/cpp/system.runtime.interopservices/marshal/gethrforexception/_index.md index a9f076df34..f187224fc4 100644 --- a/english/cpp/system.runtime.interopservices/marshal/gethrforexception/_index.md +++ b/english/cpp/system.runtime.interopservices/marshal/gethrforexception/_index.md @@ -19,7 +19,7 @@ static int32_t System::Runtime::InteropServices::Marshal::GetHRForException(cons | Parameter | Type | Description | | --- | --- | --- | -| exc | const System::Exception\& | Exception to get HResult for. | +| exc | const System::Exception\& | [Exception](../../../system/exception/) to get HResult for. | ### ReturnValue diff --git a/english/cpp/system.security.cryptography.x509certificates/x509certificate/ptr/_index.md b/english/cpp/system.security.cryptography.x509certificates/x509certificate/ptr/_index.md index 46020845d2..6bc9d30955 100644 --- a/english/cpp/system.security.cryptography.x509certificates/x509certificate/ptr/_index.md +++ b/english/cpp/system.security.cryptography.x509certificates/x509certificate/ptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.security.cryptography.x509certificates/x509certificate/ptr/ Pointer type. ```cpp -SharedPtr System::Security::Cryptography::X509Certificates::X509Certificate::Ptr +typedef SharedPtr System::Security::Cryptography::X509Certificates::X509Certificate::Ptr ``` ## See Also diff --git a/english/cpp/system.security.cryptography.x509certificates/x509certificate2collectionptr/_index.md b/english/cpp/system.security.cryptography.x509certificates/x509certificate2collectionptr/_index.md index c3c0cb1d91..dca713b012 100644 --- a/english/cpp/system.security.cryptography.x509certificates/x509certificate2collectionptr/_index.md +++ b/english/cpp/system.security.cryptography.x509certificates/x509certificate2collectionptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.security.cryptography.x509certificates/x509certificate2collecti Pointer to collection of X509 certificates. This type is a pointer to manage other object's deletion. It should be allocated on stack and passed to functions either by value or by const reference. ```cpp -class X509Certificate2CollectionPtr : public System::SmartPtr +class X509Certificate2CollectionPtr : public System::SmartPtr ``` ## Methods diff --git a/english/cpp/system.security.cryptography.x509certificates/x509certificatecollectionptr/_index.md b/english/cpp/system.security.cryptography.x509certificates/x509certificatecollectionptr/_index.md index 475223c367..dd974f304d 100644 --- a/english/cpp/system.security.cryptography.x509certificates/x509certificatecollectionptr/_index.md +++ b/english/cpp/system.security.cryptography.x509certificates/x509certificatecollectionptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.security.cryptography.x509certificates/x509certificatecollectio Pointer to collection of X509 certificates. This type is a pointer to manage other object's deletion. It should be allocated on stack and passed to functions either by value or by const reference. ```cpp -class X509CertificateCollectionPtr : public System::SmartPtr +class X509CertificateCollectionPtr : public System::SmartPtr ``` ## Methods diff --git a/english/cpp/system.security.cryptography.x509certificates/x509extensioncollection/_index.md b/english/cpp/system.security.cryptography.x509certificates/x509extensioncollection/_index.md index dc01ac5ec3..1d84c5056c 100644 --- a/english/cpp/system.security.cryptography.x509certificates/x509extensioncollection/_index.md +++ b/english/cpp/system.security.cryptography.x509certificates/x509extensioncollection/_index.md @@ -21,6 +21,7 @@ class X509ExtensionCollection : public System::Collections::Generic::List System::Collections::Generic::List>::idx_get(int index) const override +``` + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [X509Extension](../../x509extension/) +* Class [X509ExtensionCollection](../) +* Namespace [System::Security::Cryptography::X509Certificates](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.security.cryptography.x509certificates/x509extensioncollectionptr/_index.md b/english/cpp/system.security.cryptography.x509certificates/x509extensioncollectionptr/_index.md index dfdac0db1d..3db8612834 100644 --- a/english/cpp/system.security.cryptography.x509certificates/x509extensioncollectionptr/_index.md +++ b/english/cpp/system.security.cryptography.x509certificates/x509extensioncollectionptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.security.cryptography.x509certificates/x509extensioncollectionp Pointer to collection of X509 extensions. This type is a pointer to manage other object's deletion. It should be allocated on stack and passed to functions either by value or by const reference. ```cpp -class X509ExtensionCollectionPtr : public System::SmartPtr +class X509ExtensionCollectionPtr : public System::SmartPtr ``` ## Methods diff --git a/english/cpp/system.security.cryptography.x509certificates/x509extensionenumerator/basetype/_index.md b/english/cpp/system.security.cryptography.x509certificates/x509extensionenumerator/basetype/_index.md index f38c81873b..f05909ef44 100644 --- a/english/cpp/system.security.cryptography.x509certificates/x509extensionenumerator/basetype/_index.md +++ b/english/cpp/system.security.cryptography.x509certificates/x509extensionenumerator/basetype/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.security.cryptography.x509certificates/x509extensionenumerator/ Parent type. ```cpp -System::Collections::Generic::IEnumerator > System::Security::Cryptography::X509Certificates::X509ExtensionEnumerator::BaseType +typedef System::Collections::Generic::IEnumerator > System::Security::Cryptography::X509Certificates::X509ExtensionEnumerator::BaseType ``` ## See Also diff --git a/english/cpp/system.security.cryptography.x509certificates/x509extensionenumerator/thistype/_index.md b/english/cpp/system.security.cryptography.x509certificates/x509extensionenumerator/thistype/_index.md index dc73acfdd5..7692a01722 100644 --- a/english/cpp/system.security.cryptography.x509certificates/x509extensionenumerator/thistype/_index.md +++ b/english/cpp/system.security.cryptography.x509certificates/x509extensionenumerator/thistype/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.security.cryptography.x509certificates/x509extensionenumerator/ This type. ```cpp -X509ExtensionEnumerator System::Security::Cryptography::X509Certificates::X509ExtensionEnumerator::ThisType +typedef X509ExtensionEnumerator System::Security::Cryptography::X509Certificates::X509ExtensionEnumerator::ThisType ``` ## See Also diff --git a/english/cpp/system.security.cryptography/cspkeycontainerinfo/_index.md b/english/cpp/system.security.cryptography/cspkeycontainerinfo/_index.md index 3e670b9289..39fc3c28a8 100644 --- a/english/cpp/system.security.cryptography/cspkeycontainerinfo/_index.md +++ b/english/cpp/system.security.cryptography/cspkeycontainerinfo/_index.md @@ -25,7 +25,7 @@ class CspKeyContainerInfo : public virtual System::Object | [get_Exportable](./get_exportable/)() const | Gets a flag indicating whether a key can be exported from a container. | | [get_HardwareDevice](./get_hardwaredevice/)() const | Gets a flag indicating whether a key is a hardware key. | | [get_KeyContainerName](./get_keycontainername/)() const | Gets a key container name. | -| [get_KeyNumber](./get_keynumber/)() const | Gets a KeyNumber object. | +| [get_KeyNumber](./get_keynumber/)() const | Gets a [KeyNumber](../keynumber/) object. | | [get_MachineKeyStore](./get_machinekeystore/)() const | Gets a flag indicating whether a key is loaded from machine key store. | | [get_Protected](./get_protected/)() const | Gets a flag indicating whether a key is protected from copy. | | [get_ProviderName](./get_providername/)() const | Gets provider name. | diff --git a/english/cpp/system.security.cryptography/cspkeycontainerinfo/get_keynumber/_index.md b/english/cpp/system.security.cryptography/cspkeycontainerinfo/get_keynumber/_index.md index f1519e9d6c..59567f5d83 100644 --- a/english/cpp/system.security.cryptography/cspkeycontainerinfo/get_keynumber/_index.md +++ b/english/cpp/system.security.cryptography/cspkeycontainerinfo/get_keynumber/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.security.cryptography/cspkeycontainerinfo/get_keynumber/ ## CspKeyContainerInfo::get_KeyNumber method -Gets a KeyNumber object. +Gets a [KeyNumber](../../keynumber/) object. ```cpp SharedPtr System::Security::Cryptography::CspKeyContainerInfo::get_KeyNumber() const diff --git a/english/cpp/system.security.cryptography/md5/ptr/_index.md b/english/cpp/system.security.cryptography/md5/ptr/_index.md index 0da64db839..13bbec3049 100644 --- a/english/cpp/system.security.cryptography/md5/ptr/_index.md +++ b/english/cpp/system.security.cryptography/md5/ptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.security.cryptography/md5/ptr/ RTTI information. ```cpp -SharedPtr System::Security::Cryptography::MD5::ptr +typedef SharedPtr System::Security::Cryptography::MD5::ptr ``` ## Remarks diff --git a/english/cpp/system.text.regularexpressions/capturecollection/_index.md b/english/cpp/system.text.regularexpressions/capturecollection/_index.md index 168b42d4c5..66cd4783a7 100644 --- a/english/cpp/system.text.regularexpressions/capturecollection/_index.md +++ b/english/cpp/system.text.regularexpressions/capturecollection/_index.md @@ -26,12 +26,15 @@ class CaptureCollection : public System::Collections::Generic::List | [get_Count](./get_count/)() const override | Gets number of captures. | | [get_IsReadOnly](./get_isreadonly/)() const override | Marks collection as read-only. | | [get_IsSynchronized](./get_issynchronized/)() const | Marks collection as unsynchronized. | +| [idx_get](./idx_get/)(int) const override | [Capture](../capture/) accessor. | +| [operator[]](./operator[]/)(int) | [Capture](../capture/) accessor. | +| [operator[]](./operator[]/)(int) const | [Capture](../capture/) accessor. | | [Remove](./remove/)(const CapturePtr\&) override | Disables collection ammendment. | ## Typedefs | Typedef | Description | | --- | --- | -| [Base](./base/) | Base type. | +| [Base](./base/) | [Base](./base/) type. | ## See Also * Class [List](../../system.collections.generic/list/) diff --git a/english/cpp/system.text.regularexpressions/capturecollection/base/_index.md b/english/cpp/system.text.regularexpressions/capturecollection/base/_index.md index 786b07b325..194b8cea71 100644 --- a/english/cpp/system.text.regularexpressions/capturecollection/base/_index.md +++ b/english/cpp/system.text.regularexpressions/capturecollection/base/_index.md @@ -4,16 +4,16 @@ linktitle: Base second_title: Aspose.PDF for C++ API Reference description: 'System::Text::RegularExpressions::CaptureCollection::Base typedef. Base type in C++.' type: docs -weight: 800 +weight: 1000 url: /cpp/system.text.regularexpressions/capturecollection/base/ --- ## Base typedef -Base type. +[Base](./) type. ```cpp -System::Collections::Generic::List System::Text::RegularExpressions::CaptureCollection::Base +typedef System::Collections::Generic::List System::Text::RegularExpressions::CaptureCollection::Base ``` ## See Also diff --git a/english/cpp/system.text.regularexpressions/capturecollection/idx_get/_index.md b/english/cpp/system.text.regularexpressions/capturecollection/idx_get/_index.md new file mode 100644 index 0000000000..c699d55c06 --- /dev/null +++ b/english/cpp/system.text.regularexpressions/capturecollection/idx_get/_index.md @@ -0,0 +1,24 @@ +--- +title: System::Text::RegularExpressions::CaptureCollection::idx_get method +linktitle: idx_get +second_title: Aspose.PDF for C++ API Reference +description: 'System::Text::RegularExpressions::CaptureCollection::idx_get method. Capture accessor in C++.' +type: docs +weight: 700 +url: /cpp/system.text.regularexpressions/capturecollection/idx_get/ +--- +## CaptureCollection::idx_get method + + +[Capture](../../capture/) accessor. + +```cpp +CapturePtr System::Collections::Generic::List::idx_get(int index) const override +``` + +## See Also + +* Typedef [CapturePtr](../../captureptr/) +* Class [CaptureCollection](../) +* Namespace [System::Text::RegularExpressions](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.text.regularexpressions/capturecollection/operator[]/_index.md b/english/cpp/system.text.regularexpressions/capturecollection/operator[]/_index.md new file mode 100644 index 0000000000..6cd8b0fdd3 --- /dev/null +++ b/english/cpp/system.text.regularexpressions/capturecollection/operator[]/_index.md @@ -0,0 +1,37 @@ +--- +title: System::Text::RegularExpressions::CaptureCollection::operator[] method +linktitle: operator[] +second_title: Aspose.PDF for C++ API Reference +description: 'System::Text::RegularExpressions::CaptureCollection::operator[] method. Capture accessor in C++.' +type: docs +weight: 800 +url: /cpp/system.text.regularexpressions/capturecollection/operator[]/ +--- +## CaptureCollection::operator[](int) method + + +[Capture](../../capture/) accessor. + +```cpp +vector_t::reference System::Collections::Generic::List::operator[](int index) +``` + +## See Also + +* Class [CaptureCollection](../) +* Namespace [System::Text::RegularExpressions](../../) +* Library [Aspose.PDF for C++](../../../) +## CaptureCollection::operator[](int) const method + + +[Capture](../../capture/) accessor. + +```cpp +vector_t::const_reference System::Collections::Generic::List::operator[](int index) const +``` + +## See Also + +* Class [CaptureCollection](../) +* Namespace [System::Text::RegularExpressions](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.text.regularexpressions/capturecollection/remove/_index.md b/english/cpp/system.text.regularexpressions/capturecollection/remove/_index.md index afd2f37729..de54a4e8c6 100644 --- a/english/cpp/system.text.regularexpressions/capturecollection/remove/_index.md +++ b/english/cpp/system.text.regularexpressions/capturecollection/remove/_index.md @@ -4,7 +4,7 @@ linktitle: Remove second_title: Aspose.PDF for C++ API Reference description: 'System::Text::RegularExpressions::CaptureCollection::Remove method. Disables collection ammendment in C++.' type: docs -weight: 700 +weight: 900 url: /cpp/system.text.regularexpressions/capturecollection/remove/ --- ## CaptureCollection::Remove method diff --git a/english/cpp/system.text.regularexpressions/groupcollection/_index.md b/english/cpp/system.text.regularexpressions/groupcollection/_index.md index 833d30e8b1..c5ff86c5c1 100644 --- a/english/cpp/system.text.regularexpressions/groupcollection/_index.md +++ b/english/cpp/system.text.regularexpressions/groupcollection/_index.md @@ -30,12 +30,14 @@ class GroupCollection : public System::Collections::Generic::List | [idx_get](./idx_get/)(int) const override | [Group](../group/) accessor. | | [IsReadOnly](./isreadonly/)() const | Marks collection as read-only. | | [operator[]](./operator[]/)(const String\&) const | [Group](../group/) accessor. | +| [operator[]](./operator[]/)(int) | [Group](../group/) accessor. | +| [operator[]](./operator[]/)(int) const | [Group](../group/) accessor. | | [Remove](./remove/)(const GroupPtr\&) override | Disables removing element from collection. | ## Typedefs | Typedef | Description | | --- | --- | -| [Base](./base/) | Base class. | +| [Base](./base/) | [Base](./base/) class. | ## See Also * Class [List](../../system.collections.generic/list/) diff --git a/english/cpp/system.text.regularexpressions/groupcollection/base/_index.md b/english/cpp/system.text.regularexpressions/groupcollection/base/_index.md index f847a10dfc..1c1d19c6b1 100644 --- a/english/cpp/system.text.regularexpressions/groupcollection/base/_index.md +++ b/english/cpp/system.text.regularexpressions/groupcollection/base/_index.md @@ -10,10 +10,10 @@ url: /cpp/system.text.regularexpressions/groupcollection/base/ ## Base typedef -Base class. +[Base](./) class. ```cpp -System::Collections::Generic::List System::Text::RegularExpressions::GroupCollection::Base +typedef System::Collections::Generic::List System::Text::RegularExpressions::GroupCollection::Base ``` ## See Also diff --git a/english/cpp/system.text.regularexpressions/groupcollection/operator[]/_index.md b/english/cpp/system.text.regularexpressions/groupcollection/operator[]/_index.md index 1518fd1794..7fbd92f7d6 100644 --- a/english/cpp/system.text.regularexpressions/groupcollection/operator[]/_index.md +++ b/english/cpp/system.text.regularexpressions/groupcollection/operator[]/_index.md @@ -7,7 +7,7 @@ type: docs weight: 800 url: /cpp/system.text.regularexpressions/groupcollection/operator[]/ --- -## GroupCollection::operator[] method +## GroupCollection::operator[](const String\&) const method [Group](../../group/) accessor. @@ -32,3 +32,31 @@ GroupPtr System::Text::RegularExpressions::GroupCollection::operator[](const Str * Class [GroupCollection](../) * Namespace [System::Text::RegularExpressions](../../) * Library [Aspose.PDF for C++](../../../) +## GroupCollection::operator[](int) method + + +[Group](../../group/) accessor. + +```cpp +vector_t::reference System::Collections::Generic::List::operator[](int index) +``` + +## See Also + +* Class [GroupCollection](../) +* Namespace [System::Text::RegularExpressions](../../) +* Library [Aspose.PDF for C++](../../../) +## GroupCollection::operator[](int) const method + + +[Group](../../group/) accessor. + +```cpp +vector_t::const_reference System::Collections::Generic::List::operator[](int index) const +``` + +## See Also + +* Class [GroupCollection](../) +* Namespace [System::Text::RegularExpressions](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.text.regularexpressions/groupcollectionptr/_index.md b/english/cpp/system.text.regularexpressions/groupcollectionptr/_index.md index 75958b9151..0cdeed854b 100644 --- a/english/cpp/system.text.regularexpressions/groupcollectionptr/_index.md +++ b/english/cpp/system.text.regularexpressions/groupcollectionptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.text.regularexpressions/groupcollectionptr/ [Group](../group/) collection pointer. This type is a pointer to manage other object's deletion. It should be allocated on stack and passed to functions either by value or by const reference. ```cpp -class GroupCollectionPtr : public System::SmartPtr +class GroupCollectionPtr : public System::SmartPtr ``` ## Methods diff --git a/english/cpp/system.text/encoding/ptr/_index.md b/english/cpp/system.text/encoding/ptr/_index.md index 311c4e7285..5426c46e54 100644 --- a/english/cpp/system.text/encoding/ptr/_index.md +++ b/english/cpp/system.text/encoding/ptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.text/encoding/ptr/ RTTI. ```cpp -System::SharedPtr System::Text::Encoding::Ptr +typedef System::SharedPtr System::Text::Encoding::Ptr ``` ## Remarks diff --git a/english/cpp/system.text/icudecoder/_index.md b/english/cpp/system.text/icudecoder/_index.md index 1b016513e6..51b080150d 100644 --- a/english/cpp/system.text/icudecoder/_index.md +++ b/english/cpp/system.text/icudecoder/_index.md @@ -35,7 +35,7 @@ class ICUDecoder : public System::Text::Decoder | Typedef | Description | | --- | --- | -| [Base](./base/) | Base type. | +| [Base](./base/) | [Base](./base/) type. | ## See Also * Class [Decoder](../decoder/) diff --git a/english/cpp/system.text/icudecoder/base/_index.md b/english/cpp/system.text/icudecoder/base/_index.md index fdf21c5c3a..f9c0f7a837 100644 --- a/english/cpp/system.text/icudecoder/base/_index.md +++ b/english/cpp/system.text/icudecoder/base/_index.md @@ -10,10 +10,10 @@ url: /cpp/system.text/icudecoder/base/ ## Base typedef -Base type. +[Base](./) type. ```cpp -Decoder System::Text::ICUDecoder::Base +typedef Decoder System::Text::ICUDecoder::Base ``` ## See Also diff --git a/english/cpp/system.text/icuencoder/_index.md b/english/cpp/system.text/icuencoder/_index.md index d29944e35e..f9f4d626fa 100644 --- a/english/cpp/system.text/icuencoder/_index.md +++ b/english/cpp/system.text/icuencoder/_index.md @@ -33,7 +33,7 @@ class ICUEncoder : public System::Text::Encoder | Typedef | Description | | --- | --- | -| [Base](./base/) | Base type. | +| [Base](./base/) | [Base](./base/) type. | ## See Also * Class [Encoder](../encoder/) diff --git a/english/cpp/system.text/icuencoder/base/_index.md b/english/cpp/system.text/icuencoder/base/_index.md index 83e282cb6c..99d13f1aec 100644 --- a/english/cpp/system.text/icuencoder/base/_index.md +++ b/english/cpp/system.text/icuencoder/base/_index.md @@ -10,10 +10,10 @@ url: /cpp/system.text/icuencoder/base/ ## Base typedef -Base type. +[Base](./) type. ```cpp -Encoder System::Text::ICUEncoder::Base +typedef Encoder System::Text::ICUEncoder::Base ``` ## See Also diff --git a/english/cpp/system.threading.tasks/_index.md b/english/cpp/system.threading.tasks/_index.md index d73826e547..cacf33c62f 100644 --- a/english/cpp/system.threading.tasks/_index.md +++ b/english/cpp/system.threading.tasks/_index.md @@ -15,8 +15,10 @@ url: /cpp/system.threading.tasks/ | Class | Description | | --- | --- | | [ResultTask](./resulttask/) | A [Task](./task/) specialization that returns a result value upon completion. | +| [ResultValueTask](./resultvaluetask/) | Represents a hybrid task-like type that can wrap either a direct result value or a [ResultTask](./resulttask/). | | [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. | +| [ValueTask](./valuetask/) | Provides an awaitable result of an asynchronous operation. | ## Enums | Enum | Description | @@ -35,7 +37,9 @@ url: /cpp/system.threading.tasks/ | 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] | +| 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] | +| Yield | 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 index c6fd6b4b84..0a8305ca02 100644 --- a/english/cpp/system.threading.tasks/delay/_index.md +++ b/english/cpp/system.threading.tasks/delay/_index.md @@ -4,7 +4,7 @@ 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 +weight: 700 url: /cpp/system.threading.tasks/delay/ --- ## System::Threading::Tasks::Delay(int32_t) method diff --git a/english/cpp/system.threading.tasks/dispatchcurrentcontext/_index.md b/english/cpp/system.threading.tasks/dispatchcurrentcontext/_index.md index ce56b82aca..06c007b5ba 100644 --- a/english/cpp/system.threading.tasks/dispatchcurrentcontext/_index.md +++ b/english/cpp/system.threading.tasks/dispatchcurrentcontext/_index.md @@ -4,7 +4,7 @@ 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 +weight: 900 url: /cpp/system.threading.tasks/dispatchcurrentcontext/ --- ## System::Threading::Tasks::DispatchCurrentContext method diff --git a/english/cpp/system.threading.tasks/fromexception/_index.md b/english/cpp/system.threading.tasks/fromexception/_index.md index 772211b55d..4d46c649e2 100644 --- a/english/cpp/system.threading.tasks/fromexception/_index.md +++ b/english/cpp/system.threading.tasks/fromexception/_index.md @@ -4,7 +4,7 @@ linktitle: FromException second_title: Aspose.PDF for C++ API Reference description: 'How to use FromException method of class in C++.' type: docs -weight: 800 +weight: 1000 url: /cpp/system.threading.tasks/fromexception/ --- ## System::Threading::Tasks::FromException(const Exception\&) method diff --git a/english/cpp/system.threading.tasks/fromresult/_index.md b/english/cpp/system.threading.tasks/fromresult/_index.md index 746ceb2ceb..93a660146b 100644 --- a/english/cpp/system.threading.tasks/fromresult/_index.md +++ b/english/cpp/system.threading.tasks/fromresult/_index.md @@ -4,7 +4,7 @@ linktitle: FromResult second_title: Aspose.PDF for C++ API Reference description: 'How to use FromResult method of class in C++.' type: docs -weight: 1000 +weight: 1200 url: /cpp/system.threading.tasks/fromresult/ --- ## System::Threading::Tasks::FromResult method diff --git a/english/cpp/system.threading.tasks/resulttask/_index.md b/english/cpp/system.threading.tasks/resulttask/_index.md index d0b75c209b..167f3d275c 100644 --- a/english/cpp/system.threading.tasks/resulttask/_index.md +++ b/english/cpp/system.threading.tasks/resulttask/_index.md @@ -26,16 +26,17 @@ templateclass ResultTask : public System::Threading::Tasks::Task | --- | --- | | [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. | +| [get_Result](./get_result/)() const | 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. | +| [ResultTask](./resulttask/)(const T\&) | Internal constructor for creating result tasks with specified result. | | [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 +Represents an asynchronous operation that produces a result, similar to [System.Threading.Tasks.Task](../task/) in .NET ## See Also * Class [Task](../task/) diff --git a/english/cpp/system.threading.tasks/resulttask/configureawait/_index.md b/english/cpp/system.threading.tasks/resulttask/configureawait/_index.md index 0957e55c2f..0d7e921205 100644 --- a/english/cpp/system.threading.tasks/resulttask/configureawait/_index.md +++ b/english/cpp/system.threading.tasks/resulttask/configureawait/_index.md @@ -23,7 +23,7 @@ Runtime::CompilerServices::ConfiguredResultTaskAwaitable System::Threading::T ### ReturnValue -Runtime::CompilerServices::ConfiguredResultTaskAwaitable A configured awaitable for the result +[Runtime::CompilerServices::ConfiguredResultTaskAwaitable](../../../system.runtime.compilerservices/configuredresulttaskawaitable/) A configured awaitable for the result ## Remarks diff --git a/english/cpp/system.threading.tasks/resulttask/continuewith/_index.md b/english/cpp/system.threading.tasks/resulttask/continuewith/_index.md index 3168fcde35..fa4c20ebf3 100644 --- a/english/cpp/system.threading.tasks/resulttask/continuewith/_index.md +++ b/english/cpp/system.threading.tasks/resulttask/continuewith/_index.md @@ -19,11 +19,11 @@ TaskPtr System::Threading::Tasks::ResultTask::ContinueWith(const Action\>\& | Action to execute when this task completes, receiving this result task | +| continuationAction | const Action\\>\& | [Action](../../../system/action/) to execute when this task completes, receiving this result task | ### ReturnValue -TaskPtr A new task representing the continuation +[TaskPtr](../../../system/taskptr/) A new task representing the continuation ## Remarks diff --git a/english/cpp/system.threading.tasks/resulttask/get_result/_index.md b/english/cpp/system.threading.tasks/resulttask/get_result/_index.md index 5a8a5c5ffc..fd3a394386 100644 --- a/english/cpp/system.threading.tasks/resulttask/get_result/_index.md +++ b/english/cpp/system.threading.tasks/resulttask/get_result/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.threading.tasks/resulttask/get_result/ Gets the result of the asynchronous operation. ```cpp -T System::Threading::Tasks::ResultTask::get_Result() +T System::Threading::Tasks::ResultTask::get_Result() const ``` diff --git a/english/cpp/system.threading.tasks/resulttask/getawaiter/_index.md b/english/cpp/system.threading.tasks/resulttask/getawaiter/_index.md index c17713aa83..fffed8429e 100644 --- a/english/cpp/system.threading.tasks/resulttask/getawaiter/_index.md +++ b/english/cpp/system.threading.tasks/resulttask/getawaiter/_index.md @@ -19,7 +19,7 @@ Runtime::CompilerServices::ResultTaskAwaiter System::Threading::Tasks::Result ### ReturnValue -Runtime::CompilerServices::ResultTaskAwaiter An awaiter instance that returns the result +[Runtime::CompilerServices::ResultTaskAwaiter](../../../system.runtime.compilerservices/resulttaskawaiter/) An awaiter instance that returns the result ## Remarks diff --git a/english/cpp/system.threading.tasks/resulttask/resulttask/_index.md b/english/cpp/system.threading.tasks/resulttask/resulttask/_index.md index e91da37299..98d2f083ae 100644 --- a/english/cpp/system.threading.tasks/resulttask/resulttask/_index.md +++ b/english/cpp/system.threading.tasks/resulttask/resulttask/_index.md @@ -45,3 +45,17 @@ System::Threading::Tasks::ResultTask::ResultTask(const Func &function) * Class [ResultTask](../) * Namespace [System::Threading::Tasks](../../) * Library [Aspose.PDF for C++](../../../) +## ResultTask::ResultTask(const T\&) constructor + + +Internal constructor for creating result tasks with specified result. + +```cpp +System::Threading::Tasks::ResultTask::ResultTask(const T &result) +``` + +## See Also + +* Class [ResultTask](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/resultvaluetask/_index.md b/english/cpp/system.threading.tasks/resultvaluetask/_index.md new file mode 100644 index 0000000000..135017f0bc --- /dev/null +++ b/english/cpp/system.threading.tasks/resultvaluetask/_index.md @@ -0,0 +1,51 @@ +--- +title: System::Threading::Tasks::ResultValueTask class +linktitle: ResultValueTask +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::ResultValueTask class. Represents a hybrid task-like type that can wrap either a direct result value or a ResultTask in C++.' +type: docs +weight: 200 +url: /cpp/system.threading.tasks/resultvaluetask/ +--- +## ResultValueTask class + + +Represents a hybrid task-like type that can wrap either a direct result value or a [ResultTask](../resulttask/). + +```cpp +templateclass ResultValueTask : public System::IEquatable>, + public System::Details::BoxableObjectBase +``` + + +| Parameter | Description | +| --- | --- | +| T | The type of the result produced by the task. | +## Methods + +| Method | Description | +| --- | --- | +| [AsTask](./astask/)() const | Converts this [ResultValueTask](./) to a shared pointer to [ResultTask](../resulttask/). | +| [ConfigureAwait](./configureawait/)(bool) const | Configures an awaiter for this task. | +| [Equals](./equals/)(ResultValueTask) override | Determines whether this instance equals another [ResultValueTask](./) instance. | +| [Equals](./equals/)(System::SharedPtr\) override | Determines whether this instance equals another object. | +| [get_IsCanceled](./get_iscanceled/)() const | Gets a value indicating whether the task completed due to being canceled. | +| [get_IsCompleted](./get_iscompleted/)() const | Gets a value indicating whether the task has completed. | +| [get_IsCompletedSuccessfully](./get_iscompletedsuccessfully/)() const | Gets a value indicating whether the task completed successfully. | +| [get_IsFaulted](./get_isfaulted/)() const | Gets a value indicating whether the task completed due to an unhandled exception. | +| [get_Result](./get_result/)() const | Gets the result of the completed task. | +| [GetAwaiter](./getawaiter/)() const | Gets an awaiter for this task to support await expressions. | +| [operator!=](./operator!=/)(const ResultValueTask\&) const | Inequality operator for [ResultValueTask](./). | +| [operator==](./operator==/)(const ResultValueTask\&) const | Equality operator for [ResultValueTask](./). | +| [ResultValueTask](./resultvaluetask/)() | Constructs an empty, uninitialized [ResultValueTask](./). | +| [ResultValueTask](./resultvaluetask/)(const T\&) | Constructs a completed [ResultValueTask](./) with the specified result. | +| [ResultValueTask](./resultvaluetask/)(const RTaskPtr\\&) | Constructs a [ResultValueTask](./) from a shared pointer to a [ResultTask](../resulttask/). | +## Remarks + + +[ResultValueTask](./) combines the benefits of [ValueTask](../valuetask/) (reduced allocations for synchronous results) with the ability to wrap existing [ResultTask](../resulttask/) objects. It provides awaitable interface and various task status inspection methods. +## See Also + +* Class [IEquatable](../../system/iequatable/) +* Namespace [System::Threading::Tasks](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system.threading.tasks/resultvaluetask/astask/_index.md b/english/cpp/system.threading.tasks/resultvaluetask/astask/_index.md new file mode 100644 index 0000000000..ce2055cc49 --- /dev/null +++ b/english/cpp/system.threading.tasks/resultvaluetask/astask/_index.md @@ -0,0 +1,34 @@ +--- +title: System::Threading::Tasks::ResultValueTask::AsTask method +linktitle: AsTask +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::ResultValueTask::AsTask method. Converts this ResultValueTask to a shared pointer to ResultTask in C++.' +type: docs +weight: 200 +url: /cpp/system.threading.tasks/resultvaluetask/astask/ +--- +## ResultValueTask::AsTask method + + +Converts this [ResultValueTask](../) to a shared pointer to [ResultTask](../../resulttask/). + +```cpp +RTaskPtr System::Threading::Tasks::ResultValueTask::AsTask() const +``` + + +### ReturnValue + +[RTaskPtr](../../../system/rtaskptr/) A shared pointer to a [ResultTask](../../resulttask/) that represents this operation. +## Remarks + + + +If the [ResultValueTask](../) contains a direct result, creates a completed task with that result. If it contains a task, returns a shared pointer to that task. + +## See Also + +* Typedef [RTaskPtr](../../../system/rtaskptr/) +* Class [ResultValueTask](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/resultvaluetask/configureawait/_index.md b/english/cpp/system.threading.tasks/resultvaluetask/configureawait/_index.md new file mode 100644 index 0000000000..9cee5a77ae --- /dev/null +++ b/english/cpp/system.threading.tasks/resultvaluetask/configureawait/_index.md @@ -0,0 +1,33 @@ +--- +title: System::Threading::Tasks::ResultValueTask::ConfigureAwait method +linktitle: ConfigureAwait +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::ResultValueTask::ConfigureAwait method. Configures an awaiter for this task in C++.' +type: docs +weight: 300 +url: /cpp/system.threading.tasks/resultvaluetask/configureawait/ +--- +## ResultValueTask::ConfigureAwait method + + +Configures an awaiter for this task. + +```cpp +Runtime::CompilerServices::ConfiguredResultValueTaskAwaitable System::Threading::Tasks::ResultValueTask::ConfigureAwait(bool continueOnCapturedContext) const +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| continueOnCapturedContext | bool | true to attempt to marshal the continuation back to the original context captured; otherwise, false. | + +### ReturnValue + +ConfiguredResultValueTaskAwaitable An object that configures how awaiters behave for this task. + +## See Also + +* Class [ConfiguredResultValueTaskAwaitable](../../../system.runtime.compilerservices/configuredresultvaluetaskawaitable/) +* Class [ResultValueTask](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/resultvaluetask/equals/_index.md b/english/cpp/system.threading.tasks/resultvaluetask/equals/_index.md new file mode 100644 index 0000000000..5d399608d7 --- /dev/null +++ b/english/cpp/system.threading.tasks/resultvaluetask/equals/_index.md @@ -0,0 +1,58 @@ +--- +title: System::Threading::Tasks::ResultValueTask::Equals method +linktitle: Equals +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::ResultValueTask::Equals method. Determines whether this instance equals another ResultValueTask instance in C++.' +type: docs +weight: 400 +url: /cpp/system.threading.tasks/resultvaluetask/equals/ +--- +## ResultValueTask::Equals(ResultValueTask) method + + +Determines whether this instance equals another [ResultValueTask](../) instance. + +```cpp +bool System::Threading::Tasks::ResultValueTask::Equals(ResultValueTask other) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| other | ResultValueTask | The other [ResultValueTask](../) to compare with this instance. | + +### ReturnValue + +bool True if the instances are equal; otherwise, false. + +## See Also + +* Class [ResultValueTask](../) +* Class [ResultValueTask](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) +## ResultValueTask::Equals(System::SharedPtr\) method + + +Determines whether this instance equals another object. + +```cpp +bool System::Threading::Tasks::ResultValueTask::Equals(System::SharedPtr obj) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| obj | System::SharedPtr\ | The object to compare with this instance. | + +### ReturnValue + +bool True if the object is a [ResultValueTask](../) and equal to this instance; otherwise, false. + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [Object](../../../system/object/) +* Class [ResultValueTask](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/resultvaluetask/get_iscanceled/_index.md b/english/cpp/system.threading.tasks/resultvaluetask/get_iscanceled/_index.md new file mode 100644 index 0000000000..faf2ce10c7 --- /dev/null +++ b/english/cpp/system.threading.tasks/resultvaluetask/get_iscanceled/_index.md @@ -0,0 +1,33 @@ +--- +title: System::Threading::Tasks::ResultValueTask::get_IsCanceled method +linktitle: get_IsCanceled +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::ResultValueTask::get_IsCanceled method. Gets a value indicating whether the task completed due to being canceled in C++.' +type: docs +weight: 500 +url: /cpp/system.threading.tasks/resultvaluetask/get_iscanceled/ +--- +## ResultValueTask::get_IsCanceled method + + +Gets a value indicating whether the task completed due to being canceled. + +```cpp +bool System::Threading::Tasks::ResultValueTask::get_IsCanceled() const +``` + + +### ReturnValue + +bool True if the task was canceled; otherwise, false. +## Remarks + + + +Returns false if the task contains a direct result value. + +## See Also + +* Class [ResultValueTask](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/resultvaluetask/get_iscompleted/_index.md b/english/cpp/system.threading.tasks/resultvaluetask/get_iscompleted/_index.md new file mode 100644 index 0000000000..c0afb2215c --- /dev/null +++ b/english/cpp/system.threading.tasks/resultvaluetask/get_iscompleted/_index.md @@ -0,0 +1,28 @@ +--- +title: System::Threading::Tasks::ResultValueTask::get_IsCompleted method +linktitle: get_IsCompleted +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::ResultValueTask::get_IsCompleted method. Gets a value indicating whether the task has completed in C++.' +type: docs +weight: 600 +url: /cpp/system.threading.tasks/resultvaluetask/get_iscompleted/ +--- +## ResultValueTask::get_IsCompleted method + + +Gets a value indicating whether the task has completed. + +```cpp +bool System::Threading::Tasks::ResultValueTask::get_IsCompleted() const +``` + + +### ReturnValue + +bool True if the underlying task has completed or contains a direct result; otherwise, false. + +## See Also + +* Class [ResultValueTask](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/resultvaluetask/get_iscompletedsuccessfully/_index.md b/english/cpp/system.threading.tasks/resultvaluetask/get_iscompletedsuccessfully/_index.md new file mode 100644 index 0000000000..b640064210 --- /dev/null +++ b/english/cpp/system.threading.tasks/resultvaluetask/get_iscompletedsuccessfully/_index.md @@ -0,0 +1,28 @@ +--- +title: System::Threading::Tasks::ResultValueTask::get_IsCompletedSuccessfully method +linktitle: get_IsCompletedSuccessfully +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::ResultValueTask::get_IsCompletedSuccessfully method. Gets a value indicating whether the task completed successfully in C++.' +type: docs +weight: 700 +url: /cpp/system.threading.tasks/resultvaluetask/get_iscompletedsuccessfully/ +--- +## ResultValueTask::get_IsCompletedSuccessfully method + + +Gets a value indicating whether the task completed successfully. + +```cpp +bool System::Threading::Tasks::ResultValueTask::get_IsCompletedSuccessfully() const +``` + + +### ReturnValue + +bool True if the task ran to completion or contains a direct result; otherwise, false. + +## See Also + +* Class [ResultValueTask](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/resultvaluetask/get_isfaulted/_index.md b/english/cpp/system.threading.tasks/resultvaluetask/get_isfaulted/_index.md new file mode 100644 index 0000000000..136e465d29 --- /dev/null +++ b/english/cpp/system.threading.tasks/resultvaluetask/get_isfaulted/_index.md @@ -0,0 +1,33 @@ +--- +title: System::Threading::Tasks::ResultValueTask::get_IsFaulted method +linktitle: get_IsFaulted +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::ResultValueTask::get_IsFaulted method. Gets a value indicating whether the task completed due to an unhandled exception in C++.' +type: docs +weight: 800 +url: /cpp/system.threading.tasks/resultvaluetask/get_isfaulted/ +--- +## ResultValueTask::get_IsFaulted method + + +Gets a value indicating whether the task completed due to an unhandled exception. + +```cpp +bool System::Threading::Tasks::ResultValueTask::get_IsFaulted() const +``` + + +### ReturnValue + +bool True if the task is faulted; otherwise, false. +## Remarks + + + +Returns false if the task contains a direct result value. + +## See Also + +* Class [ResultValueTask](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/resultvaluetask/get_result/_index.md b/english/cpp/system.threading.tasks/resultvaluetask/get_result/_index.md new file mode 100644 index 0000000000..0c19ac6b99 --- /dev/null +++ b/english/cpp/system.threading.tasks/resultvaluetask/get_result/_index.md @@ -0,0 +1,33 @@ +--- +title: System::Threading::Tasks::ResultValueTask::get_Result method +linktitle: get_Result +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::ResultValueTask::get_Result method. Gets the result of the completed task in C++.' +type: docs +weight: 900 +url: /cpp/system.threading.tasks/resultvaluetask/get_result/ +--- +## ResultValueTask::get_Result method + + +Gets the result of the completed task. + +```cpp +T System::Threading::Tasks::ResultValueTask::get_Result() const +``` + + +### ReturnValue + +T The result value. +## Remarks + + + +If the task is backed by a [ResultTask](../../resulttask/), this method will await the result and cache it. Subsequent calls will return the cached value without awaiting. + +## See Also + +* Class [ResultValueTask](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/resultvaluetask/getawaiter/_index.md b/english/cpp/system.threading.tasks/resultvaluetask/getawaiter/_index.md new file mode 100644 index 0000000000..97dcb6b764 --- /dev/null +++ b/english/cpp/system.threading.tasks/resultvaluetask/getawaiter/_index.md @@ -0,0 +1,34 @@ +--- +title: System::Threading::Tasks::ResultValueTask::GetAwaiter method +linktitle: GetAwaiter +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::ResultValueTask::GetAwaiter method. Gets an awaiter for this task to support await expressions in C++.' +type: docs +weight: 1000 +url: /cpp/system.threading.tasks/resultvaluetask/getawaiter/ +--- +## ResultValueTask::GetAwaiter method + + +Gets an awaiter for this task to support await expressions. + +```cpp +Runtime::CompilerServices::ResultValueTaskAwaiter System::Threading::Tasks::ResultValueTask::GetAwaiter() const +``` + + +### ReturnValue + +ResultValueTaskAwaiter An awaiter instance for this task. +## Remarks + + + +This method enables the use of the Await method with [ResultValueTask](../). + +## See Also + +* Class [ResultValueTaskAwaiter](../../../system.runtime.compilerservices/resultvaluetaskawaiter/) +* Class [ResultValueTask](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/resultvaluetask/operator!=/_index.md b/english/cpp/system.threading.tasks/resultvaluetask/operator!=/_index.md new file mode 100644 index 0000000000..251179f2eb --- /dev/null +++ b/english/cpp/system.threading.tasks/resultvaluetask/operator!=/_index.md @@ -0,0 +1,33 @@ +--- +title: System::Threading::Tasks::ResultValueTask::operator!= method +linktitle: operator!= +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::ResultValueTask::operator!= method. Inequality operator for ResultValueTask in C++.' +type: docs +weight: 1100 +url: /cpp/system.threading.tasks/resultvaluetask/operator!=/ +--- +## ResultValueTask::operator!= method + + +Inequality operator for [ResultValueTask](../). + +```cpp +bool System::Threading::Tasks::ResultValueTask::operator!=(const ResultValueTask &other) const +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| other | const ResultValueTask\& | The other [ResultValueTask](../) to compare with this instance. | + +### ReturnValue + +bool True if the instances are not equal; otherwise, false. + +## See Also + +* Class [ResultValueTask](../) +* Class [ResultValueTask](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/resultvaluetask/operator==/_index.md b/english/cpp/system.threading.tasks/resultvaluetask/operator==/_index.md new file mode 100644 index 0000000000..720d9f3eb3 --- /dev/null +++ b/english/cpp/system.threading.tasks/resultvaluetask/operator==/_index.md @@ -0,0 +1,37 @@ +--- +title: System::Threading::Tasks::ResultValueTask::operator== method +linktitle: operator== +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::ResultValueTask::operator== method. Equality operator for ResultValueTask in C++.' +type: docs +weight: 1200 +url: /cpp/system.threading.tasks/resultvaluetask/operator==/ +--- +## ResultValueTask::operator== method + + +Equality operator for [ResultValueTask](../). + +```cpp +bool System::Threading::Tasks::ResultValueTask::operator==(const ResultValueTask &other) const +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| other | const ResultValueTask\& | The other [ResultValueTask](../) to compare with this instance. | + +### ReturnValue + +bool True if both tasks have the same result value or reference the same underlying task; otherwise, false. +## Remarks + + + +If either instance contains a direct result value, compares the results directly. Otherwise, compares the underlying task pointers. +## See Also + +* Class [ResultValueTask](../) +* Class [ResultValueTask](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/resultvaluetask/resultvaluetask/_index.md b/english/cpp/system.threading.tasks/resultvaluetask/resultvaluetask/_index.md new file mode 100644 index 0000000000..2bd22de094 --- /dev/null +++ b/english/cpp/system.threading.tasks/resultvaluetask/resultvaluetask/_index.md @@ -0,0 +1,78 @@ +--- +title: System::Threading::Tasks::ResultValueTask::ResultValueTask constructor +linktitle: ResultValueTask +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::ResultValueTask::ResultValueTask constructor. Constructs an empty, uninitialized ResultValueTask in C++.' +type: docs +weight: 100 +url: /cpp/system.threading.tasks/resultvaluetask/resultvaluetask/ +--- +## ResultValueTask::ResultValueTask() constructor + + +Constructs an empty, uninitialized [ResultValueTask](../). + +```cpp +System::Threading::Tasks::ResultValueTask::ResultValueTask() +``` + +## Remarks + + + +The task is not completed and contains no result. Attempting to get the result will throw an exception. + +## See Also + +* Class [ResultValueTask](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) +## ResultValueTask::ResultValueTask(const RTaskPtr\\&) constructor + + +Constructs a [ResultValueTask](../) from a shared pointer to a [ResultTask](../../resulttask/). + +```cpp +System::Threading::Tasks::ResultValueTask::ResultValueTask(const RTaskPtr &task) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| task | const RTaskPtr\\& | The task to wrap. Can be null for an empty task. | +## Remarks + + + +The [ResultValueTask](../) will represent the state and result of the provided task. + +## See Also + +* Typedef [RTaskPtr](../../../system/rtaskptr/) +* Class [ResultValueTask](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) +## ResultValueTask::ResultValueTask(const T\&) constructor + + +Constructs a completed [ResultValueTask](../) with the specified result. + +```cpp +System::Threading::Tasks::ResultValueTask::ResultValueTask(const T &result) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| result | const T\& | The result value to wrap in a completed task. | +## Remarks + + + +This creates a successfully completed task that immediately returns the value. + +## See Also + +* Class [ResultValueTask](../) +* 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 index 5512d84271..510bf550a7 100644 --- a/english/cpp/system.threading.tasks/run/_index.md +++ b/english/cpp/system.threading.tasks/run/_index.md @@ -4,7 +4,7 @@ linktitle: Run second_title: Aspose.PDF for C++ API Reference description: 'How to use Run method of class in C++.' type: docs -weight: 1100 +weight: 1300 url: /cpp/system.threading.tasks/run/ --- ## System::Threading::Tasks::Run(const Action<>\&) method @@ -38,6 +38,21 @@ TaskPtr System::Threading::Tasks::Run(const Action<> &action, const Cancellation * Class [CancellationToken](../../system.threading/cancellationtoken/) * Namespace [System::Threading::Tasks](../) * Library [Aspose.PDF for C++](../../) +## System::Threading::Tasks::Run(const Func\\&) method + + + + +```cpp +TaskPtr System::Threading::Tasks::Run(const Func &function) +``` + +## See Also + +* Typedef [TaskPtr](../../system/taskptr/) +* Class [Func](../../system/func/) +* Namespace [System::Threading::Tasks](../) +* Library [Aspose.PDF for C++](../../) ## System::Threading::Tasks::Run(const Func\\&) method diff --git a/english/cpp/system.threading.tasks/task/_index.md b/english/cpp/system.threading.tasks/task/_index.md index cd245273e6..9cfa06f3f5 100644 --- a/english/cpp/system.threading.tasks/task/_index.md +++ b/english/cpp/system.threading.tasks/task/_index.md @@ -4,7 +4,7 @@ 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 +weight: 300 url: /cpp/system.threading.tasks/task/ --- ## Task class @@ -40,6 +40,7 @@ class Task : public System::IDisposable | [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_Scheduler](./set_scheduler/)(TaskScheduler *) | Sets the scheduler associated with this task. | | [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. | @@ -48,8 +49,8 @@ class Task : public System::IDisposable | [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. | +| [Wait](./wait/)(const CancellationToken\&) const | Waits for the task to complete with cancellation support. | +| [Wait](./wait/)() const | Waits for the task to complete. | | [~Task](./~task/)() | Destructor. | ## Typedefs diff --git a/english/cpp/system.threading.tasks/task/continuewith/_index.md b/english/cpp/system.threading.tasks/task/continuewith/_index.md index e3d81e2ff8..39c19d07b1 100644 --- a/english/cpp/system.threading.tasks/task/continuewith/_index.md +++ b/english/cpp/system.threading.tasks/task/continuewith/_index.md @@ -19,11 +19,11 @@ TaskPtr System::Threading::Tasks::Task::ContinueWith(const Action &cont | Parameter | Type | Description | | --- | --- | --- | -| continuationAction | const Action\\& | Action to execute when this task completes | +| continuationAction | const Action\\& | [Action](../../../system/action/) to execute when this task completes | ### ReturnValue -TaskPtr A new task representing the continuation +[TaskPtr](../../../system/taskptr/) A new task representing the continuation ## See Also diff --git a/english/cpp/system.threading.tasks/task/functiont/_index.md b/english/cpp/system.threading.tasks/task/functiont/_index.md index c4c664ef4a..40cf18044e 100644 --- a/english/cpp/system.threading.tasks/task/functiont/_index.md +++ b/english/cpp/system.threading.tasks/task/functiont/_index.md @@ -4,7 +4,7 @@ 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 +weight: 2600 url: /cpp/system.threading.tasks/task/functiont/ --- ## FunctionT typedef diff --git a/english/cpp/system.threading.tasks/task/get_asyncstate/_index.md b/english/cpp/system.threading.tasks/task/get_asyncstate/_index.md index 74319bab05..6ee3db8128 100644 --- a/english/cpp/system.threading.tasks/task/get_asyncstate/_index.md +++ b/english/cpp/system.threading.tasks/task/get_asyncstate/_index.md @@ -19,7 +19,7 @@ const SharedPtr & System::Threading::Tasks::Task::get_AsyncState() const ### ReturnValue -SharedPtr The state object provided during construction +[SharedPtr](../../../system/sharedptr/) The state object provided during construction ## See Also diff --git a/english/cpp/system.threading.tasks/task/get_completedtask/_index.md b/english/cpp/system.threading.tasks/task/get_completedtask/_index.md index dc88734b6c..76b67158f3 100644 --- a/english/cpp/system.threading.tasks/task/get_completedtask/_index.md +++ b/english/cpp/system.threading.tasks/task/get_completedtask/_index.md @@ -4,7 +4,7 @@ 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 +weight: 2400 url: /cpp/system.threading.tasks/task/get_completedtask/ --- ## Task::get_CompletedTask method @@ -19,7 +19,7 @@ static const TaskPtr & System::Threading::Tasks::Task::get_CompletedTask() ### ReturnValue -TaskPtr Shared pointer to a completed task instance +[TaskPtr](../../../system/taskptr/) Shared pointer to a completed task instance ## See Also diff --git a/english/cpp/system.threading.tasks/task/get_currentid/_index.md b/english/cpp/system.threading.tasks/task/get_currentid/_index.md index 95d7e642ad..93f34e2996 100644 --- a/english/cpp/system.threading.tasks/task/get_currentid/_index.md +++ b/english/cpp/system.threading.tasks/task/get_currentid/_index.md @@ -4,7 +4,7 @@ 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 +weight: 2500 url: /cpp/system.threading.tasks/task/get_currentid/ --- ## Task::get_CurrentId method diff --git a/english/cpp/system.threading.tasks/task/get_status/_index.md b/english/cpp/system.threading.tasks/task/get_status/_index.md index 7251649935..ef39133998 100644 --- a/english/cpp/system.threading.tasks/task/get_status/_index.md +++ b/english/cpp/system.threading.tasks/task/get_status/_index.md @@ -19,7 +19,7 @@ TaskStatus System::Threading::Tasks::Task::get_Status() const ### ReturnValue -TaskStatus The current execution status +[TaskStatus](../../taskstatus/) The current execution status ## See Also diff --git a/english/cpp/system.threading.tasks/task/set_scheduler/_index.md b/english/cpp/system.threading.tasks/task/set_scheduler/_index.md new file mode 100644 index 0000000000..7aa1ea805b --- /dev/null +++ b/english/cpp/system.threading.tasks/task/set_scheduler/_index.md @@ -0,0 +1,24 @@ +--- +title: System::Threading::Tasks::Task::set_Scheduler method +linktitle: set_Scheduler +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::Task::set_Scheduler method. Sets the scheduler associated with this task in C++.' +type: docs +weight: 2000 +url: /cpp/system.threading.tasks/task/set_scheduler/ +--- +## Task::set_Scheduler method + + +Sets the scheduler associated with this task. + +```cpp +void System::Threading::Tasks::Task::set_Scheduler(TaskScheduler *scheduler) +``` + +## 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/set_status/_index.md b/english/cpp/system.threading.tasks/task/set_status/_index.md index 8eaacd4332..c503a2302b 100644 --- a/english/cpp/system.threading.tasks/task/set_status/_index.md +++ b/english/cpp/system.threading.tasks/task/set_status/_index.md @@ -4,7 +4,7 @@ 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 +weight: 2100 url: /cpp/system.threading.tasks/task/set_status/ --- ## Task::set_Status method diff --git a/english/cpp/system.threading.tasks/task/start/_index.md b/english/cpp/system.threading.tasks/task/start/_index.md index f8fee0a88f..c3b1106053 100644 --- a/english/cpp/system.threading.tasks/task/start/_index.md +++ b/english/cpp/system.threading.tasks/task/start/_index.md @@ -4,7 +4,7 @@ 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 +weight: 2200 url: /cpp/system.threading.tasks/task/start/ --- ## Task::Start() method diff --git a/english/cpp/system.threading.tasks/task/wait/_index.md b/english/cpp/system.threading.tasks/task/wait/_index.md index 6e30206655..ddbb599fd5 100644 --- a/english/cpp/system.threading.tasks/task/wait/_index.md +++ b/english/cpp/system.threading.tasks/task/wait/_index.md @@ -4,16 +4,16 @@ 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 +weight: 2300 url: /cpp/system.threading.tasks/task/wait/ --- -## Task::Wait() method +## Task::Wait() const method Waits for the task to complete. ```cpp -void System::Threading::Tasks::Task::Wait() +void System::Threading::Tasks::Task::Wait() const ``` @@ -22,13 +22,13 @@ void System::Threading::Tasks::Task::Wait() * Class [Task](../) * Namespace [System::Threading::Tasks](../../) * Library [Aspose.PDF for C++](../../../) -## Task::Wait(const CancellationToken\&) method +## Task::Wait(const CancellationToken\&) const method Waits for the task to complete with cancellation support. ```cpp -void System::Threading::Tasks::Task::Wait(const CancellationToken &cancellationToken) +void System::Threading::Tasks::Task::Wait(const CancellationToken &cancellationToken) const ``` diff --git a/english/cpp/system.threading.tasks/taskscheduler/_index.md b/english/cpp/system.threading.tasks/taskscheduler/_index.md index 42cbf21a53..3fe7dc3d33 100644 --- a/english/cpp/system.threading.tasks/taskscheduler/_index.md +++ b/english/cpp/system.threading.tasks/taskscheduler/_index.md @@ -4,7 +4,7 @@ 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 +weight: 400 url: /cpp/system.threading.tasks/taskscheduler/ --- ## TaskScheduler class diff --git a/english/cpp/system.threading.tasks/taskstatus/_index.md b/english/cpp/system.threading.tasks/taskstatus/_index.md index d8783384ac..5ab6a2e7b9 100644 --- a/english/cpp/system.threading.tasks/taskstatus/_index.md +++ b/english/cpp/system.threading.tasks/taskstatus/_index.md @@ -4,7 +4,7 @@ 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 +weight: 600 url: /cpp/system.threading.tasks/taskstatus/ --- ## TaskStatus enum diff --git a/english/cpp/system.threading.tasks/valuetask/_index.md b/english/cpp/system.threading.tasks/valuetask/_index.md new file mode 100644 index 0000000000..0114641ebf --- /dev/null +++ b/english/cpp/system.threading.tasks/valuetask/_index.md @@ -0,0 +1,41 @@ +--- +title: System::Threading::Tasks::ValueTask class +linktitle: ValueTask +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::ValueTask class. Provides an awaitable result of an asynchronous operation in C++.' +type: docs +weight: 500 +url: /cpp/system.threading.tasks/valuetask/ +--- +## ValueTask class + + +Provides an awaitable result of an asynchronous operation. + +```cpp +class ValueTask : public System::IEquatable, + public System::Details::BoxableObjectBase +``` + +## Methods + +| Method | Description | +| --- | --- | +| [AsTask](./astask/)() const | Converts this [ValueTask](./) to a shared pointer to [Task](../task/). | +| [ConfigureAwait](./configureawait/)(bool) const | Configures an awaiter for this task. | +| [Equals](./equals/)(ValueTask) override | Determines whether this instance equals another [ValueTask](./) instance. | +| [Equals](./equals/)(System::SharedPtr\) override | Determines whether this instance equals another object. | +| [get_IsCanceled](./get_iscanceled/)() const | Gets a value indicating whether the task completed due to being canceled. | +| [get_IsCompleted](./get_iscompleted/)() const | Gets a value indicating whether the task has completed. | +| [get_IsCompletedSuccessfully](./get_iscompletedsuccessfully/)() const | Gets a value indicating whether the task completed successfully. | +| [get_IsFaulted](./get_isfaulted/)() const | Gets a value indicating whether the task completed due to an unhandled exception. | +| [GetAwaiter](./getawaiter/)() const | Gets an awaiter for this task to support await expressions. | +| [operator!=](./operator!=/)(const ValueTask\&) const | Inequality operator for [ValueTask](./). | +| [operator==](./operator==/)(const ValueTask\&) const | Equality operator for [ValueTask](./). | +| [ValueTask](./valuetask/)() | Constructs an empty, uninitialized [ValueTask](./). | +| [ValueTask](./valuetask/)(const TaskPtr\&) | Constructs a [ValueTask](./) from a shared pointer to a [Task](../task/). | +## See Also + +* Class [IEquatable](../../system/iequatable/) +* Namespace [System::Threading::Tasks](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system.threading.tasks/valuetask/astask/_index.md b/english/cpp/system.threading.tasks/valuetask/astask/_index.md new file mode 100644 index 0000000000..4c56609508 --- /dev/null +++ b/english/cpp/system.threading.tasks/valuetask/astask/_index.md @@ -0,0 +1,29 @@ +--- +title: System::Threading::Tasks::ValueTask::AsTask method +linktitle: AsTask +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::ValueTask::AsTask method. Converts this ValueTask to a shared pointer to Task in C++.' +type: docs +weight: 200 +url: /cpp/system.threading.tasks/valuetask/astask/ +--- +## ValueTask::AsTask method + + +Converts this [ValueTask](../) to a shared pointer to [Task](../../task/). + +```cpp +TaskPtr System::Threading::Tasks::ValueTask::AsTask() const +``` + + +### ReturnValue + +[TaskPtr](../../../system/taskptr/) A shared pointer to a [Task](../../task/) that represents this operation. + +## See Also + +* Typedef [TaskPtr](../../../system/taskptr/) +* Class [ValueTask](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/valuetask/configureawait/_index.md b/english/cpp/system.threading.tasks/valuetask/configureawait/_index.md new file mode 100644 index 0000000000..6e8168d694 --- /dev/null +++ b/english/cpp/system.threading.tasks/valuetask/configureawait/_index.md @@ -0,0 +1,33 @@ +--- +title: System::Threading::Tasks::ValueTask::ConfigureAwait method +linktitle: ConfigureAwait +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::ValueTask::ConfigureAwait method. Configures an awaiter for this task in C++.' +type: docs +weight: 300 +url: /cpp/system.threading.tasks/valuetask/configureawait/ +--- +## ValueTask::ConfigureAwait method + + +Configures an awaiter for this task. + +```cpp +Runtime::CompilerServices::ConfiguredValueTaskAwaitable System::Threading::Tasks::ValueTask::ConfigureAwait(bool continueOnCapturedContext) const +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| continueOnCapturedContext | bool | true to attempt to marshal the continuation back to the original context captured; otherwise, false. | + +### ReturnValue + +ConfiguredValueTaskAwaitable An object that configures how awaiters behave for this task. + +## See Also + +* Class [ConfiguredValueTaskAwaitable](../../../system.runtime.compilerservices/configuredvaluetaskawaitable/) +* Class [ValueTask](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/valuetask/equals/_index.md b/english/cpp/system.threading.tasks/valuetask/equals/_index.md new file mode 100644 index 0000000000..c4237291f5 --- /dev/null +++ b/english/cpp/system.threading.tasks/valuetask/equals/_index.md @@ -0,0 +1,58 @@ +--- +title: System::Threading::Tasks::ValueTask::Equals method +linktitle: Equals +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::ValueTask::Equals method. Determines whether this instance equals another object in C++.' +type: docs +weight: 400 +url: /cpp/system.threading.tasks/valuetask/equals/ +--- +## ValueTask::Equals(System::SharedPtr\) method + + +Determines whether this instance equals another object. + +```cpp +bool System::Threading::Tasks::ValueTask::Equals(System::SharedPtr obj) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| obj | System::SharedPtr\ | The object to compare with this instance. | + +### ReturnValue + +bool True if the object is a [ValueTask](../) and equal to this instance; otherwise, false. + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [Object](../../../system/object/) +* Class [ValueTask](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) +## ValueTask::Equals(ValueTask) method + + +Determines whether this instance equals another [ValueTask](../) instance. + +```cpp +bool System::Threading::Tasks::ValueTask::Equals(ValueTask other) override +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| other | ValueTask | The other [ValueTask](../) to compare with this instance. | + +### ReturnValue + +bool True if the instances are equal; otherwise, false. + +## See Also + +* Class [ValueTask](../) +* Class [ValueTask](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/valuetask/get_iscanceled/_index.md b/english/cpp/system.threading.tasks/valuetask/get_iscanceled/_index.md new file mode 100644 index 0000000000..405ed71108 --- /dev/null +++ b/english/cpp/system.threading.tasks/valuetask/get_iscanceled/_index.md @@ -0,0 +1,28 @@ +--- +title: System::Threading::Tasks::ValueTask::get_IsCanceled method +linktitle: get_IsCanceled +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::ValueTask::get_IsCanceled method. Gets a value indicating whether the task completed due to being canceled in C++.' +type: docs +weight: 500 +url: /cpp/system.threading.tasks/valuetask/get_iscanceled/ +--- +## ValueTask::get_IsCanceled method + + +Gets a value indicating whether the task completed due to being canceled. + +```cpp +bool System::Threading::Tasks::ValueTask::get_IsCanceled() const +``` + + +### ReturnValue + +bool True if the task was canceled; otherwise, false. + +## See Also + +* Class [ValueTask](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/valuetask/get_iscompleted/_index.md b/english/cpp/system.threading.tasks/valuetask/get_iscompleted/_index.md new file mode 100644 index 0000000000..b713236967 --- /dev/null +++ b/english/cpp/system.threading.tasks/valuetask/get_iscompleted/_index.md @@ -0,0 +1,28 @@ +--- +title: System::Threading::Tasks::ValueTask::get_IsCompleted method +linktitle: get_IsCompleted +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::ValueTask::get_IsCompleted method. Gets a value indicating whether the task has completed in C++.' +type: docs +weight: 600 +url: /cpp/system.threading.tasks/valuetask/get_iscompleted/ +--- +## ValueTask::get_IsCompleted method + + +Gets a value indicating whether the task has completed. + +```cpp +bool System::Threading::Tasks::ValueTask::get_IsCompleted() const +``` + + +### ReturnValue + +bool True if the underlying task has completed; otherwise, false. + +## See Also + +* Class [ValueTask](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/valuetask/get_iscompletedsuccessfully/_index.md b/english/cpp/system.threading.tasks/valuetask/get_iscompletedsuccessfully/_index.md new file mode 100644 index 0000000000..56e533e449 --- /dev/null +++ b/english/cpp/system.threading.tasks/valuetask/get_iscompletedsuccessfully/_index.md @@ -0,0 +1,28 @@ +--- +title: System::Threading::Tasks::ValueTask::get_IsCompletedSuccessfully method +linktitle: get_IsCompletedSuccessfully +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::ValueTask::get_IsCompletedSuccessfully method. Gets a value indicating whether the task completed successfully in C++.' +type: docs +weight: 700 +url: /cpp/system.threading.tasks/valuetask/get_iscompletedsuccessfully/ +--- +## ValueTask::get_IsCompletedSuccessfully method + + +Gets a value indicating whether the task completed successfully. + +```cpp +bool System::Threading::Tasks::ValueTask::get_IsCompletedSuccessfully() const +``` + + +### ReturnValue + +bool True if the task ran to completion. + +## See Also + +* Class [ValueTask](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/valuetask/get_isfaulted/_index.md b/english/cpp/system.threading.tasks/valuetask/get_isfaulted/_index.md new file mode 100644 index 0000000000..52cad33eb3 --- /dev/null +++ b/english/cpp/system.threading.tasks/valuetask/get_isfaulted/_index.md @@ -0,0 +1,28 @@ +--- +title: System::Threading::Tasks::ValueTask::get_IsFaulted method +linktitle: get_IsFaulted +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::ValueTask::get_IsFaulted method. Gets a value indicating whether the task completed due to an unhandled exception in C++.' +type: docs +weight: 800 +url: /cpp/system.threading.tasks/valuetask/get_isfaulted/ +--- +## ValueTask::get_IsFaulted method + + +Gets a value indicating whether the task completed due to an unhandled exception. + +```cpp +bool System::Threading::Tasks::ValueTask::get_IsFaulted() const +``` + + +### ReturnValue + +bool True if the task is faulted; otherwise, false. + +## See Also + +* Class [ValueTask](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/valuetask/getawaiter/_index.md b/english/cpp/system.threading.tasks/valuetask/getawaiter/_index.md new file mode 100644 index 0000000000..1777b2a7dd --- /dev/null +++ b/english/cpp/system.threading.tasks/valuetask/getawaiter/_index.md @@ -0,0 +1,34 @@ +--- +title: System::Threading::Tasks::ValueTask::GetAwaiter method +linktitle: GetAwaiter +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::ValueTask::GetAwaiter method. Gets an awaiter for this task to support await expressions in C++.' +type: docs +weight: 900 +url: /cpp/system.threading.tasks/valuetask/getawaiter/ +--- +## ValueTask::GetAwaiter method + + +Gets an awaiter for this task to support await expressions. + +```cpp +Runtime::CompilerServices::ValueTaskAwaiter System::Threading::Tasks::ValueTask::GetAwaiter() const +``` + + +### ReturnValue + +ValueTaskAwaiter An awaiter instance for this task. +## Remarks + + + +This method enables the use of the Await method with [ValueTask](../). + +## See Also + +* Class [ValueTaskAwaiter](../../../system.runtime.compilerservices/valuetaskawaiter/) +* Class [ValueTask](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/valuetask/operator!=/_index.md b/english/cpp/system.threading.tasks/valuetask/operator!=/_index.md new file mode 100644 index 0000000000..946332e8c1 --- /dev/null +++ b/english/cpp/system.threading.tasks/valuetask/operator!=/_index.md @@ -0,0 +1,33 @@ +--- +title: System::Threading::Tasks::ValueTask::operator!= method +linktitle: operator!= +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::ValueTask::operator!= method. Inequality operator for ValueTask in C++.' +type: docs +weight: 1000 +url: /cpp/system.threading.tasks/valuetask/operator!=/ +--- +## ValueTask::operator!= method + + +Inequality operator for [ValueTask](../). + +```cpp +bool System::Threading::Tasks::ValueTask::operator!=(const ValueTask &other) const +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| other | const ValueTask\& | The other [ValueTask](../) to compare with this instance. | + +### ReturnValue + +bool True if the instances are not equal; otherwise, false. + +## See Also + +* Class [ValueTask](../) +* Class [ValueTask](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/valuetask/operator==/_index.md b/english/cpp/system.threading.tasks/valuetask/operator==/_index.md new file mode 100644 index 0000000000..794b0ab58a --- /dev/null +++ b/english/cpp/system.threading.tasks/valuetask/operator==/_index.md @@ -0,0 +1,33 @@ +--- +title: System::Threading::Tasks::ValueTask::operator== method +linktitle: operator== +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::ValueTask::operator== method. Equality operator for ValueTask in C++.' +type: docs +weight: 1100 +url: /cpp/system.threading.tasks/valuetask/operator==/ +--- +## ValueTask::operator== method + + +Equality operator for [ValueTask](../). + +```cpp +bool System::Threading::Tasks::ValueTask::operator==(const ValueTask &other) const +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| other | const ValueTask\& | The other [ValueTask](../) to compare with this instance. | + +### ReturnValue + +bool True if both tasks have the same underlying task; otherwise, false. + +## See Also + +* Class [ValueTask](../) +* Class [ValueTask](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading.tasks/valuetask/valuetask/_index.md b/english/cpp/system.threading.tasks/valuetask/valuetask/_index.md new file mode 100644 index 0000000000..0c45c9d769 --- /dev/null +++ b/english/cpp/system.threading.tasks/valuetask/valuetask/_index.md @@ -0,0 +1,54 @@ +--- +title: System::Threading::Tasks::ValueTask::ValueTask constructor +linktitle: ValueTask +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::Tasks::ValueTask::ValueTask constructor. Constructs an empty, uninitialized ValueTask in C++.' +type: docs +weight: 100 +url: /cpp/system.threading.tasks/valuetask/valuetask/ +--- +## ValueTask::ValueTask() constructor + + +Constructs an empty, uninitialized [ValueTask](../). + +```cpp +System::Threading::Tasks::ValueTask::ValueTask() +``` + +## Remarks + + + +The task is not completed and contains no result. Attempting to get the result will throw an exception. + +## See Also + +* Class [ValueTask](../) +* Namespace [System::Threading::Tasks](../../) +* Library [Aspose.PDF for C++](../../../) +## ValueTask::ValueTask(const TaskPtr\&) constructor + + +Constructs a [ValueTask](../) from a shared pointer to a [Task](../../task/). + +```cpp +System::Threading::Tasks::ValueTask::ValueTask(const TaskPtr &task) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| task | const TaskPtr\& | The task to wrap. Can be null for an empty task. | +## Remarks + + + +The [ValueTask](../) will represent the state of the provided task. + +## See Also + +* Typedef [TaskPtr](../../../system/taskptr/) +* Class [ValueTask](../) +* 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 index 16e6a9e20a..6b0882a998 100644 --- a/english/cpp/system.threading.tasks/whenall/_index.md +++ b/english/cpp/system.threading.tasks/whenall/_index.md @@ -4,7 +4,7 @@ linktitle: WhenAll second_title: Aspose.PDF for C++ API Reference description: 'How to use WhenAll method of class in C++.' type: docs -weight: 1400 +weight: 1700 url: /cpp/system.threading.tasks/whenall/ --- ## System::Threading::Tasks::WhenAll(ArrayPtr\\>) method diff --git a/english/cpp/system.threading.tasks/yield/_index.md b/english/cpp/system.threading.tasks/yield/_index.md new file mode 100644 index 0000000000..45ee5e3891 --- /dev/null +++ b/english/cpp/system.threading.tasks/yield/_index.md @@ -0,0 +1,23 @@ +--- +title: System::Threading::Tasks::Yield method +linktitle: Yield +second_title: Aspose.PDF for C++ API Reference +description: 'How to use Yield method of class in C++.' +type: docs +weight: 2100 +url: /cpp/system.threading.tasks/yield/ +--- +## System::Threading::Tasks::Yield method + + + + +```cpp +Runtime::CompilerServices::YieldAwaitable System::Threading::Tasks::Yield() +``` + +## See Also + +* Class [YieldAwaitable](../../system.runtime.compilerservices/yieldawaitable/) +* 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 80890200a1..dff42aada0 100644 --- a/english/cpp/system.threading/_index.md +++ b/english/cpp/system.threading/_index.md @@ -14,16 +14,17 @@ 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. | +| [AutoResetEvent](./autoresetevent/) | [Event](../system/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. | +| [EventWaitHandle](./eventwaithandle/) | [Event](../system/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. | +| [ManualResetEvent](./manualresetevent/) | [Event](../system/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. | | [Monitor](./monitor/) | Class [Monitor](./monitor/) provides a mechanism that synchronizes access to objects. | | [Mutex](./mutex/) | [Mutex](./mutex/) implemnetation. 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. | | [Semaphore](./semaphore/) | [Semaphore](./semaphore/) implementation. 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. | +| [SynchronizationContext](./synchronizationcontext/) | Provides the basic functionality for propagating a synchronization context across various synchronization operations. | | [Thread](./thread/) | [Thread](./thread/) implementation. 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. | | [ThreadPool](./threadpool/) | [Thread](./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. | | [ThreadPoolImpl](./threadpoolimpl/) | [Thread](./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. | diff --git a/english/cpp/system.threading/apartmentstate/_index.md b/english/cpp/system.threading/apartmentstate/_index.md index e4f63e7b6c..e200495536 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: 1700 +weight: 1800 url: /cpp/system.threading/apartmentstate/ --- ## ApartmentState enum diff --git a/english/cpp/system.threading/autoresetevent/_index.md b/english/cpp/system.threading/autoresetevent/_index.md index 57b9be943b..f2287677c0 100644 --- a/english/cpp/system.threading/autoresetevent/_index.md +++ b/english/cpp/system.threading/autoresetevent/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.threading/autoresetevent/ ## AutoResetEvent class -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. +[Event](../../system/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. ```cpp class AutoResetEvent : public System::Threading::EventWaitHandle diff --git a/english/cpp/system.threading/cancellationtoken/register/_index.md b/english/cpp/system.threading/cancellationtoken/register/_index.md index 6116eeb6c1..72bacefca9 100644 --- a/english/cpp/system.threading/cancellationtoken/register/_index.md +++ b/english/cpp/system.threading/cancellationtoken/register/_index.md @@ -19,7 +19,7 @@ CancellationTokenRegistration System::Threading::CancellationToken::Register(con | Parameter | Type | Description | | --- | --- | --- | -| callback | const Action<>\& | The Action<> to execute when cancellation is requested. | +| callback | const Action<>\& | The [Action<>](../../../system/action/) to execute when cancellation is requested. | ### ReturnValue diff --git a/english/cpp/system.threading/eventresetmode/_index.md b/english/cpp/system.threading/eventresetmode/_index.md index bb4277aa78..37d187f62e 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: 1800 +weight: 1900 url: /cpp/system.threading/eventresetmode/ --- ## EventResetMode enum @@ -20,8 +20,8 @@ enum class EventResetMode | Name | Value | Description | | --- | --- | --- | -| AutoReset | 0 | Event state resets automatically on reading. | -| ManualReset | 1 | Event state should be reset manually. | +| AutoReset | 0 | [Event](../../system/event/) state resets automatically on reading. | +| ManualReset | 1 | [Event](../../system/event/) state should be reset manually. | ## See Also diff --git a/english/cpp/system.threading/eventwaithandle/_index.md b/english/cpp/system.threading/eventwaithandle/_index.md index 467071b2a8..1788d8cfee 100644 --- a/english/cpp/system.threading/eventwaithandle/_index.md +++ b/english/cpp/system.threading/eventwaithandle/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.threading/eventwaithandle/ ## EventWaitHandle class -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. +[Event](../../system/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. ```cpp class EventWaitHandle : public System::Threading::WaitHandle diff --git a/english/cpp/system.threading/manualresetevent/_index.md b/english/cpp/system.threading/manualresetevent/_index.md index 90ba8fabca..092654ff25 100644 --- a/english/cpp/system.threading/manualresetevent/_index.md +++ b/english/cpp/system.threading/manualresetevent/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.threading/manualresetevent/ ## ManualResetEvent class -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. +[Event](../../system/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. ```cpp class ManualResetEvent : public System::Threading::EventWaitHandle diff --git a/english/cpp/system.threading/parameterizedthreadstart/_index.md b/english/cpp/system.threading/parameterizedthreadstart/_index.md index 7b1bae3674..9daf9ae176 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: 2000 +weight: 2100 url: /cpp/system.threading/parameterizedthreadstart/ --- ## ParameterizedThreadStart typedef diff --git a/english/cpp/system.threading/sendorpostcallback/_index.md b/english/cpp/system.threading/sendorpostcallback/_index.md index 477ff6b42b..0f8f0667d1 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: 2100 +weight: 2200 url: /cpp/system.threading/sendorpostcallback/ --- ## SendOrPostCallback typedef diff --git a/english/cpp/system.threading/synchronizationcontext/_index.md b/english/cpp/system.threading/synchronizationcontext/_index.md new file mode 100644 index 0000000000..c2482811e3 --- /dev/null +++ b/english/cpp/system.threading/synchronizationcontext/_index.md @@ -0,0 +1,36 @@ +--- +title: System::Threading::SynchronizationContext class +linktitle: SynchronizationContext +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::SynchronizationContext class. Provides the basic functionality for propagating a synchronization context across various synchronization operations in C++.' +type: docs +weight: 1100 +url: /cpp/system.threading/synchronizationcontext/ +--- +## SynchronizationContext class + + +Provides the basic functionality for propagating a synchronization context across various synchronization operations. + +```cpp +class SynchronizationContext : public System::Object +``` + +## Methods + +| Method | Description | +| --- | --- | +| static [get_Current](./get_current/)() | Gets the synchronization context for the current thread. | +| static [SetSynchronizationContext](./setsynchronizationcontext/)(const SharedPtr\\&) | Sets the synchronization context for the current thread. | +| [SynchronizationContext](./synchronizationcontext/)() | RTTI information. | +## Remarks + + +This class enables the propagation of synchronization context between threads and is used to marshal callbacks or invocations to the appropriate thread or synchronization context. +Dummy implementation. + +## See Also + +* Class [Object](../../system/object/) +* Namespace [System::Threading](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system.threading/synchronizationcontext/get_current/_index.md b/english/cpp/system.threading/synchronizationcontext/get_current/_index.md new file mode 100644 index 0000000000..0bc56caa5d --- /dev/null +++ b/english/cpp/system.threading/synchronizationcontext/get_current/_index.md @@ -0,0 +1,35 @@ +--- +title: System::Threading::SynchronizationContext::get_Current method +linktitle: get_Current +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::SynchronizationContext::get_Current method. Gets the synchronization context for the current thread in C++.' +type: docs +weight: 200 +url: /cpp/system.threading/synchronizationcontext/get_current/ +--- +## SynchronizationContext::get_Current method + + +Gets the synchronization context for the current thread. + +```cpp +static const SharedPtr & System::Threading::SynchronizationContext::get_Current() +``` + + +### ReturnValue + +[SharedPtr](../../../system/sharedptr/) A shared pointer to the current thread's synchronization context. +## Remarks + + + +Returns null if no synchronization context has been set for the current thread. + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [SynchronizationContext](../) +* Class [SynchronizationContext](../) +* Namespace [System::Threading](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading/synchronizationcontext/setsynchronizationcontext/_index.md b/english/cpp/system.threading/synchronizationcontext/setsynchronizationcontext/_index.md new file mode 100644 index 0000000000..ea1e8b5c11 --- /dev/null +++ b/english/cpp/system.threading/synchronizationcontext/setsynchronizationcontext/_index.md @@ -0,0 +1,35 @@ +--- +title: System::Threading::SynchronizationContext::SetSynchronizationContext method +linktitle: SetSynchronizationContext +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::SynchronizationContext::SetSynchronizationContext method. Sets the synchronization context for the current thread in C++.' +type: docs +weight: 300 +url: /cpp/system.threading/synchronizationcontext/setsynchronizationcontext/ +--- +## SynchronizationContext::SetSynchronizationContext method + + +Sets the synchronization context for the current thread. + +```cpp +static void System::Threading::SynchronizationContext::SetSynchronizationContext(const SharedPtr &syncContext) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| syncContext | const SharedPtr\\& | The synchronization context to set for the current thread. | +## Remarks + + + +Passing nullptr will clear the synchronization context for the current thread. + +## See Also + +* Typedef [SharedPtr](../../../system/sharedptr/) +* Class [SynchronizationContext](../) +* Class [SynchronizationContext](../) +* Namespace [System::Threading](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading/synchronizationcontext/synchronizationcontext/_index.md b/english/cpp/system.threading/synchronizationcontext/synchronizationcontext/_index.md new file mode 100644 index 0000000000..7ff84ed09d --- /dev/null +++ b/english/cpp/system.threading/synchronizationcontext/synchronizationcontext/_index.md @@ -0,0 +1,29 @@ +--- +title: System::Threading::SynchronizationContext::SynchronizationContext constructor +linktitle: SynchronizationContext +second_title: Aspose.PDF for C++ API Reference +description: 'System::Threading::SynchronizationContext::SynchronizationContext constructor. RTTI information in C++.' +type: docs +weight: 100 +url: /cpp/system.threading/synchronizationcontext/synchronizationcontext/ +--- +## SynchronizationContext::SynchronizationContext constructor + + +RTTI information. + +```cpp +System::Threading::SynchronizationContext::SynchronizationContext() +``` + +## Remarks + + +Constructs a new instance of [SynchronizationContext](../). +Creates a default synchronization context. The specific behavior depends on the platform implementation. + +## See Also + +* Class [SynchronizationContext](../) +* Namespace [System::Threading](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system.threading/thread/_index.md b/english/cpp/system.threading/thread/_index.md index 7230ae2e9a..22ee7ebccc 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: 1100 +weight: 1200 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 2a24b7f992..c97625d6de 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: 1200 +weight: 1300 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 c3208cc8ac..a225ffe024 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: 1300 +weight: 1400 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 5c3ed1a0cd..cd377a9295 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: 2200 +weight: 2300 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 038e756c21..b0f3a10d9a 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: 1900 +weight: 2000 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 5da9f13baa..63f1f6ffee 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: 1400 +weight: 1500 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 fed83df5c2..531f553747 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: 2300 +weight: 2400 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 3776a2e239..41a7b12eef 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: 1500 +weight: 1600 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 8041ce97a4..79ba57335e 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: 2400 +weight: 2500 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 9953442967..c484c62625 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: 2500 +weight: 2600 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 a110f40ff5..ad7f970294 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: 1600 +weight: 1700 url: /cpp/system.threading/waithandle/ --- ## WaitHandle class diff --git a/english/cpp/system.web.ui.webcontrols/datagrid/ptr/_index.md b/english/cpp/system.web.ui.webcontrols/datagrid/ptr/_index.md index 96bef532d7..d554eb29bd 100644 --- a/english/cpp/system.web.ui.webcontrols/datagrid/ptr/_index.md +++ b/english/cpp/system.web.ui.webcontrols/datagrid/ptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system.web.ui.webcontrols/datagrid/ptr/ Self pointer type. ```cpp -SharedPtr System::Web::UI::WebControls::DataGrid::ptr +typedef SharedPtr System::Web::UI::WebControls::DataGrid::ptr ``` ## See Also diff --git a/english/cpp/system.xml.schema/_index.md b/english/cpp/system.xml.schema/_index.md index f67250bd10..3cdf2db52c 100644 --- a/english/cpp/system.xml.schema/_index.md +++ b/english/cpp/system.xml.schema/_index.md @@ -15,7 +15,7 @@ url: /cpp/system.xml.schema/ | Class | Description | | --- | --- | | [IXmlSchemaInfo](./ixmlschemainfo/) | Defines the post-schema-validation infoset of a validated XML node. | -| [ValidationEventArgs](./validationeventargs/) | Returns detailed information related to the ValidationEventHandler. | +| [ValidationEventArgs](./validationeventargs/) | Returns detailed information related to the [ValidationEventHandler](./validationeventhandler/). | | [XmlAtomicValue](./xmlatomicvalue/) | Represents the typed value of a validated XML element or attribute. The [XmlAtomicValue](./xmlatomicvalue/) class cannot be inherited. | | [XmlSchema](./xmlschema/) | An in-memory representation of an XML [Schema](./), as specified in the World Wide [Web](../system.web/) Consortium (W3C) [XML Schema Part 1: Structures](https://www.w3.org/TR/xmlschema-1/) and [XML Schema Part 2: Datatypes](https://www.w3.org/TR/xmlschema-2/). | | [XmlSchemaAll](./xmlschemaall/) | Represents the World Wide [Web](../system.web/) Consortium (W3C) **all** element (compositor). | diff --git a/english/cpp/system.xml.schema/ixmlschemainfo/_index.md b/english/cpp/system.xml.schema/ixmlschemainfo/_index.md index c1e84e589e..0457ef4dc5 100644 --- a/english/cpp/system.xml.schema/ixmlschemainfo/_index.md +++ b/english/cpp/system.xml.schema/ixmlschemainfo/_index.md @@ -26,7 +26,7 @@ class IXmlSchemaInfo : public virtual System::Object | virtual [get_SchemaAttribute](./get_schemaattribute/)() | Returns the compiled [XmlSchemaAttribute](../xmlschemaattribute/) that corresponds to this validated XML node. | | virtual [get_SchemaElement](./get_schemaelement/)() | Returns the compiled [XmlSchemaElement](../xmlschemaelement/) that corresponds to this validated XML node. | | virtual [get_SchemaType](./get_schematype/)() | Returns the static XML [Schema](../) Definition Language (XSD) schema type of this validated XML node. | -| virtual [get_Validity](./get_validity/)() | Returns the XmlSchemaValidity value of this validated XML node. | +| virtual [get_Validity](./get_validity/)() | Returns the [XmlSchemaValidity](../xmlschemavalidity/) value of this validated XML node. | ## See Also * Class [Object](../../system/object/) diff --git a/english/cpp/system.xml.schema/ixmlschemainfo/get_validity/_index.md b/english/cpp/system.xml.schema/ixmlschemainfo/get_validity/_index.md index e939ef655a..7d4b929e1b 100644 --- a/english/cpp/system.xml.schema/ixmlschemainfo/get_validity/_index.md +++ b/english/cpp/system.xml.schema/ixmlschemainfo/get_validity/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.xml.schema/ixmlschemainfo/get_validity/ ## IXmlSchemaInfo::get_Validity method -Returns the XmlSchemaValidity value of this validated XML node. +Returns the [XmlSchemaValidity](../../xmlschemavalidity/) value of this validated XML node. ```cpp virtual XmlSchemaValidity System::Xml::Schema::IXmlSchemaInfo::get_Validity()=0 @@ -19,7 +19,7 @@ virtual XmlSchemaValidity System::Xml::Schema::IXmlSchemaInfo::get_Validity()=0 ### ReturnValue -An XmlSchemaValidity value of this validated XML node. +An [XmlSchemaValidity](../../xmlschemavalidity/) value of this validated XML node. ## See Also diff --git a/english/cpp/system.xml.schema/validationeventargs/_index.md b/english/cpp/system.xml.schema/validationeventargs/_index.md index e58e1d0eb6..1ff21a684b 100644 --- a/english/cpp/system.xml.schema/validationeventargs/_index.md +++ b/english/cpp/system.xml.schema/validationeventargs/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.xml.schema/validationeventargs/ ## ValidationEventArgs class -Returns detailed information related to the ValidationEventHandler. +Returns detailed information related to the [ValidationEventHandler](../validationeventhandler/). ```cpp class ValidationEventArgs : public System::EventArgs @@ -20,7 +20,7 @@ class ValidationEventArgs : public System::EventArgs | Method | Description | | --- | --- | -| [get_Exception](./get_exception/)() | Returns the XmlSchemaException associated with the validation event. | +| [get_Exception](./get_exception/)() | Returns the [XmlSchemaException](../xmlschemaexception/) associated with the validation event. | | [get_Message](./get_message/)() | Returns the text description corresponding to the validation event. | | [get_Severity](./get_severity/)() | Returns the severity of the validation event. | ## Fields diff --git a/english/cpp/system.xml.schema/validationeventargs/get_exception/_index.md b/english/cpp/system.xml.schema/validationeventargs/get_exception/_index.md index 58e369e50d..372f0aab12 100644 --- a/english/cpp/system.xml.schema/validationeventargs/get_exception/_index.md +++ b/english/cpp/system.xml.schema/validationeventargs/get_exception/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.xml.schema/validationeventargs/get_exception/ ## ValidationEventArgs::get_Exception method -Returns the XmlSchemaException associated with the validation event. +Returns the [XmlSchemaException](../../xmlschemaexception/) associated with the validation event. ```cpp XmlSchemaException System::Xml::Schema::ValidationEventArgs::get_Exception() @@ -19,7 +19,7 @@ XmlSchemaException System::Xml::Schema::ValidationEventArgs::get_Exception() ### ReturnValue -The XmlSchemaException associated with the validation event. +The [XmlSchemaException](../../xmlschemaexception/) associated with the validation event. ## See Also diff --git a/english/cpp/system.xml.schema/validationeventargs/get_severity/_index.md b/english/cpp/system.xml.schema/validationeventargs/get_severity/_index.md index 39d5364ab7..0d0c507a75 100644 --- a/english/cpp/system.xml.schema/validationeventargs/get_severity/_index.md +++ b/english/cpp/system.xml.schema/validationeventargs/get_severity/_index.md @@ -19,7 +19,7 @@ XmlSeverityType System::Xml::Schema::ValidationEventArgs::get_Severity() ### ReturnValue -An XmlSeverityType value representing the severity of the validation event. +An [XmlSeverityType](../../xmlseveritytype/) value representing the severity of the validation event. ## See Also diff --git a/english/cpp/system.xml.schema/xmlschema/get_attributeformdefault/_index.md b/english/cpp/system.xml.schema/xmlschema/get_attributeformdefault/_index.md index 2e43b82b48..65f27d1c2e 100644 --- a/english/cpp/system.xml.schema/xmlschema/get_attributeformdefault/_index.md +++ b/english/cpp/system.xml.schema/xmlschema/get_attributeformdefault/_index.md @@ -19,7 +19,7 @@ XmlSchemaForm System::Xml::Schema::XmlSchema::get_AttributeFormDefault() ### ReturnValue -The XmlSchemaForm value that indicates if attributes from the target namespace are required to be qualified with the namespace prefix. The default is [XmlSchemaForm::None](../../xmlschemaform/). +The [XmlSchemaForm](../../xmlschemaform/) value that indicates if attributes from the target namespace are required to be qualified with the namespace prefix. The default is [XmlSchemaForm::None](../../xmlschemaform/). ## See Also diff --git a/english/cpp/system.xml.schema/xmlschema/get_blockdefault/_index.md b/english/cpp/system.xml.schema/xmlschema/get_blockdefault/_index.md index 4094f34af8..a97f241dbf 100644 --- a/english/cpp/system.xml.schema/xmlschema/get_blockdefault/_index.md +++ b/english/cpp/system.xml.schema/xmlschema/get_blockdefault/_index.md @@ -19,7 +19,7 @@ XmlSchemaDerivationMethod System::Xml::Schema::XmlSchema::get_BlockDefault() ### ReturnValue -An XmlSchemaDerivationMethod value representing the different methods for preventing derivation. The default value is [XmlSchemaDerivationMethod::None](../../xmlschemaderivationmethod/). +An [XmlSchemaDerivationMethod](../../xmlschemaderivationmethod/) value representing the different methods for preventing derivation. The default value is [XmlSchemaDerivationMethod::None](../../xmlschemaderivationmethod/). ## See Also diff --git a/english/cpp/system.xml.schema/xmlschema/get_elementformdefault/_index.md b/english/cpp/system.xml.schema/xmlschema/get_elementformdefault/_index.md index d4821b4cfe..8aa7a837f9 100644 --- a/english/cpp/system.xml.schema/xmlschema/get_elementformdefault/_index.md +++ b/english/cpp/system.xml.schema/xmlschema/get_elementformdefault/_index.md @@ -19,7 +19,7 @@ XmlSchemaForm System::Xml::Schema::XmlSchema::get_ElementFormDefault() ### ReturnValue -The XmlSchemaForm value that indicates if elements from the target namespace are required to be qualified with the namespace prefix. The default is [XmlSchemaForm::None](../../xmlschemaform/). +The [XmlSchemaForm](../../xmlschemaform/) value that indicates if elements from the target namespace are required to be qualified with the namespace prefix. The default is [XmlSchemaForm::None](../../xmlschemaform/). ## See Also diff --git a/english/cpp/system.xml.schema/xmlschema/get_finaldefault/_index.md b/english/cpp/system.xml.schema/xmlschema/get_finaldefault/_index.md index 109f7c14e2..be795e1dd0 100644 --- a/english/cpp/system.xml.schema/xmlschema/get_finaldefault/_index.md +++ b/english/cpp/system.xml.schema/xmlschema/get_finaldefault/_index.md @@ -19,7 +19,7 @@ XmlSchemaDerivationMethod System::Xml::Schema::XmlSchema::get_FinalDefault() ### ReturnValue -An XmlSchemaDerivationMethod value representing the different methods for preventing derivation. The default value is [XmlSchemaDerivationMethod::None](../../xmlschemaderivationmethod/). +An [XmlSchemaDerivationMethod](../../xmlschemaderivationmethod/) value representing the different methods for preventing derivation. The default value is [XmlSchemaDerivationMethod::None](../../xmlschemaderivationmethod/). ## See Also diff --git a/english/cpp/system.xml.schema/xmlschemaany/get_processcontents/_index.md b/english/cpp/system.xml.schema/xmlschemaany/get_processcontents/_index.md index 2018f2b77b..9d26d8b0b7 100644 --- a/english/cpp/system.xml.schema/xmlschemaany/get_processcontents/_index.md +++ b/english/cpp/system.xml.schema/xmlschemaany/get_processcontents/_index.md @@ -19,7 +19,7 @@ XmlSchemaContentProcessing System::Xml::Schema::XmlSchemaAny::get_ProcessContent ### ReturnValue -One of the XmlSchemaContentProcessing values. If no **processContents** attribute is specified, the default is **Strict**. +One of the [XmlSchemaContentProcessing](../../xmlschemacontentprocessing/) values. If no **processContents** attribute is specified, the default is **Strict**. ## See Also diff --git a/english/cpp/system.xml.schema/xmlschemaanyattribute/get_processcontents/_index.md b/english/cpp/system.xml.schema/xmlschemaanyattribute/get_processcontents/_index.md index 0dd3d21f8b..9580eb05ab 100644 --- a/english/cpp/system.xml.schema/xmlschemaanyattribute/get_processcontents/_index.md +++ b/english/cpp/system.xml.schema/xmlschemaanyattribute/get_processcontents/_index.md @@ -19,7 +19,7 @@ XmlSchemaContentProcessing System::Xml::Schema::XmlSchemaAnyAttribute::get_Proce ### ReturnValue -One of the XmlSchemaContentProcessing values. If no **processContents** attribute is specified, the default is **Strict**. +One of the [XmlSchemaContentProcessing](../../xmlschemacontentprocessing/) values. If no **processContents** attribute is specified, the default is **Strict**. ## See Also diff --git a/english/cpp/system.xml.schema/xmlschemaattribute/get_form/_index.md b/english/cpp/system.xml.schema/xmlschemaattribute/get_form/_index.md index d6a61331b0..bdb3bc2644 100644 --- a/english/cpp/system.xml.schema/xmlschemaattribute/get_form/_index.md +++ b/english/cpp/system.xml.schema/xmlschemaattribute/get_form/_index.md @@ -19,7 +19,7 @@ XmlSchemaForm System::Xml::Schema::XmlSchemaAttribute::get_Form() ### ReturnValue -One of the XmlSchemaForm values. The default is the [XmlSchema::get_AttributeFormDefault](../../xmlschema/get_attributeformdefault/) value of the schema element containing the attribute. Optional. +One of the [XmlSchemaForm](../../xmlschemaform/) values. The default is the [XmlSchema::get_AttributeFormDefault](../../xmlschema/get_attributeformdefault/) value of the schema element containing the attribute. Optional. ## See Also diff --git a/english/cpp/system.xml.schema/xmlschemadatatype/_index.md b/english/cpp/system.xml.schema/xmlschemadatatype/_index.md index 3fca135726..0a8977a7eb 100644 --- a/english/cpp/system.xml.schema/xmlschemadatatype/_index.md +++ b/english/cpp/system.xml.schema/xmlschemadatatype/_index.md @@ -23,9 +23,9 @@ class XmlSchemaDatatype : public System::Object | virtual [ChangeType](./changetype/)(SharedPtr\, const TypeInfo\&) | Converts the value specified, whose type is one of the valid representations of the XML schema type represented by the [XmlSchemaDatatype](./), to the run-time type specified. | | virtual [ChangeType](./changetype/)(SharedPtr\, const TypeInfo\&, SharedPtr\) | Converts the value specified, whose type is one of the valid representations of the XML schema type represented by the [XmlSchemaDatatype](./), to the run-time type specified using the [IXmlNamespaceResolver](../../system.xml/ixmlnamespaceresolver/) if the [XmlSchemaDatatype](./) represents the **xs:QName** type or a type derived from it. | | virtual [get_TokenizedType](./get_tokenizedtype/)() | When overridden in a derived class, gets the type for the **string** as specified in the World Wide [Web](../../system.web/) Consortium (W3C) XML 1.0 specification. | -| virtual [get_TypeCode](./get_typecode/)() | Returns the XmlTypeCode value for the simple type. | +| virtual [get_TypeCode](./get_typecode/)() | Returns the [XmlTypeCode](../xmltypecode/) value for the simple type. | | virtual [get_ValueType](./get_valuetype/)() | When overridden in a derived class, gets the type of the item. | -| virtual [get_Variety](./get_variety/)() | Returns the XmlSchemaDatatypeVariety value for the simple type. | +| virtual [get_Variety](./get_variety/)() | Returns the [XmlSchemaDatatypeVariety](../xmlschemadatatypevariety/) value for the simple type. | | virtual [IsDerivedFrom](./isderivedfrom/)(SharedPtr\) | This method always returns **false**. | | virtual [ParseValue](./parsevalue/)(String, SharedPtr\, SharedPtr\) | When overridden in a derived class, validates the **string** specified against a built-in or user-defined simple type. | ## Typedefs diff --git a/english/cpp/system.xml.schema/xmlschemadatatype/get_tokenizedtype/_index.md b/english/cpp/system.xml.schema/xmlschemadatatype/get_tokenizedtype/_index.md index af70362a6b..8eba648068 100644 --- a/english/cpp/system.xml.schema/xmlschemadatatype/get_tokenizedtype/_index.md +++ b/english/cpp/system.xml.schema/xmlschemadatatype/get_tokenizedtype/_index.md @@ -19,7 +19,7 @@ virtual XmlTokenizedType System::Xml::Schema::XmlSchemaDatatype::get_TokenizedTy ### ReturnValue -An XmlTokenizedType value for the **string**. +An [XmlTokenizedType](../../../system.xml/xmltokenizedtype/) value for the **string**. ## See Also diff --git a/english/cpp/system.xml.schema/xmlschemadatatype/get_typecode/_index.md b/english/cpp/system.xml.schema/xmlschemadatatype/get_typecode/_index.md index 94e2b429f3..eedbae4e41 100644 --- a/english/cpp/system.xml.schema/xmlschemadatatype/get_typecode/_index.md +++ b/english/cpp/system.xml.schema/xmlschemadatatype/get_typecode/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.xml.schema/xmlschemadatatype/get_typecode/ ## XmlSchemaDatatype::get_TypeCode method -Returns the XmlTypeCode value for the simple type. +Returns the [XmlTypeCode](../../xmltypecode/) value for the simple type. ```cpp virtual XmlTypeCode System::Xml::Schema::XmlSchemaDatatype::get_TypeCode() @@ -19,7 +19,7 @@ virtual XmlTypeCode System::Xml::Schema::XmlSchemaDatatype::get_TypeCode() ### ReturnValue -The XmlTypeCode value for the simple type. +The [XmlTypeCode](../../xmltypecode/) value for the simple type. ## See Also diff --git a/english/cpp/system.xml.schema/xmlschemadatatype/get_variety/_index.md b/english/cpp/system.xml.schema/xmlschemadatatype/get_variety/_index.md index 1a7718b3fb..f6d16fd43e 100644 --- a/english/cpp/system.xml.schema/xmlschemadatatype/get_variety/_index.md +++ b/english/cpp/system.xml.schema/xmlschemadatatype/get_variety/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.xml.schema/xmlschemadatatype/get_variety/ ## XmlSchemaDatatype::get_Variety method -Returns the XmlSchemaDatatypeVariety value for the simple type. +Returns the [XmlSchemaDatatypeVariety](../../xmlschemadatatypevariety/) value for the simple type. ```cpp virtual XmlSchemaDatatypeVariety System::Xml::Schema::XmlSchemaDatatype::get_Variety() @@ -19,7 +19,7 @@ virtual XmlSchemaDatatypeVariety System::Xml::Schema::XmlSchemaDatatype::get_Var ### ReturnValue -The XmlSchemaDatatypeVariety value for the simple type. +The [XmlSchemaDatatypeVariety](../../xmlschemadatatypevariety/) value for the simple type. ## See Also diff --git a/english/cpp/system.xml.schema/xmlschemainfo/_index.md b/english/cpp/system.xml.schema/xmlschemainfo/_index.md index c4226f1308..a9f51da8e6 100644 --- a/english/cpp/system.xml.schema/xmlschemainfo/_index.md +++ b/english/cpp/system.xml.schema/xmlschemainfo/_index.md @@ -20,22 +20,22 @@ class XmlSchemaInfo : public System::Xml::Schema::IXmlSchemaInfo | Method | Description | | --- | --- | -| [get_ContentType](./get_contenttype/)() | Returns the XmlSchemaContentType object that corresponds to the content type of this validated XML node. | +| [get_ContentType](./get_contenttype/)() | Returns the [XmlSchemaContentType](../xmlschemacontenttype/) object that corresponds to the content type of this validated XML node. | | [get_IsDefault](./get_isdefault/)() override | Returns a value indicating if this validated XML node was set as the result of a default being applied during XML [Schema](../) Definition Language (XSD) schema validation. | | [get_IsNil](./get_isnil/)() override | Returns a value indicating if the value for this validated XML node is **nil**. | | [get_MemberType](./get_membertype/)() override | Returns the dynamic schema type for this validated XML node. | | [get_SchemaAttribute](./get_schemaattribute/)() override | Returns the compiled [XmlSchemaAttribute](../xmlschemaattribute/) object that corresponds to this validated XML node. | | [get_SchemaElement](./get_schemaelement/)() override | Returns the compiled [XmlSchemaElement](../xmlschemaelement/) object that corresponds to this validated XML node. | | [get_SchemaType](./get_schematype/)() override | Returns the static XML [Schema](../) Definition Language (XSD) schema type of this validated XML node. | -| [get_Validity](./get_validity/)() override | Returns the XmlSchemaValidity value of this validated XML node. | -| [set_ContentType](./set_contenttype/)(XmlSchemaContentType) | Sets the XmlSchemaContentType object that corresponds to the content type of this validated XML node. | +| [get_Validity](./get_validity/)() override | Returns the [XmlSchemaValidity](../xmlschemavalidity/) value of this validated XML node. | +| [set_ContentType](./set_contenttype/)(XmlSchemaContentType) | Sets the [XmlSchemaContentType](../xmlschemacontenttype/) object that corresponds to the content type of this validated XML node. | | [set_IsDefault](./set_isdefault/)(bool) | Sets a value indicating if this validated XML node was set as the result of a default being applied during XML [Schema](../) Definition Language (XSD) schema validation. | | [set_IsNil](./set_isnil/)(bool) | Sets a value indicating if the value for this validated XML node is **nil**. | | [set_MemberType](./set_membertype/)(const SharedPtr\\&) | Sets the dynamic schema type for this validated XML node. | | [set_SchemaAttribute](./set_schemaattribute/)(const SharedPtr\\&) | Sets the compiled [XmlSchemaAttribute](../xmlschemaattribute/) object that corresponds to this validated XML node. | | [set_SchemaElement](./set_schemaelement/)(const SharedPtr\\&) | Sets the compiled [XmlSchemaElement](../xmlschemaelement/) object that corresponds to this validated XML node. | | [set_SchemaType](./set_schematype/)(const SharedPtr\\&) | Sets the static XML [Schema](../) Definition Language (XSD) schema type of this validated XML node. | -| [set_Validity](./set_validity/)(XmlSchemaValidity) | Sets the XmlSchemaValidity value of this validated XML node. | +| [set_Validity](./set_validity/)(XmlSchemaValidity) | Sets the [XmlSchemaValidity](../xmlschemavalidity/) value of this validated XML node. | | [XmlSchemaInfo](./xmlschemainfo/)() | Initializes a new instance of the [XmlSchemaInfo](./) class. | ## Typedefs diff --git a/english/cpp/system.xml.schema/xmlschemainfo/get_contenttype/_index.md b/english/cpp/system.xml.schema/xmlschemainfo/get_contenttype/_index.md index 6bd1a8a014..f7fb6057bb 100644 --- a/english/cpp/system.xml.schema/xmlschemainfo/get_contenttype/_index.md +++ b/english/cpp/system.xml.schema/xmlschemainfo/get_contenttype/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.xml.schema/xmlschemainfo/get_contenttype/ ## XmlSchemaInfo::get_ContentType method -Returns the XmlSchemaContentType object that corresponds to the content type of this validated XML node. +Returns the [XmlSchemaContentType](../../xmlschemacontenttype/) object that corresponds to the content type of this validated XML node. ```cpp XmlSchemaContentType System::Xml::Schema::XmlSchemaInfo::get_ContentType() @@ -19,7 +19,7 @@ XmlSchemaContentType System::Xml::Schema::XmlSchemaInfo::get_ContentType() ### ReturnValue -An XmlSchemaContentType object. +An [XmlSchemaContentType](../../xmlschemacontenttype/) object. ## See Also diff --git a/english/cpp/system.xml.schema/xmlschemainfo/get_validity/_index.md b/english/cpp/system.xml.schema/xmlschemainfo/get_validity/_index.md index d948b791c0..a24dbcc8ce 100644 --- a/english/cpp/system.xml.schema/xmlschemainfo/get_validity/_index.md +++ b/english/cpp/system.xml.schema/xmlschemainfo/get_validity/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.xml.schema/xmlschemainfo/get_validity/ ## XmlSchemaInfo::get_Validity method -Returns the XmlSchemaValidity value of this validated XML node. +Returns the [XmlSchemaValidity](../../xmlschemavalidity/) value of this validated XML node. ```cpp XmlSchemaValidity System::Xml::Schema::XmlSchemaInfo::get_Validity() override @@ -19,7 +19,7 @@ XmlSchemaValidity System::Xml::Schema::XmlSchemaInfo::get_Validity() override ### ReturnValue -An XmlSchemaValidity value. +An [XmlSchemaValidity](../../xmlschemavalidity/) value. ## See Also diff --git a/english/cpp/system.xml.schema/xmlschemainfo/set_contenttype/_index.md b/english/cpp/system.xml.schema/xmlschemainfo/set_contenttype/_index.md index 61bf718745..f22091aff9 100644 --- a/english/cpp/system.xml.schema/xmlschemainfo/set_contenttype/_index.md +++ b/english/cpp/system.xml.schema/xmlschemainfo/set_contenttype/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.xml.schema/xmlschemainfo/set_contenttype/ ## XmlSchemaInfo::set_ContentType method -Sets the XmlSchemaContentType object that corresponds to the content type of this validated XML node. +Sets the [XmlSchemaContentType](../../xmlschemacontenttype/) object that corresponds to the content type of this validated XML node. ```cpp void System::Xml::Schema::XmlSchemaInfo::set_ContentType(XmlSchemaContentType value) diff --git a/english/cpp/system.xml.schema/xmlschemainfo/set_validity/_index.md b/english/cpp/system.xml.schema/xmlschemainfo/set_validity/_index.md index b7bd59ee17..d64f67ca09 100644 --- a/english/cpp/system.xml.schema/xmlschemainfo/set_validity/_index.md +++ b/english/cpp/system.xml.schema/xmlschemainfo/set_validity/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.xml.schema/xmlschemainfo/set_validity/ ## XmlSchemaInfo::set_Validity method -Sets the XmlSchemaValidity value of this validated XML node. +Sets the [XmlSchemaValidity](../../xmlschemavalidity/) value of this validated XML node. ```cpp void System::Xml::Schema::XmlSchemaInfo::set_Validity(XmlSchemaValidity value) diff --git a/english/cpp/system.xml.schema/xmlschemaset/add/_index.md b/english/cpp/system.xml.schema/xmlschemaset/add/_index.md index 2eaf0e188a..41cba21350 100644 --- a/english/cpp/system.xml.schema/xmlschemaset/add/_index.md +++ b/english/cpp/system.xml.schema/xmlschemaset/add/_index.md @@ -23,7 +23,7 @@ SharedPtr System::Xml::Schema::XmlSchemaSet::Add(const SharedPtr System::Xml::Schema::XmlSchemaSet::Add(String targetNamespa ### ReturnValue -An [XmlSchema](../../xmlschema/) object if the schema is valid. If the schema is not valid and a ValidationEventHandler is specified, then **nullptr** is returned and the appropriate validation event is raised. Otherwise, an XmlSchemaException is thrown. +An [XmlSchema](../../xmlschema/) object if the schema is valid. If the schema is not valid and a [ValidationEventHandler](../../validationeventhandler/) is specified, then **nullptr** is returned and the appropriate validation event is raised. Otherwise, an [XmlSchemaException](../../xmlschemaexception/) is thrown. ## See Also @@ -98,7 +98,7 @@ SharedPtr System::Xml::Schema::XmlSchemaSet::Add(String targetNamespa ### ReturnValue -An [XmlSchema](../../xmlschema/) object if the schema is valid. If the schema is not valid and a ValidationEventHandler is specified, then **nullptr** is returned and the appropriate validation event is raised. Otherwise, an XmlSchemaException is thrown. +An [XmlSchema](../../xmlschema/) object if the schema is valid. If the schema is not valid and a [ValidationEventHandler](../../validationeventhandler/) is specified, then **nullptr** is returned and the appropriate validation event is raised. Otherwise, an [XmlSchemaException](../../xmlschemaexception/) is thrown. ## See Also diff --git a/english/cpp/system.xml.schema/xmlschemaset/reprocess/_index.md b/english/cpp/system.xml.schema/xmlschemaset/reprocess/_index.md index 8b6caa87ab..49dc6fba1f 100644 --- a/english/cpp/system.xml.schema/xmlschemaset/reprocess/_index.md +++ b/english/cpp/system.xml.schema/xmlschemaset/reprocess/_index.md @@ -23,7 +23,7 @@ SharedPtr System::Xml::Schema::XmlSchemaSet::Reprocess(SharedPtr void System::Xml::Schema::XmlSchemaSet::ValidationEventHandle | Parameter | Type | Description | | --- | --- | --- | -| value | Args... | A bound or static method or ValidationEventHandler instance. | +| value | Args... | A bound or static method or [ValidationEventHandler](../../validationeventhandler/) instance. | ## See Also diff --git a/english/cpp/system.xml.schema/xmlschemaset/validationeventhandler_remove/_index.md b/english/cpp/system.xml.schema/xmlschemaset/validationeventhandler_remove/_index.md index acf3e37cc0..dadc4d5a69 100644 --- a/english/cpp/system.xml.schema/xmlschemaset/validationeventhandler_remove/_index.md +++ b/english/cpp/system.xml.schema/xmlschemaset/validationeventhandler_remove/_index.md @@ -19,7 +19,7 @@ template void System::Xml::Schema::XmlSchemaSet::ValidationEventHandle | Parameter | Type | Description | | --- | --- | --- | -| value | Args... | A bound or static method or ValidationEventHandler instance. | +| value | Args... | A bound or static method or [ValidationEventHandler](../../validationeventhandler/) instance. | ## See Also diff --git a/english/cpp/system.xml.schema/xmlschematype/_index.md b/english/cpp/system.xml.schema/xmlschematype/_index.md index fac8c615fa..a565ef9b3c 100644 --- a/english/cpp/system.xml.schema/xmlschematype/_index.md +++ b/english/cpp/system.xml.schema/xmlschematype/_index.md @@ -29,7 +29,7 @@ class XmlSchemaType : public System::Xml::Schema::XmlSchemaAnnotated | virtual [get_IsMixed](./get_ismixed/)() | Returns a value indicating if this type has a mixed content model. This call is only valid in a complex type. | | [get_Name](./get_name/)() | Returns the name of the type. | | [get_QualifiedName](./get_qualifiedname/)() | Returns the qualified name for the type built from the **Name** attribute of this type. This is a post-schema-compilation value. | -| [get_TypeCode](./get_typecode/)() | Returns the XmlTypeCode of the type. | +| [get_TypeCode](./get_typecode/)() | Returns the [XmlTypeCode](../xmltypecode/) of the type. | | static [GetBuiltInComplexType](./getbuiltincomplextype/)(XmlTypeCode) | Returns an [XmlSchemaComplexType](../xmlschemacomplextype/) that represents the built-in complex type of the complex type specified. | | static [GetBuiltInComplexType](./getbuiltincomplextype/)(const SharedPtr\\&) | Returns an [XmlSchemaComplexType](../xmlschemacomplextype/) that represents the built-in complex type of the complex type specified by qualified name. | | static [GetBuiltInSimpleType](./getbuiltinsimpletype/)(const SharedPtr\\&) | Returns an [XmlSchemaSimpleType](../xmlschemasimpletype/) that represents the built-in simple type of the simple type that is specified by the qualified name. | diff --git a/english/cpp/system.xml.schema/xmlschematype/get_derivedby/_index.md b/english/cpp/system.xml.schema/xmlschematype/get_derivedby/_index.md index 2564904dd0..141639c9a9 100644 --- a/english/cpp/system.xml.schema/xmlschematype/get_derivedby/_index.md +++ b/english/cpp/system.xml.schema/xmlschematype/get_derivedby/_index.md @@ -19,7 +19,7 @@ XmlSchemaDerivationMethod System::Xml::Schema::XmlSchemaType::get_DerivedBy() ### ReturnValue -One of the valid XmlSchemaDerivationMethod values. +One of the valid [XmlSchemaDerivationMethod](../../xmlschemaderivationmethod/) values. ## See Also diff --git a/english/cpp/system.xml.schema/xmlschematype/get_final/_index.md b/english/cpp/system.xml.schema/xmlschematype/get_final/_index.md index 14fdd03b08..42669e4f0b 100644 --- a/english/cpp/system.xml.schema/xmlschematype/get_final/_index.md +++ b/english/cpp/system.xml.schema/xmlschematype/get_final/_index.md @@ -19,7 +19,7 @@ XmlSchemaDerivationMethod System::Xml::Schema::XmlSchemaType::get_Final() ### ReturnValue -One of the valid XmlSchemaDerivationMethod values. The default is [XmlSchemaDerivationMethod::None](../../xmlschemaderivationmethod/). +One of the valid [XmlSchemaDerivationMethod](../../xmlschemaderivationmethod/) values. The default is [XmlSchemaDerivationMethod::None](../../xmlschemaderivationmethod/). ## See Also diff --git a/english/cpp/system.xml.schema/xmlschematype/get_typecode/_index.md b/english/cpp/system.xml.schema/xmlschematype/get_typecode/_index.md index 504914453a..0a3717b091 100644 --- a/english/cpp/system.xml.schema/xmlschematype/get_typecode/_index.md +++ b/english/cpp/system.xml.schema/xmlschematype/get_typecode/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.xml.schema/xmlschematype/get_typecode/ ## XmlSchemaType::get_TypeCode method -Returns the XmlTypeCode of the type. +Returns the [XmlTypeCode](../../xmltypecode/) of the type. ```cpp XmlTypeCode System::Xml::Schema::XmlSchemaType::get_TypeCode() @@ -19,7 +19,7 @@ XmlTypeCode System::Xml::Schema::XmlSchemaType::get_TypeCode() ### ReturnValue -One of the XmlTypeCode values. +One of the [XmlTypeCode](../../xmltypecode/) values. ## See Also diff --git a/english/cpp/system.xml.schema/xmlschematype/getbuiltincomplextype/_index.md b/english/cpp/system.xml.schema/xmlschematype/getbuiltincomplextype/_index.md index 64aa5fcf50..e7dad24668 100644 --- a/english/cpp/system.xml.schema/xmlschematype/getbuiltincomplextype/_index.md +++ b/english/cpp/system.xml.schema/xmlschematype/getbuiltincomplextype/_index.md @@ -45,7 +45,7 @@ static SharedPtr System::Xml::Schema::XmlSchemaType::GetBu | Parameter | Type | Description | | --- | --- | --- | -| typeCode | XmlTypeCode | One of the XmlTypeCode values representing the complex type. | +| typeCode | XmlTypeCode | One of the [XmlTypeCode](../../xmltypecode/) values representing the complex type. | ### ReturnValue diff --git a/english/cpp/system.xml.schema/xmlschematype/getbuiltinsimpletype/_index.md b/english/cpp/system.xml.schema/xmlschematype/getbuiltinsimpletype/_index.md index 1e7b07e1db..10ae86b14c 100644 --- a/english/cpp/system.xml.schema/xmlschematype/getbuiltinsimpletype/_index.md +++ b/english/cpp/system.xml.schema/xmlschematype/getbuiltinsimpletype/_index.md @@ -45,7 +45,7 @@ static SharedPtr System::Xml::Schema::XmlSchemaType::GetBui | Parameter | Type | Description | | --- | --- | --- | -| typeCode | XmlTypeCode | One of the XmlTypeCode values representing the simple type. | +| typeCode | XmlTypeCode | One of the [XmlTypeCode](../../xmltypecode/) values representing the simple type. | ### ReturnValue diff --git a/english/cpp/system.xml.schema/xmlschematype/isderivedfrom/_index.md b/english/cpp/system.xml.schema/xmlschematype/isderivedfrom/_index.md index 319cb7d704..dd7eeda1f5 100644 --- a/english/cpp/system.xml.schema/xmlschematype/isderivedfrom/_index.md +++ b/english/cpp/system.xml.schema/xmlschematype/isderivedfrom/_index.md @@ -21,7 +21,7 @@ static bool System::Xml::Schema::XmlSchemaType::IsDerivedFrom(SharedPtr | The derived [XmlSchemaType](../) to test. | | baseType | const SharedPtr\\& | The base [XmlSchemaType](../) to test the derived [XmlSchemaType](../) against. | -| except | XmlSchemaDerivationMethod | One of the XmlSchemaDerivationMethod values representing a type derivation method to exclude from testing. | +| except | XmlSchemaDerivationMethod | One of the [XmlSchemaDerivationMethod](../../xmlschemaderivationmethod/) values representing a type derivation method to exclude from testing. | ### ReturnValue diff --git a/english/cpp/system.xml.schema/xmlschemavalidator/_index.md b/english/cpp/system.xml.schema/xmlschemavalidator/_index.md index a1362f3ca6..002f15d960 100644 --- a/english/cpp/system.xml.schema/xmlschemavalidator/_index.md +++ b/english/cpp/system.xml.schema/xmlschemavalidator/_index.md @@ -43,9 +43,9 @@ class XmlSchemaValidator : public System::Object | [ValidateEndElement](./validateendelement/)(const SharedPtr\\&, const SharedPtr\\&) | Verifies if the text content of the element specified is valid according to its data type. | | [ValidateEndOfAttributes](./validateendofattributes/)(const SharedPtr\\&) | Verifies whether all the required attributes in the element context are present and prepares the [XmlSchemaValidator](./) object to validate the child content of the element. | | [ValidateText](./validatetext/)(const String\&) | Validates whether the text **string** specified is allowed in the current element context, and accumulates the text for validation if the current element has simple content. | -| [ValidateText](./validatetext/)(XmlValueGetter) | Validates whether the text returned by the XmlValueGetter object specified is allowed in the current element context, and accumulates the text for validation if the current element has simple content. | +| [ValidateText](./validatetext/)(XmlValueGetter) | Validates whether the text returned by the [XmlValueGetter](../xmlvaluegetter/) object specified is allowed in the current element context, and accumulates the text for validation if the current element has simple content. | | [ValidateWhitespace](./validatewhitespace/)(const String\&) | Validates whether the white space in the **string** specified is allowed in the current element context, and accumulates the white space for validation if the current element has simple content. | -| [ValidateWhitespace](./validatewhitespace/)(XmlValueGetter) | Validates whether the white space returned by the XmlValueGetter object specified is allowed in the current element context, and accumulates the white space for validation if the current element has simple content. | +| [ValidateWhitespace](./validatewhitespace/)(XmlValueGetter) | Validates whether the white space returned by the [XmlValueGetter](../xmlvaluegetter/) object specified is allowed in the current element context, and accumulates the white space for validation if the current element has simple content. | | [XmlSchemaValidator](./xmlschemavalidator/)(const SharedPtr\\&, const SharedPtr\\&, const SharedPtr\\&, XmlSchemaValidationFlags) | Initializes a new instance of the [XmlSchemaValidator](./) class. | ## Typedefs diff --git a/english/cpp/system.xml.schema/xmlschemavalidator/validateattribute/_index.md b/english/cpp/system.xml.schema/xmlschemavalidator/validateattribute/_index.md index 47ecf3e7f9..d99f19e516 100644 --- a/english/cpp/system.xml.schema/xmlschemavalidator/validateattribute/_index.md +++ b/english/cpp/system.xml.schema/xmlschemavalidator/validateattribute/_index.md @@ -51,7 +51,7 @@ SharedPtr System::Xml::Schema::XmlSchemaValidator::ValidateAttribute(con | --- | --- | --- | | localName | const String\& | The local name of the attribute to validate. | | namespaceUri | const String\& | The namespace URI of the attribute to validate. | -| attributeValue | XmlValueGetter | An XmlValueGetter callback used to pass the attribute's value as a type compatible with the XML [Schema](../../) Definition Language (XSD) type of the attribute. | +| attributeValue | XmlValueGetter | An [XmlValueGetter](../../xmlvaluegetter/) callback used to pass the attribute's value as a type compatible with the XML [Schema](../../) Definition Language (XSD) type of the attribute. | | schemaInfo | const SharedPtr\\& | An [XmlSchemaInfo](../../xmlschemainfo/) object whose properties are set on successful validation of the attribute. This parameter and can be **nullptr**. | ### ReturnValue diff --git a/english/cpp/system.xml.schema/xmlschemavalidator/validatetext/_index.md b/english/cpp/system.xml.schema/xmlschemavalidator/validatetext/_index.md index 290beafde3..8f081b9a86 100644 --- a/english/cpp/system.xml.schema/xmlschemavalidator/validatetext/_index.md +++ b/english/cpp/system.xml.schema/xmlschemavalidator/validatetext/_index.md @@ -30,7 +30,7 @@ void System::Xml::Schema::XmlSchemaValidator::ValidateText(const String &element ## XmlSchemaValidator::ValidateText(XmlValueGetter) method -Validates whether the text returned by the XmlValueGetter object specified is allowed in the current element context, and accumulates the text for validation if the current element has simple content. +Validates whether the text returned by the [XmlValueGetter](../../xmlvaluegetter/) object specified is allowed in the current element context, and accumulates the text for validation if the current element has simple content. ```cpp void System::Xml::Schema::XmlSchemaValidator::ValidateText(XmlValueGetter elementValue) @@ -39,7 +39,7 @@ void System::Xml::Schema::XmlSchemaValidator::ValidateText(XmlValueGetter elemen | Parameter | Type | Description | | --- | --- | --- | -| elementValue | XmlValueGetter | An XmlValueGetter callback used to pass the text value as a type compatible with the XML [Schema](../../) Definition Language (XSD) type of the attribute. | +| elementValue | XmlValueGetter | An [XmlValueGetter](../../xmlvaluegetter/) callback used to pass the text value as a type compatible with the XML [Schema](../../) Definition Language (XSD) type of the attribute. | ## See Also diff --git a/english/cpp/system.xml.schema/xmlschemavalidator/validatewhitespace/_index.md b/english/cpp/system.xml.schema/xmlschemavalidator/validatewhitespace/_index.md index 664ec2b306..8a60eebae6 100644 --- a/english/cpp/system.xml.schema/xmlschemavalidator/validatewhitespace/_index.md +++ b/english/cpp/system.xml.schema/xmlschemavalidator/validatewhitespace/_index.md @@ -30,7 +30,7 @@ void System::Xml::Schema::XmlSchemaValidator::ValidateWhitespace(const String &e ## XmlSchemaValidator::ValidateWhitespace(XmlValueGetter) method -Validates whether the white space returned by the XmlValueGetter object specified is allowed in the current element context, and accumulates the white space for validation if the current element has simple content. +Validates whether the white space returned by the [XmlValueGetter](../../xmlvaluegetter/) object specified is allowed in the current element context, and accumulates the white space for validation if the current element has simple content. ```cpp void System::Xml::Schema::XmlSchemaValidator::ValidateWhitespace(XmlValueGetter elementValue) @@ -39,7 +39,7 @@ void System::Xml::Schema::XmlSchemaValidator::ValidateWhitespace(XmlValueGetter | Parameter | Type | Description | | --- | --- | --- | -| elementValue | XmlValueGetter | An XmlValueGetter callback used to pass the white space value as a type compatible with the XML [Schema](../../) Definition Language (XSD) type of the attribute. | +| elementValue | XmlValueGetter | An [XmlValueGetter](../../xmlvaluegetter/) callback used to pass the white space value as a type compatible with the XML [Schema](../../) Definition Language (XSD) type of the attribute. | ## See Also diff --git a/english/cpp/system.xml.schema/xmlschemavalidator/xmlschemavalidator/_index.md b/english/cpp/system.xml.schema/xmlschemavalidator/xmlschemavalidator/_index.md index 18bd94869d..99afccd3d9 100644 --- a/english/cpp/system.xml.schema/xmlschemavalidator/xmlschemavalidator/_index.md +++ b/english/cpp/system.xml.schema/xmlschemavalidator/xmlschemavalidator/_index.md @@ -22,7 +22,7 @@ System::Xml::Schema::XmlSchemaValidator::XmlSchemaValidator(const SharedPtr\& | An [XmlNameTable](../../../system.xml/xmlnametable/) object containing element and attribute names as atomized strings. | | schemas | const SharedPtr\\& | An [XmlSchemaSet](../../xmlschemaset/) object containing the XML [Schema](../../) Definition Language (XSD) schemas used for validation. | | namespaceResolver | const SharedPtr\\& | An [IXmlNamespaceResolver](../../../system.xml/ixmlnamespaceresolver/) object used for resolving namespaces encountered during validation. | -| validationFlags | XmlSchemaValidationFlags | An XmlSchemaValidationFlags value specifying schema validation options. | +| validationFlags | XmlSchemaValidationFlags | An [XmlSchemaValidationFlags](../../xmlschemavalidationflags/) value specifying schema validation options. | ## See Also diff --git a/english/cpp/system.xml.serialization/xmlserializationreader/initialize/_index.md b/english/cpp/system.xml.serialization/xmlserializationreader/initialize/_index.md index 8e630298b7..0ac753100b 100644 --- a/english/cpp/system.xml.serialization/xmlserializationreader/initialize/_index.md +++ b/english/cpp/system.xml.serialization/xmlserializationreader/initialize/_index.md @@ -20,7 +20,7 @@ void System::Xml::Serialization::XmlSerializationReader::Initialize(System::Shar | Parameter | Type | Description | | --- | --- | --- | | reader | System::SharedPtr\ | Reader to use. | -| eventSource | System::SharedPtr\ | Event source to use. | +| eventSource | System::SharedPtr\ | [Event](../../../system/event/) source to use. | ## See Also diff --git a/english/cpp/system.xml.xpath/xpathdocument/xpathdocument/_index.md b/english/cpp/system.xml.xpath/xpathdocument/xpathdocument/_index.md index 1acea43a96..5cf520e85f 100644 --- a/english/cpp/system.xml.xpath/xpathdocument/xpathdocument/_index.md +++ b/english/cpp/system.xml.xpath/xpathdocument/xpathdocument/_index.md @@ -83,7 +83,7 @@ System::Xml::XPath::XPathDocument::XPathDocument(const SharedPtr &rea | Parameter | Type | Description | | --- | --- | --- | | reader | const SharedPtr\\& | The [XmlReader](../../../system.xml/xmlreader/) object that contains the XML data. | -| space | XmlSpace | An XmlSpace object. | +| space | XmlSpace | An [XmlSpace](../../../system.xml/xmlspace/) object. | ## See Also @@ -126,7 +126,7 @@ System::Xml::XPath::XPathDocument::XPathDocument(const String &uri, XmlSpace spa | Parameter | Type | Description | | --- | --- | --- | | uri | const String\& | The path of the file that contains the XML data. | -| space | XmlSpace | An XmlSpace object. | +| space | XmlSpace | An [XmlSpace](../../../system.xml/xmlspace/) object. | ## See Also diff --git a/english/cpp/system.xml.xpath/xpathexpression/addsort/_index.md b/english/cpp/system.xml.xpath/xpathexpression/addsort/_index.md index 80129b5b42..7492b72bf7 100644 --- a/english/cpp/system.xml.xpath/xpathexpression/addsort/_index.md +++ b/english/cpp/system.xml.xpath/xpathexpression/addsort/_index.md @@ -43,10 +43,10 @@ virtual void System::Xml::XPath::XPathExpression::AddSort(SharedPtr expr | Parameter | Type | Description | | --- | --- | --- | | expr | SharedPtr\ | An object representing the sort key. This can be the **string** value of the node or an [XPathExpression](../) object with a compiled [XPath](../../) expression. | -| order | XmlSortOrder | An XmlSortOrder value indicating the sort order. | -| caseOrder | XmlCaseOrder | An XmlCaseOrder value indicating how to sort uppercase and lowercase letters. | +| order | XmlSortOrder | An [XmlSortOrder](../../xmlsortorder/) value indicating the sort order. | +| caseOrder | XmlCaseOrder | An [XmlCaseOrder](../../xmlcaseorder/) value indicating how to sort uppercase and lowercase letters. | | lang | String | The language to use for comparison. Uses the [Globalization::CultureInfo](../../../system.globalization/cultureinfo/) class that can be passed to the [String::Compare](../../../system/string/compare/) method for the language types, for example, "us-en" for U.S. English. If an empty string is specified, the system environment is used to determine the [Globalization::CultureInfo](../../../system.globalization/cultureinfo/). | -| dataType | XmlDataType | An XmlDataType value indicating the sort order for the data type. | +| dataType | XmlDataType | An [XmlDataType](../../xmldatatype/) value indicating the sort order for the data type. | ## See Also diff --git a/english/cpp/system.xml.xpath/xpathexpression/get_returntype/_index.md b/english/cpp/system.xml.xpath/xpathexpression/get_returntype/_index.md index 98d492f04f..8cf571a943 100644 --- a/english/cpp/system.xml.xpath/xpathexpression/get_returntype/_index.md +++ b/english/cpp/system.xml.xpath/xpathexpression/get_returntype/_index.md @@ -19,7 +19,7 @@ virtual XPathResultType System::Xml::XPath::XPathExpression::get_ReturnType()=0 ### ReturnValue -An XPathResultType value representing the result type of the [XPath](../../) expression. +An [XPathResultType](../../xpathresulttype/) value representing the result type of the [XPath](../../) expression. ## See Also diff --git a/english/cpp/system.xml.xpath/xpathnavigator/_index.md b/english/cpp/system.xml.xpath/xpathnavigator/_index.md index 7b6e51212a..56390c3712 100644 --- a/english/cpp/system.xml.xpath/xpathnavigator/_index.md +++ b/english/cpp/system.xml.xpath/xpathnavigator/_index.md @@ -52,7 +52,7 @@ class XPathNavigator : public System::Xml::XPath::XPathItem, | virtual [get_NamespaceURI](./get_namespaceuri/)() | When overridden in a derived class, gets the namespace URI of the current node. | | virtual [get_NameTable](./get_nametable/)() | When overridden in a derived class, gets the [XmlNameTable](../../system.xml/xmlnametable/) of the [XPathNavigator](./). | | static [get_NavigatorComparer](./get_navigatorcomparer/)() | Returns an [Collections::IEqualityComparer](../../system.collections/iequalitycomparer/) used for equality comparison of [XPathNavigator](./) objects. | -| virtual [get_NodeType](./get_nodetype/)() | When overridden in a derived class, gets the XPathNodeType of the current node. | +| virtual [get_NodeType](./get_nodetype/)() | When overridden in a derived class, gets the [XPathNodeType](../xpathnodetype/) of the current node. | | virtual [get_OuterXml](./get_outerxml/)() | Returns the markup representing the opening and closing tags of the current node and its child nodes. | | virtual [get_Prefix](./get_prefix/)() | When overridden in a derived class, gets the namespace prefix associated with the current node. | | virtual [get_SchemaInfo](./get_schemainfo/)() | Returns the schema information that has been assigned to the current node as a result of schema validation. | @@ -88,23 +88,23 @@ class XPathNavigator : public System::Xml::XPath::XPathItem, | virtual [MoveTo](./moveto/)(SharedPtr\) | When overridden in a derived class, moves the [XPathNavigator](./) to the same position as the specified [XPathNavigator](./). | | virtual [MoveToAttribute](./movetoattribute/)(String, String) | Moves the [XPathNavigator](./) to the attribute with the matching local name and namespace URI. | | virtual [MoveToChild](./movetochild/)(String, String) | Moves the [XPathNavigator](./) to the child node with the local name and namespace URI specified. | -| virtual [MoveToChild](./movetochild/)(XPathNodeType) | Moves the [XPathNavigator](./) to the child node of the XPathNodeType specified. | +| virtual [MoveToChild](./movetochild/)(XPathNodeType) | Moves the [XPathNavigator](./) to the child node of the [XPathNodeType](../xpathnodetype/) specified. | | virtual [MoveToFirst](./movetofirst/)() | Moves the [XPathNavigator](./) to the first sibling node of the current node. | | virtual [MoveToFirstAttribute](./movetofirstattribute/)() | When overridden in a derived class, moves the [XPathNavigator](./) to the first attribute of the current node. | | virtual [MoveToFirstChild](./movetofirstchild/)() | When overridden in a derived class, moves the [XPathNavigator](./) to the first child node of the current node. | -| virtual [MoveToFirstNamespace](./movetofirstnamespace/)(XPathNamespaceScope) | When overridden in a derived class, moves the [XPathNavigator](./) to the first namespace node that matches the XPathNamespaceScope specified. | +| virtual [MoveToFirstNamespace](./movetofirstnamespace/)(XPathNamespaceScope) | When overridden in a derived class, moves the [XPathNavigator](./) to the first namespace node that matches the [XPathNamespaceScope](../xpathnamespacescope/) specified. | | [MoveToFirstNamespace](./movetofirstnamespace/)() | Moves the [XPathNavigator](./) to first namespace node of the current node. | | virtual [MoveToFollowing](./movetofollowing/)(String, String) | Moves the [XPathNavigator](./) to the element with the local name and namespace URI specified in document order. | | virtual [MoveToFollowing](./movetofollowing/)(String, String, SharedPtr\) | Moves the [XPathNavigator](./) to the element with the local name and namespace URI specified, to the boundary specified, in document order. | -| virtual [MoveToFollowing](./movetofollowing/)(XPathNodeType) | Moves the [XPathNavigator](./) to the following element of the XPathNodeType specified in document order. | -| virtual [MoveToFollowing](./movetofollowing/)(XPathNodeType, SharedPtr\) | Moves the [XPathNavigator](./) to the following element of the XPathNodeType specified, to the boundary specified, in document order. | +| virtual [MoveToFollowing](./movetofollowing/)(XPathNodeType) | Moves the [XPathNavigator](./) to the following element of the [XPathNodeType](../xpathnodetype/) specified in document order. | +| virtual [MoveToFollowing](./movetofollowing/)(XPathNodeType, SharedPtr\) | Moves the [XPathNavigator](./) to the following element of the [XPathNodeType](../xpathnodetype/) specified, to the boundary specified, in document order. | | virtual [MoveToId](./movetoid/)(String) | When overridden in a derived class, moves to the node that has an attribute of type **ID** whose value matches the specified [String](../../system/string/). | | virtual [MoveToNamespace](./movetonamespace/)(String) | Moves the [XPathNavigator](./) to the namespace node with the specified namespace prefix. | | virtual [MoveToNext](./movetonext/)() | When overridden in a derived class, moves the [XPathNavigator](./) to the next sibling node of the current node. | | virtual [MoveToNext](./movetonext/)(String, String) | Moves the [XPathNavigator](./) to the next sibling node with the local name and namespace URI specified. | -| virtual [MoveToNext](./movetonext/)(XPathNodeType) | Moves the [XPathNavigator](./) to the next sibling node of the current node that matches the XPathNodeType specified. | +| virtual [MoveToNext](./movetonext/)(XPathNodeType) | Moves the [XPathNavigator](./) to the next sibling node of the current node that matches the [XPathNodeType](../xpathnodetype/) specified. | | virtual [MoveToNextAttribute](./movetonextattribute/)() | When overridden in a derived class, moves the [XPathNavigator](./) to the next attribute. | -| virtual [MoveToNextNamespace](./movetonextnamespace/)(XPathNamespaceScope) | When overridden in a derived class, moves the [XPathNavigator](./) to the next namespace node matching the XPathNamespaceScope specified. | +| virtual [MoveToNextNamespace](./movetonextnamespace/)(XPathNamespaceScope) | When overridden in a derived class, moves the [XPathNavigator](./) to the next namespace node matching the [XPathNamespaceScope](../xpathnamespacescope/) specified. | | [MoveToNextNamespace](./movetonextnamespace/)() | Moves the [XPathNavigator](./) to the next namespace node. | | virtual [MoveToParent](./movetoparent/)() | When overridden in a derived class, moves the [XPathNavigator](./) to the parent node of the current node. | | virtual [MoveToPrevious](./movetoprevious/)() | When overridden in a derived class, moves the [XPathNavigator](./) to the previous sibling node of the current node. | @@ -122,11 +122,11 @@ class XPathNavigator : public System::Xml::XPath::XPathItem, | virtual [Select](./select/)(String) | Selects a node set, using the specified [XPath](../) expression. | | virtual [Select](./select/)(String, SharedPtr\) | Selects a node set using the specified [XPath](../) expression with the [IXmlNamespaceResolver](../../system.xml/ixmlnamespaceresolver/) object specified to resolve namespace prefixes. | | virtual [Select](./select/)(SharedPtr\) | Selects a node set using the specified [XPathExpression](../xpathexpression/). | -| virtual [SelectAncestors](./selectancestors/)(XPathNodeType, bool) | Selects all the ancestor nodes of the current node that have a matching XPathNodeType. | +| virtual [SelectAncestors](./selectancestors/)(XPathNodeType, bool) | Selects all the ancestor nodes of the current node that have a matching [XPathNodeType](../xpathnodetype/). | | virtual [SelectAncestors](./selectancestors/)(String, String, bool) | Selects all the ancestor nodes of the current node that have the specified local name and namespace URI. | -| virtual [SelectChildren](./selectchildren/)(XPathNodeType) | Selects all the child nodes of the current node that have the matching XPathNodeType. | +| virtual [SelectChildren](./selectchildren/)(XPathNodeType) | Selects all the child nodes of the current node that have the matching [XPathNodeType](../xpathnodetype/). | | virtual [SelectChildren](./selectchildren/)(String, String) | Selects all the child nodes of the current node that have the local name and namespace URI specified. | -| virtual [SelectDescendants](./selectdescendants/)(XPathNodeType, bool) | Selects all the descendant nodes of the current node that have a matching XPathNodeType. | +| virtual [SelectDescendants](./selectdescendants/)(XPathNodeType, bool) | Selects all the descendant nodes of the current node that have a matching [XPathNodeType](../xpathnodetype/). | | virtual [SelectDescendants](./selectdescendants/)(String, String, bool) | Selects all the descendant nodes of the current node with the local name and namespace URI specified. | | virtual [SelectSingleNode](./selectsinglenode/)(String) | Selects a single node in the [XPathNavigator](./) using the specified [XPath](../) query. | | virtual [SelectSingleNode](./selectsinglenode/)(String, SharedPtr\) | Selects a single node in the [XPathNavigator](./) object using the specified [XPath](../) query with the [IXmlNamespaceResolver](../../system.xml/ixmlnamespaceresolver/) object specified to resolve namespace prefixes. | diff --git a/english/cpp/system.xml.xpath/xpathnavigator/compareposition/_index.md b/english/cpp/system.xml.xpath/xpathnavigator/compareposition/_index.md index 9e63524a00..94e9161184 100644 --- a/english/cpp/system.xml.xpath/xpathnavigator/compareposition/_index.md +++ b/english/cpp/system.xml.xpath/xpathnavigator/compareposition/_index.md @@ -23,7 +23,7 @@ virtual XmlNodeOrder System::Xml::XPath::XPathNavigator::ComparePosition(SharedP ### ReturnValue -An XmlNodeOrder value representing the comparative position of the two [XPathNavigator](../) objects. +An [XmlNodeOrder](../../../system.xml/xmlnodeorder/) value representing the comparative position of the two [XPathNavigator](../) objects. ## See Also diff --git a/english/cpp/system.xml.xpath/xpathnavigator/get_nodetype/_index.md b/english/cpp/system.xml.xpath/xpathnavigator/get_nodetype/_index.md index bf0392237a..c6dc63069b 100644 --- a/english/cpp/system.xml.xpath/xpathnavigator/get_nodetype/_index.md +++ b/english/cpp/system.xml.xpath/xpathnavigator/get_nodetype/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.xml.xpath/xpathnavigator/get_nodetype/ ## XPathNavigator::get_NodeType method -When overridden in a derived class, gets the XPathNodeType of the current node. +When overridden in a derived class, gets the [XPathNodeType](../../xpathnodetype/) of the current node. ```cpp virtual XPathNodeType System::Xml::XPath::XPathNavigator::get_NodeType()=0 @@ -19,7 +19,7 @@ virtual XPathNodeType System::Xml::XPath::XPathNavigator::get_NodeType()=0 ### ReturnValue -One of the XPathNodeType values representing the current node. +One of the [XPathNodeType](../../xpathnodetype/) values representing the current node. ## See Also diff --git a/english/cpp/system.xml.xpath/xpathnavigator/getnamespacesinscope/_index.md b/english/cpp/system.xml.xpath/xpathnavigator/getnamespacesinscope/_index.md index e27a3773c4..2f1b2439fd 100644 --- a/english/cpp/system.xml.xpath/xpathnavigator/getnamespacesinscope/_index.md +++ b/english/cpp/system.xml.xpath/xpathnavigator/getnamespacesinscope/_index.md @@ -19,7 +19,7 @@ SharedPtr> System::Xml::XPath: | Parameter | Type | Description | | --- | --- | --- | -| scope | XmlNamespaceScope | An XmlNamespaceScope value specifying the namespaces to return. | +| scope | XmlNamespaceScope | An [XmlNamespaceScope](../../../system.xml/xmlnamespacescope/) value specifying the namespaces to return. | ### ReturnValue diff --git a/english/cpp/system.xml.xpath/xpathnavigator/movetochild/_index.md b/english/cpp/system.xml.xpath/xpathnavigator/movetochild/_index.md index e011a4094f..0773ff85ed 100644 --- a/english/cpp/system.xml.xpath/xpathnavigator/movetochild/_index.md +++ b/english/cpp/system.xml.xpath/xpathnavigator/movetochild/_index.md @@ -35,7 +35,7 @@ virtual bool System::Xml::XPath::XPathNavigator::MoveToChild(String localName, S ## XPathNavigator::MoveToChild(XPathNodeType) method -Moves the [XPathNavigator](../) to the child node of the XPathNodeType specified. +Moves the [XPathNavigator](../) to the child node of the [XPathNodeType](../../xpathnodetype/) specified. ```cpp virtual bool System::Xml::XPath::XPathNavigator::MoveToChild(XPathNodeType type) @@ -44,7 +44,7 @@ virtual bool System::Xml::XPath::XPathNavigator::MoveToChild(XPathNodeType type) | Parameter | Type | Description | | --- | --- | --- | -| type | XPathNodeType | The XPathNodeType of the child node to move to. | +| type | XPathNodeType | The [XPathNodeType](../../xpathnodetype/) of the child node to move to. | ### ReturnValue diff --git a/english/cpp/system.xml.xpath/xpathnavigator/movetofirstnamespace/_index.md b/english/cpp/system.xml.xpath/xpathnavigator/movetofirstnamespace/_index.md index 5dae24274a..a2e41164b6 100644 --- a/english/cpp/system.xml.xpath/xpathnavigator/movetofirstnamespace/_index.md +++ b/english/cpp/system.xml.xpath/xpathnavigator/movetofirstnamespace/_index.md @@ -29,7 +29,7 @@ bool System::Xml::XPath::XPathNavigator::MoveToFirstNamespace() ## XPathNavigator::MoveToFirstNamespace(XPathNamespaceScope) method -When overridden in a derived class, moves the [XPathNavigator](../) to the first namespace node that matches the XPathNamespaceScope specified. +When overridden in a derived class, moves the [XPathNavigator](../) to the first namespace node that matches the [XPathNamespaceScope](../../xpathnamespacescope/) specified. ```cpp virtual bool System::Xml::XPath::XPathNavigator::MoveToFirstNamespace(XPathNamespaceScope namespaceScope)=0 @@ -38,7 +38,7 @@ virtual bool System::Xml::XPath::XPathNavigator::MoveToFirstNamespace(XPathNames | Parameter | Type | Description | | --- | --- | --- | -| namespaceScope | XPathNamespaceScope | An XPathNamespaceScope value describing the namespace scope. | +| namespaceScope | XPathNamespaceScope | An [XPathNamespaceScope](../../xpathnamespacescope/) value describing the namespace scope. | ### ReturnValue diff --git a/english/cpp/system.xml.xpath/xpathnavigator/movetofollowing/_index.md b/english/cpp/system.xml.xpath/xpathnavigator/movetofollowing/_index.md index b92a4e1ac4..ac3ac079d7 100644 --- a/english/cpp/system.xml.xpath/xpathnavigator/movetofollowing/_index.md +++ b/english/cpp/system.xml.xpath/xpathnavigator/movetofollowing/_index.md @@ -63,7 +63,7 @@ virtual bool System::Xml::XPath::XPathNavigator::MoveToFollowing(String localNam ## XPathNavigator::MoveToFollowing(XPathNodeType) method -Moves the [XPathNavigator](../) to the following element of the XPathNodeType specified in document order. +Moves the [XPathNavigator](../) to the following element of the [XPathNodeType](../../xpathnodetype/) specified in document order. ```cpp virtual bool System::Xml::XPath::XPathNavigator::MoveToFollowing(XPathNodeType type) @@ -72,7 +72,7 @@ virtual bool System::Xml::XPath::XPathNavigator::MoveToFollowing(XPathNodeType t | Parameter | Type | Description | | --- | --- | --- | -| type | XPathNodeType | The XPathNodeType of the element. The XPathNodeType cannot be [XPathNodeType::Attribute](../../xpathnodetype/) or [XPathNodeType::Namespace](../../xpathnodetype/). | +| type | XPathNodeType | The [XPathNodeType](../../xpathnodetype/) of the element. The [XPathNodeType](../../xpathnodetype/) cannot be [XPathNodeType::Attribute](../../xpathnodetype/) or [XPathNodeType::Namespace](../../xpathnodetype/). | ### ReturnValue @@ -87,7 +87,7 @@ virtual bool System::Xml::XPath::XPathNavigator::MoveToFollowing(XPathNodeType t ## XPathNavigator::MoveToFollowing(XPathNodeType, SharedPtr\) method -Moves the [XPathNavigator](../) to the following element of the XPathNodeType specified, to the boundary specified, in document order. +Moves the [XPathNavigator](../) to the following element of the [XPathNodeType](../../xpathnodetype/) specified, to the boundary specified, in document order. ```cpp virtual bool System::Xml::XPath::XPathNavigator::MoveToFollowing(XPathNodeType type, SharedPtr end) @@ -96,7 +96,7 @@ virtual bool System::Xml::XPath::XPathNavigator::MoveToFollowing(XPathNodeType t | Parameter | Type | Description | | --- | --- | --- | -| type | XPathNodeType | The XPathNodeType of the element. The XPathNodeType cannot be [XPathNodeType::Attribute](../../xpathnodetype/) or [XPathNodeType::Namespace](../../xpathnodetype/). | +| type | XPathNodeType | The [XPathNodeType](../../xpathnodetype/) of the element. The [XPathNodeType](../../xpathnodetype/) cannot be [XPathNodeType::Attribute](../../xpathnodetype/) or [XPathNodeType::Namespace](../../xpathnodetype/). | | end | SharedPtr\ | The [XPathNavigator](../) object positioned on the element boundary which the current [XPathNavigator](../) will not move past while searching for the following element. | ### ReturnValue diff --git a/english/cpp/system.xml.xpath/xpathnavigator/movetonext/_index.md b/english/cpp/system.xml.xpath/xpathnavigator/movetonext/_index.md index d4b8bdd045..e40c521152 100644 --- a/english/cpp/system.xml.xpath/xpathnavigator/movetonext/_index.md +++ b/english/cpp/system.xml.xpath/xpathnavigator/movetonext/_index.md @@ -54,7 +54,7 @@ virtual bool System::Xml::XPath::XPathNavigator::MoveToNext(String localName, St ## XPathNavigator::MoveToNext(XPathNodeType) method -Moves the [XPathNavigator](../) to the next sibling node of the current node that matches the XPathNodeType specified. +Moves the [XPathNavigator](../) to the next sibling node of the current node that matches the [XPathNodeType](../../xpathnodetype/) specified. ```cpp virtual bool System::Xml::XPath::XPathNavigator::MoveToNext(XPathNodeType type) @@ -63,7 +63,7 @@ virtual bool System::Xml::XPath::XPathNavigator::MoveToNext(XPathNodeType type) | Parameter | Type | Description | | --- | --- | --- | -| type | XPathNodeType | The XPathNodeType of the sibling node to move to. | +| type | XPathNodeType | The [XPathNodeType](../../xpathnodetype/) of the sibling node to move to. | ### ReturnValue diff --git a/english/cpp/system.xml.xpath/xpathnavigator/movetonextnamespace/_index.md b/english/cpp/system.xml.xpath/xpathnavigator/movetonextnamespace/_index.md index 8ee79c10d7..f78d172c6b 100644 --- a/english/cpp/system.xml.xpath/xpathnavigator/movetonextnamespace/_index.md +++ b/english/cpp/system.xml.xpath/xpathnavigator/movetonextnamespace/_index.md @@ -29,7 +29,7 @@ bool System::Xml::XPath::XPathNavigator::MoveToNextNamespace() ## XPathNavigator::MoveToNextNamespace(XPathNamespaceScope) method -When overridden in a derived class, moves the [XPathNavigator](../) to the next namespace node matching the XPathNamespaceScope specified. +When overridden in a derived class, moves the [XPathNavigator](../) to the next namespace node matching the [XPathNamespaceScope](../../xpathnamespacescope/) specified. ```cpp virtual bool System::Xml::XPath::XPathNavigator::MoveToNextNamespace(XPathNamespaceScope namespaceScope)=0 @@ -38,7 +38,7 @@ virtual bool System::Xml::XPath::XPathNavigator::MoveToNextNamespace(XPathNamesp | Parameter | Type | Description | | --- | --- | --- | -| namespaceScope | XPathNamespaceScope | An XPathNamespaceScope value describing the namespace scope. | +| namespaceScope | XPathNamespaceScope | An [XPathNamespaceScope](../../xpathnamespacescope/) value describing the namespace scope. | ### ReturnValue diff --git a/english/cpp/system.xml.xpath/xpathnavigator/selectancestors/_index.md b/english/cpp/system.xml.xpath/xpathnavigator/selectancestors/_index.md index bff369a68c..21a93f75ab 100644 --- a/english/cpp/system.xml.xpath/xpathnavigator/selectancestors/_index.md +++ b/english/cpp/system.xml.xpath/xpathnavigator/selectancestors/_index.md @@ -38,7 +38,7 @@ An [XPathNodeIterator](../../xpathnodeiterator/) that contains the selected node ## XPathNavigator::SelectAncestors(XPathNodeType, bool) method -Selects all the ancestor nodes of the current node that have a matching XPathNodeType. +Selects all the ancestor nodes of the current node that have a matching [XPathNodeType](../../xpathnodetype/). ```cpp virtual SharedPtr System::Xml::XPath::XPathNavigator::SelectAncestors(XPathNodeType type, bool matchSelf) @@ -47,7 +47,7 @@ virtual SharedPtr System::Xml::XPath::XPathNavigator::SelectA | Parameter | Type | Description | | --- | --- | --- | -| type | XPathNodeType | The XPathNodeType of the ancestor nodes. | +| type | XPathNodeType | The [XPathNodeType](../../xpathnodetype/) of the ancestor nodes. | | matchSelf | bool | To include the context node in the selection, **true**; otherwise, **false**. | ### ReturnValue diff --git a/english/cpp/system.xml.xpath/xpathnavigator/selectchildren/_index.md b/english/cpp/system.xml.xpath/xpathnavigator/selectchildren/_index.md index 56413abbbf..a81a90dc54 100644 --- a/english/cpp/system.xml.xpath/xpathnavigator/selectchildren/_index.md +++ b/english/cpp/system.xml.xpath/xpathnavigator/selectchildren/_index.md @@ -37,7 +37,7 @@ An [XPathNodeIterator](../../xpathnodeiterator/) that contains the selected node ## XPathNavigator::SelectChildren(XPathNodeType) method -Selects all the child nodes of the current node that have the matching XPathNodeType. +Selects all the child nodes of the current node that have the matching [XPathNodeType](../../xpathnodetype/). ```cpp virtual SharedPtr System::Xml::XPath::XPathNavigator::SelectChildren(XPathNodeType type) @@ -46,7 +46,7 @@ virtual SharedPtr System::Xml::XPath::XPathNavigator::SelectC | Parameter | Type | Description | | --- | --- | --- | -| type | XPathNodeType | The XPathNodeType of the child nodes. | +| type | XPathNodeType | The [XPathNodeType](../../xpathnodetype/) of the child nodes. | ### ReturnValue diff --git a/english/cpp/system.xml.xpath/xpathnavigator/selectdescendants/_index.md b/english/cpp/system.xml.xpath/xpathnavigator/selectdescendants/_index.md index 221e46c7fd..01a2ff4766 100644 --- a/english/cpp/system.xml.xpath/xpathnavigator/selectdescendants/_index.md +++ b/english/cpp/system.xml.xpath/xpathnavigator/selectdescendants/_index.md @@ -38,7 +38,7 @@ An [XPathNodeIterator](../../xpathnodeiterator/) that contains the selected node ## XPathNavigator::SelectDescendants(XPathNodeType, bool) method -Selects all the descendant nodes of the current node that have a matching XPathNodeType. +Selects all the descendant nodes of the current node that have a matching [XPathNodeType](../../xpathnodetype/). ```cpp virtual SharedPtr System::Xml::XPath::XPathNavigator::SelectDescendants(XPathNodeType type, bool matchSelf) @@ -47,7 +47,7 @@ virtual SharedPtr System::Xml::XPath::XPathNavigator::SelectD | Parameter | Type | Description | | --- | --- | --- | -| type | XPathNodeType | The XPathNodeType of the descendant nodes. | +| type | XPathNodeType | The [XPathNodeType](../../xpathnodetype/) of the descendant nodes. | | matchSelf | bool | **true** to include the context node in the selection; otherwise, **false**. | ### ReturnValue diff --git a/english/cpp/system.xml.xpath/xpathnodetype/_index.md b/english/cpp/system.xml.xpath/xpathnodetype/_index.md index 298cdaf8c6..08ec16389e 100644 --- a/english/cpp/system.xml.xpath/xpathnodetype/_index.md +++ b/english/cpp/system.xml.xpath/xpathnodetype/_index.md @@ -29,7 +29,7 @@ enum class XPathNodeType | Whitespace | 6 | A node with only white space characters and no significant white space. White space characters are **'\x20'**, **'\x0d'**, **'\x0a'**, **'\x09'**. | | ProcessingInstruction | 7 | A processing instruction, such as ****. This does not include XML declarations, which are not visible to the [XPathNavigator](../xpathnavigator/) class. | | Comment | 8 | A comment, such as ****. | -| All | 9 | Any of the XPathNodeType node types. | +| All | 9 | Any of the [XPathNodeType](./) node types. | ## See Also diff --git a/english/cpp/system.xml/_index.md b/english/cpp/system.xml/_index.md index ff319d4fb6..ae2d196047 100644 --- a/english/cpp/system.xml/_index.md +++ b/english/cpp/system.xml/_index.md @@ -64,7 +64,7 @@ url: /cpp/system.xml/ | Enum | Description | | --- | --- | | [ConformanceLevel](./conformancelevel/) | Specifies the amount of input or output checking that [XmlReader](./xmlreader/) and [XmlWriter](./xmlwriter/) objects perform. | -| [DtdProcessing](./dtdprocessing/) | Specifies the options for processing DTDs. The DtdProcessing enumeration is used by the [XmlReaderSettings](./xmlreadersettings/) class. | +| [DtdProcessing](./dtdprocessing/) | Specifies the options for processing DTDs. The [DtdProcessing](./dtdprocessing/) enumeration is used by the [XmlReaderSettings](./xmlreadersettings/) class. | | [EntityHandling](./entityhandling/) | Specifies how the [XmlTextReader](./xmltextreader/) or [XmlValidatingReader](./xmlvalidatingreader/) handle entities. | | [ExceptionType](./exceptiontype/) | | | [Formatting](./formatting/) | Specifies formatting options for the [XmlTextWriter](./xmltextwriter/). | diff --git a/english/cpp/system.xml/dtdprocessing/_index.md b/english/cpp/system.xml/dtdprocessing/_index.md index 99c210b781..2d3e935f3f 100644 --- a/english/cpp/system.xml/dtdprocessing/_index.md +++ b/english/cpp/system.xml/dtdprocessing/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.xml/dtdprocessing/ ## DtdProcessing enum -Specifies the options for processing DTDs. The DtdProcessing enumeration is used by the [XmlReaderSettings](../xmlreadersettings/) class. +Specifies the options for processing DTDs. The [DtdProcessing](./) enumeration is used by the [XmlReaderSettings](../xmlreadersettings/) class. ```cpp enum class DtdProcessing @@ -20,7 +20,7 @@ enum class DtdProcessing | Name | Value | Description | | --- | --- | --- | -| Prohibit | 0 | Specifies that when a DTD is encountered, an XmlException is thrown with a message that states that DTDs are prohibited. This is the default behavior. | +| Prohibit | 0 | Specifies that when a DTD is encountered, an [XmlException](../xmlexception/) is thrown with a message that states that DTDs are prohibited. This is the default behavior. | | Ignore | 1 | Causes the DOCTYPE element to be ignored. No DTD processing occurs, and the DTD/DOCTYPE is lost on output. | | Parse | 2 | Used for parsing DTDs. | diff --git a/english/cpp/system.xml/ixmlnamespaceresolver/getnamespacesinscope/_index.md b/english/cpp/system.xml/ixmlnamespaceresolver/getnamespacesinscope/_index.md index 5c12abb5ba..8ab53a6b91 100644 --- a/english/cpp/system.xml/ixmlnamespaceresolver/getnamespacesinscope/_index.md +++ b/english/cpp/system.xml/ixmlnamespaceresolver/getnamespacesinscope/_index.md @@ -19,7 +19,7 @@ virtual SharedPtr> System::Xml | Parameter | Type | Description | | --- | --- | --- | -| scope | XmlNamespaceScope | An XmlNamespaceScope value that specifies the type of namespace nodes to return. | +| scope | XmlNamespaceScope | An [XmlNamespaceScope](../../xmlnamespacescope/) value that specifies the type of namespace nodes to return. | ### ReturnValue diff --git a/english/cpp/system.xml/xmlconvert/_index.md b/english/cpp/system.xml/xmlconvert/_index.md index 0e5e9c0781..f6364cc143 100644 --- a/english/cpp/system.xml/xmlconvert/_index.md +++ b/english/cpp/system.xml/xmlconvert/_index.md @@ -36,7 +36,7 @@ class XmlConvert : public System::Object | static [ToDateTime](./todatetime/)(const String\&) | Converts the [String](../../system/string/) to a [DateTime](../../system/datetime/) equivalent. | | static [ToDateTime](./todatetime/)(const String\&, const String\&) | Converts the [String](../../system/string/) to a [DateTime](../../system/datetime/) equivalent. | | static [ToDateTime](./todatetime/)(const String\&, const ArrayPtr\\&) | Converts the [String](../../system/string/) to a [DateTime](../../system/datetime/) equivalent. | -| static [ToDateTime](./todatetime/)(const String\&, XmlDateTimeSerializationMode) | Converts the [String](../../system/string/) to a [DateTime](../../system/datetime/) using the XmlDateTimeSerializationMode specified. | +| static [ToDateTime](./todatetime/)(const String\&, XmlDateTimeSerializationMode) | Converts the [String](../../system/string/) to a [DateTime](../../system/datetime/) using the [XmlDateTimeSerializationMode](../xmldatetimeserializationmode/) specified. | | static [ToDateTimeOffset](./todatetimeoffset/)(const String\&) | Converts the supplied [String](../../system/string/) to a [DateTimeOffset](../../system/datetimeoffset/) equivalent. | | static [ToDateTimeOffset](./todatetimeoffset/)(const String\&, const String\&) | Converts the supplied [String](../../system/string/) to a [DateTimeOffset](../../system/datetimeoffset/) equivalent. | | static [ToDateTimeOffset](./todatetimeoffset/)(const String\&, const ArrayPtr\\&) | Converts the supplied [String](../../system/string/) to a [DateTimeOffset](../../system/datetimeoffset/) equivalent. | @@ -64,7 +64,7 @@ class XmlConvert : public System::Object | static [ToString](./tostring/)(TimeSpan) | Converts the [TimeSpan](../../system/timespan/) to a [String](../../system/string/). | | static [ToString](./tostring/)(DateTime) | Converts the [DateTime](../../system/datetime/) to a [String](../../system/string/). | | static [ToString](./tostring/)(DateTime, const String\&) | Converts the [DateTime](../../system/datetime/) to a [String](../../system/string/). | -| static [ToString](./tostring/)(DateTime, XmlDateTimeSerializationMode) | Converts the [DateTime](../../system/datetime/) to a [String](../../system/string/) using the XmlDateTimeSerializationMode specified. | +| static [ToString](./tostring/)(DateTime, XmlDateTimeSerializationMode) | Converts the [DateTime](../../system/datetime/) to a [String](../../system/string/) using the [XmlDateTimeSerializationMode](../xmldatetimeserializationmode/) specified. | | static [ToString](./tostring/)(DateTimeOffset) | Converts the supplied [DateTimeOffset](../../system/datetimeoffset/) to a [String](../../system/string/). | | static [ToString](./tostring/)(DateTimeOffset, const String\&) | Converts the supplied [DateTimeOffset](../../system/datetimeoffset/) to a [String](../../system/string/) in the specified format. | | static [ToString](./tostring/)(Guid) | Converts the [Guid](../../system/guid/) to a [String](../../system/string/). | @@ -78,7 +78,7 @@ class XmlConvert : public System::Object | static [VerifyPublicId](./verifypublicid/)(const String\&) | Returns the passed in string instance if all the characters in the string argument are valid public id characters. | | static [VerifyTOKEN](./verifytoken/)(const String\&) | Verifies that the string is a valid token according to the W3C XML [Schema](../../system.xml.schema/) Part2: Datatypes recommendation. | | static [VerifyWhitespace](./verifywhitespace/)(const String\&) | Returns the passed-in string instance if all the characters in the string argument are valid whitespace characters. | -| static [VerifyXmlChars](./verifyxmlchars/)(const String\&) | Returns the passed-in string if all the characters and surrogate pair characters in the string argument are valid XML characters, otherwise an XmlException is thrown with information on the first invalid character encountered. | +| static [VerifyXmlChars](./verifyxmlchars/)(const String\&) | Returns the passed-in string if all the characters and surrogate pair characters in the string argument are valid XML characters, otherwise an [XmlException](../xmlexception/) is thrown with information on the first invalid character encountered. | ## Typedefs | Typedef | Description | diff --git a/english/cpp/system.xml/xmlconvert/todatetime/_index.md b/english/cpp/system.xml/xmlconvert/todatetime/_index.md index b843aa9166..8369c3ba56 100644 --- a/english/cpp/system.xml/xmlconvert/todatetime/_index.md +++ b/english/cpp/system.xml/xmlconvert/todatetime/_index.md @@ -88,7 +88,7 @@ A [DateTime](../../../system/datetime/) equivalent of the string. ## XmlConvert::ToDateTime(const String\&, XmlDateTimeSerializationMode) method -Converts the [String](../../../system/string/) to a [DateTime](../../../system/datetime/) using the XmlDateTimeSerializationMode specified. +Converts the [String](../../../system/string/) to a [DateTime](../../../system/datetime/) using the [XmlDateTimeSerializationMode](../../xmldatetimeserializationmode/) specified. ```cpp static DateTime System::Xml::XmlConvert::ToDateTime(const String &s, XmlDateTimeSerializationMode dateTimeOption) diff --git a/english/cpp/system.xml/xmlconvert/tostring/_index.md b/english/cpp/system.xml/xmlconvert/tostring/_index.md index 7af3f2eee6..33ae615262 100644 --- a/english/cpp/system.xml/xmlconvert/tostring/_index.md +++ b/english/cpp/system.xml/xmlconvert/tostring/_index.md @@ -109,7 +109,7 @@ A string representation of the [DateTime](../../../system/datetime/) in the spec ## XmlConvert::ToString(DateTime, XmlDateTimeSerializationMode) method -Converts the [DateTime](../../../system/datetime/) to a [String](../../../system/string/) using the XmlDateTimeSerializationMode specified. +Converts the [DateTime](../../../system/datetime/) to a [String](../../../system/string/) using the [XmlDateTimeSerializationMode](../../xmldatetimeserializationmode/) specified. ```cpp static String System::Xml::XmlConvert::ToString(DateTime value, XmlDateTimeSerializationMode dateTimeOption) @@ -119,7 +119,7 @@ static String System::Xml::XmlConvert::ToString(DateTime value, XmlDateTimeSeria | Parameter | Type | Description | | --- | --- | --- | | value | DateTime | The [DateTime](../../../system/datetime/) value to convert. | -| dateTimeOption | XmlDateTimeSerializationMode | One of the XmlDateTimeSerializationMode values that specify how to treat the [DateTime](../../../system/datetime/) value. | +| dateTimeOption | XmlDateTimeSerializationMode | One of the [XmlDateTimeSerializationMode](../../xmldatetimeserializationmode/) values that specify how to treat the [DateTime](../../../system/datetime/) value. | ### ReturnValue diff --git a/english/cpp/system.xml/xmlconvert/verifyxmlchars/_index.md b/english/cpp/system.xml/xmlconvert/verifyxmlchars/_index.md index d777c24038..a5399e8d02 100644 --- a/english/cpp/system.xml/xmlconvert/verifyxmlchars/_index.md +++ b/english/cpp/system.xml/xmlconvert/verifyxmlchars/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.xml/xmlconvert/verifyxmlchars/ ## XmlConvert::VerifyXmlChars method -Returns the passed-in string if all the characters and surrogate pair characters in the string argument are valid XML characters, otherwise an XmlException is thrown with information on the first invalid character encountered. +Returns the passed-in string if all the characters and surrogate pair characters in the string argument are valid XML characters, otherwise an [XmlException](../../xmlexception/) is thrown with information on the first invalid character encountered. ```cpp static String System::Xml::XmlConvert::VerifyXmlChars(const String &content) @@ -23,7 +23,7 @@ static String System::Xml::XmlConvert::VerifyXmlChars(const String &content) ### ReturnValue -The passed-in string if all the characters and surrogate-pair characters in the string argument are valid XML characters, otherwise an XmlException is thrown with information on the first invalid character encountered. +The passed-in string if all the characters and surrogate-pair characters in the string argument are valid XML characters, otherwise an [XmlException](../../xmlexception/) is thrown with information on the first invalid character encountered. ## See Also diff --git a/english/cpp/system.xml/xmldocument/_index.md b/english/cpp/system.xml/xmldocument/_index.md index 854faed786..01dd72a001 100644 --- a/english/cpp/system.xml/xmldocument/_index.md +++ b/english/cpp/system.xml/xmldocument/_index.md @@ -33,9 +33,9 @@ class XmlDocument : public System::Xml::XmlNode | virtual [CreateElement](./createelement/)(const String\&, const String\&, const String\&) | Creates an element with the specified [XmlNode::get_Prefix](../xmlnode/get_prefix/), [XmlDocument::get_LocalName](./get_localname/), and [XmlNode::get_NamespaceURI](../xmlnode/get_namespaceuri/). | | virtual [CreateEntityReference](./createentityreference/)(const String\&) | Creates an [XmlEntityReference](../xmlentityreference/) with the specified name. | | [CreateNavigator](./createnavigator/)() override | Creates a new XPathNavigator object for navigating this document. | -| virtual [CreateNode](./createnode/)(XmlNodeType, const String\&, const String\&, const String\&) | Creates a [XmlNode](../xmlnode/) with the specified XmlNodeType, [XmlNode::get_Prefix](../xmlnode/get_prefix/), [XmlDocument::get_Name](./get_name/), and [XmlNode::get_NamespaceURI](../xmlnode/get_namespaceuri/). | +| virtual [CreateNode](./createnode/)(XmlNodeType, const String\&, const String\&, const String\&) | Creates a [XmlNode](../xmlnode/) with the specified [XmlNodeType](../xmlnodetype/), [XmlNode::get_Prefix](../xmlnode/get_prefix/), [XmlDocument::get_Name](./get_name/), and [XmlNode::get_NamespaceURI](../xmlnode/get_namespaceuri/). | | virtual [CreateNode](./createnode/)(const String\&, const String\&, const String\&) | Creates an [XmlNode](../xmlnode/) with the specified node type, [XmlDocument::get_Name](./get_name/), and [XmlNode::get_NamespaceURI](../xmlnode/get_namespaceuri/). | -| virtual [CreateNode](./createnode/)(XmlNodeType, const String\&, const String\&) | Creates an [XmlNode](../xmlnode/) with the specified XmlNodeType, [XmlDocument::get_Name](./get_name/), and [XmlNode::get_NamespaceURI](../xmlnode/get_namespaceuri/). | +| virtual [CreateNode](./createnode/)(XmlNodeType, const String\&, const String\&) | Creates an [XmlNode](../xmlnode/) with the specified [XmlNodeType](../xmlnodetype/), [XmlDocument::get_Name](./get_name/), and [XmlNode::get_NamespaceURI](../xmlnode/get_namespaceuri/). | | virtual [CreateProcessingInstruction](./createprocessinginstruction/)(const String\&, const String\&) | Creates an [XmlProcessingInstruction](../xmlprocessinginstruction/) with the specified name and data. | | virtual [CreateSignificantWhitespace](./createsignificantwhitespace/)(const String\&) | Creates an [XmlSignificantWhitespace](../xmlsignificantwhitespace/) node. | | virtual [CreateTextNode](./createtextnode/)(const String\&) | Creates an [XmlText](../xmltext/) with the specified text. | diff --git a/english/cpp/system.xml/xmldocument/createnode/_index.md b/english/cpp/system.xml/xmldocument/createnode/_index.md index 7661f3a804..c2cdb886d1 100644 --- a/english/cpp/system.xml/xmldocument/createnode/_index.md +++ b/english/cpp/system.xml/xmldocument/createnode/_index.md @@ -19,7 +19,7 @@ virtual SharedPtr System::Xml::XmlDocument::CreateNode(const String &no | Parameter | Type | Description | | --- | --- | --- | -| nodeTypeString | const String\& | [String](../../../system/string/) version of the XmlNodeType of the new node. This parameter must be one of the values listed in the table below. | +| nodeTypeString | const String\& | [String](../../../system/string/) version of the [XmlNodeType](../../xmlnodetype/) of the new node. This parameter must be one of the values listed in the table below. | | name | const String\& | The qualified name of the new node. If the name contains a colon, it is parsed into [XmlNode::get_Prefix](../../xmlnode/get_prefix/) and [XmlDocument::get_LocalName](../get_localname/) components. | | namespaceURI | const String\& | The namespace URI of the new node. | @@ -32,7 +32,7 @@ The new [XmlNode](../../xmlnode/). The **nodeTypeString** parameter is case sensitive and must be one of the values in the following table: ||| |-|-| -|nodeTypeString|XmlNodeType | +|nodeTypeString|XmlNodeType| |attribute|Attribute| |cdatasection|CDATA | |comment|Comment | @@ -57,7 +57,7 @@ The **nodeTypeString** parameter is case sensitive and must be one of the values ## XmlDocument::CreateNode(XmlNodeType, const String\&, const String\&) method -Creates an [XmlNode](../../xmlnode/) with the specified XmlNodeType, [XmlDocument::get_Name](../get_name/), and [XmlNode::get_NamespaceURI](../../xmlnode/get_namespaceuri/). +Creates an [XmlNode](../../xmlnode/) with the specified [XmlNodeType](../../xmlnodetype/), [XmlDocument::get_Name](../get_name/), and [XmlNode::get_NamespaceURI](../../xmlnode/get_namespaceuri/). ```cpp virtual SharedPtr System::Xml::XmlDocument::CreateNode(XmlNodeType type, const String &name, const String &namespaceURI) @@ -66,7 +66,7 @@ virtual SharedPtr System::Xml::XmlDocument::CreateNode(XmlNodeType type | Parameter | Type | Description | | --- | --- | --- | -| type | XmlNodeType | The XmlNodeType of the new node. | +| type | XmlNodeType | The [XmlNodeType](../../xmlnodetype/) of the new node. | | name | const String\& | The qualified name of the new node. If the name contains a colon then it is parsed into [XmlNode::get_Prefix](../../xmlnode/get_prefix/) and [XmlDocument::get_LocalName](../get_localname/) components. | | namespaceURI | const String\& | The namespace URI of the new node. | @@ -86,7 +86,7 @@ The new [XmlNode](../../xmlnode/). ## XmlDocument::CreateNode(XmlNodeType, const String\&, const String\&, const String\&) method -Creates a [XmlNode](../../xmlnode/) with the specified XmlNodeType, [XmlNode::get_Prefix](../../xmlnode/get_prefix/), [XmlDocument::get_Name](../get_name/), and [XmlNode::get_NamespaceURI](../../xmlnode/get_namespaceuri/). +Creates a [XmlNode](../../xmlnode/) with the specified [XmlNodeType](../../xmlnodetype/), [XmlNode::get_Prefix](../../xmlnode/get_prefix/), [XmlDocument::get_Name](../get_name/), and [XmlNode::get_NamespaceURI](../../xmlnode/get_namespaceuri/). ```cpp virtual SharedPtr System::Xml::XmlDocument::CreateNode(XmlNodeType type, const String &prefix, const String &name, const String &namespaceURI) @@ -95,7 +95,7 @@ virtual SharedPtr System::Xml::XmlDocument::CreateNode(XmlNodeType type | Parameter | Type | Description | | --- | --- | --- | -| type | XmlNodeType | The XmlNodeType of the new node. | +| type | XmlNodeType | The [XmlNodeType](../../xmlnodetype/) of the new node. | | prefix | const String\& | The prefix of the new node. | | name | const String\& | The local name of the new node. | | namespaceURI | const String\& | The namespace URI of the new node. | diff --git a/english/cpp/system.xml/xmlnode/get_nodetype/_index.md b/english/cpp/system.xml/xmlnode/get_nodetype/_index.md index 6ba5182691..111264e070 100644 --- a/english/cpp/system.xml/xmlnode/get_nodetype/_index.md +++ b/english/cpp/system.xml/xmlnode/get_nodetype/_index.md @@ -19,7 +19,7 @@ virtual XmlNodeType System::Xml::XmlNode::get_NodeType()=0 ### ReturnValue -One of the XmlNodeType values. +One of the [XmlNodeType](../../xmlnodetype/) values. ## See Also diff --git a/english/cpp/system.xml/xmlnodechangedeventargs/get_action/_index.md b/english/cpp/system.xml/xmlnodechangedeventargs/get_action/_index.md index 98031cb839..868cd1bc1b 100644 --- a/english/cpp/system.xml/xmlnodechangedeventargs/get_action/_index.md +++ b/english/cpp/system.xml/xmlnodechangedeventargs/get_action/_index.md @@ -19,7 +19,7 @@ XmlNodeChangedAction System::Xml::XmlNodeChangedEventArgs::get_Action() ### ReturnValue -One of the enumeration values that describes the node change event. The **Action** value does not differentiate between when the event occurred (before or after). You can create separate event handlers to handle both instances. +One of the enumeration values that describes the node change event. The **[Action](../../../system/action/)** value does not differentiate between when the event occurred (before or after). You can create separate event handlers to handle both instances. ## See Also diff --git a/english/cpp/system.xml/xmlnodechangedeventargs/xmlnodechangedeventargs/_index.md b/english/cpp/system.xml/xmlnodechangedeventargs/xmlnodechangedeventargs/_index.md index 1921c03384..e1f3bb7e0a 100644 --- a/english/cpp/system.xml/xmlnodechangedeventargs/xmlnodechangedeventargs/_index.md +++ b/english/cpp/system.xml/xmlnodechangedeventargs/xmlnodechangedeventargs/_index.md @@ -24,7 +24,7 @@ System::Xml::XmlNodeChangedEventArgs::XmlNodeChangedEventArgs(const SharedPtr\& | The new parent [XmlNode](../../xmlnode/) of the [XmlNode](../../xmlnode/) that generated the event. | | oldValue | const String\& | The old value of the [XmlNode](../../xmlnode/) that generated the event. | | newValue | const String\& | The new value of the [XmlNode](../../xmlnode/) that generated the event. | -| action | XmlNodeChangedAction | The XmlNodeChangedAction. | +| action | XmlNodeChangedAction | The [XmlNodeChangedAction](../../xmlnodechangedaction/). | ## See Also diff --git a/english/cpp/system.xml/xmlnodereader/get_nodetype/_index.md b/english/cpp/system.xml/xmlnodereader/get_nodetype/_index.md index 2a4f78f007..d71a6f2b1c 100644 --- a/english/cpp/system.xml/xmlnodereader/get_nodetype/_index.md +++ b/english/cpp/system.xml/xmlnodereader/get_nodetype/_index.md @@ -19,7 +19,7 @@ XmlNodeType System::Xml::XmlNodeReader::get_NodeType() override ### ReturnValue -One of the XmlNodeType values representing the type of the current node. +One of the [XmlNodeType](../../xmlnodetype/) values representing the type of the current node. ## See Also diff --git a/english/cpp/system.xml/xmlnodereader/get_readstate/_index.md b/english/cpp/system.xml/xmlnodereader/get_readstate/_index.md index 2da951c5fd..9881be7fb8 100644 --- a/english/cpp/system.xml/xmlnodereader/get_readstate/_index.md +++ b/english/cpp/system.xml/xmlnodereader/get_readstate/_index.md @@ -19,7 +19,7 @@ System::Xml::ReadState System::Xml::XmlNodeReader::get_ReadState() override ### ReturnValue -One of the ReadState values. +One of the [ReadState](../../readstate/) values. ## See Also diff --git a/english/cpp/system.xml/xmlnodereader/get_xmlspace/_index.md b/english/cpp/system.xml/xmlnodereader/get_xmlspace/_index.md index bf401a3bbc..c6343e3ccd 100644 --- a/english/cpp/system.xml/xmlnodereader/get_xmlspace/_index.md +++ b/english/cpp/system.xml/xmlnodereader/get_xmlspace/_index.md @@ -19,7 +19,7 @@ System::Xml::XmlSpace System::Xml::XmlNodeReader::get_XmlSpace() override ### ReturnValue -One of the XmlSpace values. If no **xml:space** scope exists, this value defaults to [XmlSpace::None](../../xmlspace/). +One of the [XmlSpace](../../xmlspace/) values. If no **xml:space** scope exists, this value defaults to [XmlSpace::None](../../xmlspace/). ## See Also diff --git a/english/cpp/system.xml/xmlparsercontext/get_xmlspace/_index.md b/english/cpp/system.xml/xmlparsercontext/get_xmlspace/_index.md index a3993b401e..de0baca52c 100644 --- a/english/cpp/system.xml/xmlparsercontext/get_xmlspace/_index.md +++ b/english/cpp/system.xml/xmlparsercontext/get_xmlspace/_index.md @@ -19,7 +19,7 @@ System::Xml::XmlSpace System::Xml::XmlParserContext::get_XmlSpace() ### ReturnValue -An XmlSpace value indicating the **xml:space** scope. +An [XmlSpace](../../xmlspace/) value indicating the **xml:space** scope. ## See Also diff --git a/english/cpp/system.xml/xmlparsercontext/xmlparsercontext/_index.md b/english/cpp/system.xml/xmlparsercontext/xmlparsercontext/_index.md index 6118ddb8b9..748e1d5f51 100644 --- a/english/cpp/system.xml/xmlparsercontext/xmlparsercontext/_index.md +++ b/english/cpp/system.xml/xmlparsercontext/xmlparsercontext/_index.md @@ -27,7 +27,7 @@ System::Xml::XmlParserContext::XmlParserContext(const SharedPtr &n | internalSubset | const String\& | The internal DTD subset. The DTD subset is used for entity resolution, not for document validation. | | baseURI | const String\& | The base URI for the XML fragment (the location from which the fragment was loaded). | | xmlLang | const String\& | The **xml:lang** scope. | -| xmlSpace | System::Xml::XmlSpace | An XmlSpace value indicating the **xml:space** scope. | +| xmlSpace | System::Xml::XmlSpace | An [XmlSpace](../../xmlspace/) value indicating the **xml:space** scope. | ## See Also @@ -59,7 +59,7 @@ System::Xml::XmlParserContext::XmlParserContext(const SharedPtr &n | internalSubset | const String\& | The internal DTD subset. The DTD is used for entity resolution, not for document validation. | | baseURI | const String\& | The base URI for the XML fragment (the location from which the fragment was loaded). | | xmlLang | const String\& | The **xml:lang** scope. | -| xmlSpace | System::Xml::XmlSpace | An XmlSpace value indicating the **xml:space** scope. | +| xmlSpace | System::Xml::XmlSpace | An [XmlSpace](../../xmlspace/) value indicating the **xml:space** scope. | | enc | const SharedPtr\\& | An Encoding object indicating the encoding setting. | ## See Also @@ -88,7 +88,7 @@ System::Xml::XmlParserContext::XmlParserContext(const SharedPtr &n | nt | const SharedPtr\\& | The [XmlNameTable](../../xmlnametable/) to use to atomize strings. If this is **nullptr**, the name table used to construct the **nsMgr** is used instead. For more information about atomized strings, see [XmlNameTable](../../xmlnametable/). | | nsMgr | const SharedPtr\\& | The [XmlNamespaceManager](../../xmlnamespacemanager/) to use for looking up namespace information, or **nullptr**. | | xmlLang | const String\& | The **xml:lang** scope. | -| xmlSpace | System::Xml::XmlSpace | An XmlSpace value indicating the **xml:space** scope. | +| xmlSpace | System::Xml::XmlSpace | An [XmlSpace](../../xmlspace/) value indicating the **xml:space** scope. | ## See Also @@ -115,7 +115,7 @@ System::Xml::XmlParserContext::XmlParserContext(const SharedPtr &n | nt | const SharedPtr\\& | The [XmlNameTable](../../xmlnametable/) to use to atomize strings. If this is **nullptr**, the name table used to construct the **nsMgr** is used instead. For more information on atomized strings, see [XmlNameTable](../../xmlnametable/). | | nsMgr | const SharedPtr\\& | The [XmlNamespaceManager](../../xmlnamespacemanager/) to use for looking up namespace information, or **nullptr**. | | xmlLang | const String\& | The **xml:lang** scope. | -| xmlSpace | System::Xml::XmlSpace | An XmlSpace value indicating the **xml:space** scope. | +| xmlSpace | System::Xml::XmlSpace | An [XmlSpace](../../xmlspace/) value indicating the **xml:space** scope. | | enc | const SharedPtr\\& | An Encoding object indicating the encoding setting. | ## See Also diff --git a/english/cpp/system.xml/xmlreader/get_xmlspace/_index.md b/english/cpp/system.xml/xmlreader/get_xmlspace/_index.md index f37eed2dd1..2a199fb53f 100644 --- a/english/cpp/system.xml/xmlreader/get_xmlspace/_index.md +++ b/english/cpp/system.xml/xmlreader/get_xmlspace/_index.md @@ -19,7 +19,7 @@ virtual System::Xml::XmlSpace System::Xml::XmlReader::get_XmlSpace() ### ReturnValue -One of the XmlSpace values. If no **xml:space** scope exists, this value defaults to [XmlSpace::None](../../xmlspace/). +One of the [XmlSpace](../../xmlspace/) values. If no **xml:space** scope exists, this value defaults to [XmlSpace::None](../../xmlspace/). ## See Also diff --git a/english/cpp/system.xml/xmlreadersettings/get_validationtype/_index.md b/english/cpp/system.xml/xmlreadersettings/get_validationtype/_index.md index 5146137434..88d3e1fcb9 100644 --- a/english/cpp/system.xml/xmlreadersettings/get_validationtype/_index.md +++ b/english/cpp/system.xml/xmlreadersettings/get_validationtype/_index.md @@ -19,7 +19,7 @@ System::Xml::ValidationType System::Xml::XmlReaderSettings::get_ValidationType() ### ReturnValue -One of the ValidationType values that indicates whether [XmlReader](../../xmlreader/) will perform validation or type assignment when reading. The default is [ValidationType::None](../../validationtype/). +One of the [ValidationType](../../validationtype/) values that indicates whether [XmlReader](../../xmlreader/) will perform validation or type assignment when reading. The default is [ValidationType::None](../../validationtype/). ## See Also diff --git a/english/cpp/system.xml/xmltextreader/_index.md b/english/cpp/system.xml/xmltextreader/_index.md index d84f3b51b9..8ccb057ec6 100644 --- a/english/cpp/system.xml/xmltextreader/_index.md +++ b/english/cpp/system.xml/xmltextreader/_index.md @@ -29,7 +29,7 @@ class XmlTextReader : public System::Xml::XmlReader, | [get_CanReadValueChunk](./get_canreadvaluechunk/)() override | Returns a value indicating whether the [XmlTextReader](./) implements the [XmlReader::ReadValueChunk](../xmlreader/readvaluechunk/) method. | | [get_CanResolveEntity](./get_canresolveentity/)() override | Returns a value indicating whether this reader can parse and resolve entities. | | [get_Depth](./get_depth/)() override | Returns the depth of the current node in the XML document. | -| [get_DtdProcessing](./get_dtdprocessing/)() | Returns the DtdProcessing enumeration. | +| [get_DtdProcessing](./get_dtdprocessing/)() | Returns the [DtdProcessing](../dtdprocessing/) enumeration. | | [get_Encoding](./get_encoding/)() | Returns the encoding of the document. | | [get_EntityHandling](./get_entityhandling/)() | Returns a value that specifies how the reader handles entities. | | [get_EOF](./get_eof/)() override | Returns a value indicating whether the reader is positioned at the end of the stream. | @@ -78,7 +78,7 @@ class XmlTextReader : public System::Xml::XmlReader, | [ReadString](./readstring/)() override | Reads the contents of an element or a text node as a string. | | [ResetState](./resetstate/)() | Resets the state of the reader to [ReadState::Initial](../readstate/). | | [ResolveEntity](./resolveentity/)() override | Resolves the entity reference for **EntityReference** nodes. | -| [set_DtdProcessing](./set_dtdprocessing/)(System::Xml::DtdProcessing) | Sets the DtdProcessing enumeration. | +| [set_DtdProcessing](./set_dtdprocessing/)(System::Xml::DtdProcessing) | Sets the [DtdProcessing](../dtdprocessing/) enumeration. | | [set_EntityHandling](./set_entityhandling/)(System::Xml::EntityHandling) | Sets a value that specifies how the reader handles entities. | | [set_Namespaces](./set_namespaces/)(bool) | Sets a value indicating whether to do namespace support. | | [set_Normalization](./set_normalization/)(bool) | Sets a value indicating whether to normalize white space and attribute values. | @@ -94,8 +94,8 @@ class XmlTextReader : public System::Xml::XmlReader, | [XmlTextReader](./xmltextreader/)(const String\&, const SharedPtr\\&) | Initializes a new instance of the [XmlTextReader](./) class with the specified URL and TextReader. | | [XmlTextReader](./xmltextreader/)(const SharedPtr\\&, const SharedPtr\\&) | Initializes a new instance of the [XmlTextReader](./) class with the specified TextReader and [XmlNameTable](../xmlnametable/). | | [XmlTextReader](./xmltextreader/)(const String\&, const SharedPtr\\&, const SharedPtr\\&) | Initializes a new instance of the [XmlTextReader](./) class with the specified URL, TextReader and [XmlNameTable](../xmlnametable/). | -| [XmlTextReader](./xmltextreader/)(const SharedPtr\\&, XmlNodeType, const SharedPtr\\&) | Initializes a new instance of the [XmlTextReader](./) class with the specified stream, XmlNodeType, and [XmlParserContext](../xmlparsercontext/). | -| [XmlTextReader](./xmltextreader/)(const String\&, XmlNodeType, const SharedPtr\\&) | Initializes a new instance of the [XmlTextReader](./) class with the specified string, XmlNodeType, and [XmlParserContext](../xmlparsercontext/). | +| [XmlTextReader](./xmltextreader/)(const SharedPtr\\&, XmlNodeType, const SharedPtr\\&) | Initializes a new instance of the [XmlTextReader](./) class with the specified stream, [XmlNodeType](../xmlnodetype/), and [XmlParserContext](../xmlparsercontext/). | +| [XmlTextReader](./xmltextreader/)(const String\&, XmlNodeType, const SharedPtr\\&) | Initializes a new instance of the [XmlTextReader](./) class with the specified string, [XmlNodeType](../xmlnodetype/), and [XmlParserContext](../xmlparsercontext/). | | [XmlTextReader](./xmltextreader/)(const String\&) | Initializes a new instance of the [XmlTextReader](./) class with the specified file. | | [XmlTextReader](./xmltextreader/)(const String\&, const SharedPtr\\&) | Initializes a new instance of the [XmlTextReader](./) class with the specified file and [XmlNameTable](../xmlnametable/). | ## Typedefs diff --git a/english/cpp/system.xml/xmltextreader/get_dtdprocessing/_index.md b/english/cpp/system.xml/xmltextreader/get_dtdprocessing/_index.md index 095b4d7e6e..8865af0ad4 100644 --- a/english/cpp/system.xml/xmltextreader/get_dtdprocessing/_index.md +++ b/english/cpp/system.xml/xmltextreader/get_dtdprocessing/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.xml/xmltextreader/get_dtdprocessing/ ## XmlTextReader::get_DtdProcessing method -Returns the DtdProcessing enumeration. +Returns the [DtdProcessing](../../dtdprocessing/) enumeration. ```cpp System::Xml::DtdProcessing System::Xml::XmlTextReader::get_DtdProcessing() @@ -19,7 +19,7 @@ System::Xml::DtdProcessing System::Xml::XmlTextReader::get_DtdProcessing() ### ReturnValue -The DtdProcessing enumeration. +The [DtdProcessing](../../dtdprocessing/) enumeration. ## See Also diff --git a/english/cpp/system.xml/xmltextreader/get_entityhandling/_index.md b/english/cpp/system.xml/xmltextreader/get_entityhandling/_index.md index 603e69074e..b84f9a8661 100644 --- a/english/cpp/system.xml/xmltextreader/get_entityhandling/_index.md +++ b/english/cpp/system.xml/xmltextreader/get_entityhandling/_index.md @@ -19,7 +19,7 @@ System::Xml::EntityHandling System::Xml::XmlTextReader::get_EntityHandling() ### ReturnValue -One of the EntityHandling values. If no EntityHandling is specified, it defaults to [EntityHandling::ExpandCharEntities](../../entityhandling/). +One of the [EntityHandling](../../entityhandling/) values. If no [EntityHandling](../../entityhandling/) is specified, it defaults to [EntityHandling::ExpandCharEntities](../../entityhandling/). ## See Also diff --git a/english/cpp/system.xml/xmltextreader/get_nodetype/_index.md b/english/cpp/system.xml/xmltextreader/get_nodetype/_index.md index 0de38efc0d..556bee3b46 100644 --- a/english/cpp/system.xml/xmltextreader/get_nodetype/_index.md +++ b/english/cpp/system.xml/xmltextreader/get_nodetype/_index.md @@ -19,7 +19,7 @@ XmlNodeType System::Xml::XmlTextReader::get_NodeType() override ### ReturnValue -One of the XmlNodeType values representing the type of the current node. +One of the [XmlNodeType](../../xmlnodetype/) values representing the type of the current node. ## See Also diff --git a/english/cpp/system.xml/xmltextreader/get_readstate/_index.md b/english/cpp/system.xml/xmltextreader/get_readstate/_index.md index 176f94b17e..88a003a610 100644 --- a/english/cpp/system.xml/xmltextreader/get_readstate/_index.md +++ b/english/cpp/system.xml/xmltextreader/get_readstate/_index.md @@ -19,7 +19,7 @@ System::Xml::ReadState System::Xml::XmlTextReader::get_ReadState() override ### ReturnValue -One of the ReadState values. +One of the [ReadState](../../readstate/) values. ## See Also diff --git a/english/cpp/system.xml/xmltextreader/get_whitespacehandling/_index.md b/english/cpp/system.xml/xmltextreader/get_whitespacehandling/_index.md index 58226e4029..c676b7c159 100644 --- a/english/cpp/system.xml/xmltextreader/get_whitespacehandling/_index.md +++ b/english/cpp/system.xml/xmltextreader/get_whitespacehandling/_index.md @@ -19,7 +19,7 @@ System::Xml::WhitespaceHandling System::Xml::XmlTextReader::get_WhitespaceHandli ### ReturnValue -One of the WhitespaceHandling values. The default is **[WhitespaceHandling.All](../../whitespacehandling/)** (returns **Whitespace** and **SignificantWhitespace** nodes). +One of the [WhitespaceHandling](../../whitespacehandling/) values. The default is **[WhitespaceHandling.All](../../whitespacehandling/)** (returns **Whitespace** and **SignificantWhitespace** nodes). ## See Also diff --git a/english/cpp/system.xml/xmltextreader/get_xmlspace/_index.md b/english/cpp/system.xml/xmltextreader/get_xmlspace/_index.md index e990f944fe..26d1a5b8a5 100644 --- a/english/cpp/system.xml/xmltextreader/get_xmlspace/_index.md +++ b/english/cpp/system.xml/xmltextreader/get_xmlspace/_index.md @@ -19,7 +19,7 @@ System::Xml::XmlSpace System::Xml::XmlTextReader::get_XmlSpace() override ### ReturnValue -One of the XmlSpace values. If no **xml:space** scope exists, this value defaults to [XmlSpace::None](../../xmlspace/). +One of the [XmlSpace](../../xmlspace/) values. If no **xml:space** scope exists, this value defaults to [XmlSpace::None](../../xmlspace/). ## See Also diff --git a/english/cpp/system.xml/xmltextreader/getnamespacesinscope/_index.md b/english/cpp/system.xml/xmltextreader/getnamespacesinscope/_index.md index b3e6f029bb..b1e796c6ca 100644 --- a/english/cpp/system.xml/xmltextreader/getnamespacesinscope/_index.md +++ b/english/cpp/system.xml/xmltextreader/getnamespacesinscope/_index.md @@ -19,7 +19,7 @@ SharedPtr> System::Xml::XmlTex | Parameter | Type | Description | | --- | --- | --- | -| scope | XmlNamespaceScope | An XmlNamespaceScope value that specifies the type of namespace nodes to return. | +| scope | XmlNamespaceScope | An [XmlNamespaceScope](../../xmlnamespacescope/) value that specifies the type of namespace nodes to return. | ### ReturnValue diff --git a/english/cpp/system.xml/xmltextreader/set_dtdprocessing/_index.md b/english/cpp/system.xml/xmltextreader/set_dtdprocessing/_index.md index 92131f975c..e3b8e5b3cb 100644 --- a/english/cpp/system.xml/xmltextreader/set_dtdprocessing/_index.md +++ b/english/cpp/system.xml/xmltextreader/set_dtdprocessing/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.xml/xmltextreader/set_dtdprocessing/ ## XmlTextReader::set_DtdProcessing method -Sets the DtdProcessing enumeration. +Sets the [DtdProcessing](../../dtdprocessing/) enumeration. ```cpp void System::Xml::XmlTextReader::set_DtdProcessing(System::Xml::DtdProcessing value) diff --git a/english/cpp/system.xml/xmltextreader/xmltextreader/_index.md b/english/cpp/system.xml/xmltextreader/xmltextreader/_index.md index 831e84cb90..6dea64b1fe 100644 --- a/english/cpp/system.xml/xmltextreader/xmltextreader/_index.md +++ b/english/cpp/system.xml/xmltextreader/xmltextreader/_index.md @@ -54,7 +54,7 @@ System::Xml::XmlTextReader::XmlTextReader(const SharedPtr &input, co ## XmlTextReader::XmlTextReader(const SharedPtr\\&, XmlNodeType, const SharedPtr\\&) constructor -Initializes a new instance of the [XmlTextReader](../) class with the specified stream, XmlNodeType, and [XmlParserContext](../../xmlparsercontext/). +Initializes a new instance of the [XmlTextReader](../) class with the specified stream, [XmlNodeType](../../xmlnodetype/), and [XmlParserContext](../../xmlparsercontext/). ```cpp System::Xml::XmlTextReader::XmlTextReader(const SharedPtr &xmlFragment, XmlNodeType fragType, const SharedPtr &context) @@ -64,7 +64,7 @@ System::Xml::XmlTextReader::XmlTextReader(const SharedPtr &xmlFragme | Parameter | Type | Description | | --- | --- | --- | | xmlFragment | const SharedPtr\\& | The stream containing the XML fragment to parse. | -| fragType | XmlNodeType | The XmlNodeType of the XML fragment. This also determines what the fragment can contain. | +| fragType | XmlNodeType | The [XmlNodeType](../../xmlnodetype/) of the XML fragment. This also determines what the fragment can contain. | | context | const SharedPtr\\& | The [XmlParserContext](../../xmlparsercontext/) in which the **xmlFragment** is to be parsed. This includes the [XmlNameTable](../../xmlnametable/) to use, encoding, namespace scope, the current **xml:lang**, and the **xml:space** scope. | ## See Also @@ -262,7 +262,7 @@ System::Xml::XmlTextReader::XmlTextReader(const String &url, const SharedPtr\&) constructor -Initializes a new instance of the [XmlTextReader](../) class with the specified string, XmlNodeType, and [XmlParserContext](../../xmlparsercontext/). +Initializes a new instance of the [XmlTextReader](../) class with the specified string, [XmlNodeType](../../xmlnodetype/), and [XmlParserContext](../../xmlparsercontext/). ```cpp System::Xml::XmlTextReader::XmlTextReader(const String &xmlFragment, XmlNodeType fragType, const SharedPtr &context) @@ -272,7 +272,7 @@ System::Xml::XmlTextReader::XmlTextReader(const String &xmlFragment, XmlNodeType | Parameter | Type | Description | | --- | --- | --- | | xmlFragment | const String\& | The string containing the XML fragment to parse. | -| fragType | XmlNodeType | The XmlNodeType of the XML fragment. This also determines what the fragment string can contain. | +| fragType | XmlNodeType | The [XmlNodeType](../../xmlnodetype/) of the XML fragment. This also determines what the fragment string can contain. | | context | const SharedPtr\\& | The [XmlParserContext](../../xmlparsercontext/) in which the **xmlFragment** is to be parsed. This includes the [XmlNameTable](../../xmlnametable/) to use, encoding, namespace scope, the current **xml:lang**, and the **xml:space** scope. | ## See Also diff --git a/english/cpp/system.xml/xmltextwriter/_index.md b/english/cpp/system.xml/xmltextwriter/_index.md index 0dc00c3273..5cc093e793 100644 --- a/english/cpp/system.xml/xmltextwriter/_index.md +++ b/english/cpp/system.xml/xmltextwriter/_index.md @@ -30,7 +30,7 @@ class XmlTextWriter : public System::Xml::XmlWriter | [get_QuoteChar](./get_quotechar/)() | Returns which character to use to quote attribute values. | | [get_WriteState](./get_writestate/)() override | Returns the state of the writer. | | [get_XmlLang](./get_xmllang/)() override | Returns the current **xml:lang** scope. | -| [get_XmlSpace](./get_xmlspace/)() override | Returns an XmlSpace representing the current **xml:space** scope. | +| [get_XmlSpace](./get_xmlspace/)() override | Returns an [XmlSpace](../xmlspace/) representing the current **xml:space** scope. | | [LookupPrefix](./lookupprefix/)(String) override | Returns the closest prefix defined in the current namespace scope for the namespace URI. | | [set_Formatting](./set_formatting/)(System::Xml::Formatting) | Indicates how the output is formatted. | | [set_Indentation](./set_indentation/)(int32_t) | Sets how many IndentChars to write for each level in the hierarchy when [XmlTextWriter::set_Formatting](./set_formatting/) is set to [Formatting::Indented](../formatting/). | diff --git a/english/cpp/system.xml/xmltextwriter/get_formatting/_index.md b/english/cpp/system.xml/xmltextwriter/get_formatting/_index.md index 1d01c170ee..d7c43802c2 100644 --- a/english/cpp/system.xml/xmltextwriter/get_formatting/_index.md +++ b/english/cpp/system.xml/xmltextwriter/get_formatting/_index.md @@ -19,7 +19,7 @@ System::Xml::Formatting System::Xml::XmlTextWriter::get_Formatting() ### ReturnValue -One of the Formatting values. The default is [Formatting::None](../../formatting/) (no special formatting). +One of the [Formatting](../../formatting/) values. The default is [Formatting::None](../../formatting/) (no special formatting). ## See Also diff --git a/english/cpp/system.xml/xmltextwriter/get_writestate/_index.md b/english/cpp/system.xml/xmltextwriter/get_writestate/_index.md index 10cb3986dc..1256ada0d1 100644 --- a/english/cpp/system.xml/xmltextwriter/get_writestate/_index.md +++ b/english/cpp/system.xml/xmltextwriter/get_writestate/_index.md @@ -19,7 +19,7 @@ System::Xml::WriteState System::Xml::XmlTextWriter::get_WriteState() override ### ReturnValue -One of the WriteState values. +One of the [WriteState](../../writestate/) values. ## See Also diff --git a/english/cpp/system.xml/xmltextwriter/get_xmlspace/_index.md b/english/cpp/system.xml/xmltextwriter/get_xmlspace/_index.md index c6410b1af5..0c39b474e8 100644 --- a/english/cpp/system.xml/xmltextwriter/get_xmlspace/_index.md +++ b/english/cpp/system.xml/xmltextwriter/get_xmlspace/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.xml/xmltextwriter/get_xmlspace/ ## XmlTextWriter::get_XmlSpace method -Returns an XmlSpace representing the current **xml:space** scope. +Returns an [XmlSpace](../../xmlspace/) representing the current **xml:space** scope. ```cpp System::Xml::XmlSpace System::Xml::XmlTextWriter::get_XmlSpace() override @@ -19,7 +19,7 @@ System::Xml::XmlSpace System::Xml::XmlTextWriter::get_XmlSpace() override ### ReturnValue -An XmlSpace representing the current **xml:space** scope. +An [XmlSpace](../../xmlspace/) representing the current **xml:space** scope. ||| |-|-| diff --git a/english/cpp/system.xml/xmlvalidatingreader/get_entityhandling/_index.md b/english/cpp/system.xml/xmlvalidatingreader/get_entityhandling/_index.md index 4b162a49c3..9a091f498a 100644 --- a/english/cpp/system.xml/xmlvalidatingreader/get_entityhandling/_index.md +++ b/english/cpp/system.xml/xmlvalidatingreader/get_entityhandling/_index.md @@ -19,7 +19,7 @@ System::Xml::EntityHandling System::Xml::XmlValidatingReader::get_EntityHandling ### ReturnValue -One of the EntityHandling values. If no EntityHandling is specified, it defaults to [EntityHandling::ExpandEntities](../../entityhandling/). +One of the [EntityHandling](../../entityhandling/) values. If no [EntityHandling](../../entityhandling/) is specified, it defaults to [EntityHandling::ExpandEntities](../../entityhandling/). ## See Also diff --git a/english/cpp/system.xml/xmlvalidatingreader/get_nodetype/_index.md b/english/cpp/system.xml/xmlvalidatingreader/get_nodetype/_index.md index 732c44adba..2e5d23284b 100644 --- a/english/cpp/system.xml/xmlvalidatingreader/get_nodetype/_index.md +++ b/english/cpp/system.xml/xmlvalidatingreader/get_nodetype/_index.md @@ -19,7 +19,7 @@ XmlNodeType System::Xml::XmlValidatingReader::get_NodeType() override ### ReturnValue -One of the XmlNodeType values representing the type of the current node. +One of the [XmlNodeType](../../xmlnodetype/) values representing the type of the current node. ## See Also diff --git a/english/cpp/system.xml/xmlvalidatingreader/get_readstate/_index.md b/english/cpp/system.xml/xmlvalidatingreader/get_readstate/_index.md index 88f74e3f10..0302e45318 100644 --- a/english/cpp/system.xml/xmlvalidatingreader/get_readstate/_index.md +++ b/english/cpp/system.xml/xmlvalidatingreader/get_readstate/_index.md @@ -19,7 +19,7 @@ System::Xml::ReadState System::Xml::XmlValidatingReader::get_ReadState() overrid ### ReturnValue -One of the ReadState values. +One of the [ReadState](../../readstate/) values. ## See Also diff --git a/english/cpp/system.xml/xmlvalidatingreader/get_validationtype/_index.md b/english/cpp/system.xml/xmlvalidatingreader/get_validationtype/_index.md index 24d168971e..95b1933999 100644 --- a/english/cpp/system.xml/xmlvalidatingreader/get_validationtype/_index.md +++ b/english/cpp/system.xml/xmlvalidatingreader/get_validationtype/_index.md @@ -19,7 +19,7 @@ System::Xml::ValidationType System::Xml::XmlValidatingReader::get_ValidationType ### ReturnValue -One of the ValidationType values. If this value is not set, it defaults to [ValidationType::Auto](../../validationtype/). +One of the [ValidationType](../../validationtype/) values. If this value is not set, it defaults to [ValidationType::Auto](../../validationtype/). ## See Also diff --git a/english/cpp/system.xml/xmlvalidatingreader/get_xmlspace/_index.md b/english/cpp/system.xml/xmlvalidatingreader/get_xmlspace/_index.md index 87de4ce35e..1c543f1ad3 100644 --- a/english/cpp/system.xml/xmlvalidatingreader/get_xmlspace/_index.md +++ b/english/cpp/system.xml/xmlvalidatingreader/get_xmlspace/_index.md @@ -19,7 +19,7 @@ System::Xml::XmlSpace System::Xml::XmlValidatingReader::get_XmlSpace() override ### ReturnValue -One of the XmlSpace values. If no **xml:space** scope exists, this value defaults to [XmlSpace::None](../../xmlspace/). +One of the [XmlSpace](../../xmlspace/) values. If no **xml:space** scope exists, this value defaults to [XmlSpace::None](../../xmlspace/). ## See Also diff --git a/english/cpp/system.xml/xmlvalidatingreader/xmlvalidatingreader/_index.md b/english/cpp/system.xml/xmlvalidatingreader/xmlvalidatingreader/_index.md index 4d4b1b65a4..7ad57129c2 100644 --- a/english/cpp/system.xml/xmlvalidatingreader/xmlvalidatingreader/_index.md +++ b/english/cpp/system.xml/xmlvalidatingreader/xmlvalidatingreader/_index.md @@ -20,7 +20,7 @@ System::Xml::XmlValidatingReader::XmlValidatingReader(const SharedPtr\& | The stream containing the XML fragment to parse. | -| fragType | XmlNodeType | The XmlNodeType of the XML fragment. This determines what the fragment can contain (see table below). | +| fragType | XmlNodeType | The [XmlNodeType](../../xmlnodetype/) of the XML fragment. This determines what the fragment can contain (see table below). | | context | const SharedPtr\\& | The [XmlParserContext](../../xmlparsercontext/) in which the XML fragment is to be parsed. This includes the [XmlNameTable](../../xmlnametable/) to use, encoding, namespace scope, current **xml:lang**, and **xml:space** scope. | ## Remarks @@ -28,7 +28,7 @@ System::Xml::XmlValidatingReader::XmlValidatingReader(const SharedPtr\& | The [XmlParserContext](../../xmlparsercontext/) in which the XML fragment is to be parsed. This includes the [NameTable](../../nametable/) to use, encoding, namespace scope, current **xml:lang**, and **xml:space** scope. | ## Remarks @@ -84,7 +84,7 @@ System::Xml::XmlValidatingReader::XmlValidatingReader(const String &xmlFragment, The following table lists valid values for **fragType** and how the reader parses each of the different node types. ||| |-|-| -|XmlNodeType |Fragment May Contain | +|XmlNodeType|Fragment May Contain | |Element|Any valid element content (for example, any combination of elements, comments, processing instructions, cdata, text, and entity references). | |Attribute|The value of an attribute (the part inside the quotes). | |Document|The contents of an entire XML document; this enforces document level rules. | diff --git a/english/cpp/system.xml/xmlwriter/_index.md b/english/cpp/system.xml/xmlwriter/_index.md index b2bb1fdf30..1cee429f30 100644 --- a/english/cpp/system.xml/xmlwriter/_index.md +++ b/english/cpp/system.xml/xmlwriter/_index.md @@ -36,7 +36,7 @@ class XmlWriter : public System::IDisposable | virtual [get_Settings](./get_settings/)() | Returns the [XmlWriterSettings](../xmlwritersettings/) object used to create this [XmlWriter](./) instance. | | virtual [get_WriteState](./get_writestate/)() | When overridden in a derived class, gets the state of the writer. | | virtual [get_XmlLang](./get_xmllang/)() | When overridden in a derived class, gets the current **xml:lang** scope. | -| virtual [get_XmlSpace](./get_xmlspace/)() | When overridden in a derived class, gets an XmlSpace representing the current **xml:space** scope. | +| virtual [get_XmlSpace](./get_xmlspace/)() | When overridden in a derived class, gets an [XmlSpace](../xmlspace/) representing the current **xml:space** scope. | | virtual [LookupPrefix](./lookupprefix/)(String) | When overridden in a derived class, returns the closest prefix defined in the current namespace scope for the namespace URI. | | virtual [WriteAttributes](./writeattributes/)(SharedPtr\, bool) | When overridden in a derived class, writes out all the attributes found at the current position in the [XmlReader](../xmlreader/). | | [WriteAttributeString](./writeattributestring/)(const String\&, const String\&, const String\&) | When overridden in a derived class, writes an attribute with the specified local name, namespace URI, and value. | diff --git a/english/cpp/system.xml/xmlwriter/get_writestate/_index.md b/english/cpp/system.xml/xmlwriter/get_writestate/_index.md index bacafbd584..f90b353b9b 100644 --- a/english/cpp/system.xml/xmlwriter/get_writestate/_index.md +++ b/english/cpp/system.xml/xmlwriter/get_writestate/_index.md @@ -19,7 +19,7 @@ virtual System::Xml::WriteState System::Xml::XmlWriter::get_WriteState()=0 ### ReturnValue -One of the WriteState values. +One of the [WriteState](../../writestate/) values. ## See Also diff --git a/english/cpp/system.xml/xmlwriter/get_xmlspace/_index.md b/english/cpp/system.xml/xmlwriter/get_xmlspace/_index.md index 1203fe682c..9a1edb79ce 100644 --- a/english/cpp/system.xml/xmlwriter/get_xmlspace/_index.md +++ b/english/cpp/system.xml/xmlwriter/get_xmlspace/_index.md @@ -10,7 +10,7 @@ url: /cpp/system.xml/xmlwriter/get_xmlspace/ ## XmlWriter::get_XmlSpace method -When overridden in a derived class, gets an XmlSpace representing the current **xml:space** scope. +When overridden in a derived class, gets an [XmlSpace](../../xmlspace/) representing the current **xml:space** scope. ```cpp virtual System::Xml::XmlSpace System::Xml::XmlWriter::get_XmlSpace() @@ -19,7 +19,7 @@ virtual System::Xml::XmlSpace System::Xml::XmlWriter::get_XmlSpace() ### ReturnValue -An XmlSpace representing the current **xml:space** scope. +An [XmlSpace](../../xmlspace/) representing the current **xml:space** scope. ||| |-|-| diff --git a/english/cpp/system.xml/xmlwritersettings/get_namespacehandling/_index.md b/english/cpp/system.xml/xmlwritersettings/get_namespacehandling/_index.md index a1e52e8e48..b198663eed 100644 --- a/english/cpp/system.xml/xmlwritersettings/get_namespacehandling/_index.md +++ b/english/cpp/system.xml/xmlwritersettings/get_namespacehandling/_index.md @@ -19,7 +19,7 @@ System::Xml::NamespaceHandling System::Xml::XmlWriterSettings::get_NamespaceHand ### ReturnValue -The NamespaceHandling enumeration used to specify whether to remove duplicate namespace declarations in the [XmlWriter](../../xmlwriter/). +The [NamespaceHandling](../../namespacehandling/) enumeration used to specify whether to remove duplicate namespace declarations in the [XmlWriter](../../xmlwriter/). ## See Also diff --git a/english/cpp/system.xml/xmlwritersettings/get_newlinehandling/_index.md b/english/cpp/system.xml/xmlwritersettings/get_newlinehandling/_index.md index 8441ac771a..e0df572e9a 100644 --- a/english/cpp/system.xml/xmlwritersettings/get_newlinehandling/_index.md +++ b/english/cpp/system.xml/xmlwritersettings/get_newlinehandling/_index.md @@ -19,7 +19,7 @@ System::Xml::NewLineHandling System::Xml::XmlWriterSettings::get_NewLineHandling ### ReturnValue -One of the NewLineHandling values. The default is [NewLineHandling::Replace](../../newlinehandling/). +One of the [NewLineHandling](../../newlinehandling/) values. The default is [NewLineHandling::Replace](../../newlinehandling/). ## See Also diff --git a/english/cpp/system.xml/xmlwritersettings/get_outputmethod/_index.md b/english/cpp/system.xml/xmlwritersettings/get_outputmethod/_index.md index 451782b986..7b22766e93 100644 --- a/english/cpp/system.xml/xmlwritersettings/get_outputmethod/_index.md +++ b/english/cpp/system.xml/xmlwritersettings/get_outputmethod/_index.md @@ -19,7 +19,7 @@ XmlOutputMethod System::Xml::XmlWriterSettings::get_OutputMethod() ### ReturnValue -One of the XmlOutputMethod values. The default is [XmlOutputMethod::Xml](../../xmloutputmethod/). +One of the [XmlOutputMethod](../../xmloutputmethod/) values. The default is [XmlOutputMethod::Xml](../../xmloutputmethod/). ## See Also diff --git a/english/cpp/system/_index.md b/english/cpp/system/_index.md index c03e600d82..5c59b05137 100644 --- a/english/cpp/system/_index.md +++ b/english/cpp/system/_index.md @@ -39,7 +39,7 @@ url: /cpp/system/ | [EnumValues](./enumvalues/) | Provides meta information about enumeration constants of enum type **E**. | | [EnumValuesBase](./enumvaluesbase/) | A base class for a class that represents meta information of enumeration type. | | [EventArgs](./eventargs/) | The base class for classes that represent a context that is passed to the event subscribers when an event is triggered. Objects of this class should only be allocated using [System::MakeObject()](./makeobject/) function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into [System::SmartPtr](./smartptr/) pointer and use this pointer to pass it to functions as argument. | -| [ExceptionWrapper](./exceptionwrapper/) | Template that represents wrapper of exceptions that are derived from Exception class. | +| [ExceptionWrapper](./exceptionwrapper/) | Template that represents wrapper of exceptions that are derived from [Exception](./exception/) class. | | [FlagsAttribute](./flagsattribute/) | Indicates that an enumeration can be treated as a bit field; that is, a set of. | | [Func](./func/) | Function delegate. This type should be allocated on stack and passed to functions by value or by reference. Never use [System::SmartPtr](./smartptr/) class to manage objects of this type. | | [GC](./gc/) | Represents an emulated Garbage Collection which acts more like a stub which effectively does nothing. This is a static type with no instance services. You should never create instances of it by any means. | @@ -118,7 +118,7 @@ url: /cpp/system/ | [Action](./action/) | Delegate type that references methods that have no return value. | | [ArrayPtr](./arrayptr/) | Alias for 'pointer to array' type. | | [AsyncCallback](./asynccallback/) | A delegate type that represents a method to be called when asynchronous operation completes. | -| [BadImageFormatException](./badimageformatexception/) | The exception that is thrown when the file image of a dynamic link library (DLL) or an executable program is invalid. Never wrap the BadImageFormatException class instances into [System::SmartPtr](./smartptr/). | +| [BadImageFormatException](./badimageformatexception/) | The exception that is thrown when the file image of a dynamic link library (DLL) or an executable program is invalid. Never wrap the [BadImageFormatException](./badimageformatexception/) class instances into [System::SmartPtr](./smartptr/). | | [ByteArrayPtr](./bytearrayptr/) | An alias for a smart pointer object that points to an array of unsigned 8-bit integers. | | [Converter](./converter/) | Represents a pointer to the invokable entity that accepts a single argument of the **TInput** type and returns a value of the **TOutput** type. | | [DecoderFallbackBufferPtr](./decoderfallbackbufferptr/) | An alias for a smart pointer that points to an instance of [System::Text::DecoderFallbackBuffer](../system.text/decoderfallbackbuffer/) class. | @@ -173,6 +173,10 @@ url: /cpp/system/ | AsCast | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | | AsCast | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | | AsCast | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | +| AsCast | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | +| AsCast | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | +| Build | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | +| BuildObject | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | | Cast | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | | Cast_noexcept | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | | CastEnumerableTo | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | @@ -221,6 +225,9 @@ url: /cpp/system/ | ExplicitCast | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | | ExplicitCast | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | | ExplicitCast | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | +| ExplicitCast | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | +| ExplicitCast | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | +| ExplicitCast | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | | ForceStaticCast | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | | ForEachMemberGVName | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | | get_pointer | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | @@ -257,6 +264,8 @@ url: /cpp/system/ | 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] | +| MakeValueAsync | System.Collections.Generic.List`1[Doxygen2HugoConverter.Markup.SimpleMarkupEntry] | +| MakeValueAsync | 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] | diff --git a/english/cpp/system/array/_index.md b/english/cpp/system/array/_index.md index d5e092e082..825b3bf883 100644 --- a/english/cpp/system/array/_index.md +++ b/english/cpp/system/array/_index.md @@ -35,10 +35,10 @@ templateclass Array : public virtual System::Object, | [Array](./array/)(int, const T) | Filling constructor. | | [Array](./array/)(vector_t\&&) | Move constructor. | | [Array](./array/)(const vector_t\&) | Copy constructor. | -| [Array](./array/)(const std::vector\\&) | Constructs an [Array](./) object and fills it with values copied from an std::vector object whose values' type is the same as **T** but different from **UnderlyingType**. | -| [Array](./array/)(std::vector\\&&) | Constructs an [Array](./) object and fills it with values moved from an std::vector object whose values' type is the same as **T** but different from **UnderlyingType**. | -| [Array](./array/)(std::initializer_list\) | Constructs an [Array](./) object and fills it with values from the specified initializer list containing elements of **UnderlyingType** type. | -| [Array](./array/)(const std::array\\&) | Constructs an [Array](./) object and fills it with values from the specified array containing elements of **UnderlyingType** type. | +| [Array](./array/)(const std::vector\\&) | Constructs an [Array](./) object and fills it with values copied from an std::vector object whose values' type is the same as **T** but different from **[UnderlyingType](./underlyingtype/)**. | +| [Array](./array/)(std::vector\\&&) | Constructs an [Array](./) object and fills it with values moved from an std::vector object whose values' type is the same as **T** but different from **[UnderlyingType](./underlyingtype/)**. | +| [Array](./array/)(std::initializer_list\) | Constructs an [Array](./) object and fills it with values from the specified initializer list containing elements of **[UnderlyingType](./underlyingtype/)** type. | +| [Array](./array/)(const std::array\\&) | Constructs an [Array](./) object and fills it with values from the specified array containing elements of **[UnderlyingType](./underlyingtype/)** type. | | [Array](./array/)(std::initializer_list\, int) | Constructs an [Array](./) object and fills it with values from the specified initializer list containing elements of bool type. | | [begin](./begin/)() | Returns an iterator to the first element of the container. If the container is empty, the returned iterator will be equal to [end()](./end/). | | [begin](./begin/)() const | Returns an iterator to the first element of the const-qualified container. If the container is empty, the returned iterator will be equal to [end()](./end/). | diff --git a/english/cpp/system/array/array/_index.md b/english/cpp/system/array/array/_index.md index 4946f233f5..05ef1b4896 100644 --- a/english/cpp/system/array/array/_index.md +++ b/english/cpp/system/array/array/_index.md @@ -24,7 +24,7 @@ System::Array::Array() ## Array::Array(const std::array\\&) constructor -Constructs an [Array](../) object and fills it with values from the specified array containing elements of **UnderlyingType** type. +Constructs an [Array](../) object and fills it with values from the specified array containing elements of **[UnderlyingType](../underlyingtype/)** type. ```cpp template System::Array::Array(const std::array &init) @@ -48,7 +48,7 @@ template System::Array::Array(const std::array\&) constructor -Constructs an [Array](../) object and fills it with values copied from an std::vector object whose values' type is the same as **T** but different from **UnderlyingType**. +Constructs an [Array](../) object and fills it with values copied from an std::vector object whose values' type is the same as **T** but different from **[UnderlyingType](../underlyingtype/)**. ```cpp template System::Array::Array(const std::vector &value) @@ -149,7 +149,7 @@ System::Array::Array(std::initializer_list init, int=0) ## Array::Array(std::initializer_list\) constructor -Constructs an [Array](../) object and fills it with values from the specified initializer list containing elements of **UnderlyingType** type. +Constructs an [Array](../) object and fills it with values from the specified initializer list containing elements of **[UnderlyingType](../underlyingtype/)** type. ```cpp System::Array::Array(std::initializer_list init) @@ -169,7 +169,7 @@ System::Array::Array(std::initializer_list init) ## Array::Array(std::vector\\&&) constructor -Constructs an [Array](../) object and fills it with values moved from an std::vector object whose values' type is the same as **T** but different from **UnderlyingType**. +Constructs an [Array](../) object and fills it with values moved from an std::vector object whose values' type is the same as **T** but different from **[UnderlyingType](../underlyingtype/)**. ```cpp template System::Array::Array(std::vector &&value) diff --git a/english/cpp/system/array/const_iterator/_index.md b/english/cpp/system/array/const_iterator/_index.md index 4ec5a95b86..12a889464c 100644 --- a/english/cpp/system/array/const_iterator/_index.md +++ b/english/cpp/system/array/const_iterator/_index.md @@ -13,7 +13,7 @@ url: /cpp/system/array/const_iterator/ Const iterator type. ```cpp -vector_t::const_iterator System::Array< T >::const_iterator +typedef vector_t::const_iterator System::Array< T >::const_iterator ``` ## See Also diff --git a/english/cpp/system/array/const_reverse_iterator/_index.md b/english/cpp/system/array/const_reverse_iterator/_index.md index 85a27ce192..6a5b1e4bd8 100644 --- a/english/cpp/system/array/const_reverse_iterator/_index.md +++ b/english/cpp/system/array/const_reverse_iterator/_index.md @@ -13,7 +13,7 @@ url: /cpp/system/array/const_reverse_iterator/ Const reverse iterator type. ```cpp -vector_t::const_reverse_iterator System::Array< T >::const_reverse_iterator +typedef vector_t::const_reverse_iterator System::Array< T >::const_reverse_iterator ``` ## See Also diff --git a/english/cpp/system/array/convertall/_index.md b/english/cpp/system/array/convertall/_index.md index 373cfc3eda..dc0181a15e 100644 --- a/english/cpp/system/array/convertall/_index.md +++ b/english/cpp/system/array/convertall/_index.md @@ -25,7 +25,7 @@ template static ArrayPtr Sys | Parameter | Type | Description | | --- | --- | --- | | input_array | ArrayPtr\ | An [Array](../) object | -| converter | Converter\ | A Converter object used to convert each element of the input array to equivalent values of **OutputType** type | +| converter | Converter\ | A [Converter](../../converter/) object used to convert each element of the input array to equivalent values of **OutputType** type | ### ReturnValue diff --git a/english/cpp/system/array/enumerableptr/_index.md b/english/cpp/system/array/enumerableptr/_index.md index ac8120ee09..7453975395 100644 --- a/english/cpp/system/array/enumerableptr/_index.md +++ b/english/cpp/system/array/enumerableptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system/array/enumerableptr/ An alias for shared pointer type pointing to IEnumerable object containing elements of type **T**. ```cpp -SharedPtr > System::Array< T >::EnumerablePtr +typedef SharedPtr > System::Array< T >::EnumerablePtr ``` ## See Also diff --git a/english/cpp/system/array/enumeratorptr/_index.md b/english/cpp/system/array/enumeratorptr/_index.md index 0ee9a37717..62f8273ab8 100644 --- a/english/cpp/system/array/enumeratorptr/_index.md +++ b/english/cpp/system/array/enumeratorptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system/array/enumeratorptr/ An alias for shared pointer type pointing to IEnumerator object containing elements of type **T**. ```cpp -SharedPtr > System::Array< T >::EnumeratorPtr +typedef SharedPtr > System::Array< T >::EnumeratorPtr ``` ## See Also diff --git a/english/cpp/system/array/iterator/_index.md b/english/cpp/system/array/iterator/_index.md index f187f5e8b3..8bdef289a2 100644 --- a/english/cpp/system/array/iterator/_index.md +++ b/english/cpp/system/array/iterator/_index.md @@ -13,7 +13,7 @@ url: /cpp/system/array/iterator/ Iterator type. ```cpp -vector_t::iterator System::Array< T >::iterator +typedef vector_t::iterator System::Array< T >::iterator ``` ## See Also diff --git a/english/cpp/system/array/reverse_iterator/_index.md b/english/cpp/system/array/reverse_iterator/_index.md index 472453999e..7fe5f3fa97 100644 --- a/english/cpp/system/array/reverse_iterator/_index.md +++ b/english/cpp/system/array/reverse_iterator/_index.md @@ -13,7 +13,7 @@ url: /cpp/system/array/reverse_iterator/ Reverse iterator type. ```cpp -vector_t::reverse_iterator System::Array< T >::reverse_iterator +typedef vector_t::reverse_iterator System::Array< T >::reverse_iterator ``` ## See Also diff --git a/english/cpp/system/ascast/_index.md b/english/cpp/system/ascast/_index.md index 41031dc862..5de6f152e1 100644 --- a/english/cpp/system/ascast/_index.md +++ b/english/cpp/system/ascast/_index.md @@ -147,7 +147,7 @@ The cast result. Returns nullptr if no conversion available. ## System::AsCast(const Source\&) method -Casts the source type to the result type using 'as' operator cast. Used when the source and result both are smart pointers (with expicit SmartPtr<...> in result type). +Casts the source type to the result type using 'as' operator cast. Used when the source and result both are smart pointers (with expicit [SmartPtr<...>](../smartptr/) in result type). ```cpp template std::enable_if_t::PointerToPointer, Result> System::AsCast(const Source &value) @@ -201,6 +201,33 @@ The cast result. Returns empty nullable if no conversion available. ## System::AsCast(const Source\&) method +Casts the source type to the result type using 'as' operator cast. Invalid unboxing to non-object type. + +```cpp +template std::enable_if_t::InterfaceUnboxingToNullable, Result> System::AsCast(const Source &value) +``` + + +| Parameter | Description | +| --- | --- | +| Source | The source type. | +| Result | The result type. | + +| Parameter | Type | Description | +| --- | --- | --- | +| value | const Source\& | [Object](../object/) to cast. | + +### ReturnValue + +Always returns null. + +## See Also + +* Namespace [System](../) +* Library [Aspose.PDF for C++](../../) +## System::AsCast(const Source\&) method + + Invalid unboxing to non-object type. ```cpp @@ -255,6 +282,33 @@ The cast result. ## System::AsCast(const Source\&) method +Casts the source type to the result type using 'as' operator cast. Used for boxing common object. + +```cpp +template std::enable_if_t::InterfaceBoxing, typename CastResult::type> System::AsCast(const Source &value) +``` + + +| Parameter | Description | +| --- | --- | +| Source | The source type. | +| Result | The result type. | + +| Parameter | Type | Description | +| --- | --- | --- | +| value | const Source\& | [Object](../object/) to cast. | + +### ReturnValue + +The cast result. + +## See Also + +* Namespace [System](../) +* Library [Aspose.PDF for C++](../../) +## System::AsCast(const Source\&) method + + Casts the source type to the result type using 'as' operator cast. Used for boxing common object. ```cpp diff --git a/english/cpp/system/badimageformatexception/_index.md b/english/cpp/system/badimageformatexception/_index.md index c07f4c996f..0f0e96fb7f 100644 --- a/english/cpp/system/badimageformatexception/_index.md +++ b/english/cpp/system/badimageformatexception/_index.md @@ -10,7 +10,7 @@ url: /cpp/system/badimageformatexception/ ## BadImageFormatException typedef -The exception that is thrown when the file image of a dynamic link library (DLL) or an executable program is invalid. Never wrap the BadImageFormatException class instances into [System::SmartPtr](../smartptr/). +The exception that is thrown when the file image of a dynamic link library (DLL) or an executable program is invalid. Never wrap the [BadImageFormatException](./) class instances into [System::SmartPtr](../smartptr/). ```cpp using System::BadImageFormatException = System::ExceptionWrapper diff --git a/english/cpp/system/boxedvalue/gettypecode/_index.md b/english/cpp/system/boxedvalue/gettypecode/_index.md index a2317c465c..cb46d6ead4 100644 --- a/english/cpp/system/boxedvalue/gettypecode/_index.md +++ b/english/cpp/system/boxedvalue/gettypecode/_index.md @@ -19,7 +19,7 @@ TypeCode System::BoxedValue::GetTypeCode() const override ### ReturnValue -Value of TypeCode enum representing the type of the boxed value represented by the current object +Value of [TypeCode](../../typecode/) enum representing the type of the boxed value represented by the current object ## See Also diff --git a/english/cpp/system/boxedvaluebase/gettypecode/_index.md b/english/cpp/system/boxedvaluebase/gettypecode/_index.md index 1c1e1fe79e..7aff7b23be 100644 --- a/english/cpp/system/boxedvaluebase/gettypecode/_index.md +++ b/english/cpp/system/boxedvaluebase/gettypecode/_index.md @@ -19,7 +19,7 @@ virtual TypeCode System::BoxedValueBase::GetTypeCode() const =0 ### ReturnValue -Value of TypeCode enum representing the type of the boxed value represented by the current object +Value of [TypeCode](../../typecode/) enum representing the type of the boxed value represented by the current object ## See Also diff --git a/english/cpp/system/build/_index.md b/english/cpp/system/build/_index.md new file mode 100644 index 0000000000..9f66cc7c66 --- /dev/null +++ b/english/cpp/system/build/_index.md @@ -0,0 +1,41 @@ +--- +title: System::Build method +linktitle: Build +second_title: Aspose.PDF for C++ API Reference +description: 'System::Build method. Build an object with direct ownership in C++.' +type: docs +weight: 15000 +url: /cpp/system/build/ +--- +## System::Build method + + +Build an object with direct ownership. + +```cpp +template Details::ObjectBuilder System::Build(Args &&... args) +``` + + +| Parameter | Description | +| --- | --- | +| T | Type of object to build | +| Args | Argument types for object construction | + +| Parameter | Type | Description | +| --- | --- | --- | +| args | Args\&&... | Arguments to forward to object constructor | + +### ReturnValue + +ObjectBuilder configured for direct object construction +## Remarks + + + +[Object](../object/) construction must be finished with Get() call + +## See Also + +* Namespace [System](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system/buildobject/_index.md b/english/cpp/system/buildobject/_index.md new file mode 100644 index 0000000000..24e24d98ba --- /dev/null +++ b/english/cpp/system/buildobject/_index.md @@ -0,0 +1,43 @@ +--- +title: System::BuildObject method +linktitle: BuildObject +second_title: Aspose.PDF for C++ API Reference +description: 'System::BuildObject method. Build an object with shared ownership in C++.' +type: docs +weight: 15100 +url: /cpp/system/buildobject/ +--- +## System::BuildObject method + + +Build an object with shared ownership. + +```cpp +template Details::ObjectBuilder> System::BuildObject(Args &&... args) +``` + + +| Parameter | Description | +| --- | --- | +| T | Type of object to build | +| Args | Argument types for object construction | + +| Parameter | Type | Description | +| --- | --- | --- | +| args | Args\&&... | Arguments to forward to object constructor | + +### ReturnValue + +ObjectBuilder configured for shared pointer construction +## Remarks + + + +Creates a [SharedPtr](../sharedptr/) and returns a builder for it +[Object](../object/) construction must be finished with Get() call + +## See Also + +* Typedef [SharedPtr](../sharedptr/) +* Namespace [System](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system/cast/_index.md b/english/cpp/system/cast/_index.md index 192b7ca4c2..4c7a856dc7 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: 14800 +weight: 15200 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 a1af2e4891..1771f461ec 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: 14900 +weight: 15300 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 8dddadebc4..e54a441a0c 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: 15000 +weight: 15400 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 378048af79..bda9b253d9 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: 15200 +weight: 15600 url: /cpp/system/checkedcast/ --- ## System::CheckedCast method diff --git a/english/cpp/system/compare/_index.md b/english/cpp/system/compare/_index.md index ef400f1181..ab8254151d 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: 15300 +weight: 15700 url: /cpp/system/compare/ --- ## System::Compare(const TA\&, const TB\&) method diff --git a/english/cpp/system/console/_index.md b/english/cpp/system/console/_index.md index c116cc5e1c..c71ef2b212 100644 --- a/english/cpp/system/console/_index.md +++ b/english/cpp/system/console/_index.md @@ -62,7 +62,7 @@ class Console | static [WriteLine](./writeline/)(uint32_t) | Outputs the string representation of unsigned 32-bit integer value followed by the current line terminator to the standard output stream. | | static [WriteLine](./writeline/)(uint64_t) | Outputs the string representation of unsigned 64-bit integer value followed by the current line terminator to the standard output stream. | | static [WriteLine](./writeline/)(const ArrayPtr\\&, int, int) | Outputs the string representation of the specified range of the specified character array followed by the current line terminator to the standard output stream. | -| static [WriteLine](./writeline/)(const Exception\&) | Outputs the string representation of the specified Exception object followed by the current line terminator to the standard output stream. | +| static [WriteLine](./writeline/)(const Exception\&) | Outputs the string representation of the specified [Exception](../exception/) object followed by the current line terminator to the standard output stream. | | static [WriteLine](./writeline/)(const String\&, Args\&&...) | Outputs the string representation of the specified arguments formatted according to the specified format followed by the current line terminator to the standard output stream. | | static [WriteLine](./writeline/)(const char *) | | ## Remarks diff --git a/english/cpp/system/console/writeline/_index.md b/english/cpp/system/console/writeline/_index.md index 3708a80149..b2c2734f52 100644 --- a/english/cpp/system/console/writeline/_index.md +++ b/english/cpp/system/console/writeline/_index.md @@ -157,7 +157,7 @@ static void System::Console::WriteLine(const Decimal &value) ## Console::WriteLine(const Exception\&) method -Outputs the string representation of the specified Exception object followed by the current line terminator to the standard output stream. +Outputs the string representation of the specified [Exception](../../exception/) object followed by the current line terminator to the standard output stream. ```cpp static void System::Console::WriteLine(const Exception &e) diff --git a/english/cpp/system/const_pointer_cast/_index.md b/english/cpp/system/const_pointer_cast/_index.md index b18be03565..54eef27587 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: 15500 +weight: 15900 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 cc104988a1..f39eb425eb 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: 15600 +weight: 16000 url: /cpp/system/constcast/ --- ## System::ConstCast method diff --git a/english/cpp/system/datetime/specifykind/_index.md b/english/cpp/system/datetime/specifykind/_index.md index 225c296bab..8b7e81cfd1 100644 --- a/english/cpp/system/datetime/specifykind/_index.md +++ b/english/cpp/system/datetime/specifykind/_index.md @@ -24,7 +24,7 @@ static DateTime System::DateTime::SpecifyKind(DateTime value, DateTimeKind kind) ### ReturnValue -A new [DateTime](../) object that represents the same number of ticks as **value** and DateTimeKind value specified by **kind**. +A new [DateTime](../) object that represents the same number of ticks as **value** and [DateTimeKind](../../datetimekind/) value specified by **kind**. ## See Also diff --git a/english/cpp/system/decimal/number_type/_index.md b/english/cpp/system/decimal/number_type/_index.md index 9d3f453a48..efd86d335c 100644 --- a/english/cpp/system/decimal/number_type/_index.md +++ b/english/cpp/system/decimal/number_type/_index.md @@ -13,7 +13,7 @@ url: /cpp/system/decimal/number_type/ An alias for Detail::decimal_number_type. ```cpp -Detail::decimal_number_type System::Decimal::number_type +typedef Detail::decimal_number_type System::Decimal::number_type ``` ## See Also diff --git a/english/cpp/system/default/_index.md b/english/cpp/system/default/_index.md index 26b12e6a79..701c247512 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: 15700 +weight: 16100 url: /cpp/system/default/ --- ## System::Default() method diff --git a/english/cpp/system/discard/_index.md b/english/cpp/system/discard/_index.md index 783ecd92cf..2556080466 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: 15900 +weight: 16300 url: /cpp/system/discard/ --- ## System::Discard method diff --git a/english/cpp/system/dotryfinally/_index.md b/english/cpp/system/dotryfinally/_index.md index 1a6c3dcbf7..5b1a1c3901 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: 16000 +weight: 16400 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 c42c29ae2a..6d620f457f 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: 16300 +weight: 16700 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 a73233b6a4..34602cf633 100644 --- a/english/cpp/system/dynamiccast/_index.md +++ b/english/cpp/system/dynamiccast/_index.md @@ -4,13 +4,13 @@ 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: 16400 +weight: 16800 url: /cpp/system/dynamiccast/ --- ## System::DynamicCast(const TFrom\&) method -Performs dynamic cast on Exception objects. +Performs dynamic cast on [Exception](../exception/) objects. ```cpp template std::enable_if::value &&IsExceptionWrapper::value &&(std::is_convertible::value||std::is_base_of::value), TTo>::type System::DynamicCast(const TFrom &obj) @@ -19,8 +19,8 @@ template std::enable_if:: | Parameter | Description | | --- | --- | -| TTo | Target Exception type. | -| TFrom | Source Exception type. | +| TTo | Target [Exception](../exception/) type. | +| TFrom | Source [Exception](../exception/) type. | | Parameter | Type | Description | | --- | --- | --- | @@ -102,7 +102,7 @@ Left for backwards compatibility. Use ExplicitCast instead. ## System::DynamicCast(SmartPtr\) method -Performs dynamic cast on Objects to Exception objects. +Performs dynamic cast on Objects to [Exception](../exception/) objects. ```cpp template std::enable_if::value &&IsExceptionWrapper::value, TTo>::type System::DynamicCast(SmartPtr obj) @@ -111,7 +111,7 @@ template std::enable_if std::enable_if:: | Parameter | Description | | --- | --- | -| TTo | Target Exception type. | -| TFrom | Source Exception type. | +| TTo | Target [Exception](../exception/) type. | +| TFrom | Source [Exception](../exception/) type. | | Parameter | Type | Description | | --- | --- | --- | @@ -32,7 +32,7 @@ Cast result if cast is allowed or nullptr otherwise. ## Remarks -Performs dynamic cast on Exception objects. ## Deprecated +Performs dynamic cast on [Exception](../exception/) objects. ## Deprecated Left for backwards compatibility. Use AsCast instead. ## See Also @@ -73,7 +73,7 @@ Left for backwards compatibility. Use AsCast instead. ## System::DynamicCast_noexcept(SmartPtr\) method -Performs dynamic cast on Objects to Exception objects. +Performs dynamic cast on Objects to [Exception](../exception/) objects. ```cpp template std::enable_if::value &&IsExceptionWrapper::value, TTo>::type System::DynamicCast_noexcept(SmartPtr obj) noexcept @@ -82,7 +82,7 @@ template std::enable_if System::DynamicWeakPtr< T, trunkMode, weakLeafs >::DynamicWeakPtr_ +typedef DynamicWeakPtr System::DynamicWeakPtr< T, trunkMode, weakLeafs >::DynamicWeakPtr_ ``` ## See Also diff --git a/english/cpp/system/dynamicweakptr/pointee_/_index.md b/english/cpp/system/dynamicweakptr/pointee_/_index.md index a6025bcb9f..14560dd833 100644 --- a/english/cpp/system/dynamicweakptr/pointee_/_index.md +++ b/english/cpp/system/dynamicweakptr/pointee_/_index.md @@ -13,7 +13,7 @@ url: /cpp/system/dynamicweakptr/pointee_/ Pointed type. ```cpp -T System::SmartPtr< T >::Pointee_ +typedef T System::SmartPtr< T >::Pointee_ ``` ## See Also diff --git a/english/cpp/system/dynamicweakptr/reference/_index.md b/english/cpp/system/dynamicweakptr/reference/_index.md index a197b9b430..8c7bfe3311 100644 --- a/english/cpp/system/dynamicweakptr/reference/_index.md +++ b/english/cpp/system/dynamicweakptr/reference/_index.md @@ -20,7 +20,7 @@ class Reference | Method | Description | | --- | --- | -| [operator DynamicWeakPtr_ &](./operatordynamicweakptr_&/)() const | Conversion operator. Allows using [Reference](./) in contexts where DynamicWeakPtr_ is needed. | +| [operator DynamicWeakPtr_ &](./operatordynamicweakptr_&/)() const | Conversion operator. Allows using [Reference](./) in contexts where [DynamicWeakPtr_](../dynamicweakptr_/) is needed. | | [Reference](./reference/)(DynamicWeakPtr_\&) | Creates smart pointer reference. | | [Reference](./reference/)(Reference\&&) | Move-constructs smart pointer reference. | | [~Reference](./~reference/)() | Destroys reference. Ensures Apply() call on referenced smart pointer. | diff --git a/english/cpp/system/dynamicweakptr/reference/operatordynamicweakptr_&/_index.md b/english/cpp/system/dynamicweakptr/reference/operatordynamicweakptr_&/_index.md index 6dc4b52bc7..f65bfdbece 100644 --- a/english/cpp/system/dynamicweakptr/reference/operatordynamicweakptr_&/_index.md +++ b/english/cpp/system/dynamicweakptr/reference/operatordynamicweakptr_&/_index.md @@ -10,7 +10,7 @@ url: /cpp/system/dynamicweakptr/reference/operatordynamicweakptr_&/ ## Reference::operator DynamicWeakPtr_ & method -Conversion operator. Allows using [Reference](../) in contexts where DynamicWeakPtr_ is needed. +Conversion operator. Allows using [Reference](../) in contexts where [DynamicWeakPtr_](../../dynamicweakptr_/) is needed. ```cpp System::DynamicWeakPtr::Reference::operator DynamicWeakPtr_ &() const diff --git a/english/cpp/system/dynamicweakptr/smartptr_/_index.md b/english/cpp/system/dynamicweakptr/smartptr_/_index.md index a32432a27b..2498a6f13f 100644 --- a/english/cpp/system/dynamicweakptr/smartptr_/_index.md +++ b/english/cpp/system/dynamicweakptr/smartptr_/_index.md @@ -13,7 +13,7 @@ url: /cpp/system/dynamicweakptr/smartptr_/ [SmartPtr](../../smartptr/) baseclass alias. ```cpp -SmartPtr System::DynamicWeakPtr< T, trunkMode, weakLeafs >::SmartPtr_ +typedef SmartPtr System::DynamicWeakPtr< T, trunkMode, weakLeafs >::SmartPtr_ ``` ## See Also diff --git a/english/cpp/system/enumgetname/_index.md b/english/cpp/system/enumgetname/_index.md index f6e6475b6e..b989a9d53b 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: 17500 +weight: 17900 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 b75a8af7da..bbbb3f2afe 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: 17700 +weight: 18100 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 cb131a315c..13479d32b6 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: 17800 +weight: 18200 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 660712b158..f24c91ac1f 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: 17900 +weight: 18300 url: /cpp/system/equals_float,float_/ --- ## System::Equals< float, float > method diff --git a/english/cpp/system/exceptionwrapper/_index.md b/english/cpp/system/exceptionwrapper/_index.md index d76b85e1eb..9e2727cafe 100644 --- a/english/cpp/system/exceptionwrapper/_index.md +++ b/english/cpp/system/exceptionwrapper/_index.md @@ -10,7 +10,7 @@ url: /cpp/system/exceptionwrapper/ ## ExceptionWrapper class -Template that represents wrapper of exceptions that are derived from Exception class. +Template that represents wrapper of exceptions that are derived from [Exception](../exception/) class. ```cpp templateclass ExceptionWrapper @@ -24,14 +24,14 @@ templateclass ExceptionWrapper | [ExceptionWrapper](./exceptionwrapper/)(const ExceptionPtr\&) | Constructs a instance of [ExceptionWrapper](./) class that contains passed pointer. | | [ExceptionWrapper](./exceptionwrapper/)(const ExceptionWrapper\&) | Copy constructor. | | [ExceptionWrapper](./exceptionwrapper/)(ExceptionWrapper\&&) | Move constructor. | -| explicit [ExceptionWrapper](./exceptionwrapper/)(Args\&&...) | Constructor that forwards parameters to the Exception class constructors and creates smart pointer that holds new Exception class instance. | +| explicit [ExceptionWrapper](./exceptionwrapper/)(Args\&&...) | Constructor that forwards parameters to the [Exception](../exception/) class constructors and creates smart pointer that holds new [Exception](../exception/) class instance. | | static [operator new](./operatornew/)(std::size_t) | | | static [operator new[]](./operatornew[]/)(std::size_t) | | -| [operator SharedPtr< Object >](./operatorsharedptr_object_/)() | Implicit cast operator to SharedPtr | -| [operator->](./operator-_/)() const | Allows to access members of the Exception object. | +| [operator SharedPtr< Object >](./operatorsharedptr_object_/)() | Implicit cast operator to [SharedPtr](../sharedptr/) | +| [operator->](./operator-_/)() const | Allows to access members of the [Exception](../exception/) object. | | [operator=](./operator=/)(const ExceptionWrapper\&) | Assignment operator. | | [operator=](./operator=/)(ExceptionWrapper\&&) | Move assignment operator. | -| static [Type](./type/)() | Shortcut to get [System::TypeInfo](../typeinfo/) object for the Exception type. | +| static [Type](./type/)() | Shortcut to get [System::TypeInfo](../typeinfo/) object for the [Exception](../exception/) type. | ## Typedefs | Typedef | Description | diff --git a/english/cpp/system/exceptionwrapper/exceptionwrapper/_index.md b/english/cpp/system/exceptionwrapper/exceptionwrapper/_index.md index 77ffd419fe..9bdf3e542d 100644 --- a/english/cpp/system/exceptionwrapper/exceptionwrapper/_index.md +++ b/english/cpp/system/exceptionwrapper/exceptionwrapper/_index.md @@ -10,7 +10,7 @@ url: /cpp/system/exceptionwrapper/exceptionwrapper/ ## ExceptionWrapper::ExceptionWrapper(Args\&&...) constructor -Constructor that forwards parameters to the Exception class constructors and creates smart pointer that holds new Exception class instance. +Constructor that forwards parameters to the [Exception](../../exception/) class constructors and creates smart pointer that holds new [Exception](../../exception/) class instance. ```cpp template System::ExceptionWrapper::ExceptionWrapper(Args &&...args) @@ -33,7 +33,7 @@ System::ExceptionWrapper::ExceptionWrapper(const ExceptionPtr &ptr) | Parameter | Type | Description | | --- | --- | --- | -| ptr | const ExceptionPtr\& | Smart pointer to the instance of Exception class. | +| ptr | const ExceptionPtr\& | Smart pointer to the instance of [Exception](../../exception/) class. | ## See Also diff --git a/english/cpp/system/exceptionwrapper/operator-_/_index.md b/english/cpp/system/exceptionwrapper/operator-_/_index.md index fd21f570e0..7091b0d3bd 100644 --- a/english/cpp/system/exceptionwrapper/operator-_/_index.md +++ b/english/cpp/system/exceptionwrapper/operator-_/_index.md @@ -10,7 +10,7 @@ url: /cpp/system/exceptionwrapper/operator-_/ ## ExceptionWrapper::operator-> method -Allows to access members of the Exception object. +Allows to access members of the [Exception](../../exception/) object. ```cpp T * System::ExceptionWrapper::operator->() const @@ -19,7 +19,7 @@ T * System::ExceptionWrapper::operator->() const ### ReturnValue -Raw pointer to the Exception object. +Raw pointer to the [Exception](../../exception/) object. ## See Also diff --git a/english/cpp/system/exceptionwrapper/operatorsharedptr_object_/_index.md b/english/cpp/system/exceptionwrapper/operatorsharedptr_object_/_index.md index 4b1950d134..1169992956 100644 --- a/english/cpp/system/exceptionwrapper/operatorsharedptr_object_/_index.md +++ b/english/cpp/system/exceptionwrapper/operatorsharedptr_object_/_index.md @@ -10,7 +10,7 @@ url: /cpp/system/exceptionwrapper/operatorsharedptr_object_/ ## ExceptionWrapper::operator SharedPtr< Object > method -Implicit cast operator to SharedPtr +Implicit cast operator to [SharedPtr](../../sharedptr/) ```cpp System::ExceptionWrapper::operator SharedPtr() diff --git a/english/cpp/system/exceptionwrapper/type/_index.md b/english/cpp/system/exceptionwrapper/type/_index.md index f0ab04944b..135cce5637 100644 --- a/english/cpp/system/exceptionwrapper/type/_index.md +++ b/english/cpp/system/exceptionwrapper/type/_index.md @@ -10,7 +10,7 @@ url: /cpp/system/exceptionwrapper/type/ ## ExceptionWrapper::Type method -Shortcut to get [System::TypeInfo](../../typeinfo/) object for the Exception type. +Shortcut to get [System::TypeInfo](../../typeinfo/) object for the [Exception](../../exception/) type. ```cpp static const System::TypeInfo & System::ExceptionWrapper::Type() @@ -19,7 +19,7 @@ static const System::TypeInfo & System::ExceptionWrapper::Type() ### ReturnValue -Const reference to [TypeInfo](../../typeinfo/) structure which describes Exception type. +Const reference to [TypeInfo](../../typeinfo/) structure which describes [Exception](../../exception/) type. ## See Also diff --git a/english/cpp/system/explicitcast/_index.md b/english/cpp/system/explicitcast/_index.md index 3978d1b36f..59f1a721b3 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: 18000 +weight: 18400 url: /cpp/system/explicitcast/ --- ## System::ExplicitCast(const Source\&) method @@ -120,7 +120,7 @@ The cast result. ## System::ExplicitCast(const Source\&) method -Casts the source type to the result type using explicit cast. Used when the source and result both are smart pointers (without expicit SmartPtr<...> in result type). +Casts the source type to the result type using explicit cast. Used when the source and result both are smart pointers (without expicit [SmartPtr<...>](../smartptr/) in result type). ```cpp template std::enable_if_t::Pointer, typename CastResult::type> System::ExplicitCast(const Source &value) @@ -147,7 +147,7 @@ The cast result. ## System::ExplicitCast(const Source\&) method -Casts the source type to the result type using explicit cast. Used when the source and result both are smart pointers (with expicit SmartPtr<...> in result type). +Casts the source type to the result type using explicit cast. Used when the source and result both are smart pointers (with expicit [SmartPtr<...>](../smartptr/) in result type). ```cpp template std::enable_if_t::PointerToPointer, Result> System::ExplicitCast(const Source &value) @@ -284,6 +284,60 @@ The cast result. ## System::ExplicitCast(const Source\&) method +Casts the source type to the result type using explicit cast. Used for copying value types to heap when value type should be referenced as smart pointer (in generics constrained with interface type but specialized with structure implementing this interface). + +```cpp +template std::enable_if_t::HeapifyBoxing, typename CastResult::type> System::ExplicitCast(const Source &value) +``` + + +| Parameter | Description | +| --- | --- | +| Source | The source type. | +| Result | The result type. | + +| Parameter | Type | Description | +| --- | --- | --- | +| value | const Source\& | [Object](../object/) to cast. | + +### ReturnValue + +The cast result. + +## See Also + +* Namespace [System](../) +* Library [Aspose.PDF for C++](../../) +## System::ExplicitCast(const Source\&) method + + +Casts the source type to the result type using explicit cast. Used for getting interfaces from value types. + +```cpp +template std::enable_if_t::InterfaceBoxing, typename CastResult::type> System::ExplicitCast(const Source &value) +``` + + +| Parameter | Description | +| --- | --- | +| Source | The source type. | +| Result | The result type. | + +| Parameter | Type | Description | +| --- | --- | --- | +| value | const Source\& | [Object](../object/) to cast. | + +### ReturnValue + +The cast result. + +## See Also + +* Namespace [System](../) +* Library [Aspose.PDF for C++](../../) +## System::ExplicitCast(const Source\&) method + + Casts the source type to the result type using explicit cast. Used for common boxing. ```cpp @@ -338,6 +392,33 @@ The cast result. ## System::ExplicitCast(const Source\&) method +Casts the source type to the result type using explicit cast. Used for unboxing interfaces. + +```cpp +template std::enable_if_t::InterfaceUnboxing, Result> System::ExplicitCast(const Source &value) +``` + + +| Parameter | Description | +| --- | --- | +| Source | The source type. | +| Result | The result type. | + +| Parameter | Type | Description | +| --- | --- | --- | +| value | const Source\& | [Object](../object/) to cast. | + +### ReturnValue + +The cast result. + +## See Also + +* Namespace [System](../) +* Library [Aspose.PDF for C++](../../) +## System::ExplicitCast(const Source\&) method + + Casts the source type to the result type using explicit cast. Used for common unboxing. ```cpp diff --git a/english/cpp/system/forcestaticcast/_index.md b/english/cpp/system/forcestaticcast/_index.md index 2a7d111350..04ec030f0c 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: 19600 +weight: 20300 url: /cpp/system/forcestaticcast/ --- ## System::ForceStaticCast method diff --git a/english/cpp/system/foreachmembergvname/_index.md b/english/cpp/system/foreachmembergvname/_index.md index 3868e6da4a..91ce262f2d 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: 19700 +weight: 20400 url: /cpp/system/foreachmembergvname/ --- ## System::ForEachMemberGVName method diff --git a/english/cpp/system/gc/_index.md b/english/cpp/system/gc/_index.md index dfe01675c3..77ce7826ae 100644 --- a/english/cpp/system/gc/_index.md +++ b/english/cpp/system/gc/_index.md @@ -20,6 +20,7 @@ class GC : public System::Object | Method | Description | | --- | --- | +| static [GetTotalAllocatedBytes](./gettotalallocatedbytes/)(bool) | Returns total allocated bytes. | | static [GetTotalMemory](./gettotalmemory/)(bool) | Returns the number of bytes of private memory currently allocated by the current process. | ## See Also diff --git a/english/cpp/system/gc/gettotalallocatedbytes/_index.md b/english/cpp/system/gc/gettotalallocatedbytes/_index.md new file mode 100644 index 0000000000..9b40a5d1dd --- /dev/null +++ b/english/cpp/system/gc/gettotalallocatedbytes/_index.md @@ -0,0 +1,37 @@ +--- +title: System::GC::GetTotalAllocatedBytes method +linktitle: GetTotalAllocatedBytes +second_title: Aspose.PDF for C++ API Reference +description: 'System::GC::GetTotalAllocatedBytes method. Returns total allocated bytes in C++.' +type: docs +weight: 100 +url: /cpp/system/gc/gettotalallocatedbytes/ +--- +## GC::GetTotalAllocatedBytes method + + +Returns total allocated bytes. + +```cpp +static int64_t System::GC::GetTotalAllocatedBytes(bool precise=false) +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| precise | bool | IGNORED | + +### ReturnValue + +The number of bytes of private memory currently allocated by the current process. +## Remarks + + + +This is stub implementation for .NET method + +## See Also + +* Class [GC](../) +* Namespace [System](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system/gc/gettotalmemory/_index.md b/english/cpp/system/gc/gettotalmemory/_index.md index 39b66e71ac..ca9e58ccd3 100644 --- a/english/cpp/system/gc/gettotalmemory/_index.md +++ b/english/cpp/system/gc/gettotalmemory/_index.md @@ -4,7 +4,7 @@ linktitle: GetTotalMemory second_title: Aspose.PDF for C++ API Reference description: 'System::GC::GetTotalMemory method. Returns the number of bytes of private memory currently allocated by the current process in C++.' type: docs -weight: 100 +weight: 200 url: /cpp/system/gc/gettotalmemory/ --- ## GC::GetTotalMemory method diff --git a/english/cpp/system/get_pointer/_index.md b/english/cpp/system/get_pointer/_index.md index 5818cb6c39..45b50b4d96 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: 19800 +weight: 20500 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 3a56ca3f0f..13b9f88445 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: 19900 +weight: 20600 url: /cpp/system/gethashcode/ --- ## System::GetHashCode(const std::thread::id\&) method @@ -88,7 +88,7 @@ template std::enable_if::value, int>:: | Parameter | Type | Description | | --- | --- | --- | -| obj | const T\& | The Exception Wrapper that contains the object to generate hash code for | +| obj | const T\& | The [Exception](../exception/) Wrapper that contains the object to generate hash code for | ### ReturnValue diff --git a/english/cpp/system/iasyncresult/smart_ptr/_index.md b/english/cpp/system/iasyncresult/smart_ptr/_index.md index 20b9422ae4..8e792db202 100644 --- a/english/cpp/system/iasyncresult/smart_ptr/_index.md +++ b/english/cpp/system/iasyncresult/smart_ptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system/iasyncresult/smart_ptr/ Shared pointer to [IAsyncResult](../). ```cpp -SharedPtr System::IAsyncResult::smart_ptr +typedef SharedPtr System::IAsyncResult::smart_ptr ``` ## See Also diff --git a/english/cpp/system/is_parametrized_test/_index.md b/english/cpp/system/is_parametrized_test/_index.md index cca452d604..5f0a2623b0 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: 20400 +weight: 21100 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 cb35cdd984..fc3cf332d3 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: 20500 +weight: 21200 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 b436ed88a4..6bc177e78e 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: 20600 +weight: 21300 url: /cpp/system/isconstant/ --- ## System::IsConstant method diff --git a/english/cpp/system/isdeclaration/_index.md b/english/cpp/system/isdeclaration/_index.md index 4129165e7c..77d9d1fd61 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: 20700 +weight: 21400 url: /cpp/system/isdeclaration/ --- ## System::IsDeclaration method diff --git a/english/cpp/system/isenummetainfodefined/_index.md b/english/cpp/system/isenummetainfodefined/_index.md index 3fb292216f..b931fee46f 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: 20800 +weight: 21500 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 9fd9302366..9c55cbb333 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: 21000 +weight: 21700 url: /cpp/system/isinfinity/ --- ## System::IsInfinity method diff --git a/english/cpp/system/isnan/_index.md b/english/cpp/system/isnan/_index.md index bf12a4dd76..0133a0d54b 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: 21100 +weight: 21800 url: /cpp/system/isnan/ --- ## System::IsNaN method diff --git a/english/cpp/system/isnegativeinfinity/_index.md b/english/cpp/system/isnegativeinfinity/_index.md index d69d2271a6..e3e50de79a 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: 21200 +weight: 21900 url: /cpp/system/isnegativeinfinity/ --- ## System::IsNegativeInfinity method diff --git a/english/cpp/system/ispositiveinfinity/_index.md b/english/cpp/system/ispositiveinfinity/_index.md index ea3073a65a..9e34973f82 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: 21300 +weight: 22000 url: /cpp/system/ispositiveinfinity/ --- ## System::IsPositiveInfinity method diff --git a/english/cpp/system/iterateover/_index.md b/english/cpp/system/iterateover/_index.md index e79124077e..974a7c03d0 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: 21400 +weight: 22100 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 6c4727b02c..49953c1471 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: 22100 +weight: 22800 url: /cpp/system/makearray/ --- ## System::MakeArray(Args\&&...) method diff --git a/english/cpp/system/makeasync/_index.md b/english/cpp/system/makeasync/_index.md index 3a4b64feb3..4dfb1f4adf 100644 --- a/english/cpp/system/makeasync/_index.md +++ b/english/cpp/system/makeasync/_index.md @@ -4,7 +4,7 @@ linktitle: MakeAsync second_title: Aspose.PDF for C++ API Reference description: 'How to use MakeAsync method of class in C++.' type: docs -weight: 22400 +weight: 23100 url: /cpp/system/makeasync/ --- ## System::MakeAsync(const Details::AsyncFunction\&) method diff --git a/english/cpp/system/makeobject/_index.md b/english/cpp/system/makeobject/_index.md index eb56854b38..3881524344 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: 22600 +weight: 23300 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 7e5aedb9ef..4d5894c188 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: 22800 +weight: 23500 url: /cpp/system/makescopeguard/ --- ## System::MakeScopeGuard method diff --git a/english/cpp/system/makesharedptr/_index.md b/english/cpp/system/makesharedptr/_index.md index cd738fc6a1..887d7b304e 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: 22900 +weight: 23600 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 03de969964..96f020681d 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: 23100 +weight: 23800 url: /cpp/system/maketuple/ --- ## System::MakeTuple method diff --git a/english/cpp/system/makevalueasync/_index.md b/english/cpp/system/makevalueasync/_index.md new file mode 100644 index 0000000000..c6ae4667f5 --- /dev/null +++ b/english/cpp/system/makevalueasync/_index.md @@ -0,0 +1,37 @@ +--- +title: System::MakeValueAsync method +linktitle: MakeValueAsync +second_title: Aspose.PDF for C++ API Reference +description: 'How to use MakeValueAsync method of class in C++.' +type: docs +weight: 23900 +url: /cpp/system/makevalueasync/ +--- +## System::MakeValueAsync(const Details::AsyncFunction\&) method + + + + +```cpp +Threading::Tasks::ValueTask System::MakeValueAsync(const Details::AsyncFunction &fnc) +``` + +## See Also + +* Class [ValueTask](../../system.threading.tasks/valuetask/) +* Namespace [System](../) +* Library [Aspose.PDF for C++](../../) +## System::MakeValueAsync(const Details::ResultAsyncFunction\\&) method + + + + +```cpp +template Threading::Tasks::ResultValueTask System::MakeValueAsync(const Details::ResultAsyncFunction &fnc) +``` + +## See Also + +* Class [ResultValueTask](../../system.threading.tasks/resultvaluetask/) +* Namespace [System](../) +* Library [Aspose.PDF for C++](../../) diff --git a/english/cpp/system/makeyieldenumerable/_index.md b/english/cpp/system/makeyieldenumerable/_index.md index fc0113fea4..05f48a337b 100644 --- a/english/cpp/system/makeyieldenumerable/_index.md +++ b/english/cpp/system/makeyieldenumerable/_index.md @@ -4,7 +4,7 @@ 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 +weight: 24100 url: /cpp/system/makeyieldenumerable/ --- ## System::MakeYieldEnumerable method diff --git a/english/cpp/system/makeyieldenumerator/_index.md b/english/cpp/system/makeyieldenumerator/_index.md index 2b239db235..5d1cc0edc6 100644 --- a/english/cpp/system/makeyieldenumerator/_index.md +++ b/english/cpp/system/makeyieldenumerator/_index.md @@ -4,7 +4,7 @@ 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 +weight: 24200 url: /cpp/system/makeyieldenumerator/ --- ## System::MakeYieldEnumerator method diff --git a/english/cpp/system/memberwiseclone/_index.md b/english/cpp/system/memberwiseclone/_index.md index 42e28ff331..a0c73a7c48 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: 23400 +weight: 24300 url: /cpp/system/memberwiseclone/ --- ## System::MemberwiseClone method diff --git a/english/cpp/system/multicastdelegate_returntype(argumenttypes...)_/_index.md b/english/cpp/system/multicastdelegate_returntype(argumenttypes...)_/_index.md index 5fc2146b49..fea07aebe0 100644 --- a/english/cpp/system/multicastdelegate_returntype(argumenttypes...)_/_index.md +++ b/english/cpp/system/multicastdelegate_returntype(argumenttypes...)_/_index.md @@ -27,7 +27,7 @@ templateclass MulticastDelegate< ReturnType(ArgumentT | --- | --- | | [BeginInvoke](./begininvoke/)(ArgumentTypes..., const AsyncCallback\&, const CallbackArgumentType\&) | NOT IMPLEMENTED. | | [connect](./connect/)(Callback) | Adds the specified delegate to the collection. | -| [connect](./connect/)(std::function\) | Adds the specified function object to the delegate collection. The function object is converted to the Callback delegate type before being added to the collection. | +| [connect](./connect/)(std::function\) | Adds the specified function object to the delegate collection. The function object is converted to the [Callback](./callback/) delegate type before being added to the collection. | | [connect](./connect/)(MulticastDelegate\&) | Adds the specified MulticastDelegate object to the delegate collection. | | [connect](./connect/)(MemberType ClassType::*, ClassType *) | Adds the specified non-static method of the specified object to the delegate collection. | | [connect](./connect/)(MemberType ClassType::*, const SharedPtr\\&) | Adds the specified non-static method of the specified object to the delegate collection. | diff --git a/english/cpp/system/multicastdelegate_returntype(argumenttypes...)_/connect/_index.md b/english/cpp/system/multicastdelegate_returntype(argumenttypes...)_/connect/_index.md index ab6d4a954f..7defeb5e45 100644 --- a/english/cpp/system/multicastdelegate_returntype(argumenttypes...)_/connect/_index.md +++ b/english/cpp/system/multicastdelegate_returntype(argumenttypes...)_/connect/_index.md @@ -116,7 +116,7 @@ A reference to the self ## MulticastDelegate< ReturnType(ArgumentTypes...)>::connect(std::function\) method -Adds the specified function object to the delegate collection. The function object is converted to the Callback delegate type before being added to the collection. +Adds the specified function object to the delegate collection. The function object is converted to the [Callback](../callback/) delegate type before being added to the collection. ```cpp template MulticastDelegate & System::MulticastDelegate::connect(std::function f) diff --git a/english/cpp/system/multicastdelegate_returntype(argumenttypes...)_/multicastdelegate/_index.md b/english/cpp/system/multicastdelegate_returntype(argumenttypes...)_/multicastdelegate/_index.md index 95c7318703..760956b192 100644 --- a/english/cpp/system/multicastdelegate_returntype(argumenttypes...)_/multicastdelegate/_index.md +++ b/english/cpp/system/multicastdelegate_returntype(argumenttypes...)_/multicastdelegate/_index.md @@ -124,7 +124,7 @@ template System::MulticastDelegate::ValueType +typedef T System::Nullable< T >::ValueType ``` ## See Also diff --git a/english/cpp/system/object/ptr/_index.md b/english/cpp/system/object/ptr/_index.md index 9104323522..b7cc850d18 100644 --- a/english/cpp/system/object/ptr/_index.md +++ b/english/cpp/system/object/ptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system/object/ptr/ Alias for smart pointer type. ```cpp -SmartPtr System::Object::ptr +typedef SmartPtr System::Object::ptr ``` ## See Also diff --git a/english/cpp/system/objectext/_index.md b/english/cpp/system/objectext/_index.md index 669277d60a..1dfa023a64 100644 --- a/english/cpp/system/objectext/_index.md +++ b/english/cpp/system/objectext/_index.md @@ -49,6 +49,7 @@ class ObjectExt : public System::ObjectType | static [Is](./is/)(const SmartPtr\\&) | Implements 'is' operator translation. Specialization for nullable types. | | static [Is](./is/)(const SmartPtr\\&) | Implements 'is' operator translation. Specialization for boxable types with == operator defined. | | static [Is](./is/)(const SmartPtr\\&) | Implements 'is' operator translation. Specialization for boxable types without defined ==. | +| static [Is](./is/)(const SmartPtr\\&) | Implements 'is' operator translation. Specialization value types boxed to interfaces. | | static [Is](./is/)(const SmartPtr\\&) | Implements 'is' operator translation. Specialization for enum types. | | static [Is](./is/)(const WeakPtr\\&) | Implements 'is' operator translation. Specialization for enum types vs weak pointers. | | static [Is](./is/)(const Nullable\\&) | Implements 'is' operator translation. Specialization for [Nullable](../nullable/) type. | diff --git a/english/cpp/system/objectext/is/_index.md b/english/cpp/system/objectext/is/_index.md index d2cf8fd187..a9acb5a5fc 100644 --- a/english/cpp/system/objectext/is/_index.md +++ b/english/cpp/system/objectext/is/_index.md @@ -286,6 +286,36 @@ True if 'is' returns true, false otherwise. ## See Also +* Class [SmartPtr](../../smartptr/) +* Class [ObjectExt](../) +* Namespace [System](../../) +* Library [Aspose.PDF for C++](../../../) +## ObjectExt::Is(const SmartPtr\\&) method + + +Implements 'is' operator translation. Specialization value types boxed to interfaces. + +```cpp +template static std::enable_if::value &&!IsNullable::value &&!std::is_enum::value &&!std::is_same::value, bool>::type System::ObjectExt::Is(const SmartPtr &obj) +``` + + +| Parameter | Description | +| --- | --- | +| T | Target type. | +| V | Type of the pointed object. | + +| Parameter | Type | Description | +| --- | --- | --- | +| obj | const SmartPtr\\& | [Object](../../object/) to test for 'is' operator. | + +### ReturnValue + +True if 'is' returns true, false otherwise. + +## See Also + +* Class [Object](../../object/) * Class [SmartPtr](../../smartptr/) * Class [ObjectExt](../) * Namespace [System](../../) diff --git a/english/cpp/system/objecttype.gettype_system.datetime_/_index.md b/english/cpp/system/objecttype.gettype_system.datetime_/_index.md index e9d020a410..13799810da 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: 23500 +weight: 24400 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 6b5d0da94f..e7694c1c90 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: 23600 +weight: 24500 url: /cpp/system/objecttype.gettype_system.string_/ --- ## System::ObjectType::GetType< System::String > method diff --git a/english/cpp/system/objecttype/gettype/_index.md b/english/cpp/system/objecttype/gettype/_index.md index 73186f3e03..4c8c07b439 100644 --- a/english/cpp/system/objecttype/gettype/_index.md +++ b/english/cpp/system/objecttype/gettype/_index.md @@ -326,7 +326,7 @@ template static std::enable_if::value, constSy | Parameter | Description | | --- | --- | -| T | Exception type. | +| T | [Exception](../../exception/) type. | | Parameter | Type | Description | | --- | --- | --- | diff --git a/english/cpp/system/operator!=/_index.md b/english/cpp/system/operator!=/_index.md index dc97ecc814..ea1a851c55 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: 23700 +weight: 24600 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 875ec9d0fe..2d57467b86 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: 25400 +weight: 26300 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 8f90244573..b7952589a7 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: 26000 +weight: 26900 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 f39f28597d..1e50b7d507 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: 26400 +weight: 27300 url: /cpp/system/operator/ --- ## System::operator/ method diff --git a/english/cpp/system/operator==/_index.md b/english/cpp/system/operator==/_index.md index 143c772016..c9de45595c 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: 30300 +weight: 31200 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 a2e98db1f2..694a65d053 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: 25300 +weight: 26200 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: 26500 +weight: 27400 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: 32000 +weight: 32900 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 9a9abb9655..9ec34e42f7 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: 29800 +weight: 30700 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: 32500 +weight: 33400 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 ef2bbff8e3..42b980333f 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: 27000 +weight: 27900 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: 33000 +weight: 33900 url: /cpp/system/operator__/ --- ## System::operator>>(std::istream\&, String\&) method diff --git a/english/cpp/system/printto/_index.md b/english/cpp/system/printto/_index.md index f348ebe5a1..1e4d2dcbfc 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: 33200 +weight: 34100 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 0ec5cae1ef..f6bce2dd09 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: 34500 +weight: 35400 url: /cpp/system/ref/ --- ## System::Ref(const std::reference_wrapper\\&) method diff --git a/english/cpp/system/safeinvoke/_index.md b/english/cpp/system/safeinvoke/_index.md index bc0a7b6ec4..9a66c81ce5 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: 34800 +weight: 35700 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 5b03f299a8..f2d201b69a 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: 34900 +weight: 35800 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 d116337bed..ddf1a123b9 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: 35300 +weight: 36200 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 fb4d7a90c6..bffdf2ec8c 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: 35700 +weight: 36600 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 faea0eaf4e..385559cfba 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: 36000 +weight: 36900 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 ade3387745..0323104638 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: 36400 +weight: 37300 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 236b1401a4..82322690b4 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: 36800 +weight: 37700 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 a90097ac0f..7401d18105 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: 37000 +weight: 37900 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 291abf3c07..992fcd55a4 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: 37400 +weight: 38300 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 30dd2d3a6a..5462bf6eb3 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: 37800 +weight: 38700 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 8c298fd12c..84d74e4fcf 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: 38200 +weight: 39100 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 4d77f45e22..556dbe491b 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: 38500 +weight: 39400 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 665078feb0..11d45ae414 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: 38800 +weight: 39700 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 5110e5da3d..fe6a9b7148 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: 39200 +weight: 40100 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 cfcf11f38f..7f953a3067 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: 39600 +weight: 40500 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 b49c553c93..a2552e91c5 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: 40000 +weight: 40900 url: /cpp/system/setter_wrap/ --- ## System::setter_wrap(Host *const, void(HostSet::*)(T2), T) method diff --git a/english/cpp/system/smartptr/_index.md b/english/cpp/system/smartptr/_index.md index c3c1784fa5..14beb0246a 100644 --- a/english/cpp/system/smartptr/_index.md +++ b/english/cpp/system/smartptr/_index.md @@ -24,18 +24,18 @@ templateclass SmartPtr | Method | Description | | --- | --- | -| [begin](./begin/)() | Accessor for [begin()](./begin/) method of an underling collection. Only compiles if SmartPtr_ is specialization type with [begin()](./begin/) method. | -| [begin](./begin/)() const | Accessor for [begin()](./begin/) method of an underling collection. Only compiles if SmartPtr_ is specialization type with [begin()](./begin/) method. | +| [begin](./begin/)() | Accessor for [begin()](./begin/) method of an underling collection. Only compiles if [SmartPtr_](./smartptr_/) is specialization type with [begin()](./begin/) method. | +| [begin](./begin/)() const | Accessor for [begin()](./begin/) method of an underling collection. Only compiles if [SmartPtr_](./smartptr_/) is specialization type with [begin()](./begin/) method. | | [Cast](./cast/)() const | Casts pointer to its type itself. | | [Cast](./cast/)() const | Casts pointer to base type using static_cast. | | [Cast](./cast/)() const | Casts pointer to derived type dynamic_cast. | | [Cast](./cast/)() const | Casts pointer to derived type dynamic_cast. | -| [cbegin](./cbegin/)() const | Accessor for [cbegin()](./cbegin/) method of an underling collection. Only compiles if SmartPtr_ is specialization type with [cbegin()](./cbegin/) method. | -| [cend](./cend/)() const | Accessor for [cend()](./cend/) method of an underling collection. Only compiles if SmartPtr_ is specialization type with [cend()](./cend/) method. | +| [cbegin](./cbegin/)() const | Accessor for [cbegin()](./cbegin/) method of an underling collection. Only compiles if [SmartPtr_](./smartptr_/) is specialization type with [cbegin()](./cbegin/) method. | +| [cend](./cend/)() const | Accessor for [cend()](./cend/) method of an underling collection. Only compiles if [SmartPtr_](./smartptr_/) is specialization type with [cend()](./cend/) method. | | [const_pointer_cast](./const_pointer_cast/)() const | Casts pointer to different type using const_cast on pointed object. | | [dynamic_pointer_cast](./dynamic_pointer_cast/)() const | Casts pointer to different type using dynamic_cast on pointed object. | -| [end](./end/)() | Accessor for [end()](./end/) method of an underling collection. Only compiles if SmartPtr_ is specialization type with [end()](./end/) method. | -| [end](./end/)() const | Accessor for [end()](./end/) method of an underling collection. Only compiles if SmartPtr_ is specialization type with [end()](./end/) method. | +| [end](./end/)() | Accessor for [end()](./end/) method of an underling collection. Only compiles if [SmartPtr_](./smartptr_/) is specialization type with [end()](./end/) method. | +| [end](./end/)() const | Accessor for [end()](./end/) method of an underling collection. Only compiles if [SmartPtr_](./smartptr_/) is specialization type with [end()](./end/) method. | | [get](./get/)() const | Gets pointed object. | | [get_Mode](./get_mode/)() const | Gets pointer mode. | | [get_shared](./get_shared/)() const | Gets pointed object, but asserts that pointer is in shared mode. | @@ -61,7 +61,7 @@ templateclass SmartPtr | [operator=](./operator=/)(Pointee_ *) | Assigns raw pointer to [SmartPtr](./) object. | | [operator=](./operator=/)(std::nullptr_t) | Sets pointer value to nullptr. | | [operator==](./operator==/)(std::nullptr_t) const | Checks if pointer points to nullptr. | -| [operator[]](./operator[]/)(IdxType) const | Accessor for array elements. Only compiles if SmartPtr_ is specialization of [System::Array](../array/). | +| [operator[]](./operator[]/)(IdxType) const | Accessor for array elements. Only compiles if [SmartPtr_](./smartptr_/) is specialization of [System::Array](../array/). | | [RemoveAliasing](./removealiasing/)() const | Removes aliasing (created by an aliasing constructor) from pointer, makes sure it manages (if shared) or tracks (if weak) the same object it points to. | | [reset](./reset/)(Pointee_ *) | Sets pointed object. | | [reset](./reset/)() | Makes pointer pointing to nullptr. | @@ -77,14 +77,14 @@ templateclass SmartPtr | explicit [SmartPtr](./smartptr/)(const Y\&) | Initializes empty array. Used to translate some C# code constructs. | | [SmartPtr](./smartptr/)(const SmartPtr\\&, Pointee_ *, SmartPtrMode) | Constructs a [SmartPtr](./) which shares ownership information with the initial value of ptr, but holds an unrelated and unmanaged pointer p. | | [static_pointer_cast](./static_pointer_cast/)() const | Casts pointer to different type using static_cast on pointed object. | -| [ToObjectPtr](./toobjectptr/)() const | Converts any pointer type to pointer to [Object](../object/). Doesn't require Pointee_ type to be complete. | -| static [Type](./type/)() | Shortcut to get [System::TypeInfo](../typeinfo/) object for the Pointee_ type. | +| [ToObjectPtr](./toobjectptr/)() const | Converts any pointer type to pointer to [Object](../object/). Doesn't require [Pointee_](./pointee_/) type to be complete. | +| static [Type](./type/)() | Shortcut to get [System::TypeInfo](../typeinfo/) object for the [Pointee_](./pointee_/) type. | | [~SmartPtr](./~smartptr/)() | Destroys [SmartPtr](./) object. If required, decreases pointed object's reference counter and deletes object. | ## Typedefs | Typedef | Description | | --- | --- | -| [ArrayType](./arraytype/) | Same as Pointee_, if it is a specialization of [System::Array](../array/), and void otherwise. | +| [ArrayType](./arraytype/) | Same as [Pointee_](./pointee_/), if it is a specialization of [System::Array](../array/), and void otherwise. | | [Pointee_](./pointee_/) | Pointed type. | | [SmartPtr_](./smartptr_/) | Specialized smart pointer type. | | [ValueType](./valuetype/) | Storage type of pointed array. Only meaningful if T is a specialization of [System::Array](../array/). | diff --git a/english/cpp/system/smartptr/arraytype/_index.md b/english/cpp/system/smartptr/arraytype/_index.md index ab8df60fd4..8c89b668a0 100644 --- a/english/cpp/system/smartptr/arraytype/_index.md +++ b/english/cpp/system/smartptr/arraytype/_index.md @@ -10,10 +10,10 @@ url: /cpp/system/smartptr/arraytype/ ## ArrayType typedef -Same as Pointee_, if it is a specialization of [System::Array](../../array/), and void otherwise. +Same as [Pointee_](../pointee_/), if it is a specialization of [System::Array](../../array/), and void otherwise. ```cpp -System::Details::ArrayTypeResolver::type System::SmartPtr< T >::ArrayType +typedef System::Details::ArrayTypeResolver::type System::SmartPtr< T >::ArrayType ``` ## See Also diff --git a/english/cpp/system/smartptr/begin/_index.md b/english/cpp/system/smartptr/begin/_index.md index 7570f77178..ca136477ff 100644 --- a/english/cpp/system/smartptr/begin/_index.md +++ b/english/cpp/system/smartptr/begin/_index.md @@ -10,7 +10,7 @@ url: /cpp/system/smartptr/begin/ ## SmartPtr::begin() method -Accessor for [begin()](./) method of an underling collection. Only compiles if SmartPtr_ is specialization type with [begin()](./) method. +Accessor for [begin()](./) method of an underling collection. Only compiles if [SmartPtr_](../smartptr_/) is specialization type with [begin()](./) method. ```cpp template decltype(std::declval().begin()) System::SmartPtr::begin() @@ -29,7 +29,7 @@ iterator to the begin of collection ## SmartPtr::begin() const method -Accessor for [begin()](./) method of an underling collection. Only compiles if SmartPtr_ is specialization type with [begin()](./) method. +Accessor for [begin()](./) method of an underling collection. Only compiles if [SmartPtr_](../smartptr_/) is specialization type with [begin()](./) method. ```cpp template decltype(std::declval().begin()) System::SmartPtr::begin() const diff --git a/english/cpp/system/smartptr/cbegin/_index.md b/english/cpp/system/smartptr/cbegin/_index.md index e0a7d35fd6..0c3e386ec6 100644 --- a/english/cpp/system/smartptr/cbegin/_index.md +++ b/english/cpp/system/smartptr/cbegin/_index.md @@ -10,7 +10,7 @@ url: /cpp/system/smartptr/cbegin/ ## SmartPtr::cbegin method -Accessor for [cbegin()](./) method of an underling collection. Only compiles if SmartPtr_ is specialization type with [cbegin()](./) method. +Accessor for [cbegin()](./) method of an underling collection. Only compiles if [SmartPtr_](../smartptr_/) is specialization type with [cbegin()](./) method. ```cpp template decltype(std::declval().cbegin()) System::SmartPtr::cbegin() const diff --git a/english/cpp/system/smartptr/cend/_index.md b/english/cpp/system/smartptr/cend/_index.md index 6b238a32e2..a2363ae2e1 100644 --- a/english/cpp/system/smartptr/cend/_index.md +++ b/english/cpp/system/smartptr/cend/_index.md @@ -10,7 +10,7 @@ url: /cpp/system/smartptr/cend/ ## SmartPtr::cend method -Accessor for [cend()](./) method of an underling collection. Only compiles if SmartPtr_ is specialization type with [cend()](./) method. +Accessor for [cend()](./) method of an underling collection. Only compiles if [SmartPtr_](../smartptr_/) is specialization type with [cend()](./) method. ```cpp template decltype(std::declval().cend()) System::SmartPtr::cend() const diff --git a/english/cpp/system/smartptr/end/_index.md b/english/cpp/system/smartptr/end/_index.md index 3c736260fb..fee9e15fb9 100644 --- a/english/cpp/system/smartptr/end/_index.md +++ b/english/cpp/system/smartptr/end/_index.md @@ -10,7 +10,7 @@ url: /cpp/system/smartptr/end/ ## SmartPtr::end() method -Accessor for [end()](./) method of an underling collection. Only compiles if SmartPtr_ is specialization type with [end()](./) method. +Accessor for [end()](./) method of an underling collection. Only compiles if [SmartPtr_](../smartptr_/) is specialization type with [end()](./) method. ```cpp template decltype(std::declval().end()) System::SmartPtr::end() @@ -29,7 +29,7 @@ iterator to the end of collection ## SmartPtr::end() const method -Accessor for [end()](./) method of an underling collection. Only compiles if SmartPtr_ is specialization type with [end()](./) method. +Accessor for [end()](./) method of an underling collection. Only compiles if [SmartPtr_](../smartptr_/) is specialization type with [end()](./) method. ```cpp template decltype(std::declval().end()) System::SmartPtr::end() const diff --git a/english/cpp/system/smartptr/operator[]/_index.md b/english/cpp/system/smartptr/operator[]/_index.md index b4db52859c..b4a6180107 100644 --- a/english/cpp/system/smartptr/operator[]/_index.md +++ b/english/cpp/system/smartptr/operator[]/_index.md @@ -10,7 +10,7 @@ url: /cpp/system/smartptr/operator[]/ ## SmartPtr::operator[] method -Accessor for array elements. Only compiles if SmartPtr_ is specialization of [System::Array](../../array/). +Accessor for array elements. Only compiles if [SmartPtr_](../smartptr_/) is specialization of [System::Array](../../array/). ```cpp template decltype(System::Details::GetByIndex(std::declval(), std::declval())) System::SmartPtr::operator[](IdxType idx) const diff --git a/english/cpp/system/smartptr/pointee_/_index.md b/english/cpp/system/smartptr/pointee_/_index.md index b258973240..bfd7370d42 100644 --- a/english/cpp/system/smartptr/pointee_/_index.md +++ b/english/cpp/system/smartptr/pointee_/_index.md @@ -13,7 +13,7 @@ url: /cpp/system/smartptr/pointee_/ Pointed type. ```cpp -T System::SmartPtr< T >::Pointee_ +typedef T System::SmartPtr< T >::Pointee_ ``` ## See Also diff --git a/english/cpp/system/smartptr/smartptr_/_index.md b/english/cpp/system/smartptr/smartptr_/_index.md index 2ceaf96d30..eaa69112a8 100644 --- a/english/cpp/system/smartptr/smartptr_/_index.md +++ b/english/cpp/system/smartptr/smartptr_/_index.md @@ -13,7 +13,7 @@ url: /cpp/system/smartptr/smartptr_/ Specialized smart pointer type. ```cpp -SmartPtr System::SmartPtr< T >::SmartPtr_ +typedef SmartPtr System::SmartPtr< T >::SmartPtr_ ``` ## See Also diff --git a/english/cpp/system/smartptr/toobjectptr/_index.md b/english/cpp/system/smartptr/toobjectptr/_index.md index 20a9955809..6e81efde5d 100644 --- a/english/cpp/system/smartptr/toobjectptr/_index.md +++ b/english/cpp/system/smartptr/toobjectptr/_index.md @@ -10,7 +10,7 @@ url: /cpp/system/smartptr/toobjectptr/ ## SmartPtr::ToObjectPtr method -Converts any pointer type to pointer to [Object](../../object/). Doesn't require Pointee_ type to be complete. +Converts any pointer type to pointer to [Object](../../object/). Doesn't require [Pointee_](../pointee_/) type to be complete. ```cpp SmartPtr System::SmartPtr::ToObjectPtr() const diff --git a/english/cpp/system/smartptr/type/_index.md b/english/cpp/system/smartptr/type/_index.md index d3f9feb395..77075ba257 100644 --- a/english/cpp/system/smartptr/type/_index.md +++ b/english/cpp/system/smartptr/type/_index.md @@ -10,7 +10,7 @@ url: /cpp/system/smartptr/type/ ## SmartPtr::Type method -Shortcut to get [System::TypeInfo](../../typeinfo/) object for the Pointee_ type. +Shortcut to get [System::TypeInfo](../../typeinfo/) object for the [Pointee_](../pointee_/) type. ```cpp static const System::TypeInfo & System::SmartPtr::Type() @@ -19,7 +19,7 @@ static const System::TypeInfo & System::SmartPtr::Type() ### ReturnValue -Const reference to [TypeInfo](../../typeinfo/) structure which describes Pointee_ type. +Const reference to [TypeInfo](../../typeinfo/) structure which describes [Pointee_](../pointee_/) type. ## See Also diff --git a/english/cpp/system/static_pointer_cast/_index.md b/english/cpp/system/static_pointer_cast/_index.md index 0bb95eba00..4a3aec7e3c 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: 40200 +weight: 41100 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 e1a271fc78..9a31e8c4d4 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: 40300 +weight: 41200 url: /cpp/system/staticcast/ --- ## System::StaticCast(const TFrom\&) method @@ -41,7 +41,7 @@ Left for backwards compatibility. Use ExplicitCast instead. ## System::StaticCast(const TFrom\&) method -Performs static cast on Exception objects. +Performs static cast on [Exception](../exception/) objects. ```cpp template std::enable_if::value &&IsExceptionWrapper::value &&(std::is_convertible::value||std::is_base_of::value), TTo>::type System::StaticCast(const TFrom &obj) @@ -50,8 +50,8 @@ template std::enable_if:: | Parameter | Description | | --- | --- | -| TTo | Target Exception type. | -| TFrom | Source Exception type. | +| TTo | Target [Exception](../exception/) type. | +| TFrom | Source [Exception](../exception/) type. | | Parameter | Type | Description | | --- | --- | --- | @@ -115,7 +115,7 @@ Left for backwards compatibility. Use ExplicitCast instead. ## System::StaticCast(SmartPtr\) method -Performs static cast on Objects to Exception objects. +Performs static cast on Objects to [Exception](../exception/) objects. ```cpp template std::enable_if::value &&IsExceptionWrapper::value, TTo>::type System::StaticCast(SmartPtr obj) noexcept @@ -124,7 +124,7 @@ template std::enable_if std::enable_if::value &&IsExceptionWrapper::value &&(std::is_convertible::value||std::is_base_of::value), TTo>::type System::StaticCast_noexcept(const TFrom &obj) @@ -19,8 +19,8 @@ template std::enable_if:: | Parameter | Description | | --- | --- | -| TTo | Target Exception type. | -| TFrom | Source Exception type. | +| TTo | Target [Exception](../exception/) type. | +| TFrom | Source [Exception](../exception/) type. | | Parameter | Type | Description | | --- | --- | --- | @@ -71,7 +71,7 @@ Left for backwards compatibility. Use AsCast instead. ## System::StaticCast_noexcept(SmartPtr\) method -Performs static cast on Objects to Exception objects. +Performs static cast on Objects to [Exception](../exception/) objects. ```cpp template std::enable_if::value &&IsExceptionWrapper::value, TTo>::type System::StaticCast_noexcept(SmartPtr obj) noexcept @@ -80,7 +80,7 @@ template std::enable_if\>\&) method diff --git a/english/cpp/system/string/_index.md b/english/cpp/system/string/_index.md index 1244f79187..747447d41c 100644 --- a/english/cpp/system/string/_index.md +++ b/english/cpp/system/string/_index.md @@ -42,7 +42,7 @@ class String | [EndsWith](./endswith/)(const String\&) const | Checks if string ends with specified substring. | | [EndsWith](./endswith/)(const String\&, System::StringComparison) const | Checks if string ends with specified substring. | | [EndsWith](./endswith/)(const String\&, bool, const SharedPtr\\&) const | Checks if string ends with specified substring. | -| [Equals](./equals/)(const String\&, System::StringComparison) const | [String](./) equality comparison. Several modes provided by StringComparison enumeration are supported. | +| [Equals](./equals/)(const String\&, System::StringComparison) const | [String](./) equality comparison. Several modes provided by [StringComparison](../stringcomparison/) enumeration are supported. | | [Equals](./equals/)(const String\&) const | [String](./) equality comparison. Uses [System::StringComparison::Ordinal](../stringcomparison/) comparison mode. | | static [Equals](./equals/)(const String\&, const String\&) | Equal-compares two strings using Ordial comparison mode. | | static [Equals](./equals/)(const String\&, const String\&, System::StringComparison) | Equal-compares two strings. | @@ -128,6 +128,7 @@ class String | [operator=](./operator=/)(String\&&) | Move assignment operator. | | [operator==](./operator==/)(const String\&) const | Equality comparison operator. | | [operator==](./operator==/)(std::nullptr_t) const | Checks if string is null. Applies same logic as [IsNull()](./isnull/) call. | +| [operator>](./operator_/)(const String\&) const | Order-compares strings. | | [operator[]](./operator[]/)(int) const | Gets character at specified position. | | [PadLeft](./padleft/)(int, char_t) const | Adds padding on the left of original string. | | [PadRight](./padright/)(int, char_t) const | Adds padding on the right of original string. | diff --git a/english/cpp/system/string/compare/_index.md b/english/cpp/system/string/compare/_index.md index 8c544920c9..8db31f9f8d 100644 --- a/english/cpp/system/string/compare/_index.md +++ b/english/cpp/system/string/compare/_index.md @@ -4,7 +4,7 @@ linktitle: Compare second_title: Aspose.PDF for C++ API Reference description: 'System::String::Compare method. Less-equal-greater-compares two strings in C++.' type: docs -weight: 6000 +weight: 6100 url: /cpp/system/string/compare/ --- ## String::Compare(const String\&, const String\&, bool, const SharedPtr\\&) method diff --git a/english/cpp/system/string/compareordinal/_index.md b/english/cpp/system/string/compareordinal/_index.md index 6b44831e15..e342493936 100644 --- a/english/cpp/system/string/compareordinal/_index.md +++ b/english/cpp/system/string/compareordinal/_index.md @@ -4,7 +4,7 @@ linktitle: CompareOrdinal second_title: Aspose.PDF for C++ API Reference description: 'System::String::CompareOrdinal method. Less-equal-greater-compares two strings using ordinal mode in C++.' type: docs -weight: 6100 +weight: 6200 url: /cpp/system/string/compareordinal/ --- ## String::CompareOrdinal(const String\&, const String\&) method diff --git a/english/cpp/system/string/concat/_index.md b/english/cpp/system/string/concat/_index.md index 2b7bae4991..44ace2ebf4 100644 --- a/english/cpp/system/string/concat/_index.md +++ b/english/cpp/system/string/concat/_index.md @@ -4,7 +4,7 @@ linktitle: Concat second_title: Aspose.PDF for C++ API Reference description: 'System::String::Concat method. Concatenates strings in C++.' type: docs -weight: 6200 +weight: 6300 url: /cpp/system/string/concat/ --- ## String::Concat(const ArrayPtr\\&) method diff --git a/english/cpp/system/string/copy/_index.md b/english/cpp/system/string/copy/_index.md index 199b6492c2..22d90a35b1 100644 --- a/english/cpp/system/string/copy/_index.md +++ b/english/cpp/system/string/copy/_index.md @@ -4,7 +4,7 @@ linktitle: Copy second_title: Aspose.PDF for C++ API Reference description: 'System::String::Copy method. Creates string copy in C++.' type: docs -weight: 6300 +weight: 6400 url: /cpp/system/string/copy/ --- ## String::Copy method diff --git a/english/cpp/system/string/empty/_index.md b/english/cpp/system/string/empty/_index.md index 35229446eb..30d0824413 100644 --- a/english/cpp/system/string/empty/_index.md +++ b/english/cpp/system/string/empty/_index.md @@ -4,7 +4,7 @@ linktitle: Empty second_title: Aspose.PDF for C++ API Reference description: 'System::String::Empty field. Empty string in C++.' type: docs -weight: 7200 +weight: 7300 url: /cpp/system/string/empty/ --- ## Empty field diff --git a/english/cpp/system/string/equals/_index.md b/english/cpp/system/string/equals/_index.md index 59ef8598c3..d68eb3c4b1 100644 --- a/english/cpp/system/string/equals/_index.md +++ b/english/cpp/system/string/equals/_index.md @@ -34,7 +34,7 @@ true if strings match, false otherwise. ## String::Equals(const String\&, System::StringComparison) const method -[String](../) equality comparison. Several modes provided by StringComparison enumeration are supported. +[String](../) equality comparison. Several modes provided by [StringComparison](../../stringcomparison/) enumeration are supported. ```cpp bool System::String::Equals(const String &str, System::StringComparison comparison_type) const diff --git a/english/cpp/system/string/format/_index.md b/english/cpp/system/string/format/_index.md index de2ad9d387..2058850887 100644 --- a/english/cpp/system/string/format/_index.md +++ b/english/cpp/system/string/format/_index.md @@ -4,7 +4,7 @@ linktitle: Format second_title: Aspose.PDF for C++ API Reference description: 'System::String::Format method. Formats string in C# style in C++.' type: docs -weight: 6400 +weight: 6500 url: /cpp/system/string/format/ --- ## String::Format(const SharedPtr\\&, const String\&, const Args\&...) method diff --git a/english/cpp/system/string/fromascii/_index.md b/english/cpp/system/string/fromascii/_index.md index b041c50087..27293092df 100644 --- a/english/cpp/system/string/fromascii/_index.md +++ b/english/cpp/system/string/fromascii/_index.md @@ -4,7 +4,7 @@ linktitle: FromAscii second_title: Aspose.PDF for C++ API Reference description: 'System::String::FromAscii method. Creates String from ASCII string in C++.' type: docs -weight: 6500 +weight: 6600 url: /cpp/system/string/fromascii/ --- ## String::FromAscii(const char *) method diff --git a/english/cpp/system/string/fromutf16/_index.md b/english/cpp/system/string/fromutf16/_index.md index 7e1b8628e3..b4baa75b25 100644 --- a/english/cpp/system/string/fromutf16/_index.md +++ b/english/cpp/system/string/fromutf16/_index.md @@ -4,7 +4,7 @@ linktitle: FromUtf16 second_title: Aspose.PDF for C++ API Reference description: 'System::String::FromUtf16 method. Creates String from utf16 string in C++.' type: docs -weight: 6600 +weight: 6700 url: /cpp/system/string/fromutf16/ --- ## String::FromUtf16 method diff --git a/english/cpp/system/string/fromutf32/_index.md b/english/cpp/system/string/fromutf32/_index.md index e647295ca0..04b6895f6e 100644 --- a/english/cpp/system/string/fromutf32/_index.md +++ b/english/cpp/system/string/fromutf32/_index.md @@ -4,7 +4,7 @@ linktitle: FromUtf32 second_title: Aspose.PDF for C++ API Reference description: 'System::String::FromUtf32 method. Creates String from utf32 string in C++.' type: docs -weight: 6700 +weight: 6800 url: /cpp/system/string/fromutf32/ --- ## String::FromUtf32 method diff --git a/english/cpp/system/string/fromutf8/_index.md b/english/cpp/system/string/fromutf8/_index.md index 1cb1309a2c..4a8e273787 100644 --- a/english/cpp/system/string/fromutf8/_index.md +++ b/english/cpp/system/string/fromutf8/_index.md @@ -4,7 +4,7 @@ linktitle: FromUtf8 second_title: Aspose.PDF for C++ API Reference description: 'System::String::FromUtf8 method. Creates String from utf8 string in C++.' type: docs -weight: 6800 +weight: 6900 url: /cpp/system/string/fromutf8/ --- ## String::FromUtf8(const char *) method diff --git a/english/cpp/system/string/fromwcs/_index.md b/english/cpp/system/string/fromwcs/_index.md index 669515946f..f0336ff662 100644 --- a/english/cpp/system/string/fromwcs/_index.md +++ b/english/cpp/system/string/fromwcs/_index.md @@ -4,7 +4,7 @@ linktitle: FromWCS second_title: Aspose.PDF for C++ API Reference description: 'System::String::FromWCS method. Creates String from widestring in C++.' type: docs -weight: 6900 +weight: 7000 url: /cpp/system/string/fromwcs/ --- ## String::FromWCS method diff --git a/english/cpp/system/string/isnullorwhitespace/_index.md b/english/cpp/system/string/isnullorwhitespace/_index.md index 3900659765..088f181f62 100644 --- a/english/cpp/system/string/isnullorwhitespace/_index.md +++ b/english/cpp/system/string/isnullorwhitespace/_index.md @@ -4,7 +4,7 @@ linktitle: IsNullOrWhiteSpace second_title: Aspose.PDF for C++ API Reference description: 'System::String::IsNullOrWhiteSpace method. Indicates whether a specified string is null, empty, or consists only of white-space characters in C++.' type: docs -weight: 7000 +weight: 7100 url: /cpp/system/string/isnullorwhitespace/ --- ## String::IsNullOrWhiteSpace method diff --git a/english/cpp/system/string/join/_index.md b/english/cpp/system/string/join/_index.md index 94dddd464d..47afbd4f13 100644 --- a/english/cpp/system/string/join/_index.md +++ b/english/cpp/system/string/join/_index.md @@ -4,7 +4,7 @@ linktitle: Join second_title: Aspose.PDF for C++ API Reference description: 'System::String::Join method. Joins array using string as separator in C++.' type: docs -weight: 7100 +weight: 7200 url: /cpp/system/string/join/ --- ## String::Join(const String\&, const ArrayPtr\\>\&) method diff --git a/english/cpp/system/string/null/_index.md b/english/cpp/system/string/null/_index.md index 6a5643fdbc..1c2c559c9e 100644 --- a/english/cpp/system/string/null/_index.md +++ b/english/cpp/system/string/null/_index.md @@ -4,7 +4,7 @@ linktitle: Null second_title: Aspose.PDF for C++ API Reference description: 'System::String::Null field. Null string in C++.' type: docs -weight: 7300 +weight: 7400 url: /cpp/system/string/null/ --- ## Null field diff --git a/english/cpp/system/string/operator[]/_index.md b/english/cpp/system/string/operator[]/_index.md index c7635418ce..f50f1fea9c 100644 --- a/english/cpp/system/string/operator[]/_index.md +++ b/english/cpp/system/string/operator[]/_index.md @@ -4,7 +4,7 @@ linktitle: operator[] second_title: Aspose.PDF for C++ API Reference description: 'System::String::operator[] method. Gets character at specified position in C++.' type: docs -weight: 3200 +weight: 3300 url: /cpp/system/string/operator[]/ --- ## String::operator[] method diff --git a/english/cpp/system/string/operator_/_index.md b/english/cpp/system/string/operator_/_index.md index 0a478120ef..3d6e372dd1 100644 --- a/english/cpp/system/string/operator_/_index.md +++ b/english/cpp/system/string/operator_/_index.md @@ -31,3 +31,36 @@ true if this is considering less than str, false otherwise. * Class [String](../) * Namespace [System](../../) * Library [Aspose.PDF for C++](../../../) +--- +title: System::String::operator> method +linktitle: operator> +second_title: Aspose.PDF for C++ API Reference +description: 'System::String::operator> method. Order-compares strings in C++.' +type: docs +weight: 3200 +url: /cpp/system/string/operator_/ +--- +## String::operator> method + + +Order-compares strings. + +```cpp +bool System::String::operator>(const String &str) const +``` + + +| Parameter | Type | Description | +| --- | --- | --- | +| str | const String\& | [String](../) to compare current one to. | + +### ReturnValue + +true if this is considering more than str, false otherwise. + +## See Also + +* Class [String](../) +* Class [String](../) +* Namespace [System](../../) +* Library [Aspose.PDF for C++](../../../) diff --git a/english/cpp/system/string/padleft/_index.md b/english/cpp/system/string/padleft/_index.md index 812bca9ca1..9a861f8ee5 100644 --- a/english/cpp/system/string/padleft/_index.md +++ b/english/cpp/system/string/padleft/_index.md @@ -4,7 +4,7 @@ linktitle: PadLeft second_title: Aspose.PDF for C++ API Reference description: 'System::String::PadLeft method. Adds padding on the left of original string in C++.' type: docs -weight: 3300 +weight: 3400 url: /cpp/system/string/padleft/ --- ## String::PadLeft method diff --git a/english/cpp/system/string/padright/_index.md b/english/cpp/system/string/padright/_index.md index da2f0c9ba6..b22dcf6184 100644 --- a/english/cpp/system/string/padright/_index.md +++ b/english/cpp/system/string/padright/_index.md @@ -4,7 +4,7 @@ linktitle: PadRight second_title: Aspose.PDF for C++ API Reference description: 'System::String::PadRight method. Adds padding on the right of original string in C++.' type: docs -weight: 3400 +weight: 3500 url: /cpp/system/string/padright/ --- ## String::PadRight method diff --git a/english/cpp/system/string/rbegin/_index.md b/english/cpp/system/string/rbegin/_index.md index 46d2aee4be..e97bda77ab 100644 --- a/english/cpp/system/string/rbegin/_index.md +++ b/english/cpp/system/string/rbegin/_index.md @@ -4,7 +4,7 @@ linktitle: rbegin second_title: Aspose.PDF for C++ API Reference description: 'System::String::rbegin method. Returns reverse iterator to the last character (if any) of actual string buffer in C++.' type: docs -weight: 3500 +weight: 3600 url: /cpp/system/string/rbegin/ --- ## String::rbegin method diff --git a/english/cpp/system/string/remove/_index.md b/english/cpp/system/string/remove/_index.md index 696532e2b4..ec26102da4 100644 --- a/english/cpp/system/string/remove/_index.md +++ b/english/cpp/system/string/remove/_index.md @@ -4,7 +4,7 @@ linktitle: Remove second_title: Aspose.PDF for C++ API Reference description: 'System::String::Remove method. Extracts everything but substring from current string in C++.' type: docs -weight: 3600 +weight: 3700 url: /cpp/system/string/remove/ --- ## String::Remove method diff --git a/english/cpp/system/string/rend/_index.md b/english/cpp/system/string/rend/_index.md index dbbba5229f..ecffccbfeb 100644 --- a/english/cpp/system/string/rend/_index.md +++ b/english/cpp/system/string/rend/_index.md @@ -4,7 +4,7 @@ linktitle: rend second_title: Aspose.PDF for C++ API Reference description: 'System::String::rend method. Returns reverse iterator to the before first character (if any) of actual string buffer in C++.' type: docs -weight: 3700 +weight: 3800 url: /cpp/system/string/rend/ --- ## String::rend method diff --git a/english/cpp/system/string/replace/_index.md b/english/cpp/system/string/replace/_index.md index 2e9c17bb92..6fa2ca944d 100644 --- a/english/cpp/system/string/replace/_index.md +++ b/english/cpp/system/string/replace/_index.md @@ -4,7 +4,7 @@ linktitle: Replace second_title: Aspose.PDF for C++ API Reference description: 'System::String::Replace method. Replaces all occurrences of character in the string in C++.' type: docs -weight: 3800 +weight: 3900 url: /cpp/system/string/replace/ --- ## String::Replace(char_t, char_t) const method diff --git a/english/cpp/system/string/reset/_index.md b/english/cpp/system/string/reset/_index.md index 2000c7733a..fb54b15569 100644 --- a/english/cpp/system/string/reset/_index.md +++ b/english/cpp/system/string/reset/_index.md @@ -4,7 +4,7 @@ linktitle: reset second_title: Aspose.PDF for C++ API Reference description: 'System::String::reset method. Sets string to null. Is analogous to ''string_variable_name = null'' in C# in C++.' type: docs -weight: 3900 +weight: 4000 url: /cpp/system/string/reset/ --- ## String::reset method diff --git a/english/cpp/system/string/reverse_iterator/_index.md b/english/cpp/system/string/reverse_iterator/_index.md index f9037a2cfa..29172e8770 100644 --- a/english/cpp/system/string/reverse_iterator/_index.md +++ b/english/cpp/system/string/reverse_iterator/_index.md @@ -4,7 +4,7 @@ linktitle: reverse_iterator second_title: Aspose.PDF for C++ API Reference description: 'System::String::reverse_iterator typedef. Reverse iterator type in C++.' type: docs -weight: 7400 +weight: 7500 url: /cpp/system/string/reverse_iterator/ --- ## reverse_iterator typedef diff --git a/english/cpp/system/string/setcharat/_index.md b/english/cpp/system/string/setcharat/_index.md index 5a7af45e7d..9491cbeebf 100644 --- a/english/cpp/system/string/setcharat/_index.md +++ b/english/cpp/system/string/setcharat/_index.md @@ -4,7 +4,7 @@ linktitle: SetCharAt second_title: Aspose.PDF for C++ API Reference description: 'System::String::SetCharAt method. Sets character at specified position in C++.' type: docs -weight: 4000 +weight: 4100 url: /cpp/system/string/setcharat/ --- ## String::SetCharAt method diff --git a/english/cpp/system/string/split/_index.md b/english/cpp/system/string/split/_index.md index 21078740fa..c1ab25afc7 100644 --- a/english/cpp/system/string/split/_index.md +++ b/english/cpp/system/string/split/_index.md @@ -4,7 +4,7 @@ linktitle: Split second_title: Aspose.PDF for C++ API Reference description: 'System::String::Split method. Splits string by character in C++.' type: docs -weight: 4100 +weight: 4200 url: /cpp/system/string/split/ --- ## String::Split(char_t, int32_t, StringSplitOptions) const method diff --git a/english/cpp/system/string/startswith/_index.md b/english/cpp/system/string/startswith/_index.md index 6edd68ca74..adb630544f 100644 --- a/english/cpp/system/string/startswith/_index.md +++ b/english/cpp/system/string/startswith/_index.md @@ -4,7 +4,7 @@ linktitle: StartsWith second_title: Aspose.PDF for C++ API Reference description: 'System::String::StartsWith method. Checks if string begins with specified substring in C++.' type: docs -weight: 4200 +weight: 4300 url: /cpp/system/string/startswith/ --- ## String::StartsWith(const String\&) const method diff --git a/english/cpp/system/string/substring/_index.md b/english/cpp/system/string/substring/_index.md index b41b548ec2..670831cf3c 100644 --- a/english/cpp/system/string/substring/_index.md +++ b/english/cpp/system/string/substring/_index.md @@ -4,7 +4,7 @@ linktitle: Substring second_title: Aspose.PDF for C++ API Reference description: 'System::String::Substring method. Extracts substring in C++.' type: docs -weight: 4300 +weight: 4400 url: /cpp/system/string/substring/ --- ## String::Substring(int32_t) const method diff --git a/english/cpp/system/string/toasciistring/_index.md b/english/cpp/system/string/toasciistring/_index.md index 8aaab8249e..e31b8027f2 100644 --- a/english/cpp/system/string/toasciistring/_index.md +++ b/english/cpp/system/string/toasciistring/_index.md @@ -4,7 +4,7 @@ linktitle: ToAsciiString second_title: Aspose.PDF for C++ API Reference description: 'System::String::ToAsciiString method. Converts string to std::string. Uses ASCII encoding in C++.' type: docs -weight: 4400 +weight: 4500 url: /cpp/system/string/toasciistring/ --- ## String::ToAsciiString method diff --git a/english/cpp/system/string/tobytearray/_index.md b/english/cpp/system/string/tobytearray/_index.md index b84f6b2195..c2805820fa 100644 --- a/english/cpp/system/string/tobytearray/_index.md +++ b/english/cpp/system/string/tobytearray/_index.md @@ -4,7 +4,7 @@ linktitle: ToByteArray second_title: Aspose.PDF for C++ API Reference description: 'System::String::ToByteArray method. Converts string or substring to array of bytes in C++.' type: docs -weight: 4500 +weight: 4600 url: /cpp/system/string/tobytearray/ --- ## String::ToByteArray method diff --git a/english/cpp/system/string/tochararray/_index.md b/english/cpp/system/string/tochararray/_index.md index 718994bc8b..83d493946b 100644 --- a/english/cpp/system/string/tochararray/_index.md +++ b/english/cpp/system/string/tochararray/_index.md @@ -4,7 +4,7 @@ linktitle: ToCharArray second_title: Aspose.PDF for C++ API Reference description: 'System::String::ToCharArray method. Converts string or substring to array of characters in C++.' type: docs -weight: 4600 +weight: 4700 url: /cpp/system/string/tochararray/ --- ## String::ToCharArray method diff --git a/english/cpp/system/string/tolower/_index.md b/english/cpp/system/string/tolower/_index.md index 8f54a2712d..d0a17f1b8d 100644 --- a/english/cpp/system/string/tolower/_index.md +++ b/english/cpp/system/string/tolower/_index.md @@ -4,7 +4,7 @@ linktitle: ToLower second_title: Aspose.PDF for C++ API Reference description: 'System::String::ToLower method. Converts all string''s characters to lower case in C++.' type: docs -weight: 4700 +weight: 4800 url: /cpp/system/string/tolower/ --- ## String::ToLower() const method diff --git a/english/cpp/system/string/tolowerinvariant/_index.md b/english/cpp/system/string/tolowerinvariant/_index.md index 24d156d635..185738ab2b 100644 --- a/english/cpp/system/string/tolowerinvariant/_index.md +++ b/english/cpp/system/string/tolowerinvariant/_index.md @@ -4,7 +4,7 @@ linktitle: ToLowerInvariant second_title: Aspose.PDF for C++ API Reference description: 'System::String::ToLowerInvariant method. Converts all string''s characters to lower case using invariant culture in C++.' type: docs -weight: 4800 +weight: 4900 url: /cpp/system/string/tolowerinvariant/ --- ## String::ToLowerInvariant method diff --git a/english/cpp/system/string/tostring/_index.md b/english/cpp/system/string/tostring/_index.md index b777af28db..27fb49fbbd 100644 --- a/english/cpp/system/string/tostring/_index.md +++ b/english/cpp/system/string/tostring/_index.md @@ -4,7 +4,7 @@ linktitle: ToString second_title: Aspose.PDF for C++ API Reference description: 'System::String::ToString method. Wrapper for handling String class in contexts where ToString() is being called on value type objects in C++.' type: docs -weight: 4900 +weight: 5000 url: /cpp/system/string/tostring/ --- ## String::ToString() const method diff --git a/english/cpp/system/string/tou16str/_index.md b/english/cpp/system/string/tou16str/_index.md index 6c5f79d058..4559370b11 100644 --- a/english/cpp/system/string/tou16str/_index.md +++ b/english/cpp/system/string/tou16str/_index.md @@ -4,7 +4,7 @@ linktitle: ToU16Str second_title: Aspose.PDF for C++ API Reference description: 'System::String::ToU16Str method. Converts string to std::u16string in C++.' type: docs -weight: 5000 +weight: 5100 url: /cpp/system/string/tou16str/ --- ## String::ToU16Str method diff --git a/english/cpp/system/string/tou32str/_index.md b/english/cpp/system/string/tou32str/_index.md index b0948f7dab..0d728fb021 100644 --- a/english/cpp/system/string/tou32str/_index.md +++ b/english/cpp/system/string/tou32str/_index.md @@ -4,7 +4,7 @@ linktitle: ToU32Str second_title: Aspose.PDF for C++ API Reference description: 'System::String::ToU32Str method. Converts string to std::u32string in C++.' type: docs -weight: 5100 +weight: 5200 url: /cpp/system/string/tou32str/ --- ## String::ToU32Str method diff --git a/english/cpp/system/string/toupper/_index.md b/english/cpp/system/string/toupper/_index.md index 2f2bf14ed1..1f49d88861 100644 --- a/english/cpp/system/string/toupper/_index.md +++ b/english/cpp/system/string/toupper/_index.md @@ -4,7 +4,7 @@ linktitle: ToUpper second_title: Aspose.PDF for C++ API Reference description: 'System::String::ToUpper method. Converts all string''s characters to upper case in C++.' type: docs -weight: 5200 +weight: 5300 url: /cpp/system/string/toupper/ --- ## String::ToUpper() const method diff --git a/english/cpp/system/string/toupperinvariant/_index.md b/english/cpp/system/string/toupperinvariant/_index.md index 152a671fa5..f9ffca6871 100644 --- a/english/cpp/system/string/toupperinvariant/_index.md +++ b/english/cpp/system/string/toupperinvariant/_index.md @@ -4,7 +4,7 @@ linktitle: ToUpperInvariant second_title: Aspose.PDF for C++ API Reference description: 'System::String::ToUpperInvariant method. Converts all string''s characters to upper case using invariant culture in C++.' type: docs -weight: 5300 +weight: 5400 url: /cpp/system/string/toupperinvariant/ --- ## String::ToUpperInvariant method diff --git a/english/cpp/system/string/toutf8string/_index.md b/english/cpp/system/string/toutf8string/_index.md index 478d074031..5dabaf4cc2 100644 --- a/english/cpp/system/string/toutf8string/_index.md +++ b/english/cpp/system/string/toutf8string/_index.md @@ -4,7 +4,7 @@ linktitle: ToUtf8String second_title: Aspose.PDF for C++ API Reference description: 'System::String::ToUtf8String method. Converts string to std::string. Uses UTF-8 encoding in C++.' type: docs -weight: 5400 +weight: 5500 url: /cpp/system/string/toutf8string/ --- ## String::ToUtf8String method diff --git a/english/cpp/system/string/towcs/_index.md b/english/cpp/system/string/towcs/_index.md index f2a6e02e2c..af130d1f3a 100644 --- a/english/cpp/system/string/towcs/_index.md +++ b/english/cpp/system/string/towcs/_index.md @@ -4,7 +4,7 @@ linktitle: ToWCS second_title: Aspose.PDF for C++ API Reference description: 'System::String::ToWCS method. Converts string to std::wstring in C++.' type: docs -weight: 5500 +weight: 5600 url: /cpp/system/string/towcs/ --- ## String::ToWCS method diff --git a/english/cpp/system/string/trim/_index.md b/english/cpp/system/string/trim/_index.md index 565389e75d..81fd7c2f9c 100644 --- a/english/cpp/system/string/trim/_index.md +++ b/english/cpp/system/string/trim/_index.md @@ -4,7 +4,7 @@ linktitle: Trim second_title: Aspose.PDF for C++ API Reference description: 'System::String::Trim method. Removes all whitespace characters from both beginning and end of the string in C++.' type: docs -weight: 5600 +weight: 5700 url: /cpp/system/string/trim/ --- ## String::Trim() const method diff --git a/english/cpp/system/string/trimend/_index.md b/english/cpp/system/string/trimend/_index.md index b550f05290..ffb4fd4eeb 100644 --- a/english/cpp/system/string/trimend/_index.md +++ b/english/cpp/system/string/trimend/_index.md @@ -4,7 +4,7 @@ linktitle: TrimEnd second_title: Aspose.PDF for C++ API Reference description: 'System::String::TrimEnd method. Removes all whitespace characters from end of the string in C++.' type: docs -weight: 5700 +weight: 5800 url: /cpp/system/string/trimend/ --- ## String::TrimEnd() const method diff --git a/english/cpp/system/string/trimstart/_index.md b/english/cpp/system/string/trimstart/_index.md index 2727f498b3..5b9afbfa6e 100644 --- a/english/cpp/system/string/trimstart/_index.md +++ b/english/cpp/system/string/trimstart/_index.md @@ -4,7 +4,7 @@ linktitle: TrimStart second_title: Aspose.PDF for C++ API Reference description: 'System::String::TrimStart method. Removes all whitespace characters from beginning of the string in C++.' type: docs -weight: 5800 +weight: 5900 url: /cpp/system/string/trimstart/ --- ## String::TrimStart() const method diff --git a/english/cpp/system/string/u_str/_index.md b/english/cpp/system/string/u_str/_index.md index 678a31408e..dff0583c89 100644 --- a/english/cpp/system/string/u_str/_index.md +++ b/english/cpp/system/string/u_str/_index.md @@ -4,7 +4,7 @@ linktitle: u_str second_title: Aspose.PDF for C++ API Reference description: 'System::String::u_str method. Returns ICU-styled null-terminated buffer. May reallocate the string in C++.' type: docs -weight: 5900 +weight: 6000 url: /cpp/system/string/u_str/ --- ## String::u_str method diff --git a/english/cpp/system/stringcomparer/args_type/_index.md b/english/cpp/system/stringcomparer/args_type/_index.md index 4b58f9722e..5096de464b 100644 --- a/english/cpp/system/stringcomparer/args_type/_index.md +++ b/english/cpp/system/stringcomparer/args_type/_index.md @@ -13,7 +13,7 @@ url: /cpp/system/stringcomparer/args_type/ RTTI information. ```cpp -String System::StringComparer::args_type +typedef String System::StringComparer::args_type ``` ## Remarks diff --git a/english/cpp/system/tietuple/_index.md b/english/cpp/system/tietuple/_index.md index 00e4bb6ef0..df45879f72 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: 41800 +weight: 42700 url: /cpp/system/tietuple/ --- ## System::TieTuple method diff --git a/english/cpp/system/timezoneinfo/adjustmentruleptr/_index.md b/english/cpp/system/timezoneinfo/adjustmentruleptr/_index.md index fe7d77bebb..16e401244e 100644 --- a/english/cpp/system/timezoneinfo/adjustmentruleptr/_index.md +++ b/english/cpp/system/timezoneinfo/adjustmentruleptr/_index.md @@ -13,7 +13,7 @@ url: /cpp/system/timezoneinfo/adjustmentruleptr/ An alias for a shared pointer to an instance of [AdjustmentRule](../adjustmentrule/) class. ```cpp -SharedPtr System::TimeZoneInfo::AdjustmentRulePtr +typedef SharedPtr System::TimeZoneInfo::AdjustmentRulePtr ``` ## See Also diff --git a/english/cpp/system/typecode/_index.md b/english/cpp/system/typecode/_index.md index 2f30f7f465..15a6432843 100644 --- a/english/cpp/system/typecode/_index.md +++ b/english/cpp/system/typecode/_index.md @@ -21,7 +21,7 @@ enum class TypeCode | Name | Value | Description | | --- | --- | --- | | Empty | 0 | A null reference. | -| Object | 1 | A general type representing any reference or value type not explicitly represented by another TypeCode. | +| Object | 1 | A general type representing any reference or value type not explicitly represented by another [TypeCode](./). | | DBNull | 2 | A database null (column) value. | | Boolean | 3 | A simple type representing [Boolean](../boolean/) values of true or false. | | Char | 4 | An integral type representing unsigned 16-bit integers with values between 0 and 65535. | diff --git a/english/cpp/system/typeinfo/defaultconstructor/_index.md b/english/cpp/system/typeinfo/defaultconstructor/_index.md index e880a98a7c..6aede9a6b8 100644 --- a/english/cpp/system/typeinfo/defaultconstructor/_index.md +++ b/english/cpp/system/typeinfo/defaultconstructor/_index.md @@ -13,7 +13,7 @@ url: /cpp/system/typeinfo/defaultconstructor/ Function pointer to construct type. ```cpp -std::function System::TypeInfo::DefaultConstructor +typedef std::function System::TypeInfo::DefaultConstructor ``` ## See Also diff --git a/english/cpp/system/uri/compare/_index.md b/english/cpp/system/uri/compare/_index.md index 4697459b58..661fc76780 100644 --- a/english/cpp/system/uri/compare/_index.md +++ b/english/cpp/system/uri/compare/_index.md @@ -23,7 +23,7 @@ static int32_t System::Uri::Compare(const SharedPtr &uri1, const SharedPtr< | uri2 | const SharedPtr\\& | The second comparand | | partsToCompare | UriComponents | Specifies the parts of **uri1** and **uri2** to compare | | compareFormat | UriFormat | Specifies the character escaping used when components of URIs are compared | -| comparisonType | StringComparison | One of the StringComparison values | +| comparisonType | StringComparison | One of the [StringComparison](../../stringcomparison/) values | ### ReturnValue diff --git a/english/cpp/system/uri/getcomponents/_index.md b/english/cpp/system/uri/getcomponents/_index.md index 42a3889e30..c456ee9a1c 100644 --- a/english/cpp/system/uri/getcomponents/_index.md +++ b/english/cpp/system/uri/getcomponents/_index.md @@ -19,7 +19,7 @@ String System::Uri::GetComponents(UriComponents components, UriFormat format) co | Parameter | Type | Description | | --- | --- | --- | -| components | UriComponents | A bitwise combination of the UriComponents values that specifies which parts of URI to return | +| components | UriComponents | A bitwise combination of the [UriComponents](../../uricomponents/) values that specifies which parts of URI to return | | format | UriFormat | Specifies how the special characters are escaped | ### ReturnValue diff --git a/english/cpp/system/weakptr/_index.md b/english/cpp/system/weakptr/_index.md index c0349bada1..72259b002c 100644 --- a/english/cpp/system/weakptr/_index.md +++ b/english/cpp/system/weakptr/_index.md @@ -26,7 +26,7 @@ templateclass WeakPtr : public System::SmartPtr | --- | --- | | [expired](./expired/)() const | Checks if referenced object was already deleted. | | [get_weak](./get_weak/)() const | Gets referenced object. Asserts that pointer is in weak mode. | -| [operator=](./operator=/)(Q\&&) | Assigns value to weak pointer. Calls into specific assignment operator of SmartPtr_. | +| [operator=](./operator=/)(Q\&&) | Assigns value to weak pointer. Calls into specific assignment operator of [SmartPtr_](./smartptr_/). | | [operator==](./operator==/)(std::nullptr_t) const | Checks if weak pointer is null. | | [WeakPtr](./weakptr/)(std::nullptr_t) | Creates null pointer. | | [WeakPtr](./weakptr/)(Pointee_ *) | Creates weak pointer to given object. | diff --git a/english/cpp/system/weakptr/operator=/_index.md b/english/cpp/system/weakptr/operator=/_index.md index 580c9bfe28..b3de618cf7 100644 --- a/english/cpp/system/weakptr/operator=/_index.md +++ b/english/cpp/system/weakptr/operator=/_index.md @@ -10,7 +10,7 @@ url: /cpp/system/weakptr/operator=/ ## WeakPtr::operator= method -Assigns value to weak pointer. Calls into specific assignment operator of SmartPtr_. +Assigns value to weak pointer. Calls into specific assignment operator of [SmartPtr_](../smartptr_/). ```cpp template WeakPtr & System::WeakPtr::operator=(Q &&value) diff --git a/english/cpp/system/weakptr/pointee_/_index.md b/english/cpp/system/weakptr/pointee_/_index.md index 4d7a19906d..9fa4385564 100644 --- a/english/cpp/system/weakptr/pointee_/_index.md +++ b/english/cpp/system/weakptr/pointee_/_index.md @@ -13,7 +13,7 @@ url: /cpp/system/weakptr/pointee_/ Pointed type. ```cpp -T System::SmartPtr< T >::Pointee_ +typedef T System::SmartPtr< T >::Pointee_ ``` ## See Also diff --git a/english/cpp/system/weakptr/smartptr_/_index.md b/english/cpp/system/weakptr/smartptr_/_index.md index df431251ed..f88e365a22 100644 --- a/english/cpp/system/weakptr/smartptr_/_index.md +++ b/english/cpp/system/weakptr/smartptr_/_index.md @@ -13,7 +13,7 @@ url: /cpp/system/weakptr/smartptr_/ Alias for corresponding [SmartPtr](../../smartptr/) class. ```cpp -SmartPtr System::WeakPtr< T >::SmartPtr_ +typedef SmartPtr System::WeakPtr< T >::SmartPtr_ ``` ## See Also diff --git a/english/cpp/system/weakptr/weakptr_/_index.md b/english/cpp/system/weakptr/weakptr_/_index.md index 73cb6fdae1..b70a7b30f3 100644 --- a/english/cpp/system/weakptr/weakptr_/_index.md +++ b/english/cpp/system/weakptr/weakptr_/_index.md @@ -13,7 +13,7 @@ url: /cpp/system/weakptr/weakptr_/ Alias for self type. ```cpp -WeakPtr System::WeakPtr< T >::WeakPtr_ +typedef WeakPtr System::WeakPtr< T >::WeakPtr_ ``` ## See Also From a4ba8d9835f9a8a50558387d1a81efd3a56a9564 Mon Sep 17 00:00:00 2001 From: Oleksandr Andriienko Date: Thu, 16 Oct 2025 11:11:15 +0200 Subject: [PATCH 7/7] Aspose.PDF for Rust via C++: append, append_pages, merge_documents, split, split_at, split_at_page, split_document --- english/rust-cpp/_index.md | 7 +++ english/rust-cpp/core/_index.md | 7 +++ english/rust-cpp/core/append/_index.md | 43 ++++++++++++++++++ english/rust-cpp/core/append_pages/_index.md | 44 +++++++++++++++++++ .../rust-cpp/core/merge_documents/_index.md | 43 ++++++++++++++++++ english/rust-cpp/core/split/_index.md | 43 ++++++++++++++++++ english/rust-cpp/core/split_at/_index.md | 41 +++++++++++++++++ english/rust-cpp/core/split_at_page/_index.md | 42 ++++++++++++++++++ .../rust-cpp/core/split_document/_index.md | 44 +++++++++++++++++++ 9 files changed, 314 insertions(+) create mode 100644 english/rust-cpp/core/append/_index.md create mode 100644 english/rust-cpp/core/append_pages/_index.md create mode 100644 english/rust-cpp/core/merge_documents/_index.md create mode 100644 english/rust-cpp/core/split/_index.md create mode 100644 english/rust-cpp/core/split_at/_index.md create mode 100644 english/rust-cpp/core/split_at_page/_index.md create mode 100644 english/rust-cpp/core/split_document/_index.md diff --git a/english/rust-cpp/_index.md b/english/rust-cpp/_index.md index 6667b67d52..75d896f1d3 100644 --- a/english/rust-cpp/_index.md +++ b/english/rust-cpp/_index.md @@ -101,6 +101,13 @@ pub struct Document { /* private fields */ } | [extract_text](./core/extract_text/) | Return the PDF-document contents as plain text. | | [word_count](./core/word_count/) | Return word count in PDF-document. | | [character_count](./core/character_count/) | Return character count in PDF-document. | +| [append](./core/append/) | Append pages from another PDF-document. | +| [append_pages](./core/append_pages/) | Append selected pages from another PDF-document. | +| [merge_documents](./core/merge_documents/) | Create a new PDF-document by merging the provided PDF-documents. | +| [split_document](./core/split_document/) | Create multiple new PDF-documents by extracting pages from the source PDF-document. | +| [split](./core/split/) | Create multiple new PDF-documents by extracting pages from the current PDF-document. | +| [split_at_page](./core/split_at_page/) | Split the PDF-document into two new PDF-documents. | +| [split_at](./core/split_at/) | Split the current PDF-document into two new PDF-documents. | | [bytes](./core/bytes/) | Return the contents of the PDF-document as a byte vector. | | [page_add](./core/page_add/) | Add new page in PDF-document. | | [page_insert](./core/page_insert/) | Insert new page at the specified position in PDF-document. | diff --git a/english/rust-cpp/core/_index.md b/english/rust-cpp/core/_index.md index a2e5d0b095..1218c0da01 100644 --- a/english/rust-cpp/core/_index.md +++ b/english/rust-cpp/core/_index.md @@ -18,6 +18,13 @@ url: /rust-cpp/core/ | [extract_text](./extract_text/) | Return the PDF-document contents as plain text. | | [word_count](./word_count/) | Return word count in PDF-document. | | [character_count](./character_count/) | Return character count in PDF-document. | +| [append](./append/) | Append pages from another PDF-document. | +| [append_pages](./append_pages/) | Append selected pages from another PDF-document. | +| [merge_documents](./merge_documents/) | Create a new PDF-document by merging the provided PDF-documents. | +| [split_document](./split_document/) | Create multiple new PDF-documents by extracting pages from the source PDF-document. | +| [split](./split/) | Create multiple new PDF-documents by extracting pages from the current PDF-document. | +| [split_at_page](./split_at_page/) | Split the PDF-document into two new PDF-documents. | +| [split_at](./split_at/) | Split the current PDF-document into two new PDF-documents. | | [bytes](./bytes/) | Return the contents of the PDF-document as a byte vector. | | [page_add](./page_add/) | Add new page in PDF-document. | | [page_insert](./page_insert/) | Insert new page at the specified position in PDF-document. | diff --git a/english/rust-cpp/core/append/_index.md b/english/rust-cpp/core/append/_index.md new file mode 100644 index 0000000000..1b34a2f91c --- /dev/null +++ b/english/rust-cpp/core/append/_index.md @@ -0,0 +1,43 @@ +--- +title: "append" +second_title: Aspose.PDF for Rust via C++ +description: "Appends pages from another PDF-document." +type: docs +url: /rust-cpp/core/append/ +--- + +_Appends pages from another PDF-document._ + +```rust +pub fn append(&self, other: &Document) -> Result<(), PdfError> +``` + +**Arguments** + * **other** - a reference to another PDF-document to append pages from + +**Returns** + * **Ok(())** - if the operation succeeds + * **Err(PdfError)** - if the operation fails + +**Example** + +```rust +use asposepdf::Document; + +fn main() -> Result<(), Box> { + // Open the primary PDF-document + let pdf = Document::open("sample.pdf")?; + + // Open another PDF-document to append + let another_pdf = Document::open("sample1page.pdf")?; + + // Append pages from another PDF-document + pdf.append(&another_pdf)?; + + // Save the previously opened PDF-document with new filename + pdf.save_as("sample_append.pdf")?; + + Ok(()) +} + +``` \ No newline at end of file diff --git a/english/rust-cpp/core/append_pages/_index.md b/english/rust-cpp/core/append_pages/_index.md new file mode 100644 index 0000000000..bd93234260 --- /dev/null +++ b/english/rust-cpp/core/append_pages/_index.md @@ -0,0 +1,44 @@ +--- +title: "append_pages" +second_title: Aspose.PDF for Rust via C++ +description: "Appends selected pages from another PDF-document." +type: docs +url: /rust-cpp/core/append_pages/ +--- + +_Appends selected pages from another PDF-document._ + +```rust +pub fn append_pages(&self, other: &Document, page_range: &str) -> Result<(), PdfError> +``` + +**Arguments** + * **other** - a reference to another PDF-document to append pages from + * **page_range** - a string defining the page ranges to append (e.g. "-2,4,6-8,10-") + +**Returns** + * **Ok(())** - if the operation succeeds + * **Err(PdfError)** - if the operation fails + +**Example** + +```rust +use asposepdf::Document; + +fn main() -> Result<(), Box> { + // Open the primary PDF-document + let pdf = Document::open("sample1page.pdf")?; + + // Open another PDF-document to append + let another_pdf = Document::open("sample.pdf")?; + + // Append specific pages (1 and 3) from another PDF-document + pdf.append_pages(&another_pdf, "1,3")?; + + // Save the previously opened PDF-document with new filename + pdf.save_as("sample_append_pages.pdf")?; + + Ok(()) +} + +``` \ No newline at end of file diff --git a/english/rust-cpp/core/merge_documents/_index.md b/english/rust-cpp/core/merge_documents/_index.md new file mode 100644 index 0000000000..b60d060375 --- /dev/null +++ b/english/rust-cpp/core/merge_documents/_index.md @@ -0,0 +1,43 @@ +--- +title: "merge_documents" +second_title: Aspose.PDF for Rust via C++ +description: "Creates a new PDF-document by merging the provided PDF-documents." +type: docs +url: /rust-cpp/core/merge_documents/ +--- + +_Creates a new PDF-document by merging the provided PDF-documents._ + +```rust +pub fn merge_documents(documents: &[&Document]) -> Result +``` + +**Arguments** + * **documents** - a slice of references to PDF-documents to merge + +**Returns** + * **Ok((Self))** - with a new PDF-document instance, if the operation succeeds + * **Err(PdfError)** - if the operation fails + +**Example** + +```rust +use asposepdf::Document; + +fn main() -> Result<(), Box> { + // Create a new PDF-document + let pdf1 = Document::new()?; + + // Open a PDF-document named "sample.pdf" + let pdf2 = Document::open("sample.pdf")?; + + // Create a new PDF-document by merging the provided PDF-documents + let pdf_merged = Document::merge_documents(&[&pdf1, &pdf2])?; + + // Save the previously opened PDF-document with new filename + pdf_merged.save_as("sample_merge_documents.pdf")?; + + Ok(()) +} + +``` \ No newline at end of file diff --git a/english/rust-cpp/core/split/_index.md b/english/rust-cpp/core/split/_index.md new file mode 100644 index 0000000000..7b4cb8116b --- /dev/null +++ b/english/rust-cpp/core/split/_index.md @@ -0,0 +1,43 @@ +--- +title: "split" +second_title: Aspose.PDF for Rust via C++ +description: "Creates multiple new PDF-documents by extracting pages from the current PDF-document." +type: docs +url: /rust-cpp/core/split/ +--- + +_Creates multiple new PDF-documents by extracting pages from the current PDF-document._ + +```rust +pub fn split(&self, page_range: &str) -> Result, PdfError> +``` + +**Arguments** + * **page_range** - a string specifying page ranges, e.g. `"1-2;3;4-"` + +**Returns** + * **Ok(Vec\)** - containing the resulting split documents, if the operation succeeds + * **Err(PdfError)** - if the operation fails + +**Example** + +```rust +use asposepdf::Document; + +fn main() -> Result<(), Box> { + // Open a PDF-document named "sample.pdf" + let pdf_split = Document::open("sample.pdf")?; + + // Create multiple new PDF-documents by extracting pages from the current PDF-document + let pdf_parts = pdf_split.split("1-2;3-")?; + + // Save each split part as a separate PDF-document + for (i, pdf_part) in pdf_parts.iter().enumerate() { + let pdf_filename = format!("sample_split_part{}.pdf", i + 1); + pdf_part.save_as(&pdf_filename)?; + } + + Ok(()) +} + +``` \ No newline at end of file diff --git a/english/rust-cpp/core/split_at/_index.md b/english/rust-cpp/core/split_at/_index.md new file mode 100644 index 0000000000..2b7a12ae25 --- /dev/null +++ b/english/rust-cpp/core/split_at/_index.md @@ -0,0 +1,41 @@ +--- +title: "split_at" +second_title: Aspose.PDF for Rust via C++ +description: "Splits the current PDF-document into two new PDF-documents." +type: docs +url: /rust-cpp/core/split_at/ +--- + +_Splits the current PDF-document into two new PDF-documents._ + +```rust +pub fn split_at(&self, page: i32) -> Result<(Self, Self), PdfError> +``` + +**Arguments** + * **page** - a page number at which to split (1-based, exclusive for the second part) + +**Returns** + * **Ok((Self, Self))** - with the two split documents, if the operation succeeds + * **Err(PdfError)** - if the operation fails + +**Example** + +```rust +use asposepdf::Document; + +fn main() -> Result<(), Box> { + // Open a PDF-document named "sample.pdf" + let pdf_split = Document::open("sample.pdf")?; + + // Split the current PDF-document into two new PDF-documents + let (left, right) = pdf_split.split_at(2)?; + + // Save each split part as a separate PDF-document + left.save_as("sample_split_at_left.pdf")?; + right.save_as("sample_split_at_right.pdf")?; + + Ok(()) +} + +``` \ No newline at end of file diff --git a/english/rust-cpp/core/split_at_page/_index.md b/english/rust-cpp/core/split_at_page/_index.md new file mode 100644 index 0000000000..0e281371c7 --- /dev/null +++ b/english/rust-cpp/core/split_at_page/_index.md @@ -0,0 +1,42 @@ +--- +title: "split_at_page" +second_title: Aspose.PDF for Rust via C++ +description: "Splits the PDF-document into two new PDF-documents." +type: docs +url: /rust-cpp/core/split_at_page/ +--- + +_Splits the PDF-document into two new PDF-documents._ + +```rust +pub fn split_at_page(document: &Document, page: i32) -> Result<(Self, Self), PdfError> +``` + +**Arguments** + * **document** - a reference to the source PDF-document to split + * **page** - a page number at which to split (1-based, exclusive for the second part) + +**Returns** + * **Ok((Self, Self))** - with the two split documents, if the operation succeeds + * **Err(PdfError)** - if the operation fails + +**Example** + +```rust +use asposepdf::Document; + +fn main() -> Result<(), Box> { + // Open a PDF-document named "sample.pdf" + let pdf_split = Document::open("sample.pdf")?; + + // Split the PDF-document into two new PDF-documents + let (left, right) = Document::split_at_page(&pdf_split, 2)?; + + // Save each split part as a separate PDF-document + left.save_as("sample_split_at_page_left.pdf")?; + right.save_as("sample_split_at_page_right.pdf")?; + + Ok(()) +} + +``` \ No newline at end of file diff --git a/english/rust-cpp/core/split_document/_index.md b/english/rust-cpp/core/split_document/_index.md new file mode 100644 index 0000000000..e454d71a5c --- /dev/null +++ b/english/rust-cpp/core/split_document/_index.md @@ -0,0 +1,44 @@ +--- +title: "split_document" +second_title: Aspose.PDF for Rust via C++ +description: "Creates multiple new PDF-documents by extracting pages from the source PDF-document." +type: docs +url: /rust-cpp/core/split_document/ +--- + +_Creates multiple new PDF-documents by extracting pages from the source PDF-document._ + +```rust +pub fn split_document(document: &Document, page_range: &str) -> Result, PdfError> +``` + +**Arguments** + * **document** - a reference to the source PDF-document to split + * **page_range** - a string specifying page ranges, e.g. `"1-2;3;4-"` + +**Returns** + * **Ok(Vec\)** - containing the resulting split documents, if the operation succeeds + * **Err(PdfError)** - if the operation fails + +**Example** + +```rust +use asposepdf::Document; + +fn main() -> Result<(), Box> { + // Open a PDF-document named "sample.pdf" + let pdf_split = Document::open("sample.pdf")?; + + // Creates multiple new PDF-documents by extracting pages from the source PDF-document + let pdf_parts = Document::split_document(&pdf_split, "1;2-")?; + + // Save each split part as a separate PDF-document + for (i, pdf_part) in pdf_parts.iter().enumerate() { + let pdf_filename = format!("sample_split_document_part{}.pdf", i + 1); + pdf_part.save_as(&pdf_filename)?; + } + + Ok(()) +} + +``` \ No newline at end of file