예제 #1
0
파일: IFC R.cs 프로젝트: jenca-cloud/ggIFC
		internal static void parseFields(IfcRampFlight f, List<string> arrFields, ref int ipos, Schema schema)
		{
			IfcBuildingElement.parseFields(f, arrFields, ref ipos);
			if (schema != Schema.IFC2x3)
			{
				string str = arrFields[ipos++];
				if (str[0] == '.')
					f.mPredefinedType = (IfcRampFlightTypeEnum)Enum.Parse(typeof(IfcRampFlightTypeEnum), str.Substring(1, str.Length - 2));
			}
		}
예제 #2
0
파일: IFC R.cs 프로젝트: jenca-cloud/ggIFC
		internal IfcRampFlight(IfcRampFlight f) : base(f) { mPredefinedType = f.mPredefinedType; }
예제 #3
0
파일: IFC R.cs 프로젝트: jenca-cloud/ggIFC
		internal static IfcRampFlight Parse(string strDef, Schema schema) { IfcRampFlight f = new IfcRampFlight(); int ipos = 0; parseFields(f, ParserSTEP.SplitLineFields(strDef), ref ipos, schema); return f; }
예제 #4
0
 public Pset_ConcreteElementGeneral(IfcRampFlight instance)
     : base(instance.mDatabase, "Pset_ConcreteElementGeneral")
 {
     Description = instance.Name; DefinesOccurrence.Assign(instance);
 }