Show / Hide Table of Contents

    Class CruciformShape

    Base class for Cruciform Shape Material. Derived from the Shape class.

    Inheritance
    object
    Shape
    CruciformShape
    PLCruciformShape
    PLWTCruciformShape
    WFPLCruciformShape
    WFWTCruciformShape
    Inherited Members
    Shape.GetHashCode()
    Shape.Equals(object)
    Shape.SectionSize
    Shape.IsAvailable
    Shape.SourceReference
    object.GetType()
    object.MemberwiseClone()
    object.ToString()
    object.Equals(object, object)
    object.ReferenceEquals(object, object)
    Namespace: DesignData.SDS2.Setup
    Assembly: DesignData.SDS2.Setup.dll
    Syntax
    public class CruciformShape : Shape

    Properties

    CruciformSubType

    Identifies the specific subtype of the cruciform material. Uses CruciformSubType.

    Declaration
    public CruciformSubType CruciformSubType { get; }
    Property Value
    Type Description
    CruciformSubType

    Methods

    Dispose(bool)

    Base class for Cruciform Shape Material. Derived from the Shape class.

    Declaration
    protected override void Dispose(bool disposing)
    Parameters
    Type Name Description
    bool disposing
    Overrides
    Shape.Dispose(bool)

    GetStructuralProperties(SteelGrade)

    Get the structural properties, from the production standard, for a specific grade. To get the default standard pass null for the grade

    Declaration
    public ChannelTeeStructuralProperties GetStructuralProperties(SteelGrade forGrade)
    Parameters
    Type Name Description
    SteelGrade forGrade

    Production standards are under grade names for many types, so passing in the grade lets us lookup StructuralProperties for a specific production standard for this grade. There is also always a default, pass null to get this.

    Returns
    Type Description
    ChannelTeeStructuralProperties
    Back to top