コード例 #1
0
ファイル: IFC P.cs プロジェクト: jenca-cloud/ggIFC
		internal static void parseFields(IfcPipeSegmentType t, List<string> arrFields, ref int ipos) { IfcFlowSegmentType.parseFields(t, arrFields, ref ipos); t.mPredefinedType = (IfcPipeSegmentTypeEnum)Enum.Parse(typeof(IfcPipeSegmentTypeEnum), arrFields[ipos++].Replace(".", "")); }
コード例 #2
0
ファイル: IFC P.cs プロジェクト: jenca-cloud/ggIFC
		internal new static IfcPipeSegmentType Parse(string strDef) { IfcPipeSegmentType t = new IfcPipeSegmentType(); int ipos = 0; parseFields(t, ParserSTEP.SplitLineFields(strDef), ref ipos); return t; }
コード例 #3
0
ファイル: IFC P.cs プロジェクト: jenca-cloud/ggIFC
		internal IfcPipeSegmentType(IfcPipeSegmentType t) : base(t) { mPredefinedType = t.mPredefinedType; }