LOTUSSCRIPT LANGUAGE


Base classes
The syntax is:

[ Public | Private ] Class className


End Class
ElementDescription
Public, PrivatePublic specifies that the class is accessible outside the module in which it is defined. Private (default) specifies that the class is accessible only within the module where the class is defined.
classNameThe name of the class.
classBodyDeclares member variables, and declares and defines properties and methods. Member variables can have any data type LotusScript supports, and can be object reference variables of the class being defined. Methods can be functions and subs, including Sub New, which initializes class objects, and Sub Delete, which deletes class objects. You cannot declare a class member as Static.


See Also