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

背景グラデーション効果を取得または設定します。
構文
'宣言
 
Public Property ListGradientEffect As GradientEffect
public GradientEffect ListGradientEffect {get; set;}

プロパティ値

GradientEffectコントロールの背景グラデーション効果を示す値を取得または設定します。
デフォルト値はnull 参照 (Visual Basicでは Nothing)です。
解説
このプロパティの値はドロップダウンリストウィンドウの背景に描画され、 BackgroundImageがそれをカバーしています。
使用例
次のサンプルコードは、ListGradientEffectプロパティを設定します。
GrapeCity.Win.Spread.InputMan.CellType.GcComboBoxCellType gccombo = new GrapeCity.Win.Spread.InputMan.CellType.GcComboBoxCellType();
gccombo.DropDownStyle = ComboBoxStyle.DropDownList;
gccombo.ListGradientEffect = new GrapeCity.Win.Spread.InputMan.CellType.GradientEffect(GrapeCity.Win.Spread.InputMan.CellType.GradientStyle.Circular, GrapeCity.Win.Spread.InputMan.CellType.GradientDirection.Backward, Color.Blue, Color.Yellow);
gccombo.Items.AddRange(new string[] { "Feta", "Havarti", "Swiss" });
fpSpread1.Sheets[0].Cells[1, 1].CellType = gccombo;
Dim gccombo As New GrapeCity.Win.Spread.InputMan.CellType.GcComboBoxCellType()
gccombo.DropDownStyle = ComboBoxStyle.DropDownList
gccombo.ListGradientEffect = New GrapeCity.Win.Spread.InputMan.CellType.GradientEffect(GrapeCity.Win.Spread.InputMan.CellType.GradientStyle.Circular, GrapeCity.Win.Spread.InputMan.CellType.GradientDirection.Backward, Color.Blue, Color.Yellow)
gccombo.Items.AddRange(New String() {"Feta", "Havarti", "Swiss"})
FpSpread1.Sheets(0).Cells(1, 1).CellType = gccombo
参照

GcComboBoxCellType クラス
GcComboBoxCellType メンバ

 

 


© MESCIUS inc. All rights reserved.