HideInk
IInkOptions.HideInk 属性
在导出的文档中显示或隐藏 Ink 元素。
public bool HideInk { get; set; }
说明
默认值为 false。
示例
下一个示例演示如何在导出的 PDF 文档中隐藏 Ink 元素:
[C#]
using (Presentation pres = new Presentation("pres.pptx"))
{
PdfOptions pdfOptions = new PdfOptions();
pdfOptions.InkOptions.HideInk = true;
pres.Save("output.pptx", SaveFormat.Pdf, pdfOptions);
}
参见
- interface IInkOptions
- namespace Aspose.Slides.Export
- assembly Aspose.Slides