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

スクロールバーの表示方法を取得または設定します。
構文
'宣言
 
Public Property ScrollBarMode As ScrollBarMode
public ScrollBarMode ScrollBarMode {get; set;}

プロパティ値

内容がコントロールの長さを超えると同時にスクロールバーが表示されるかどうかを示す ScrollBarMode 列挙値の1つ。

デフォルト値はScrollBarMode.Fixedです。
解説
スクロールバーを表示するには、Multiline プロパティを true に設定する必要があります。ScrollBarMode.Fixed に設定した場合、スクロールバーは常に表示されます。ScrollBarMode.Automatic に設定した場合は、コントロールの内容がコントロールの長さを超えたときにのみ、スクロールバーが表示されます。
使用例
次のサンプルコードは、ScrollBarMode プロパティを使用します。
GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType textcell = new GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType();
textcell.FocusPosition = GrapeCity.Win.Spread.InputMan.CellType.EditorBaseFocusCursorPosition.MouseLocation;
textcell.GridLine = new GrapeCity.Win.Spread.InputMan.CellType.Line(GrapeCity.Win.Spread.InputMan.CellType.LineStyle.Dashed, Color.DarkGreen);
textcell.LineSpace = 2;
textcell.ScrollBarMode = GrapeCity.Win.Spread.InputMan.CellType.ScrollBarMode.Automatic;
textcell.ScrollBars = ScrollBars.Both;
textcell.Multiline = true;
fpSpread1.Sheets[0].Cells[0, 0].CellType = textcell;
Dim textcell As New GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType()
textcell.FocusPosition = GrapeCity.Win.Spread.InputMan.CellType.EditorBaseFocusCursorPosition.MouseLocation
textcell.GridLine = New GrapeCity.Win.Spread.InputMan.CellType.Line(GrapeCity.Win.Spread.InputMan.CellType.LineStyle.Dashed, Color.DarkGreen)
textcell.LineSpace = 2
textcell.ScrollBarMode = GrapeCity.Win.Spread.InputMan.CellType.ScrollBarMode.Automatic
textcell.ScrollBars = ScrollBars.Both
textcell.Multiline = True
fpSpread1.Sheets(0).Cells(0, 0).CellType = textcell
参照

GcTextBoxCellType クラス
GcTextBoxCellType メンバ
ScrollBars プロパティ

 

 


© MESCIUS inc. All rights reserved.