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.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
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 |
|
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