.. highlightlang:: us .. _clipboard_enum: clipboard_enum ============== .. index:: clipboard_enum .. us.tag clipboard_enum NOTREADYENGLISH clipboard New590 :ref:`clipboard_enum` returns an integer array of clipboard formats. .. function:: iFormats = clipboard_enum() .. us.return **Return Value** *iFormats* is an integer array. In case of an error the function returns -1. .. us.example **Example** :: iFormat = clipboard_enum(); if (iFormat[1] != -1) { for (i in iFormat) print clipboard_format_name(i); } .. us.history **History** .. list-table:: :header-rows: 1 * - Version - Description * - 5.9 - New .. seealso:: :ref:`overview-clipboard`, :ref:`clipboard_format_name` :sub:`id-1852964`