Ricardo Aráoz wrote: > What other common arguments do Dabo ui classes accept? Or where can I > find them?
The other arguments to send are: + property settings + event handler settings So for example these would be equivalent: 1) txt = dabo.ui.dTextBox(self, FontBold=True, OnHit=myfunc) 2) txt = dabo.ui.dTextBox(self) txt.FontBold = True txt.bindEvent(dabo.dEvents.Hit, myfunc) Any property for a given class (check the API docs for the properties) can be sent as an argument to the constructor. Paul _______________________________________________ Post Messages to: Dabo-users@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/4a82f7e3.5070...@ulmcnett.com