Skip to main content
All docs
V25.1
  • 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.v25.1.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:

    Object Type Path to CustomCategoryName
    ASPxDiagram
    .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