Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

MenuItemInsertType.cs

namespace Nop.Web.Framework.Events;

/// 
/// Represents a menu item insertion type
/// 
public enum MenuItemInsertType
{
    /// 
    /// Insert item after specified one
    /// 
    After,
    /// 
    /// Insert item before specified one
    /// 
    Before,
    /// 
    /// Try to insert the item after the specified one, if it fails, paste it before the specified element
    /// 
    TryAfterThanBefore,
    /// 
    /// Try to insert the item before the specified one, if it fails, paste it after the specified element
    /// 
    TryBeforeThanAfter
}