TextureType Property
Applies To
ChartFillFormat object.
Description
Returns the texture type for the specified fill. Can be one of the following MsoTextureType constants: msoTexturePreset, msoTextureTypeMixed, or msoTextureUserDefined. Read-only Long.
This property is read-only. Use the UserTextured method to set the texture type 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 = "C:\brick.bmp" Then
.UserTextured "C:\stone.bmp"
End If
End If
End If
End With