text_vertical_alignment property

text_vertical_alignment property

Gets and sets the text vertical alignment type of the comment.

Example

from aspose.cells import TextAlignmentType

if comment1.text_vertical_alignment == TextAlignmentType.FILL:
    comment1.text_vertical_alignment = TextAlignmentType.CENTER

Definition:

@property
def text_vertical_alignment(self):
    ...
@text_vertical_alignment.setter
def text_vertical_alignment(self, value):
    ...

See Also