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

(Global Index)

Syntax

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

Method Summary

load starts the loading of the specified resource into the specified Frame .

cancel cancels the loading process.

Known Services Which Export this Interface

com::sun::star::frame::FrameLoader

Method Details



load

Syntax

oneway void load (
com::sun::star::frame::XFrame aFrame,
string aURL,
sequence< com::sun::star::beans::PropertyValue > aArgs,
com::sun::star::frame::XLoadEventListener xListener );

Description

starts the loading of the specified resource into the specified Frame .


cancel

Syntax

oneway void cancel ();

Description

cancels the loading process.

After returning from this call, neither the frame nor the load-event-listener specified in "load" may be called back.

Top of Page