CogoPointCollectionCount Property

Gets the count of CogoPoint objects in the collection.

Namespace: Autodesk.Civil.DatabaseServices
Assembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.8.0.292
Syntax
public uint Count { get; }

Property Value

UInt32
Example
1// _civildoc is the active CivilDocument instance.
2CogoPointCollection cogoPoints = _civildoc.CogoPoints;
3
4write("Number of COGO Points in the drawing: " + cogoPoints.Count);
See Also