Skip to main content

DragOverEventArgs.InsertIndicator Property

Gets or sets an image that represents the insert indicator.

Namespace: DevExpress.Utils.DragDrop

Assembly: DevExpress.Utils.v23.2.dll

NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core

Declaration

public Image InsertIndicator { get; set; }

Property Value

Type Description
Image

An Image object that specifies the insert indicator image.

Remarks

The DragDropManager.InsertIndicatorVisible setting allows you to disable the insert indicator for all controls. If this setting is enabled, you can disable a particular control’s insert indicator with the DragDropBehavior.Properties.InsertIndicatorVisible property.

Handle the DragDropEvents.DragOver event to customize the insert indicator.

The default insert indicator is a semi-transparent rectangle.

Insert Indicator

The InsertIndicatorLocation and InsertIndicatorSize event arguments allow you to customize its size and position.

You can also use the InsertIndicator event argument to display a custom image.

See Also