ClassSel

Post Reply
User avatar
Otto
Posts: 4470
Joined: Fri Oct 07, 2005 7:07 pm
Contact:

ClassSel

Post by Otto »

could someone provide a short translation from these links
or a description of CLASSSEL()

Thanks in advance
Otto

http://fivetechsoft.com/forums/viewtopi ... t=classsel

http://fivetechsoft.com/forums/viewtopi ... t=classsel

http://fivetechsoft.com/forums/viewtopi ... t=classsel


local o := ErrorNew() // Vamos a ver las DATAs de un objeto error
local aInfo := o:ClassSel()

for n = 1 to Len( aInfo )
if Left( aInfo[ n ], 1 ) == "_"
MsgInfo( SubStr( aInfo[ n ], 2 ) )
endif
next
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Post by Antonio Linares »

Otto,

It returns an array with all the names of the methods and datas of the class.

Datas are returned twice, with "_" before for assignment, and without it to retrive their values.
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Otto
Posts: 4470
Joined: Fri Oct 07, 2005 7:07 pm
Contact:

Post by Otto »

Antonio, thank you.
Regards,
Otto
Post Reply