Previous Document Next Document

Object Model Reference : Classes : P : PrintOptions : Properties : PrintOptions.FountainSteps


PrintOptions.FountainSteps

Property FountainSteps As Long

Description

Member of PrintOptions

The FountainSteps property returns or specifies the number of steps to use when printing fountain fills.

VBA example

The following VBA example displays the current value for the FountainSteps property, changes the value to 256, and displays the new value.

Sub Test()
 MsgBox "Fountain fills will print using " & _
  ActiveDocument.PrintSettings.Options.FountainSteps & " steps."
 ActiveDocument.PrintSettings.Options.FountainSteps = 256
 MsgBox "Fountain fills will now print using " & _
  ActiveDocument.PrintSettings.Options.FountainSteps & " steps."
End Sub

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.