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 Comments collection that contains all comments in the worksheet.

{signature}
{example}{code:csharp|title=C#}
Comments cmnts = ws.Comments;
{code}
{code:vb.net
|title=vb.net
}
Dim cmnts As Comments = ws.Comments{code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Returns a [Comments] collection that contains all comments in the worksheet.{excerpt}
{signature:C#}
 public Comments Comments{ get; }
Signature
{signature}{signature:vb.net
vb.net
}
Public ReadOnly Property Comments() As Comments
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle