Back to X64dbg

_plugin_menuentrysetchecked

docs/developers/plugins/API/menuentrysetchecked.rst

2026.04.20767 B
Original Source

_plugin_menuentrysetchecked

This function sets the checked state of a menu entry. Notice that this function sets a menu item as checkable and thus it will toggle per default on click. If you want different behavior, make sure to call this function on every click with your desired state.

::

void _plugin_menuentrysetchecked(
    int pluginHandle, //plugin handle
    int hEntry, //handle of the menu entry
    bool checked //new checked state
); 

Parameters

:pluginHandle: Handle of the calling plugin. :hEntry: Menu handle from a previously-added child menu or from the main plugin menu. :checked: New checked state.

Return Values

This function does not return a value.