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

parseFields() protected static method

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

Usage Example

Esempio n. 1
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(".", ""));
 }