PowerTools SPREAD for Windows Forms 8.0J
ScrollBarMode プロパティ (GcTextBoxCellType)


スクロールバーの表示方法を取得または設定します。
構文
'Declaration
 
Public Property ScrollBarMode As ScrollBarMode
'使用法
 
Dim instance As GcTextBoxCellType
Dim value As ScrollBarMode
 
instance.ScrollBarMode = value
 
value = instance.ScrollBarMode
public ScrollBarMode ScrollBarMode {get; set;}

プロパティ値

内容がコントロールの長さを超えると同時にスクロールバーが表示されるかどうかを示す GcTextBox.ScrollBarMode 列挙値の1つ。
既定値は ScrollBarMode.Fixed です。
解説
スクロールバーを表示するには、GcTextBox.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 メンバ

 

 


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