/// <summary>
 /// Adds a new attribute with the specified name and value.
 /// </summary>
 /// <param name="Name">Name of the attribute.</param>
 /// <param name="Value">Value of the attribute.</param>
 public void SetAttribute(string Name, string Value)
 {
     element.setAttribute(Name, Value);
 }