Adds a comment to the cell and returns IComment interface.
[Visual Basic] Function AddComment() As IComment [C#] IComment AddComment(); [C++] IComment* AddComment(); [JScript] function AddComment(): IComment;
The following example adds the comment to A1 cell.
[C#]
book.Worksheets[1].Range["A1"].AddComment("My comment");
[Visual Basic]
book.Worksheets(1).Range("A1").AddComment("My comment")
[C++]
book->Worksheets->Item[1]->Range->Item[S"A1"]->AddComment(S"My comment");
IRange Interface | NativeExcel Namespace | IRange.AddComment Overload List