MESCIUS SPREAD for Windows Forms 15.0J
GetPreferredHeight メソッド
使用例 

この行のすべてのセルのテキストを表示するために必要な最小の高さを取得します。
構文
'宣言
 
Public Function GetPreferredHeight() As Single
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 メソッド

開発者ガイド

データに合わせたサイズ

 

 


© MESCIUS inc. All rights reserved.