There isn't one; you'll need to implement it yourself.  For example --


Function Children(c as RectControl) as RectControl()
  dim theList(-1) as RectControl
  if c.Window is nil then
    return theList
  end if
  for i as Integer = 0 to c.Window.ControlCount - 1
    if c.Window.Control(i) IsA RectControl then
      if c.Window.Control(i).Parent is me then
        theList.Append c.Window.Control(i)
      end if
    end if
  next
  return theList
End Function

Charles Yeomans


On Nov 29, 2006, at 12:01 PM, Chuck Pelto wrote:

What is the call that will identify all the child objects inside of a control?

I see where child objects can find their parent object. But not the other way around.

Regards....

_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>

Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>

Reply via email to