Inheritance: IfcFlowControllerType
Beispiel #1
0
		internal new static IfcValveType Parse(string strDef) { IfcValveType t = new IfcValveType(); int ipos = 0; parseFields(t, ParserSTEP.SplitLineFields(strDef), ref ipos); return t; }
Beispiel #2
0
		internal IfcValveType(IfcValveType t) : base(t) { mPredefinedType = t.mPredefinedType; }
Beispiel #3
0
		internal static void parseFields(IfcValveType t, List<string> arrFields, ref int ipos) { IfcFlowControllerType.parseFields(t, arrFields, ref ipos); t.mPredefinedType = (IfcValveTypeEnum)Enum.Parse(typeof(IfcValveTypeEnum), arrFields[ipos++].Replace(".", "")); }
Beispiel #4
0
 internal static void parseFields(IfcValveType t, List <string> arrFields, ref int ipos)
 {
     IfcFlowControllerType.parseFields(t, arrFields, ref ipos); t.mPredefinedType = (IfcValveTypeEnum)Enum.Parse(typeof(IfcValveTypeEnum), arrFields[ipos++].Replace(".", ""));
 }
Beispiel #5
0
 internal new static IfcValveType Parse(string strDef)
 {
     IfcValveType t = new IfcValveType(); int ipos = 0; parseFields(t, ParserSTEP.SplitLineFields(strDef), ref ipos); return(t);
 }
Beispiel #6
0
 internal IfcValveType(DatabaseIfc db, IfcValveType t) : base(db, t)
 {
     mPredefinedType = t.mPredefinedType;
 }
Beispiel #7
0
 internal IfcValveType(IfcValveType t) : base(t)
 {
     mPredefinedType = t.mPredefinedType;
 }
 public Pset_ValveTypeCommon(IfcValveType valveType)
     : base(valveType.mDatabase, "Pset_ValveTypeCommon")
 {
     Description = valveType.Name; valveType.AddPropertySet(this);
 }
 public Pset_ValveTypeCommon(IfcValveType valveType) : base(valveType.mDatabase, "Pset_ValveTypeCommon")
 {
     Description = valveType.Name; valveType.AddPropertySet(this);
 }
Beispiel #10
0
		internal IfcValveType(DatabaseIfc db, IfcValveType t) : base(db, t) { mPredefinedType = t.mPredefinedType; }