FillFormat.TextureType Property (Word)
Returns the texture type for the specified fill. Read-only MsoTextureType.
Syntax
expression .TextureType
expression An expression that represents a FillFormat object.
Remarks
This property is read-only. Use the PresetTextured, UserPicture, or UserTextured method to set the texture type for the fill.
Example
This example changes the fill for all shapes in the active document with a custom textured fill to a canvas fill.
For Each s In ActiveDocument.Shapes
With s.Fill
If .TextureType = msoTextureUserDefined Then
.PresetTextured msoTextureCanvas
End If
End With
Next