Share

CogoPointCollection.Add(Point3dCollection, String, Boolean) Method

Adds new CogoPoints at the given locations with the given description information.



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

Syntax

C#

public ObjectIdCollection Add(
	Point3dCollection locations,
	string desc,
	bool useNextPointNumSetting
)

VB

Public Function Add ( 
	locations As Point3dCollection,
	desc As String,
	useNextPointNumSetting As Boolean
) As ObjectIdCollection

C++

public:
ObjectIdCollection^ Add(
	Point3dCollection^ locations, 
	String^ desc, 
	bool useNextPointNumSetting
)

Parameters

locations  Point3dCollection
A collection of 3d points specifying the locations of the new CogoPoints.
desc  String
The description of the new CogoPoints.
useNextPointNumSetting  Boolean
 

Return Value

ObjectIdCollection

Example

C#

1// _civildoc is the active CivilDocument instance.
2CogoPointCollection cogoPoints = _civildoc.CogoPoints;
3Point3dCollection points = getRandomPoints();   // Returns collection of random generated points.
4cogoPoints.Add(points, "Sample COGO Point", false);

VB

1' _civildoc is the active CivilDocument instance.
2Dim cogoPoints As CogoPointCollection = _civildoc.CogoPoints
3Dim points As Point3dCollection = getRandomPoints()
4' Returns collection of random generated points.

See Also

Reference

Was this information helpful?