Top   Module   Use   Manual   Index 
 EXPORTING SERVICES | METHODS' SUMMARY | METHODS' DETAILS 

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

interface XFrameLoader

Base Interface
com::sun::star::uno::XInterface



Known Services which Export this Interface

com::sun::star::frame::FrameLoader Derivations of this abstract service are used to load components into Frame s of the environment.

Methods' Summary

load starts the loading of the specified resource into the specified Frame .
cancel cancels the loading process.

Methods' Details

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

Description
starts the loading of the specified resource into the specified Frame .
cancel
 
[ 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