DiagramContextToolboxSettings.DisplayMode Property
Specifies how shapes are displayed in the context toolbox.
Namespace: DevExpress.Web.ASPxDiagram
Assembly: DevExpress.Web.ASPxDiagram.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
[DefaultValue(DiagramToolboxGroupDisplayMode.Icons)]
public DiagramToolboxGroupDisplayMode DisplayMode { get; set; }
Property Value
Type | Default | Description |
---|---|---|
DiagramToolboxGroupDisplayMode | Icons | The display mode. |
Available values:
Name | Description |
---|---|
Icons | Shapes are displayed as icons. |
Texts | Shapes are displayed as texts. |
Property Paths
You can access this nested property as listed below:
Object Type | Path to DisplayMode |
---|---|
ASPxDiagram |
|
Remarks
<dx:ASPxDiagram ID="Diagram" runat="server" Width="100%" Height="600px">
<SettingsContextToolbox Category="General" DisplayMode="Texts" />
...
</dx:ASPxDiagram>
See Also