NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ISelectionUIService.DragMoved

Called by an outside party to update drag information. This can only be called after a successful call to beginDrag.

[Visual Basic]
Sub DragMoved( _
   ByVal offset As Rectangle _
)
[C#]
void DragMoved(
   Rectangle offset
);
[C++]
void DragMoved(
   Rectangle offset
) = 0;
[JScript]
function DragMoved(
   offset : Rectangle
);

Parameters

offset
The offset in size and location of the new components. The selection service may filter this offset to conform to limitations on the currently selected components.

See Also

ISelectionUIService Interface | ISelectionUIService Members | System.WinForms.Design Namespace | ISelectionUIHandler