DocMove Method

Moves the active window within the application window.

Syntax

*expression   *.DocMove(XPosition, YPosition, Points)

*expression   *     Optional. An expression that returns an Application object.

XPosition    Optional Long. A number that specifies the distance of the active window from the left edge of the application.

YPosition    Optional Long. A number that specifies the distance of the active window from the top edge of the application.

Points    Optional Boolean. True if XPosition and YPosition are measured in points. False if they are measured in pixels. The default value is False.

Remarks

The positions specified are taken from the upper-left corner of the usable area of the application window. The usable area is the area remaining after removing the menu bar and toolbars.

Example

The following example moves the window of the active project to the upper-left corner of the main window.

Sub MoveProjectWindowToCorner()
    DocMove 0, 0
End Sub

Applies to | Application Object

See Also | DocClose Method | DocMaximize Method | DocRestore Method | DocSize Method