logo SERENITY
Game Systems Foundation
Search Results for

    Show / Hide Table of Contents

    Interface IUiSlideableActions

    Interface defining actions for a slideable UI component.

    Inherited Members
    IUiInteractableActions.OnDraggingStart
    IUiInteractableActions.OnDraggingEnd
    IUiInteractableActions.OnFocus
    IUiInteractableActions.OnBlur
    IUiInteractableActions.SelectComponentById
    IUiInteractableActions.SelectNextComponent
    IUiInteractableActions.SelectPreviousComponent
    IUiInteractableActions.IncrementValue
    IUiInteractableActions.DecrementValue
    IUiInteractableActions.Submit
    IUiInteractableActions.Cancel
    IUiComponentActions.Awake
    IUiComponentActions.OnEnable
    IUiComponentActions.Update
    IUiComponentActions.OnDisable
    IUiComponentActions.OnDestroy
    Namespace: Serenity.Ui.Application.Interfaces.Components
    Assembly: Serenity.Ui.Application.dll
    Syntax
    public interface IUiSlideableActions : IUiInteractableActions, IUiComponentActions, IComponentActions

    Properties

    OnMaximumValueChange

    Occurs when the maximum value of the slideable component changes.

    Declaration
    Action<IUiComponent, float> OnMaximumValueChange { get; set; }
    Property Value
    Type Description
    Action<IUiComponent, float>

    The action to be performed when the maximum value changes.

    OnMinimumValueChange

    Occurs when the minimum value of the slideable component changes.

    Declaration
    Action<IUiComponent, float> OnMinimumValueChange { get; set; }
    Property Value
    Type Description
    Action<IUiComponent, float>

    The action to be performed when the minimum value changes.

    OnValueChange

    Occurs when the value of the slideable component changes.

    Declaration
    Action<IUiComponent, float> OnValueChange { get; set; }
    Property Value
    Type Description
    Action<IUiComponent, float>

    The action to be performed when the value changes.

    In this article
    © 2026 Serenity. All Rights Reserved