EditDragSourceEvent::GetSource
EditControl * GetSource (void) const;
Return Value
Example
// Method Example:
void TextControl::EditDragStarting (const DG::EditDragSourceEvent& ev, bool* canStart)
{
if (ev.GetSource () == &controlledView->editControl)
*canStart = true;
}Identify the source, by using the GetSource member function.