Comment.TextOrientationType

Comment.TextOrientationType property

Gets and sets the text orientation type of the comment.

public TextOrientationType TextOrientationType { get; set; }

Examples


[C#]
if(comment1.TextOrientationType == TextOrientationType.NoRotation)
{
    comment1.TextOrientationType = TextOrientationType.TopToBottom;
}

See Also