Webiant Logo Webiant Logo
  1. No results found.

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

LayoutOptionType.cs

namespace Nop.Web.Framework.Models.DataTables;

/// 
/// Represents type of the parameters in layout option
/// 
public enum LayoutOptionType
{
    /// 
    /// An array of any options, providing the ability to show multiple items next to each other.
    /// 
    Array = 1,
    
    /// 
    /// Show nothing in this position.
    /// 
    Null = 2,

    /// 
    /// A string that represents a feature provided by DataTables.
    /// 
    String = 3,

    /// 
    /// A plain object where the parameter keys are the feature to be used and the value is passed to the feature. 
    /// This is normally an object with a list of options.
    /// 
    Object = 4
}