Show pageOld revisionsBacklinksAdd to bookBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== onCheck ====== Event of [[:scripting:api:list-pane-events:start|IListPaneEvents]] ===== Description ===== Called when user check some the item ===== Parameters ===== * [[:scripting:api:list-pane:start|IListPane]] **pPane** * [[:scripting:api:list-item:start|IListItem]] **pItem** ==== Return Value ==== * [[scripting:api:data-type:VARIANT_BOOL|VARIANT_BOOL]] **pbResult** ===== Syntax ===== ==== JavaScript ==== <code javascript> Appplication.onCheck = function(pItem) { return pbResult; }; </code>==== Visual Basic Script ==== <code vb> function onCheck(pItem) { return pbResult } Appplication.onCheck = onCheck </code>==== C++ ==== <code cpp> HRESULT CListPaneEvents::onCheck(IListPane* pPane, IListItem* pItem, VARIANT_BOOL* pbResult) { } </code>===== See Also ===== [[:scripting:api:list-pane-events:start|IListPaneEvents]] ~~NOTOC~~