Get the html code of the webbrowser selected area in Dephi

Source: Internet
Author: User
Get the html code of the webbrowser selected area in Dephi
Author: Source: Release Date: 2008-05-21

This is a question from the Forum. The sample code is as follows, mainly to understand the Document Object.

// ------ This forum does not support delphi code styles

Unit Unit1;

Interface

Uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, OleCtrls, SHDocVw, StdCtrls, mshtml;

Type
TForm1 = class (TForm)
WebBrowser1: TWebBrowser;
Button1: TButton;
Memo1: TMemo;
Procedure FormCreate (Sender: TObject );
Procedure Button1Click (Sender: TObject );
Private
{Private declarations}
Public
{Public declarations}
End;

VaR
Form1: tform1;

Implementation

{$ R *. DFM}

Procedure tform1.formcreate (Sender: tobject );
Begin
Webbrowser1.navigate ('www .csdn.net ');
End;

Procedure tform1.button1click (Sender: tobject );
VaR DOC: mshtml. ihtmldocument2;
VaR select: mshtml. ihtmltxtrange;
Begin
DOC: = self. webbrowser1.document as mshtml. ihtmldocument2;
Select: = Doc. selection. createRange () as mshtml. ihtmltxtrange;
Memo1.text: = select.html text;
End;

End.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.