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

このセルを含む列を取得します。
構文
'Declaration
 
Public ReadOnly Property Column As Column
public Column Column {get;}

プロパティ値

このセルを含む列のColumnオブジェクト
この例では、Cellオブジェクトを作成し、Columnオブジェクトの幅をテキストボックスに返します。
FarPoint.Web.Spread.Cell mycell;
mycell = FpSpread1.Cells[0, 0];
int w;
w = mycell.Column.Width;
TextBox1.Text=Convert.ToString(w);
Dim mycell As FarPoint.Web.Spread.Cell
mycell = FpSpread1.Cells(0, 0)
Dim w As Integer
w = mycell.Column.Width
TextBox1.Text = w
参照

Cell クラス
Cell メンバ

 

 


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