LibreOffice
LibreOffice 24.2 SDK API Reference
|
makes it possible to seek to a certain position within a stream. More...
import"XSeekable.idl";
Public Member Functions | |
void | seek ([in] hyper location) raises ( com::sun::star::lang::IllegalArgumentException, com::sun::star::io::IOException ) |
changes the seek pointer to a new location relative to the beginning of the stream. More... | |
hyper | getPosition () raises ( com::sun::star::io::IOException ) |
returns the current offset of the stream. More... | |
hyper | getLength () raises ( com::sun::star::io::IOException ) |
returns the length of the stream. More... | |
Public Member Functions inherited from XInterface | |
any | queryInterface ([in] type aType) |
queries for a new interface to an existing UNO object. More... | |
void | acquire () |
increases the reference counter by one. More... | |
void | release () |
decreases the reference counter by one. More... | |
makes it possible to seek to a certain position within a stream.
This interface should be supported, if it is possible to access the data at the new position quickly. You should not support this interface, if you have a continuous stream, for example, a video stream.
hyper getLength | ( | ) | ||
raises | ( | com::sun::star::io::IOException | ||
) |
returns the length of the stream.
hyper getPosition | ( | ) | ||
raises | ( | com::sun::star::io::IOException | ||
) |
returns the current offset of the stream.
void seek | ( | [in] hyper | location | ) | |
raises | ( | com::sun::star::lang::IllegalArgumentException, | |||
com::sun::star::io::IOException | |||||
) |
changes the seek pointer to a new location relative to the beginning of the stream.
This method changes the seek pointer so subsequent reads and writes can take place at a different location in the stream object. It is an error to seek before the beginning of the stream or after the end of the stream.
com::sun::star::lang::IllegalArgumentException | in case location is negative or greater than XSeekable::getLength(). |