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

(Global Index)

Syntax

interface XTextOutputStream : com::sun::star::io::XOutputStream ;

Description

makes it possible to write machine-independent simple data types to a stream.

Method Summary

writeString writes a string using the encoding defined by XTextOutputStream::setEncodingi .

setEncoding sets character encoding.

Method Details



writeString

Syntax

void writeString (
string aString )
raises ( com::sun::star::io::IOException );

Description

writes a string using the encoding defined by XTextOutputStream::setEncodingi .

Line breaks or delimiters that may be neccessary to support XTextInputStream::readLine and XTextInputStream::readString have to be added manually to the parameter string.

See also

setEncoding

See also

XTextInputStream::readLine

See also

XTextInputStream::readString

setEncoding

Syntax

void setEncoding (
string Encoding );

Description

sets character encoding.

Top of Page