DataPA Enterprise Dashboard Controls API Reference
Gets a Dashboard Object by searching all DashboardObjects in this ManagedDashboards tabs for the given ID.
Namespace: DataPAEnterpriseDashboardAssembly: 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:
DashboardObjectThe DashboardObject with the given ID (if it exists, else Nothing).
Remarks
See Also