LOTUSSCRIPT/COM/OLE CLASSES


Examples: IsGroup property
This script checks to see if the entry is a group.

Dim session As New NotesSession
Dim db As NotesDatabase
Dim acl As NotesACL
Dim entry As NotesACLEntry
Set db = session.CurrentDatabase
Set acl = db.ACL
Set entry = acl.GetEntry("Luscious Bao")
If entry.IsGroup Then
 Messagebox entry.Name & " is a group."
Else
 Messagebox entry.Name & " is not a group."
End If
Call acl.Save

See Also