FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread.CellType 名前空間 > EditBaseCellType クラス : ShrinkToFit プロパティ |
'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;}
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