Returns the name of the custom texture file for the specified fill. Read-only String.

This property is read-only. Use the UserPicture or UserTextured method to set the texture file for the fill.

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 = "brick.png" Then .UserTextured "stone.png" End If End If End If End With