Share via


FillFormat.UserTextured Method

Word Developer Reference

Fills the specified shape with small tiles of an image.

Syntax

expression.UserTextured(TextureFile)

expression   Required. A variable that represents a FillFormat object.

Remarks

If you want to fill the shape with one large image, use the UserPicture method.

Example

This example adds two rectangles to the active document. The rectangle on the left is filled with one large image of the picture in Tiles.bmp; the rectangle on the right is filled with many small tiles of the picture in Tiles.bmp

Visual Basic for Applications
  Sub Texture()
    With ActiveDocument.Shapes
        .AddShape(msoShapeRectangle, 0, 0, 200, 100).Fill _
            .UserPicture "C:\Windows\Tiles.bmp"
        .AddShape(msoShapeRectangle, 300, 0, 200, 100).Fill _
            .UserTextured "C:\Windows\Tiles.bmp"
    End With
End Sub

See Also