| **Navigation:**  [[introduction.htm|Language Reference]] > [[chapter runtime properties.htm|App C - PROP: Runtime Properties]] > Runtime VIEW and FILE Properties >====== PROP:Held ====== | [[prop globalhelp.htm|{{btn_prev_n.gif|Previous page}}]][[chapter runtime properties.htm|{{btn_home_n.gif|Return to chapter overview}}]][[prop log.htm|{{btn_next_n.gif|Next page}}]] | | || Property of a FILE that returns whether the current record is held. Returns 1 if the record is held and an empty string ('') if not. (READ ONLY) **Example:** **FileName STRING(256)** **Customer FILE,DRIVER('Clarion')** **Record    RECORD** **Name       STRING(20)** **          END** **         END** ** CODE** ** OPEN(Customer)** ** SET(Customer)** ** LOOP** **  HOLD(Customer,1)** **  NEXT(Customer)** **  IF ERRORCODE() THEN BREAK END** **  IF Customer{****PROP:Held****} <;> ''** **   MESSAGE('Record Held')** **  END** ** END** ** RELEASE(Customer)**