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 msdDrawingModeNormalActiveModelReference.addElement oComplexShape ActiveModelReference.addElement oComplexString
Where i could find the list of all VBA types and functions (such as marked red color) for AECOsim?
which version of prosteel do you have? I don't think ABD and PS share the same VBA libraries. Also, there's a PS dedicated forum, I reckon you will have better response there.
I have ProStructure CE Update 4
PS CE isn't using the same VBA libraries (if any) for structural elements as ABD.
Answer Verified By: Marc Thomas