Hi everyone,
I'm writing an add-in for Powerpoint 2003. I'd like to know how I can identify textboxes by type if such a thing exists. For example, when reading a TextFrame, how do I know if I'm reading the title textbox, the subtitle, or a the big textbox with bulleted points depending on the slide model I've found the Shapes.Title property, but that only gives me the title if it exists, not the value of the subtitle or the default big textbox with bulleted points that you find on a default slide. Is there some property somewhere that I'm missing
Thanks a lot,
Pete

VBA Powerpoint - identifying textboxes by type
enric vives
todd_bulky
Joseph22
How about using PlaceHolderFormat
Try these in the immediate window.
activepresentation.SlideMaster.Shapes(4).PlaceholderFormat.Type
activepresentation.Slides(1).Shapes(1).PlaceholderFormat.Type