Show / Hide Table of Contents

    Class ColdFormedShape

    An abstract class for cold formed shapes.

    Inheritance
    object
    Shape
    RolledShape
    ColdFormedShape
    ColdFormedChannelShape
    ColdFormedZShape
    Inherited Members
    RolledShape.Depth
    RolledShape.NominalDepth
    RolledShape.WeightPerUnitFoot
    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 ColdFormedShape : RolledShape

    Properties

    BottomFlangeWidth

    The distance in inches from the backside of the web -- update 'backside'??? to the farthest edge of the bottom flange.

    Declaration
    public double BottomFlangeWidth { get; set; }
    Property Value
    Type Description
    double

    BottomLipLength

    The length in inches of the bottom flange lip, where 0.0 represents no lip.

    Declaration
    public double BottomLipLength { get; set; }
    Property Value
    Type Description
    double

    BottomLipReturnAngle

    An angle in the range (0.0, pi) between the bottom flange lip and its return material. Perpendicular is specified as pi/2.0 radians. An angle between (0.0, pi/2.0) forms an obtuse relationship and (pi/2.0, pi) is acute.

    Declaration
    public double BottomLipReturnAngle { get; set; }
    Property Value
    Type Description
    double

    BottomLipReturnLength

    The length of the bottom lip return length, where 0.0 represents no return.

    Declaration
    public double BottomLipReturnLength { get; set; }
    Property Value
    Type Description
    double

    Radius

    Inside radius in inches for the bends of the material.

    Declaration
    public double Radius { get; set; }
    Property Value
    Type Description
    double

    Thickness

    Material thickness in inches.

    Declaration
    public double Thickness { get; set; }
    Property Value
    Type Description
    double

    TopFlangeWidth

    The distance in inches from the backside of the web to the farthest edge of the top flange.

    Declaration
    public double TopFlangeWidth { get; set; }
    Property Value
    Type Description
    double

    TopLipLength

    The length in inches of the top flange lip, where 0.0 represents no lip.

    Declaration
    public double TopLipLength { get; set; }
    Property Value
    Type Description
    double

    TopLipReturnAngle

    An angle in the range (0.0, pi) between the top flange lip and its return material. Perpendicular is specified as pi/2.0 radians. An angle between (0.0, pi/2.0) forms an obtuse relationship and (pi/2.0, pi) is actue.

    Declaration
    public double TopLipReturnAngle { get; set; }
    Property Value
    Type Description
    double

    TopLipReturnLength

    The length in inches of the top lip return length, where 0.0 represents no return.

    Declaration
    public double TopLipReturnLength { get; set; }
    Property Value
    Type Description
    double

    WebGage1

    The distance in inches from the bottom most edge of the web to the first gage line of the web.

    Declaration
    public double WebGage1 { get; set; }
    Property Value
    Type Description
    double

    WebGage2

    The distance in inches from the first gage line of the web to second gage line of the web.

    Declaration
    public double WebGage2 { get; set; }
    Property Value
    Type Description
    double

    WebGage3

    The distance in inches from the second gage line of the web to third gage line of the web.

    Declaration
    public double WebGage3 { get; set; }
    Property Value
    Type Description
    double

    Methods

    Dispose(bool)

    An abstract class for cold formed shapes.

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

    GetBottomFlangeBends()

    A list of bottom flange bends specified on the cold formed shape

    Declaration
    public ColdFormedBendList GetBottomFlangeBends()
    Returns
    Type Description
    ColdFormedBendList

    GetTopFlangeBends()

    A list of top flange bends specified on the cold formed shape

    Declaration
    public ColdFormedBendList GetTopFlangeBends()
    Returns
    Type Description
    ColdFormedBendList

    GetWebBends()

    A list of web bends specified on the cold formed shape

    Declaration
    public ColdFormedBendList GetWebBends()
    Returns
    Type Description
    ColdFormedBendList
    Back to top