Skip to content

Commit

Permalink
Update file(s) "/." from "aspose-omr/Aspose.OMR-API-References"
Browse files Browse the repository at this point in the history
  • Loading branch information
korobeynikovnv committed Nov 29, 2024
1 parent b26dc8b commit a9dbf97
Show file tree
Hide file tree
Showing 15 changed files with 141 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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)(stringstring) | Save results of multiple template generations as .png images into folder with corresponding .domr file |
| [SaveAsInteractivePdf](../../aspose.omr.batchprocessings/batchgenerationresult/saveasinteractivepdf)(stringstring) | 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)(stringstring) | Save results of multiple template generations as .png images into folder with corresponding .domr file |

### See Also
Expand Down
Original file line number Diff line number Diff line change
@@ -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](../../../)

<!-- DO NOT EDIT: generated by xmldocmd for Aspose.OMR.dll -->
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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. |
Expand Down
Original file line number Diff line number Diff line change
@@ -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](../../../)

<!-- DO NOT EDIT: generated by xmldocmd for Aspose.OMR.dll -->
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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](../../../)

<!-- DO NOT EDIT: generated by xmldocmd for Aspose.OMR.dll -->
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ public class GenerationResult
| Name | Description |
| --- | --- |
| [Save](../../aspose.omr.generation/generationresult/save)(stringstring) | Save template images and template to the specified folder as .png |
| [SaveAsInteractivePdf](../../aspose.omr.generation/generationresult/saveasinteractivepdf)(stringstring) | 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)(stringstring) | Save template images to the specified folder as .pdf Multi page templates saved as a single .pdf file with multiple pages |

## Fields
Expand Down
Original file line number Diff line number Diff line change
@@ -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](../../../)

<!-- DO NOT EDIT: generated by xmldocmd for Aspose.OMR.dll -->
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a9dbf97

Please sign in to comment.