マスタースライドの背景色の設定
Contents
[
Hide
]
VSTO
PowerPoint.Presentation presentation =
Globals.ThisAddIn.Application.Presentations.Open("Setting Background Color of Master Slide.ppt", Office.MsoTriState.msoFalse, Office.MsoTriState.msoFalse, Office.MsoTriState.msoTrue);
presentation.SlideMaster.Background.Fill.ForeColor.RGB = -654262273;
Aspose.Slides
//プレゼンテーションファイルを表すPresentationクラスのインスタンスを生成する
using (PresentationEx pres = new PresentationEx())
{
//マスターISlideの背景色をフォレストグリーンに設定する
pres.Masters[0].Background.Type = BackgroundTypeEx.OwnBackground;
pres.Masters[0].Background.FillFormat.FillType = FillTypeEx.Solid;
pres.Masters[0].Background.FillFormat.SolidFillColor.Color = Color.ForestGreen;
//プレゼンテーションをディスクに保存する
pres.Save("Setting Background Color of Master Slide.pptx", SaveFormat.Pptx);