TcxCustomGridTableOptionsBehavior.DragDropText Property
In This Article
Specifies whether the text is displayed adjacent to the mouse pointer when a drag operation is performed.
#Declaration
Delphi
property DragDropText: Boolean read; write; default False;
#Property Value
Type | Default |
---|---|
Boolean | False |
#Remarks
Set the DragDropText
property to True
to display the text adjacent to the mouse pointer during a drag operation. By default, the displayed text is the display value of the currently focused table item. When this property is set to True
, the View’s OnGetDragDropText event occurs when the drag operation is started. Handle this event to customize display text.
#Default Value
The DragDropText
property’s default value is False
.
See Also