CellPermissionCollection.Item[] Property

Definition

Overloads

Item[Int32]

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

Item[CellPermissionAccess]

Gets the CellPermission, with the specified access information, from the collection.

Item[Int32]

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

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

Parameters

index
Int32

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

Property Value

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

Item[CellPermissionAccess]

Gets the CellPermission, with the specified access information, from the collection.

public Microsoft.AnalysisServices.CellPermission this[Microsoft.AnalysisServices.CellPermissionAccess access] { get; }
member this.Item(Microsoft.AnalysisServices.CellPermissionAccess) : Microsoft.AnalysisServices.CellPermission
Default Public ReadOnly Property Item(access As CellPermissionAccess) As CellPermission

Parameters

access
CellPermissionAccess

The access information of the CellPermission to be returned.

Property Value

The CellPermission with the specified access information.

Exceptions

The collection doesn't contain a CellPermission with the specified access information.

Applies to