GeometryGym.Ifc.IfcCoordinateReferenceSystem.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("Name"))
				Name = xml.Attributes["Name"].Value;
			if (xml.HasAttribute("Description"))
				Description = xml.Attributes["Description"].Value;
			if (xml.HasAttribute("GeodeticDatum"))
				GeodeticDatum = xml.Attributes["GeodeticDatum"].Value;
			if (xml.HasAttribute("VerticalDatum"))
				VerticalDatum = xml.Attributes["VerticalDatum"].Value;
		}
		internal override void SetXML(XmlElement xml, BaseClassIfc host, HashSet<int> processed)
IfcCoordinateReferenceSystem