Class GroupingColumnChangeEventArgs
Represents a class that provides data for the GroupingColumnChanging event.
Inheritance
System.Object
System.EventArgs
GroupingColumnChangeEventArgs
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.Grouping
Assembly: Syncfusion.Grouping.Base.dll
Syntax
public class GroupingColumnChangeEventArgs : EventArgs
Constructors
GroupingColumnChangeEventArgs(Object, String, Object, Object)
Initializes a new instance of the GroupingColumnChangeEventArgs class.
Declaration
public GroupingColumnChangeEventArgs(object row, string column, object oldValue, object value)
Parameters
Type | Name | Description |
---|---|---|
System.Object | row | The Row of the column with the changing value. |
System.String | column | The Column with the changing value. |
System.Object | oldValue | The old value. |
System.Object | value | The new value. |
Properties
Column
Gets Column with a changing value.
Declaration
public string Column { get; }
Property Value
Type |
---|
System.String |
OldValue
Gets old value of the column.
Declaration
public object OldValue { get; }
Property Value
Type |
---|
System.Object |
ProposedValue
Gets or sets the proposed new value for the column.
Declaration
public object ProposedValue { get; set; }
Property Value
Type |
---|
System.Object |
Row
Gets the row of the column with a changing value.
Declaration
public object Row { get; }
Property Value
Type |
---|
System.Object |