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