Struct BomNode
Represents the node of a BOM.
Inherited Members
System.ValueType.Equals(System.Object)
System.ValueType.GetHashCode()
System.ValueType.ToString()
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetType()
Namespace: TopSolid.Pdm.Explorer.Automating
Assembly: cs.temp.dll.dll
Syntax
[AvailableSinceVersion(7, 11, 300, 80)]
public struct BomNode
Remarks
This structure is available since v7.11.
Constructors
BomNode(Int32, String, IList<String>, IList<Int32>, IList<Bitmap>)
Initializes a new instance of the BomNode class.
Declaration
public BomNode(int inLevel, string inName, IList<string> inValues, IList<int> inForcedValues, IList<Bitmap> inImages)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | inLevel | Level. |
System.String | inName | Name. |
IList<System.String> | inValues | Values. |
IList<System.Int32> | inForcedValues | Indexes of the forced values. |
IList<Bitmap> | inImages | Images (copied). |
Properties
ForcedValues
Gets the indexes of the forced values.
Declaration
public readonly List<int> ForcedValues { get; }
Property Value
Type | Description |
---|---|
List<System.Int32> |
Images
Gets the images.
Declaration
public readonly List<Bitmap> Images { get; }
Property Value
Type | Description |
---|---|
List<Bitmap> |
Level
Gets the level.
Declaration
public readonly int Level { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Name
Gets the name.
Declaration
public readonly string Name { get; }
Property Value
Type | Description |
---|---|
System.String |
Values
Gets the values.
Declaration
public readonly List<string> Values { get; }
Property Value
Type | Description |
---|---|
List<System.String> |