特定の場所に空白のスライドを追加するにはどうすればよいですか?たとえば、2番目の位置。
質問する
12591 次
1 に答える
5
Sub InsertSlide()
Dim oLayout As CustomLayout
Dim lPosition As Long
Dim oSl As Slide
' What layout/master should the new slide use?
' Designs(1) = the first SlideMaster in the presentation
' CustomLayouts(1) = a Title layout
' To get other layout index numbers, look at the layout gallery
' in PPT, count left to right, top to bottom
Set oLayout = ActivePresentation.Designs(1).SlideMaster.CustomLayouts(1)
lPosition = 3
Set oSl = ActivePresentation.Slides.AddSlide(lPosition, oLayout)
With oSl
' do whatever you need to with the slide
End With
End Sub
于 2013-01-24T20:11:31.863 に答える