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. ====== onScroll ====== Event of [[:scripting:api:frame-events:start|IFrameEvents]] ===== Description ===== Called after scroll of the view ===== Parameters ===== * [[:scripting:api:text-view:start|ITextView]] **pView** * [[scripting:api:data-type:ULONG|ULONG]] **nScrollX** * [[scripting:api:data-type:ULONG|ULONG]] **nScrollY** ===== Syntax ===== ==== JavaScript ==== <code javascript> Appplication.onScroll = function(nScrollX, nScrollY) { }; </code>==== Visual Basic Script ==== <code vb> function onScroll(nScrollX, nScrollY) { } Appplication.onScroll = onScroll </code>==== C++ ==== <code cpp> HRESULT CFrameEvents::onScroll(ITextView* pView, ULONG nScrollX, ULONG nScrollY) { } </code>===== See Also ===== [[:scripting:api:frame-events:start|IFrameEvents]] ~~NOTOC~~