FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > Cell クラス : 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