====== onFocusLost ======
Event of [[:scripting:api:frame-events:start|IFrameEvents]]
===== Description =====
Called when focus set removed from the document
===== Parameters =====
* [[:scripting:api:text-view:start|ITextView]] **pView**
===== Syntax =====
==== JavaScript ====
Appplication.onFocusLost = function() {
};
==== Visual Basic Script ====
function onFocusLost()
{
}
Appplication.onFocusLost = onFocusLost
==== C++ ====
HRESULT CFrameEvents::onFocusLost(ITextView* pView)
{
}
===== See Also =====
[[:scripting:api:frame-events:start|IFrameEvents]]
~~NOTOC~~