Interface HTMLParamElement

All Superinterfaces:
Element, EventTarget, HTMLElement, InnerHTML, Node, NonDocumentTypeChildNode, ParentNode

public interface HTMLParamElement extends HTMLElement
Provides special properties (beyond those of the regular HTMLElement object interface it inherits) for manipulating <param> elements, representing a pair of a key and a value that acts as a parameter for an <object> element.
  • Method Details

    • getName

      String getName()
      Sets or retrieves the name of an input parameter for an element.
      Returns:
      a String object.
    • setName

      void setName(String name)

      setName.

      Parameters:
      name - a String object.
    • getType

      @Deprecated String getType()
      Deprecated.
      Sets or retrieves the content type of the resource designated by the value attribute.
      Returns:
      a String object.
    • setType

      void setType(String type)

      setType.

      Parameters:
      type - a String object.
    • getValue

      String getValue()
      Sets or retrieves the value of an input parameter for an element.
      Returns:
      a String object.
    • setValue

      void setValue(String value)

      setValue.

      Parameters:
      value - a String object.
    • getValueType

      @Deprecated String getValueType()
      Deprecated.
      Sets or retrieves the data type of the value attribute.
      Returns:
      a String object.
    • setValueType

      void setValueType(String valueType)

      setValueType.

      Parameters:
      valueType - a String object.