AECOsim element types/names in VBA

Hello

I am trying to make a vba-code to create a simple structural elements ( beam , column etc) in AECOsim.

But i cant find in vba help files the list of element names and functions to use in that case.

I found examples for lines and shapes:

Dim oStringElements(1) As ChainableElement
Dim oLine As lineElement

Set oLine = CreateLineElement1(Nothing, startPoints)
Set oStringElements(0) = oLine

Dim oComplexShape As ComplexShapeElement
Dim oComplexString As ComplexStringElement,

Set oComplexShape = CreateComplexShapeElement1(oStringElements, msdFillModeFilled)

Set oComplexString = CreateComplexStringElement1(oStringElements)

oComplexShape.Redraw
oComplexString.Redraw msdDrawingModeNormal
ActiveModelReference.addElement oComplexShape
ActiveModelReference.addElement oComplexString

Where i could find the list of all VBA types and functions (such as marked red color) for AECOsim?

Parents Reply Children
No Data