interface XPrintable in module com::sun::star::view::

(Global Index)

Syntax

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

Description

represents something that can be printed.

Method Summary

getPrinter

setPrinter assigns a new printer to the object.

print prints the object.

Known Services Which Export this Interface

com::sun::star::document::OfficeDocument

Method Details



getPrinter

Syntax

sequence< com::sun::star::beans::PropertyValue > getPrinter ();

Returns

a descriptor of the current printer.

The parameters of the current printer are used for formatting.

See also

PrinterDescriptor

setPrinter

Syntax

void setPrinter (
sequence< com::sun::star::beans::PropertyValue > aPrinter )
raises ( com::sun::star::lang::IllegalArgumentException );

Description

assigns a new printer to the object.

The sequence is a PrinterDescriptor .

See also

PrinterDescriptor

print

Syntax

void print (
sequence< com::sun::star::beans::PropertyValue > xOptions )
raises ( com::sun::star::lang::IllegalArgumentException );

Description

prints the object.

See also

PrintOptions
Top of Page