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.EndDrag

Called when the user has completed the drag. The designer should remove any UI feedback it may be providing.

[Visual Basic]
Sub EndDrag( _
   ByVal components() As Object, _
   ByVal cancel As Boolean _
)
[C#]
void EndDrag(
   object[] components,
   bool cancel
);
[C++]
void EndDrag(
   Object* components[],
   bool cancel
) = 0;
[JScript]
function EndDrag(
   components : Object[],
   cancel : Boolean
);

Parameters

components
The same set of components that was passed to beginDrag.
cancel
true if the user cancelled the drag operation, or false otherwise. If the drag was cancelled, the designer should not actually reposition the components.

See Also

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