diff --git a/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/batchgenerationresult/_index.md b/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/batchgenerationresult/_index.md index 359b4cd17cc0..35cfc0502b5a 100644 --- a/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/batchgenerationresult/_index.md +++ b/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/batchgenerationresult/_index.md @@ -32,6 +32,7 @@ public class BatchGenerationResult | --- | --- | | [GetExporter](../../aspose.omr.batchprocessings/batchgenerationresult/getexporter)() | Template exporter - a tool for a more precise storage of results Usually to streams | | [Save](../../aspose.omr.batchprocessings/batchgenerationresult/save)(string, string) | Save results of multiple template generations as .png images into folder with corresponding .domr file | +| [SaveAsInteractivePdf](../../aspose.omr.batchprocessings/batchgenerationresult/saveasinteractivepdf)(string, string) | Save a form to an interactive PDF, enabling users to fill out fields directly on their computer or smartphone and submit it electronically. | | [SavePdf](../../aspose.omr.batchprocessings/batchgenerationresult/savepdf)(string, string) | Save results of multiple template generations as .png images into folder with corresponding .domr file | ### See Also diff --git a/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/batchgenerationresult/saveasinteractivepdf/_index.md b/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/batchgenerationresult/saveasinteractivepdf/_index.md new file mode 100644 index 000000000000..00defb3b130e --- /dev/null +++ b/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/batchgenerationresult/saveasinteractivepdf/_index.md @@ -0,0 +1,35 @@ +--- +title: SaveAsInteractivePdf +second_title: Aspose.OMR for .NET API Reference +description: Save a form to an interactive PDF enabling users to fill out fields directly on their computer or smartphone and submit it electronically. +type: docs +weight: 50 +url: /net/aspose.omr.batchprocessings/batchgenerationresult/saveasinteractivepdf/ +--- +## BatchGenerationResult.SaveAsInteractivePdf method + +Save a form to an interactive PDF, enabling users to fill out fields directly on their computer or smartphone and submit it electronically. + +```csharp +public void SaveAsInteractivePdf(string folderPath, string domrName) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| folderPath | String | Full path to directory for images and .domr file | +| domrName | String | name for recognition pattern file, with extension | + +### Exceptions + +| exception | condition | +| --- | --- | +| DirectoryNotFoundException | When folder does not exists | +| Exception | In case of an error in template generation | + +### See Also + +* class [BatchGenerationResult](../../batchgenerationresult) +* namespace [Aspose.OMR.BatchProcessings](../../batchgenerationresult) +* assembly [Aspose.OMR](../../../) + + diff --git a/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/batchgenerationresult/savepdf/_index.md b/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/batchgenerationresult/savepdf/_index.md index 8f57e1378c8f..0f3cbd17b6aa 100644 --- a/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/batchgenerationresult/savepdf/_index.md +++ b/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/batchgenerationresult/savepdf/_index.md @@ -3,7 +3,7 @@ title: SavePdf second_title: Aspose.OMR for .NET API Reference description: Save results of multiple template generations as .png images into folder with corresponding .domr file type: docs -weight: 50 +weight: 60 url: /net/aspose.omr.batchprocessings/batchgenerationresult/savepdf/ --- ## BatchGenerationResult.SavePdf method diff --git a/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/templateexporter/_index.md b/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/templateexporter/_index.md index 4324b4126764..3ec46176a43d 100644 --- a/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/templateexporter/_index.md +++ b/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/templateexporter/_index.md @@ -18,7 +18,9 @@ public class TemplateExporter | Name | Description | | --- | --- | +| [ExportFormInteractivePdf](../../aspose.omr.batchprocessings/templateexporter/exportforminteractivepdf)(Stream) | Save a form to an interactive PDF, enabling users to fill out fields directly on their computer or smartphone and submit it electronically. | | [ExportFormPdf](../../aspose.omr.batchprocessings/templateexporter/exportformpdf)(Stream) | Write all pages of the current template form as PDF file into stream | +| [ExportPageInteractivePdf](../../aspose.omr.batchprocessings/templateexporter/exportpageinteractivepdf)(Stream) | Save a form page to an interactive PDF, enabling users to fill out fields directly on their computer or smartphone and submit it electronically. | | [ExportPagePdf](../../aspose.omr.batchprocessings/templateexporter/exportpagepdf)(Stream) | Write current page of the current template as PDF into stream | | [ExportPagePng](../../aspose.omr.batchprocessings/templateexporter/exportpagepng)(Stream) | Write current page of the current template as PNG image into stream | | [ExportRecognitionPattern](../../aspose.omr.batchprocessings/templateexporter/exportrecognitionpattern)(Stream) | Write recognition pattern for all template forms into stream. Important! Should be called after all form template are exported. | diff --git a/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/templateexporter/exportforminteractivepdf/_index.md b/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/templateexporter/exportforminteractivepdf/_index.md new file mode 100644 index 000000000000..c867639e26c9 --- /dev/null +++ b/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/templateexporter/exportforminteractivepdf/_index.md @@ -0,0 +1,33 @@ +--- +title: ExportFormInteractivePdf +second_title: Aspose.OMR for .NET API Reference +description: Save a form to an interactive PDF enabling users to fill out fields directly on their computer or smartphone and submit it electronically. +type: docs +weight: 30 +url: /net/aspose.omr.batchprocessings/templateexporter/exportforminteractivepdf/ +--- +## TemplateExporter.ExportFormInteractivePdf method + +Save a form to an interactive PDF, enabling users to fill out fields directly on their computer or smartphone and submit it electronically. + +```csharp +public void ExportFormInteractivePdf(Stream writeable) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| writeable | Stream | Writeable stream | + +### Exceptions + +| exception | condition | +| --- | --- | +| InvalidOperationException | If called before advancing a cursor(MoveNext calls) | + +### See Also + +* class [TemplateExporter](../../templateexporter) +* namespace [Aspose.OMR.BatchProcessings](../../templateexporter) +* assembly [Aspose.OMR](../../../) + + diff --git a/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/templateexporter/exportformpdf/_index.md b/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/templateexporter/exportformpdf/_index.md index 491fec8c0dd1..67d38c9b05dc 100644 --- a/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/templateexporter/exportformpdf/_index.md +++ b/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/templateexporter/exportformpdf/_index.md @@ -3,7 +3,7 @@ title: ExportFormPdf second_title: Aspose.OMR for .NET API Reference description: Write all pages of the current template form as PDF file into stream type: docs -weight: 30 +weight: 40 url: /net/aspose.omr.batchprocessings/templateexporter/exportformpdf/ --- ## TemplateExporter.ExportFormPdf method diff --git a/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/templateexporter/exportpageinteractivepdf/_index.md b/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/templateexporter/exportpageinteractivepdf/_index.md new file mode 100644 index 000000000000..dd62c3ef47f7 --- /dev/null +++ b/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/templateexporter/exportpageinteractivepdf/_index.md @@ -0,0 +1,33 @@ +--- +title: ExportPageInteractivePdf +second_title: Aspose.OMR for .NET API Reference +description: Save a form page to an interactive PDF enabling users to fill out fields directly on their computer or smartphone and submit it electronically. +type: docs +weight: 50 +url: /net/aspose.omr.batchprocessings/templateexporter/exportpageinteractivepdf/ +--- +## TemplateExporter.ExportPageInteractivePdf method + +Save a form page to an interactive PDF, enabling users to fill out fields directly on their computer or smartphone and submit it electronically. + +```csharp +public void ExportPageInteractivePdf(Stream writeable) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| writeable | Stream | Writeable stream | + +### Exceptions + +| exception | condition | +| --- | --- | +| InvalidOperationException | If called before advancing a cursor(MoveNext calls) | + +### See Also + +* class [TemplateExporter](../../templateexporter) +* namespace [Aspose.OMR.BatchProcessings](../../templateexporter) +* assembly [Aspose.OMR](../../../) + + diff --git a/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/templateexporter/exportpagepdf/_index.md b/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/templateexporter/exportpagepdf/_index.md index d24d0751e6e6..9a99472c7e54 100644 --- a/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/templateexporter/exportpagepdf/_index.md +++ b/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/templateexporter/exportpagepdf/_index.md @@ -3,7 +3,7 @@ title: ExportPagePdf second_title: Aspose.OMR for .NET API Reference description: Write current page of the current template as PDF into stream type: docs -weight: 40 +weight: 60 url: /net/aspose.omr.batchprocessings/templateexporter/exportpagepdf/ --- ## TemplateExporter.ExportPagePdf method diff --git a/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/templateexporter/exportpagepng/_index.md b/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/templateexporter/exportpagepng/_index.md index 7e57e60e9bd9..b7316b1bf2b4 100644 --- a/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/templateexporter/exportpagepng/_index.md +++ b/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/templateexporter/exportpagepng/_index.md @@ -3,7 +3,7 @@ title: ExportPagePng second_title: Aspose.OMR for .NET API Reference description: Write current page of the current template as PNG image into stream type: docs -weight: 50 +weight: 70 url: /net/aspose.omr.batchprocessings/templateexporter/exportpagepng/ --- ## TemplateExporter.ExportPagePng method diff --git a/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/templateexporter/exportrecognitionpattern/_index.md b/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/templateexporter/exportrecognitionpattern/_index.md index 1d56a85eee5f..6abec14fc557 100644 --- a/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/templateexporter/exportrecognitionpattern/_index.md +++ b/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/templateexporter/exportrecognitionpattern/_index.md @@ -3,7 +3,7 @@ title: ExportRecognitionPattern second_title: Aspose.OMR for .NET API Reference description: Write recognition pattern for all template forms into stream. Important Should be called after all form template are exported. type: docs -weight: 60 +weight: 80 url: /net/aspose.omr.batchprocessings/templateexporter/exportrecognitionpattern/ --- ## TemplateExporter.ExportRecognitionPattern method diff --git a/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/templateexporter/movetonextform/_index.md b/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/templateexporter/movetonextform/_index.md index f6b8691814be..8010a9b5dff6 100644 --- a/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/templateexporter/movetonextform/_index.md +++ b/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/templateexporter/movetonextform/_index.md @@ -3,7 +3,7 @@ title: MoveToNextForm second_title: Aspose.OMR for .NET API Reference description: Advances the template form enumerator to the next element type: docs -weight: 70 +weight: 90 url: /net/aspose.omr.batchprocessings/templateexporter/movetonextform/ --- ## TemplateExporter.MoveToNextForm method diff --git a/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/templateexporter/movetonextpage/_index.md b/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/templateexporter/movetonextpage/_index.md index db756c5b1ae8..75b4fda57161 100644 --- a/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/templateexporter/movetonextpage/_index.md +++ b/content/sites/aspose/omr/english/net/aspose.omr.batchprocessings/templateexporter/movetonextpage/_index.md @@ -3,7 +3,7 @@ title: MoveToNextPage second_title: Aspose.OMR for .NET API Reference description: Advances the page enumerator of the current template form to the next page type: docs -weight: 80 +weight: 100 url: /net/aspose.omr.batchprocessings/templateexporter/movetonextpage/ --- ## TemplateExporter.MoveToNextPage method diff --git a/content/sites/aspose/omr/english/net/aspose.omr.generation/generationresult/_index.md b/content/sites/aspose/omr/english/net/aspose.omr.generation/generationresult/_index.md index ae46cffa1fd8..f9294a664ee8 100644 --- a/content/sites/aspose/omr/english/net/aspose.omr.generation/generationresult/_index.md +++ b/content/sites/aspose/omr/english/net/aspose.omr.generation/generationresult/_index.md @@ -29,6 +29,7 @@ public class GenerationResult | Name | Description | | --- | --- | | [Save](../../aspose.omr.generation/generationresult/save)(string, string) | Save template images and template to the specified folder as .png | +| [SaveAsInteractivePdf](../../aspose.omr.generation/generationresult/saveasinteractivepdf)(string, string) | Save a form to an interactive PDF, enabling users to fill out fields directly on their computer or smartphone and submit it electronically. | | [SaveAsPdf](../../aspose.omr.generation/generationresult/saveaspdf)(string, string) | Save template images to the specified folder as .pdf Multi page templates saved as a single .pdf file with multiple pages | ## Fields diff --git a/content/sites/aspose/omr/english/net/aspose.omr.generation/generationresult/saveasinteractivepdf/_index.md b/content/sites/aspose/omr/english/net/aspose.omr.generation/generationresult/saveasinteractivepdf/_index.md new file mode 100644 index 000000000000..39d83c2f70a0 --- /dev/null +++ b/content/sites/aspose/omr/english/net/aspose.omr.generation/generationresult/saveasinteractivepdf/_index.md @@ -0,0 +1,28 @@ +--- +title: SaveAsInteractivePdf +second_title: Aspose.OMR for .NET API Reference +description: Save a form to an interactive PDF enabling users to fill out fields directly on their computer or smartphone and submit it electronically. +type: docs +weight: 80 +url: /net/aspose.omr.generation/generationresult/saveasinteractivepdf/ +--- +## GenerationResult.SaveAsInteractivePdf method + +Save a form to an interactive PDF, enabling users to fill out fields directly on their computer or smartphone and submit it electronically. + +```csharp +public void SaveAsInteractivePdf(string folder, string name) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| folder | String | Destination folder | +| name | String | Name of the template | + +### See Also + +* class [GenerationResult](../../generationresult) +* namespace [Aspose.OMR.Generation](../../generationresult) +* assembly [Aspose.OMR](../../../) + + diff --git a/content/sites/aspose/omr/english/net/aspose.omr.generation/generationresult/saveaspdf/_index.md b/content/sites/aspose/omr/english/net/aspose.omr.generation/generationresult/saveaspdf/_index.md index 9a50b561b2a3..7b423baddf1b 100644 --- a/content/sites/aspose/omr/english/net/aspose.omr.generation/generationresult/saveaspdf/_index.md +++ b/content/sites/aspose/omr/english/net/aspose.omr.generation/generationresult/saveaspdf/_index.md @@ -3,7 +3,7 @@ title: SaveAsPdf second_title: Aspose.OMR for .NET API Reference description: Save template images to the specified folder as .pdf Multi page templates saved as a single .pdf file with multiple pages type: docs -weight: 80 +weight: 90 url: /net/aspose.omr.generation/generationresult/saveaspdf/ --- ## GenerationResult.SaveAsPdf method