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

DiagramItemsMovingEventArgs(ReadOnlyCollection<MovingItem>, DiagramActionStage, ItemsActionSource, Boolean) Constructor

Initializes a new instance of the DiagramItemsMovingEventArgs class.

Namespace: DevExpress.XtraDiagram

Assembly: DevExpress.XtraDiagram.v19.1.dll

Declaration

public DiagramItemsMovingEventArgs(
    ReadOnlyCollection<MovingItem> items,
    DiagramActionStage stage,
    ItemsActionSource actionSource,
    bool allow
)

Parameters

Name Type Description
items ReadOnlyCollection<DevExpress.XtraDiagram.MovingItem>

A collection of DevExpress.XtraDiagram.MovingItem objects that store information about items that are being moved.

stage DiagramActionStage

A DiagramActionStage enumeration value that indicates whether the moving operation has just started, is continuing or has been finished or canceled.

actionSource ItemsActionSource

A ItemsActionSource enumeration value that indicates whether the moving operation is performed using drag-and-drop, the Properties Panel or by pressing key shortcuts.

allow Boolean

true, to allow performing the operation; otherwise, false.

See Also