OpenSTAAD V8i

Property.GetPlateThickness

Returns plate thickness at corners for the specified plate.

VB Syntax

Property.GetPlateThickness PlateNo, PlateThicknessArray

Where:

PlateNo

Long variable holds the plate reference number.

PlateThicknessArray

Double array returns plate thickness at the corners of the plate element.

VB Example

'Get the application object --
'Get Property
Dim oSTD as Object
Dim plateNo as Long
Dim plateThkArray(0 to 3) as Double
plateNo = 2
oSTD.Property.GetPlateThickness(plateNo, plateThkArray)