CogoPointCollectionAdd(Point3dCollection, Boolean) Method |
Adds new CogoPoints at the given locations.
Namespace: Autodesk.Civil.DatabaseServicesAssembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.8.0.292
Syntaxpublic ObjectIdCollection Add(
Point3dCollection locations,
bool useNextPointNumSetting
)
Public Function Add (
locations As Point3dCollection,
useNextPointNumSetting As Boolean
) As ObjectIdCollection
public:
ObjectIdCollection^ Add(
Point3dCollection^ locations,
bool useNextPointNumSetting
)
Parameters
- locations Point3dCollection
- The locations of the new CogoPoints.
- useNextPointNumSetting Boolean
-
Return Value
ObjectIdCollectionAn ObjectIdCollection containing the added CogoPoint objects.
Remarks
The CogoPoints created with this method have empty Descriptions.
Example1
2CogoPointCollection cogoPoints = _civildoc.CogoPoints;
3Point3dCollection points = getRandomPoints();
4cogoPoints.Add(points, false);
1
2Dim cogoPoints As CogoPointCollection = _civildoc.CogoPoints
3Dim points As Point3dCollection = getRandomPoints()
4
5cogoPoints.Add(points, False)
No code example is currently available or this language may not be supported.
See Also