'Declaration Public Enum CrLfMode Inherits System.Enum
'使用法 Dim instance As CrLfMode
public enum CrLfMode : System.Enum
メンバ | 説明 |
---|---|
Cut | 文字列をコピー、切り取り、または貼り付けるときに最初のCrLf文字以降の文字列を切り捨てます。 |
Filter | 文字列をコピー、切り取り、または貼り付けるときにすべてのCrLf文字を削除します。 |
NoControl | 文字列をコピー、切り取り、または貼り付けるときにすべてのCrLf文字を受け入れます。 |
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
System.Object
System.ValueType
System.Enum
GrapeCity.Win.Spread.InputMan.CellType.CrLfMode