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

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

Syntax

C#
public ControlPanelObject this[
	string ID
] { get; set; }
Visual Basic
Public Property Item ( 
	ID As String
) As ControlPanelObject
	Get
	Set
Visual C++
public:
virtual property ControlPanelObject^ Item[String^ ID] {
	ControlPanelObject^ get (String^ ID) sealed;
	void set (String^ ID, ControlPanelObject^ value) sealed;
}

Parameters

ID
Type: System..::..String
The ID of the ControlPanelObject

Property Value

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

Return Value

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

Remarks