Re: [Gambas-user] Property override

2017-04-27 Thread Leon Davis
Thank you On Thu, Apr 27, 2017 at 9:14 AM, Tobias Boege wrote: > On Thu, 27 Apr 2017, Leon Davis wrote: > > Using Gambas v3.9.2 and GTK+3 > > > > I am creating a component and would like to override the Caption > property. > > > > > > > > Public Const _Properties as String = "*,Caption" > > > >

Re: [Gambas-user] Property override

2017-04-27 Thread Tobias Boege
On Thu, 27 Apr 2017, Leon Davis wrote: > Using Gambas v3.9.2 and GTK+3 > > I am creating a component and would like to override the Caption property. > > > > Public Const _Properties as String = "*,Caption" > > Property Read {Caption} as String > > > > Causes an "improper override error". I

[Gambas-user] Property override

2017-04-27 Thread Leon Davis
Using Gambas v3.9.2 and GTK+3 I am creating a component and would like to override the Caption property. Public Const _Properties as String = "*,Caption" Property Read {Caption} as String Causes an "improper override error". I've also tried encasing the word Caption in the _Properties state