OpenSTAAD V8i

View.SelectMembersParallelTo

Select members parallel to the specified axis.

VB Syntax

View.SelectMembersParallelTo AxisID

Where:

AxisID

A string variable that holds the Axis ID. It may have three values:

X = X-Axis

Y = Y-Axis

Z = Z-Axis

VB Example

Dim objOpenSTAAD As Object
Dim strAxis as String
'Get the application object
Set objOpenSTAAD = GetObject( , "StaadPro.OpenSTAAD")
strAxis = “X”
'Select Members 
objOpenSTAAD.View.SelectMembersParallelTo (strAxis)