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
See also
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.