Class PivotValueEditedEventArgs
Provides data for the PivotValueEdited event.
Inheritance
System.Object
System.EventArgs
PivotValueEditedEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.Windows.Forms.PivotAnalysis
Assembly: Syncfusion.PivotAnalysis.Windows.dll
Syntax
public class PivotValueEditedEventArgs : EventArgs
Constructors
PivotValueEditedEventArgs()
Declaration
public PivotValueEditedEventArgs()
Properties
Handled
Gets or sets a value indicating whether the PivotValueEdited event is handled.
Declaration
public bool Handled { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean | true if the event is handled; otherwise, false. The default value is false. |
Remarks
If the event is not handled, the PivotEditingManager will adjust the changed cell and any cell that depends upon it. Set this property value as true to cancel the PivotValueEdited event.
NewValue
Gets the cell value after editing the cell.
Declaration
public object NewValue { get; }
Property Value
| Type |
|---|
| System.Object |
OldValue
Gets the cell value before editing the cell.
Declaration
public object OldValue { get; }
Property Value
| Type |
|---|
| System.Object |
PivotCellInfo
Gets the information of the edited cell.
Declaration
public PivotCellInfo PivotCellInfo { get; }
Property Value
| Type |
|---|
| PivotCellInfo |
PivotColumnIndex
Gets the column index of the edited cell.
Declaration
public int PivotColumnIndex { get; }
Property Value
| Type |
|---|
| System.Int32 |
PivotRowIndex
Gets the row index of the edited cell.
Declaration
public int PivotRowIndex { get; }
Property Value
| Type |
|---|
| System.Int32 |