| **Navigation:**  [[introduction.htm|Language Reference]] > [[chapter runtime properties.htm|App C - PROP: Runtime Properties]] > Complete Property List >====== PROP:ThemeActive ====== | [[prop textrightmargin.htm|{{btn_prev_n.gif|Previous page}}]][[chapter runtime properties.htm|{{btn_home_n.gif|Return to chapter overview}}]][[prop thread.htm|{{btn_next_n.gif|Next page}}]] | | || Returns a Boolean value (TRUE) if a Windows theme is currently active. This is usually a SYSTEM, READONLY property, but can also be used to test a specific control. **Example:** **IF SYSTEM{PROP:ThemeActive} = TRUE   !If a theme is active** **!get new font size and set for target controls** ** Do ProcessNewFontSize  ** **END** ** ** **!or:** **IF ?Button{PROP:ThemeActive} = TRUE   !If a theme on a button is active** **!get new font size and set for target control** **  ProcessNewFontSize(?Button)** **END**