Skip to main content

DragEventArgsBase.DropPosition Property

Gets a drop position that specifies how a record is placed after it has been dropped.

Namespace: DevExpress.Xpf.Core

Assembly: DevExpress.Xpf.Core.v23.2.dll

NuGet Package: DevExpress.Wpf.Core

Declaration

public DropPosition DropPosition { get; set; }

Property Value

Type Description
DropPosition

A DropPosition enumeration value that specifies how a record is placed after it has been dropped.

Available values:

Name Description
Append

A record is placed after all records.

Before

A record is placed before the target record.

After

A record is placed after the target record.

Inside

A record is placed inside the target group.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the DropPosition property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also