彩票走势图

Spire.PDF 教程:在C#中显示或隐藏PDF图层

原创|使用教程|编辑:王香|2017-11-01 15:49:17.000|阅读 937 次

概述:Spire.PDF 是一个专业的PDF组件,能够独立地创建、编写、编辑、操作和阅读PDF文件,支持 .NET、WPF和Silverlight三个版本,本文介绍了如何在C#中显示或隐藏PDF图层。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

创建PDF图层时,Spire.PDF允许开发人员为图层设置初始的可见性状态。 同时它还支持更改PDF文档中现有图层的可见性。 本文介绍如何使用Spire.PDF显示或隐藏现有图层。

PdfLayer.Visibility属性用于更改PDF图层的可见性,要显示隐藏层,请将PdfLayer.Visibility属性设置为PdfVisibility.On。 要隐藏现有图层,请将PdfLayer.Visibility设置为PdfVisibility.Off.

以下示例显示如何隐藏特定的PDF图层:

using (PdfDocument doc = new PdfDocument("AddLayers.pdf"))
{
    //Hide the layer by index
    doc.Layers[1].Visibility = PdfVisibility.Off;

    //Hide the layer by Name
    //doc.Layers["BlueLine"].Visibility = PdfVisibility.Off;

    //Save the file
    doc.SaveToFile("HideLayer.pdf");
}

显示或隐藏所有图层:

using (PdfDocument doc = new PdfDocument("AddLayers.pdf"))
{
    for (int i = 0; i < doc.Layers.Count; i++)
    {
        //Show all of the layers 
        //doc.Layers[i].Visibility = PdfVisibility.On;
        
        //Hide all of the layers
        doc.Layers[i].Visibility = PdfVisibility.Off;
    }
    //Save the file
    doc.SaveToFile("HideAllLayers.pdf");
}

示例PDF文档的屏幕快照:

图片1

隐藏所有图层后的屏幕截图:

图片2

慧都控件网


标签:PDF

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP