GetThreadedComments
Contenido
[
Ocultar
]GetThreadedComments(int, int)
Obtiene los comentarios encadenados por índice de fila y columna.
public ThreadedCommentCollection GetThreadedComments(int row, int column)
Parámetro | Escribe | Descripción |
---|---|---|
row | Int32 | El índice de fila. |
column | Int32 | El índice de la columna. |
Ejemplos
[C#]
ThreadedCommentCollection threadedComments1 = comments.GetThreadedComments(1, 1);
for (int i = 0; i < threadedComments1.Count; ++i)
{
ThreadedComment tc = threadedComments1[i];
string note = tc.Notes;
}
Ver también
- class ThreadedCommentCollection
- class CommentCollection
- espacio de nombres Aspose.Cells
- asamblea Aspose.Cells
GetThreadedComments(string)
Obtiene los comentarios encadenados por nombre de celda.
public ThreadedCommentCollection GetThreadedComments(string cellName)
Parámetro | Escribe | Descripción |
---|---|---|
cellName | String | El nombre de la celda. |
Ejemplos
[C#]
ThreadedCommentCollection threadedComments2 = comments.GetThreadedComments("B2");
for (int i = 0; i < threadedComments2.Count; ++i)
{
ThreadedComment tc = threadedComments2[i];
string note = tc.Notes;
}
Ver también
- class ThreadedCommentCollection
- class CommentCollection
- espacio de nombres Aspose.Cells
- asamblea Aspose.Cells