GetThreadedComments
Contenu
[
Cacher
]GetThreadedComments(int, int)
Obtient les commentaires filetés par index de ligne et de colonne.
public ThreadedCommentCollection GetThreadedComments(int row, int column)
Paramètre | Taper | La description |
---|---|---|
row | Int32 | L’index de ligne. |
column | Int32 | L’indice de colonne. |
Exemples
[C#]
ThreadedCommentCollection threadedComments1 = comments.GetThreadedComments(1, 1);
for (int i = 0; i < threadedComments1.Count; ++i)
{
ThreadedComment tc = threadedComments1[i];
string note = tc.Notes;
}
Voir également
- class ThreadedCommentCollection
- class CommentCollection
- espace de noms Aspose.Cells
- Assemblée Aspose.Cells
GetThreadedComments(string)
Obtient les commentaires thématiques par nom de cellule.
public ThreadedCommentCollection GetThreadedComments(string cellName)
Paramètre | Taper | La description |
---|---|---|
cellName | String | Le nom de la cellule. |
Exemples
[C#]
ThreadedCommentCollection threadedComments2 = comments.GetThreadedComments("B2");
for (int i = 0; i < threadedComments2.Count; ++i)
{
ThreadedComment tc = threadedComments2[i];
string note = tc.Notes;
}
Voir également
- class ThreadedCommentCollection
- class CommentCollection
- espace de noms Aspose.Cells
- Assemblée Aspose.Cells