OpenSTAAD V8i

Property.CreatePrismaticGeneralProperty

Creates prismatic general section property

VB Syntax

Property.CreatePrismaticGeneralProperty PropertyArray 

Where:

PropertyArray

A Double array variable providing the property values as follows:

Array Index Property Type

0

AX

1

AY

2

AZ

3

IX

4

IY

5

IZ

6

YD

7

ZD

8

YB

9

ZB

Return Value

A long value containing the reference number of the property created to be used to access the same.

For additional information, please refer to Section 5.20.2 of the Technical Reference manual.

VB Example

Dim PropArray(0 To 9) As Double
'Get the application object --
'fill PropArray here
PropArray(0) =
PropArray(1) =
PropArray(2) =
PropArray(3) =
PropArray(4) =
PropArray(5) =
PropArray(6) =
PropArray(7) =
PropArray(8) =
PropArray(9) =
'Create general section property
PropertyNo = objOpenSTAAD.Property.CreatePrismaticGeneralProperty PropArray