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