LOTUSSCRIPT/COM/OLE CLASSES


Examples: Size property
This script gets the size of the current database.

Dim session As New NotesSession
Dim db As NotesDatabase
Set db = session.CurrentDatabase
Dim size As Double
size = db.Size

See Also