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