Show / Hide Table of Contents

    Class JobSequence

    Represents one fabrication sequence in the job.

    Inheritance
    object
    JobSequence
    Inherited Members
    object.GetType()
    object.ToString()
    object.Equals(object, object)
    object.ReferenceEquals(object, object)
    Namespace: DesignData.SDS2.Setup
    Assembly: DesignData.SDS2.Setup.dll
    Syntax
    public sealed class JobSequence

    Constructors

    JobSequence()

    Create an undefined fabrication sequence. This will need to be added to the job to be useful.

    Declaration
    public JobSequence()

    Properties

    Name

    The user visible name of this sequence

    Declaration
    public string Name { get; }
    Property Value
    Type Description
    string
    Exceptions
    Type Condition
    InvalidHandleException

    If the sequence referenced is no longer valid. This generally means this object has become corrupt.

    Zone

    The zone this sequence is in

    Declaration
    public JobZone Zone { get; }
    Property Value
    Type Description
    JobZone

    Methods

    Equals(object)

    Represents one fabrication sequence in the job.

    Declaration
    public override bool Equals(object other)
    Parameters
    Type Name Description
    object other
    Returns
    Type Description
    bool
    Overrides
    object.Equals(object)

    ~JobSequence()

    Represents one fabrication sequence in the job.

    Declaration
    protected ~JobSequence()

    GetHashCode()

    Represents one fabrication sequence in the job.

    Declaration
    public override int GetHashCode()
    Returns
    Type Description
    int
    Overrides
    object.GetHashCode()

    Operators

    operator ==(JobSequence, JobSequence)

    Represents one fabrication sequence in the job.

    Declaration
    public static bool operator ==(JobSequence a, JobSequence b)
    Parameters
    Type Name Description
    JobSequence a
    JobSequence b
    Returns
    Type Description
    bool

    operator !=(JobSequence, JobSequence)

    Represents one fabrication sequence in the job.

    Declaration
    public static bool operator !=(JobSequence a, JobSequence b)
    Parameters
    Type Name Description
    JobSequence a
    JobSequence b
    Returns
    Type Description
    bool
    Back to top