PowerTools SPREAD for ASP.NET 8.0J
Index2 プロパティ (Row)

この行範囲の終了インデックスを取得します。
構文
'Declaration
 
Public ReadOnly Property Index2 As Integer
public int Index2 {get;}

プロパティ値

範囲の終了行の0から始まるインデックスを表すInteger
解説
Indexプロパティを使用し、範囲の開始インデックスを指定します。
この例では、複数列と行から成るRowオブジェクトを作成し、いくつかの行のテキストの配置を調整します。列幅を変更し、配置の変更を見やすくします。RowオブジェクトのIndex2をテキストボックスに返します。
FpSpread1.ActiveSheetView.ColumnCount = 10;
FpSpread1.ActiveSheetView.PageSize = 20;
FpSpread1.ActiveSheetView.RowCount = 20;

FarPoint.Web.Spread.Row myrow;
myrow = FpSpread1.ActiveSheetView.Rows[1, 3];
myrow.HorizontalAlign = HorizontalAlign.Right;
myrow.VerticalAlign = VerticalAlign.Top;

FpSpread1.ActiveSheetView.Columns[1].Width = 140;

for (int i = 0 ; i < FpSpread1.ActiveSheetView.RowCount ;i++)
{
    FpSpread1.ActiveSheetView.SetValue(i, 1, "Alignment");
}

TextBox1.Text=Convert.ToString(myrow.Index2);
FpSpread1.ActiveSheetView.ColumnCount = 10
FpSpread1.ActiveSheetView.PageSize = 20
FpSpread1.ActiveSheetView.RowCount = 20

Dim myrow As FarPoint.Web.Spread.Row
myrow = FpSpread1.ActiveSheetView.Rows(1, 3)
myrow.HorizontalAlign = HorizontalAlign.Right
myrow.VerticalAlign = VerticalAlign.Top

FpSpread1.ActiveSheetView.Columns(i).Width = 140

For i As Integer = 0 To FpSpread1.ActiveSheetView.RowCount - 1
    FpSpread1.ActiveSheetView.SetValue(i, 1, "Alignment")
Next i

TextBox1.Text = Convert.ToString(myrow.Index2)
参照

Row クラス
Row メンバ
Index プロパティ

 

 


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