Change to Slide.ChangeMaster

Hello,

Can you make a change to Slide.ChangeMaster to provide greater control over the formatting that is used for Placeholders?

Something like Slide.ChangeMaster( Slide,PlaceholderStyles ) where PlaceholderStyles is an enum like this:

[Flags]

enum PlaceholderStyles {

FontFamily=1,

FontSize=2,

FontColor=4,

FontItalic=8,

FontBold=16,

FontUnderline=32,

Alignment=64

};

Whatever values that are passed to the method are used to reset the placeholder to use the master template. Any ones not specified use their current overriden values. This is similiar to how PPT works now - If I have a text slide with text in multiple sizes, the new template leaves them alone - however it updates the alignment and font family because I didn't override them. Right now, the ChangeMaster method is all-or-nothing - I get all of the template master properties, or none of them other than background.

Thanks

Mark