MESCIUS SPREAD for Windows Forms 15.0J
AcceptsCrLf プロパティ (GcTextBoxCellType)
使用例 

文字列をコピー、切り取り、および貼り付けるときの CrLf 文字の処理方法を示す値を取得または設定します。
構文
'宣言
 
Public Property AcceptsCrLf As CrLfMode
public CrLfMode AcceptsCrLf {get; set;}

プロパティ値

文字列をコピー、切り取り、および貼り付けるときの CrLf 文字の処理モードを示す CrLfMode 列挙体。

既定値は CrLfMode.NoControl です。
例外
例外解説
System.ComponentModel.InvalidEnumArgumentException指定された項目が有効なCrLfModeではありません。
解説
CrLf.Cutに設定すると、GcTextBoxで文字列をコピー、切り取り、および貼り付けるときに標準のTextBoxと同じように動作します。
使用例
次のサンプルコードは、AcceptsCrLf プロパティを使用します。
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
参照

GcTextBoxCellType クラス
GcTextBoxCellType メンバ

 

 


© MESCIUS inc. All rights reserved.