Show / Hide Table of Contents

    Class RolledShape

    A base class for shapes which are either rolled, or share common rolled properties such as depth, nominal depth, and weight per unit foot.

    Inheritance
    object
    Shape
    RolledShape
    ColdFormedShape
    PipeShape
    RolledWebFlangeShape
    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 RolledShape : Shape

    Properties

    Depth

    Depth of the shape.

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

    NominalDepth

    The rounded depth value used in the typical section size string

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

    WeightPerUnitFoot

    For extruded profile shapes, this is the weight for each foot of the shape. This will be 0.0 for some shapes where it does not apply.

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

    Methods

    Dispose(bool)

    A base class for shapes which are either rolled, or share common rolled properties such as depth, nominal depth, and weight per unit foot.

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