| Name | Type | Description |
|---|---|---|
| Type | ||
| FileName |
String
|
|
| PatternCanvasIndex |
Long
|
Specifies the index number of the pattern canvas. |
| FrontColor | Specifies the foreground color in a pattern fill. |
|
| EndColor | Specifies the background color in a pattern fill. |
|
| TransformWithShape |
Boolean
|
Specifies whether the pattern fill changes to fit its shape when the shape is altered. If the value is True, the pattern fill changes according to changes in its shape. |
Sub Test() Dim sr As ShapeRange Set sr = ActivePage.FindShapes(Type:=cdrTextShape) sr.ApplyPatternFill cdrTwoColorPattern, , 4, CreateRGBColor(255, 0, 0) sr.SetOutlineProperties 0.05 End Sub