상속: IfcFlowSegmentType
예제 #1
0
파일: IFC D.cs 프로젝트: jenca-cloud/ggIFC
		internal new static IfcDuctSegmentType Parse(string strDef) { IfcDuctSegmentType t = new IfcDuctSegmentType(); int ipos = 0; parseFields(t, ParserSTEP.SplitLineFields(strDef), ref ipos); return t; }
예제 #2
0
파일: IFC D.cs 프로젝트: jenca-cloud/ggIFC
		internal IfcDuctSegmentType(IfcDuctSegmentType t) : base(t) { mPredefinedType = t.mPredefinedType; }
예제 #3
0
파일: IFC D.cs 프로젝트: jenca-cloud/ggIFC
		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(".", "")); }
예제 #4
0
		internal IfcDuctSegmentType(DatabaseIfc db, IfcDuctSegmentType t) : base(db, t) { mPredefinedType = t.mPredefinedType; }