FarPoint.Web.Spread 名前空間 > LabelCellType クラス : AllowWrap プロパティ |
このプロパティがtrueに設定されている場合、セル幅を超えるテキストは折り返されます。このプロパティがfalseに設定されている場合、セル幅を超えるテキストはセルに表示されません。
折り返しは単語間でのみ発生します。
FarPoint.Web.Spread.LabelCellType lblcell = new FarPoint.Web.Spread.LabelCellType(); lblcell.AllowWrap = true; int i = 100; string fstring = i.ToString("C"); lblcell.FormatString = fstring; FpSpread1.ActiveSheetView.Cells[0, 0].CellType = lblcell; FpSpread1.ActiveSheetView.Cells[0, 0].Text = fstring;
Dim lblcell As New FarPoint.Web.Spread.LabelCellType() lblcell.AllowWrap = True Dim i As Integer = 100 Dim fstring As String = i.ToString("C") lblcell.FormatString = fstring FpSpread1.ActiveSheetView.Cells(0, 0).CellType = lblcell FpSpread1.ActiveSheetView.Cells(0, 0).Text = fstring