'宣言 Public Class SummaryResult Inherits Infragistics.PropertyChangeNotifier
public class SummaryResult : Infragistics.PropertyChangeNotifier
SummaryResult オブジェクトは集計計算の結果を保持します。RecordCollection は、その RecordCollection に関連付けられたすべての集計計算結果のコレクションを返す RecordCollectionBase.SummaryResults プロパティを公開します。
計算する集計を指定するには、FieldLayout の FieldLayout.SummaryDefinitions プロパティを使用します。
Imports Infragistics.Windows Imports Infragistics.Windows.Editors Imports Infragistics.Windows.DataPresenter Private Sub Dp_SummaryResultChanged(ByVal sender As Object, ByVal e As Infragistics.Windows.DataPresenter.Events.SummaryResultChangedEventArgs) Debug.WriteLine("New value of summary is " & e.SummaryResult.Value) End Sub
using Infragistics.Windows; using Infragistics.Windows.Editors; using Infragistics.Windows.DataPresenter; public void dp_SummaryResultChanged( object sender, Infragistics.Windows.DataPresenter.Events.SummaryResultChangedEventArgs e ) { Debug.WriteLine( "New value of summary is " + e.SummaryResult.Value ); }