What's new

API DOCUMENTATION

eendrigo

Member
API DOCUMENTATION

I have the necessity to cross completely, in all of its elements, an assembly and its partses.

I have looked at the available documentation and, apart that all addressed to the VB, I have not found some example that can help me.

Is it possible to obtain, for VC++ 6.0, a hierarchy of the objects, methods and attributes, that form a part and an assembly, even with some exhaustive example?

Thanks in advance.

Ezio Endrigo

P.S.

Sorry for my bad english :roll:
 

alexfranke

Senior Member


The object model is described in the API documentation (see the thread http://www.alibre.com/forum/viewtopic.php?t=1033 ) -- you can click around throught the object's properties and methods and discover the hierarchy. Start be searching "Getting Started" and reading through the core objects and explore from there.

Can you explain a bit more what you mean by "cross completely"?

Translating from the VB to the C++ should be pretty straightforward. Just use braces where VB has begin/end, add semicolons to the ends of the lines, and use C-style declarations...

Cheers,
Alex
 
Top