FarPoint.Web.Spread 名前空間 > Row クラス : Index プロパティ |
行範囲を指定している場合、Index2プロパティを使用して範囲の終了インデックスを指定します。
RowオブジェクトのDefaultプロパティによって返されるRowオブジェクトは常に、-1のインデックスを持ちます。
FpSpread1.ActiveSheetView.ColumnCount = 10; FpSpread1.ActiveSheetView.PageSize = 20; FpSpread1.ActiveSheetView.RowCount = 20; FarPoint.Web.Spread.Row myrow; myrow = FpSpread1.ActiveSheetView.Rows[1]; myrow.HorizontalAlign = HorizontalAlign.Right; myrow.VerticalAlign = VerticalAlign.Top; for (int i = 0; i < FpSpread1.ActiveSheetView.RowCount; i++) { FpSpread1.ActiveSheetView.SetValue(i, 1, "Alignment"); FpSpread1.ActiveSheetView.Columns[1].Width = 140; } TextBox1.Text = Convert.ToString(myrow.Index);
FpSpread1.ActiveSheetView.ColumnCount = 10 FpSpread1.ActiveSheetView.PageSize = 20 FpSpread1.ActiveSheetView.RowCount = 20 Dim myrow As FarPoint.Web.Spread.Row myrow = FpSpread1.ActiveSheetView.Rows(1) myrow.HorizontalAlign = HorizontalAlign.Right myrow.VerticalAlign = VerticalAlign.Top For i As Integer = 0 To FpSpread1.ActiveSheetView.RowCount - 1 FpSpread1.ActiveSheetView.SetValue(i, 1, "Alignment") FpSpread1.ActiveSheetView.Columns(1).Width = 140 Next i TextBox1.Text = Convert.ToString(myrow.Index)