Gets the count of CogoPoint objects in the collection.
Namespace: Autodesk.Civil.DatabaseServicesAssembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.4.2516.0
Syntax
C# |
---|
public uint Count { get; } |
Visual Basic |
---|
Public ReadOnly Property Count As UInteger
Get |
Visual C++ |
---|
public:
property unsigned int Count {
unsigned int get ();
} |
Examples
CopyC#
1
2CogoPointCollection cogoPoints = _civildoc.CogoPoints;
3
4write("Number of COGO Points in the drawing: " + cogoPoints.Count);
CopyVB.NET
1
2Dim cogoPoints As CogoPointCollection = _civildoc.CogoPoints
See Also