EditDragSourceObserver::EditDragStarting
virtual void EditDragStarting (
const EditDragSourceEvent & ev,
bool * canStart
);
Parameters
- ev
A reference to the event. - canStart
true by default. If false value is set, drag and drop start is disabled.
Description
Example
// Method Example:
void TextControl::EditDragStarting (const DG::EditDragSourceEvent& ev, bool* canStart)
{
if (ev.GetSource () == &controlledView->editControl)
*canStart = true;
}Drag starting event handling.