Show / Hide Table of Contents

    Class ShapeMaterialEnd

    Collection of information about a rolled material's end

    Inheritance
    object
    CuttableMaterialEnd
    ShapeMaterialEnd
    Inherited Members
    CuttableMaterialEnd.Setback
    CuttableMaterialEnd.WebCutAngle
    CuttableMaterialEnd.FlangeCutAngle
    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 ShapeMaterialEnd : CuttableMaterialEnd

    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

    EndCutType

    The type or method of cut to make on this end.

    Declaration
    public EndCutType EndCutType { get; set; }
    Property Value
    Type Description
    EndCutType

    MomentConnectionWebSetback

    The distance that you want the web of this material setback

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

    Only applies if top and bottom are one of CopeFieldWeldN1FEMA, CopeShopWeldN1FEMA, SeismicCopeFieldWeld, SeismicCopeShopWeld, CopeFieldWeldN3, CopeShopWeldN3

    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

    Methods

    Dispose(bool)

    Collection of information about a rolled material's end

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

    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