PowerTools SPREAD for Windows Forms 8.0J
Row プロパティ (Cell)


このセルを含む行を取得します。
構文
'Declaration
 
Public ReadOnly Property Row As Row
'使用法
 
Dim instance As Cell
Dim value As Row
 
value = instance.Row
public Row Row {get;}

プロパティ値

セルの行を含むRowオブジェクト
解説

このプロパティが使用できるのは実行時のみです。

次のサンプルコードは、行の高さをテキストボックスに返します。
FarPoint.Win.Spread.Cell mycell;  
mycell = fpSpread1.ActiveSheet.Cells[0, 0];
float cw;
cw = mycell.Row.Height;
mycell.Text = Convert.ToString(cw);
Dim mycell As FarPoint.Win.Spread.Cell
mycell = FpSpread1.ActiveSheet.Cells(0, 0)
Dim size As Single
size = mycell.Row.Height
mycell.Text = size
参照

Cell クラス
Cell メンバ

 

 


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