Show / Hide Table of Contents

    Class StairTread

    Base class for Stair Tread Schedule objects. There are 4 types of tread: Pan, Grating, Plate, and Continuous. This class is used primarily as a method of transport/storage of the various tread types, as well as containing basic functionalities shared across all the classes. It is recommended to cast StairTread to the relevant type based on GetTreadType before working with it.

    Inheritance
    object
    StairTread
    ContinuousTread
    CustomContinuousTread
    CustomGratingTread
    CustomPanTread
    CustomPlateTread
    GratingTread
    PanTread
    PlateTread
    Inherited Members
    object.GetType()
    object.MemberwiseClone()
    object.ToString()
    object.Equals(object)
    object.Equals(object, object)
    object.ReferenceEquals(object, object)
    object.GetHashCode()
    Namespace: DesignData.SDS2.Setup
    Assembly: DesignData.SDS2.Setup.dll
    Syntax
    public class StairTread

    Properties

    Name

    Returns a string containing the name associated with the specific tread schedule index.

    Declaration
    public virtual string Name { get; }
    Property Value
    Type Description
    string

    TreadType

    Returns type of tread associated with the specific tread schedule index. It is recommended to cast StairTread to the relevant type before working with it.

    Declaration
    public virtual StairTreadType TreadType { get; }
    Property Value
    Type Description
    StairTreadType

    Methods

    Dispose(bool)

    Base class for Stair Tread Schedule objects. There are 4 types of tread: Pan, Grating, Plate, and Continuous. This class is used primarily as a method of transport/storage of the various tread types, as well as containing basic functionalities shared across all the classes. It is recommended to cast StairTread to the relevant type based on GetTreadType before working with it.

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

    ~StairTread()

    Base class for Stair Tread Schedule objects. There are 4 types of tread: Pan, Grating, Plate, and Continuous. This class is used primarily as a method of transport/storage of the various tread types, as well as containing basic functionalities shared across all the classes. It is recommended to cast StairTread to the relevant type based on GetTreadType before working with it.

    Declaration
    protected ~StairTread()
    Back to top