Hi,
When i’m using the below code i’m not getting the proper order of the shape.
foreach (Aspose.Words.Drawing.Shape img in doc.GetChildNodes(NodeType.Shape, true))
{
string myAltText=img.AlternativeText;
}
i’m got getting execpted output.
EG:
In my word document i have
5 Shapes one by one with AltText as:
Shape One
Shape Two
Shape Three
Shape Four
Shape Five
Loops bring in diffrent order
Shape Five
Shape Four
Shape Two
Shape Three
Shape One
How to get the items in proper order as it is in document.
please help on this.
Thanks
Maran.K
TestingFile.pdf (81.4 KB)