https://issues.apache.org/ooo/show_bug.cgi?id=99429

hanya <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #8 from hanya <[email protected]> ---
But working with InteractionHandler option for filter might be enough in some
case: 

Sub foobar
  handler = CreateUnoListener("InteractionHandler_",
"com.sun.star.task.XInteractionHandler2")
  dim args1(4) as new com.sun.star.beans.PropertyValue
  ' ...
  args1(3).Name = "InteractionHandler"
  args1(3).Value = handler
  ' export with filter options
End Sub


Sub InteractionHandler_handle(req)
  ' called but does nothing
End Sub

Function InteractionHandler_handleInteractionRequest(req) As Boolean
  InteractionHandler_handleInteractionRequest = True
End Function

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

Reply via email to