At Method
Object List Next Object
Defined By: ObjectBox
Description:
Return the gadget that is at a particular position in the box.
Declaration:
Function At(ByVal pos As Integer) As ButtonGadget
Details:
This method will return the gadget that is at a particular position in the
box.
When using At, you should first return the position of the Gadget using Find,
then use that position with the At. The same gadget should be returned by both.
For example, the following should be true:
Gadget = At(ObjectBox.Find(Gadget))
The Find and At methods perform complementary functions.
See Also:
Position property