Author Topic: Return UITable Children  (Read 2535 times)

Harsul

  • Guest
Return UITable Children
« on: July 20, 2012, 11:53:58 AM »
Hi.

  1. List<Transform> UITable.children [get]
How exactly can i return the UITable Childrens?
i don't really understand it, could someone help/explain it to me?

Thanks!

PhilipC

  • Guest
Re: Return UITable Children
« Reply #1 on: July 20, 2012, 02:16:34 PM »
.children is just a property (in this case its read only) to get the children you must first have the table as a variable (say UITable myTable) and then you could do List<Transform> tableChildren = myTable.children;

Harsul

  • Guest
Re: Return UITable Children
« Reply #2 on: July 20, 2012, 02:59:40 PM »
.children is just a property (in this case its read only) to get the children you must first have the table as a variable (say UITable myTable) and then you could do List<Transform> tableChildren = myTable.children;

Oh okay thank you :).