Method FindChild
FindChild(ObjectUniqueId?)
Gets child with the specified id.
public virtual AbstractControl? FindChild(ObjectUniqueId? id)
Parameters
id
ObjectUniqueId?Child control id.
Returns
FindChild(Func<AbstractControl, bool>, bool)
Searches for the child control that meets the specified criteria.
public AbstractControl? FindChild(Func<AbstractControl, bool> testFunc, bool recursive = false)
Parameters
testFunc
Func<AbstractControl, bool>Function that returns True if the child control meets the specified criteria.
recursive
boolWhether to search for the child control recursively.