row or folder?

Buon giorno

qualcuno sa dirmi se possibile sapere se una riga di una listbox stata inserita come row o come folder?

esempio:

for i as integer = 0 to listbox_esempio.listcount-1
if row then
->fa questo
else
->fa quello
end if
next

grazie

http://documentation.xojo.com/index.php/ListBox.RowIsFolder

Hello Christian,
my XOJO version is 2014 2.1
and this function does not seem to be available.
Do you know other ways?
Thank you
Enzo

In that version there is no built in way. You need to keep track for yourself if a row is a folder. This is not too hard to do, just use the rowtag.

OK
Thank you