RasCollection(TObject).Item Property

DotRas SDK

Collapse image Expand Image Copy image CopyHover image
Gets an entry from the collection.

Namespace: DotRas.Design
Assembly: DotRas (in DotRas.dll) Version: 1.3.5166.33435 (1.3.0.0)

Syntax

C#
public TObject this[
	int index
] { get; }
Visual Basic
Public ReadOnly Default Property Item ( 
	index As Integer
) As TObject
	Get
Visual C++
public:
property TObject default[int index] {
	TObject get (int index);
}
F#
member Item : 'TObject with get

Parameters

index
Type: System..::..Int32
The zero-based index of the entry to get.

Return Value

Type: TObject
An TObject object.

See Also