OpenSTAAD V8i
Returns the connecting joints of the specified member.
Where:
A long variable providing the member number.
Long variable in which the starting node number of the member is returned.
Long variable in which the ending node number of the member is returned.
Dim objOpenSTAAD As Object
Dim MemberNo As Long
Dim NodeA As Long
Dim NodeB As Long
'Get the application object
Set objOpenSTAAD = GetObject( , "StaadPro.OpenSTAAD")
'Get a Member
MemberNo = 5
objOpenSTAAD.Geometry.GetMemberIncidence MemberNo, NodeA, NodeB