상속: IfcElementComponentType
예제 #1
0
 internal static void parseFields(IfcVibrationIsolatorType t, List <string> arrFields, ref int ipos)
 {
     IfcDiscreteAccessoryType.parseFields(t, arrFields, ref ipos); t.mPredefinedType = (IfcVibrationIsolatorTypeEnum)Enum.Parse(typeof(IfcVibrationIsolatorTypeEnum), arrFields[ipos++].Replace(".", ""));
 }
예제 #2
0
파일: IFC D.cs 프로젝트: jenca-cloud/ggIFC
		internal static void parseFields(IfcDiscreteAccessoryType e, List<string> arrFields, ref int ipos) { IfcElement.parseFields(e, arrFields, ref ipos); }
예제 #3
0
파일: IFC D.cs 프로젝트: jenca-cloud/ggIFC
		internal static void parseFields(IfcDiscreteAccessoryType t, List<string> arrFields, ref int ipos, Schema schema)
		{
			IfcElementComponentType.parseFields(t, arrFields, ref ipos);
			if (schema != Schema.IFC2x3)
			{
				string str = arrFields[ipos++];
				if (str[0] == '.')
					t.mPredefinedType = (IfcDiscreteAccessoryTypeEnum)Enum.Parse(typeof(IfcDiscreteAccessoryTypeEnum), str.Replace(".", ""));
			}
		}
예제 #4
0
파일: IFC D.cs 프로젝트: jenca-cloud/ggIFC
		internal static IfcDiscreteAccessoryType Parse(string strDef, Schema schema) { IfcDiscreteAccessoryType t = new IfcDiscreteAccessoryType(); int ipos = 0; parseFields(t, ParserSTEP.SplitLineFields(strDef), ref ipos, schema); return t; }
예제 #5
0
파일: IFC D.cs 프로젝트: jenca-cloud/ggIFC
		internal IfcDiscreteAccessoryType(IfcDiscreteAccessoryType t) : base(t) { }
예제 #6
0
		internal IfcDiscreteAccessoryType(DatabaseIfc db, IfcDiscreteAccessoryType t) : base(db, t) { mPredefinedType = t.mPredefinedType; }