.. highlightlang:: us .. index:: RegDelete .. _regdelete: RegDelete ========= .. us.tag RegDelete ENGLISH New300 Registry Changed5405 Changed5604 :ref:`RegDelete` deletes the named registry value of the current key. .. function:: bool = RegDelete(ssKey) bool = RegDelete(ssKey, bRecursive) bool = RegDelete(ssKey, bRecursive, options) .. us.return **Return Value** If the function succeeds, the return value is TRUE (1); otherwise it is FALSE (0). .. us.params **Parameters** .. uparam:: ssKey Name of the key to delete. .. uparam:: bRecursive Indicates recursive delete operation is requested. .. uparam:: options *options* is 0x0200 (KEY_WOW64_32KEY) or 0x0100 (KEY_WOW64_64KEY). This parameter is optional. Default value depends on the bit value of uniplot.exe. .. us.example **Example** :: b = RegConnect("HKEY_CURRENT_USER"); b = RegOpen("Software\\RSB\\UniPlot"); // Deletes the named registry value of the current key. print RegDelete("Stringtable"); .. us.history **History** .. list-table:: :header-rows: 1 * - Version - Description * - R2014.4 - Parameter *options* added. * - R2012.5 - New parameter *bRecursive*. * - 3.0 - New. .. seealso:: :ref:`overview-application-object`, :ref:`RegConnect` :sub:`id-1667016`