menu

WinForms

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

    Show / Hide Table of Contents

    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.

    Inheritance
    System.Object
    System.EventArgs
    SyncfusionEventArgs
    FieldValueEventArgs
    Inherited Members
    SyncfusionEventArgs.ToString()
    System.EventArgs.Empty
    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.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 Description
    FieldDescriptor

    Record

    Gets the affected record.

    Declaration
    [TraceProperty(true)]
    public Record Record { get; }
    Property Value
    Type Description
    Record

    TableDescriptor

    Gets the table descriptor.

    Declaration
    [TraceProperty(true)]
    public TableDescriptor TableDescriptor { get; }
    Property Value
    Type Description
    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 Description
    System.Object
    Back to top Generated by DocFX
    Copyright © 2001 - 2023 Syncfusion Inc. All Rights Reserved