Show / Hide Table of Contents

    Class ClipWeb

    Clip the web and flange at the corner

    Inheritance
    object
    FlangeCutOperation
    ClipWeb
    Inherited Members
    object.GetType()
    object.ToString()
    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 ClipWeb : FlangeCutOperation

    Constructors

    ClipWeb()

    Clip the web and flange at the corner

    Declaration
    public ClipWeb()

    Properties

    Depth

    The depth of the clip, this is the amount of web removed at the end of the material (the deepest part of the clip)

    Declaration
    public LockableDouble Depth { get; set; }
    Property Value
    Type Description
    LockableDouble
    Remarks

    If this cut operation is on a material, then lockables are always in a locked state. For members, the locked state matters. When assigning one of these values using a primitive double, it will lock and assign that value. When working directly with the LockableDouble, you will need to lock the value in addition to assigning it to override the system value.

    Length

    The length of the clip, along the cut web

    Declaration
    public LockableDouble Length { get; set; }
    Property Value
    Type Description
    LockableDouble
    Remarks

    If this cut operation is on a material, then lockables are always in a locked state. For members, the locked state matters. When assigning one of these values using a primitive double, it will lock and assign that value. When working directly with the LockableDouble, you will need to lock the value in addition to assigning it to override the system value.

    Methods

    Dispose(bool)

    Clip the web and flange at the corner

    Declaration
    protected override void Dispose(bool disposing)
    Parameters
    Type Name Description
    bool disposing
    Overrides
    FlangeCutOperation.Dispose(bool)
    Back to top