Package | Description |
---|---|
com.aspose.html | |
com.aspose.html.dom |
Modifier and Type | Method and Description |
---|---|
HTMLCollection |
HTMLDocument.getAnchors() |
HTMLCollection |
HTMLDocument.getApplets()
A collection of all the
OBJECT elements that include
applets and APPLET (deprecated) elements in a document. |
HTMLCollection |
HTMLMapElement.getAreas()
The list of areas defined for the image map.
|
HTMLCollection |
HTMLTableRowElement.getCells()
The collection of cells in this row.
|
HTMLCollection |
HTMLFormElement.getElements()
Returns a collection of all form control elements in the form.
|
HTMLCollection |
IHTMLFormElement.getElements()
Gets the collection of the child form elements.
|
HTMLCollection |
HTMLDocument.getForms()
A collection of all the forms of a document.
|
HTMLCollection |
HTMLDocument.getImages() |
HTMLCollection |
HTMLDocument.getLinks()
A collection of all
AREA elements and anchor (
A ) elements in a document with a value for the
href attribute. |
HTMLCollection |
HTMLDataListElement.getOptions()
The collection of
OPTION elements contained by this
element. |
HTMLCollection |
HTMLTableElement.getRows()
Returns the table's
TFOOT , or null if none
exists. |
HTMLCollection |
HTMLTableSectionElement.getRows()
The collection of rows in this table section.
|
HTMLCollection |
HTMLTableElement.getTBodies()
Returns a collection of the table bodies (including implicit ones).
|
Modifier and Type | Method and Description |
---|---|
int |
HTMLElement.getRowIndexInScopeOfCollection(HTMLCollection collection)
Returns index of object in a scope of
collection
|
Modifier and Type | Method and Description |
---|---|
HTMLCollection |
Document.getChildren()
Returns the child elements.
|
HTMLCollection |
DocumentFragment.getChildren()
Returns the child elements of current element.
|
HTMLCollection |
Element.getChildren()
Returns the child elements of current element.
|
HTMLCollection |
IParentNode.getChildren()
Returns the child elements.
|
HTMLCollection |
Document.getElementsByClassName(String classNames)
Returns a live NodeList object containing all the elements in the document that have all the classes specified in argument.
|
HTMLCollection |
Element.getElementsByClassName(String classNames)
Returns a live NodeList object containing all the elements in the document that have all the classes specified in argument.
|
HTMLCollection |
Document.getElementsByTagName(String tagname)
Returns a NodeList of all the Elements in document order with a given tag name and are contained in the document.
|
HTMLCollection |
Element.getElementsByTagName(String name)
Returns a NodeList of all descendant Elements with a given tag name, in document order.
|
HTMLCollection |
Document.getElementsByTagNameNS(String namespaceURI,
String localName)
Returns a NodeList of all the Elements with a given local name and namespace URI in document order.
|
HTMLCollection |
Element.getElementsByTagNameNS(String namespaceURI,
String localName)
Returns a NodeList of all the descendant Elements with a given local name and namespace URI in document order.
|