GetThreadedComments
Inhalt
[
Ausblenden
]GetThreadedComments(int, int)
Ruft die Thread-Kommentare nach Zeilen- und Spaltenindex ab.
public ThreadedCommentCollection GetThreadedComments(int row, int column)
Parameter | Typ | Beschreibung |
---|---|---|
row | Int32 | Der Zeilenindex. |
column | Int32 | Der Spaltenindex. |
Beispiele
[C#]
ThreadedCommentCollection threadedComments1 = comments.GetThreadedComments(1, 1);
for (int i = 0; i < threadedComments1.Count; ++i)
{
ThreadedComment tc = threadedComments1[i];
string note = tc.Notes;
}
Siehe auch
- class ThreadedCommentCollection
- class CommentCollection
- namensraum Aspose.Cells
- Montage Aspose.Cells
GetThreadedComments(string)
Ruft die Thread-Kommentare nach Zellenname ab.
public ThreadedCommentCollection GetThreadedComments(string cellName)
Parameter | Typ | Beschreibung |
---|---|---|
cellName | String | Der Name der Zelle. |
Beispiele
[C#]
ThreadedCommentCollection threadedComments2 = comments.GetThreadedComments("B2");
for (int i = 0; i < threadedComments2.Count; ++i)
{
ThreadedComment tc = threadedComments2[i];
string note = tc.Notes;
}
Siehe auch
- class ThreadedCommentCollection
- class CommentCollection
- namensraum Aspose.Cells
- Montage Aspose.Cells