public IfcPropertyBoundedValue(IfcIdentifier name, IfcText description, IfcValue upperBoundValue, IfcValue lowerBoundValue, IfcUnit unit, IfcValue setPointValue) : base(name, description)
 {
     UpperBoundValue = upperBoundValue;
     LowerBoundValue = lowerBoundValue;
     Unit            = unit;
     SetPointValue   = setPointValue;
 }
Esempio n. 2
0
 public IfcMetricValueSelect(IfcValue choice)
 {
     this.choice = choice;
 }
Esempio n. 3
0
 public IfcPropertySingleValue(IfcIdentifier name, IfcText description, IfcValue nominalValue, IfcUnit unit) : base(name, description)
 {
     NominalValue = nominalValue;
     Unit         = unit;
 }
Esempio n. 4
0
 public IfcAppliedValueSelect(IfcValue choice)
 {
     this.choice = choice;
 }
Esempio n. 5
0
 public IfcMeasureWithUnit(IfcValue valueComponent, IfcUnit unitComponent) : base()
 {
     ValueComponent = valueComponent;
     UnitComponent  = unitComponent;
 }