WPF

Code Examples Upgrade Guide User Guide Demos Support Forums Download
  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class PivotValueEditedArgs

    Show / Hide Table of Contents

    Class PivotValueEditedArgs

    Event argument for the PivotValueEdited event.

    Inheritance
    System.Object
    System.EventArgs
    PivotValueEditedArgs
    Inherited Members
    System.EventArgs.Empty
    System.Object.ToString()
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    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 Description
    System.Boolean

    NewValue

    Gets the new value entered into the cell.

    Declaration
    public object NewValue { get; }
    Property Value
    Type Description
    System.Object

    OldValue

    Gets the value from the cell before editing.

    Declaration
    public object OldValue { get; }
    Property Value
    Type Description
    System.Object

    PivotCellInfo

    Gets the PivotCellInfo of the cell that was edited.

    Declaration
    public PivotCellInfo PivotCellInfo { get; }
    Property Value
    Type Description
    PivotCellInfo

    PivotColumnIndex

    Gets the column index of the cell that was edited in the Grid.

    Declaration
    public int PivotColumnIndex { get; }
    Property Value
    Type Description
    System.Int32

    PivotRowIndex

    Gets the row index of the cell that was edited in the Grid.

    Declaration
    public int PivotRowIndex { get; }
    Property Value
    Type Description
    System.Int32
    Back to top Generated by DocFX
    Copyright © 2001 - 2023 Syncfusion Inc. All Rights Reserved