alexa
menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Search Results for

    Show / Hide Table of Contents

    Class EditCompletedEventArgs<T>

    The event argument which holds the editing information of the raw data made in corresponding aggregated cell before updated to the pivot table.

    Inheritance
    object
    EditCompletedEventArgs<T>
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Syncfusion.Blazor.PivotView
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class EditCompletedEventArgs<T>
    Type Parameters
    Name
    T

    Constructors

    EditCompletedEventArgs()

    Declaration
    public EditCompletedEventArgs()

    Properties

    AddedData

    Defines the newly added raw data.

    Declaration
    [JsonPropertyName("addedData")]
    public List<T> AddedData { get; set; }
    Property Value
    Type
    List<T>

    Cancel

    Defines an option to restrict the pivot table update.

    Declaration
    [JsonPropertyName("cancel")]
    public bool Cancel { get; set; }
    Property Value
    Type Description
    bool

    true, if the pivot table update is canceled. Otherwise, false.

    ModifiedData

    Defines the modified raw data.

    Declaration
    [JsonPropertyName("modifiedData")]
    public Dictionary<int, T> ModifiedData { get; set; }
    Property Value
    Type
    Dictionary<int, T>

    RemovedData

    Defines the removed raw data.

    Declaration
    [JsonPropertyName("removedData")]
    public Dictionary<int, T> RemovedData { get; set; }
    Property Value
    Type
    Dictionary<int, T>
    In this article
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved