GeometryGym.Ifc.IfcBuildingElementType.parseFields C# (CSharp) Méthode

parseFields() protected static méthode

protected static parseFields ( IfcBuildingElementType t, List arrFields, int &ipos ) : void
t IfcBuildingElementType
arrFields List
ipos int
Résultat void
        protected static void parseFields(IfcBuildingElementType t, List<string> arrFields, ref int ipos)
        {
            IfcElementType.parseFields(t, arrFields, ref ipos);
        }

Usage Example

Exemple #1
0
 internal static void parseFields(IfcWindowType s, List <string> arrFields, ref int ipos)
 {
     IfcBuildingElementType.parseFields(s, arrFields, ref ipos);
     s.mPredefinedType              = (IfcWindowTypeEnum)Enum.Parse(typeof(IfcWindowTypeEnum), arrFields[ipos++].Replace(".", ""));
     s.mPartitioningType            = (IfcWindowTypePartitioningEnum)Enum.Parse(typeof(IfcWindowTypePartitioningEnum), arrFields[ipos++].Replace(".", ""));
     s.mParameterTakesPrecedence    = ParserSTEP.ParseBool(arrFields[ipos++]);
     s.mUserDefinedPartitioningType = arrFields[ipos++];
 }
All Usage Examples Of GeometryGym.Ifc.IfcBuildingElementType::parseFields