GeometryGym.Ifc.IfcPlanarExtent.ParseXml C# (CSharp) Method

ParseXml() private method

private ParseXml ( XmlElement xml ) : void
xml System.Xml.XmlElement
return void
        internal override void ParseXml(XmlElement xml)
        {
            base.ParseXml(xml);
            if (xml.HasAttribute("SizeInX"))
                mSizeInX = double.Parse(xml.Attributes["SizeInX"].Value);
            if (xml.HasAttribute("SizeInY"))
                mSizeInY = double.Parse(xml.Attributes["SizeInY"].Value);
        }
IfcPlanarExtent