Perspective shadows in PowerPoint 2007

G

Gil

I am writing some VBA code that copies a shadow from one shape to another.
Here's a snippet of the code:

object.Shadow.Style = base.Shadow.Style
object.Shadow.ForeColor = base.Shadow.ForeColor
object.Shadow.Transparency = base.Shadow.Transparency
object.Shadow.Size = base.Shadow.Size
object.Shadow.Blur = base.Shadow.Blur
object.Shadow.OffsetX = base.Shadow.OffsetX
object.Shadow.OffsetY = base.Shadow.OffsetY

This seems to work fine for all shadows, except any of the 5 perspective
shadow presets (for example, perspective diagonal upper left).

Is there any way to check for these (Shadow.Style and Shadow.Type do not do
the trick) and apply them programmatically to another shape?

Thanks,
Gil
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top