Class RecordValueChangedEventArgs
Represents the class that provides data about the RecordValueChanged event of a Engine which occurs when a RecordFieldCell cell's value is changed and after Record.SetValue returned.
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)
Namespace: Syncfusion.Grouping
Assembly: Syncfusion.Grouping.Base.dll
Syntax
public sealed class RecordValueChangedEventArgs : SyncfusionEventArgs
Constructors
RecordValueChangedEventArgs(Record, String, FieldDescriptor)
Initializes the new instance of the RecordValueChangedEventArgs class.
Declaration
public RecordValueChangedEventArgs(Record record, string column, FieldDescriptor fieldDescriptor)
Parameters
Type | Name | Description |
---|---|---|
Record | record | The record. |
System.String | column | The column. |
FieldDescriptor | fieldDescriptor | The field descriptor. |
Properties
Column
Gets the column.
Declaration
[TraceProperty(true)]
public string Column { get; }
Property Value
Type |
---|
System.String |
FieldDescriptor
Gets the field descriptor.
Declaration
[TraceProperty(true)]
public FieldDescriptor FieldDescriptor { get; }
Property Value
Type |
---|
FieldDescriptor |
Record
Gets the record.
Declaration
[TraceProperty(true)]
public Record Record { get; }
Property Value
Type |
---|
Record |