Skip to main content

DiagramControl.SendItemsToBack(IEnumerable<DiagramItem>) Method

Sends the specified diagram items to the back of the stack.

Namespace: DevExpress.Xpf.Diagram

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

NuGet Package: DevExpress.Wpf.Diagram

Declaration

public void SendItemsToBack(
    IEnumerable<DiagramItem> items
)

Parameters

Name Type Description
items IEnumerable<DiagramItem>

The diagram items to be sent to the back of the stack.

Remarks

With any two diagram items in the canvas, one item always appears in front of the other. When a diagram item is added to the Canvas, it is automatically placed in front of other items. The SendItemsToBack method allows you to change the layering order by sending the specified items all the way to the back of the stack.

See Also