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.

expression.UserTextured(TextureFile)expressionRequired. An expression that returns a ChartFillFormatobject.TextureFile Required String. The name of the specified picture file.

Example

This example changes the user-defined texture type for the chart's fill format.

With myChart.ChartArea.Fill If .Type = msoFillTextured Then If .TextureType = msoTextureUserDefined Then If .TextureName = "C:\brick.png" Then .UserTextured "C:\stone.png" End If End If End If End With