예제 #1
0
파일: IFC R.cs 프로젝트: jenca-cloud/ggIFC
		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));
		}
예제 #2
0
파일: IFC R.cs 프로젝트: jenca-cloud/ggIFC
		internal IfcRamp(IfcRamp r) : base(r) { mPredefinedType = r.mPredefinedType; }
예제 #3
0
파일: IFC R.cs 프로젝트: jenca-cloud/ggIFC
		internal static IfcRamp Parse(string strDef) { IfcRamp r = new IfcRamp(); int ipos = 0; parseFields(r, ParserSTEP.SplitLineFields(strDef), ref ipos); return r; }
예제 #4
0
 public Pset_ConcreteElementGeneral(IfcRamp instance)
     : base(instance.mDatabase, "Pset_ConcreteElementGeneral")
 {
     Description = instance.Name; DefinesOccurrence.Assign(instance);
 }