GetThreadedComments
Innehåll
[
Dölj
]GetThreadedComments(int, int)
Hämtar trådade kommentarer efter rad- och kolumnindex.
public ThreadedCommentCollection GetThreadedComments(int row, int column)
Parameter | Typ | Beskrivning |
---|---|---|
row | Int32 | Radindex. |
column | Int32 | Kolumnindex. |
Exempel
[C#]
ThreadedCommentCollection threadedComments1 = comments.GetThreadedComments(1, 1);
for (int i = 0; i < threadedComments1.Count; ++i)
{
ThreadedComment tc = threadedComments1[i];
string note = tc.Notes;
}
Se även
- class ThreadedCommentCollection
- class CommentCollection
- namnutrymme Aspose.Cells
- hopsättning Aspose.Cells
GetThreadedComments(string)
Hämtar trådade kommentarer efter cellnamn.
public ThreadedCommentCollection GetThreadedComments(string cellName)
Parameter | Typ | Beskrivning |
---|---|---|
cellName | String | Namnet på cellen. |
Exempel
[C#]
ThreadedCommentCollection threadedComments2 = comments.GetThreadedComments("B2");
for (int i = 0; i < threadedComments2.Count; ++i)
{
ThreadedComment tc = threadedComments2[i];
string note = tc.Notes;
}
Se även
- class ThreadedCommentCollection
- class CommentCollection
- namnutrymme Aspose.Cells
- hopsättning Aspose.Cells