Show / Hide Table of Contents

    Class Washer

    A washer, on a bolt

    Inheritance
    System.Object
    Washer
    Inherited Members
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ToString()
    System.Object.ReferenceEquals(System.Object, System.Object)
    Namespace: DesignData.SDS2.Model
    Assembly: DesignData.SDS2.Model.dll
    Syntax
    public class Washer

    Properties

    Quantity

    Indicates how many of this kind of washer to put in this position.

    Declaration
    public uint Quantity { get; set; }
    Property Value
    Type Description
    System.UInt32
    Exceptions
    Type Condition
    NotAddedException

    Thrown when setting data on the object without having added it to a transaction

    NotLockedException

    Thrown when reading or writing the property of a bolt that was added to a transaction but is unlocked

    Rotation

    The rotation of the washer, in radians.

    Declaration
    public double Rotation { get; set; }
    Property Value
    Type Description
    System.Double
    Exceptions
    Type Condition
    NotAddedException

    Thrown when setting data on the object without having added it to a transaction

    NotLockedException

    Thrown when reading or writing the property of a bolt that was added to a transaction but is unlocked

    Thickness

    The thickness of the washer.

    Declaration
    public double Thickness { get; set; }
    Property Value
    Type Description
    System.Double
    Exceptions
    Type Condition
    NotAddedException

    Thrown when setting data on the object without having added it to a transaction

    NotLockedException

    Thrown when reading or writing the property of a bolt that was added to a transaction but is unlocked

    WasherType

    the type of washer used

    Declaration
    public WasherType WasherType { get; set; }
    Property Value
    Type Description
    WasherType
    Exceptions
    Type Condition
    NotAddedException

    Thrown when setting data on the object without having added it to a transaction

    NotLockedException

    Thrown when reading or writing the property of a bolt that was added to a transaction but is unlocked

    Width

    The width of the washer.

    Declaration
    public double Width { get; set; }
    Property Value
    Type Description
    System.Double
    Exceptions
    Type Condition
    NotAddedException

    Thrown when setting data on the object without having added it to a transaction

    NotLockedException

    Thrown when reading or writing the property of a bolt that was added to a transaction but is unlocked

    Methods

    Dispose(Boolean)

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

    Finalize()

    Declaration
    protected void Finalize()
    Back to top