Skip to main content
A newer version of this page is available. .
All docs
V20.2

DiagramToolboxSettings.ShapeIconsPerRow Property

Specifies the number of shape icons in a row.

Namespace: DevExpress.Web.ASPxDiagram

Assembly: DevExpress.Web.ASPxDiagram.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(3)]
public int ShapeIconsPerRow { get; set; }

Property Value

Type Default Description
Int32 3

The number of shape icons.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to ShapeIconsPerRow
ASP.NET Controls and MVC Extensions ASPxDiagram
.SettingsToolbox .ShapeIconsPerRow
ASP.NET MVC Extensions DiagramSettings
.SettingsToolbox .ShapeIconsPerRow
MVCxDiagram
.SettingsToolbox .ShapeIconsPerRow

Remarks

<dx:ASPxDiagram ID="Diagram" runat="server" Width="100%" Height="600px">
    <SettingsToolbox ShapeIconsPerRow="6" Width="250" ShowSearch="false">
        <Groups>
            <dx:DiagramToolboxGroup Category="General" />
            <dx:DiagramToolboxGroup Category="Containers" />
            <dx:DiagramToolboxGroup Category="Custom" CustomCategoryName="hardware" Title="Hardware" />
        </Groups>
    </SettingsToolbox>
    <CustomShapes>
        <dx:DiagramCustomShape CategoryName="hardware" Type="internet" ... >
    ...    
</dx:ASPxDiagram>

Diagram toolbox

The size of a shape in the toolbox is determined automatically based on the toolbox width and the number of shapes per row. You can use the ToolboxWidthToHeightRatio property to change the aspect ratio of a custom shape in the toolbox.

See Also