.. highlightlang:: us .. _clipboard_format_name: clipboard_format_name ===================== .. index:: clipboard_format_name .. us.tag clipboard_format_name NOTREADYENGLISH clipboard New590 :ref:`clipboard_format_name` returns the format name for a given format index. See :ref:`clipboard_enum`. .. function:: ssName = clipboard_format_name(iFormat) .. us.return **Return Value** *ssName* is the name of a format. .. us.params **Parameters** .. uparam:: iFormat *iFormat* is the index of a format. .. 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_enum` :sub:`id-1764389`