Supercharge your PowerPoint productivity with
Supercharge your PPT Productivity with PPTools - Click here to learn more.

Proud member of

PPTools

Image Export converts PowerPoint slides to high-quality images.

PPT2HTML exports HTML even from PowerPoint 2010 and 2013, gives you full control of PowerPoint HTML output, helps meet Section 508 accessibility requirements

Merge Excel data into PowerPoint presentations to create certificates, awards presentations, personalized presentations and more

Resize your presentations quickly and without distortion

Language Selector switches the text in your presentation from one language to another

FixLinks prevents broken links when you distribute PowerPoint presentations

Shape Styles brings styles to PowerPoint. Apply complex formatting with a single click.

Adding, Deleting and Moving Guides

Here are a few snippets of VBA you can use to modify guides in those versions of PowerPoint that support this sort of thing (2016 and possible 2013, not 2010 and earlier).

Note: all measurements are in Points. There are 72 points per inch.

Add Guides

Sub AddGuides()
    With ActivePresentation.Guides
        ' Add a vertical guide at 2" from left
        .Add ppVerticalGuide, 144
        ' Add a horizontal guide at 1" from left
        .Add ppHorizontalGuide, 72
    End With
End Sub

Move Guides

Sub MoveGuides()
    With ActivePresentation.Guides
        ' Move the second guide to 5" from left or top
        ' depending on whether it's vertical or horizontal
        .Item(2).Position = 5 * 72
    End With
End Sub

Delete Guides

Sub DeleteGuides()
    With ActivePresentation.Guides
        ' Delete the second guide
        .Item(2).Delete
    End With
End Sub

See How do I use VBA code in PowerPoint? to learn how to use this example code.


Did this solve your problem? If so, please consider supporting the PPT FAQ with a small PayPal donation.
Page copy protected against web site content infringement by Copyscape Contents © 1995 - 2022 Stephen Rindsberg, Rindsberg Photography, Inc. and members of the MS PowerPoint MVP team. You may link to this page but any form of unauthorized reproduction of this page's contents is expressly forbidden.

Supercharge your PPT Productivity with PPTools

content authoring & site maintenance by
Friday, the automatic faq maker (logo)
Friday - The Automatic FAQ Maker

Adding, Deleting and Moving Guides
http://www.pptfaq.com/FAQ01236-Adding-Deleting-and-Moving-Guids.htm
Last update 28 September, 2016
Created: 28 September, 2016