GeometryGym.Ifc.IfcQuantityVolume.Parse C# (CSharp) Method

Parse() static private method

static private Parse ( string str, ReleaseVersion schema ) : IfcQuantityVolume
str string
schema ReleaseVersion
return IfcQuantityVolume
        internal static IfcQuantityVolume Parse(string str, ReleaseVersion schema)
        {
            IfcQuantityVolume q = new IfcQuantityVolume();
            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.mVolumeValue))
            {
                IfcMeasureValue mv = ParserIfc.parseMeasureValue(s);
                if (mv != null)
                    q.mVolumeValue = mv.Measure;
            }
            if (schema != ReleaseVersion.IFC2x3)
                q.mFormula = ParserSTEP.StripString(str, ref pos, len);
            return q;
        }

Usage Example

Exemplo n.º 1
0
        internal static IfcQuantityVolume Parse(string str, ReleaseVersion schema)
        {
            IfcQuantityVolume q = new IfcQuantityVolume();
            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.mVolumeValue))
            {
                IfcMeasureValue mv = ParserIfc.parseMeasureValue(s);
                if (mv != null)
                {
                    q.mVolumeValue = mv.Measure;
                }
            }
            if (schema != ReleaseVersion.IFC2x3)
            {
                q.mFormula = ParserSTEP.StripString(str, ref pos, len);
            }
            return(q);
        }
All Usage Examples Of GeometryGym.Ifc.IfcQuantityVolume::Parse