Beispiel #1
0
 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());
     }
 }
Beispiel #2
0
 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);
 }
Beispiel #3
0
 public void ReplaceshowAt(xlink.showType newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Attribute, "http://www.w3.org/1999/xlink", "show", index, newValue.ToString());
 }
Beispiel #4
0
 public void Addshow(xlink.showType newValue)
 {
     AppendDomChild(NodeType.Attribute, "http://www.w3.org/1999/xlink", "show", newValue.ToString());
 }