AltText only in Description?

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.

Hi Scott,


I have observed the comments shared and like to share that Alt Text property work for Alt Text Description. This feature is used to find the shape in slide. There is no support for accessing Alt Text Title.

Many Thanks,