Aspose::Cells::Comment::IsVisible method

Comment::IsVisible method

Represents if the comment is visible or not.

bool Aspose::Cells::Comment::IsVisible()

Examples

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

See Also