Пример #1
0
 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;
 }
Пример #2
0
 public IfcMetricValueSelect(IfcValue choice)
 {
     this.choice = choice;
 }
Пример #3
0
 public IfcPropertySingleValue(IfcIdentifier name, IfcText description, IfcValue nominalValue, IfcUnit unit) : base(name, description)
 {
     NominalValue = nominalValue;
     Unit         = unit;
 }
Пример #4
0
 public IfcAppliedValueSelect(IfcValue choice)
 {
     this.choice = choice;
 }
Пример #5
0
 public IfcMeasureWithUnit(IfcValue valueComponent, IfcUnit unitComponent) : base()
 {
     ValueComponent = valueComponent;
     UnitComponent  = unitComponent;
 }