LOTUSSCRIPT LANGUAGE
Defines a class with its member variables and procedures.
Syntax
[ Public | Private ] Class className [ As baseClass ]
classBody
End Class
Elements
Public | Private
A class is Private by default.
The Public keyword cannot be used in a product object script or %Include file in a product object script, except to declare class members. You must put such Public declarations in (Globals).
Rules for defining classes:
A class definition can include a definition for the destructor sub, named Delete. If the definition exists, LotusScript calls this sub whenever it deletes an object of that class.
Example See Also