Re: Access to ScrollHeight Attribut?
profgrid.com

Hello Adrian:
procedure TForm1.ToolButton1Click(Sender: TObject);
var
D: IDispatch;
scrollHeight: Integer;
begin
if ProfDHTMLEdit21.GetDOM(D) then
begin
scrollHeight := ((D as IHTMLDocument2).body as IHTMLElement2).scrollHeight;
ShowMessage(IntToStr(scrollHeight))
end
end;
-Nicholas