Re: [Gambas-user] MyObject.Property vs MyObject.Variable

2011-06-20 Thread Bruce Bruen
On 20/06/11 15:20, Demosthenes Koptsis wrote: > Hi list, > > i study the objects these days and i saw that we can declare PUBLIC VARS > in a class and also PROPERTIES. > > So we can have code like > > PUBLIC X AS Integer > cThing.X > > or > > PROPERTY X AS Integer > cThing.X > > - I understand that

[Gambas-user] MyObject.Property vs MyObject.Variable

2011-06-19 Thread Demosthenes Koptsis
Hi list, i study the objects these days and i saw that we can declare PUBLIC VARS in a class and also PROPERTIES. So we can have code like PUBLIC X AS Integer cThing.X or PROPERTY X AS Integer cThing.X - I understand that a property is shown at Properties List in IDE and a Vars not. - Proper