Show / Hide Table of Contents

    Class LockableCutLocation

    Lockable value for CutLocation

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

    Constructors

    LockableCutLocation()

    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(Boolean)

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

    Operators

    Implicit(CutLocation to LockableCutLocation)

    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(LockableCutLocation to CutLocation)

    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