CellPermissionCollection.Item[] Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.