OpenSTAAD V8i

Geometry.GetMemberIncidence

Returns the connecting joints of the specified member.

VB Syntax

Geometry.GetMemberIncidence MemberNo, NodeA, NodeB

Where:

MemberNo

A long variable providing the member number.

NodeA

Long variable in which the starting node number of the member is returned.

NodeB

Long variable in which the ending node number of the member is returned.

VB Example

 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