GeometryGym.Ifc.IfcQuantityArea.ParseXml C# (CSharp) Méthode

ParseXml() private méthode

private ParseXml ( XmlElement xml ) : void
xml XmlElement
Résultat void
        internal override void ParseXml(XmlElement xml)
        {
            base.ParseXml(xml);
            if (xml.HasAttribute("AreaValue"))
                AreaValue = double.Parse(xml.Attributes["AreaValue"].Value);
            if (xml.HasAttribute("Formula"))
                Formula = xml.Attributes["Formula"].Value;
        }