OnAppEndWaitCursor Method

The client application is responsible for implementing an OnAppEndWaitCursor event handler for some of the supported FileNet Application Integration commands. This event handler method should cancel the display of the application's wait cursor. This method is only useful when the OnAppBeginWaitCursor method has previously been called.

Example
The following fragment is taken from the Add-In Sample Application.


HRESULT __stdcall CEventHandler::OnAppEndWaitCursor()
{
   // End display of the application's wait cursor.
   AfxGetMainWnd()->EndWaitCursor();
   return S_OK;
}
Parameters
None.
Return
The OnAppEndWaitCursor event handler method should return an HRESULT value of S_OK when successful.
See Also
OnAppBeginWaitCursor Method