When an object is created in Dabo, there are several methods you can add code to in order to affect the creation process. In general, you should avoid overriding the __init__() method, since there is a lot of stuff that happens there, and if you don't call the superclass method at the right time, you could create a mess.

We call these methods Hook Methods, since they allow you to hook in your code without worrying about overriding any framework behavior. They are guaranteed to be empty methods in the framework that are called at specific points; if you don't use them, nothing happens.

The methods are:

subtopics: