New to Telerik UI for WPFStart a free 30-day trial

Represents a cell which holds the returned by an aggregate function result.

Definition

Constructors

Initializes a new instance of the GridViewAggregateResultCell class.

C#
public GridViewAggregateResultCell()

Fields

AggregateNameProperty

DependencyProperty

Identifies the AggregateName dependency property.

C#
public static readonly DependencyProperty AggregateNameProperty

AggregateResultProperty

DependencyProperty

Identifies the AggregateResult dependency property.

C#
public static readonly DependencyProperty AggregateResultProperty

Properties

Gets or sets the name of the aggregate function which supplies the value to display in the GridViewAggregateResultCell.

C#
public string AggregateName { get; set; }
Property Value:

The aggregate function which supplies the value to display in the GridViewAggregateResultCell.

Gets or sets the returned by an aggregate function result which is displayed in the GridViewAggregateResultCell.

C#
public AggregateResult AggregateResult { get; set; }
Property Value:

The returned by an aggregate function result which is displayed in the GridViewAggregateResultCell.

Methods

C#
protected override void OnInitialized(EventArgs e)
Parameters:eEventArgs