internal new static IfcRampType Parse(string strDef) { IfcRampType t = new IfcRampType(); int ipos = 0; parseFields(t, ParserSTEP.SplitLineFields(strDef), ref ipos); return t; }
internal IfcRampType(IfcRampType t) : base(t) { mPredefinedType = t.mPredefinedType; }
internal static void parseFields(IfcRampType t, List<string> arrFields, ref int ipos) { IfcBuildingElementType.parseFields(t, arrFields, ref ipos); t.mPredefinedType = (IfcRampTypeEnum)Enum.Parse(typeof(IfcRampTypeEnum), arrFields[ipos++].Replace(".", "")); }
public Pset_ConcreteElementGeneral(IfcRampType type) : base(type.mDatabase, "Pset_ConcreteElementGeneral") { Description = type.Name; type.AddPropertySet(this); }