DataPA Enterprise Dashboard Controls API Reference
Gets and sets a DashboardObject in this collection.

Namespace: DataPAEnterpriseDashboard
Assembly: DataPAEnterpriseDashboard (in DataPAEnterpriseDashboard.dll) Version: 1.0.90.0 (1.0.90.0)

Syntax

C#
public DashboardObject this[
	int Index
] { get; set; }
Visual Basic
Public Property Item ( 
	Index As Integer
) As DashboardObject
	Get
	Set
Visual C++
public:
virtual property DashboardObject^ Item[int Index] {
	DashboardObject^ get (int Index) sealed;
	void set (int Index, DashboardObject^ value) sealed;
}

Parameters

Index
Type: System..::..Int32
The index of the DashboardObject

Property Value

Type: DashboardObject
The DashboardObject you wish to place in the collection.

Return Value

Type: DashboardObject
The DashboardObject you wish to retrieve from the collection.

Remarks