PondContourCollectionAdd(PondContour) Method

Adds multiple contours to the collection from an array of PondContours.

Namespace: Autodesk.Civil.DatabaseServices
Assembly: AeccDrainageDesignMgd (in AeccDrainageDesignMgd.dll) Version: 13.9.960.0
Syntax
public void Add(
	PondContour[] contours
)

Parameters

contours  PondContour
Array of PondContour objects to add to the collection.
Exceptions
ExceptionCondition
ArgumentNullExceptionThrown when the contours array is null.
ArgumentException Thrown when:
  1. The contour contains unsupported pond geometry.
  2. The contours array contains null entries or when contours with duplicate IDs would be added.
Remarks
This method is more efficient than calling Add() multiple times.
See Also