###User Defined Function###
_ExcelReadCell

###Description###
Read information from the active worksheet of the specified Excel object.

###Syntax###
#include <Excel.au3>
_ExcelReadCell ( $oExcel, $sRangeOrRow [, $iColumn = 1] )


###Parameters###
@@ParamTable@@
$oExcel
	Excel object opened by a preceding call to <a href="_ExcelBookOpen.htm">_ExcelBookOpen()</a> or <a href="_ExcelBookNew.htm">_ExcelBookNew()/a>
$sRangeOrRow
	Either an A1 range, or an integer row number to read from if using R1C1
$iColumn
	[optional] The column to read from if using R1C1 (default = 1)
@@End@@

###ReturnValue###
@@ReturnTable@@
Success:	the data from the specified cell.
Failure:	0 and sets the @error flag to non-zero.
@error:	1 - Specified object does not exist
	2 - Specified parameter is incorrect
@extended:	0 - Row out of valid range
	1 - Column out of valid range
@@End@@


###Remarks###
This function will only read one cell per call - if the specified range spans
multiple cells, only the content of the top left cell will be returned.


###Related###


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