interface XRefreshable in module com::sun::star::util::

(Global Index)

Syntax

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

Description

is supported by objects with data that can be refreshed from a data source.

Method Summary

refresh refreshes the data of the object from the connected data source.

addRefreshListener adds the specified listener to receive the event "refreshed."

removeRefreshListener removes the specified listener.

Known Services Which Export this Interface

com::sun::star::form::component::DatabaseForm

com::sun::star::sheet::CellAreaLink

com::sun::star::sheet::DataPilotSource

com::sun::star::sheet::SheetLink

com::sun::star::sheet::DDELink

com::sun::star::sdbcx::Container

com::sun::star::sdb::DefinitionContainer

com::sun::star::text::TextFields

com::sun::star::text::TextDocument

Method Details



refresh

Syntax

void refresh ();

Description

refreshes the data of the object from the connected data source.


addRefreshListener

Syntax

oneway void addRefreshListener (
com::sun::star::util::XRefreshListener l );

Description

adds the specified listener to receive the event "refreshed."


removeRefreshListener

Syntax

oneway void removeRefreshListener (
com::sun::star::util::XRefreshListener l );

Description

removes the specified listener.

Top of Page