Gets the ProfileEntity object at a specified index in the collection.

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

Syntax

C#
public ProfileEntity this[
	int index
] { get; }
Visual Basic
Public ReadOnly Default Property Item ( _
	index As Integer _
) As ProfileEntity
	Get
Visual C++
public:
property ProfileEntity^ default[int index] {
	ProfileEntity^ get (int index);
}

Parameters

index
Type: System..::..Int32
Profile entity index.

Remarks

The returned entity object is an instance of a concrete entity type (e.g. ProfileEntityCircular), which is derived from the abstract class ProfileEntity.

Exceptions

ExceptionCondition
System..::..ArgumentOutOfRangeException Thrown when index is out of collection range.

See Also