Files
docs-desktop/dotnet-desktop-guide/framework/winforms/controls/using-the-managed-html-document-object-model.md
T
Andy De George c0ba284473 Initial winforms content migrated (#18)
* Merge winforms framework content to working branch (#14)

* Breadcrumb / TOC / Move net5 to net folder (#15)

* change path from net5 to net

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Add .net 5 winforms placeholder article (#16)

* added some metadata and adjusted net5 placeholder

* corrections

* corrections

* corrections

* Test1

* Swapping landing page vs concept

* fix links

* Fix links

* Fix desc
2020-09-01 16:26:21 -07:00

2.1 KiB

title, ms.date, helpviewer_keywords, ms.assetid
title ms.date helpviewer_keywords ms.assetid
Using the Managed HTML Document Object Model 03/30/2017
managed HTML DOM
a017dd5c-cd7b-47e4-952c-f4f54cb48409

Using the Managed HTML Document Object Model

The managed HTML document object model (DOM) provides a wrapper based on the .NET Framework for the HTML classes exposed by Internet Explorer. Use these classes to manipulate HTML pages hosted in the xref:System.Windows.Forms.WebBrowser control, or to build new pages from the beginning.

In This Section

How to: Access the Managed HTML Document Object Model
Describes how to obtain a valid instance of xref:System.Windows.Forms.HtmlDocument from either a Windows Forms application or a xref:System.Windows.Forms.UserControl hosted in Internet Explorer.

How to: Access the HTML Source in the Managed HTML Document Object Model
Describes how to obtain the original, unmodified HTML source, and how to obtain the "live" source that reflects the current state of the DOM.

How to: Change Styles on an Element in the Managed HTML Document Object Model
Describes how to manipulate styles, which are used to control the visual display of elements.

Accessing Frames in the Managed HTML Document Object Model
Describes what frames and framesets are, and how to access the DOM of a frame.

Accessing Unexposed Members on the Managed HTML Document Object Model
Describes how to access members of the underlying DOM that do not have a managed equivalent.

Reference

xref:System.Windows.Forms.HtmlDocument

xref:System.Windows.Forms.HtmlElement

xref:System.Windows.Forms.HtmlWindow

WebBrowser Control