interface XClipboardFactory in module com::sun::star::datatransfer::clipboard::

(Global Index)

Syntax

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

Description

Should be implemented by a clipboard factory that simplifies the creation of multiple clipboard instances.

See also

XClipboard

Method Summary

createClipboard Creates a new named clipboard instance.

Method Details



createClipboard

Syntax

com::sun::star::datatransfer::clipboard::XClipboard createClipboard (
string aName )
raises ( com::sun::star::lang::IllegalArgumentException );

Description

Creates a new named clipboard instance.

Returns

A newly created instance of a GenericClipboard implementation.

Parameter aName

The name the clipboard should have.

Throws

com::sun::star::lang::IllegalArgumentException If an empty string is passed as clipboard name.
Top of Page