BpmPropertyCollection.Item Property (String)
Gets or sets the object with the specified unique name.
Namespace: Microsoft.PerformancePoint.Scorecards
Assembly: Microsoft.PerformancePoint.Scorecards.Client (in Microsoft.PerformancePoint.Scorecards.Client.dll)
Syntax
'Declaration
Public Overridable Property Item ( _
uniqueName As String _
) As BpmProperty
Get
Set
'Usage
Dim instance As BpmPropertyCollection
Dim uniqueName As String
Dim value As BpmProperty
value = instance.Item(uniqueName)
instance.Item(uniqueName) = value
public virtual BpmProperty this[
string uniqueName
] { get; set; }
Parameters
uniqueName
Type: System.StringThe unique name of the object.
Property Value
Type: Microsoft.PerformancePoint.Scorecards.BpmProperty
Remarks
Get uses the internal hash table to find the value. If the unique name does not exist, it is added. Otherwise, the object is replaced.