파와포에서 준도코키요시
Sub ZunDokoKiyosi()
의 행을 선택하고 툴바의 실행 버튼을 누릅니다. Sub ZunDokoKiyosi()
Do While ActivePresentation.Slides.Count > 0
ActivePresentation.Slides.Item(1).Delete
Loop
`パターン判定はC言語版のNLZ(number of leading ZUN)方式を拝借
Dim nlz As Integer
Dim c As Integer
nlz = 0
c = 0
Do
nlz = IIf(c = 1, nlz + 1, 0)
c = Int(Rnd * 2)
AddSlide IIf(c = 1, "ズン", "ドコ")
Loop While nlz < 4 Or c = 1
AddSlide "キ・ヨ・シ!"
End Sub
Function AddSlide(text As String)
Dim p As Presentation
Dim slide As slide
Dim textBox As Shape
Set p = ActivePresentation
Set slide = p.Slides.Add(p.Slides.Count + 1, Layout:=ppLayoutBlank)
Set textBox = slide.Shapes.AddTextbox(msoTextOrientationHorizontal, 0, 0, 0, 0)
With textBox
.TextFrame.TextRange = text
.TextFrame.TextRange.ParagraphFormat.Alignment = ppAlignCenter
.TextFrame.VerticalAnchor = msoAnchorMiddle
.TextFrame.AutoSize = ppAutoSizeNone
.Width = p.PageSetup.SlideWidth
.Height = p.PageSetup.SlideHeight
.TextEffect.FontSize = 200
End With
ActiveWindow.View.GotoSlide slide.SlideIndex
End Function
Reference
이 문제에 관하여(파와포에서 준도코키요시), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/rryu/items/2b80784bd0b6336d9855텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)