CubeDimensionPermissionCollection.Item[] Property

Definition

Overloads

Item[String]

Gets the CubeDimensionPermission, with the specified CubeDimensionID, from the collection.

Item[Int32]

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

Item[String]

Gets the CubeDimensionPermission, with the specified CubeDimensionID, from the collection.

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

Parameters

cubeDimensionId
String

The CubeDimensionID of the CubeDimensionPermission to be returned.

Property Value

The CubeDimensionPermission with the specified CubeDimensionID.

Exceptions

The collection doesn't contain a CubeDimensionPermission with the specified CubeDimensionID.

Applies to

Item[Int32]

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

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

Parameters

index
Int32

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

Property Value

The CubeDimensionPermission 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