PowerTools MultiRow for Windows Forms 8.0J
MathStatistics コンストラクタ(StatisticsType,String,Boolean)
使用例 

使用する計算の種類を示すStatisticsType
セルの名前。
統計計算時に非表示行を除外する場合はtrue。それ以外の場合はfalse
MathStatisticsクラスの新しいインスタンスを初期化します。
構文
Public Function New( _
   ByVal statisticsType As StatisticsType, _
   ByVal cellName As String, _
   ByVal excludeHiddenRows As Boolean _
)

パラメータ

statisticsType
使用する計算の種類を示すStatisticsType
cellName
セルの名前。
excludeHiddenRows
統計計算時に非表示行を除外する場合はtrue。それ以外の場合はfalse
使用例
次のサンプルコードは、集計セルの計算ロジックをカスタマイズする方法を示します。このサンプルコードは、SummaryCellクラスに示されている詳細なコード例の一部を抜粋したものです。
private SummaryCell CreateTotalSummaryCell()
{
    // Calculate sum of sub-total in all rows.
    SummaryCell summaryCell = new SummaryCell();
    summaryCell.Name = "Total";
    summaryCell.Calculation = new MathStatistics(StatisticsType.Sum, "SubTotal", true);
    summaryCell.Style.Format = "C";
    summaryCell.Style.BackColor = Color.Wheat;
    return summaryCell;
}
Private Function CreateTotalSummaryCell() As SummaryCell
    ' Calculate sum of sub-total in all rows.
    Dim summaryCell As New SummaryCell()
    summaryCell.Name = "Total"
    summaryCell.Calculation = New MathStatistics(StatisticsType.Sum, "SubTotal", True)
    summaryCell.Style.Format = "C"
    summaryCell.Style.BackColor = Color.Wheat
    Return summaryCell
End Function
参照

MathStatistics クラス
MathStatistics メンバ
オーバーロード一覧

 

 


© 2008-2015 GrapeCity inc. All rights reserved.