1. 程式人生 > >C# 如何在Excel表格中插入、編輯和刪除批註

C# 如何在Excel表格中插入、編輯和刪除批註

mar mfile load art LV black for 工作表 logo

概述

為文檔添加必要的批註可以給文檔使用者提供重要的提示信息,下面的示例中,將介紹通過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");

批註插入效果(如下圖):
技術分享圖片

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");

效果圖:
技術分享圖片

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");

以上全部為本篇文章的全部內容。
如需轉載請註明出處。
<本文完>

C# 如何在Excel表格中插入、編輯和刪除批註