Consulting

Results 1 to 2 of 2

Thread: Increase bullet size in all sides

  1. #1
    VBAX Mentor clhare's Avatar
    Joined
    Mar 2005
    Posts
    470
    Location

    Increase bullet size in all sides

    Is it possible to increase the size of all bullets in a presentation? If so, how would I do that using VBA?

    Thanks!

  2. #2
    VBAX Master
    Joined
    Feb 2007
    Posts
    2,094
    Location
    Something like this maybe:
    [VBA]
    Sub ject_bullets()
    Dim osld As Slide
    Dim oshp As Shape
    For Each osld In ActivePresentation.Slides
    For Each oshp In osld.Shapes
    If oshp.HasTextFrame Then
    With oshp.TextFrame.TextRange.ParagraphFormat
    If .Bullet = True Then
    .Bullet.RelativeSize = .Bullet.RelativeSize * 1.25
    End If 'TextFrame
    End With
    End If 'Bullet
    Next oshp
    Next osld
    End Sub[/VBA]
    John Wilson
    Microsoft PowerPoint MVP
    Amazing Free PowerPoint Tutorials
    http://www.pptalchemy.co.uk/powerpoi...tutorials.html

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •