Show / Hide Table of Contents

    Class LockableCutLocation

    Lockable value for CutLocation

    Inheritance
    object
    Lockable
    LockableCutLocation
    Inherited Members
    Lockable.Unlock()
    Lockable.GetIsLocked()
    Lockable.ToString()
    Lockable.LockType
    Lockable.IsLocked
    object.GetType()
    object.Equals(object)
    object.Equals(object, object)
    object.ReferenceEquals(object, object)
    object.GetHashCode()
    Namespace: DesignData.SDS2.Model
    Assembly: DesignData.SDS2.Model.dll
    Syntax
    public sealed class LockableCutLocation : Lockable

    Constructors

    LockableCutLocation()

    Lockable value for CutLocation

    Declaration
    public LockableCutLocation()

    LockableCutLocation(CutLocation)

    Create a locked ViaMemberEdit LockableCutLocation from a CutLocation

    Declaration
    public LockableCutLocation(CutLocation value)
    Parameters
    Type Name Description
    CutLocation value

    Properties

    Value

    The underlying value

    Declaration
    public CutLocation Value { get; set; }
    Property Value
    Type Description
    CutLocation

    Methods

    Dispose(bool)

    Lockable value for CutLocation

    Declaration
    protected override void Dispose(bool disposing)
    Parameters
    Type Name Description
    bool disposing
    Overrides
    Lockable.Dispose(bool)

    Operators

    implicit operator LockableCutLocation(CutLocation)

    Implicit conversion using the CutLocation constructor

    Declaration
    public static implicit operator LockableCutLocation(CutLocation value)
    Parameters
    Type Name Description
    CutLocation value
    Returns
    Type Description
    LockableCutLocation

    implicit operator CutLocation(LockableCutLocation)

    Implicit conversion to value type

    Declaration
    public static implicit operator CutLocation(LockableCutLocation value)
    Parameters
    Type Name Description
    LockableCutLocation value
    Returns
    Type Description
    CutLocation
    Back to top