PowerTools SPREAD for Windows Forms 8.0J
GetPreferredHeight メソッド


この行のすべてのセルのテキストを表示するために必要な最小の高さを取得します。
構文
'Declaration
 
Public Function GetPreferredHeight() As Single
'使用法
 
Dim instance As Row
Dim value As Single
 
value = instance.GetPreferredHeight()
public float GetPreferredHeight()

戻り値の型

高さ(ピクセル単位)を表す単精度浮動小数点数
解説
このメソッドまたはSheetView.GetPreferredRowHeightメソッドを使用することで、行の高さをセルのデータに基づいて設定できます。詳細については、「データに合わせたサイズ」を参照してください。

次のサンプルコードは、最初のセルのテキストに基づいて行の高さを決定します。

FarPoint.Win.Spread.Row row;
float size;
row = fpSpread1.ActiveSheet.Rows[0];
fpSpread1.ActiveSheet.Cells[0, 0].Text = "This text will be used to determine the height of the row.";
size = row.GetPreferredHeight();
row.Height = size;
Dim row As FarPoint.Win.Spread.Row
Dim size As Single
row = FpSpread1.ActiveSheet.Rows(0)
FpSpread1.ActiveSheet.Cells(0, 0).Text = "This text will be used to determine the height of the row."
size = row.GetPreferredHeight()
row.Height = size
参照

Row クラス
Row メンバ
GetPreferredRowHeight メソッド

開発者ガイド

データに合わせたサイズ

 

 


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