PowerTools SPREAD for Windows Forms 8.0J
AcceptsTabChar プロパティ


文字列をコピー、切り取り、および貼り付けるときのTab文字の処理方法を示す値を取得または設定します。
構文
'Declaration
 
Public Property AcceptsTabChar As TabCharMode
'使用法
 
Dim instance As GcTextBoxCellType
Dim value As TabCharMode
 
instance.AcceptsTabChar = value
 
value = instance.AcceptsTabChar
public TabCharMode AcceptsTabChar {get; set;}

プロパティ値

文字列をコピー、切り取り、および貼り付けるときのTab文字の処理モードを示すTabCharMode列挙体。
デフォルト値はTabCharMode.NoControlです。
例外
例外説明
System.ComponentModel.InvalidEnumArgumentExceptionvalueが有効なTabCharMode項目ではありません。
解説
このプロパティはセルが編集モードのときにのみ効果があります。
次のサンプルコードは、AcceptsTabChar プロパティを使用します。
GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType datecell = new GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType();
datecell.AcceptsCrLf = GrapeCity.Win.Spread.InputMan.CellType.CrLfMode.Cut;
fpSpread1.Sheets[0].Cells[0, 0].CellType = datecell;

GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType textcell = new GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType();
textcell.AcceptsCrLf = GrapeCity.Win.Spread.InputMan.CellType.CrLfMode.Cut;
textcell.AcceptsTabChar = GrapeCity.Win.Spread.InputMan.CellType.TabCharMode.NoControl;
textcell.AllowSpace = GrapeCity.Win.Spread.InputMan.CellType.AllowSpace.Both;
fpSpread1.Sheets[0].Cells[1, 1].CellType = textcell;
Dim datecell As New GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType()
datecell.AcceptsCrLf = GrapeCity.Win.Spread.InputMan.CellType.CrLfMode.Cut
FpSpread1.Sheets(0).Cells(0, 0).CellType = datecell

Dim textcell As New GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType()
textcell.AcceptsCrLf = GrapeCity.Win.Spread.InputMan.CellType.CrLfMode.Cut
textcell.AcceptsTabChar = GrapeCity.Win.Spread.InputMan.CellType.TabCharMode.NoControl
textcell.AllowSpace = GrapeCity.Win.Spread.InputMan.CellType.AllowSpace.Both
FpSpread1.Sheets(0).Cells(1, 1).CellType = textcell
参照

GcTextBoxCellType クラス
GcTextBoxCellType メンバ

 

 


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