FillFormat.TextureType property (Publisher)

Returns an MsoTextureType constant indicating the texture type for the specified fill. Read-only.

Syntax

expression.TextureType

expression A variable that represents a FillFormat object.

Return value

MsoTextureType

Remarks

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

The property value can be one of the MsoTextureType constants declared in the Microsoft Office type library.

Example

This example applies a canvas texture to the fill for all shapes on the first page of the active publication that currently have fills with a user-defined texture.

Dim shpLoop As Shape 
 
For Each shpLoop In ActiveDocument.Pages(1).Shapes 
 With shpLoop.Fill 
 If .TextureType = msoTextureUserDefined Then 
 .PresetTextured _ 
 PresetTexture:=msoTextureCanvas 
 End If 
 End With 
Next shpLoop

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.