PowerTools SPREAD for Windows Forms 10.0J
AcceptsCrLf プロパティ (GcNumberCellType)


文字列をコピー、切り取り、および貼り付けるときの CrLf 文字の処理方法を示す値を取得または設定します。
構文
'Declaration
 
Public Property AcceptsCrLf As CrLfMode
'使用法
 
Dim instance As GcNumberCellType
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に設定すると、GcNumberで文字列をコピー、切り取り、または貼り付けるときの動作が標準のTextBoxと同じになります。
次のサンプルコードは、AcceptsCrLfプロパティを設定します。
GrapeCity.Win.Spread.InputMan.CellType.GcNumberCellType ncell1 = new GrapeCity.Win.Spread.InputMan.CellType.GcNumberCellType();
ncell1.AcceptsCrLf = GrapeCity.Win.Spread.InputMan.CellType.CrLfMode.Filter;
fpSpread1.ActiveSheet.Cells[1, 1].CellType = ncell1;
fpSpread1.ActiveSheet.Cells[1, 1].Value = 12.31;
Dim ncell1 As New GrapeCity.Win.Spread.InputMan.CellType.GcNumberCellType()
ncell1.AcceptsCrLf = GrapeCity.Win.Spread.InputMan.CellType.CrLfMode.Filter
FpSpread1.ActiveSheet.Cells(1, 1).CellType = ncell1
FpSpread1.ActiveSheet.Cells(1, 1).Value = 12.31
参照

GcNumberCellType クラス
GcNumberCellType メンバ

 

 


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