PowerTools SPREAD for Windows Forms 8.0J
ShrinkToFit プロパティ (EditBaseCellType)


テキストをセルに合わせて縮小するかどうかを取得または設定します。
構文
'Declaration
 
Public Property ShrinkToFit As Boolean
'使用法
 
Dim instance As EditBaseCellType
Dim value As Boolean
 
instance.ShrinkToFit = value
 
value = instance.ShrinkToFit
public bool ShrinkToFit {get; set;}
次のサンプルコードは、通貨型セルの ShrinkToFit プロパティを設定します。
FarPoint.Win.Spread.CellType.CurrencyCellType currcell = new FarPoint.Win.Spread.CellType.CurrencyCellType();
currcell.ShrinkToFit = true;
fpSpread1.Sheets[0].Cells[0, 0].CellType = currcell;
Dim currcell As New FarPoint.Win.Spread.CellType.CurrencyCellType()
currcell.ShrinkToFit = True
FpSpread1.Sheets(0).Cells(0, 0).CellType = currcell
参照

EditBaseCellType クラス
EditBaseCellType メンバ

 

 


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