Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Creates and inserts a CubeDimensionPermission, with the specified identifier, into the collection at the specified index.
Namespace: Microsoft.AnalysisServices
Assembly: Microsoft.AnalysisServices (in Microsoft.AnalysisServices.dll)
Syntax
'Declaration
Public Function Insert ( _
index As Integer, _
cubeDimensionId As String _
) As CubeDimensionPermission
'Usage
Dim instance As CubeDimensionPermissionCollection
Dim index As Integer
Dim cubeDimensionId As String
Dim returnValue As CubeDimensionPermission
returnValue = instance.Insert(index, cubeDimensionId)
public CubeDimensionPermission Insert(
int index,
string cubeDimensionId
)
public:
CubeDimensionPermission^ Insert(
int index,
String^ cubeDimensionId
)
member Insert :
index:int *
cubeDimensionId:string -> CubeDimensionPermission
public function Insert(
index : int,
cubeDimensionId : String
) : CubeDimensionPermission
Parameters
- index
Type: System.Int32
The zero-based index at which the new CubeDimensionPermission will be inserted.
- cubeDimensionId
Type: System.String
The identifier of the CubeDimensionPermission to be inserted.
Return Value
Type: Microsoft.AnalysisServices.CubeDimensionPermission
A new, empty CubeDimensionPermission.
Exceptions
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | index is less than zero. -or- index is equal to or greater than [H:Microsoft.AnalysisServices.ModelComponentCollection.Count]. |