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

Parse() static private méthode

static private Parse ( string str, ReleaseVersion schema ) : IfcQuantityWeight
str string
schema ReleaseVersion
Résultat IfcQuantityWeight
        internal static IfcQuantityWeight Parse(string str, ReleaseVersion schema)
        {
            IfcQuantityWeight q = new IfcQuantityWeight();
            int pos = 0, len = str.Length;
            q.Parse(str, ref pos, len);
            string s = ParserSTEP.StripField(str, ref pos, len);
            if (!double.TryParse(s, out q.mWeightValue))
            {
                IfcMeasureValue mv = ParserIfc.parseMeasureValue(s);
                if (mv != null)
                    q.mWeightValue = mv.Measure;
            }
            if (schema != ReleaseVersion.IFC2x3)
                q.mFormula = ParserSTEP.StripString(str, ref pos, len);
            return q;
        }

Usage Example

Exemple #1
0
        internal static IfcQuantityWeight Parse(string str, ReleaseVersion schema)
        {
            IfcQuantityWeight q = new IfcQuantityWeight();
            int pos = 0, len = str.Length;

            q.Parse(str, ref pos, len);
            string s = ParserSTEP.StripField(str, ref pos, len);

            if (!double.TryParse(s, out q.mWeightValue))
            {
                IfcMeasureValue mv = ParserIfc.parseMeasureValue(s);
                if (mv != null)
                {
                    q.mWeightValue = mv.Measure;
                }
            }
            if (schema != ReleaseVersion.IFC2x3)
            {
                q.mFormula = ParserSTEP.StripString(str, ref pos, len);
            }
            return(q);
        }
All Usage Examples Of GeometryGym.Ifc.IfcQuantityWeight::Parse