GefScreen.Move (method)

Moves the screen.
Syntax: object.Move Left, Top, Width, Height
Parameters:
Optional Left As long -
Optional Top As long -
Optional Width As long -
Optional Height As long -
Description: The Move method moves and resizes the screen. The parameters are in pixels.

Example:

Sub GefScreen_Move()
    
    Dim oCimScr As GefScreen
    Set oCimScr = CimGetScreen
    
    oCimScr.Move 0, 0, 800, 600
    
End Sub