Extract Model Information, C#, Autodesk Design review 2013

Extract Model Information, C#, Autodesk Design review 2013

Anonymous
Not applicable
1,216 Views
1 Reply
Message 1 of 2

Extract Model Information, C#, Autodesk Design review 2013

Anonymous
Not applicable

Hi

 

After reading many posts on these forums as well as in the API documentation, I am still having some trouble extracting the information I require from the model. The information I need is circled on the model below.

 

The image has the information that we are trying to get a hold of circled. Currently we are using this code to find information from the model regarding the selected object, however the required information is not included.

 

ECompositeViewer.IAdECompositeViewer CompositeViewer1 = (ECompositeViewer.IAdECompositeViewer)axCExpressViewerControl1.ECompositeViewer;

 

foreach(ECompositeViewer.IAdSection Sec in CompositeViewer1.Sections )

{                                               

ECompositeViewer.IAdContent ObjectContent = (ECompositeViewer.IAdContent)Sec.Content;                       

                        AdCommon.IAdCollection SelectedObjects = (AdCommon.IAdCollection)ObjectContent.get_Objects(1);

                       

foreach (ECompositeViewer.IAdObject MyObject in SelectedObjects)

       {

AdCommon.IAdCollection MyObjectProperties = (AdCommon.IAdCollection)MyObject.Properties;                                                                                                 

foreach (AdCommon.IAdProperty MyObjectProperty in MyObjectProperties)

              {   

//Current Extraction code here.

//Successfully gets current object’s details, but does not get its name on the model.

              }

}

}

 

If someone can point us in the correct direction as to how to extract the model information about the selected object it would be greatly appreciated. (also kindly note that the above excerpt has been stripped if application specific information).

 

ModelInformation.png

0 Likes
1,217 Views
1 Reply
Reply (1)
Message 2 of 2

amitnkukanur
Collaborator
Collaborator

Can you elaborate more on this because i also have to do coding on DWF don't know where to start from.

Senior Software Engineer
0 Likes