Einzelnen Beitrag anzeigen

Hansi

Registriert seit: 8. Okt 2004
271 Beiträge
 
#3

Re: Fett/Kursiv/Unterstrichen im WebBrowser

  Alt 29. Apr 2006, 19:13
So sieht die Lösung aus:

Delphi-Quellcode:
...
private
    { Private-Deklarationen }
  function GetHTMLDocument2Ifc: IHTMLDocument2;
  protected
    property HTMLDocument2Ifc: IHTMLDocument2 read GetHTMLDocument2Ifc;
  public
    { Public-Deklarationen }
  end;

...

function TForm1.GetHTMLDocument2Ifc: IHTMLDocument2;
begin
  Result := WebBrowser1.Document as IHTMLDocument2;
end;

...

procedure TForm1.ToolButton1Click(Sender: TObject);
begin
  HTMLDocument2Ifc.execCommand('Bold', False, 0);
end;
Vielen Dank Frederic!
  Mit Zitat antworten Zitat