Hey,
I want to extract all Objects which are on the surface of a QlikView Application. Is there any method which I can use. I am writing a OCX App.
I have use this:
Application qlikViewApp = new Application();
Doc qlikViewDoc = qlikViewApp.OpenDoc(QVFile);
IArrayOfFieldDescription fieldDes = qlikViewDoc.GetFieldDescriptions();
var sheetObjects = qlikViewDoc.ActiveSheet().GetSheetObjects();
I am right, or what I can use, I didn't now how I can use the sheetObjects variable because it it dynamic.