SetSchemeColor - how to use

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,

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");