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

Containers

  • 3 minutes to read

Overview

You can use containers to group diagram items.

DiagramContainer class objects represent containers.

Containers illust

When you move, copy or delete a container, these actions also apply to its contents.

Create a Container

Users can select the corresponding ribbon item on the Insert ribbon page to add containers.

Add Diagram Container

To add a container in code, create a DiagramContainer object and add it to the DiagramControl.Items or DiagramContainer.Items collection. See the example below.

var container = new DiagramContainer() { Shape = StandardContainers.Classic };
diagram.Items.Add(container);

Content

Any item can be placed inside a container, including another container. To add or remove items, drag them in or out of the container. Containers can automatically grow to fit the contents. The DiagramContainerBase.AdjustBoundsBehavior property manages this behavior.

The DiagramContainerBase.Items property provides access to the collection of diagram items placed within the container. For items within a container, the DiagramItem.Position property specifies the coordinates of the item’s upper left corner relative to the container.

Note

Do not add DiagramConnector items to the DiagramContainerBase.Items collection. Instead, add connector items to the DiagramControl.Items collection and use the DiagramConnector.BeginItem and DiagramConnector.EndItem properties to connect them to items within a container.

Header and Styles

Each container has a header. To edit the header, double-click the container and toggle the header visibility via the Show Header ribbon item. This item is within the Container Tools ribbon category that appears when a container is selected. Additionally, users can customize the header and content padding (the DiagramContainer.HeaderPadding and Padding properties) and select the container style.

Container Tools

You can edit the header in code by setting the DiagramContainer.Header property and hide it by setting the DiagramContainer.ShowHeader property to false.

To set the container style in code, set the DiagramContainer.Shape property to a DevExpress.Diagram.Core.StandardContainers value. See the example below.

container.Shape = StandardContainers.Corners;

Proportional Resize

Users can drag the corner selection handles to resize the container. To change the aspect ratio, hold SHIFT while dragging a corner selection handle or drag one of the side selection handles. To disable proportional resizing, set the DiagramOptionsBehavior.EnableProportionalResizing to false.

Expand/Collapse Containers

Set the AllowCollapseContainers property to true to show the Expand/Collapse button in container headers. Users can click this button to display or hide the container’s content. Use the CanCollapse property to control the collapse functionality for individual containers. The CollapseContainerButtonSize and CollapseContainerButtonPadding properties specify the expand/collapse button’s size and padding.

Collapsible Container

Use the DiagramControl.SetContainersIsCollapsed method to expand/collapse the specified container items. The DiagramContainer.IsCollapsed property specifies whether the container item is collapsed.

Hide Subordinate Items

The container’s DiagramItem.CanHideSubordinates property specifies whether to display the expand-collapse button below the container that shows/hides the container’s subordinate items. The DiagramItem.AreSubordinatesVisible property returns whether the subordinate items are shown.

Container Expand-Collapse Button

See Also