Propiedad ThreeDFormat.PresetLightingSoftness (PowerPoint)

Devuelve o establece la intensidad de luz de la extrusión. Lectura y escritura.

Sintaxis

expresión. PresetLightingSoftness

Expresión Variable que representa un objeto ThreeDFormat .

Valor devuelto

MsoPresetLightingSoftness

Comentarios

El valor de la propiedad PresetLightingSoftness puede ser una de estas constantes MsoPresetLightingSoftness.

msoLightingBright
msoLightingDim
msoLightingNormal
msoPresetLightingSoftnessMixed

Ejemplo:

En este ejemplo se especifica que la extrusión de la forma uno de myDocument se iluminará claramente desde la izquierda.

Set myDocument = ActivePresentation.Slides(1)

With myDocument.Shapes(1).ThreeD

    .Visible = True

    .PresetLightingSoftness = msoLightingBright

    .PresetLightingDirection = msoLightingLeft

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.