DataPA Enterprise Dashboard Controls API Reference
Gets a ControlPanelObject from a given ID.

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

Syntax

C#
public Object this[
	string ID
] { get; }
Visual Basic
Public ReadOnly Property ControlPanelObjectFromID ( 
	ID As String
) As Object
	Get
Visual C++
public:
virtual property Object^ ControlPanelObjectFromID[String^ ID] {
	Object^ get (String^ ID) sealed;
}

Parameters

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

Property Value

Type: Object

Return Value

Type: Object
A ControlPanelObject from a given ID.

Remarks

If the ID does not match any ControlPanelObjects, returns nothing.

See Also