상속: IfcFlowController
예제 #1
0
파일: IFC V.cs 프로젝트: jenca-cloud/ggIFC
		internal static void parseFields(IfcValve s, List<string> arrFields, ref int ipos)
		{
			IfcEnergyConversionDevice.parseFields(s, arrFields, ref ipos);
			string str = arrFields[ipos++];
			if (str[0] == '.')
				s.mPredefinedType = (IfcValveTypeEnum)Enum.Parse(typeof(IfcValveTypeEnum), str);
		}
예제 #2
0
        internal static void parseFields(IfcValve s, List <string> arrFields, ref int ipos)
        {
            IfcEnergyConversionDevice.parseFields(s, arrFields, ref ipos);
            string str = arrFields[ipos++];

            if (str[0] == '.')
            {
                s.mPredefinedType = (IfcValveTypeEnum)Enum.Parse(typeof(IfcValveTypeEnum), str);
            }
        }
예제 #3
0
파일: IFC V.cs 프로젝트: jenca-cloud/ggIFC
		internal new static IfcValve Parse(string strDef) { IfcValve s = new IfcValve(); int ipos = 0; parseFields(s, ParserSTEP.SplitLineFields(strDef), ref ipos); return s; }
예제 #4
0
파일: IFC V.cs 프로젝트: jenca-cloud/ggIFC
		internal IfcValve(IfcValve b) : base(b) { mPredefinedType = b.mPredefinedType; }
예제 #5
0
 internal new static IfcValve Parse(string strDef)
 {
     IfcValve s = new IfcValve(); int ipos = 0; parseFields(s, ParserSTEP.SplitLineFields(strDef), ref ipos); return(s);
 }
예제 #6
0
 internal IfcValve(DatabaseIfc db, IfcValve v) : base(db, v)
 {
     mPredefinedType = v.mPredefinedType;
 }
예제 #7
0
 internal IfcValve(IfcValve b) : base(b)
 {
     mPredefinedType = b.mPredefinedType;
 }
예제 #8
0
 public Pset_ValveTypeCommon(IfcValve valve)
     : base(valve.mDatabase, "Pset_ValveTypeCommon")
 {
     Description = valve.Name; DefinesOccurrence.Assign(valve);
 }
예제 #9
0
 public Pset_ValveTypeCommon(IfcValve valve) : base(valve.mDatabase, "Pset_ValveTypeCommon")
 {
     Description = valve.Name; DefinesOccurrence.assign(valve);
 }
예제 #10
0
		internal IfcValve(DatabaseIfc db, IfcValve v) : base(db, v) { mPredefinedType = v.mPredefinedType; }