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?
PS CE isn't using the same VBA libraries (if any) for structural elements as ABD.
Answer Verified By: Marc Thomas
I have ProStructure CE Update 4
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.
and how to find the this library in ProSteel? "Bentley MicroStation Structural DGN 1.0 Library"or how can get the start (end) point coordindation in MVBA?
Thaks a lot!
I found the library "Bentley MicroStation Structural DGN 1.0 Library", attached it as ref. Now compile is ok!