상속: IfcFlowFittingType
예제 #1
0
파일: IFC D.cs 프로젝트: jenca-cloud/ggIFC
		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
파일: IFC D.cs 프로젝트: jenca-cloud/ggIFC
		internal IfcDuctFittingType(IfcDuctFittingType t) : base(t) { mPredefinedType = t.mPredefinedType; }
예제 #3
0
파일: IFC D.cs 프로젝트: jenca-cloud/ggIFC
		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; }