GrapeCity.Win.PluginInputMan アセンブリ > GrapeCity.Win.Spread.InputMan.CellType 名前空間 > GcTextBoxCellType クラス : AcceptsCrLf プロパティ |
'Declaration Public Property AcceptsCrLf As CrLfMode
'使用法 Dim instance As GcTextBoxCellType Dim value As CrLfMode instance.AcceptsCrLf = value value = instance.AcceptsCrLf
public CrLfMode AcceptsCrLf {get; set;}
例外 | 説明 |
---|---|
System.ComponentModel.InvalidEnumArgumentException | value が有効な CrLfMode 項目ではありません。 |
GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType inputcell1 = new GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType(); inputcell1.Multiline = true; inputcell1.AcceptsCrLf = GrapeCity.Win.Spread.InputMan.CellType.CrLfMode.Cut; fpSpread1.Sheets[0].Cells[1, 1].CellType = inputcell1;
Dim inputcell1 As New GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType inputcell1.Multiline = True inputcell1.AcceptsCrLf = GrapeCity.Win.Spread.InputMan.CellType.CrLfMode.Cut FpSpread1.Sheets(0).Cells(1, 1).CellType = inputcell1