Macro basic programming: Function for Search Bar (Ctrl+F)

Hi!
I’ve found the function to display the search dialog (triggered by Ctrl+H), it’s .uno:SearchDialog like in :

dispatcher.executeDispatch(document, ".uno:SearchDialog", "", 0, Array())

But I haven’t found the function to display the search bar, at the bottom (triggered by Ctrl+F),
Does it exist?

Thanks a lot in advance!

Sub test_findbar
dim document as object
dim dispatcher as object

dispatcher = createUnoService("com.sun.star.frame.DispatchHelper")
dispatcher.executeDispatch(document, "vnd.sun.star.findbar:FocusToFindbar", "", 0, Array())
End Sub