PowerPoint
説明
PowerPointを利用するクラスです。
PowerPointプレゼンテーション、スライド、および形状の作成、起動、および編集で使用するクラスリファレンスです。
基本的なPowerPointプレゼンテーションの作成方法に関するコード例です。
PowerPoint.Presentation presentation = PowerPoint.Presentation.open(modeldir() + "\\Presentation.pptx", 1);
PowerPoint.Slide Slide = Presentation.addSlide(PowerPoint.Layout.title);
PowerPoint.Shape Title = Slide.shapes[1];
PowerPoint.Shape subTitle = Slide.shapes[2];
Title.text = "The Presentation's Title in Blue";
Title.color = Color.blue;
subTitle.text= "The Presentation's Subtitle in Green";
subTitle.color = Color.green;
Presentation.save(documentsdir() + "\\Presentation.pptx");
Presentation.close();