FPHTMLInputFileElement Object
FPHTMLInputFileElement Multiple objects |
Represents an INPUT element of type "file" in an HTML document. See also the IHTMLInputFileElement object.
Using the FPHTMLInputFileElement 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 FPHTMLInputFileElement 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 "file".
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 FPHTMLInputButtonElement
Dim objFile As FPHTMLInputFileElement
Dim objHidden As FPHTMLInputHiddenElement
Dim objImage As FPHTMLInputImage
Dim objText As FPHTMLInputTextElement
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 | accessKey Property | all Property | children Property | className Property | clientHeight Property | clientLeft Property | clientTop Property | clientWidth Property | disabled Property | Document Property | filters Property | form Property | id Property | innerHTML Property | innerText Property | isTextEdit Property | lang Property | language Property | MaxLength Property | name Property | offsetHeight Property | offsetLeft Property | offsetParent Property | offsetTop Property | offsetWidth Property | onafterupdate Property | onbeforeupdate Property | onblur Property | onchange Property | onclick Property | ondataavailable Property | ondatasetchanged Property | ondatasetcomplete Property | ondblclick Property | ondragstart Property | onerrorupdate Property | onfilterchange Property | onfocus Property | onhelp Property | onkeydown Property | onkeypress Property | onkeyup Property | onmousedown Property | onmousemove Property | onmouseout Property | onmouseover Property | onmouseup Property | onresize Property | onrowenter Property | onrowexit Property | onselect Property | onselectstart Property | outerHTML Property | outerText Property | parentElement Property | parentTextEdit Property | recordNumber Property | size Property | sourceIndex Property | status Property | style Property | tabIndex Property | tagName Property | title Property | Type Property | value Property
Methods | addFilter Method | blur Method | click Method | contains Method | focus Method | getAttribute Method | getBotAttribute Method | insertAdjacentHTML Method | insertAdjacentText Method | removeAttribute Method | removeBotAttribute Method | removeFilter Method | scrollIntoView Method | select Method | setAttribute Method | setBotAttribute Method | toString Method
Events | onafterupdate Event | onbeforeupdate Property | onblur Event | onchange Event | onclick Event | ondataavailable Event | ondatasetchanged Event | ondatasetcomplete Event | ondblclick Event | ondragstart Event | onerrorupdate Event | onfilterchange Event | onfocus Event | onhelp Event | onkeydown Property | onkeypress Event | onkeyup Event | onmousedown Event | onmousemove Event | onmouseout Event | onmouseover Event | onmouseup Event | onresize Event | onrowenter Event | onrowexit Event | onselect Event | onselectstart Event
Parent Objects
Child Objects | IHTMLElement Object | IHTMLFiltersCollection Object | IHTMLFormElement Object | IHTMLStyle Object