PondContourCollectionAdd(PondContour) Method |
Adds multiple contours to the collection from an array of PondContours.
Namespace: Autodesk.Civil.DatabaseServicesAssembly: AeccDrainageDesignMgd (in AeccDrainageDesignMgd.dll) Version: 13.9.960.0
Syntaxpublic void Add(
PondContour[] contours
)
Public Sub Add (
contours As PondContour()
)
public:
void Add(
array<PondContour^>^ contours
)
Parameters
- contours PondContour
- Array of PondContour objects to add to the collection.
Exceptions| Exception | Condition |
|---|
| ArgumentNullException | Thrown when the contours array is null. |
| ArgumentException |
Thrown when:
- The contour contains unsupported pond geometry.
- 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