GeometryGym.Ifc.IfcWall.Parse C# (CSharp) Méthode

Parse() protected méthode

protected Parse ( string str, int &pos, int len, ReleaseVersion schema ) : void
str string
pos int
len int
schema ReleaseVersion
Résultat void
        protected void Parse(string str, ref int pos, int len, ReleaseVersion schema)
        {
            base.Parse(str, ref pos, len);
            if (schema != ReleaseVersion.IFC2x3)
            {
                string s = ParserSTEP.StripField(str, ref pos, len);
                if (s[0] == '.')
                    Enum.TryParse< IfcWallTypeEnum >(s.Substring(1, s.Length - 2), out mPredefinedType);
            }
        }

Same methods

IfcWall::Parse ( string str, ReleaseVersion schema ) : IfcWall

Usage Example

Exemple #1
0
 internal static IfcWall Parse(string str, ReleaseVersion schema)
 {
     IfcWall w = new IfcWall(); int pos = 0; w.Parse(str, ref pos, str.Length, schema); return(w);
 }
All Usage Examples Of GeometryGym.Ifc.IfcWall::Parse