https://bz.apache.org/ooo/show_bug.cgi?id=127468

--- Comment #18 from mroe <[email protected]> ---
Tools → Options…: OpenOffice Calc: [x] Page breaks

Simply uncheck it. Then you get your “work view”.
(I never changed this setting because there was no need for me.)

I don't see any benefit for a new view.



Assign the following macro to a button:

Sub toggleBreakLines_mroe()
Dim Doc As Object
Dim CurrentController As Object
Dim bToggle As Boolean
Doc = ThisComponent
CurrentController = Doc.getCurrentController()
bToggle = CurrentController.getPropertyValue( "ShowPageBreaks" )
CurrentController.setPropertyValue( "ShowPageBreaks", Not bToggle )
End Sub

-- 
You are receiving this mail because:
You are the assignee for the issue.

Reply via email to