MoveScreen( Screen, DeltaX, DeltaY )
VOID MoveScreen( struct Screen *, WORD, WORD );
Moves the screen the specified increment, specified in screen pixel resolution coordinates.
New for V36: Screen movement limits have been greatly relaxed, to support screen scrolling. In particular, negative values for screen LeftEdge and TopEdge may now be valid.
If the DeltaX and DeltaY variables you specify would move the screen in a way that violates any restrictions, the screen will be moved as far as possible. You may examine the LeftEdge and TopEdge fields
of the Screen structure after this function returns to see where the screen really ended up.