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

入力できる最大の行数を取得または設定します。
構文
'宣言
 
Public Property MaxLineCount As Integer
public int MaxLineCount {get; set;}

プロパティ値

コントロールの最適な高さを示すint値。
既定値は zero です。
解説
MaxLineCountは、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 メンバ
Multiline プロパティ
CountWrappedLine プロパティ

 

 


© MESCIUS inc. All rights reserved.