public void ReplaceshowAt(xlink.showType newValue, int index)
		{
			ReplaceDomChildAt(NodeType.Attribute, "http://www.w3.org/1999/xlink", "show", index, newValue.ToString());
		}
		public void Addshow(xlink.showType newValue)
		{
			AppendDomChild(NodeType.Attribute, "http://www.w3.org/1999/xlink", "show", newValue.ToString());
		}
		public void ReplaceactuateAt(xlink.actuateType newValue, int index)
		{
			ReplaceDomChildAt(NodeType.Attribute, "http://www.w3.org/1999/xlink", "actuate", index, newValue.ToString());
		}
		public void Addactuate(xlink.actuateType newValue)
		{
			AppendDomChild(NodeType.Attribute, "http://www.w3.org/1999/xlink", "actuate", newValue.ToString());
		}
 public void InsertshowAt(xlink.showType newValue, int index)
 {
     if( newValue.IsNull() == false )
         InsertDomChildAt(NodeType.Attribute, "http://www.w3.org/1999/xlink", "show", index, newValue.ToString());
 }
 public XmlNode Addshow(xlink.showType newValue)
 {
     if( newValue.IsNull() == false )
         return AppendDomChild(NodeType.Attribute, "http://www.w3.org/1999/xlink", "show", newValue.ToString());
     return null;
 }