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