2021.2

Table Of Contents
Paste()
Not available in MetaPage
Inserts the contents of the metadata clipboard as the last child node of the current node. This
removes the node from the clipboard, making it empty after the paste operation.
Returns:
Reference to the top node being pasted.
Exception:
l EOleException: The node type of the clipboard and the current node don't match. For
example, trying to paste a MetaGroup in a MetaGroup or a MetaPage in a MetaDocument.
PasteAt(Integer Index)
Not available in MetaPage
Inserts the contents of the metadata clipboard at the specified index in the current node. This
removes the node from the clipboard, making it empty after the paste operation.
Parameters:
Index
Specifies where in the child list to add the node. The node is inserted before the node at the
specified index. In other words, the node being inserted becomes the node found at Index. To
add a node at the start of the collection, use 0. To add it at the end, use Node.Count.
Returns:
Reference to the top node being pasted.
Exceptions:
l EOleException: The node type of the clipboard and the current node don't match. For
example, trying to paste a MetaGroup in a MetaGroup or a MetaPage in a MetaDocument.
l EOleException: The value of Index is invalid.
Page 227