Returns the texture type for the specified fill. Read-only .

MsoTextureType can be one of these MsoTextureType constants.
msoTexturePreset
msoTextureTypeMixed
msoTextureUserDefined

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

expression.TextureTypeexpressionRequired. An expression that returns one of the objects in the Applies To list.

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