Inheritance: 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)
 {
 }