UserTextured Method
Applies To
FillFormat object.
Description
Fills the specified shape with small tiles of an image. If you want to fill the shape with one large image, use the UserPicture method.
Syntax
expression.UserTextured(TextureFile)
expression Required. An expression that returns a FillFormat object.
TextureFile Required String. The name of the picture file.
See Also
Background method, OneColorGradient method, Patterned method, PresetGradient method, PresetTextured method, Solid method, TextureName property, TextureType property, TwoColorGradient method.
Example
This example adds two rectangles to myDocument. 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
Set myDocument = ActivePresentation.Slides(1)
With myDocument.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