I´m using Apose.words to extract diagrams from word 2003 documents.
It´s no problem to iterate the embedded MSGraph.Chart.8 objects but I can´t read the data from them.
Anyone who knows how to do it?
Thank´s in advance!
Johan
Code for extracting the objects:
Aspose.Words.Document doc = new Aspose.Words.Document(txtPath.Text);
Aspose.Words.NodeCollection shapes = doc.GetChildNodes(NodeType.Shape, true, false);
int i = 0;
foreach (Shape shape in shapes)
{
shape.OleFormat.Save(@"C:\dev\Ar20\Word\ole_" + i + ".data");
i++;
}