时间:2021-05-20
概述
为文档添加必要的批注可以给文档使用者提供重要的提示信息,下面的示例中,将介绍通过C#编程语言来给Excel表格中的指定单元格内容添加批注,此外,对于已有的批注,如果需要修改,我们也可以进行编辑或者删除批注。示例内容将包含以下主要内容:
1.插入批注
1.1 插入文本
1.2 插入图片
2.编辑批注
2.1 修改批注内容
2.1 设置批注可见性
3.删除批注
工具
Spire.XLS for .NET 8.0
提示:在进行代码操作之前,需下载安装Spire.Xls,并添加引用dll文件,添加如下using指令
using System;
using Spire.Xls;
using System.Drawing;
代码示例(供参考)
1.插入Excel批注
【C#】
步骤1:实例化一个Workbook类实例并加载Excel文档
Workbook workbook = new Workbook();workbook.LoadFromFile("test.xlsx");步骤2:获取第一个工作表
Worksheet sheet = workbook.Worksheets[0];步骤3:插入文本批注
string comment = "注意:\n 责任人兼设备维护人";//设置批注文本ExcelFont font = workbook.CreateFont();//设置批注字体格式font.FontName = "Calibri";font.Color = Color.Black;font.IsBold = true;CellRange range = sheet.Range["I3"];//添加批注到指定单元格range.Comment.RichText.Text = comment;range.Comment.Width = 200;range.Comment.Height = 50;range.Comment.RichText.SetFont(10, 10, font);步骤4:插入图片批注
//加载图片,将图片插入到指定单元格的批注Image image = Image.FromFile("logo.png");sheet.Range["B2"].Comment.Fill.CustomPicture(image, "logo.png");sheet.Range["B2"].Comment.Height = image.Height;sheet.Range["B2"].Comment.Width = image.Width;步骤5:保存文档
workbook.SaveToFile("AddComment.xlsx", ExcelVersion.Version2013);System.Diagnostics.Process.Start("AddComment.xlsx");批注插入效果(如下图):
全部代码:
using System;using Spire.Xls;using System.Drawing;namespace ModifyComment_XLS{ class Program { static void Main(string[] args) { //实例化一个Workbook类实例并加载Excel文档 Workbook workbook = new Workbook(); workbook.LoadFromFile("test.xlsx"); //获取第一个工作表 Worksheet sheet = workbook.Worksheets[0]; //设置批注文本 string comment = "注意:\n 责任人兼设备维护人"; //设置批注字体 ExcelFont font = workbook.CreateFont(); font.FontName = "Calibri"; font.Color = Color.Black; font.IsBold = true; //添加批注到指定单元格 CellRange range = sheet.Range["I3"]; range.Comment.RichText.Text = comment; range.Comment.Width = 200; range.Comment.Height = 50; range.Comment.RichText.SetFont(10, 10, font); //加载图片,将图片插入到指定单元格的批注 Image image = Image.FromFile("logo.png"); sheet.Range["B2"].Comment.Fill.CustomPicture(image, "logo.png"); sheet.Range["B2"].Comment.Height = image.Height; sheet.Range["B2"].Comment.Width = image.Width; //保存并打开文档 workbook.SaveToFile("AddComment.xlsx", ExcelVersion.Version2013); System.Diagnostics.Process.Start("AddComment.xlsx"); } }}2. 修改、隐藏Excel批注
【C#】
步骤1:创建一个Workbook类对象,并加载Excel文档
Workbook workbook = new Workbook();workbook.LoadFromFile("AddComment.xlsx");步骤2:获取第一个工作表
Worksheet sheet = workbook.Worksheets[0];步骤3:修改工作表中的第一个批注
ExcelComment comment0 = workbook.Worksheets[0].Comments[0];sheet.Comments[0].Text = "This is a new comment";步骤4:设置批注可见性(隐藏、显示)
//设置指定批注不可见(隐藏)sheet.Comments[0].IsVisible = true;//设置指定批注可见(显示)sheet.Comments[1].IsVisible = false;步骤5:保存文档
workbook.SaveToFile("ModifyComment.xlsx", ExcelVersion.Version2013);System.Diagnostics.Process.Start("ModifyComment.xlsx");效果图:
全部代码:
using System;using Spire.Xls;using System.Drawing;namespace ModifyComment_XLS{ class Program { static void Main(string[] args) { //创建一个Workbook类对象,并加载Excel文档 Workbook workbook = new Workbook(); workbook.LoadFromFile("AddComment.xlsx"); //获取第一个工作表 Worksheet sheet = workbook.Worksheets[0]; //修改工作表中的第一个批注 ExcelComment comment0 = workbook.Worksheets[0].Comments[0]; sheet.Comments[0].Text = "This is a new comment"; //设置指定批注不可见(隐藏) sheet.Comments[0].IsVisible = true; //设置指定批注可见(显示) sheet.Comments[1].IsVisible = false; //保存并打开文档 workbook.SaveToFile("ModifyComment.xlsx", ExcelVersion.Version2013); System.Diagnostics.Process.Start("ModifyComment.xlsx"); } }}3.删除Excel批注
【C#】
//实例化Wordbook类实例并加载Excel文档Workbook workbook = new Workbook();workbook.LoadFromFile("Comments.xlsx");//获取第一个工作表Worksheet sheet = workbook.Worksheets[0];//删除工作表中的第2个批注sheet.Comments[1].Remove();//保存并打开文档workbook.SaveToFile("RemoveComment.xlsx", ExcelVersion.Version2013);System.Diagnostics.Process.Start("RemoveComment.xlsx");以上全部为本篇文章的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
WPS表格中如何插入、修改、删除批注?在工作或学习使用WPS表格的时候,有可能会需要插入批注,或者修改、删除批注,那么,在WPS表格中如何插入批注、修改批注、删
我们在使用Excel表格编辑时,经常会使用到批注。为了让我们的Excel表格看起来更加美观,我们可能需要修改Excel批注的形状。那么如何修改Excel批注形状
在使用excel表格的时候有时候会加入批注和格式等等,如果单单点击删除键是没有办法清除它的格式和批注的,下面就为大家介绍excel2013怎么批量清除单元格
批量修改Excel表格中批注的设置步骤: 1、选中任何一个包含批注的单元格,按组合键,进入批注编辑状态,修改批注内容。 2、选中刚修改过批注的单元格,按
当我们需要在表格中有特殊标明,但是又不能影响整体的效果的时候,我们可以选择在文本中插入批注,下面就为大家介绍excel做批注方法,不会的朋友可以参考本文,来