ManagedDashboardDashboardObjectFromID Property |
|
DataPA OpenAnalytics 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 public DashboardObject this[
string ID
] { get; }
Public ReadOnly Property DashboardObjectFromID (
ID As String
) As DashboardObject
Get
public:
virtual property DashboardObject^ DashboardObjectFromID[String^ ID] {
DashboardObject^ get (String^ ID) sealed;
}
function get_DashboardObjectFromID(ID);
Parameters
- ID
- Type: SystemString
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 Returns Nothing if a DashboardObject with the given ID does not exist in this Manageddashboard.
See Also