Previous Document Next Document
TextureFill.TransformWithShape

Property TransformWithShape As Boolean

Member of TextureFill

The TransformWithShape property returns or sets whether the texture-fill pattern is transformed when the parent shape is altered. If set to True, the texture-fill pattern changes according to transformations in its parent shape. If set to False, the texture-fill pattern remains the same, despite changes of the parent shape.

The following code example applies a texture fill to a rectangle and specifies that no transformations are made to the fill when the shape is transformed. It then duplicates the shape and stretches it by 200%.

Sub Test() 
 Dim s As Shape 
 Dim tf As TextureFill 
 Set s = ActiveLayer.CreateRectangle(0, 0, 4, 4) 
 Set tf = s.Fill.ApplyTextureFill("Water Color") 
 tf.TileHeight = 2 
 tf.TileWidth = 2 
 tf.TransformWithShape = False 
 Set s = s.Duplicate(4, 0) 
 s.StretchEx 2, 3, 4, 0 
End Sub 

Previous Document Next Document Back to Top

Copyright 2007 Corel Corporation. All rights reserved.