CubeDimensionPermissionCollection.Item Property (String)
Gets the CubeDimensionPermission, with the specified identifier, from the collection.
Namespace: Microsoft.AnalysisServices
Assembly: Microsoft.AnalysisServices (in Microsoft.AnalysisServices.dll)
Syntax
'Declaration
Public ReadOnly Default Property Item ( _
cubeDimensionId As String _
) As CubeDimensionPermission
Get
'Usage
Dim instance As CubeDimensionPermissionCollection
Dim cubeDimensionId As String
Dim value As CubeDimensionPermission
value = instance(cubeDimensionId)
public CubeDimensionPermission this[
string cubeDimensionId
] { get; }
public:
property CubeDimensionPermission^ default[String^ cubeDimensionId] {
CubeDimensionPermission^ get (String^ cubeDimensionId);
}
member Item : CubeDimensionPermission
JScript supports the use of indexed properties, but not the declaration of new ones.
Parameters
- cubeDimensionId
Type: System.String
The identifier of the CubeDimensionPermission to be returned.
Property Value
Type: Microsoft.AnalysisServices.CubeDimensionPermission
The CubeDimensionPermission specified by the identifier.
Exceptions
Exception | Condition |
---|---|
ArgumentNullException | cubeDimensionID is a null reference (Nothing in Visual Basic). |
ItemNotFoundException | cubeDimensionID does not exist in the collection. |