PagePasteΒΆ

PagePaste inserts clipboard data into a UniPlot document page. The function supports only the OLE format and the UniPlot format.

bool = PagePaste(hPage)

Return Value

bool TRUE if the function is successfully; otherwise FALSE.

Parameters

hPage

Identifies the page.

Comment

PagePaste is used internally by PageInsertFromClipboard for OLE- and UniPlot data.

. us.example

Example

Copies all given pages into one page

// hvSourcePage: Vector with page handles to copy
// hDestPage: page handle of the destination page
def my_copy_pages(hvSourcePage, hDestPage)
{
   EmptyClipboard();
   for (h in hvSourcePage) {
      b = PageCopyToClipboard(h);
      b = PagePaste(hDestPage);
   }
   EmptyClipboard();
   PageReplot(hDestPage);
   return b;
}

History

Version Description
5.9 New

id-1231727