Show / Hide Table of Contents

    Class FlatPlateLayout

    A flat plate formed by a planar loop of points, a Layout3D

    Inheritance
    System.Object
    Material
    Plate
    FlatPlateLayout
    Inherited Members
    Plate.Grade
    Plate.Thickness
    Plate.IsCheckered
    Plate.AvailableSteelGrades
    Material.Get(MaterialHandle)
    Material.GetSurface()
    Material.Piecemark
    Material.ToGlobalCoordinates
    Material.ToMemberCoordinates
    Material.Handle
    Material.Holes
    Material.Color
    Material.IsUserDescription
    Material.Description
    Material.IsMain
    Material.IsSystem
    Material.SurfaceArea
    Material.Weight
    Material.Finish
    Material.IsInABM
    Material.ABM_Name
    Material.ABM_ID
    Material.ABM_Note
    Material.UseAutoLengthInABM
    Material.UsePointToPointLengthInABM
    Material.ABM_PointToPointLength
    Material.ABM_Length
    Material.CustomPropertyMapHandle
    Material.ReferenceLocation
    Material.Quantity
    Material.Usage
    Material.IsCNCDownloaded
    Material.IsCNCScribeOntoOther
    Material.RevisionLevel
    Material.RevisionDate
    Material.Route1
    Material.Route2
    Material.Route3
    Material.Route4
    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 sealed class FlatPlateLayout : Plate

    Constructors

    FlatPlateLayout()

    Declaration
    public FlatPlateLayout()

    Properties

    OrderLength

    The length of the plate as it would need to be ordered.

    Declaration
    public double OrderLength { get; }
    Property Value
    Type Description
    System.Double

    A floating point value in inches.

    ThicknessReferencePoint

    The center plane of the plate. Changing this shifts the plate without changing the work points of the plate.

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

    Width

    The width of the plate.

    Declaration
    public double Width { get; }
    Property Value
    Type Description
    System.Double

    A floating point value in inches.

    Methods

    Dispose(Boolean)

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

    GetLayout()

    Get the layout used to generate this plate, in material coordinates. Mutations to the returned value do not change the material; SetLayout() must be used to modify the layout on the material.

    Declaration
    public Layout3D GetLayout()
    Returns
    Type Description
    Layout3D

    SetLayout(Layout3D)

    Set the layout used to generate this plate, in material coordinates.

    Declaration
    public void SetLayout(Layout3D newLayout)
    Parameters
    Type Name Description
    Layout3D newLayout
    Back to top