GeometryGym.Ifc.IfcFlowTreatmentDeviceType.parseFields C# (CSharp) Method

parseFields() protected static method

protected static parseFields ( IfcFlowTreatmentDeviceType t, List arrFields, int &ipos ) : void
t IfcFlowTreatmentDeviceType
arrFields List
ipos int
return void
        protected static void parseFields(IfcFlowTreatmentDeviceType t, List<string> arrFields, ref int ipos)
        {
            IfcDistributionFlowElementType.parseFields(t, arrFields, ref ipos);
        }

Usage Example

コード例 #1
0
ファイル: IFC I.cs プロジェクト: PlumpMath/GeometryGymIFC-1
 internal static void parseFields(IfcInterceptorType t, List <string> arrFields, ref int ipos)
 {
     IfcFlowTreatmentDeviceType.parseFields(t, arrFields, ref ipos); t.mPredefinedType = (IfcInterceptorTypeEnum)Enum.Parse(typeof(IfcInterceptorTypeEnum), arrFields[ipos++].Replace(".", ""));
 }