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

(Global Index)

Syntax

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

Description

loads a resource into a Frame .

Unlike the XFrameLoader interface, this loading will be synchronous.

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::SynchronousFrameLoader

Method Details



load

Syntax

boolean load (
sequence< com::sun::star::beans::PropertyValue > aDescriptor,
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

Syntax

void cancel ();

Description

cancels the loading process.

Top of Page