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

Parse() protected méthode

protected Parse ( string str, int &pos, int len ) : void
str string
pos int
len int
Résultat void
        protected override void Parse(string str, ref int pos, int len)
        {
            base.Parse(str, ref pos, len);
            string s = ParserSTEP.StripField(str, ref pos, len);
            if (s.StartsWith("."))
                Enum.TryParse<IfcFootingTypeEnum>(s.Replace(".", ""), out mPredefinedType);
        }

Same methods

IfcFooting::Parse ( string str ) : IfcFooting

Usage Example

Exemple #1
0
 internal static IfcFooting Parse(string str)
 {
     IfcFooting f = new IfcFooting(); int pos = 0; f.Parse(str, ref pos, str.Length); return f;
 }