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

この列のインデックスまたは、列範囲の開始インデックスを取得します。
構文
'Declaration
 
Public ReadOnly Property Index As Integer
public int Index {get;}

プロパティ値

範囲の開始列の(0から始まる)インデックスを表すInteger
解説

列範囲を指定している場合、Index2プロパティを使用して範囲の終了インデックスを指定します。

ColumnsオブジェクトのDefaultプロパティによって返されるColumnオブジェクトのインデックスは常に、-1となります。

この例では、Columnオブジェクトを作成し、列内のテキスト配置を調整します。行の高さを変更し、配置の変更内容を見やすくできます。Columnオブジェクトのインデックスをテキストボックスに返します。
FpSpread1.ActiveSheetView.ColumnCount = 10;
FpSpread1.ActiveSheetView.PageSize = 20;
FpSpread1.ActiveSheetView.RowCount = 20;

FarPoint.Web.Spread.Column mycol;
mycol = FpSpread1.ActiveSheetView.Columns[1];
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.Index);
FpSpread1.ActiveSheetView.ColumnCount = 10
FpSpread1.ActiveSheetView.PageSize = 20
FpSpread1.ActiveSheetView.RowCount = 20

Dim mycol As FarPoint.Web.Spread.Column
mycol = FpSpread1.ActiveSheetView.Columns(1)
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.Index)
参照

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

 

 


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