ワークシートにセルコメントを挿入および削除する

セルにコメントを追加および削除する

セルにコメントを追加するには:

  1. 既存のExcelファイルを開く。
  2. セルにコメントを追加します。
  3. ファイルを保存します。

コメントを削除するには、コメントを削除すること以外は、プロセスが似ています。

以下のコードサンプルは、VSTOまたはAspose.Cells for .NETを使用して、まずコメントを追加し、その後にコメントを削除する方法を示しています。

コメントの挿入

これらのコードスニペットは、まずVSTO(C#, VB)でセルにコメントを追加し、次にAspose.Cells for .NET(C#, VB)で同様の操作を行う方法を示しています。

VSTOでのコメントの挿入

C#

 .......

using Microsoft.VisualStudio.Tools.Applications.Runtime;

using Excel = Microsoft.Office.Interop.Excel;

using Office = Microsoft.Office.Core;

using System.Reflection;

.......

//Instantiate the Application object.

Excel.Application excelApp = new Excel.ApplicationClass();

//Specify the template excel file path.

string myPath=@"d:\test\Book1.xls";

//Open the excel file.

excelApp.Workbooks.Open(myPath, Missing.Value, Missing.Value,

Missing.Value, Missing.Value,

Missing.Value, Missing.Value,

Missing.Value, Missing.Value,

Missing.Value, Missing.Value,

Missing.Value, Missing.Value,

Missing.Value, Missing.Value);

//Get the A1 cell.

Excel.Range rng1=excelApp.get_Range("A1", Missing.Value);

//Add the comment with text.

rng1.AddComment("This is my comment");

//Save the file.

excelApp.ActiveWorkbook.Save();

//Quit the Application.

excelApp.Quit();

Aspose.Cells for .NETでのコメントの挿入

C#

 .......

using Aspose.Cells;

.......

//Specify the template excel file path.

string myPath=@"d:\test\Book1.xls";

//Instantiate a new Workbook.

//Open the excel file.

Workbook workbook = new Workbook(myPath);

//Add a Comment to A1 cell.

int commentIndex=workbook.Worksheets[0].Comments.Add("A1");

//Accessing the newly added comment

Comment comment=workbook.Worksheets[0].Comments[commentIndex];

//Setting the comment note

comment.Note="This is my comment";

//Save As the excel file.

workbook.Save(@"d:\test\Book1.xls");

コメントの削除

セルからコメントを削除するには、.NET向けのVSTO(C#, VB)とAspose.Cells(C#, VB)のコードを使用します。

VSTOでのコメントの削除

C#

 //Remove the comment.

rng1.Comment.Delete();    

Aspose.Cells for .NETでのコメントの削除

C#

 //Remove the comment.

workbook.Worksheets[0].Comments.RemoveAt("A1");