Hi.
I want to use the SetSchemeColor to set the link font colors per slide, but without changing any other color on the slide.
How can I use this method to find color index used for links, and set it accordingly?
Hi.
I want to use the SetSchemeColor to set the link font colors per slide, but without changing any other color on the slide.
How can I use this method to find color index used for links, and set it accordingly?
Dear eligazit,
<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />
Thanks for considering Aspose.Slides
Please try this code and also see the attached output and source presentation.
Presentation pres=new Presentation(@"d:\downloads\source.ppt");
Slide sld=pres.GetSlideByPosition(1);
sld.FollowMasterScheme = false;
Color rg = Color.FromArgb(255, 0, 0);
sld.SetSchemeColor(6, rg);
pres.Write(@"c:\out.ppt");