Removes a PatternCanvas from the PatternCanvases collection
Syntax:
Sub Remove(ByVal Index As Long)
Parameters:
Name Type Description
Index
Long
Remarks:
The Remove method removes a pattern from the PatternCanvases collection.
Examples:
The following VBA example removes the last available two-color pattern.
Sub Test()
PatternCanvases.Remove PatternCanvases.Count 
End Sub