.. highlightlang:: us .. index:: GetClipboardObject .. _getclipboardobject: GetClipboardObject ================== .. us.tag GetClipboardObject ENGLISH FILE_MISC clipboard New5600 :ref:`GetClipboardObject` reads an UniScript object from the clipboard. .. function:: obj = GetClipboardObject() .. us.return **Return Value** *obj* is the object from the clipboard (see :ref:`SetClipboardObject`). .. us.example **Example** :: obj = [. Engine = 123.123, Gearbox = "p12"]; EmptyClipboard(); SetClipboardObject(obj); if (clipboard_is("CF_UniScriptObject")) { o = GetClipboardObject(); } .. us.history **History** .. list-table:: :header-rows: 1 * - Version - Description * - R2014 - New. .. seealso:: :ref:`overview-files`, :ref:`overview-clipboard`, :ref:`SetClipboardText`, :ref:`SetClipboardObject`, :ref:`EmptyClipboard` :sub:`id-921278`