Previous Document Next Document

Object Model Reference : Classes : G : Guide : Methods : Guide.MakeEditable


Guide.MakeEditable

Sub MakeEditable()

Description

Member of Guide

The MakeEditable method converts a preset guideline to a normal guideline that can be edited directly on the drawing page.

VBA example

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

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.