|   |   | Object Model Reference : Classes : G : Guide : Methods : Guide.MakeEditable | 
Sub MakeEditable()
Member of Guide
The MakeEditable method converts a preset guideline to a normal guideline that can be edited directly on the drawing page.
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 | 
|   |   |   | 
Copyright 2013 Corel Corporation. All rights reserved.