Share

DragStat

C++

enum DragStat {
  kDragStart = 0,
  kDragEnd = 1,
  kDragAbort = 2
};

File

acdb.h

Members

Members Description
kDragStart A drag operation has just started
kDragEnd A drag operation has just ended
kDragAbort A drag operation has just aborted

Description

This enumeration provides status values concerning a drag operation.

Was this information helpful?