get_InterpretMaskOpAsOpacity()

IInkOptions::get_InterpretMaskOpAsOpacity() method

Uses ROP operation or Opacity for rendering brush.

virtual bool Aspose::Slides::Export::IInkOptions::get_InterpretMaskOpAsOpacity()=0

Remarks

Default value is true.

Next example demonstrates how to set using ROP for exporting Ink elements:

System::SharedPtr<Presentation> pres = System::MakeObject<Presentation>(u"pres.pptx");
System::SharedPtr<PdfOptions> pdfOptions = System::MakeObject<PdfOptions>();
pdfOptions->get_InkOptions()->set_InterpretMaskOpAsOpacity(false);
pres->Save(u"output.pptx", SaveFormat::Pdf, pdfOptions);

See Also