Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

Returns a 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.

{signature}
{example}{code:csharp|title=C#}
Comment cmt = cellA1.Comment;
{code}
{code:vb.net
|title=vb.net
}
Dim cmt As Comment = cellA1.Comment
Signature
C#C#
Wiki Markup
{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}{signature:vb.net
vb.net
}
Public ReadOnly Property Comment() As Comment
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle

...

{code}

{example}
{scrollbar}