コード例 #1
0
		public void ReplaceBoundingBoxOverlapAt(BoundingBoxOverlapType newValue, int index)
		{
			ReplaceDomChildAt(NodeType.Element, "", "BoundingBoxOverlap", index, newValue.ToString());
		}
コード例 #2
0
ファイル: Type_WMSAccessor.cs プロジェクト: paladin74/Dapple
 public XmlNode AddBoundingBoxOverlap(BoundingBoxOverlapType newValue)
 {
     if( newValue.IsNull() == false )
         return AppendDomChild(NodeType.Element, "", "BoundingBoxOverlap", newValue.ToString());
     return null;
 }
コード例 #3
0
		public void AddBoundingBoxOverlap(BoundingBoxOverlapType newValue)
		{
			AppendDomChild(NodeType.Element, "", "BoundingBoxOverlap", newValue.ToString());
		}
コード例 #4
0
ファイル: Type_WMSAccessor.cs プロジェクト: paladin74/Dapple
 public void InsertBoundingBoxOverlapAt(BoundingBoxOverlapType newValue, int index)
 {
     if( newValue.IsNull() == false )
         InsertDomChildAt(NodeType.Element, "", "BoundingBoxOverlap", index, newValue.ToString());
 }