Editor.Circle.Read C# (CSharp) Méthode

Read() public méthode

public Read ( System element ) : void
element System
Résultat void
        public override void Read(System.Xml.XmlElement element)
        {
            this.radius = Int32.Parse(element.GetAttribute("radius"));
             this.center = this.ReadPoint(element["point"]);
        }