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. ====== onJobFinished ====== Event of [[:scripting:api:frame-events:start|IFrameEvents]] ===== Description ===== Called after background worker job has been finished ===== Parameters ===== * [[:scripting:api:text-document:start|ITextDocument]] **pDocument** * [[scripting:api:data-type:BSTR|BSTR]] **sJobID** * [[scripting:api:data-type:long|long]] **nLineFrom** * [[scripting:api:data-type:long|long]] **nLineTo** ===== Syntax ===== ==== JavaScript ==== <code javascript> Appplication.onJobFinished = function(sJobID, nLineFrom, nLineTo) { }; </code>==== Visual Basic Script ==== <code vb> function onJobFinished(sJobID, nLineFrom, nLineTo) { } Appplication.onJobFinished = onJobFinished </code>==== C++ ==== <code cpp> HRESULT CFrameEvents::onJobFinished(ITextDocument* pDocument, BSTR sJobID, long nLineFrom, long nLineTo) { } </code>===== See Also ===== [[:scripting:api:frame-events:start|IFrameEvents]] ~~NOTOC~~