IncludeOleData

IPdfOptions.IncludeOleData property

True to convert all OLE data from the presentation to embedded files in the resulting PDF. Read/write Boolean.

public bool IncludeOleData { get; set; }

Remarks

Default is false.

Examples

Example:

[C#]
using (Presentation pres = new Presentation("pres.pptx"))
{
    PdfOptions options = new PdfOptions { IncludeOleData = true };
    pres.Save("pres.pdf", SaveFormat.Pdf, options);
}

See Also