Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DiagramControl.BringItemsForward(IEnumerable<DiagramItem>) Method

Brings the specified diagram items forward one step in the stack.

Namespace: DevExpress.Xpf.Diagram

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

NuGet Package: DevExpress.Wpf.Diagram

#Declaration

public void BringItemsForward(
    IEnumerable<DiagramItem> items
)

#Parameters

Name Type Description
items IEnumerable<DiagramItem>

The diagram items to be brought forward one step in 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 BringItemsForward method allows you to bring the specified items one step forward from their current layering order.

See Also