Inheritance: IfcFlowFittingType
Ejemplo n.º 1
0
		internal new static IfcDuctFittingType Parse(string strDef) { IfcDuctFittingType t = new IfcDuctFittingType(); int ipos = 0; parseFields(t, ParserSTEP.SplitLineFields(strDef), ref ipos); return t; }
Ejemplo n.º 2
0
		internal IfcDuctFittingType(IfcDuctFittingType t) : base(t) { mPredefinedType = t.mPredefinedType; }
Ejemplo n.º 3
0
		internal static void parseFields(IfcDuctFittingType t, List<string> arrFields, ref int ipos) { IfcFlowFittingType.parseFields(t, arrFields, ref ipos); t.mPredefinedType = (IfcDuctFittingTypeEnum)Enum.Parse(typeof(IfcDuctFittingTypeEnum), arrFields[ipos++].Replace(".", "")); }
Ejemplo n.º 4
0
		internal IfcDuctFittingType(DatabaseIfc db, IfcDuctFittingType t) : base(db, t) { mPredefinedType = t.mPredefinedType; }