ilogic: BIM Export to *.ADSK

ilogic: BIM Export to *.ADSK

Anonymous
Not applicable
971 Views
2 Replies
Message 1 of 3

ilogic: BIM Export to *.ADSK

Anonymous
Not applicable

Hello World :),

 

i want to export with ilogic via BIM Export my Files to *.ADSK

 

2019_11_14_12_17_50_Autodesk_Inventor_Professional_2018_3113248.iam_.png

 

The objects for BIM Export are listet in the Inventor API.

But i have problems to create a code out of this.

I didn't found something about this in this Forum or the internet.

 

Maybe someone has a snippet (like the stp export etc.) for this, which i can adopt for my code.

 

Thank you,

Richard

 

0 Likes
Accepted solutions (1)
972 Views
2 Replies
Replies (2)
Message 2 of 3

lmc.engineering
Advocate
Advocate
Accepted solution

Hi @Anonymous 

 

The following will export to adsk;

 

Dim oDoc As Document = ThisApplication.ActiveDocument
CompDef = oDoc.ComponentDefinition
FullFileName = "C:\Temp\Test.adsk"
CompDef.BIMComponent.ExportBuildingComponent(FullFileName)

 

Message 3 of 3

Anonymous
Not applicable

This is exact what i'm looking for.

 

Many thanks

0 Likes