Microsoft Office Forums

Go Back   Microsoft Office Forums > >

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #2  
Old 11-04-2014, 06:27 PM
macropod's Avatar
macropod macropod is offline Resize multiple PowerPoint objects in a table at the same time Windows 7 64bit Resize multiple PowerPoint objects in a table at the same time Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,467
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

You could resize the slides using a macro like:
Code:
Sub Demo()
Dim sngWdth As Single, sngScale As Single, iShp As InlineShape
With ActiveDocument.Tables(1)
  sngWdth = .Columns(1).Width
  For Each iShp In .Range.InlineShapes
    With iShp
      .LockAspectRatio = True
      sngScale = sngWdth / .Width
      .Width = sngWdth
      .Height = .Height * sngScale
    End With
  Next
  .LeftPadding = 0
  .RightPadding = 0
End With
End Sub
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote
 



Similar Threads
Thread Thread Starter Forum Replies Last Post
Resize multiple PowerPoint objects in a table at the same time Resize multiple pictures in a Word 2010 table JBA479 Word VBA 1 01-24-2014 08:51 PM
Resize multiple PowerPoint objects in a table at the same time Select Multiple Objects in Powerpoint Banker PowerPoint 1 08-15-2012 11:49 PM
Resize multiple PowerPoint objects in a table at the same time Word VBA: Resize Table Width??? tinfanide Word VBA 5 04-21-2012 03:00 PM
Resize multiple PowerPoint objects in a table at the same time Resize video across multiple slides joelas PowerPoint 3 09-28-2010 07:59 PM
Resize-to-fit Table Columns (PowerPoint) icu222much PowerPoint 0 06-06-2010 11:21 AM

Other Forums: Access Forums

All times are GMT -7. The time now is 04:53 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft