menu

Blazor

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

    Show / Hide Table of Contents

    Class PivotEditInfo<T>

    Defines the edited information such as current edit type, action and its edited record information such as edited data, previous data and index positions of before editing performed.

    Inheritance
    System.Object
    PivotEditInfo<T>
    Namespace: Syncfusion.Blazor.PivotView
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class PivotEditInfo<T> : Object
    Type Parameters
    Name
    T

    Constructors

    PivotEditInfo()

    Declaration
    public PivotEditInfo()

    Properties

    Action

    Defines the current edit action such as add, edit, save and delete.

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

    AddedData

    Defines the newly added raw data.

    Declaration
    public List<T> AddedData { get; set; }
    Property Value
    Type
    System.Collections.Generic.List<T>

    ModifiedData

    Defines the modified raw data.

    Declaration
    public Dictionary<int, T> ModifiedData { get; set; }
    Property Value
    Type
    System.Collections.Generic.Dictionary<System.Int32, T>

    RemovedData

    Defines the removed raw data.

    Declaration
    public Dictionary<int, T> RemovedData { get; set; }
    Property Value
    Type
    System.Collections.Generic.Dictionary<System.Int32, T>

    Type

    Defines the current edit type such as batch, inline, dialog and command columns.

    Declaration
    public string Type { get; set; }
    Property Value
    Type
    System.String
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved