Propiedad Shape.Height (Word)

Devuelve o establece el alto (en puntos) de la forma especificada. Lectura y escritura único.

Sintaxis

expresión. Altura

Expresión Variable que representa un objeto Shape .

Ejemplo:

This example inserts a picture as an inline shape and changes the height and width of the image.

Dim aInLine As Shape 
 
Set aInLine = ActiveDocument.InlineShapes.AddPicture( _ 
 FileName:="C:\Windows\Bubbles.bmp", Range:=Selection.Range) 
 
With aInLine 
 .Height = 100 
 .Width = 200 
End With

Consulte también

Objeto Shape

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.