Propiedad ActionSetting.ActionVerb (PowerPoint)

Devuelve o establece una cadena que contiene el verbo OLE que se ejecutará cuando el usuario haga clic en la forma especificada o mueva el mouse sobre la forma durante una presentación de diapositivas. Lectura y escritura.

Sintaxis

expresión. ActionVerb

Expresión Variable que representa un objeto ActionSetting .

Comentarios

La propiedad Action debe establecerse en ppActionOLEVerb primero para que esta propiedad afecta a la acción de la presentación con diapositivas.

Ejemplo:

This example sets shape three on slide one to be played whenever the mouse pointer passes over it during a slide show. Shape three must represent an OLE object that supports the "Play" verb.

With ActivePresentation.Slides(1).Shapes(3) _
        .ActionSettings(ppMouseOver)
    .ActionVerb = "Play"
    .Action = ppActionOLEVerb
End With

Consulte también

Objeto ActionSetting

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.