public IfcReinforcementBarProperties(IfcAreaMeasure totalCrossSectionArea, IfcLabel steelGrade, IfcReinforcingBarSurfaceEnum barSurface, IfcLengthMeasure effectiveDepth, IfcPositiveLengthMeasure nominalBarDiameter, IfcCountMeasure barCount) : base() { TotalCrossSectionArea = totalCrossSectionArea; SteelGrade = steelGrade; BarSurface = barSurface; EffectiveDepth = effectiveDepth; NominalBarDiameter = nominalBarDiameter; BarCount = barCount; }
public IfcQuantityCount(IfcLabel name, IfcText description, IfcNamedUnit unit, IfcCountMeasure countValue, IfcLabel formula) : base(name, description, unit) { CountValue = countValue; Formula = formula; }
public IfcMeasureValue(IfcCountMeasure choice) { this.choice = choice; }
} // optional /// <summary> /// Construct a IfcQuantityCount with all required attributes. /// </summary> public IfcQuantityCount(IfcLabel name, IfcCountMeasure countValue) : base(name) { CountValue = countValue; }