text_orientation_type propiedad

text_orientation_type propiedad

Obtiene y establece el tipo de orientación del texto de la forma.

Ejemplo

from aspose.cells import TextOrientationType

if shape.text_orientation_type == TextOrientationType.NO_ROTATION:
    shape.text_orientation_type = TextOrientationType.TOP_TO_BOTTOM

Definición:

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

Ver también