Class PivotValueEditedArgs
Event argument for the PivotValueEdited event.
Inheritance
System.Object
PivotValueEditedArgs
Namespace: Syncfusion.Windows.Controls.PivotGrid
Assembly: Syncfusion.PivotAnalysis.WPF.dll
Syntax
public class PivotValueEditedArgs : EventArgs
Constructors
PivotValueEditedArgs()
Declaration
public PivotValueEditedArgs()
Properties
Handled
Gets or sets whether the EditManager should adjust display values based on the edited change. If you set Handled to true, the EditManager will not make any display changes. If you set Handled to false, the EditManager will adjust the changed cell and any cell that depends upon it.
Declaration
public bool Handled { get; set; }
Property Value
Type |
---|
System.Boolean |
NewValue
Gets the new value entered into the cell.
Declaration
public object NewValue { get; }
Property Value
Type |
---|
System.Object |
OldValue
Gets the value from the cell before editing.
Declaration
public object OldValue { get; }
Property Value
Type |
---|
System.Object |
PivotCellInfo
Gets the PivotCellInfo of the cell that was edited.
Declaration
public PivotCellInfo PivotCellInfo { get; }
Property Value
Type |
---|
PivotCellInfo |
PivotColumnIndex
Gets the column index of the cell that was edited in the Grid.
Declaration
public int PivotColumnIndex { get; }
Property Value
Type |
---|
System.Int32 |
PivotRowIndex
Gets the row index of the cell that was edited in the Grid.
Declaration
public int PivotRowIndex { get; }
Property Value
Type |
---|
System.Int32 |