HTMLInputElement Class |
See also the Document object Model (DOM) Level 2 HTML Specification.
Namespace: Aspose.Html
The HTMLInputElement type exposes the following members.
Name | Description | |
---|---|---|
![]() | Accept |
A comma-separated list of content types that a server processing this
form will handle correctly. See the accept attribute definition in
HTML 4.01.
|
![]() | AccessKey |
A single character access key to give access to the form control. See
the accesskey attribute definition in HTML 4.01.
|
![]() | Align |
Aligns this object (vertically or horizontally) with respect to its
surrounding text. See the align attribute definition in HTML 4.01.
This attribute is deprecated in HTML 4.01.
|
![]() | Alt |
Alternate text for user agents not rendering the normal content of this
element. See the alt attribute definition in HTML 4.01.
|
![]() | Attributes |
A NamedNodeMap containing the attributes of this node (if it is an Element) or null otherwise.
(Inherited from Element.) |
![]() | BaseURI |
The absolute base URI of this node or null if the implementation wasn't able to obtain an absolute URI.
(Inherited from Node.) |
![]() | Checked |
When the type attribute of the element has the value
"radio" or "checkbox", this represents the current state of the form
control, in an interactive user agent. Changes to this attribute
change the state of the form control, but do not change the value of
the HTML checked attribute of the INPUT element.During the handling
of a click event on an input element with a type attribute that has
the value "radio" or "checkbox", some implementations may change the
value of this property before the event is being dispatched in the
document. If the default action of the event is canceled, the value
of the property may be changed back to its original value. This means
that the value of this property during the handling of click events
is implementation dependent.
|
![]() | ChildElementCount |
Returns the current number of element nodes that are children of this element. 0 if this element has no child nodes that are of nodeType 1.
(Inherited from Element.) |
![]() | ChildNodes |
A NodeList that contains all children of this node. If there are no children, this is a NodeList containing no nodes..
(Inherited from Node.) |
![]() | Children |
Returns the child elements of current element.
(Inherited from Element.) |
![]() | ClassName |
The class attribute of the element. This attribute has been renamed due
to conflicts with the "class" keyword exposed by many languages. See
the class attribute definition in HTML 4.01.
(Inherited from HTMLElement.) |
![]() | DefaultChecked |
When type has the value "radio" or "checkbox", this
represents the HTML checked attribute of the element. The value of
this attribute does not change if the state of the corresponding form
control, in an interactive user agent, changes. See the checked
attribute definition in HTML 4.01.
|
![]() | DefaultValue |
When the type attribute of the element has the value
"text", "file" or "password", this represents the HTML value
attribute of the element. The value of this attribute does not change
if the contents of the corresponding form control, in an interactive
user agent, changes. See the value attribute definition in HTML 4.01.
|
![]() | Dir |
Specifies the base direction of directionally neutral text and the
directionality of tables. See the dir attribute definition in HTML
4.01.
(Inherited from HTMLElement.) |
![]() | Disabled |
The control is unavailable in this context. See the disabled attribute
definition in HTML 4.01.
|
![]() | Files |
The files IDL attribute allows scripts to access the element’s selected files.
On getting, if the IDL attribute applies, it must return a FileList object that represents the current selected files.
The same object must be returned until the list of selected files changes. If the IDL attribute does not apply, then it must instead return null. [FILEAPI]
|
![]() | FirstChild |
The first child of this node. If there is no such node, this returns null.
(Inherited from Node.) |
![]() | FirstElementChild |
Returns the first child element node of this element. null if this element has no child elements.
(Inherited from Element.) |
![]() | Form |
Returns the FORM element containing this control. Returns
null if this control is not within the context of a
form.
|
![]() | Id |
The element's identifier. See the id attribute definition in HTML 4.01.
(Inherited from HTMLElement.) |
![]() | InnerHTML |
Returns a fragment of HTML or XML that represents the element's contents.
Can be set, to replace the contents of the element with nodes parsed from the given string.
(Inherited from Element.) |
![]() | Lang |
Language code defined in RFC 1766. See the lang attribute definition in
HTML 4.01.
(Inherited from HTMLElement.) |
![]() | LastChild |
The last child of this node. If there is no such node, this returns null.
(Inherited from Node.) |
![]() | LastElementChild |
Returns the last child element node of this element. null if this element has no child elements.
(Inherited from Element.) |
![]() | List |
The list attribute is used to identify an element that lists predefined options suggested to the user.
If present, its value must be the ID of a datalist element in the same document.
|
![]() | LocalName |
Returns the local part of the qualified name of this node.
For nodes of any type other than ELEMENT_NODE and ATTRIBUTE_NODE and nodes created with a DOM Level 1 method, such as Document.createElement(), this is always null.
(Inherited from Element.) |
![]() | MaxLength |
Maximum number of characters for text fields, when type
has the value "text" or "password". See the maxlength attribute
definition in HTML 4.01.
|
![]() | Name |
Form control or object name when submitted with a form. See the name
attribute definition in HTML 4.01.
|
![]() | NamespaceURI |
The namespace URI of this node, or null if it is unspecified.
(Inherited from Element.) |
![]() | NextElementSibling |
Returns the next sibling element node of this element. null if this element has no element sibling nodes that come after this one in the document tree.
(Inherited from Element.) |
![]() | NextSibling |
The node immediately following this node. If there is no such node, this returns null.
(Inherited from Node.) |
![]() | NodeName |
The name of this node, depending on its type.
(Inherited from Element.) |
![]() | NodeType |
A code representing the type of the underlying object.
(Inherited from Element.) |
![]() | NodeValue |
The value of this node, depending on its type.
(Inherited from Node.) |
![]() | OuterHTML |
Returns a fragment of HTML or XML that represents the element and its contents.
Can be set, to replace the element with nodes parsed from the given string.
(Inherited from Element.) |
![]() | OwnerDocument |
The Document object associated with this node. This is also the Document object used to create new nodes. When this node is a Document or a DocumentType which is not used with any Document yet, this is null.
(Inherited from Node.) |
![]() | ParentElement |
Gets the parent Element of this node.
(Inherited from Node.) |
![]() | ParentNode |
The parent of this node. All nodes, except Attr, Document, DocumentFragment, Entity, and Notation may have a parent. However, if a node has just been created and not yet added to the tree, or if it has been removed from the tree, this is null.
(Inherited from Node.) |
![]() | Prefix |
The namespace prefix of this node, or null if it is unspecified. When it is defined to be null, setting it has no effect
(Inherited from Element.) |
![]() | PreviousElementSibling |
Returns the previous sibling element node of this element. null if this element has no element sibling nodes that come before this one in the document tree.
(Inherited from Element.) |
![]() | PreviousSibling |
The node immediately preceding this node. If there is no such node, this returns null.
(Inherited from Node.) |
![]() | ReadOnly |
This control is read-only. Relevant only when type has the
value "text" or "password". See the readonly attribute definition in
HTML 4.01.
|
![]() | SchemaTypeInfo |
The type information associated with this element.
(Inherited from Element.) |
![]() | ShadowRoot |
Returns shadowRoot stored on this element or null if it's closed.
(Inherited from Element.) |
![]() | Size |
Size information. The precise meaning is specific to each type of
field. See the size attribute definition in HTML 4.01.
@version DOM Level 2
|
![]() | Src |
When the type attribute has the value "image", this
attribute specifies the location of the image to be used to decorate
the graphical submit button. See the src attribute definition in HTML
4.01.
|
![]() | Style |
Represents Represents a style attribute that allows author to directly apply style information to specific element.
(Inherited from HTMLElement.) |
![]() | TabIndex |
Index that represents the element's position in the tabbing order. See
the tabindex attribute definition in HTML 4.01.
|
![]() | TagName |
The name of the element.
(Inherited from Element.) |
![]() | TextContent |
This attribute returns the text content of this node and its descendants. When it is defined to be null, setting it has no effect. On setting, any possible children this node may have are removed and, if it the new string is not empty or null, replaced by a single Text node containing the string this attribute is set to.
(Inherited from Element.) |
![]() | Title |
The element's advisory title. See the title attribute definition in
HTML 4.01.
(Inherited from HTMLElement.) |
![]() | Type |
The type of control created (all lower case). See the type attribute definition in HTML 4.01. @version DOM Level 2
|
![]() | UseMap |
Use client-side image map. See the usemap attribute definition in HTML
4.01.
|
![]() | Value |
When the type attribute of the element has the value
"text", "file" or "password", this represents the current contents of
the corresponding form control, in an interactive user agent.
Changing this attribute changes the contents of the form control, but
does not change the value of the HTML value attribute of the element.
When the type attribute of the element has the value
"button", "hidden", "submit", "reset", "image", "checkbox" or
"radio", this represents the HTML value attribute of the element. See
the value attribute definition in HTML 4.01.
|
Name | Description | |
---|---|---|
![]() | AddEventListener(String, IEventListener) |
This method allows the registration of event listeners on the event target.
(Inherited from EventTarget.) |
![]() | AddEventListener(String, DOMEventHandler, Boolean) |
This method allows the registration of event listeners on the event target.
(Inherited from EventTarget.) |
![]() | AddEventListener(String, IEventListener, Boolean) |
This method allows the registration of event listeners on the event target.
(Inherited from EventTarget.) |
![]() | AppendChild |
Adds the node newChild to the end of the list of children of this node. If the newChild is already in the tree, it is first removed.
(Inherited from Node.) |
![]() | AttachShadow |
Creates shadow root and attaches it to current element.
(Inherited from Element.) |
![]() | CloneNode |
Returns a duplicate of this node, i.e., serves as a generic copy constructor for nodes. The duplicate node has no parent (parentNode is null) and no user data.
(Inherited from Node.) |
![]() | CloneNode(Boolean) |
Returns a duplicate of this node, i.e., serves as a generic copy constructor for nodes. The duplicate node has no parent (parentNode is null) and no user data.
(Inherited from Node.) |
![]() | DispatchEvent |
This method allows the dispatch of events into the implementations event model.
(Inherited from EventTarget.) |
![]() | Dispose |
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
(Inherited from EventTarget.) |
![]() | Dispose(Boolean) |
Releases unmanaged and - optionally - managed resources.
(Inherited from Element.) |
![]() | Equals | (Inherited from Object.) |
![]() | Finalize |
Finalizes an instance of the Node class.
(Inherited from Node.) |
![]() | GetAttribute |
Retrieves an attribute value by name.
(Inherited from Element.) |
![]() | GetAttributeNode |
Retrieves an attribute node by name.
(Inherited from Element.) |
![]() | GetAttributeNodeNS |
Retrieves an Attr node by local name and namespace URI.
(Inherited from Element.) |
![]() | GetAttributeNS |
Retrieves an attribute value by local name and namespace URI.
(Inherited from Element.) |
![]() | GetElementsByClassName |
Returns a live NodeList object containing all the elements in the document that have all the classes specified in argument.
http://www.w3.org/TR/dom/
(Inherited from Element.) |
![]() | GetElementsByTagName |
Returns a NodeList of all descendant Elements with a given tag name, in document order.
(Inherited from Element.) |
![]() | GetElementsByTagNameNS |
Returns a NodeList of all the descendant Elements with a given local name and namespace URI in document order.
(Inherited from Element.) |
![]() | GetHashCode | (Inherited from Object.) |
![]() | GetType | (Inherited from Object.) |
![]() | HasAttribute |
Returns true when an attribute with a given name is specified on this element or has a default value, false otherwise.
(Inherited from Element.) |
![]() | HasAttributeNS |
Returns true when an attribute with a given local name and namespace URI is specified on this element or has a default value, false otherwise.
(Inherited from Element.) |
![]() | HasAttributes |
Returns whether this node (if it is an element) has any attributes
(Inherited from Element.) |
![]() | HasChildNodes |
Returns whether this node has any children.
(Inherited from Node.) |
![]() | InsertBefore |
Inserts the node before the existing child node child. If child is null, insert node at the end of the list of children.
If child is a DocumentFragment object, all of its children are inserted, in the same order, before child. If the child is already in the tree, it is first removed.
(Inherited from Node.) |
![]() | IsDefaultNamespace |
This method checks if the specified namespaceURI is the default namespace or not.
(Inherited from Node.) |
![]() | IsEqualNode |
Tests whether two nodes are equal.
This method tests for equality of nodes, not sameness (i.e., whether the two nodes are references to the same object) which can be tested with Node.isSameNode(). All nodes that are the same will also be equal, though the reverse may not be true.
(Inherited from Node.) |
![]() | IsSameNode |
Returns whether this node is the same node as the given one.
This method provides a way to determine whether two Node references returned by the implementation reference the same object. When two Node references are references to the same object, even if through a proxy, the references may be used completely interchangeably, such that all attributes have the same values and calling the same DOM method on either reference always has exactly the same effect.
(Inherited from Node.) |
![]() | LookupNamespaceURI |
Look up the namespace URI associated to the given prefix, starting from this node.
(Inherited from Node.) |
![]() | LookupPrefix |
Look up the prefix associated to the given namespace URI, starting from this node. The default namespace declarations are ignored by this method.
See Namespace Prefix Lookup for details on the algorithm used by this method.
(Inherited from Node.) |
![]() | MemberwiseClone | (Inherited from Object.) |
![]() | Normalize |
Puts all Text nodes in the full depth of the sub-tree underneath this Node, including attribute nodes, into a "normal" form where only structure (e.g., elements, comments, processing instructions, CDATA sections, and entity references) separates Text nodes, i.e., there are neither adjacent Text nodes nor empty Text nodes. This can be used to ensure that the DOM view of a document is the same as if it were saved and re-loaded, and is useful when operations (such as XPointer [XPointer] lookups) that depend on a particular document tree structure are to be used. If the parameter "normalize-characters" of the DOMConfiguration object attached to the Node.ownerDocument is true, this method will also fully normalize the characters of the Text nodes.
(Inherited from Node.) |
![]() | QuerySelector |
Returns the first Element in document, which match selector
(Inherited from Element.) |
![]() | QuerySelectorAll |
Returns a NodeList of all the Elements in document, which match selector
(Inherited from Element.) |
![]() | Remove |
Removes this instance.
(Inherited from Element.) |
![]() | RemoveAttribute |
Removes an attribute by name.
(Inherited from Element.) |
![]() | RemoveAttributeNode |
Removes the specified attribute node.
(Inherited from Element.) |
![]() | RemoveAttributeNS |
Removes an attribute by local name and namespace URI.
(Inherited from Element.) |
![]() | RemoveChild |
Removes the child node indicated by oldChild from the list of children, and returns it.
(Inherited from Node.) |
![]() | RemoveEventListener(String, IEventListener) |
This method allows the removal of event listeners from the event target.
If an IEventListener is removed from an EventTarget while it is processing an event, it will not be triggered by the current actions.
Event Listeners can never be invoked after being removed.
(Inherited from EventTarget.) |
![]() | RemoveEventListener(String, DOMEventHandler, Boolean) |
This method allows the removal of event listeners from the event target.
If an IEventListener is removed from an EventTarget while it is processing an event, it will not be triggered by the current actions.
Event Listeners can never be invoked after being removed.
(Inherited from EventTarget.) |
![]() | RemoveEventListener(String, IEventListener, Boolean) |
This method allows the removal of event listeners from the event target.
If an IEventListener is removed from an EventTarget while it is processing an event, it will not be triggered by the current actions.
Event Listeners can never be invoked after being removed.
(Inherited from EventTarget.) |
![]() | ReplaceChild |
Replaces the child node oldChild with newChild in the list of children, and returns the oldChild node.
If newChild is a DocumentFragment object, oldChild is replaced by all of the DocumentFragment children, which are inserted in the same order. If the newChild is already in the tree, it is first removed.
(Inherited from Node.) |
![]() | SetAttribute |
Adds a new attribute. If an attribute with that name is already present in the element, its value is changed to be that of the value parameter
(Inherited from Element.) |
![]() | SetAttributeNode |
Adds a new attribute node. If an attribute with that name (nodeName) is already present in the element, it is replaced by the new one.
(Inherited from Element.) |
![]() | SetAttributeNodeNS |
Adds a new attribute. If an attribute with that local name and that namespace URI is already present in the element, it is replaced by the new one.
(Inherited from Element.) |
![]() | SetAttributeNS |
Adds a new attribute. If an attribute with the same local name and namespace URI is already present on the element, its prefix is changed to be the prefix part of the qualifiedName, and its value is changed to be the value parameter.
(Inherited from Element.) |
![]() | SetIdAttribute |
If the parameter isId is true, this method declares the specified attribute to be a user-determined ID attribute.
(Inherited from Element.) |
![]() | SetIdAttributeNode |
If the parameter isId is true, this method declares the specified attribute to be a user-determined ID attribute.
(Inherited from Element.) |
![]() | SetIdAttributeNS |
If the parameter isId is true, this method declares the specified attribute to be a user-determined ID attribute.
(Inherited from Element.) |
![]() | ToString |
Returns a String that represents this instance.
(Inherited from Node.) |
Name | Description | |
---|---|---|
![]() | OnAbort |
Gets or sets event handler for OnAbort event.
(Inherited from HTMLElement.) |
![]() | OnBlur |
Gets or sets event handler for OnBlur event.
(Inherited from HTMLElement.) |
![]() | OnCancel |
Gets or sets event handler for OnCancel event.
(Inherited from HTMLElement.) |
![]() | OnCanplay |
Gets or sets event handler for OnCanplay event.
(Inherited from HTMLElement.) |
![]() | OnCanPlayThrough |
Gets or sets event handler for OnCanPlayThrough event.
(Inherited from HTMLElement.) |
![]() | OnChange |
Gets or sets event handler for OnChange event.
(Inherited from HTMLElement.) |
![]() | OnClick |
Gets or sets event handler for OnClick event.
(Inherited from HTMLElement.) |
![]() | OnCueChange |
Gets or sets event handler for OnCueChange event.
(Inherited from HTMLElement.) |
![]() | OnDblClick |
Gets or sets event handler for OnDblClick event.
(Inherited from HTMLElement.) |
![]() | OnDurationChange |
Gets or sets event handler for OnDurationChange event.
(Inherited from HTMLElement.) |
![]() | OnEmptied |
Gets or sets event handler for OnEmptied event.
(Inherited from HTMLElement.) |
![]() | OnEnded |
Gets or sets event handler for OnEnded event.
(Inherited from HTMLElement.) |
![]() | OnError |
Gets or sets event handler for OnError event.
(Inherited from HTMLElement.) |
![]() | OnFocus |
Gets or sets event handler for OnFocus event.
(Inherited from HTMLElement.) |
![]() | OnInput |
Gets or sets event handler for OnInput event.
(Inherited from HTMLElement.) |
![]() | OnInvalid |
Gets or sets event handler for OnInvalid event.
(Inherited from HTMLElement.) |
![]() | OnKeyDown |
Gets or sets event handler for OnKeyDown event.
(Inherited from HTMLElement.) |
![]() | OnKeyPress |
Gets or sets event handler for OnKeyPress event.
(Inherited from HTMLElement.) |
![]() | OnKeyUp |
Gets or sets event handler for OnKeyUp event.
(Inherited from HTMLElement.) |
![]() | OnLoad |
Gets or sets event handler for OnLoad event.
(Inherited from HTMLElement.) |
![]() | OnLoadedData |
Gets or sets event handler for OnLoadedData event.
(Inherited from HTMLElement.) |
![]() | OnLoadedMetadata |
Gets or sets event handler for OnLoadedMetadata event.
(Inherited from HTMLElement.) |
![]() | OnLoadStart |
Gets or sets event handler for OnLoadStart event.
(Inherited from HTMLElement.) |
![]() | OnMouseDown |
Gets or sets event handler for OnMouseDown event.
(Inherited from HTMLElement.) |
![]() | OnMouseEnter |
Gets or sets event handler for OnMouseEnter event.
(Inherited from HTMLElement.) |
![]() | OnMouseLeave |
Gets or sets event handler for OnMouseLeave event.
(Inherited from HTMLElement.) |
![]() | OnMouseMove |
Gets or sets event handler for OnMouseMove event.
(Inherited from HTMLElement.) |
![]() | OnMouseOut |
Gets or sets event handler for OnMouseOut event.
(Inherited from HTMLElement.) |
![]() | OnMouseOver |
Gets or sets event handler for OnMouseOver event.
(Inherited from HTMLElement.) |
![]() | OnMouseUp |
Gets or sets event handler for OnMouseUp event.
(Inherited from HTMLElement.) |
![]() | OnMouseWheel |
Gets or sets event handler for OnMouseWheel event.
(Inherited from HTMLElement.) |
![]() | OnPause |
Gets or sets event handler for OnPause event.
(Inherited from HTMLElement.) |
![]() | OnPlay |
Gets or sets event handler for OnPlay event.
(Inherited from HTMLElement.) |
![]() | OnPlaying |
Gets or sets event handler for OnPlaying event.
(Inherited from HTMLElement.) |
![]() | OnProgress |
Gets or sets event handler for OnProgress event.
(Inherited from HTMLElement.) |
![]() | OnRateChange |
Gets or sets event handler for OnRateChange event.
(Inherited from HTMLElement.) |
![]() | OnReset |
Gets or sets event handler for OnReset event.
(Inherited from HTMLElement.) |
![]() | OnResize |
Gets or sets event handler for OnResize event.
(Inherited from HTMLElement.) |
![]() | OnScroll |
Gets or sets event handler for OnScroll event.
(Inherited from HTMLElement.) |
![]() | OnSeeked |
Gets or sets event handler for OnSeeked event.
(Inherited from HTMLElement.) |
![]() | OnSeeking |
Gets or sets event handler for OnSeeking event.
(Inherited from HTMLElement.) |
![]() | OnSelect |
Gets or sets event handler for OnSelect event.
(Inherited from HTMLElement.) |
![]() | OnShow |
Gets or sets event handler for OnShow event.
(Inherited from HTMLElement.) |
![]() | OnStalled |
Gets or sets event handler for OnStalled event.
(Inherited from HTMLElement.) |
![]() | OnSubmit |
Gets or sets event handler for OnSubmit event.
(Inherited from HTMLElement.) |
![]() | OnSuspend |
Gets or sets event handler for OnSuspend event.
(Inherited from HTMLElement.) |
![]() | OnTimeUpdate |
Gets or sets event handler for OnTimeUpdate event.
(Inherited from HTMLElement.) |
![]() | OnToggle |
Gets or sets event handler for OnToggle event.
(Inherited from HTMLElement.) |
![]() | OnVolumeChange |
Gets or sets event handler for OnVolumeChange event.
(Inherited from HTMLElement.) |
![]() | OnWaiting |
Gets or sets event handler for OnWaiting event.
(Inherited from HTMLElement.) |