SlideSelectionChanged event in PP 2007

G

Guest

PowerPoint 2007 throws a SlideSelectionChanged event when a title shape is
selected on a slide. This behavior does not appear to be in harmony with
documention which indicates the event should only occur when actual slides
are selected. Is there anyway to distinquish between true slide selection and
title shape selection in an event handler?
 
S

Steve Rindsberg

Gfrank1157 said:
PowerPoint 2007 throws a SlideSelectionChanged event when a title shape is
selected on a slide. This behavior does not appear to be in harmony with
documention which indicates the event should only occur when actual slides
are selected. Is there anyway to distinquish between true slide selection and
title shape selection in an event handler?

Checking the selection type might help:

If ActiveWindow.Selection.Type = ppSelectionSlides Then
MsgBox "Slide selected"
Else
MsgBox "Shape or text selected"
End If
 

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