Gambas Documentation
Application Repository
Code Snippets
Compilation & Installation
Components
Controls pictures
Deprecated components
Developer Documentation
Development Environment Documentation
Documents
Error Messages
Gambas Playground
How To's
Language Index
Language Overviews
Arithmetical Functions
Arithmetic Operators
Array Declaration
Assignment Operators
Assignments
Binary Data Representation
Bits Manipulation Functions
Character Test Functions
Comparison methods
Complex numbers
Constant Declaration
Constant Expression
Conversion Functions
Datatype Functions
Datatypes
Date & Time Functions
Enumeration declaration
Error Management
Event Loop
Event Management
Events declaration
Expressions
External Function Management
File & Directory Functions
File & Directory Paths
File mode syntax
Floating Point Numbers
Formatting functions
Gambas Object Model
Global Special Event Handlers
Integer numbers
Intrinsic Functions
Language Constants
Localization and Translation Functions
Local Variable Declaration
Logarithms & Exponentials Functions
Logical Operators
Loop Control Structures
Method Declaration
Miscellaneous Control Structures
Miscellaneous Functions
Native Arrays
Native Container Classes
Object & Class Management
Operator Evaluation Order
Predefined Constants
Process Management
Property Declaration
Random Numbers Functions
Special Methods
Stream & Input/Output functions
String Functions
String Operators
Structure declaration
Test Control Structures & Functions
Trigonometric Functions
User-defined formats
Using reserved keywords as identifiers
Variable Declaration
Last Changes
Lexicon
README
Search the wiki
To Do
Topics
Tutorials
Wiki License
Wiki Manual

Object & Class Management

CLASS Declares the use of a class.
Class Many static methods to get information about classes.
CREATE PRIVATE Declares a class as non-creatable.
CREATE STATIC Declares a class as "auto-creatable".
EXPORT Declares a class as exported.
FAST
Since 3.2
Make all methods of the class compiled by the JIT compiler.
INHERITS Makes a class inherit another one.
IS Returns TRUE if an object is an instance of a class, or one of its descendants.
LAST Returns a reference to the object that raised the last event.
ME Returns a reference to the current object.
NEW Instanciates an object.
Object Many static methods relative to object management.
SUPER Returns a reference to the current object that will use the public symbols implementation of the inherited class.
USE
Since 3.7
Loads specific components the first time the class is used.