get_HideInk()
IInkOptions::get_HideInk() method
Shows or hides Ink elements in exported document.
virtual bool Aspose::Slides::Export::IInkOptions::get_HideInk()=0
Remarks
Default value is false.
Next example demonstrates how to hide Ink elements in exported PDF document:
System::SharedPtr<Presentation> pres = System::MakeObject<Presentation>(u"pres.pptx");
System::SharedPtr<PdfOptions> pdfOptions = System::MakeObject<PdfOptions>();
pdfOptions->get_InkOptions()->set_HideInk(true);
pres->Save(u"output.pptx", SaveFormat::Pdf, pdfOptions);
See Also
- Class IInkOptions
- Namespace Aspose::Slides::Export
- Library Aspose.Slides