| **Navigation:**  [[introduction.htm|Language Reference]] > [[chapter runtime properties.htm|App C - PROP: Runtime Properties]] > Complete Property List >====== PROP:Checked ====== | [[prop charset.htm|{{btn_prev_n.gif|Previous page}}]][[chapter runtime properties.htm|{{btn_home_n.gif|Return to chapter overview}}]][[prop child.htm|{{btn_next_n.gif|Next page}}]] | | || Returns the current display state of a CHECK control--checked (1) or un-checked (''). (READ ONLY). PROP:Checked can also be used with menu items that have the CHECK attribute applied. **Example:** **WinView WINDOW('Child One'),AT(0,0,320,200),MDI,MAX,HVSCROLL** **     CHECK('Check Me'),AT(20,0,20,20),USE(CheckVar)** **    END** ** CODE** ** OPEN(WinView)** ** IF ?CheckVar{PROP:Checked} = TRUE  !Is it checked?** **  !Do something** ** END  ** ** ACCEPT** ** END**