###User Defined Function###
_IEBodyReadHTML

###Description###
Returns the HTML inside the &lt;body&gt; tag of the document.

###Syntax###
#include <IE.au3>
_IEBodyReadHTML ( ByRef $o_object )


###Parameters###
@@ParamTable@@
$o_object
	Object variable of an InternetExplorer.Application, Window or Frame object
@@End@@

###ReturnValue###
@@ReturnTable@@
Success:	an HTML included in the &lt;body&gt; of the document.
Failure:	sets the @error flag to non-zero.
@error:	3 ($_IEStatus_InvalidDataType) - Invalid Data Type
@extended:	Contains invalid parameter number
@@End@@


###Remarks###
This function uses the .innerHTML property of the document Body.
.innerHTML is available for nearly all DOM elements using <a href="_IEPropertyGet.htm">_IEPropertyGet()</a>.


###Related###
_IEBodyReadText, _IEBodyWriteHTML, _IEPropertyGet, _IEDocInsertHTML, _IEDocInsertText, _IEDocReadHTML


###Example###
@@IncludeExample@@
