Esempio n. 1
0
		internal static void parseFields(IfcRamp r, List<string> arrFields, ref int ipos)
		{
			IfcBuildingElement.parseFields(r, arrFields, ref ipos);
			string str = arrFields[ipos++];
			if (str[0] == '.')
				r.mPredefinedType = (IfcRampTypeEnum)Enum.Parse(typeof(IfcRampTypeEnum), str.Substring(1, str.Length - 2));
		}
Esempio n. 2
0
		internal IfcRamp(IfcRamp r) : base(r) { mPredefinedType = r.mPredefinedType; }
Esempio n. 3
0
		internal static IfcRamp Parse(string strDef) { IfcRamp r = new IfcRamp(); int ipos = 0; parseFields(r, ParserSTEP.SplitLineFields(strDef), ref ipos); return r; }
Esempio n. 4
0
 public Pset_ConcreteElementGeneral(IfcRamp instance)
     : base(instance.mDatabase, "Pset_ConcreteElementGeneral")
 {
     Description = instance.Name; DefinesOccurrence.Assign(instance);
 }