Examples: MaxSize property

This following script prints the size, quota, and maximum size of the current database.

Dim db As NotesDatabase
Dim session As New NotesSession
Set db = session.CurrentDatabase
Print "Database size is: ", db.Size
Print "Database Quota is: ", db.SizeQuota
Print "Database Maximum Size is: ", db.MaxSize, "K"