###User Defined Function###
_GUICtrlEdit_LineScroll

###Description###
Scrolls the text

###Syntax###
#include <GuiEdit.au3>
_GUICtrlEdit_LineScroll ( $hWnd, $iHoriz, $iVert )


###Parameters###
@@ParamTable@@
$hWnd
	Control ID/Handle to the control
$iHoriz
	Specifies the number of characters to scroll horizontally.
$iVert
	Specifies the number of lines to scroll vertically.
@@End@@

###ReturnValue###
@@ReturnTable@@
Success:	True.
Failure:	False.
@@End@@


###Remarks###
The control does not scroll vertically past the last line of text in the edit control.

If the current line plus the number of lines specified by the $iVert parameter exceeds the total number of lines in the edit control, the value is adjusted so that the last line of the edit control is scrolled to the top of the edit-control window.

<a href="_GUICtrlEdit_LineScroll.htm">_GUICtrlEdit_LineScroll()</a> scrolls the text vertically or horizontally.
<a href="_GUICtrlEdit_LineScroll.htm">_GUICtrlEdit_LineScroll()</a> can be used to scroll horizontally past the last character of any line.


###Related###
_GUICtrlEdit_Scroll


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