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. ====== onNavigate ====== Event of [[:scripting:api:output-pane-events:start|IOutputPaneEvents]] ===== Description ===== Called when user does a double click on the line ===== Parameters ===== * [[:scripting:api:output-pane:start|IOutputPane]] **pPane** * [[scripting:api:data-type:long|long]] **nLine** * [[scripting:api:data-type:long|long]] **nColumn** ==== Return Value ==== * [[scripting:api:data-type:VARIANT_BOOL|VARIANT_BOOL]] **pbResult** ===== Syntax ===== ==== JavaScript ==== <code javascript> Appplication.onNavigate = function(nLine, nColumn) { return pbResult; }; </code>==== Visual Basic Script ==== <code vb> function onNavigate(nLine, nColumn) { return pbResult } Appplication.onNavigate = onNavigate </code>==== C++ ==== <code cpp> HRESULT COutputPaneEvents::onNavigate(IOutputPane* pPane, long nLine, long nColumn, VARIANT_BOOL* pbResult) { } </code>===== See Also ===== [[:scripting:api:output-pane-events:start|IOutputPaneEvents]] ~~NOTOC~~