Aspose::Cells::Comment::SetTextOrientationType method

Comment::SetTextOrientationType method

Gets and sets the text orientation type of the comment.

void Aspose::Cells::Comment::SetTextOrientationType(TextOrientationType value)

Examples

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

See Also