Link Search Menu Expand Document

HtmlView.IsBusy Method

Explanation Returns whether the current state is page loading.
Call format HtmlView1.IsBusy( )
Return value Returns $TRUE if the state is loading a page, $FALSE otherwise.
Arguments None
Exception EXT-27 Initialization has not been completed
Example of use
    if (^.HtmlView1.IsBusy() == $TRUE) {
        ^.HtmlView.Stop();
    }
    
Related item