Class BomRow
Represents a BOM row.
Inheritance
System.Object
BomRow
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: TopSolid.Cad.Design.Automating
Assembly: TopSolid.Cad.Design.Automating.dll
Syntax
[Obsolete("Since v7.12, access to BOM is done using IBoms interface.")]
[DataContract(IsReference = true)]
public class BomRow
Constructors
BomRow()
Initializes a new instance of the BomRow class.
Declaration
public BomRow()
BomRow(List<String>, List<BomRow>, BomRow)
Initializes a new instance of the BomRow class.
Declaration
public BomRow(List<string> inCells, List<BomRow> inRows, BomRow inParentRow)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.List<System.String> | inCells | |
System.Collections.Generic.List<BomRow> | inRows | |
BomRow | inParentRow |
Properties
Cells
Gets the all cells of a row.
Declaration
public List<string> Cells { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> |
ParentRow
Gets the parent row.
Declaration
public BomRow ParentRow { get; }
Property Value
Type | Description |
---|---|
BomRow |
Rows
Gets the child rows.
Declaration
public List<BomRow> Rows { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<BomRow> |