FillFormat.PresetTextured method (Publisher)

Sets the specified fill to a preset texture.

Syntax

expression.PresetTextured (PresetTexture)

expression A variable that represents a FillFormat object.

Parameters

Name Required/Optional Data type Description
PresetTexture Required MsoPresetTexture The preset texture. Can be one of the MsoPresetTexture constants declared in the Microsoft Office type library.

Example

This example adds a rectangle with a green-marble textured fill to the active publication.

ActiveDocument.Pages(1).Shapes _ 
 .AddShape(Type:=msoShapeCan, _ 
 Left:=90, Top:=90, Width:=40, Height:=80) _ 
 .Fill.PresetTextured _ 
 PresetTexture:=msoTextureGreenMarble 

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.