Show / Hide Table of Contents

    Class MiscellaneousRolledShapeEnd

    End properties for a miscellaneous rolled shape/section, should be largely the same as to Model.ShapeMaterialEnd

    Inheritance
    object
    MiscellaneousRolledShapeEnd
    Inherited Members
    object.GetType()
    object.MemberwiseClone()
    object.ToString()
    object.Equals(object)
    object.Equals(object, object)
    object.ReferenceEquals(object, object)
    object.GetHashCode()
    Namespace: DesignData.SDS2.Model
    Assembly: DesignData.SDS2.Model.dll
    Syntax
    public class MiscellaneousRolledShapeEnd

    Properties

    BottomFlangeCutOperation

    The bottom flange cut operations. If no operation is set, this will be null.

    Declaration
    public FlangeCutOperation BottomFlangeCutOperation { get; }
    Property Value
    Type Description
    FlangeCutOperation

    FlangeCutAngle

    Angle to cut across the end of the bar relative to the "Flange".

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

    MaterialSetback

    The setback from the end where the plate material starts.

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

    TopFlangeCutOperation

    The top flange cut operations. If no operation is set, this will be null.

    Declaration
    public FlangeCutOperation TopFlangeCutOperation { get; }
    Property Value
    Type Description
    FlangeCutOperation

    WebCutAngle

    Angle to cut across the end of the bar relative to the "Web".

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

    These are in radians, but because SDS2 stores this particular angle in degrees you may see small changes after setting the value when you retrieve it, due to calculations

    Methods

    Dispose(bool)

    End properties for a miscellaneous rolled shape/section, should be largely the same as to Model.ShapeMaterialEnd

    Declaration
    protected virtual void Dispose(bool disposing)
    Parameters
    Type Name Description
    bool disposing

    ~MiscellaneousRolledShapeEnd()

    End properties for a miscellaneous rolled shape/section, should be largely the same as to Model.ShapeMaterialEnd

    Declaration
    protected ~MiscellaneousRolledShapeEnd()

    SetBottomFlangeCutOperation(FlangeCutOperation)

    When setting the cut operation, we will copy the options you give into our own data. Your operation passed in will not be a reference to the underlying operation. To get a reference you'll need to look to the BottomFlangeCutOperation property after assigning this.

    Declaration
    public void SetBottomFlangeCutOperation(FlangeCutOperation cutOperation)
    Parameters
    Type Name Description
    FlangeCutOperation cutOperation

    SetTopFlangeCutOperation(FlangeCutOperation)

    When setting the cut operation, we will copy the options you give into our own data. Your operation passed in will not be a reference to the underlying operation. To get a reference you'll need to look to the TopFlangeCutOperation property after assigning this.

    Declaration
    public void SetTopFlangeCutOperation(FlangeCutOperation cutOperation)
    Parameters
    Type Name Description
    FlangeCutOperation cutOperation
    Back to top