DataPA Enterprise Dashboard Controls API Reference
Gets a Dashboard Object by searching all DashboardObjects in this ManagedDashboards tabs for the given ID.

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

Syntax

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

Parameters

ID
Type: System..::..String
The unique ID property of the DashboardObject to search for.

Return Value

Type: DashboardObject
The DashboardObject with the given ID (if it exists, else Nothing).

Remarks

Returns Nothing if a DashboardObject with the given ID does not exist in this Manageddashboard.

See Also