コード例 #1
0
 public void InsertactuateAt(xlink.actuateType newValue, int index)
 {
     if (newValue.IsNull() == false)
     {
         InsertDomChildAt(NodeType.Attribute, "http://www.w3.org/1999/xlink", "actuate", index, newValue.ToString());
     }
 }
コード例 #2
0
 public XmlNode Addactuate(xlink.actuateType newValue)
 {
     if (newValue.IsNull() == false)
     {
         return(AppendDomChild(NodeType.Attribute, "http://www.w3.org/1999/xlink", "actuate", newValue.ToString()));
     }
     return(null);
 }
コード例 #3
0
 public void ReplaceactuateAt(xlink.actuateType newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Attribute, "http://www.w3.org/1999/xlink", "actuate", index, newValue.ToString());
 }
コード例 #4
0
 public void Addactuate(xlink.actuateType newValue)
 {
     AppendDomChild(NodeType.Attribute, "http://www.w3.org/1999/xlink", "actuate", newValue.ToString());
 }