Esempio n. 1
0
		public void ReplaceBoundingBoxOverlapAt(BoundingBoxOverlapType newValue, int index)
		{
			ReplaceDomChildAt(NodeType.Element, "", "BoundingBoxOverlap", index, newValue.ToString());
		}
Esempio n. 2
0
 public XmlNode AddBoundingBoxOverlap(BoundingBoxOverlapType newValue)
 {
     if( newValue.IsNull() == false )
         return AppendDomChild(NodeType.Element, "", "BoundingBoxOverlap", newValue.ToString());
     return null;
 }
Esempio n. 3
0
		public void AddBoundingBoxOverlap(BoundingBoxOverlapType newValue)
		{
			AppendDomChild(NodeType.Element, "", "BoundingBoxOverlap", newValue.ToString());
		}
Esempio n. 4
0
 public void InsertBoundingBoxOverlapAt(BoundingBoxOverlapType newValue, int index)
 {
     if( newValue.IsNull() == false )
         InsertDomChildAt(NodeType.Element, "", "BoundingBoxOverlap", index, newValue.ToString());
 }