Skip to main content

DiagramQueryItemsActionEventArgs(ReadOnlyCollection<DiagramItem>, ItemsActionKind, DiagramItem, Nullable<PointFloat>, Boolean) Constructor

Initializes a new instance of the DiagramQueryItemsActionEventArgs class.

Namespace: DevExpress.XtraDiagram

Assembly: DevExpress.XtraDiagram.v23.2.dll

NuGet Package: DevExpress.Win.Diagram

Declaration

public DiagramQueryItemsActionEventArgs(
    ReadOnlyCollection<DiagramItem> items,
    ItemsActionKind action,
    DiagramItem highlightedItem,
    PointFloat? highlightedItemPoint,
    bool allow
)

Parameters

Name Type Description
items ReadOnlyCollection<DiagramItem>

The collection of diagram items affected by the action.

action ItemsActionKind

A DevExpress.Diagram.Core.ItemsActionKind enumeration value that indicates the kind of the action that raised the event.

highlightedItem DiagramItem

The currently highlighted diagram item.

highlightedItemPoint Nullable<PointFloat>

The current coordinates of the cursor.

allow Boolean

true to allow the operation; otherwise, false.

See Also