상속: IfcBuildingElementType
예제 #1
0
파일: IFC C.cs 프로젝트: jenca-cloud/ggIFC
		internal new static IfcCoveringType Parse(string strDef) { IfcCoveringType t = new IfcCoveringType(); int ipos = 0; parseFields(t, ParserSTEP.SplitLineFields(strDef), ref ipos); return t; }
예제 #2
0
파일: IFC C.cs 프로젝트: jenca-cloud/ggIFC
		internal IfcCoveringType(IfcCoveringType t) : base(t) { mPredefinedType = t.mPredefinedType; }
예제 #3
0
파일: IFC C.cs 프로젝트: jenca-cloud/ggIFC
		internal static void parseFields(IfcCoveringType e, List<string> arrFields, ref int ipos) { IfcBuildingElementType.parseFields(e, arrFields, ref ipos); try { e.mPredefinedType = (IfcCoveringTypeEnum)Enum.Parse(typeof(IfcCoveringTypeEnum), arrFields[ipos++].Replace(".", "")); } catch (Exception) { } }
예제 #4
0
 public Qto_CoveringBaseQuantities(IfcCoveringType type) : base(type)
 {
 }