Inheritance: IfcDistributionControlElementType
Example #1
0
		internal new static IfcAlarmType Parse(string strDef) { IfcAlarmType t = new IfcAlarmType(); int ipos = 0; parseFields(t, ParserSTEP.SplitLineFields(strDef), ref ipos); return t; }
Example #2
0
		internal IfcAlarmType(IfcAlarmType t) : base(t) { mPredefinedType = t.mPredefinedType; }
Example #3
0
		internal static void parseFields(IfcAlarmType t,List<string> arrFields, ref int ipos) { IfcDistributionControlElementType.parseFields(t,arrFields, ref ipos); t.mPredefinedType = (IfcAlarmTypeEnum)Enum.Parse(typeof(IfcAlarmTypeEnum), arrFields[ipos++].Replace(".", "")); }
Example #4
0
		internal IfcAlarmType(DatabaseIfc db, IfcAlarmType t) : base(db, t) { mPredefinedType = t.mPredefinedType; }