PerspectiveActionCollection.Item[] Property

Definition

Overloads

Item[String]

Gets the PerspectiveAction, with the specified ActionID, from the collection.

Item[Int32]

Gets the PerspectiveAction, at the specified index, from the collection.

Item[String]

Gets the PerspectiveAction, with the specified ActionID, from the collection.

public Microsoft.AnalysisServices.PerspectiveAction this[string actionId] { get; }
member this.Item(string) : Microsoft.AnalysisServices.PerspectiveAction
Default Public ReadOnly Property Item(actionId As String) As PerspectiveAction

Parameters

actionId
String

The ActionID of the PerspectiveAction to be returned.

Property Value

The PerspectiveAction with the specified ActionID.

Exceptions

The collection doesn't contain a PerspectiveAction with the specified ActionID.

Applies to

Item[Int32]

Gets the PerspectiveAction, at the specified index, from the collection.

public Microsoft.AnalysisServices.PerspectiveAction this[int index] { get; }
member this.Item(int) : Microsoft.AnalysisServices.PerspectiveAction
Default Public ReadOnly Property Item(index As Integer) As PerspectiveAction

Parameters

index
Int32

The zero-based index of the PerspectiveAction to be returned.

Property Value

The PerspectiveAction at the specified index.

Exceptions

The specified index is not a valid value (less than zero or bigger then the total number of elements).

Applies to