https://bugs.documentfoundation.org/show_bug.cgi?id=169962

--- Comment #2 from Werner Tietz <[email protected]> ---
works here

```
global inlinevisible as boolean

sub toggle_input

dim document   as object
dim dispatcher as object
document   = ThisComponent.CurrentController.Frame
dispatcher = createUnoService("com.sun.star.frame.DispatchHelper")

dim args1(0) as new com.sun.star.beans.PropertyValue
args1(0).Name = "InputLineVisible"
args1(0).Value = inlinevisible

dispatcher.executeDispatch(document, ".uno:InputLineVisible", "", 0, args1())
inlinevisible = not inlinevisible

end sub

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

Reply via email to