Class FieldValueEventArgs
Represents the class that provides data for the QueryValue and SaveValue events that occur when a value for a field descriptor and record is returned or when a value for a field descriptor and record is saved.
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 FieldValueEventArgs : SyncfusionEventArgs
Remarks
See the Grid.Grouping\Samples\CustomSummary. sample how to use this event with unbound field descriptors.
Constructors
FieldValueEventArgs(FieldDescriptor, Record, Object)
Initializes a new instance of the FieldValueEventArgs class.
Declaration
public FieldValueEventArgs(FieldDescriptor field, Record record, object value)
Parameters
Type | Name | Description |
---|---|---|
FieldDescriptor | field | The affected field. |
Record | record | The affected record. |
System.Object | value | The default value. |
Properties
Field
Gets the affected field.
Declaration
[TraceProperty(true)]
public FieldDescriptor Field { get; }
Property Value
Type |
---|
FieldDescriptor |
Record
Gets the affected record.
Declaration
[TraceProperty(true)]
public Record Record { get; }
Property Value
Type |
---|
Record |
TableDescriptor
Gets the table descriptor.
Declaration
[TraceProperty(true)]
public TableDescriptor TableDescriptor { get; }
Property Value
Type |
---|
TableDescriptor |
Value
Gets or sets the result value or value to be saved into the data source.
Declaration
[TraceProperty(true)]
public object Value { get; set; }
Property Value
Type |
---|
System.Object |