Show / Hide Table of Contents

    Class HoleHandle

    A handle specifically for holes

    Inheritance
    System.Object
    HoleHandle
    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.Database
    Assembly: DesignData.SDS2.Database.dll
    Syntax
    public class HoleHandle

    Constructors

    HoleHandle(MaterialHandle, Int32)

    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
    System.Int32 holeIndex

    Properties

    HoleIndex

    The index of this hole on that material.

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

    Material

    The material this hole is drilling

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

    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()
    Back to top