TPreviewHTML Properties

  • Busy
  • Homepage
  • Searchpage

  • property Busy

    Type : Boolean ;

    Description :
      Returns a Boolean value indicating the current state of the browser.
      Example : This property will returns true when browser is loading HTML .
      See also :  OnStateChange

    property Homepage

    Type :String;

    Description :
      The homepage address where the browser will load when GoHomepage method is called.
      Example :
      procedure GoHomePageButtonClick(Sender:TObject);
      begin
        PreviewHTML1.Homepage='http://www.borland.com/';
        PreviewHTML1.GoHomepage;
      end;
      If this property is blank (Homepage=' ') the Homepage will set in MS-IE is used.
      See also :  GoHomepage

    property Searchpage

    Type :String;

    Description :
      The searchpage address where the browser will load when GoSearchpage method is called.
      Example :
      procedure GoSearchpageButtonClick(Sender:TObject);
      begin
        PreviewHTML1.Searchpage='http://www.microsoft.com/intl/access/allinone.asp';
       PreviewHTML1.GoSearchpage;
      end;
      If this property is blank (Searchpage=' ') the Searchpage will set in MS-IE is used.
      See also :  GoSearchpage

    TPreviewHTML Properties   Gotop