"scrollBy"
    
    Scrolls the content by dx to the left and dy upwards.
Synopsis
void scrollBy(int dx, int dy);
Parameters
| Parameter | Description | 
|---|---|
| dx | Amount left | 
| dy | Amount upwards | 
Description
Scrolls the content by dx to the left and dy upwards.
                
                Example
            
Scrolls the content by 10 to the left and 10 upwards.
main()
{
  TEXT_EDIT1.scrollBy(10,10);
}
        Assignment
textEdit