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!

ISelectionUIHandler.DragMoved

Called when the user has moved the mouse. This will only be called on the designer that returned true from beginDrag. The designer should update its UI feedback here.

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

Parameters

components
The same set of components that was passed to beginDrag.
offset
A rectangle providing the new offset for each of the components. The x and y fields contain the position offset and the width and height fields contain the size differential.

See Also

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