Aspose::Cells::Comment::SetIsVisible method

Comment::SetIsVisible method

Represents if the comment is visible or not.

void Aspose::Cells::Comment::SetIsVisible(bool value)

Examples

if (comment1.IsVisible() == false)
{
    comment1.SetIsVisible(true);//The comment is visible
}

See Also