Show / Hide Table of Contents

    Class JobZone

    A zone in a job is a named set of sequences

    Inheritance
    System.Object
    JobZone
    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 class JobZone

    Properties

    Index

    The zone index value, may be needed in some cases

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

    Name

    The name of this zone

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

    Sequences

    The list of sequences in this zone

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

    Methods

    Dispose(Boolean)

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

    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(JobZone, JobZone)

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

    Inequality(JobZone, JobZone)

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