Inheritance: IfcFlowTerminalType
Example #1
0
 internal IfcLightFixtureType(DatabaseIfc db, IfcLightFixtureType t) : base(db, t)
 {
     mPredefinedType = t.mPredefinedType;
 }
Example #2
0
 public Pset_LightFixtureTypeCommon(IfcLightFixtureType lightFixtureType)
     : base(lightFixtureType.mDatabase, "Pset_LightFixtureTypeCommon")
 {
     Description = lightFixtureType.Name; lightFixtureType.AddPropertySet(this);
 }
Example #3
0
 internal new static IfcLightFixtureType Parse(string strDef)
 {
     IfcLightFixtureType t = new IfcLightFixtureType(); int ipos = 0; parseFields(t, ParserSTEP.SplitLineFields(strDef), ref ipos); return(t);
 }
Example #4
0
 internal IfcLightFixtureType(DatabaseIfc db, IfcLightFixtureType t, DuplicateOptions options) : base(db, t, options)
 {
     mPredefinedType = t.mPredefinedType;
 }
Example #5
0
 internal static void parseFields(IfcLightFixtureType t, List <string> arrFields, ref int ipos)
 {
     IfcFlowControllerType.parseFields(t, arrFields, ref ipos); t.mPredefinedType = (IfcLightFixtureTypeEnum)Enum.Parse(typeof(IfcLightFixtureTypeEnum), arrFields[ipos++].Replace(".", ""));
 }
Example #6
0
 internal static void parseFields(IfcLightFixtureType t, List<string> arrFields, ref int ipos)
 {
     IfcFlowControllerType.parseFields(t, arrFields, ref ipos); t.mPredefinedType = (IfcLightFixtureTypeEnum)Enum.Parse(typeof(IfcLightFixtureTypeEnum), arrFields[ipos++].Replace(".", ""));
 }
Example #7
0
 internal static new IfcLightFixtureType Parse(string strDef)
 {
     IfcLightFixtureType t = new IfcLightFixtureType(); int ipos = 0; parseFields(t, ParserSTEP.SplitLineFields(strDef), ref ipos); return t;
 }
Example #8
0
 internal IfcLightFixtureType(DatabaseIfc db, IfcLightFixtureType t)
     : base(db, t)
 {
     mPredefinedType = t.mPredefinedType;
 }
Example #9
0
		internal IfcLightFixtureType(IfcLightFixtureType t) : base(t) { mPredefinedType = t.mPredefinedType; }