Show / Hide Table of Contents

    Class HoleHandle

    A handle specifically for holes

    Inheritance
    object
    HoleHandle
    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 HoleHandle

    Constructors

    HoleHandle(MaterialHandle, int)

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

    Declaration
    public HoleHandle(MaterialHandle materialHandle, int holeIndex)
    Parameters
    Type Name Description
    MaterialHandle materialHandle
    int holeIndex

    Properties

    HoleIndex

    The index of this hole on that material.

    Declaration
    public int HoleIndex { 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 specifically for holes

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

    Equals(object)

    A handle specifically for holes

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

    ~HoleHandle()

    A handle specifically for holes

    Declaration
    protected ~HoleHandle()

    GetHashCode()

    A handle specifically for holes

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