Show / Hide Table of Contents

    Class JobZone

    A zone in a job is a named set of sequences

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

    Properties

    Index

    The zone index value, may be needed in some cases

    Declaration
    public int Index { get; }
    Property Value
    Type Description
    int

    Name

    The name of this zone

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

    Sequences

    The list of sequences in this zone

    Declaration
    public JobSequenceList Sequences { get; }
    Property Value
    Type Description
    JobSequenceList

    Methods

    Dispose(bool)

    A zone in a job is a named set of sequences

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

    Equals(object)

    A zone in a job is a named set of sequences

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

    ~JobZone()

    A zone in a job is a named set of sequences

    Declaration
    protected ~JobZone()

    GetHashCode()

    A zone in a job is a named set of sequences

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

    Operators

    operator ==(JobZone, JobZone)

    A zone in a job is a named set of sequences

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

    operator !=(JobZone, JobZone)

    A zone in a job is a named set of sequences

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