title | keywords | f1_keywords | ms.service | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|---|
Application.AppMove method (Project) |
vbapj.chm2010 |
|
project-server |
|
73ab96b7-4985-b25f-d202-89e6230e6e4e |
06/08/2017 |
medium |
Moves the main Project window.
expression. AppMove
( _XPosition_
, _YPosition_
, _Points_
)
expression A variable that represents an Application object.
Name | Required/Optional | Data type | Description |
---|---|---|---|
XPosition | Optional | Long | A number that specifies the distance of the main window from the left edge of the screen. |
YPosition | Optional | Long | A number that specifies the distance of the main window from the top edge of the screen. |
Points | Optional | Boolean | True if XPosition and YPosition are measured in points. False if they are measured in pixels. The default value is False |
Boolean
The following example moves the main window of Project nine points to the left.
Sub MoveMainWindowToLeft()
AppMove XPosition:=Application.Left - 9, Points:=True
End Sub
[!includeSupport and feedback]