menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class ActionEventArgs<TValue> - Blazor API Reference | Syncfusion

    Show / Hide Table of Contents

    Class ActionEventArgs<TValue>

    Provides event data for actions performed on the Kanban board.

    Inheritance
    System.Object
    ActionEventArgs<TValue>
    Namespace: Syncfusion.Blazor.Kanban
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class ActionEventArgs<TValue> : Object
    Type Parameters
    Name Description
    TValue

    The type of data associated with the Kanban actions.

    Remarks

    This class encapsulates data related to actions such as adding, changing, and deleting records on the Kanban board.

    Constructors

    ActionEventArgs()

    Declaration
    public ActionEventArgs()

    Properties

    AddedRecords

    Gets or sets the added records based on the action.

    Declaration
    public IEnumerable<TValue> AddedRecords { get; set; }
    Property Value
    Type Description
    System.Collections.Generic.IEnumerable<TValue>

    An enumeration of type TValue representing the data added to the Kanban board.

    Cancel

    Gets or sets a value indicating whether the action can be canceled.

    Declaration
    public bool Cancel { get; set; }
    Property Value
    Type Description
    System.Boolean

    true if the action can be canceled; otherwise, false.

    Remarks

    Setting this property to true cancels the action currently in progress.

    ChangedRecords

    Gets or sets the changed records based on the action.

    Declaration
    public IEnumerable<TValue> ChangedRecords { get; set; }
    Property Value
    Type Description
    System.Collections.Generic.IEnumerable<TValue>

    An System.Collections.Generic.IEnumerable<> of the appropriate type TValue representing the data changed on the Kanban board.

    DeletedRecords

    Gets or sets the deleted records based on the action.

    Declaration
    public IEnumerable<TValue> DeletedRecords { get; set; }
    Property Value
    Type Description
    System.Collections.Generic.IEnumerable<TValue>

    An enumeration of type TValue representing the data deleted from the Kanban board.

    Exception

    Gets or sets the failure exceptions if any occur.

    Declaration
    public Exception Exception { get; set; }
    Property Value
    Type Description
    System.Exception

    An instance of the Exception class representing any exceptions thrown during the action.

    KeyField

    Gets or sets the key field of the Kanban board.

    Declaration
    public string KeyField { get; set; }
    Property Value
    Type Description
    System.String

    A string value used to render the Kanban layout.

    Remarks

    The Kanban board uses this key field to organize the layout of cards and lanes.

    RequestType

    Gets or sets the request type of the current action.

    Declaration
    public string RequestType { get; set; }
    Property Value
    Type Description
    System.String

    A string representing the type of request being performed.

    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved