API Documentation > CorelDRAW > 2025-v26 > PrintPostScript > IPrnVBAPrintPostScript
PrintPostScript.ScreenFrequency property
Specifies the printer halftone screen frequency to use
Syntax:
Property Get ScreenFrequency() As Long
Property Let ScreenFrequency(ByVal Value As Long)
Remarks:
The ScreenFrequency property returns or sets the basic halftone-screen frequency of a print job in lines per inch (lpi).
Examples:
The following VBA example specifies the screen frequency as 120 lpi.
Sub Test()
With ActiveDocument.PrintSettings.PostScript
  .ScreenFrequency = 120
End With 
End Sub