Examples: DeleteRole method

This script removes the Developer role from the ACL of the current database.

Dim session As New NotesSession
Dim db As NotesDatabase
Dim acl As NotesACL
Set db = session.CurrentDatabase
Set acl = db.ACL
Call acl.DeleteRole( "Developer" )
Call acl.Save