###User Defined Function###
_IEBodyReadText

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

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


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

###ReturnValue###
@@ReturnTable@@
Success:	the text 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 .innerText property of the document Body.
.innerText is available for nearly all DOM elements and is a fast convenient method of parsing out just the text in a document using <a href="_IEPropertyGet.htm">_IEPropertyGet()</a>.


###Related###
_IEBodyReadHTML, _IEBodyWriteHTML, _IEPropertyGet


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