I use Calc to show absolutely full-screen displays. This means turning off scroll-bars, sheet names and column/row headers. I can do all this from Tools->Options, but I would prefer to have it all in a macro so that I can readily switch from full-screen to normal. I have this so far …
ThisComponent.CurrentController.VerticalScrollBar = false
ThisComponent.CurrentController.HorizontalScrollBar = false
ThisComponent.CurrentController.SheetTabs = false
Is there an equivalent for Column/Row Headers?