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

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

プロパティ値

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

FarPoint.Web.Spread.Column mycol;
mycol = FpSpread1.ActiveSheetView.Columns[1, 3];
mycol.HorizontalAlign = HorizontalAlign.Right;
mycol.VerticalAlign = VerticalAlign.Top;
for (int i = 0; i < FpSpread1.ActiveSheetView.RowCount; i++)
{
    FpSpread1.ActiveSheetView.SetValue(i, 1, "Alignment");
    FpSpread1.ActiveSheetView.Rows[i].Height = 80;
}

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

Dim mycol As FarPoint.Web.Spread.Column
mycol = FpSpread1.ActiveSheetView.Columns(1, 3)
mycol.HorizontalAlign = HorizontalAlign.Right
mycol.VerticalAlign = VerticalAlign.Top

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

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

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

 

 


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