Click or drag to resize
Aspose.Html Namespace

The Aspose.Html namespace contains classes and methods to manipulate HTML documents, whether simple or complex and on the fly. Aspose.HTML for .NET allows developers to Insert, Remove, Replace HTML nodes, extract CSS style information, Navigate through HTML document either by NodeIterator, TreeWalker that are provided by Traversal Specifications, XPath or CSS selector queries. It also offers the scripting which allows to manipulate HTML DOM via JavaScript. As well as HTML, this API also provides the capabilities to load EPUB and MHTML. Aspose APIs are famous for their inter file format conversion features and this API also provides the capabilities to load HTML file and render the output in PDF, XPS and raster image formats including JPEG, PNG, BMP and TIFF.

Classes
  ClassDescription
Public classArrayBuffer
The ArrayBuffer object is used to represent a generic, fixed-length raw binary data buffer.
Public classCode exampleConfiguration

Represents the configuration context object that is used to set up the environment settings for the application. Managing configuration you can override document style applying a custom user stylesheet, or handle any web requests from the application as well as to configure scripts policy. Details are in Environment Configuration guide.

Public classFloat32Array
Represents an array of 32-bit floating point numbers (corresponding to the C float data type) in the platform byte order.
Public classFloat64Array
Represents an array of 64-bit floating point numbers (corresponding to the C float data type) in the platform byte order.
Public classFontsSettings
Represents fonts handling settings.
Public classHTMLAddressElement
The address element. See the ADDRESS element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLAnchorElement
The anchor element. See the A element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLAppletElement
An embedded Java applet. See the APPLET element definition in HTML 4.01. This element is deprecated in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLAreaElement
Client-side image map area definition. See the AREA element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLBaseElement
Document base URI [IETF RFC 2396]. See the BASE element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLBaseFontElement
Base font. See the BASEFONT element definition in HTML 4.01. This element is deprecated in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLBodyElement
The HTML document body. This element is always present in the DOM API, even if the tags are not present in the source document. See the BODY element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLBRElement
Force a line break. See the BR element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLButtonElement
Push button. See the BUTTON element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLCanvasElement
The HTMLCanvasElement interface provides properties and methods for manipulating the layout and presentation of canvas elements. The HTMLCanvasElement interface also inherits the properties and methods of the HTMLElement interface.
Public classHTMLDataListElement
The datalist element represents a set of option elements that represent predefined options for other controls. See also the HTML 5.2 W3C Recommendation.
Public classHTMLDirectoryElement
Directory list. See the DIR element definition in HTML 4.01. This element is deprecated in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classCode exampleHTMLDivElement
Generic block container. See the DIV element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLDListElement
Definition list. See the DL element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classCode exampleHTMLDocument

Represents an HTML document. All top level HTML objects are added to this object. This class represents the HTML page as what we see in browser. All forms, tables, scripts, ... are added to the HTML page via the interfaces of this class. HTMLDocument is html implementation of most general Document interface and both are core or root point of DOM - Document Object Model. These concepts are in full accordance with officical web development basis or standards. For the purposes of web development, you can generally think of HTMLDocument as an alias for Document, upon which HTMLDocument is based.

Public classHTMLElement
All HTML element interfaces derive from this class. Elements that only expose the HTML core attributes are represented by the base HTMLElement interface. These elements are as follows: special: SUB, SUP, SPAN, BDOfont: TT, I, B, U, S, STRIKE, BIG, SMALL phrase: EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, ACRONYM, ABBRlist: DD, DTNOFRAMES, NOSCRIPTADDRESS, CENTERThe style attribute of an HTML element is accessible through the ElementCSSInlineStyle interface which is defined in the CSS module [DOM Level 2 Style Sheets and CSS].

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLFieldSetElement
Organizes form controls into logical groups. See the FIELDSET element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLFontElement
Local change to font. See the FONT element definition in HTML 4.01. This element is deprecated in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLFormElement
The FORM element encompasses behavior similar to a collection and an element. It provides direct access to the contained form controls as well as the attributes of the form element. See the FORM element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLFrameElement
Create a frame. See the FRAME element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLFrameSetElement
Create a grid of frames. See the FRAMESET element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLHeadElement
Document head information. See the HEAD element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLHeadingElement
For the H1 to H6 elements. See the H1 element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLHRElement
Create a horizontal rule. See the HR element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLHtmlElement
Root of an HTML document. See the HTML element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLIFrameElement
Inline subwindows. See the IFRAME element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLImageElement
Embedded image. See the IMG element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classCode exampleHTMLInputElement

Form control. Depending upon the environment in which the page is being viewed, the value property may be read-only for the file upload input type. For the "password" input type, the actual value returned may be masked to prevent unauthorized use. See the INPUT element definition in [HTML 4.01].See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLIsIndexElement
This element is used for single-line text input. See the ISINDEX element definition in HTML 4.01. This element is deprecated in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLLabelElement
Form field label text. See the LABEL element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLLegendElement
Provides a caption for a FIELDSET grouping. See the LEGEND element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLLIElement
List item. See the LI element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLLinkElement
The LINK element specifies a link to an external resource, and defines this document's relationship to that resource (or vice versa). See the LINK element definition in HTML 4.01 (see also the LinkStyle interface in the StyleSheet module [DOM Level 2 Style Sheets and CSS]).

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLMapElement
Client-side image map. See the MAP element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLMenuElement
Menu list. See the MENU element definition in HTML 4.01. This element is deprecated in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLMetaElement
This contains generic meta-information about the document. See the META element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLModElement
Notice of modification to part of a document. See the INS and DEL element definitions in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLNoScriptElement
Script statements. See the NOSCRIPT element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLObjectElement
Generic embedded object.In principle, all properties on the object element are read-write but in some environments some properties may be read-only once the underlying object is instantiated. See the OBJECT element definition in [HTML 4.01].

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLOListElement
Ordered list. See the OL element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLOptGroupElement
Group options together in logical subdivisions. See the OPTGROUP element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLOptionElement
A selectable choice. See the OPTION element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLParagraphElement
Paragraphs. See the P element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLParamElement
Parameters fed to the OBJECT element. See the PARAM element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLPreElement
Preformatted text. See the PRE element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLQuoteElement
For the Q and BLOCKQUOTE elements. See the Q element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLScriptElement
Script statements. See the SCRIPT element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLSelectElement
The select element allows the selection of an option. The contained options can be directly accessed through the select element as a collection. See the SELECT element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLStyleElement
Style information. See the STYLE element definition in HTML 4.01, the CSS module [DOM Level 2 Style Sheets and CSS] and the LinkStyle interface in the StyleSheets module [DOM Level 2 Style Sheets and CSS].

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLTableCaptionElement
Table caption See the CAPTION element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLTableCellElement
The object used to represent the TH and TDelements. See the TD element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLTableColElement
Regroups the COL and COLGROUP elements. See the COL element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLTableElement
The create* and delete* methods on the table allow authors to construct and modify tables. [HTML 4.01] specifies that only one of each of the CAPTION, THEAD, and TFOOT elements may exist in a table. Therefore, if one exists, and the createTHead() or createTFoot() method is called, the method returns the existing THead or TFoot element. See the TABLE element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLTableRowElement
A row in a table. See the TR element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLTableSectionElement
The THEAD, TFOOT, and TBODYelements.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLTemplateElement
The template element
Public classHTMLTextAreaElement
Multi-line text field. See the TEXTAREA element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLTitleElement
The title element. See the TITLE element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLUListElement
Unordered list. See the UL element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

Public classHTMLUnknownElement
The Unknown html element.
Public classInt16Array
Represents an array of twos-complement 16-bit signed integers in the platform byte order.
Public classInt32Array
Represents an array of twos-complement 32-bit signed integers in the platform byte order.
Public classInt8Array
Represents an array of twos-complement 8-bit signed integers.
Public classCode exampleLicense
Provides methods to license the component.
Public classCode exampleMetered
Provides methods to set metered key.
Public classMimeType
Represents an Internet Media Types
Public classPlatformException
Represents the base class for all exceptions that may occur during the application execution.
Public classTypedArray
TypedArray objects present an array-like view of an underlying binary data buffer.
Public classTypedArrayT
TypedArray objects present an array-like view of an underlying binary data buffer.
Public classUint16Array
Represents an array of twos-complement 16-bit unsigned integers in the platform byte order.
Public classUint32Array
Represents an array of twos-complement 32-bit unsigned integers in the platform byte order.
Public classUint8Array
Represents an array of twos-complement 8-bit unsigned integers.
Public classUint8ClampedArray
Represents an array of 8-bit unsigned integers clamped to 0-255; if you specified a value that is out of the range of [0,255], 0 or 255 will be set instead;
Public classUrl
Provides an object representation of a universal identifier (URL).
Interfaces
  InterfaceDescription
Public interfaceIDocumentFragmentElement
Represents common interface for all Document Fragment elements.
Public interfaceIFormAssociatedElement
A form-associated element can have a relationship with a form element, which is called the element's form owner. If a form-associated element is not associated with a form element, its form owner is said to be null. A form-associated element is, by default, associated with its nearest ancestor form element (as described below), but, if it is reassociateable, may have a form attribute specified to override this.
Public interfaceIHTMLFormElement
Represents a base interface that should be implemented by HTML Form Elements.
Public interfaceIHTMLOptionsCollection
An HTMLOptionsCollection is a list of nodes representing HTML option element. An individual node may be accessed by either ordinal index or the node's name or id attributes. Collections in the HTML DOM are assumed to be live meaning that they are automatically updated when the underlying document is changed.

See also the Document object Model (DOM) Level 2 HTML Specification. @since DOM Level 2

Public interfaceIUrlSearchParams
Provides methods to work with URLs query string.
Enumerations
  EnumerationDescription
Public enumerationSandbox
A sandboxing flag set is a set of zero or more of the following flags, which are used to restrict the abilities that potentially untrusted resources.