MESCIUS SPREAD for ASP.NET 10.0J
GetAggregateValue メソッド

列のインデックス
集計値を取得します。
構文
'Declaration
 
Public Function GetAggregateValue( _
   ByVal column As Integer _
) As Object
public object GetAggregateValue( 
   int column
)

パラメータ

column
列のインデックス
次のサンプルコードは、指定した列の集計を返します。
object o;
o = FpSpread1.ActiveSheetView.ColumnFooter.GetAggregateValue(0);
string msg = ("The aggregate for the column is " + o.ToString());
Response.Write("<script language='javascript'>alert('" + msg + "')</script>");
Dim o As Object
o = FpSpread1.ActiveSheetView.ColumnFooter.GetAggregateValue(0)
Dim msg As String = "The aggregate for the column is " + o.ToString()
Response.Write("<script language='javascript'>alert('" & msg & "')</script>")
参照

ColumnFooter クラス
ColumnFooter メンバ

 

 


© MESCIUS inc. All rights reserved.