{description}
{excerpt}Returns a [Comment|Comment] object representing a note attached to the cell, separate from other cell content. If a comment is not associated with the specified cell, a new comment will be created and returned.{excerpt}
{signature:C#}
 public Comment Comment{ get; }
{signature}{signature:vb.net}
Public ReadOnly Property Comment() As Comment
{signature}
{example}{code:csharp|title=C#}
Comment cmt = cellA1.Comment;{code}
{code:vb.net|title=vb.net}
Dim cmt As Comment = cellA1.Comment{code}

{example}
{scrollbar}