aspnet-devexpress-dot-web-78d09d7b.md
Specifies the manner in which a specific separator is displayed to separate menu items from each other.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
public enum AutoSeparatorMode
Public Enum AutoSeparatorMode
| Name | Description |
|---|---|
All |
Specifies that separators are automatically displayed at all menu levels to separate menu items from each other.
|
| RootOnly |
Specifies that separators are automatically displayed only at the root menu level to separate the root menu items from each other.
|
| None |
Specifies that separators are not displayed automatically. In order to display a separator before a particular menu item, the item’s MenuItem.BeginGroup property should be used.
|
The following properties accept/return AutoSeparatorMode values:
| Library | Related API Members |
|---|---|
| ASP.NET Web Forms Controls | ASPxMenuBase.AutoSeparators |
| ASP.NET MVC Extensions | MenuSettingsBase.AutoSeparators |
The AutoSeparatorMode enumerator contains values specifying the manner in which separators are displayed to separate menu items from each other. The values of this enumerator are used to set the ASPxMenuBase.AutoSeparators property.
See Also