彩票走势图

【教程】Spire.XLS 教程:在C#中隐藏或显示Excel注释

原创|使用教程|编辑:王香|2017-09-30 13:49:12.000|阅读 376 次

概述:Spire.XLS 是一个专业的Excel控件,有 .NET、WPF和Silverlight 版本,通过Spire.XLS无需安装微软Excel,也能拥有Excel的全套功能,本文介绍了如何通过Spire.XLS 在C#中隐藏或显示Excel注释。

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

相关链接:

在有些时候,我们可能需要在Excel文档中显示或隐藏注释,本文介绍如何使用Spire.XLS隐藏或显示Excel文档中的现有注释。

详细步骤:

Step 1:实例化一个Workbook实例并加载excel文档

Workbook workbook = new Workbook();
workbook.LoadFromFile("Comments.xlsx");

Step 2:获取第一个工作表

Worksheet sheet = workbook.Worksheets[0];

Step 3:隐藏或显示工作表中的具体注释

//Hide comment
sheet.Comments[0].IsVisible = false;
 
//Show comment
//sheet.Comments[0].IsVisible = true;

Step 4:保存文档

workbook.SaveToFile("HideComment.xlsx", ExcelVersion.Version2013);

截图:

图片1

完整代码:

//Instantiate a Workbook instance and load the excel document
Workbook workbook = new Workbook();
workbook.LoadFromFile("Comments.xlsx");
 
//Get the first worksheet
Worksheet sheet = workbook.Worksheets[0];
 
//Hide the specific comment in the worksheet
sheet.Comments[0].IsVisible = false;
 
//Show the specific comment in the worksheet
//sheet.Comments[0].IsVisible = true;
 
//Save the document
workbook.SaveToFile("HideComment.xlsx", ExcelVersion.Version2013);

点击下载Spire.XLS


标签:Excel

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


为你推荐

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


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP