FarPoint.Web.Spread 名前空間 > GeneralCellType クラス : Multiline プロパティ |
'Declaration
Public Overridable Property Multiline As Boolean
public virtual bool Multiline {get; set;}
このプロパティは、CR、LF(復帰、改行)を受け付けて新規行を示し、セルがテキストの複数の行を許可しているかどうかを決定します。
FarPoint.Web.Spread.GeneralCellType g = new FarPoint.Web.Spread.GeneralCellType(); g.Multiline = true; FpSpread1.ActiveSheetView.Cells[0, 0].CellType = g; FpSpread1.ActiveSheetView.Cells[0, 0].Text = "This is a test for multiline";
Dim g As New FarPoint.Web.Spread.GeneralCellType g.Multiline = True FpSpread1.ActiveSheetView.Cells(0, 0).CellType = g FpSpread1.ActiveSheetView.Cells(0, 0).Text = "This is a test for multiline"