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
System.Object
EditCompletedEventArgs<T>
Namespace: Syncfusion.Blazor.PivotView
Assembly: Syncfusion.Blazor.dll
Syntax
public class EditCompletedEventArgs<T> : Object
Type Parameters
Name |
---|
T |
Constructors
EditCompletedEventArgs()
Declaration
public EditCompletedEventArgs()
Properties
AddedData
Defines the newly added raw data.
Declaration
public List<T> AddedData { get; set; }
Property Value
Type |
---|
System.Collections.Generic.List<T> |
Cancel
Defines an option to restrict the pivot table update.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
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> |