Encapsulates the object that represents a cell comment.
For a list of all members of this type, see WebComment Members.
System.Object
Aspose.Grid.Web.Data.CellAttachObject
Aspose.Grid.Web.Data.WebComment
Thread Safety
Public static (Shared in Visual Basic) members of this type are
safe for multithreaded operations. Instance members are not guaranteed to be
thread-safe.
Example
[C#]
//Add comment to cell A1
WebCell cell = GridWeb1.WebWorksheets[0].Cells["A1"];
WebComments comments = GridWeb1.WebWorksheets[0].Comments
WebComment comment = comments.AddComment(cell);
comment.Note = "First note.";
[Visual Basic]
'Add comment to cell A1
Dim cell as WebCell = GridWeb1.WebWorksheets(0).Cells("A1");
Dim comments as WebComments = GridWeb1.WebWorksheets(0).Comments
Dim comment as WebComment = comments.AddComment(cell);
comment.Note = "First note.";
Requirements
Namespace: Aspose.Grid.Web.Data
Assembly: Aspose.Grid.Web (in Aspose.Grid.Web.dll)
See Also
WebComment Members | Aspose.Grid.Web.Data Namespace