Convert to Presentation with advanced options
Leave feedback
GroupDocs.Conversion provides PresentationConvertOptions to give you control over conversion result when convert to powerpoint presentation format. Along with common convert options from base class PresentationConvertOptions has the following additional options:
- Format specifies desired result document type. Available options are: Ppt, Pps, Pptx, Ppsx, Odp, Otp, Potx, Pot, Potm, Pptm, Ppsm.
- Password whether the converted document will be password protected with the specified password.
- Zoom specifies the zoom level in percentage.
The following code snippet shows how to convert to Presentation with advanced options:
using (Converter converter = new Converter("sample.docx"))
{
PresentationConvertOptions options = new PresentationConvertOptions
{
PageNumber = 2,
PagesCount = 1,
Format = PresentationFileType.Ppt
};
converter.Convert("converted.ppt", options);
}
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.