In the following line, what does the “0"” do and are there any other values that can be used? (I can’t find a reference for this command.)
fnDispatch = oDispatcher.executeDispatch(oFrame, ".uno:" & sCommand, "", 0, Args())
In the following line, what does the “0"” do and are there any other values that can be used? (I can’t find a reference for this command.)
fnDispatch = oDispatcher.executeDispatch(oFrame, ".uno:" & sCommand, "", 0, Args())
Hello,
That argument does nothing. From OOME (Andrew Pitonyak):
Optional search flags that indicate how to find the target frame. Use zero or blank
(see Listing 242), because it is not supported.
Further info can be found in that document in section 11. The Dispatcher
.
Also see → interface XDispatchHelper
Parameter SearchFlags
optional search parameter for finding the frame if no special TargetFrameName was used
Thank you. I could not find that reference!
I need a link to “11. The Dispatcher”
And I still can’t find it. I have looked several times and can not find what you are speaking of. Is there some reason why you are withholding information? A link would solve the issue.
The oome pdf, page 264. Thank you!