Convert
Convert class
Represents a group of methods intended to convert Presentation.
Convert
| Name | Description |
|---|---|
| Convert() |
Returns: Convert
autoByExtension
| Name | Description |
|---|---|
| autoByExtension (String, String) | Converts Presentation using the passed output path extension to determine the required export format. |
Parameters:
| Name | Type | Description |
|---|---|---|
| presPath | String | Path of the input presentation |
| outPath | String | Output path |
Returns: void
Exception
| Error | Condition |
|---|---|
| ArgumentOutOfRangeException | If unknown or unsupported format |
toPdf
| Name | Description |
|---|---|
| toPdf (String, String) | Converts Presentation to PDF. |
Parameters:
| Name | Type | Description |
|---|---|---|
| presPath | String | Path of the input presentation |
| outPath | String | Output path |
Returns: void
toPdf
| Name | Description |
|---|---|
| toPdf (String, String, PdfOptions) | Converts Presentation to PDF. |
Parameters:
| Name | Type | Description |
|---|---|---|
| presPath | String | Path of the input presentation |
| outPath | String | Output path |
| options | PdfOptions | Output PDF options |
Returns: void
toPdf
| Name | Description |
|---|---|
| toPdf (Presentation, String) | Converts Presentation to PDF. |
Parameters:
| Name | Type | Description |
|---|---|---|
| pres | Presentation | Input presentation |
| outPath | String | Output path |
Returns: void
toPdf
| Name | Description |
|---|---|
| toPdf (Presentation, String, PdfOptions) | Converts Presentation to PDF. |
Parameters:
| Name | Type | Description |
|---|---|---|
| pres | Presentation | Input presentation |
| outPath | String | Output path |
| options | PdfOptions | Output PDF options |
Returns: void
toSvg
| Name | Description |
|---|---|
| toSvg (String) | Converts Presentation to SVG. |
Parameters:
| Name | Type | Description |
|---|---|---|
| presPath | String | Path of the input presentation |
Returns: void
toSvg
| Name | Description |
|---|---|
| toSvg (String, Convert.GetOutPathCallback) | Converts Presentation to SVG. |
Parameters:
| Name | Type | Description |
|---|---|---|
| presPath | String | Path of the input presentation |
| getOutPath | Convert.GetOutPathCallback | Callback that returns the SVG output path for each slide in the presentation |
Returns: void
toSvg
| Name | Description |
|---|---|
| toSvg (Presentation, Convert.GetOutPathCallback) | Converts Presentation to SVG. |
Parameters:
| Name | Type | Description |
|---|---|---|
| pres | Presentation | Input presentation |
| getOutPath | Convert.GetOutPathCallback | Callback that returns the SVG output path for each slide in the presentation |
Returns: void
toSvg
| Name | Description |
|---|---|
| toSvg (Presentation, SVGOptions) | Converts Presentation to SVG. |
Parameters:
| Name | Type | Description |
|---|---|---|
| pres | Presentation | Input presentation |
| options | SVGOptions | SVG export options |
Returns: void
toSvg
| Name | Description |
|---|---|
| toSvg (Presentation, Convert.GetOutPathCallback, SVGOptions) | Converts Presentation to SVG. |
Parameters:
| Name | Type | Description |
|---|---|---|
| pres | Presentation | Input presentation |
| getOutPath | Convert.GetOutPathCallback | Callback that returns the SVG output path for each slide in the presentation |
| options | SVGOptions | SVG export options |
Returns: void