:: com :: sun :: star :: datatransfer :: clipboard ::

interface XClipboardFactory
Description
Should be implemented by a clipboard factory that simplifies the creation of multiple clipboard instances.
See also
XClipboard

Methods' Summary
createClipboard Creates a new named clipboard instance.  
Methods' Details
createClipboard
XClipboard
createClipboard( [in] 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