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

式文字列。
指定した式を使用して、Expressionクラスの新しいインスタンスを初期化します。
構文
Public Function New( _
   ByVal expression As String _
)
public Expression( 
   string expression
)

パラメータ

expression
式文字列。
使用例
次のサンプルコードは、集計セルの計算ロジックをカスタマイズする方法を示します。このサンプルコードは、SummaryCellクラスに示されている詳細なコード例の一部を抜粋したものです。
private SummaryCell CreateSubTotalSummaryCell()
{
    // Calculation the sub total base on 'Price' and 'Count' in same row.
    SummaryCell summaryCell = new SummaryCell();
    summaryCell.Name = "SubTotal";
    summaryCell.Calculation = new Expression("Price * Count");
    summaryCell.Style.Format = "C";
    summaryCell.Style.BackColor = Color.Wheat;
    return summaryCell;
}
Private Function CreateSubTotalSummaryCell() As SummaryCell
    ' Calculation the sub total base on 'Price' and 'Count' in same row.
    Dim summaryCell As New SummaryCell()
    summaryCell.Name = "SubTotal"
    summaryCell.Calculation = New Expression("Price * Count")
    summaryCell.Style.Format = "C"
    summaryCell.Style.BackColor = Color.Wheat
    Return summaryCell
End Function
参照

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

 

 


© 2008-2015 GrapeCity inc. All rights reserved.