WebPageLoadAll Function

Action

Clears all suppress-file entries added by prior calls to the WebPageSuppress function. No files are suppressed any more.

Include file

WebAPI.bdh

Syntax

WebPageLoadAll(): boolean;

Return value

  • true if the suppress-file list is cleared successfully

  • false otherwise

Example

dcltrans
transaction TMain
begin
WebPageSuppress("http://mycompany.com/t?s=all");
WebPageUrl("http://mycompany.com/");
WebPageLoadAll();
WebPageUrl("http://mycompany.com/");
end TMain;