Aspose::Cells::CommentCollection::RemoveAt method

CommentCollection::RemoveAt(const U16String&) method

Removes the comment of the specific cell.

void Aspose::Cells::CommentCollection::RemoveAt(const U16String &cellName)
ParameterTypeDescription
cellNameconst U16String&The name of cell which contains a comment.

Examples

U16String val = u"B2";
comments.RemoveAt(val);

See Also

CommentCollection::RemoveAt(const char16_t*) method

Removes the comment of the specific cell.

void Aspose::Cells::CommentCollection::RemoveAt(const char16_t *cellName)
ParameterTypeDescription
cellNameconst char16_t*The name of cell which contains a comment.

Examples

comments.RemoveAt(u"B2");

See Also

CommentCollection::RemoveAt(int32_t, int32_t) method

Removes the comment of the specific cell.

void Aspose::Cells::CommentCollection::RemoveAt(int32_t row, int32_t column)
ParameterTypeDescription
rowint32_tThe row index.
columnint32_tthe column index.

Examples

comments.RemoveAt(1, 1);

See Also