Creates surface point data from AutoCAD Point objects.
Namespace: Autodesk.Civil.DatabaseServicesAssembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.2.3892.0
Syntax
C#
public SurfaceOperationAddDrawingObject AddFromPoints( ObjectIdCollection pointIds, string description )
Visual Basic
Public Function AddFromPoints ( _ pointIds As ObjectIdCollection, _ description As String _ ) As SurfaceOperationAddDrawingObject
Visual C++
public: SurfaceOperationAddDrawingObject^ AddFromPoints( ObjectIdCollection^ pointIds, String^ description )
Parameters
- pointIds
- Type: ObjectIdCollection
An ObjectIdCollection of AutoCAD Point3d objects from which the surface point data will be added.
- description
- Type: System.String
Specifies the description for the point data to be created.
Remarks
The XYZ coordinates of each Point3D are used to define the surface point.
Exceptions
Exception | Condition |
---|---|
System.ArgumentException | Thrown when the ObjectIdCollection contains objects of types other than Autodesk.AutoCAD.Geometry.Point3d. |