Skip to main content
A newer version of this page is available. .

DataViewBase.ShowTargetInfoInDragDropHint Property

Gets or sets whether the drag-and-drop hint shows additional information about a drop target. This is a dependency property.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v19.1.Core.dll

Declaration

public bool ShowTargetInfoInDragDropHint { get; set; }

Property Value

Type Description
Boolean

true, to show additional information about a drop target in the drag-and-drop hint; otherwise, false.

Remarks

The drag-and-drop hint contains information about a drag source only by default. You can add additional information, for example, in the following image, a drag-and-drop hint shows information about an action that takes place and a drop target source:

DragDropIndicationTargetInfoInHint

Set the ShowTargetInfoInDragDropHint property to true to show a drag-and-drop hint like in the image above:

<dxg:TableView ShowTargetInfoInDragDropHint="True" />
See Also