hr = QObject_findchildren(h, objectName, recursive)
| Parameter | Description |
|---|---|
| h | an QObject handle. |
| objectName | a string. |
| recursive | a logical: true (The search is performed recursively). |
| Parameter | Description |
|---|---|
| hr | a vector of QObject handle. |
Returns all children of this object with the given name.
h1 = errordlg()
h2 = errordlg()
hr = QObject_findchildren(QObject_root(), 'errordlg', true)
| Version | Description |
|---|---|
| 1.0.0 | initial version |