API Documentation > CorelDRAW > 2025-v26 > Guide > IVGGuide
Guide.Preset property
Gets of the guideline is a preset
Syntax:
Property Get Preset() As Boolean
Remarks:
The Preset property returns a value of True if a guideline is a preset guideline, False if it is not.
Examples:
The following VBA example removes all guidelines that are not preset guidelines on the master page.
Sub Test()
Dim s As Shape
For Each s In ActiveDocument.Pages(0).Guides(cdrAllGuides)
  If Not s.Guide.Preset Then s.Delete
  Next s

End Sub