![]() |
![]() |
PrintPostScript.MaxPointsPerCurve
Property MaxPointsPerCurve As Long
Member of PrintPostScript
The MaxPointsPerCurve property returns or sets the maximum allowable number of control points per curve.
The following code example displays the current value of the MaxPointsPerCurve property. It then sets the value to one-half of the previous value and displays the new value.
Sub Test() With ActiveDocument MsgBox "The current value of MaxPointsPerCurve is " & _ .PrintSettings.PostScript.MaxPointsPerCurve .PrintSettings.PostScript.MaxPointsPerCurve = .PrintSettings.PostScript.MaxPointsPerCurve / 2 MsgBox "The current value of MaxPointsPerCurve is " & _ .PrintSettings.PostScript.MaxPointsPerCurve End With End Sub
![]() |
![]() |
![]() |
Copyright 2007 Corel Corporation. All rights reserved.