例: AddRole method

次のスクリプトは、現在のデータベースの ACL に [Developer] のロールを追加します。

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