Examples: AddRole method

This script adds a Developer role to 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.AddRole( "Developer" )
Call acl.Save