INT %HI_FindItemData( INT in refId, INT in root, INT in itemHandle, INT in position, INT in data, ) |
| refId | Reference to Windows control (reference variable). |
| root | Identifier of item - branch the data will be searched in. If the value of the parameter is 0, all tree view will be searched. |
| item | Identifier of item the data are to be searched from (excluding it). If the value of the parameter is 0, there will be searched all the branch. |
| position | Position of data in item (1...15). |
| data | A searched data (optional type). |
1. Browsing all the tree, the searched data are "888" on 5th position.%HI_FindItemData(_tree, 0, 0, 5, 888) |
%HI_FindItemData(_tree, 1, 0, 10, "Zilina") |
%HI_FindItemData(_tree, 1, 12, 1, "Martin") |