QObject_findchildren
Returns all children of this object with the given name.
📝Syntax
hr = QObject_findchildren(h, objectName, recursive)
📥Input Arguments
Parameter Description
h an QObject handle.
objectName a string.
recursive a logical: true (The search is performed recursively).
📤Output Arguments
Parameter Description
hr a vector of QObject handle.
📄Description

Returns all children of this object with the given name.

💡Examples
h1 = errordlg()
h2 = errordlg()
hr = QObject_findchildren(QObject_root(), 'errordlg', true)
🔗See Also
QObject_set (set)QObject_get (get)
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub