Previous Document Next Document

Object Model Reference : Classes : F : Fill : Properties : Fill.Pattern


Fill.Pattern

Property Pattern As PatternFill

Description

Member of Fill

The Pattern property returns a PatternFill object that represents the settings for a pattern fill.

VBA example

The following VBA example creates a rectangle and applies a skewed two-color pattern fill to it.

Sub Test()
 Dim s As Shape
 Set s = ActiveLayer.CreateRectangle(0, 0, 2, 2)
 s.Fill.ApplyPatternFill cdrTwoColorPattern, , 4, CreateRGBColor(255, 0, 0), CreateRGBColor(255, 255, 0)
 s.Fill.Pattern.SkewAngle = 20
End Sub

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.