BrowserAPI
BrowserGetProxyAutoConfigFile( out sConfigUrl : string ): boolean;
| Parameter | Description | 
|---|---|
| sConfigUrl | A string buffer that receives the location of the PAC file. | 
true if successful
false otherwise
transaction TMain
var
  sConfigUrl: string;
begin
  BrowserStart(BROWSER_MODE_DEFAULT, 800, 600);
  BrowserSetProxyAutoConfigFile("http://proxy.mydomain.com/proxy.pac");  
  BrowserNavigate("www.mycompany.com");
  BrowserGetProxyAutoConfigFile(sConfigUrl);
end TMain;