Propiedad Hyperlink.Address (PowerPoint)

Devuelve o establece la dirección de Internet (URL) del documento de destino. Lectura y escritura.

Sintaxis

expresión. Dirección

Expresión Variable que representa un objeto Hyperlink .

Valor devuelto

String

Ejemplo

Este ejemplo busca todas las formas de la primera diapositiva para una dirección URL en el sitio Web de Microsoft.

Set myDocument = ActivePresentation.Slides(1)

For Each s In myDocument.Hyperlinks

    If s.Address = "https://www.microsoft.com/" Then

        MsgBox "You have a link to the Microsoft Home Page"

    End If

Next

Consulte también

Hyperlink (objeto)

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.