Class CustomCountEventArgs
Represents the class that provides data for the QueryCustomCount and QueryVisibleCustomCount events that occur when the custom counter value for a record is queried.
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 CustomCountEventArgs : SyncfusionEventArgs
Remarks
See the Grid.Grouping\Samples\CustomSummary. example.
Constructors
CustomCountEventArgs(Record, Double)
Initializes a new instance of the CustomCountEventArgs class.
Declaration
public CustomCountEventArgs(Record record, double customCount)
Parameters
Type | Name | Description |
---|---|---|
Record | record | The record for which the custom counter value should be returned. |
System.Double | customCount | The default value for the custom counter value. |
Properties
CustomCount
Gets or sets the custom counter value.
Declaration
[TraceProperty(true)]
public double CustomCount { get; set; }
Property Value
Type |
---|
System.Double |
Record
Gets the record for which the custom counter value should be returned.
Declaration
[TraceProperty(true)]
public Record Record { get; }
Property Value
Type |
---|
Record |