PresetTextured method (Excel Graph)

Sets the format of the specified fill to a preset texture.

Syntax

expression.PresetTextured (PresetTexture)

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

Parameters

Name Required/Optional Data type Description
PresetTexture Required MsoPresetTexture The preset texture for the specified fill. Can be one of the MsoPresetTexture constants.

Example

This example changes the chart's textured fill format from oak to walnut.

With myChart.ChartArea.Fill 
 If .Type = msoFillTextured Then 
 If .TextureType = msoTexturePreset Then 
 If .PresetTexture = msoTextureOak Then 
 .PresetTextured msoTextureWalnut 
 End If 
 End If 
 End If 
End With

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.