HideInk
IInkOptions.HideInk property
Shows or hides Ink elements in exported document.
public bool HideInk { get; set; }
Remarks
Default value is false.
Examples
Next example demonstrates how to hide Ink elements in exported PDF document:
[C#]
using (Presentation pres = new Presentation("pres.pptx"))
{
PdfOptions pdfOptions = new PdfOptions();
pdfOptions.InkOptions.HideInk = true;
pres.Save("output.pptx", SaveFormat.Pdf, pdfOptions);
}
See Also
- interface IInkOptions
- namespace Aspose.Slides.Export
- assembly Aspose.Slides