TEXT %GetObjTechUnit( HBJ in objID ) |
| objID | Hodnota typu HBJ alebo INT. |
INT _hbj
TEXT _techUnit
; technické jednotky objektu U.TestTechUnit
_hbj := %StrToHBJ("U.TestTechUnit")
_techUnit := %GetObjTechUnit(_hbj) ; premenná _techUnit bude obsahovať technické jednotky objektu "U.TestTechUnit"
; s najvyššou pravdepodobnosťou neexistujúci objekt => _techUnit bude neplatná hodnota
_techUnit := %GetObjTechUnit(928374) |