Table of Contents
SubMenuIconSource Enumeration

Specifies which icon should be used to indicate if a menu item has submenu.

Namespace: EO.Web
Assembly: EO.Web (in EO.Web.dll)

Syntax
 public enum SubMenuIconSource
Remarks

This enum is used by SubMenuIcon property to specify which icon should be used to indicate if a menu item has submenu. The icon is displayed when the menu item has submenu.

Members
Member Name Description
Auto

Automatically set the submenu icon.

The following steps are used to determine which submenu icon to display when this value is set:

  1. Use RightIcon if provided, otherwise -
  2. Use SubMenuIconUrl if provided, otherwise -
  3. Use default submenu icon;

LeftIcon

Use left icon as submenu icon.

Submenu icon usually appears on the right side of a menu item. It can be customized to appear on the left side of the menu item.

For example, on a right-to-left web page, the menu may appear on the right edge of the page. Setting SubMenuIcon to to LeftIcon can display left icon as submenu icon.

RightIcon Use the menu icon's right icon as submenu icon.
None The menu item does not have a submenu icon.
See Also