Share via


Application.DocMove Method

Project Developer Reference

Moves the active window within the application window.

Syntax

expression.DocMove(XPosition, YPosition, Points)

expression   A variable that represents an Application object.

Parameters

Name Required/Optional Data Type Description
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.

Return Value
Boolean

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.

Visual Basic for Applications
  Sub MoveProjectWindowToCorner()
    DocMove 0, 0
End Sub

See Also