PowerTools SPREAD for Windows Forms 8.0J
BorderStyle プロパティ (DropDownCalculatorInfo)


ドロップダウンウィンドウの境界線のスタイルを取得または設定します。
構文
'Declaration
 
Public Property BorderStyle As BorderStyle
'使用法
 
Dim instance As DropDownCalculatorInfo
Dim value As BorderStyle
 
instance.BorderStyle = value
 
value = instance.BorderStyle
public BorderStyle BorderStyle {get; set;}

プロパティ値

境界線スタイルを示すBorderStyle列挙体。
デフォルト値はSystem.Windows.Forms.BorderStyle.FixedSingleです。
解説
BorderStyle プロパティを使用すると、既定の3次元コントロールに加えて、境界線のないフラットスタイルのコントロールを作成できます。
次のサンプルコードは、BorderStyleプロパティを設定します。
GrapeCity.Win.Spread.InputMan.CellType.GcNumberCellType ncell1 = new GrapeCity.Win.Spread.InputMan.CellType.GcNumberCellType();
ncell1.DropDownCalculator.BackColor = Color.Bisque;
ncell1.DropDownCalculator.BorderStyle = BorderStyle.FixedSingle;
fpSpread1.ActiveSheet.Cells[1, 1].CellType = ncell1;
Dim ncell1 As New GrapeCity.Win.Spread.InputMan.CellType.GcNumberCellType()
ncell1.DropDownCalculator.BackColor = Color.Bisque
ncell1.DropDownCalculator.BorderStyle = BorderStyle.FixedSingle
FpSpread1.ActiveSheet.Cells(1, 1).CellType = ncell1
参照

DropDownCalculatorInfo クラス
DropDownCalculatorInfo メンバ

 

 


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