KpiCollection.Item Property (String)
Gets the specified Kpi from the collection by its name. In Microsoft Visual C#, this property is the indexer for the KpiCollection class.
Namespace: Microsoft.AnalysisServices.AdomdServer
Assembly: msmgdsrv (in msmgdsrv.dll)
Syntax
'Declaration
Public ReadOnly Default Property Item ( _
name As String _
) As Kpi
Get
'Usage
Dim instance As KpiCollection
Dim name As String
Dim value As Kpi
value = instance(name)
public Kpi this[
string name
] { get; }
public:
property Kpi^ default[String^ name] {
Kpi^ get (String^ name);
}
member Item : Kpi
JScript supports the use of indexed properties, but not the declaration of new ones.
Parameters
- name
Type: System.String
The name of the Kpi to find.
Property Value
Type: Microsoft.AnalysisServices.AdomdServer.Kpi
The specified Kpi.
See Also