Shape.Height Property

Word Developer Reference

Returns or sets the height of the specified shape. Read/write Single.

Syntax

expression.Height

expression   A variable that represents a Shape object.

Example

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

Visual Basic for Applications
  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

See Also