I am trying to retrieve the AltText for a given SlideEX by using the following code:
foreach (SlideEx slide in pres.Slides)
{
foreach (ShapeEx shape in slide.Shapes)
{
String altText = shape.AlternativeText;
if (!String.IsNullOrEmpty(altText))
{
doSomething…
}
}
}
The code works ONLY if the shape has text within the AltText Description. If text appears in the AltText Title, then it is never found.
Is there a way to access the AltText Title?
Thanks.