ListViewDragSourceObserver::ListViewDragStarting
virtual void ListViewDragStarting (
const ListViewDragSourceEvent & ev,
bool * canStart
);
Parameters
- ev
A reference to the event. - canStart
false by default. If true, the drag and drop operation can start in list view controls.
Description
Example
// Method Example:
void DragTab3Observer::ListViewDragStarting (const DG::ListViewDragSourceEvent& /*ev*/, bool* canStart)
{
*canStart = true;
}Drag starting event granted in a list view control.