Exemplo n.º 1
0
 public void InsertBlueAt(BlueType newValue, int index)
 {
     if (newValue.IsNull() == false)
     {
         InsertDomChildAt(NodeType.Element, "", "Blue", index, newValue.ToString());
     }
 }
Exemplo n.º 2
0
 public XmlNode AddBlue(BlueType newValue)
 {
     if (newValue.IsNull() == false)
     {
         return(AppendDomChild(NodeType.Element, "", "Blue", newValue.ToString()));
     }
     return(null);
 }
Exemplo n.º 3
0
 public void ReplaceBlueAt(BlueType newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Element, "", "Blue", index, newValue.ToString());
 }
Exemplo n.º 4
0
 public void AddBlue(BlueType newValue)
 {
     AppendDomChild(NodeType.Element, "", "Blue", newValue.ToString());
 }
Exemplo n.º 5
0
 public void ReplaceBlueAt(BlueType newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Element, "", "Blue", index, newValue.ToString());
 }
Exemplo n.º 6
0
 public void InsertBlueAt(BlueType newValue, int index)
 {
     if( newValue.IsNull() == false )
         InsertDomChildAt(NodeType.Element, "", "Blue", index, newValue.ToString());
 }
Exemplo n.º 7
0
 public XmlNode AddBlue(BlueType newValue)
 {
     if( newValue.IsNull() == false )
         return AppendDomChild(NodeType.Element, "", "Blue", newValue.ToString());
     return null;
 }
Exemplo n.º 8
0
		public void InsertBlueAt(BlueType newValue, int index)
		{
			InsertDomChildAt(NodeType.Element, "", "Blue", index, newValue.ToString());
		}
Exemplo n.º 9
0
		public void AddBlue(BlueType newValue)
		{
			AppendDomChild(NodeType.Element, "", "Blue", newValue.ToString());
		}