Show / Hide Table of Contents

    Class MemberEnd

    The fully inclusive set of end data on a member

    Inheritance
    object
    MemberEndBrief
    MemberEnd
    BeamEnd
    ColumnEnd
    HorizontalBraceEnd
    VerticalBraceEnd
    Inherited Members
    MemberEndBrief.GetAutoCompPermanent()
    MemberEndBrief.SetAutoCompPermanent(bool)
    MemberEndBrief.GetCompPermanent()
    MemberEndBrief.SetCompPermanent(double)
    MemberEndBrief.Location
    MemberEndBrief.IsAutoShearLoad
    MemberEndBrief.ShearLoad
    MemberEndBrief.StoryShearLoad
    MemberEndBrief.IsAutoMomentLoad
    MemberEndBrief.MomentLoad
    MemberEndBrief.TensionLoad
    MemberEndBrief.CompressionLoad
    MemberEndBrief.IsAutoTieForce
    MemberEndBrief.TieForce
    MemberEndBrief.IsAutoNonMomentBoltTypeToSupported
    MemberEndBrief.NonMomentBoltTypeToSupported
    MemberEndBrief.IsAutoNonMomentBoltTypeToSupporting
    MemberEndBrief.NonMomentBoltTypeToSupporting
    MemberEndBrief.IsAutoNonMomentBoltDiameter
    MemberEndBrief.NonMomentBoltDiameter
    MemberEndBrief.IsAutoPanelMomentLoad
    MemberEndBrief.PanelMomentLoad
    MemberEndBrief.UseMiscPlatesList
    MemberEndBrief.MinimumSetupConnection
    MemberEndBrief.MinimumCopeDepth
    MemberEndBrief.DisableFramingSituationChecks
    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 MemberEnd : MemberEndBrief

    Properties

    BottomFlangeCutOperation

    The cut operation for the bottom flange of the material on this end.

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

    ConnectionComponent

    Grab the connection component object for this end of this member

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

    EndPreparation

    The end preparation settings for this member end, if it has any. If this is null, it's because this type of member does not support the standard end preparation lockables.

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

    TopFlangeCutOperation

    The cut operation for the top flange of the material on this end.

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

    Methods

    Dispose(bool)

    The fully inclusive set of end data on a member

    Declaration
    protected override void Dispose(bool disposing)
    Parameters
    Type Name Description
    bool disposing
    Overrides
    MemberEndBrief.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 value)
    Parameters
    Type Name Description
    FlangeCutOperation value

    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 value)
    Parameters
    Type Name Description
    FlangeCutOperation value
    Back to top