contentDocument

Gets the content document for the ADOMHTMLObjectElement object. This is a DOM Level 2 method.

Interface

ADOMHTMLObjectElement(W3C DOM: HTMLObjectElement)

IDL definition
readonly attribute Document contentDocument;
JavaScript synopsis
htmlobj.contentDocument
C synopsis
ADOMDocument* ADOMgetContentDocument(
  ADOMHTMLObjectElement* htmlobj
);
Parameters
  • htmlobj   The ADOMHTMLObjectElement object.

Returns

Content document. If you have a document within a document, in a frameset for example, then the content document is the inner document, which is contained by the outer document. This is a placeholder for future use.

See also

createDocument( ), createHTMLDocument( )