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

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

interface XSynchronousFrameLoader

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

Description
loads a resource into a Frame .

Unlike the XFrameLoader interface, this loading will be synchronous.



Known Services which Export this Interface

com::sun::star::frame::SynchronousFrameLoader 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
 
boolean
load(
[ in ] sequence< com::sun::star::beans::PropertyValue > aDescriptor,
[ in ] com::sun::star::frame::XFrame xFrame );

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

Use a MediaDescriptor to describe the document for loading. true is returned if loading is successful, otherwise false .

cancel
 
void
cancel();
Description
cancels the loading process.

Top of Page