Show / Hide Table of Contents

    Class JobSequence

    Represents one fabrication sequence in the job.

    Inheritance
    System.Object
    JobSequence
    Inherited Members
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ToString()
    System.Object.ReferenceEquals(System.Object, System.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
    System.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)

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

    Finalize()

    Declaration
    protected void Finalize()

    GetHashCode()

    Declaration
    public override int GetHashCode()
    Returns
    Type Description
    System.Int32
    Overrides
    System.Object.GetHashCode()

    Operators

    Equality(JobSequence, JobSequence)

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

    Inequality(JobSequence, JobSequence)

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