UndergroundStorageBoundaryPoints Property

Gets or sets the boundary points of the underground storage.

Namespace: Autodesk.Civil.DatabaseServices
Assembly: AeccDrainageDesignMgd (in AeccDrainageDesignMgd.dll) Version: 13.9.960.0
Syntax
public Point2dCollection BoundaryPoints { get; set; }

Property Value

Point2dCollection
Exceptions
ExceptionCondition
ArgumentNullException Thrown when setting boundary points to null.
ArgumentException Thrown when setting boundary points with invalid geometry, such as: - Fewer than 3 points (insufficient for a polygon) - Empty point collection - Self-intersecting geometry
BackwardCompatibilityException Thrown when setting boundary points in older drawing.
ForwardCompatibilityException Thrown when setting boundary points in newer drawing.
Remarks
When setting boundary points, provide points that form a closed, non-intersecting polygon. The last point may optionally equal the first point. When getting boundary points, the returned collection adds the closing point, last point is equal to the first point.
See Also