menu

WinForms

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class PivotValueEditedEventArgs - API Reference

    Show / Hide Table of Contents

    Class PivotValueEditedEventArgs

    Provides data for the PivotValueEdited event.

    Inheritance
    System.Object
    System.EventArgs
    PivotValueEditedEventArgs
    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.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 Description
    System.Object

    OldValue

    Gets the cell value before editing the cell.

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

    PivotCellInfo

    Gets the information of the edited cell.

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

    PivotColumnIndex

    Gets the column index of the edited cell.

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

    PivotRowIndex

    Gets the row index of the edited cell.

    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