تعيين لون الخلفية للشريحة الرئيسية

VSTO


 PowerPoint.Presentation presentation =

                Globals.ThisAddIn.Application.Presentations.Open("تعيين لون الخلفية للشريحة الرئيسية.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("تعيين لون الخلفية للشريحة الرئيسية.pptx", SaveFormat.Pptx);

تحميل رمز العينة