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


入力できる最大の行数を取得または設定します。
構文
'Declaration
 
Public Property MaxLineCount As Integer
'使用法
 
Dim instance As GcTextBoxCellType
Dim value As Integer
 
instance.MaxLineCount = value
 
value = instance.MaxLineCount
public int MaxLineCount {get; set;}

プロパティ値

最大の行数を示す int 値。
既定値はゼロです。
解説
MaxLineCount は、GcTextBox.CountWrappedLine プロパティが true で、なおかつ GrapeCity.Win.Spread.InputMan.CellType.GcTextBox.Muilitline プロパティも true であるときに、入力できるテキストの行数を制限します。このプロパティの既定値はゼロで、制限がないことを意味します。
次のサンプルコードは、MaxLineCount プロパティを使用します。
GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType inputcell = new GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType();
inputcell.Multiline = true;
inputcell.MaxLineCount = 3;
fpSpread1.Sheets[0].Cells[0, 0].CellType = inputcell;
Dim inputcell As New GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType()
inputcell.Multiline = True
inputcell.MaxLineCount = 3
FpSpread1.Sheets(0).Cells(0, 0).CellType = inputcell
参照

GcTextBoxCellType クラス
GcTextBoxCellType メンバ

 

 


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