Interface IUiSlideableActions
Interface defining actions for a slideable UI component.
Inherited Members
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. |