CellPermissionCollection.Remove Method
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
Remove(CellPermission) |
Removes the specified CellPermission from the collection. |
Remove(CellPermissionAccess) |
Removes the CellPermission with the specified access information from the collection. |
Remove(CellPermission, Boolean) |
Removes the specified CellPermission from the collection. |
Remove(CellPermissionAccess, Boolean) |
Removes the CellPermission with the specified access information from the collection. |
Remove(CellPermission)
Removes the specified CellPermission from the collection.
public void Remove (Microsoft.AnalysisServices.CellPermission item);
override this.Remove : Microsoft.AnalysisServices.CellPermission -> unit
Public Sub Remove (item As CellPermission)
Parameters
- item
- CellPermission
The CellPermission to be removed.
Exceptions
The specified item is a null reference (Nothing in Visual Basic).
Applies to
Remove(CellPermissionAccess)
Removes the CellPermission with the specified access information from the collection.
public void Remove (Microsoft.AnalysisServices.CellPermissionAccess access);
override this.Remove : Microsoft.AnalysisServices.CellPermissionAccess -> unit
Public Sub Remove (access As CellPermissionAccess)
Parameters
- access
- CellPermissionAccess
The access information of the CellPermission to be removed.
Applies to
Remove(CellPermission, Boolean)
Removes the specified CellPermission from the collection.
public void Remove (Microsoft.AnalysisServices.CellPermission item, bool cleanUp);
override this.Remove : Microsoft.AnalysisServices.CellPermission * bool -> unit
Public Sub Remove (item As CellPermission, cleanUp As Boolean)
Parameters
- item
- CellPermission
The CellPermission to be removed.
- cleanUp
- Boolean
True, if referencing objects are to be deleted; otherwise, false.
Exceptions
The specified item is a null reference (Nothing in Visual Basic).
Remarks
This API supports the product infrastructure and is not intended to be used directly from your code.
Applies to
Remove(CellPermissionAccess, Boolean)
Removes the CellPermission with the specified access information from the collection.
public void Remove (Microsoft.AnalysisServices.CellPermissionAccess access, bool cleanUp);
override this.Remove : Microsoft.AnalysisServices.CellPermissionAccess * bool -> unit
Public Sub Remove (access As CellPermissionAccess, cleanUp As Boolean)
Parameters
- access
- CellPermissionAccess
The access information of the CellPermission to be removed.
- cleanUp
- Boolean
True, if referencing objects are to be deleted; otherwise, false.
Remarks
This API supports the product infrastructure and is not intended to be used directly from your code.