InterpretMaskOpAsOpacity

InkOptions.InterpretMaskOpAsOpacity Eigenschaft

Verwendet ROP-Operation oder Opazität für das Rendering von Pinsel.

public bool InterpretMaskOpAsOpacity { get; set; }

Bemerkungen

Der Standardwert ist true.

Beispiele

Das nächste Beispiel demonstriert, wie man ROP für das Exportieren von Tintelementen einstellt:

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

Siehe Auch