PowerTools SPREAD for ASP.NET 8.0J
NonEmptyRowCount プロパティ (BaseSheetDataModel)

データを含む行の数を取得します。
構文
'Declaration
 
Public Overridable ReadOnly Property NonEmptyRowCount As Integer
public virtual int NonEmptyRowCount {get;}

プロパティ値

モデル内のデータを含む行の数を表すInteger
解説

このプロパティは、モデル内でデータを持つ最後の行のインデックスより1大きい値を返します。

この例では、空でない列と行の数を返します。
FarPoint.Web.Spread.Model.BaseSheetDataModel bdm;
int c, r;
bdm = (FarPoint.Web.Spread.Model.BaseSheetDataModel)FpSpread1.ActiveSheetView.DataModel;
bdm.ColumnCount = 5;
bdm.RowCount = 5;
bdm.SetValue(0, 0, "Not Empty");
c = bdm.NonEmptyColumnCount;
r = bdm.NonEmptyRowCount;
Response.Write("There are " + c + " non empty columns and " + r + " non empty rows.");
Dim bdm As FarPoint.Web.Spread.Model.BaseSheetDataModel
Dim c, r As Integer
bdm = FpSpread1.ActiveSheetView.DataModel
bdm.ColumnCount = 5
bdm.RowCount = 5
bdm.SetValue(0, 0, "Not Empty")
c = bdm.NonEmptyColumnCount
r = bdm.NonEmptyRowCount
Response.Write("There are " & c & " non empty columns and " & r & " non empty rows.")
参照

BaseSheetDataModel クラス
BaseSheetDataModel メンバ
NonEmptyColumnCount プロパティ

 

 


© 2003-2015, GrapeCity inc. All rights reserved.