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