Наследование: IfcBuildingElementType
Пример #1
0
 public Qto_DoorBaseQuantities(IfcDoorType type) : base(type.mDatabase, "Qto_DoorBaseQuantities")
 {
     Description = type.Name; type.AddPropertySet(this);
 }
Пример #2
0
 public Qto_DoorBaseQuantities(IfcDoorType type)
     : base(type.mDatabase, "Qto_DoorBaseQuantities")
 {
     Description = type.Name; type.AddPropertySet(this);
 }
Пример #3
0
		internal static void parseFields(IfcDoorType s, List<string> arrFields, ref int ipos, Schema schema)
		{
			if (schema == Schema.IFC2x3)
				IfcTypeProduct.parseFields(s, arrFields, ref ipos);
			else
			{
				IfcElementType.parseFields(s, arrFields, ref ipos);
				s.mPredefinedType = (IfcDoorTypeEnum)Enum.Parse(typeof(IfcDoorTypeEnum), arrFields[ipos++].Replace(".", ""));
			}
			s.mOperationType = (IfcDoorTypeOperationEnum)Enum.Parse(typeof(IfcDoorTypeOperationEnum), arrFields[ipos++].Replace(".", ""));
			s.mParameterTakesPrecedence = ParserSTEP.ParseBool(arrFields[ipos++]);
			s.mUserDefinedOperationType = arrFields[ipos++].Replace("'", "");
		}
Пример #4
0
		internal new static IfcDoorType Parse(string strDef, Schema schema) { IfcDoorType s = new IfcDoorType(); int ipos = 0; parseFields(s, ParserSTEP.SplitLineFields(strDef), ref ipos,schema); return s; }
Пример #5
0
		internal IfcDoorType(IfcDoorType t) : base(t) { mPredefinedType = t.mPredefinedType; mOperationType = t.mOperationType; mParameterTakesPrecedence = t.mParameterTakesPrecedence; mUserDefinedOperationType = t.mUserDefinedOperationType; }
Пример #6
0
 public Qto_DoorBaseQuantities(IfcDoorType type) : base(type)
 {
 }