###User Defined Function###
_ExcelFontSetProperties

###Description###
Set the bold, italic, and underline font properties of a range in an Excel object.

###Syntax###
#include <Excel.au3>
_ExcelFontSetProperties ( $oExcel, $sRangeOrRowStart [, $iColStart = 1 [, $iRowEnd = 1 [, $iColEnd = 1 [, $fBold = False [, $fItalic = False [, $fUnderline = False]]]]]] )


###Parameters###
@@ParamTable@@
$oExcel
	An Excel object opened by a preceding call to <a href="_ExcelBookOpen.htm">_ExcelBookOpen()</a> or <a href="_ExcelBookNew.htm">_ExcelBookNew()/a>
$sRangeOrRowStart
	Either an A1 range, or an integer row number to start from if using R1C1
$iColStart
	[optional] The starting column for the number format(left) (default=1)
$iRowEnd
	[optional] The ending row for the number format (bottom) (default=1)
$iColEnd
	[optional] The ending column for the number format (right) (default=1)
$fBold
	[optional] Bold flag: True=Bold, False=No Bold (remove bold type)
$fItalic
	[optional] Italic flag: True=Italic, False=No Italic (remove italic type)
$fUnderline
	[optional] Underline flag: True=Underline, False=No Underline (remove underline type)
@@End@@

###ReturnValue###
@@ReturnTable@@
Success:	1.
Failure:	0 and sets the @error flag to non-zero.
@error:	1 - Specified object does not exist
	2 - Starting row or column invalid
	3 - Ending row or column invalid
@extended:	0 - Row invalid
	1 - Column invalid
@@End@@


###Remarks###
None


###Related###


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