IHTMLInputTextElement Object
IHTMLInputTextElement IHTMLFormElement |
Represents an INPUT element of type "text" in an HTML document. The IHTMLInputTextElement object provides access to a limited number of properties and methods related to the INPUT element. For access to additional properties and methods, use the FPHTMLInputTextElement object.
Using the IHTMLInputTextElement Object
Use the tags method to return an IHTMLElementCollection collection that represents a collection of all the INPUT elements in a document. Use the Item method to return an IHTMLInputTextElement object that accesses a specific INPUT element, referenced by ordinal number or by the value of the id attribute. Use the type property to determine the type of INPUT element.
Note The type property is not a member of the IHTMLElement object; however, it will return valid results for the value of the type attribute for an element, which in this case is "text".
The following example places the first INPUT element in the active document into an IHTMLElement object variable, then uses the type property to determine the type of INPUT element, and places the variable into an appropriate object variable, providing access to the properties and methods that relate to INPUT elements of the specified type.
Dim objInput As IHTMLElement
Dim objButton As IHTMLInputButtonElement
Dim objFile As IHTMLInputFileElement
Dim objHidden As IHTMLInputHiddenElement
Dim objImage As IHTMLInputImage
Dim objText As IHTMLInputTextElement
Set objInput = ActiveDocument.all.tags("input").Item(0)
Select Case objInput.Type
Case "button"
Set objButton = objInput
Case "file"
Set objFile = objInput
Case "hidden"
Set objHidden = objInput
Case "image"
Set objImage = objInput
Case "text"
Set objText = objInput
End Select
Properties | disabled Property | form Property | MaxLength Property | name Property | onchange Property | onselect Property | readOnly Property | size Property | status Property | Type Property | value Property
Methods | createTextRange Method | select Method
Parent Objects
Child Objects | IHTMLFormElement Object