UserSpecifiedPolygonRegion Property

Gets or sets the region within the surface to apply the simplification to.

Namespace: Autodesk.Civil.DatabaseServices
Assembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.2.3892.0

Syntax

C#

public Point3dCollection UserSpecifiedPolygonRegion { get; set; }

Visual Basic

Public Property UserSpecifiedPolygonRegion As Point3dCollection
	Get
	Set

Visual C++

public:
property Point3dCollection^ UserSpecifiedPolygonRegion {
	Point3dCollection^ get ();
	void set (Point3dCollection^ value);
}

Remarks

A user specified region only takes effect when RegionOption is SurfaceSimplifyRegionType.UserSpecified. The polygon region must be closed: the last point should be identical to the first point.

Exceptions

ExceptionCondition
System.ArgumentException Thrown when:
  1. Points cannot build a polygon region.
  2. Getting this property when RegionOption is SurfaceSimplifyRegionType.SurfaceBorder.

See Also