Attempt to move the screen by the increments provided.
Source position: intuition.pas line 3477
procedure MoveScreen( |
Screen: PScreen; |
Dx: LongInt; |
Dy: LongInt |
); |
Screen |
|
A pointer to a Screen structure |
Dx |
|
Amount to move the screen on the x-axis |
Dy |
|
Amount to move the screen on the y-axis |
Moves the screen the specified increment, specified in screen pixel resolution coordinates.
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 dX and dY 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.
|
Move screens with greater control. |
|
|
Grand manipulation of the entire Intuition display. |