MESCIUS SPREAD for Windows Forms 15.0J
GetViewportPreferredHeight(Int32) メソッド
使用例 

ビューポート行インデックス
ビューポート行の最大の高さを取得します。
構文
'宣言
 
Public Overloads Function GetViewportPreferredHeight( _
   ByVal rowViewportIndex As Integer _
) As Integer
public int GetViewportPreferredHeight( 
   int rowViewportIndex
)

パラメータ

rowViewportIndex
ビューポート行インデックス

戻り値の型

ビューポート行の高さ(ピクセル単位)を表す Integer
解説

ビューポート行のインデックスは0から始まります。つまり、最初(一番上)のビューポート行のインデックスは0になります。

使用例
次のサンプルコードは、GetViewportPreferredHeightメソッドを使用します。
FarPoint.Win.Spread.SpreadView sv = fpSpread1.GetRootWorkbook();
sv.AddViewport(0,0);
sv.SetViewportPreferredHeight(1, 105);
listBox1.Items.Add(sv.GetViewportPreferredHeight(1).ToString());
Dim sv As FarPoint.Win.Spread.SpreadView = FpSpread1.GetRootWorkbook
sv.AddViewport(0, 0)
sv.SetViewportPreferredHeight(1, 105)
ListBox1.Items.Add(sv.GetViewportPreferredHeight(1).ToString())
参照

SpreadView クラス
SpreadView メンバ
オーバーロード一覧

 

 


© MESCIUS inc. All rights reserved.