:: com :: sun :: star :: sheet ::

interface XSheetPastable
Base Hierarchy
::com::sun::star::uno::XInterface
 |
 +-XSheetPastable
[ DEPRECATED ]
Description
represents a sheet into which contents of the clipboard can be pasted.

Methods' Summary
paste pastes the contents of the clipboard at the specified position on the sheet.
pasteFormat pastes the contents of the clipboard at the specified position on the sheet, using the specified format.
pasteCellRange pastes clipboard data from a cell range into another cell range.
Methods' Details
paste
void
paste(
 
[in] ::com::sun::star::table::CellAddress
 
aDestination );

Description
pastes the contents of the clipboard at the specified position on the sheet.
pasteFormat
void
pasteFormat(
 
[in] ::com::sun::star::table::CellAddress
[in] string
 
aDestination,
aFormat );

Description
pastes the contents of the clipboard at the specified position on the sheet, using the specified format.
pasteCellRange
void
pasteCellRange(
 
[in] ::com::sun::star::table::CellRangeAddress
[in] PasteOperation
[in] short
[in] boolean
[in] boolean
[in] boolean
[in] CellInsertMode
 
aDestination,
nOperation,
nContents,
bSkipEmpty,
bTranspose,
bAsLink,
nInsert );

Description
pastes clipboard data from a cell range into another cell range.

The contents of the clipboard must be from a cell range.

Top of Page