Compartir a través de


Propiedad ThreeDFormat.RotationX (PowerPoint)

Devuelve o establece el giro de la forma extruida alrededor del eje X, en grados. Lectura y escritura.

Sintaxis

expresión. RotationX

Expresión Variable que representa un objeto ThreeDFormat .

Valor devuelto

Simple

Comentarios

Puede ser un valor comprendido entre - 90 y 90. Un valor positivo indica un giro hacia arriba; un valor negativo indica un giro hacia abajo.

Para establecer el giro de la forma extruida alrededor del eje y, utilice la propiedad RotationY del objeto ThreeDFormat.

Para establecer el giro de la forma extruida alrededor del eje z, utilice la propiedad Rotation del objeto Shape.

Para cambiar la dirección del barrido de extrusión sin girar la cara frontal de la extrusión, utilice el método SetExtrusionDirection.

Ejemplo:

En este ejemplo se agregan tres óvalos extruidos idénticos a myDocument y se establece su rotación alrededor del eje X en - 30, 0 y 30 grados, respectivamente.

Set myDocument = ActivePresentation.Slides(1)

With myDocument.Shapes

    With .AddShape(msoShapeOval, 30, 60, 50, 25).ThreeD

        .Visible = True

        .RotationX = -30

    End With

    With .AddShape(msoShapeOval, 90, 60, 50, 25).ThreeD

        .Visible = True

        .RotationX = 0

    End With

    With .AddShape(msoShapeOval, 150, 60, 50, 25).ThreeD

        .Visible = True

        .RotationX = 30

    End With

End With

Consulte también

Objeto ThreeDFormat

Soporte técnico y comentarios

¿Tiene preguntas o comentarios sobre VBA para Office o esta documentación? Vea Soporte técnico y comentarios sobre VBA para Office para obtener ayuda sobre las formas en las que puede recibir soporte técnico y enviar comentarios.