CommentCollection.RemoveAt
RemoveAt(string)
Removes the comment of the specific cell.
public void RemoveAt(string cellName)
Parameter | Type | Description |
---|---|---|
cellName | String | The name of cell which contains a comment. |
Examples
[C#]
comments.RemoveAt("B2");
See Also
- class CommentCollection
- namespace Aspose.Cells
- assembly Aspose.Cells
RemoveAt(int, int)
Removes the comment of the specific cell.
public void RemoveAt(int row, int column)
Parameter | Type | Description |
---|---|---|
row | Int32 | The row index. |
column | Int32 | the column index. |
Examples
[C#]
comments.RemoveAt(1,1);
See Also
- class CommentCollection
- namespace Aspose.Cells
- assembly Aspose.Cells