| **Navigation:**  [[introduction.htm|Language Reference]] > [[chapter runtime properties.htm|App C - PROP: Runtime Properties]] > Complete Property List >====== PROP:BreakVar ====== | [[prop both.htm|{{btn_prev_n.gif|Previous page}}]][[chapter runtime properties.htm|{{btn_home_n.gif|Return to chapter overview}}]][[prop buffer.htm|{{btn_next_n.gif|Next page}}]] | | || Sets the variable for a BREAK structure within a REPORT. **Example:** **Report  REPORT,AT(1000,2000,6000,7000),PRE(RPT),FONT('Arial',10,,FONT:regular),THOUS** **Break1   BREAK(ORD:CustNumber),USE(?Break1)** **Break2    BREAK(DTL:OrderNumber),USE(?Break2)** **                  HEADER,AT(,,,2167)** **                  END** **detail         DETAIL,AT(,,,385)** **                  END** **                  FOOTER,PAGEAFTER(-1)** **                  END** **               END** **               FOOTER,PAGEAFTER(-1),AT(,,,1385)** **               END** **            END** **            FOOTER,AT(1000,9000,6000,1000)** **            END** **         END** ** CODE** ** OPEN(Report)** ** Report$?Break1{PROP:BreakVar} = ORD:CustName  !Change the break variable for Break1**