interface XPersist in module com::sun::star::io::

(Global Index)

Syntax

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

Description

makes it possible to write this object to an URL or read it from an URL.

Method Summary

write writes all the persistent data of the object to the URL.

read reads all the persistent data of the object from the URL.

Method Details



write

Syntax

void write (
string URL )
raises ( com::sun::star::io::IOException );

Description

writes all the persistent data of the object to the URL.


read

Syntax

void read (
string URL )
raises ( com::sun::star::io::IOException );

Description

reads all the persistent data of the object from the URL.

Top of Page