CommentCollection.GetThreadedComments
Contents
[
Hide
]GetThreadedComments(int, int)
Gets the threaded comments by row and column index.
public ThreadedCommentCollection GetThreadedComments(int row, int column)
Parameter | Type | Description |
---|---|---|
row | Int32 | The row index. |
column | Int32 | The column index. |
Examples
[C#]
ThreadedCommentCollection threadedComments1 = comments.GetThreadedComments(1, 1);
for (int i = 0; i < threadedComments1.Count; ++i)
{
ThreadedComment tc = threadedComments1[i];
string note = tc.Notes;
}
See Also
- class ThreadedCommentCollection
- class CommentCollection
- namespace Aspose.Cells
- assembly Aspose.Cells
GetThreadedComments(string)
Gets the threaded comments by cell name.
public ThreadedCommentCollection GetThreadedComments(string cellName)
Parameter | Type | Description |
---|---|---|
cellName | String | The name of the cell. |
Examples
[C#]
ThreadedCommentCollection threadedComments2 = comments.GetThreadedComments("B2");
for (int i = 0; i < threadedComments2.Count; ++i)
{
ThreadedComment tc = threadedComments2[i];
string note = tc.Notes;
}
See Also
- class ThreadedCommentCollection
- class CommentCollection
- namespace Aspose.Cells
- assembly Aspose.Cells