interface XSheetPastable in module com::sun::star::sheet::

(Global Index)

[ DEPRECATED ]

Syntax

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

Description

represents a sheet into which contents of the clipboard can be pasted.

Method 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.

Method Details



paste

Syntax

void paste (
com::sun::star::table::CellAddress aDestination );

Description

pastes the contents of the clipboard at the specified position on the sheet.


pasteFormat

Syntax

void pasteFormat (
com::sun::star::table::CellAddress aDestination,
string aFormat );

Description

pastes the contents of the clipboard at the specified position on the sheet, using the specified format.


pasteCellRange

Syntax

void pasteCellRange (
com::sun::star::table::CellRangeAddress aDestination,
com::sun::star::sheet::PasteOperation nOperation,
short nContents,
boolean bSkipEmpty,
boolean bTranspose,
boolean bAsLink,
com::sun::star::sheet::CellInsertMode 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