PowerTools SPREAD for Windows Forms 8.0J
GetMaximumCellOverflowWidth メソッド (SpreadView)


ビューのセルの最大オーバフロー幅を取得します(ピクセル単位)。
構文
'Declaration
 
Public Function GetMaximumCellOverflowWidth() As Integer
'使用法
 
Dim instance As SpreadView
Dim value As Integer
 
value = instance.GetMaximumCellOverflowWidth()
public int GetMaximumCellOverflowWidth()

戻り値の型

セルの最大オーバーフロー幅(ピクセル単位)を表す Integer
解説
デフォルト値は 1200 で、1200 ピクセルであることを示します。
次のサンプルコードは、GetMaximumCellOverflowWidthメソッドを使用します。
FarPoint.Win.Spread.SpreadView sv = fpSpread1.GetRootWorkbook();
sv.AllowCellOverflow = true;
sv.SetMaximumCellOverflowWidth(130);
listBox1.Items.Add(sv.GetMaximumCellOverflowWidth().ToString());
Dim sv As FarPoint.Win.Spread.SpreadView = FpSpread1.GetRootWorkbook
sv.AllowCellOverflow = True
sv.SetMaximumCellOverflowWidth(130)
ListBox1.Items.Add(sv.GetMaximumCellOverflowWidth().ToString())
参照

SpreadView クラス
SpreadView メンバ
SetMaximumCellOverflowWidth メソッド

開発者ガイド

オーバーフロー表示

 

 


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