Aspose::Cells::Comment::GetTextOrientationType method

Comment::GetTextOrientationType method

Gets and sets the text orientation type of the comment.

TextOrientationType Aspose::Cells::Comment::GetTextOrientationType()

Examples

if (comment1.GetTextOrientationType() == TextOrientationType::NoRotation)
{
    comment1.SetTextOrientationType(TextOrientationType::TopToBottom);
}

See Also