Interface HTMLEmbedElement

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

public interface HTMLEmbedElement extends HTMLElement
Provides special properties (beyond the regular HTMLElement interface it also has available to it by inheritance) for manipulating <embed> elements.
  • Method Details

    • getAlign

      @Deprecated String getAlign()
      Deprecated.

      getAlign.

      Returns:
      a String object.
    • setAlign

      void setAlign(String align)

      setAlign.

      Parameters:
      align - a String object.
    • getHeight

      String getHeight()
      Sets or retrieves the height of the object.
      Returns:
      a String object.
    • setHeight

      void setHeight(String height)

      setHeight.

      Parameters:
      height - a String object.
    • getName

      @Deprecated String getName()
      Deprecated.
      Sets or retrieves the name of the object.
      Returns:
      a String object.
    • setName

      void setName(String name)

      setName.

      Parameters:
      name - a String object.
    • getSrc

      String getSrc()
      Sets or retrieves a URL to be loaded by the object.
      Returns:
      a String object.
    • setSrc

      void setSrc(String src)

      setSrc.

      Parameters:
      src - a String object.
    • getType

      String getType()

      getType.

      Returns:
      a String object.
    • setType

      void setType(String type)

      setType.

      Parameters:
      type - a String object.
    • getWidth

      String getWidth()
      Sets or retrieves the width of the object.
      Returns:
      a String object.
    • setWidth

      void setWidth(String width)

      setWidth.

      Parameters:
      width - a String object.
    • getSVGDocument

      Document getSVGDocument()

      getSVGDocument.

      Returns:
      a Document object.