interface XDispatchProvider in module com::sun::star::frame::

(Global Index)

Syntax

interface XDispatchProvider : com::sun::star::uno::XInterface ;

Description

provides XDispatch interfaces for certain functions which are useful at the UI.

Method Summary

queryDispatch searches for an XDispatch for the specified URL within the specified target frame.

queryDispatches

Known Services Which Export this Interface

com::sun::star::sdb::DataSourceBrowser

com::sun::star::frame::Frame

com::sun::star::frame::Controller

Method Details



queryDispatch

Syntax

com::sun::star::frame::XDispatch queryDispatch (
com::sun::star::util::URL aURL,
string aTargetFrameName,
long nSearchFlags );

Description

searches for an XDispatch for the specified URL within the specified target frame.

See also

XFrame::findFrame

See also

queryDispatches

queryDispatches

Syntax

sequence< com::sun::star::frame::XDispatch > queryDispatches (
sequence< com::sun::star::frame::DispatchDescriptor > aDescripts );

Returns

multiple dispatch interfaces for the specified descriptors at once.

Actually this method is redundant to XDispatchProvider::queryDispatch to avoid multiple remote calls.

Top of Page