Notifications
Clear all
BugOverflow
1
Posty
1
Users
0
Reactions
972
Widok
0
09/10/2020 9:34 am
Topic starter
example vba code
1 Answer
0
09/10/2020 9:37 am
Topic starter
Sub Formatuj() Dim tekst For i = 7 To ActivePresentation.Slides.Count Set tekst = ActivePresentation.Slides(i).Shapes(2) 'every second text frame If tekst.HasTextFrame Then With tekst.TextFrame.TextRange.ParagraphFormat .LineRuleWithin = msoTrue .SpaceWithin = 1.3 End With With tekst .Left = 80 .Top = 130 .Width = 550 .Height = 380 End With End If Next End Sub