Jump to content

API Component.FindChild: Difference between revisions

From Flowcode Help
JonnyW (talk | contribs)
XML import API changes
JonnyW (talk | contribs)
No edit summary
Line 21: Line 21:
[[Variable types|HANDLE]]
[[Variable types|HANDLE]]


''<span style="color:red;">No additional information</span>''
A handle to the child of ''Current'' whose name matches ''ChildName''




==Detailed description==
==Detailed description==
''<span style="color:red;">No additional information</span>''
This call will search the components owned and in [[Component Tree#Scope|scope]] for the non-case sensitive ''ChildName''.
 
This call is unnecessary if 'this' is passed as ''Current'' and ''ChildName'' is a literal string. In this case it is more efficient to use the constant variable which will point to the child component.





Revision as of 08:27, 7 June 2013

<sidebar>API contents</sidebar> Finds a named object that is part of the component

Class hierarchy

Component

FindChild

Parameters

HANDLE Current

Object to search children of
The default value for this parameter is: this

STRING ChildName

Name of the child to search for


Return value

HANDLE

A handle to the child of Current whose name matches ChildName


Detailed description

This call will search the components owned and in scope for the non-case sensitive ChildName.

This call is unnecessary if 'this' is passed as Current and ChildName is a literal string. In this case it is more efficient to use the constant variable which will point to the child component.


Examples

Calling in a calculation

  • Declare a variable 'result' of type HANDLE
  • Add to a calculation icon:
    result = ::Component.FindChild(current, "childname")

No additional information