Equipment Support Structure

StrFoundationExt STRMember
STRPlate  

StrFoundationExt   

Description

Describes a structural member.

Attributes

Inherits all ProductPackage attributes.

Methods

Inherits all ProductPackage methods.

Example

P:StrFoundationExt
/* Returns all foundations */ 

STRMember  

Description

Describes a structural member.

Attributes

In addition to inheriting all ProductPackage attributes, specific attributes you can manipulate on this object are:

CatalogName
FamilyName
Length
Material
ProfileType: section shape (beam, round, square, etc.)
SectionName
Weight

Methods

In addition to inheriting all ProductPackage methods, specific methods are:

SetColor(Red:Integer,Green:Integer,Blue:Integer)
Assigns the color value specified. Enter RGB values to set color.

Examples

STRMember:\SectionName=="W14X30"
/* Returns all members of section W14X30 */

P:STRMember
if (P:\SectionName=="W14X30")
P.SetColor(255,0,0)
/* Changes the color of all members of section W14X13 to red */ 

STRPlate  

Description

Describes a structural plate.

Attributes

In addition to inheriting all ProductPackage attributes, specific attributes you can manipulate on this object are:

Material
Thickness
Weight

Methods

In addition to inheriting all ProductPackage methods, specific methods are:

SetColor(Red:Integer,Green:Integer,Blue:Integer)
Assigns the color value specified. Enter RGB values to set color.

Examples

STRPlate:\Thickness==10mm
/* Returns all plates having a thickness of 10mm */

P:STRPlate
if (P:\Thickness==10mm)
P.SetColor(255,0,0)
/* Changes the color of all 10mm thick plates to red */