Inheritance: IfcFlowFittingType
示例#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; }
示例#2
0
		internal IfcDuctFittingType(IfcDuctFittingType t) : base(t) { mPredefinedType = t.mPredefinedType; }
示例#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(".", "")); }
示例#4
0
		internal IfcDuctFittingType(DatabaseIfc db, IfcDuctFittingType t) : base(db, t) { mPredefinedType = t.mPredefinedType; }