# C1.WPF.FlexGrid.Aggregate

## Content

<div class="doc-site-dotnet-api-container">




  <h1 id="C1_WPF_FlexGrid_Aggregate" data-uid="C1.WPF.FlexGrid.Aggregate" class="text-break">Aggregate Enum
</h1>
  <div class="markdown level0 summary"><p>Specifies the type of aggregate to calculate over a group of values.</p>
</div>
  <div class="markdown level0 conceptual"></div>
  <h6><strong>Namespace</strong>: <a class="xref" href="C1.WPF.FlexGrid.html">C1.WPF.FlexGrid</a></h6>
  <h6><strong>Assembly</strong>: C1.WPF.FlexGrid.4.6.2.dll</h6>
  <h5 id="C1_WPF_FlexGrid_Aggregate_syntax">Syntax</h5>
  <div class="codewrapper">
    <pre><code class="lang-csharp hljs">public enum Aggregate</code></pre>
  </div>
  <div class="codewrapper">
    <pre><code class="lang-vbnet hljs">Public Enum Aggregate</code></pre>
  </div>
  <h3 id="fields">Fields
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    <thead>
    </thead></thead><tbody>
      <tr>
        <td id="C1_WPF_FlexGrid_Aggregate_Average">Average</td>
        <td><p>Returns the average value of the non-null cells in the group.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_FlexGrid_Aggregate_Count">Count</td>
        <td><p>Returns the count of non-null values in the group.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_FlexGrid_Aggregate_Custom">Custom</td>
        <td><p>Raise the <b>CustomAggregate</b> event to calculate custom aggregates.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_FlexGrid_Aggregate_Maximum">Maximum</td>
        <td><p>Returns the maximum value in the group.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_FlexGrid_Aggregate_Minimum">Minimum</td>
        <td><p>Returns the minimum value in the group.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_FlexGrid_Aggregate_None">None</td>
        <td><p>No aggregate.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_FlexGrid_Aggregate_Range">Range</td>
        <td><p>Returns the difference between the maximum and minimum values in the group.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_FlexGrid_Aggregate_Std">Std</td>
        <td><p>Returns the sample standard deviation of the values in the group (uses the formula based on n-1).</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_FlexGrid_Aggregate_StdPop">StdPop</td>
        <td><p>Returns the population standard deviation of the values in the group (uses the formula based on n).</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_FlexGrid_Aggregate_Sum">Sum</td>
        <td><p>Returns the sum of all values in the group.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_FlexGrid_Aggregate_Var">Var</td>
        <td><p>Returns the sample variance of the values in the group (uses the formula based on n-1).</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_FlexGrid_Aggregate_VarPop">VarPop</td>
        <td><p>Returns the population variance of the values in the group (uses the formula based on n).</p>
</td>
      </tr>
    </tbody>
  </table>
</div>
