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

DiagramContextToolboxSettings.CustomCategoryName Property

Specifies the name of a custom shape category that is displayed in the context toolbox.

Namespace: DevExpress.Web.ASPxDiagram

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

NuGet Package: DevExpress.Web

Declaration

[DefaultValue("")]
public string CustomCategoryName { get; set; }

Property Value

Type Default Description
String String.Empty

The category name.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to CustomCategoryName
ASP.NET Controls and MVC Extensions ASPxDiagram
.SettingsContextToolbox .CustomCategoryName
ASP.NET MVC Extensions DiagramSettings
.SettingsContextToolbox .CustomCategoryName
MVCxDiagram
.SettingsContextToolbox .CustomCategoryName

Remarks

Note

The CustomCategoryName property is not in effect if the Shapes property is specified.

<dx:ASPxDiagram ID="Diagram" runat="server" Width="100%" Height="600px">
  <SettingsContextToolbox CustomCategoryName="hardware" />
  <CustomShapes>
    <dx:DiagramCustomShape CategoryName="hardware" Type="pc" Title="PC".../>
    ...
  </CustomShapes>
</dx:ASPxDiagram>
See Also