Interface IUiCancellableActions
Interface defining actions for a cancellable UI component.
Namespace: Serenity.Ui.Application.Interfaces.Components
Assembly: Serenity.Ui.Application.dll
Syntax
public interface IUiCancellableActions : IComponentActions
Properties
OnCancel
Action to be performed when the component is cancelled.
Declaration
Action<IUiComponent> OnCancel { get; set; }
Property Value
| Type | Description |
|---|---|
| Action<IUiComponent> | Action that takes an IUiComponent as a parameter and returns void. |