PowerTools SPREAD for Windows Forms 8.0J
AcceptsCrLf プロパティ (GcTextBoxCellType)


文字列をコピー、切り取り、および貼り付けるときの CrLf 文字の処理方法を示す値を取得または設定します。
構文
'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;}

プロパティ値

文字列をコピー、切り取り、および貼り付けるときの CrLf 文字の処理モードを示す CrLfMode 列挙体。
既定値は CrLfMode.NoControl です。
例外
例外説明
System.ComponentModel.InvalidEnumArgumentExceptionvalue が有効な 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 メンバ

 

 


© 2004-2015, GrapeCity inc. All rights reserved.