API Documentation > CorelDRAW > 2025-v26 > Guide > IVGGuide
Guide.MakeEditable method
Makes the guideline editable
Syntax:
Sub MakeEditable()
Remarks:
The MakeEditable method converts a preset guideline to a normal guideline that can be edited directly on the drawing page.
Examples:
The following VBA example converts all preset guidelines to normal guidelines on the master page.
Sub Test()
Dim s As Shape
For Each s In ActiveDocument.Pages(0).Guides(cdrAllGuides)
  If s.Guide.Preset Then s.Guide.MakeEditable
  Next s

End Sub