InterpretMaskOpAsOpacity

IInkOptions.InterpretMaskOpAsOpacity property

Uses ROP operation or Opacity for rendering brush.

public bool InterpretMaskOpAsOpacity { get; set; }

Remarks

Default value is true.

Examples

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

[C#]
using (Presentation pres = new Presentation("pres.pptx"))
{
    PdfOptions pdfOptions = new PdfOptions();
    pdfOptions.InkOptions.InterpretMaskOpAsOpacity = false;
    pres.Save("output.pptx", SaveFormat.Pdf, pdfOptions);
}

See Also