Share

CogoPointCollection.Count Property

Gets the count of CogoPoint objects in the collection.



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

Syntax

C#

public uint Count { get; }

VB

Public ReadOnly Property Count As UInteger
	Get

C++

public:
property unsigned int Count {
	unsigned int get ();
}

Property Value

UInt32

Example

C#

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

VB

1' _civildoc is the active CivilDocument instance.
2Dim cogoPoints As CogoPointCollection = _civildoc.CogoPoints

See Also

Reference

Was this information helpful?