.. highlightlang:: us .. index:: SetClipboardObject .. _setclipboardobject: SetClipboardObject ================== .. us.tag SetClipboardObject ENGLISH FILE_MISC clipboard New5600 :ref:`SetClipboardObject` writes an UniScript object into the clipboard. .. function:: bool = SetClipboardObject(obj) .. us.return **Return Value** *bool* is TRUE (1) if the object was written successfully otherwise the function returns FALSE (0). .. us.params **Parameters** .. uparam:: obj *obj* is the object to be copied to the clipboard. .. us.example **Example** :: obj = [. Engine = 123.123, Gearbox = "p12"]; SetClipboardObject(obj); .. us.history **History** .. list-table:: :header-rows: 1 * - Version - Description * - R2014 - New. .. seealso:: :ref:`overview-files`, :ref:`overview-clipboard`, :ref:`GetClipboardText`, :ref:`GetClipboardObject`, :ref:`EmptyClipboard` :sub:`id-741054`