Show / Hide Table of Contents

    Class LockableCutOperation

    Lockable value for CutOperation

    Inheritance
    object
    Lockable
    LockableCutOperation
    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 LockableCutOperation : Lockable

    Constructors

    LockableCutOperation()

    Lockable value for CutOperation

    Declaration
    public LockableCutOperation()

    LockableCutOperation(CutOperation)

    Create a locked ViaMemberEdit LockableCutOperation from a CutOperation

    Declaration
    public LockableCutOperation(CutOperation value)
    Parameters
    Type Name Description
    CutOperation value

    Properties

    Value

    The underlying value

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

    Methods

    Dispose(bool)

    Lockable value for CutOperation

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

    Operators

    implicit operator LockableCutOperation(CutOperation)

    Implicit conversion using the CutOperation constructor

    Declaration
    public static implicit operator LockableCutOperation(CutOperation value)
    Parameters
    Type Name Description
    CutOperation value
    Returns
    Type Description
    LockableCutOperation

    implicit operator CutOperation(LockableCutOperation)

    Implicit conversion to value type

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