Specifies what data is being dragged during drag-and-drop operations.
SyntaxVB6
Copy Code
|
|---|
Public Enum EDragDataType |
C++
Copy Code
|
|---|
enum EDragDataType |
Members| Member name | Value | Description | |
|---|---|---|---|
![]() |
dtUnknown |
0 | FlowChartX cannot determine what data is being dragged. |
![]() |
dtText |
1 | Text data is being dragged. |
![]() |
dtPicture |
2 | A picture is being dragged. |
![]() |
dtBox |
3 | A box from the same FlowChartX instance is being dragged. |
![]() |
dtTable |
4 | A table from the same FlowChartX instance is being dragged. |
![]() |
dtSelection |
5 | A selection of items from the same FlowChartX instance is being dragged. |
![]() |
dtFiles |
6 | Files from the Windows Explorer are being dragged. |
![]() |
dtChartData |
7 | Items from another FlowChartX instance are being dragged. |
See Also