Convert
Convert class
Represents a group of methods intended to convert Presentation.
Methods
| Method | Description |
|---|
| static void AutoByExtension(System::String, System::String) | Converts Presentation using the passed output path extension to determine the required export format. |
| Convert() | |
| static void ToPdf(System::String, System::String) | Converts Presentation to PDF. |
| static void ToPdf(System::String, System::String, System::SharedPtr<Aspose::Slides::Export::IPdfOptions>) | Converts Presentation to PDF. |
| static void ToPdf(System::SharedPtr<Presentation>, System::String) | Converts Presentation to PDF. |
| static void ToPdf(System::SharedPtr<Presentation>, System::String, System::SharedPtr<Aspose::Slides::Export::IPdfOptions>) | Converts Presentation to PDF. |
| static void ToSvg(System::String) | Converts Presentation to SVG. |
| static void ToSvg(System::String, Convert::GetOutPathCallback) | Converts Presentation to SVG. |
| static void ToSvg(System::SharedPtr<Presentation>, Convert::GetOutPathCallback) | Converts Presentation to SVG. |
| static void ToSvg(System::SharedPtr<Presentation>, System::SharedPtr<Aspose::Slides::Export::ISVGOptions>) | Converts Presentation to SVG. |
| static void ToSvg(System::SharedPtr<Presentation>, Convert::GetOutPathCallback, System::SharedPtr<Aspose::Slides::Export::ISVGOptions>) | Converts Presentation to SVG. |
Typedefs
| Typedef | Description |
|---|
| GetOutPathCallback | Callback that will be invoked for each Slide, the output path expected to be returned. |
Convert::AutoByExtension(u"pres.pptx", u"pres.pdf");
See Also