| **Navigation:**  [[introduction.htm|Language Reference]] > [[chapter runtime properties.htm|App C - PROP: Runtime Properties]] > Complete Property List >====== PROP:Items ====== | [[prop iprequestcount.htm|{{btn_prev_n.gif|Previous page}}]][[chapter runtime properties.htm|{{btn_home_n.gif|Return to chapter overview}}]][[prop lastchancehook.htm|{{btn_next_n.gif|Next page}}]] | | || Returns or sets the number of entries visible in a LIST or COMBO control. **Example:** **Que     QUEUE** **       STRING(30)** **           END** **WinView   WINDOW('View'),AT(0,0,320,200),MDI,MAX,HVSCROLL,SYSTEM** **       LIST,AT(6,6,120,90),USE(?List),FORMAT('120L'),FROM(Q),IMM** **      END** ** CODE** ** OPEN(WinView)** ** SET(SomeFile)** ** LOOP ?List(PROP:Items} TIMES  !Fill display queue to limit of displayable items** **  NEXT(SomeFile)** **  Que = Fil:Record ** **  ADD(Que)** ** END** ** ACCEPT** ** END**