GeometryGym.Ifc.IfcQuantityVolume.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("VolumeValue"))
                VolumeValue = double.Parse(xml.Attributes["VolumeValue"].Value);
            if (xml.HasAttribute("Formula"))
                Formula = xml.Attributes["Formula"].Value;
        }