Webiant Logo Webiant Logo
  1. No results found.

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

TriggerVerticalPosition.cs

namespace Nop.Plugin.Widgets.AccessiBe.Domain;

/// <summary>
/// Represents an enumeration of button vertical positions
/// </summary>
public enum TriggerVerticalPosition
{
    /// <summary>
    /// Align bottom
    /// </summary>
    Bottom,

    /// <summary>
    /// Align center
    /// </summary>
    Center,

    /// <summary>
    /// Align top
    /// </summary>
    Top
}