| **Navigation:**  [[introduction.htm|Language Reference]] > [[chapter runtime properties.htm|App C - PROP: Runtime Properties]] > Complete Property List >====== PROP:MinHeight ====== | [[propmsgmodedefault.htm|{{btn_prev_n.gif|Previous page}}]][[chapter runtime properties.htm|{{btn_home_n.gif|Return to chapter overview}}]][[prop minwidth.htm|{{btn_next_n.gif|Next page}}]] | | || PROP:MinHeight sets or returns the minimum height of a resizable window. Regarding REPORT structures, this property can also be used to set or get the mimimum value of a target report band's dimensions. **Example:** **WinView WINDOW('View'),AT(0,0,320,200),MDI,MAX,HVSCROLL,SYSTEM,RESIZE,|** **         LIST,AT(6,6,120,90),USE(?List),FORMAT('120L'),FROM(Q),IMM** **        END** ** CODE** ** OPEN(WinView)** ** WinView{PROP:MaxHeight} = 200    !Set boundaries beyond which the user cannot ** ** WinView{PROP:MaxWidth} = 320     ! resize the window ** ** WinView{PROP:MinHeight} = 90** ** WinView{PROP:MinWidth} = 120** ** ACCEPT** ** END**