GeometryGym.Ifc.IfcCShapeProfileDef.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("Depth"))
				mDepth = double.Parse(xml.Attributes["Depth"].Value);
			if (xml.HasAttribute("Width"))
				mWidth = double.Parse(xml.Attributes["Width"].Value);
			if (xml.HasAttribute("WallThickness"))
				mWallThickness = double.Parse(xml.Attributes["WallThickness"].Value);
			if (xml.HasAttribute("Girth"))
				mGirth = double.Parse(xml.Attributes["Girth"].Value);
			if (xml.HasAttribute("InternalFilletRadius"))
				mInternalFilletRadius = double.Parse(xml.Attributes["InternalFilletRadius"].Value);
		}
		internal override void SetXML(XmlElement xml, BaseClassIfc host, HashSet<int> processed)
IfcCShapeProfileDef