Show / Hide Table of Contents

    Class HoleGroupHandle

    A handle to a hole group

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

    Constructors

    HoleGroupHandle(MaterialHandle, int)

    Create a hole group handle from a material handle and the index of the group.

    Declaration
    public HoleGroupHandle(MaterialHandle materialHandle, int index)
    Parameters
    Type Name Description
    MaterialHandle materialHandle
    int index

    Properties

    HoleGroupIndex

    The index of this group on that material.

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

    Material

    The material this hole is drilling

    Declaration
    public MaterialHandle Material { get; }
    Property Value
    Type Description
    MaterialHandle

    Methods

    Dispose(bool)

    A handle to a hole group

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

    Equals(object)

    A handle to a hole group

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

    ~HoleGroupHandle()

    A handle to a hole group

    Declaration
    protected ~HoleGroupHandle()

    GetHashCode()

    A handle to a hole group

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