EnteringMoveSizeEventArgs.MoveSizeWindowId Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the ID of the window for which to enter the move-size loop.
public:
property WindowId MoveSizeWindowId { WindowId get(); void set(WindowId value); };
WindowId MoveSizeWindowId();
void MoveSizeWindowId(WindowId value);
public WindowId MoveSizeWindowId { get; set; }
var windowId = enteringMoveSizeEventArgs.moveSizeWindowId;
enteringMoveSizeEventArgs.moveSizeWindowId = windowId;
Public Property MoveSizeWindowId As WindowId
Property Value
The ID of the window for which to enter the move-size loop.
The default is the ID of the window that received the pointer message that initiated the move-size loop.
Remarks
The application can create a new window and set this value to its ID if it wants to supply an alternative target window for the move-size loop.
The new window, if created, must be on the same thread as the window that received the pointer message that initiated the move-size loop.