UserItemDragSourceObserver::UserItemDragStarting
virtual void UserItemDragStarting (
const UserItemDragSourceEvent & ev,
bool * canStart
);
Parameters
- ev
A reference to the event. - canStart
false by default. If true, the drag and drop operation can start in the user item control.
Description
Example
// Method Example:
void DragTab3Observer::UserItemDragStarting (const DG::UserItemDragSourceEvent& /*ev*/, bool* canStart)
{
*canStart = true;
}Drag starting event handler for user item controls.